From 8bfd5a04172f0e1ed68406d37bb09f8fcd450a47 Mon Sep 17 00:00:00 2001 From: AwsSdkPhpAutomation Date: Wed, 28 Feb 2024 19:05:57 +0000 Subject: [PATCH] Update models for release --- .changes/3.300.7 | 32 ++ CHANGELOG.md | 9 + src/CostExplorer/CostExplorerClient.php | 2 + src/data/batch/2016-08-10/api-2.json | 176 +++++++++- src/data/batch/2016-08-10/api-2.json.php | 2 +- src/data/batch/2016-08-10/docs-2.json | 301 ++++++++++++++---- src/data/batch/2016-08-10/docs-2.json.php | 2 +- .../2023-07-26/api-2.json | 28 +- .../2023-07-26/api-2.json.php | 2 +- .../2023-07-26/docs-2.json | 7 + .../2023-07-26/docs-2.json.php | 2 +- src/data/ce/2017-10-25/api-2.json | 53 +++ src/data/ce/2017-10-25/api-2.json.php | 2 +- src/data/ce/2017-10-25/docs-2.json | 42 ++- src/data/ce/2017-10-25/docs-2.json.php | 2 +- src/data/ec2/2016-11-15/api-2.json | 7 +- src/data/ec2/2016-11-15/api-2.json.php | 2 +- src/data/ec2/2016-11-15/docs-2.json | 9 +- src/data/ec2/2016-11-15/docs-2.json.php | 2 +- src/data/iot/2015-05-28/api-2.json | 6 +- src/data/iot/2015-05-28/api-2.json.php | 2 +- src/data/iot/2015-05-28/docs-2.json | 25 +- src/data/iot/2015-05-28/docs-2.json.php | 2 +- src/data/wafv2/2019-07-29/api-2.json | 2 + src/data/wafv2/2019-07-29/api-2.json.php | 2 +- src/data/wafv2/2019-07-29/docs-2.json | 6 + src/data/wafv2/2019-07-29/docs-2.json.php | 2 +- 27 files changed, 626 insertions(+), 103 deletions(-) create mode 100644 .changes/3.300.7 diff --git a/.changes/3.300.7 b/.changes/3.300.7 new file mode 100644 index 0000000000..68a91b6fb6 --- /dev/null +++ b/.changes/3.300.7 @@ -0,0 +1,32 @@ +[ + { + "type": "api-change", + "category": "EC2", + "description": "This release increases the range of MaxResults for GetNetworkInsightsAccessScopeAnalysisFindings to 1,000." + }, + { + "type": "api-change", + "category": "IoT", + "description": "This release reduces the maximum results returned per query invocation from 500 to 100 for the SearchIndex API. This change has no implications as long as the API is invoked until the nextToken is NULL." + }, + { + "type": "api-change", + "category": "Batch", + "description": "This release adds Batch support for configuration of multicontainer jobs in ECS, Fargate, and EKS. This support is available for all types of jobs, including both array jobs and multi-node parallel jobs." + }, + { + "type": "api-change", + "category": "BedrockAgentRuntime", + "description": "This release adds support to override search strategy performed by the Retrieve and RetrieveAndGenerate APIs for Amazon Bedrock Agents" + }, + { + "type": "api-change", + "category": "WAFV2", + "description": "AWS WAF now supports configurable time windows for request aggregation with rate-based rules. Customers can now select time windows of 1 minute, 2 minutes or 10 minutes, in addition to the previously supported 5 minutes." + }, + { + "type": "api-change", + "category": "CostExplorer", + "description": "This release introduces the new API 'GetApproximateUsageRecords', which retrieves estimated usage records for hourly granularity or resource-level data at daily granularity." + } +] diff --git a/CHANGELOG.md b/CHANGELOG.md index 00367fbffb..36546eee53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # CHANGELOG +## next release + +* `Aws\EC2` - This release increases the range of MaxResults for GetNetworkInsightsAccessScopeAnalysisFindings to 1,000. +* `Aws\IoT` - This release reduces the maximum results returned per query invocation from 500 to 100 for the SearchIndex API. This change has no implications as long as the API is invoked until the nextToken is NULL. +* `Aws\Batch` - This release adds Batch support for configuration of multicontainer jobs in ECS, Fargate, and EKS. This support is available for all types of jobs, including both array jobs and multi-node parallel jobs. +* `Aws\BedrockAgentRuntime` - This release adds support to override search strategy performed by the Retrieve and RetrieveAndGenerate APIs for Amazon Bedrock Agents +* `Aws\WAFV2` - AWS WAF now supports configurable time windows for request aggregation with rate-based rules. Customers can now select time windows of 1 minute, 2 minutes or 10 minutes, in addition to the previously supported 5 minutes. +* `Aws\CostExplorer` - This release introduces the new API 'GetApproximateUsageRecords', which retrieves estimated usage records for hourly granularity or resource-level data at daily granularity. + ## 3.300.6 - 2024-02-27 * `Aws\AmplifyUIBuilder` - We have added the ability to tag resources after they are created diff --git a/src/CostExplorer/CostExplorerClient.php b/src/CostExplorer/CostExplorerClient.php index 9d6378ab99..0158a9ad30 100644 --- a/src/CostExplorer/CostExplorerClient.php +++ b/src/CostExplorer/CostExplorerClient.php @@ -25,6 +25,8 @@ * @method \GuzzleHttp\Promise\Promise getAnomalyMonitorsAsync(array $args = []) * @method \Aws\Result getAnomalySubscriptions(array $args = []) * @method \GuzzleHttp\Promise\Promise getAnomalySubscriptionsAsync(array $args = []) + * @method \Aws\Result getApproximateUsageRecords(array $args = []) + * @method \GuzzleHttp\Promise\Promise getApproximateUsageRecordsAsync(array $args = []) * @method \Aws\Result getCostAndUsage(array $args = []) * @method \GuzzleHttp\Promise\Promise getCostAndUsageAsync(array $args = []) * @method \Aws\Result getCostAndUsageWithResources(array $args = []) diff --git a/src/data/batch/2016-08-10/api-2.json b/src/data/batch/2016-08-10/api-2.json index 193b5cc4cc..9cd5bbb736 100644 --- a/src/data/batch/2016-08-10/api-2.json +++ b/src/data/batch/2016-08-10/api-2.json @@ -920,6 +920,58 @@ "type":"list", "member":{"shape":"Ec2Configuration"} }, + "EcsProperties":{ + "type":"structure", + "required":["taskProperties"], + "members":{ + "taskProperties":{"shape":"ListEcsTaskProperties"} + } + }, + "EcsPropertiesDetail":{ + "type":"structure", + "members":{ + "taskProperties":{"shape":"ListEcsTaskDetails"} + } + }, + "EcsPropertiesOverride":{ + "type":"structure", + "members":{ + "taskProperties":{"shape":"ListTaskPropertiesOverride"} + } + }, + "EcsTaskDetails":{ + "type":"structure", + "members":{ + "containers":{"shape":"ListTaskContainerDetails"}, + "containerInstanceArn":{"shape":"String"}, + "taskArn":{"shape":"String"}, + "ephemeralStorage":{"shape":"EphemeralStorage"}, + "executionRoleArn":{"shape":"String"}, + "platformVersion":{"shape":"String"}, + "ipcMode":{"shape":"String"}, + "taskRoleArn":{"shape":"String"}, + "pidMode":{"shape":"String"}, + "networkConfiguration":{"shape":"NetworkConfiguration"}, + "runtimePlatform":{"shape":"RuntimePlatform"}, + "volumes":{"shape":"Volumes"} + } + }, + "EcsTaskProperties":{ + "type":"structure", + "required":["containers"], + "members":{ + "containers":{"shape":"ListTaskContainerProperties"}, + "ephemeralStorage":{"shape":"EphemeralStorage"}, + "executionRoleArn":{"shape":"String"}, + "platformVersion":{"shape":"String"}, + "ipcMode":{"shape":"String"}, + "taskRoleArn":{"shape":"String"}, + "pidMode":{"shape":"String"}, + "networkConfiguration":{"shape":"NetworkConfiguration"}, + "runtimePlatform":{"shape":"RuntimePlatform"}, + "volumes":{"shape":"Volumes"} + } + }, "EksAttemptContainerDetail":{ "type":"structure", "members":{ @@ -935,6 +987,7 @@ "type":"structure", "members":{ "containers":{"shape":"EksAttemptContainerDetails"}, + "initContainers":{"shape":"EksAttemptContainerDetails"}, "podName":{"shape":"String"}, "nodeName":{"shape":"String"}, "startedAt":{"shape":"Long"}, @@ -1007,6 +1060,7 @@ "EksContainerOverride":{ "type":"structure", "members":{ + "name":{"shape":"String"}, "image":{"shape":"String"}, "command":{"shape":"StringList"}, "args":{"shape":"StringList"}, @@ -1087,8 +1141,10 @@ "hostNetwork":{"shape":"Boolean"}, "dnsPolicy":{"shape":"String"}, "containers":{"shape":"EksContainers"}, + "initContainers":{"shape":"EksContainers"}, "volumes":{"shape":"EksVolumes"}, - "metadata":{"shape":"EksMetadata"} + "metadata":{"shape":"EksMetadata"}, + "shareProcessNamespace":{"shape":"Boolean"} } }, "EksPodPropertiesDetail":{ @@ -1098,16 +1154,19 @@ "hostNetwork":{"shape":"Boolean"}, "dnsPolicy":{"shape":"String"}, "containers":{"shape":"EksContainerDetails"}, + "initContainers":{"shape":"EksContainerDetails"}, "volumes":{"shape":"EksVolumes"}, "podName":{"shape":"String"}, "nodeName":{"shape":"String"}, - "metadata":{"shape":"EksMetadata"} + "metadata":{"shape":"EksMetadata"}, + "shareProcessNamespace":{"shape":"Boolean"} } }, "EksPodPropertiesOverride":{ "type":"structure", "members":{ "containers":{"shape":"EksContainerOverrideList"}, + "initContainers":{"shape":"EksContainerOverrideList"}, "metadata":{"shape":"EksMetadata"} } }, @@ -1254,6 +1313,7 @@ "tags":{"shape":"TagrisTagsMap"}, "propagateTags":{"shape":"Boolean"}, "platformCapabilities":{"shape":"PlatformCapabilityList"}, + "ecsProperties":{"shape":"EcsProperties"}, "eksProperties":{"shape":"EksProperties"}, "containerOrchestrationType":{"shape":"OrchestrationType"} } @@ -1317,6 +1377,7 @@ "platformCapabilities":{"shape":"PlatformCapabilityList"}, "eksProperties":{"shape":"EksPropertiesDetail"}, "eksAttempts":{"shape":"EksAttemptDetails"}, + "ecsProperties":{"shape":"EcsPropertiesDetail"}, "isCancelled":{"shape":"Boolean"}, "isTerminated":{"shape":"Boolean"} } @@ -1436,6 +1497,14 @@ "swappiness":{"shape":"Integer"} } }, + "ListEcsTaskDetails":{ + "type":"list", + "member":{"shape":"EcsTaskDetails"} + }, + "ListEcsTaskProperties":{ + "type":"list", + "member":{"shape":"EcsTaskProperties"} + }, "ListJobsFilterList":{ "type":"list", "member":{"shape":"KeyValuesPair"} @@ -1491,6 +1560,22 @@ "tags":{"shape":"TagrisTagsMap"} } }, + "ListTaskContainerDetails":{ + "type":"list", + "member":{"shape":"TaskContainerDetails"} + }, + "ListTaskContainerOverrides":{ + "type":"list", + "member":{"shape":"TaskContainerOverrides"} + }, + "ListTaskContainerProperties":{ + "type":"list", + "member":{"shape":"TaskContainerProperties"} + }, + "ListTaskPropertiesOverride":{ + "type":"list", + "member":{"shape":"TaskPropertiesOverride"} + }, "LogConfiguration":{ "type":"structure", "required":["logDriver"], @@ -1588,7 +1673,9 @@ "required":["targetNodes"], "members":{ "targetNodes":{"shape":"String"}, - "containerOverrides":{"shape":"ContainerOverrides"} + "containerOverrides":{"shape":"ContainerOverrides"}, + "ecsPropertiesOverride":{"shape":"EcsPropertiesOverride"}, + "instanceTypes":{"shape":"StringList"} } }, "NodePropertyOverrides":{ @@ -1604,7 +1691,9 @@ "required":["targetNodes"], "members":{ "targetNodes":{"shape":"String"}, - "container":{"shape":"ContainerProperties"} + "container":{"shape":"ContainerProperties"}, + "instanceTypes":{"shape":"StringList"}, + "ecsProperties":{"shape":"EcsProperties"} } }, "OrchestrationType":{ @@ -1653,7 +1742,8 @@ "timeout":{"shape":"JobTimeout"}, "tags":{"shape":"TagrisTagsMap"}, "platformCapabilities":{"shape":"PlatformCapabilityList"}, - "eksProperties":{"shape":"EksProperties"} + "eksProperties":{"shape":"EksProperties"}, + "ecsProperties":{"shape":"EcsProperties"} } }, "RegisterJobDefinitionResponse":{ @@ -1811,7 +1901,8 @@ "propagateTags":{"shape":"Boolean"}, "timeout":{"shape":"JobTimeout"}, "tags":{"shape":"TagrisTagsMap"}, - "eksPropertiesOverride":{"shape":"EksPropertiesOverride"} + "eksPropertiesOverride":{"shape":"EksPropertiesOverride"}, + "ecsPropertiesOverride":{"shape":"EcsPropertiesOverride"} } }, "SubmitJobResponse":{ @@ -1873,6 +1964,79 @@ "key":{"shape":"String"}, "value":{"shape":"String"} }, + "TaskContainerDependency":{ + "type":"structure", + "members":{ + "containerName":{"shape":"String"}, + "condition":{"shape":"String"} + } + }, + "TaskContainerDependencyList":{ + "type":"list", + "member":{"shape":"TaskContainerDependency"} + }, + "TaskContainerDetails":{ + "type":"structure", + "members":{ + "command":{"shape":"StringList"}, + "dependsOn":{"shape":"TaskContainerDependencyList"}, + "environment":{"shape":"EnvironmentVariables"}, + "essential":{"shape":"Boolean"}, + "image":{"shape":"String"}, + "linuxParameters":{"shape":"LinuxParameters"}, + "logConfiguration":{"shape":"LogConfiguration"}, + "mountPoints":{"shape":"MountPoints"}, + "name":{"shape":"String"}, + "privileged":{"shape":"Boolean"}, + "readonlyRootFilesystem":{"shape":"Boolean"}, + "repositoryCredentials":{"shape":"RepositoryCredentials"}, + "resourceRequirements":{"shape":"ResourceRequirements"}, + "secrets":{"shape":"SecretList"}, + "ulimits":{"shape":"Ulimits"}, + "user":{"shape":"String"}, + "exitCode":{"shape":"Integer"}, + "reason":{"shape":"String"}, + "logStreamName":{"shape":"String"}, + "networkInterfaces":{"shape":"NetworkInterfaceList"} + } + }, + "TaskContainerOverrides":{ + "type":"structure", + "members":{ + "command":{"shape":"StringList"}, + "environment":{"shape":"EnvironmentVariables"}, + "name":{"shape":"String"}, + "resourceRequirements":{"shape":"ResourceRequirements"} + } + }, + "TaskContainerProperties":{ + "type":"structure", + "required":["image"], + "members":{ + "command":{"shape":"StringList"}, + "dependsOn":{"shape":"TaskContainerDependencyList"}, + "environment":{"shape":"EnvironmentVariables"}, + "essential":{"shape":"Boolean"}, + "image":{"shape":"String"}, + "linuxParameters":{"shape":"LinuxParameters"}, + "logConfiguration":{"shape":"LogConfiguration"}, + "mountPoints":{"shape":"MountPoints"}, + "name":{"shape":"String"}, + "privileged":{"shape":"Boolean"}, + "readonlyRootFilesystem":{"shape":"Boolean"}, + "repositoryCredentials":{"shape":"RepositoryCredentials"}, + "resourceRequirements":{"shape":"ResourceRequirements"}, + "secrets":{"shape":"SecretList"}, + "ulimits":{"shape":"Ulimits"}, + "user":{"shape":"String"} + } + }, + "TaskPropertiesOverride":{ + "type":"structure", + "members":{ + "containers":{"shape":"ListTaskContainerOverrides"} + } + }, "TerminateJobRequest":{ "type":"structure", "required":[ diff --git a/src/data/batch/2016-08-10/api-2.json.php b/src/data/batch/2016-08-10/api-2.json.php index 88222a57d0..ff8afb9fb0 100644 --- a/src/data/batch/2016-08-10/api-2.json.php +++ b/src/data/batch/2016-08-10/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2016-08-10', 'endpointPrefix' => 'batch', 'jsonVersion' => '1.1', 'protocol' => 'rest-json', 'serviceAbbreviation' => 'AWS Batch', 'serviceFullName' => 'AWS Batch', 'serviceId' => 'Batch', 'signatureVersion' => 'v4', 'uid' => 'batch-2016-08-10', ], 'operations' => [ 'CancelJob' => [ 'name' => 'CancelJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/canceljob', ], 'input' => [ 'shape' => 'CancelJobRequest', ], 'output' => [ 'shape' => 'CancelJobResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'CreateComputeEnvironment' => [ 'name' => 'CreateComputeEnvironment', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/createcomputeenvironment', ], 'input' => [ 'shape' => 'CreateComputeEnvironmentRequest', ], 'output' => [ 'shape' => 'CreateComputeEnvironmentResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'CreateJobQueue' => [ 'name' => 'CreateJobQueue', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/createjobqueue', ], 'input' => [ 'shape' => 'CreateJobQueueRequest', ], 'output' => [ 'shape' => 'CreateJobQueueResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'CreateSchedulingPolicy' => [ 'name' => 'CreateSchedulingPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/createschedulingpolicy', ], 'input' => [ 'shape' => 'CreateSchedulingPolicyRequest', ], 'output' => [ 'shape' => 'CreateSchedulingPolicyResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DeleteComputeEnvironment' => [ 'name' => 'DeleteComputeEnvironment', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/deletecomputeenvironment', ], 'input' => [ 'shape' => 'DeleteComputeEnvironmentRequest', ], 'output' => [ 'shape' => 'DeleteComputeEnvironmentResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DeleteJobQueue' => [ 'name' => 'DeleteJobQueue', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/deletejobqueue', ], 'input' => [ 'shape' => 'DeleteJobQueueRequest', ], 'output' => [ 'shape' => 'DeleteJobQueueResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DeleteSchedulingPolicy' => [ 'name' => 'DeleteSchedulingPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/deleteschedulingpolicy', ], 'input' => [ 'shape' => 'DeleteSchedulingPolicyRequest', ], 'output' => [ 'shape' => 'DeleteSchedulingPolicyResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DeregisterJobDefinition' => [ 'name' => 'DeregisterJobDefinition', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/deregisterjobdefinition', ], 'input' => [ 'shape' => 'DeregisterJobDefinitionRequest', ], 'output' => [ 'shape' => 'DeregisterJobDefinitionResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DescribeComputeEnvironments' => [ 'name' => 'DescribeComputeEnvironments', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/describecomputeenvironments', ], 'input' => [ 'shape' => 'DescribeComputeEnvironmentsRequest', ], 'output' => [ 'shape' => 'DescribeComputeEnvironmentsResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DescribeJobDefinitions' => [ 'name' => 'DescribeJobDefinitions', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/describejobdefinitions', ], 'input' => [ 'shape' => 'DescribeJobDefinitionsRequest', ], 'output' => [ 'shape' => 'DescribeJobDefinitionsResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DescribeJobQueues' => [ 'name' => 'DescribeJobQueues', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/describejobqueues', ], 'input' => [ 'shape' => 'DescribeJobQueuesRequest', ], 'output' => [ 'shape' => 'DescribeJobQueuesResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DescribeJobs' => [ 'name' => 'DescribeJobs', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/describejobs', ], 'input' => [ 'shape' => 'DescribeJobsRequest', ], 'output' => [ 'shape' => 'DescribeJobsResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DescribeSchedulingPolicies' => [ 'name' => 'DescribeSchedulingPolicies', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/describeschedulingpolicies', ], 'input' => [ 'shape' => 'DescribeSchedulingPoliciesRequest', ], 'output' => [ 'shape' => 'DescribeSchedulingPoliciesResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'ListJobs' => [ 'name' => 'ListJobs', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/listjobs', ], 'input' => [ 'shape' => 'ListJobsRequest', ], 'output' => [ 'shape' => 'ListJobsResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'ListSchedulingPolicies' => [ 'name' => 'ListSchedulingPolicies', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/listschedulingpolicies', ], 'input' => [ 'shape' => 'ListSchedulingPoliciesRequest', ], 'output' => [ 'shape' => 'ListSchedulingPoliciesResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource', 'http' => [ 'method' => 'GET', 'requestUri' => '/v1/tags/{resourceArn}', ], 'input' => [ 'shape' => 'ListTagsForResourceRequest', ], 'output' => [ 'shape' => 'ListTagsForResourceResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'RegisterJobDefinition' => [ 'name' => 'RegisterJobDefinition', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/registerjobdefinition', ], 'input' => [ 'shape' => 'RegisterJobDefinitionRequest', ], 'output' => [ 'shape' => 'RegisterJobDefinitionResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'SubmitJob' => [ 'name' => 'SubmitJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/submitjob', ], 'input' => [ 'shape' => 'SubmitJobRequest', ], 'output' => [ 'shape' => 'SubmitJobResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'TagResource' => [ 'name' => 'TagResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/tags/{resourceArn}', ], 'input' => [ 'shape' => 'TagResourceRequest', ], 'output' => [ 'shape' => 'TagResourceResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'TerminateJob' => [ 'name' => 'TerminateJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/terminatejob', ], 'input' => [ 'shape' => 'TerminateJobRequest', ], 'output' => [ 'shape' => 'TerminateJobResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'UntagResource' => [ 'name' => 'UntagResource', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/v1/tags/{resourceArn}', ], 'input' => [ 'shape' => 'UntagResourceRequest', ], 'output' => [ 'shape' => 'UntagResourceResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'UpdateComputeEnvironment' => [ 'name' => 'UpdateComputeEnvironment', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/updatecomputeenvironment', ], 'input' => [ 'shape' => 'UpdateComputeEnvironmentRequest', ], 'output' => [ 'shape' => 'UpdateComputeEnvironmentResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'UpdateJobQueue' => [ 'name' => 'UpdateJobQueue', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/updatejobqueue', ], 'input' => [ 'shape' => 'UpdateJobQueueRequest', ], 'output' => [ 'shape' => 'UpdateJobQueueResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'UpdateSchedulingPolicy' => [ 'name' => 'UpdateSchedulingPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/updateschedulingpolicy', ], 'input' => [ 'shape' => 'UpdateSchedulingPolicyRequest', ], 'output' => [ 'shape' => 'UpdateSchedulingPolicyResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], ], 'shapes' => [ 'ArrayJobDependency' => [ 'type' => 'string', 'enum' => [ 'N_TO_N', 'SEQUENTIAL', ], ], 'ArrayJobStatusSummary' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'Integer', ], ], 'ArrayProperties' => [ 'type' => 'structure', 'members' => [ 'size' => [ 'shape' => 'Integer', ], ], ], 'ArrayPropertiesDetail' => [ 'type' => 'structure', 'members' => [ 'statusSummary' => [ 'shape' => 'ArrayJobStatusSummary', ], 'size' => [ 'shape' => 'Integer', ], 'index' => [ 'shape' => 'Integer', ], ], ], 'ArrayPropertiesSummary' => [ 'type' => 'structure', 'members' => [ 'size' => [ 'shape' => 'Integer', ], 'index' => [ 'shape' => 'Integer', ], ], ], 'AssignPublicIp' => [ 'type' => 'string', 'enum' => [ 'ENABLED', 'DISABLED', ], ], 'AttemptContainerDetail' => [ 'type' => 'structure', 'members' => [ 'containerInstanceArn' => [ 'shape' => 'String', ], 'taskArn' => [ 'shape' => 'String', ], 'exitCode' => [ 'shape' => 'Integer', ], 'reason' => [ 'shape' => 'String', ], 'logStreamName' => [ 'shape' => 'String', ], 'networkInterfaces' => [ 'shape' => 'NetworkInterfaceList', ], ], ], 'AttemptDetail' => [ 'type' => 'structure', 'members' => [ 'container' => [ 'shape' => 'AttemptContainerDetail', ], 'startedAt' => [ 'shape' => 'Long', ], 'stoppedAt' => [ 'shape' => 'Long', ], 'statusReason' => [ 'shape' => 'String', ], ], ], 'AttemptDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'AttemptDetail', ], ], 'Boolean' => [ 'type' => 'boolean', ], 'CEState' => [ 'type' => 'string', 'enum' => [ 'ENABLED', 'DISABLED', ], ], 'CEStatus' => [ 'type' => 'string', 'enum' => [ 'CREATING', 'UPDATING', 'DELETING', 'DELETED', 'VALID', 'INVALID', ], ], 'CEType' => [ 'type' => 'string', 'enum' => [ 'MANAGED', 'UNMANAGED', ], ], 'CRAllocationStrategy' => [ 'type' => 'string', 'enum' => [ 'BEST_FIT', 'BEST_FIT_PROGRESSIVE', 'SPOT_CAPACITY_OPTIMIZED', 'SPOT_PRICE_CAPACITY_OPTIMIZED', ], ], 'CRType' => [ 'type' => 'string', 'enum' => [ 'EC2', 'SPOT', 'FARGATE', 'FARGATE_SPOT', ], ], 'CRUpdateAllocationStrategy' => [ 'type' => 'string', 'enum' => [ 'BEST_FIT_PROGRESSIVE', 'SPOT_CAPACITY_OPTIMIZED', 'SPOT_PRICE_CAPACITY_OPTIMIZED', ], ], 'CancelJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', 'reason', ], 'members' => [ 'jobId' => [ 'shape' => 'String', ], 'reason' => [ 'shape' => 'String', ], ], ], 'CancelJobResponse' => [ 'type' => 'structure', 'members' => [], ], 'ClientException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'ComputeEnvironmentDetail' => [ 'type' => 'structure', 'required' => [ 'computeEnvironmentName', 'computeEnvironmentArn', ], 'members' => [ 'computeEnvironmentName' => [ 'shape' => 'String', ], 'computeEnvironmentArn' => [ 'shape' => 'String', ], 'unmanagedvCpus' => [ 'shape' => 'Integer', ], 'ecsClusterArn' => [ 'shape' => 'String', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], 'type' => [ 'shape' => 'CEType', ], 'state' => [ 'shape' => 'CEState', ], 'status' => [ 'shape' => 'CEStatus', ], 'statusReason' => [ 'shape' => 'String', ], 'computeResources' => [ 'shape' => 'ComputeResource', ], 'serviceRole' => [ 'shape' => 'String', ], 'updatePolicy' => [ 'shape' => 'UpdatePolicy', ], 'eksConfiguration' => [ 'shape' => 'EksConfiguration', ], 'containerOrchestrationType' => [ 'shape' => 'OrchestrationType', ], 'uuid' => [ 'shape' => 'String', ], ], ], 'ComputeEnvironmentDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ComputeEnvironmentDetail', ], ], 'ComputeEnvironmentOrder' => [ 'type' => 'structure', 'required' => [ 'order', 'computeEnvironment', ], 'members' => [ 'order' => [ 'shape' => 'Integer', ], 'computeEnvironment' => [ 'shape' => 'String', ], ], ], 'ComputeEnvironmentOrders' => [ 'type' => 'list', 'member' => [ 'shape' => 'ComputeEnvironmentOrder', ], ], 'ComputeResource' => [ 'type' => 'structure', 'required' => [ 'type', 'maxvCpus', 'subnets', ], 'members' => [ 'type' => [ 'shape' => 'CRType', ], 'allocationStrategy' => [ 'shape' => 'CRAllocationStrategy', ], 'minvCpus' => [ 'shape' => 'Integer', ], 'maxvCpus' => [ 'shape' => 'Integer', ], 'desiredvCpus' => [ 'shape' => 'Integer', ], 'instanceTypes' => [ 'shape' => 'StringList', ], 'imageId' => [ 'shape' => 'String', 'deprecated' => true, 'deprecatedMessage' => 'This field is deprecated, use ec2Configuration[].imageIdOverride instead.', ], 'subnets' => [ 'shape' => 'StringList', ], 'securityGroupIds' => [ 'shape' => 'StringList', ], 'ec2KeyPair' => [ 'shape' => 'String', ], 'instanceRole' => [ 'shape' => 'String', ], 'tags' => [ 'shape' => 'TagsMap', ], 'placementGroup' => [ 'shape' => 'String', ], 'bidPercentage' => [ 'shape' => 'Integer', ], 'spotIamFleetRole' => [ 'shape' => 'String', ], 'launchTemplate' => [ 'shape' => 'LaunchTemplateSpecification', ], 'ec2Configuration' => [ 'shape' => 'Ec2ConfigurationList', ], ], ], 'ComputeResourceUpdate' => [ 'type' => 'structure', 'members' => [ 'minvCpus' => [ 'shape' => 'Integer', ], 'maxvCpus' => [ 'shape' => 'Integer', ], 'desiredvCpus' => [ 'shape' => 'Integer', ], 'subnets' => [ 'shape' => 'StringList', ], 'securityGroupIds' => [ 'shape' => 'StringList', ], 'allocationStrategy' => [ 'shape' => 'CRUpdateAllocationStrategy', ], 'instanceTypes' => [ 'shape' => 'StringList', ], 'ec2KeyPair' => [ 'shape' => 'String', ], 'instanceRole' => [ 'shape' => 'String', ], 'tags' => [ 'shape' => 'TagsMap', ], 'placementGroup' => [ 'shape' => 'String', ], 'bidPercentage' => [ 'shape' => 'Integer', ], 'launchTemplate' => [ 'shape' => 'LaunchTemplateSpecification', ], 'ec2Configuration' => [ 'shape' => 'Ec2ConfigurationList', ], 'updateToLatestImageVersion' => [ 'shape' => 'Boolean', ], 'type' => [ 'shape' => 'CRType', ], 'imageId' => [ 'shape' => 'String', ], ], ], 'ContainerDetail' => [ 'type' => 'structure', 'members' => [ 'image' => [ 'shape' => 'String', ], 'vcpus' => [ 'shape' => 'Integer', ], 'memory' => [ 'shape' => 'Integer', ], 'command' => [ 'shape' => 'StringList', ], 'jobRoleArn' => [ 'shape' => 'String', ], 'executionRoleArn' => [ 'shape' => 'String', ], 'volumes' => [ 'shape' => 'Volumes', ], 'environment' => [ 'shape' => 'EnvironmentVariables', ], 'mountPoints' => [ 'shape' => 'MountPoints', ], 'readonlyRootFilesystem' => [ 'shape' => 'Boolean', ], 'ulimits' => [ 'shape' => 'Ulimits', ], 'privileged' => [ 'shape' => 'Boolean', ], 'user' => [ 'shape' => 'String', ], 'exitCode' => [ 'shape' => 'Integer', ], 'reason' => [ 'shape' => 'String', ], 'containerInstanceArn' => [ 'shape' => 'String', ], 'taskArn' => [ 'shape' => 'String', ], 'logStreamName' => [ 'shape' => 'String', ], 'instanceType' => [ 'shape' => 'String', ], 'networkInterfaces' => [ 'shape' => 'NetworkInterfaceList', ], 'resourceRequirements' => [ 'shape' => 'ResourceRequirements', ], 'linuxParameters' => [ 'shape' => 'LinuxParameters', ], 'logConfiguration' => [ 'shape' => 'LogConfiguration', ], 'secrets' => [ 'shape' => 'SecretList', ], 'networkConfiguration' => [ 'shape' => 'NetworkConfiguration', ], 'fargatePlatformConfiguration' => [ 'shape' => 'FargatePlatformConfiguration', ], 'ephemeralStorage' => [ 'shape' => 'EphemeralStorage', ], 'runtimePlatform' => [ 'shape' => 'RuntimePlatform', ], 'repositoryCredentials' => [ 'shape' => 'RepositoryCredentials', ], ], ], 'ContainerOverrides' => [ 'type' => 'structure', 'members' => [ 'vcpus' => [ 'shape' => 'Integer', 'deprecated' => true, 'deprecatedMessage' => 'This field is deprecated, use resourceRequirements instead.', ], 'memory' => [ 'shape' => 'Integer', 'deprecated' => true, 'deprecatedMessage' => 'This field is deprecated, use resourceRequirements instead.', ], 'command' => [ 'shape' => 'StringList', ], 'instanceType' => [ 'shape' => 'String', ], 'environment' => [ 'shape' => 'EnvironmentVariables', ], 'resourceRequirements' => [ 'shape' => 'ResourceRequirements', ], ], ], 'ContainerProperties' => [ 'type' => 'structure', 'members' => [ 'image' => [ 'shape' => 'String', ], 'vcpus' => [ 'shape' => 'Integer', 'deprecated' => true, 'deprecatedMessage' => 'This field is deprecated, use resourceRequirements instead.', ], 'memory' => [ 'shape' => 'Integer', 'deprecated' => true, 'deprecatedMessage' => 'This field is deprecated, use resourceRequirements instead.', ], 'command' => [ 'shape' => 'StringList', ], 'jobRoleArn' => [ 'shape' => 'String', ], 'executionRoleArn' => [ 'shape' => 'String', ], 'volumes' => [ 'shape' => 'Volumes', ], 'environment' => [ 'shape' => 'EnvironmentVariables', ], 'mountPoints' => [ 'shape' => 'MountPoints', ], 'readonlyRootFilesystem' => [ 'shape' => 'Boolean', ], 'privileged' => [ 'shape' => 'Boolean', ], 'ulimits' => [ 'shape' => 'Ulimits', ], 'user' => [ 'shape' => 'String', ], 'instanceType' => [ 'shape' => 'String', ], 'resourceRequirements' => [ 'shape' => 'ResourceRequirements', ], 'linuxParameters' => [ 'shape' => 'LinuxParameters', ], 'logConfiguration' => [ 'shape' => 'LogConfiguration', ], 'secrets' => [ 'shape' => 'SecretList', ], 'networkConfiguration' => [ 'shape' => 'NetworkConfiguration', ], 'fargatePlatformConfiguration' => [ 'shape' => 'FargatePlatformConfiguration', ], 'ephemeralStorage' => [ 'shape' => 'EphemeralStorage', ], 'runtimePlatform' => [ 'shape' => 'RuntimePlatform', ], 'repositoryCredentials' => [ 'shape' => 'RepositoryCredentials', ], ], ], 'ContainerSummary' => [ 'type' => 'structure', 'members' => [ 'exitCode' => [ 'shape' => 'Integer', ], 'reason' => [ 'shape' => 'String', ], ], ], 'CreateComputeEnvironmentRequest' => [ 'type' => 'structure', 'required' => [ 'computeEnvironmentName', 'type', ], 'members' => [ 'computeEnvironmentName' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'CEType', ], 'state' => [ 'shape' => 'CEState', ], 'unmanagedvCpus' => [ 'shape' => 'Integer', ], 'computeResources' => [ 'shape' => 'ComputeResource', ], 'serviceRole' => [ 'shape' => 'String', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], 'eksConfiguration' => [ 'shape' => 'EksConfiguration', ], ], ], 'CreateComputeEnvironmentResponse' => [ 'type' => 'structure', 'members' => [ 'computeEnvironmentName' => [ 'shape' => 'String', ], 'computeEnvironmentArn' => [ 'shape' => 'String', ], ], ], 'CreateJobQueueRequest' => [ 'type' => 'structure', 'required' => [ 'jobQueueName', 'priority', 'computeEnvironmentOrder', ], 'members' => [ 'jobQueueName' => [ 'shape' => 'String', ], 'state' => [ 'shape' => 'JQState', ], 'schedulingPolicyArn' => [ 'shape' => 'String', ], 'priority' => [ 'shape' => 'Integer', ], 'computeEnvironmentOrder' => [ 'shape' => 'ComputeEnvironmentOrders', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], ], ], 'CreateJobQueueResponse' => [ 'type' => 'structure', 'required' => [ 'jobQueueName', 'jobQueueArn', ], 'members' => [ 'jobQueueName' => [ 'shape' => 'String', ], 'jobQueueArn' => [ 'shape' => 'String', ], ], ], 'CreateSchedulingPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'fairsharePolicy' => [ 'shape' => 'FairsharePolicy', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], ], ], 'CreateSchedulingPolicyResponse' => [ 'type' => 'structure', 'required' => [ 'name', 'arn', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'arn' => [ 'shape' => 'String', ], ], ], 'DeleteComputeEnvironmentRequest' => [ 'type' => 'structure', 'required' => [ 'computeEnvironment', ], 'members' => [ 'computeEnvironment' => [ 'shape' => 'String', ], ], ], 'DeleteComputeEnvironmentResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteJobQueueRequest' => [ 'type' => 'structure', 'required' => [ 'jobQueue', ], 'members' => [ 'jobQueue' => [ 'shape' => 'String', ], ], ], 'DeleteJobQueueResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteSchedulingPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'arn', ], 'members' => [ 'arn' => [ 'shape' => 'String', ], ], ], 'DeleteSchedulingPolicyResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeregisterJobDefinitionRequest' => [ 'type' => 'structure', 'required' => [ 'jobDefinition', ], 'members' => [ 'jobDefinition' => [ 'shape' => 'String', ], ], ], 'DeregisterJobDefinitionResponse' => [ 'type' => 'structure', 'members' => [], ], 'DescribeComputeEnvironmentsRequest' => [ 'type' => 'structure', 'members' => [ 'computeEnvironments' => [ 'shape' => 'StringList', ], 'maxResults' => [ 'shape' => 'Integer', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'DescribeComputeEnvironmentsResponse' => [ 'type' => 'structure', 'members' => [ 'computeEnvironments' => [ 'shape' => 'ComputeEnvironmentDetailList', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'DescribeJobDefinitionsRequest' => [ 'type' => 'structure', 'members' => [ 'jobDefinitions' => [ 'shape' => 'StringList', ], 'maxResults' => [ 'shape' => 'Integer', ], 'jobDefinitionName' => [ 'shape' => 'String', ], 'status' => [ 'shape' => 'String', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'DescribeJobDefinitionsResponse' => [ 'type' => 'structure', 'members' => [ 'jobDefinitions' => [ 'shape' => 'JobDefinitionList', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'DescribeJobQueuesRequest' => [ 'type' => 'structure', 'members' => [ 'jobQueues' => [ 'shape' => 'StringList', ], 'maxResults' => [ 'shape' => 'Integer', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'DescribeJobQueuesResponse' => [ 'type' => 'structure', 'members' => [ 'jobQueues' => [ 'shape' => 'JobQueueDetailList', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'DescribeJobsRequest' => [ 'type' => 'structure', 'required' => [ 'jobs', ], 'members' => [ 'jobs' => [ 'shape' => 'StringList', ], ], ], 'DescribeJobsResponse' => [ 'type' => 'structure', 'members' => [ 'jobs' => [ 'shape' => 'JobDetailList', ], ], ], 'DescribeSchedulingPoliciesRequest' => [ 'type' => 'structure', 'required' => [ 'arns', ], 'members' => [ 'arns' => [ 'shape' => 'StringList', ], ], ], 'DescribeSchedulingPoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'schedulingPolicies' => [ 'shape' => 'SchedulingPolicyDetailList', ], ], ], 'Device' => [ 'type' => 'structure', 'required' => [ 'hostPath', ], 'members' => [ 'hostPath' => [ 'shape' => 'String', ], 'containerPath' => [ 'shape' => 'String', ], 'permissions' => [ 'shape' => 'DeviceCgroupPermissions', ], ], ], 'DeviceCgroupPermission' => [ 'type' => 'string', 'enum' => [ 'READ', 'WRITE', 'MKNOD', ], ], 'DeviceCgroupPermissions' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeviceCgroupPermission', ], ], 'DevicesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Device', ], ], 'EFSAuthorizationConfig' => [ 'type' => 'structure', 'members' => [ 'accessPointId' => [ 'shape' => 'String', ], 'iam' => [ 'shape' => 'EFSAuthorizationConfigIAM', ], ], ], 'EFSAuthorizationConfigIAM' => [ 'type' => 'string', 'enum' => [ 'ENABLED', 'DISABLED', ], ], 'EFSTransitEncryption' => [ 'type' => 'string', 'enum' => [ 'ENABLED', 'DISABLED', ], ], 'EFSVolumeConfiguration' => [ 'type' => 'structure', 'required' => [ 'fileSystemId', ], 'members' => [ 'fileSystemId' => [ 'shape' => 'String', ], 'rootDirectory' => [ 'shape' => 'String', ], 'transitEncryption' => [ 'shape' => 'EFSTransitEncryption', ], 'transitEncryptionPort' => [ 'shape' => 'Integer', ], 'authorizationConfig' => [ 'shape' => 'EFSAuthorizationConfig', ], ], ], 'Ec2Configuration' => [ 'type' => 'structure', 'required' => [ 'imageType', ], 'members' => [ 'imageType' => [ 'shape' => 'ImageType', ], 'imageIdOverride' => [ 'shape' => 'ImageIdOverride', ], 'imageKubernetesVersion' => [ 'shape' => 'KubernetesVersion', ], ], ], 'Ec2ConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ec2Configuration', ], ], 'EksAttemptContainerDetail' => [ 'type' => 'structure', 'members' => [ 'exitCode' => [ 'shape' => 'Integer', ], 'reason' => [ 'shape' => 'String', ], ], ], 'EksAttemptContainerDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'EksAttemptContainerDetail', ], ], 'EksAttemptDetail' => [ 'type' => 'structure', 'members' => [ 'containers' => [ 'shape' => 'EksAttemptContainerDetails', ], 'podName' => [ 'shape' => 'String', ], 'nodeName' => [ 'shape' => 'String', ], 'startedAt' => [ 'shape' => 'Long', ], 'stoppedAt' => [ 'shape' => 'Long', ], 'statusReason' => [ 'shape' => 'String', ], ], ], 'EksAttemptDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'EksAttemptDetail', ], ], 'EksConfiguration' => [ 'type' => 'structure', 'required' => [ 'eksClusterArn', 'kubernetesNamespace', ], 'members' => [ 'eksClusterArn' => [ 'shape' => 'String', ], 'kubernetesNamespace' => [ 'shape' => 'String', ], ], ], 'EksContainer' => [ 'type' => 'structure', 'required' => [ 'image', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'image' => [ 'shape' => 'String', ], 'imagePullPolicy' => [ 'shape' => 'String', ], 'command' => [ 'shape' => 'StringList', ], 'args' => [ 'shape' => 'StringList', ], 'env' => [ 'shape' => 'EksContainerEnvironmentVariables', ], 'resources' => [ 'shape' => 'EksContainerResourceRequirements', ], 'volumeMounts' => [ 'shape' => 'EksContainerVolumeMounts', ], 'securityContext' => [ 'shape' => 'EksContainerSecurityContext', ], ], ], 'EksContainerDetail' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'String', ], 'image' => [ 'shape' => 'String', ], 'imagePullPolicy' => [ 'shape' => 'String', ], 'command' => [ 'shape' => 'StringList', ], 'args' => [ 'shape' => 'StringList', ], 'env' => [ 'shape' => 'EksContainerEnvironmentVariables', ], 'resources' => [ 'shape' => 'EksContainerResourceRequirements', ], 'exitCode' => [ 'shape' => 'Integer', ], 'reason' => [ 'shape' => 'String', ], 'volumeMounts' => [ 'shape' => 'EksContainerVolumeMounts', ], 'securityContext' => [ 'shape' => 'EksContainerSecurityContext', ], ], ], 'EksContainerDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'EksContainerDetail', ], ], 'EksContainerEnvironmentVariable' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], ], 'EksContainerEnvironmentVariables' => [ 'type' => 'list', 'member' => [ 'shape' => 'EksContainerEnvironmentVariable', ], ], 'EksContainerOverride' => [ 'type' => 'structure', 'members' => [ 'image' => [ 'shape' => 'String', ], 'command' => [ 'shape' => 'StringList', ], 'args' => [ 'shape' => 'StringList', ], 'env' => [ 'shape' => 'EksContainerEnvironmentVariables', ], 'resources' => [ 'shape' => 'EksContainerResourceRequirements', ], ], ], 'EksContainerOverrideList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EksContainerOverride', ], ], 'EksContainerResourceRequirements' => [ 'type' => 'structure', 'members' => [ 'limits' => [ 'shape' => 'EksLimits', ], 'requests' => [ 'shape' => 'EksRequests', ], ], ], 'EksContainerSecurityContext' => [ 'type' => 'structure', 'members' => [ 'runAsUser' => [ 'shape' => 'Long', ], 'runAsGroup' => [ 'shape' => 'Long', ], 'privileged' => [ 'shape' => 'Boolean', ], 'readOnlyRootFilesystem' => [ 'shape' => 'Boolean', ], 'runAsNonRoot' => [ 'shape' => 'Boolean', ], ], ], 'EksContainerVolumeMount' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'String', ], 'mountPath' => [ 'shape' => 'String', ], 'readOnly' => [ 'shape' => 'Boolean', ], ], ], 'EksContainerVolumeMounts' => [ 'type' => 'list', 'member' => [ 'shape' => 'EksContainerVolumeMount', ], ], 'EksContainers' => [ 'type' => 'list', 'member' => [ 'shape' => 'EksContainer', ], ], 'EksEmptyDir' => [ 'type' => 'structure', 'members' => [ 'medium' => [ 'shape' => 'String', ], 'sizeLimit' => [ 'shape' => 'Quantity', ], ], ], 'EksHostPath' => [ 'type' => 'structure', 'members' => [ 'path' => [ 'shape' => 'String', ], ], ], 'EksLabelsMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'EksLimits' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'Quantity', ], ], 'EksMetadata' => [ 'type' => 'structure', 'members' => [ 'labels' => [ 'shape' => 'EksLabelsMap', ], ], ], 'EksPodProperties' => [ 'type' => 'structure', 'members' => [ 'serviceAccountName' => [ 'shape' => 'String', ], 'hostNetwork' => [ 'shape' => 'Boolean', ], 'dnsPolicy' => [ 'shape' => 'String', ], 'containers' => [ 'shape' => 'EksContainers', ], 'volumes' => [ 'shape' => 'EksVolumes', ], 'metadata' => [ 'shape' => 'EksMetadata', ], ], ], 'EksPodPropertiesDetail' => [ 'type' => 'structure', 'members' => [ 'serviceAccountName' => [ 'shape' => 'String', ], 'hostNetwork' => [ 'shape' => 'Boolean', ], 'dnsPolicy' => [ 'shape' => 'String', ], 'containers' => [ 'shape' => 'EksContainerDetails', ], 'volumes' => [ 'shape' => 'EksVolumes', ], 'podName' => [ 'shape' => 'String', ], 'nodeName' => [ 'shape' => 'String', ], 'metadata' => [ 'shape' => 'EksMetadata', ], ], ], 'EksPodPropertiesOverride' => [ 'type' => 'structure', 'members' => [ 'containers' => [ 'shape' => 'EksContainerOverrideList', ], 'metadata' => [ 'shape' => 'EksMetadata', ], ], ], 'EksProperties' => [ 'type' => 'structure', 'members' => [ 'podProperties' => [ 'shape' => 'EksPodProperties', ], ], ], 'EksPropertiesDetail' => [ 'type' => 'structure', 'members' => [ 'podProperties' => [ 'shape' => 'EksPodPropertiesDetail', ], ], ], 'EksPropertiesOverride' => [ 'type' => 'structure', 'members' => [ 'podProperties' => [ 'shape' => 'EksPodPropertiesOverride', ], ], ], 'EksRequests' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'Quantity', ], ], 'EksSecret' => [ 'type' => 'structure', 'required' => [ 'secretName', ], 'members' => [ 'secretName' => [ 'shape' => 'String', ], 'optional' => [ 'shape' => 'Boolean', ], ], ], 'EksVolume' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'hostPath' => [ 'shape' => 'EksHostPath', ], 'emptyDir' => [ 'shape' => 'EksEmptyDir', ], 'secret' => [ 'shape' => 'EksSecret', ], ], ], 'EksVolumes' => [ 'type' => 'list', 'member' => [ 'shape' => 'EksVolume', ], ], 'EnvironmentVariables' => [ 'type' => 'list', 'member' => [ 'shape' => 'KeyValuePair', ], ], 'EphemeralStorage' => [ 'type' => 'structure', 'required' => [ 'sizeInGiB', ], 'members' => [ 'sizeInGiB' => [ 'shape' => 'Integer', ], ], ], 'EvaluateOnExit' => [ 'type' => 'structure', 'required' => [ 'action', ], 'members' => [ 'onStatusReason' => [ 'shape' => 'String', ], 'onReason' => [ 'shape' => 'String', ], 'onExitCode' => [ 'shape' => 'String', ], 'action' => [ 'shape' => 'RetryAction', ], ], ], 'EvaluateOnExitList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EvaluateOnExit', ], ], 'FairsharePolicy' => [ 'type' => 'structure', 'members' => [ 'shareDecaySeconds' => [ 'shape' => 'Integer', ], 'computeReservation' => [ 'shape' => 'Integer', ], 'shareDistribution' => [ 'shape' => 'ShareAttributesList', ], ], ], 'FargatePlatformConfiguration' => [ 'type' => 'structure', 'members' => [ 'platformVersion' => [ 'shape' => 'String', ], ], ], 'Float' => [ 'type' => 'float', ], 'Host' => [ 'type' => 'structure', 'members' => [ 'sourcePath' => [ 'shape' => 'String', ], ], ], 'ImageIdOverride' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'ImageType' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'Integer' => [ 'type' => 'integer', ], 'JQState' => [ 'type' => 'string', 'enum' => [ 'ENABLED', 'DISABLED', ], ], 'JQStatus' => [ 'type' => 'string', 'enum' => [ 'CREATING', 'UPDATING', 'DELETING', 'DELETED', 'VALID', 'INVALID', ], ], 'JobDefinition' => [ 'type' => 'structure', 'required' => [ 'jobDefinitionName', 'jobDefinitionArn', 'revision', 'type', ], 'members' => [ 'jobDefinitionName' => [ 'shape' => 'String', ], 'jobDefinitionArn' => [ 'shape' => 'String', ], 'revision' => [ 'shape' => 'Integer', ], 'status' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'String', ], 'schedulingPriority' => [ 'shape' => 'Integer', ], 'parameters' => [ 'shape' => 'ParametersMap', ], 'retryStrategy' => [ 'shape' => 'RetryStrategy', ], 'containerProperties' => [ 'shape' => 'ContainerProperties', ], 'timeout' => [ 'shape' => 'JobTimeout', ], 'nodeProperties' => [ 'shape' => 'NodeProperties', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], 'propagateTags' => [ 'shape' => 'Boolean', ], 'platformCapabilities' => [ 'shape' => 'PlatformCapabilityList', ], 'eksProperties' => [ 'shape' => 'EksProperties', ], 'containerOrchestrationType' => [ 'shape' => 'OrchestrationType', ], ], ], 'JobDefinitionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobDefinition', ], ], 'JobDefinitionType' => [ 'type' => 'string', 'enum' => [ 'container', 'multinode', ], ], 'JobDependency' => [ 'type' => 'structure', 'members' => [ 'jobId' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'ArrayJobDependency', ], ], ], 'JobDependencyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobDependency', ], ], 'JobDetail' => [ 'type' => 'structure', 'required' => [ 'jobName', 'jobId', 'jobQueue', 'status', 'startedAt', 'jobDefinition', ], 'members' => [ 'jobArn' => [ 'shape' => 'String', ], 'jobName' => [ 'shape' => 'String', ], 'jobId' => [ 'shape' => 'String', ], 'jobQueue' => [ 'shape' => 'String', ], 'status' => [ 'shape' => 'JobStatus', ], 'shareIdentifier' => [ 'shape' => 'String', ], 'schedulingPriority' => [ 'shape' => 'Integer', ], 'attempts' => [ 'shape' => 'AttemptDetails', ], 'statusReason' => [ 'shape' => 'String', ], 'createdAt' => [ 'shape' => 'Long', ], 'retryStrategy' => [ 'shape' => 'RetryStrategy', ], 'startedAt' => [ 'shape' => 'Long', ], 'stoppedAt' => [ 'shape' => 'Long', ], 'dependsOn' => [ 'shape' => 'JobDependencyList', ], 'jobDefinition' => [ 'shape' => 'String', ], 'parameters' => [ 'shape' => 'ParametersMap', ], 'container' => [ 'shape' => 'ContainerDetail', ], 'nodeDetails' => [ 'shape' => 'NodeDetails', ], 'nodeProperties' => [ 'shape' => 'NodeProperties', ], 'arrayProperties' => [ 'shape' => 'ArrayPropertiesDetail', ], 'timeout' => [ 'shape' => 'JobTimeout', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], 'propagateTags' => [ 'shape' => 'Boolean', ], 'platformCapabilities' => [ 'shape' => 'PlatformCapabilityList', ], 'eksProperties' => [ 'shape' => 'EksPropertiesDetail', ], 'eksAttempts' => [ 'shape' => 'EksAttemptDetails', ], 'isCancelled' => [ 'shape' => 'Boolean', ], 'isTerminated' => [ 'shape' => 'Boolean', ], ], ], 'JobDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobDetail', ], ], 'JobExecutionTimeoutMinutes' => [ 'type' => 'long', 'max' => 360, 'min' => 1, ], 'JobQueueDetail' => [ 'type' => 'structure', 'required' => [ 'jobQueueName', 'jobQueueArn', 'state', 'priority', 'computeEnvironmentOrder', ], 'members' => [ 'jobQueueName' => [ 'shape' => 'String', ], 'jobQueueArn' => [ 'shape' => 'String', ], 'state' => [ 'shape' => 'JQState', ], 'schedulingPolicyArn' => [ 'shape' => 'String', ], 'status' => [ 'shape' => 'JQStatus', ], 'statusReason' => [ 'shape' => 'String', ], 'priority' => [ 'shape' => 'Integer', ], 'computeEnvironmentOrder' => [ 'shape' => 'ComputeEnvironmentOrders', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], ], ], 'JobQueueDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobQueueDetail', ], ], 'JobStatus' => [ 'type' => 'string', 'enum' => [ 'SUBMITTED', 'PENDING', 'RUNNABLE', 'STARTING', 'RUNNING', 'SUCCEEDED', 'FAILED', ], ], 'JobSummary' => [ 'type' => 'structure', 'required' => [ 'jobId', 'jobName', ], 'members' => [ 'jobArn' => [ 'shape' => 'String', ], 'jobId' => [ 'shape' => 'String', ], 'jobName' => [ 'shape' => 'String', ], 'createdAt' => [ 'shape' => 'Long', ], 'status' => [ 'shape' => 'JobStatus', ], 'statusReason' => [ 'shape' => 'String', ], 'startedAt' => [ 'shape' => 'Long', ], 'stoppedAt' => [ 'shape' => 'Long', ], 'container' => [ 'shape' => 'ContainerSummary', ], 'arrayProperties' => [ 'shape' => 'ArrayPropertiesSummary', ], 'nodeProperties' => [ 'shape' => 'NodePropertiesSummary', ], 'jobDefinition' => [ 'shape' => 'String', ], ], ], 'JobSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobSummary', ], ], 'JobTimeout' => [ 'type' => 'structure', 'members' => [ 'attemptDurationSeconds' => [ 'shape' => 'Integer', ], ], ], 'KeyValuePair' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], ], 'KeyValuesPair' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'String', ], 'values' => [ 'shape' => 'StringList', ], ], ], 'KubernetesVersion' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'LaunchTemplateSpecification' => [ 'type' => 'structure', 'members' => [ 'launchTemplateId' => [ 'shape' => 'String', ], 'launchTemplateName' => [ 'shape' => 'String', ], 'version' => [ 'shape' => 'String', ], ], ], 'LinuxParameters' => [ 'type' => 'structure', 'members' => [ 'devices' => [ 'shape' => 'DevicesList', ], 'initProcessEnabled' => [ 'shape' => 'Boolean', ], 'sharedMemorySize' => [ 'shape' => 'Integer', ], 'tmpfs' => [ 'shape' => 'TmpfsList', ], 'maxSwap' => [ 'shape' => 'Integer', ], 'swappiness' => [ 'shape' => 'Integer', ], ], ], 'ListJobsFilterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'KeyValuesPair', ], ], 'ListJobsRequest' => [ 'type' => 'structure', 'members' => [ 'jobQueue' => [ 'shape' => 'String', ], 'arrayJobId' => [ 'shape' => 'String', ], 'multiNodeJobId' => [ 'shape' => 'String', ], 'jobStatus' => [ 'shape' => 'JobStatus', ], 'maxResults' => [ 'shape' => 'Integer', ], 'nextToken' => [ 'shape' => 'String', ], 'filters' => [ 'shape' => 'ListJobsFilterList', ], ], ], 'ListJobsResponse' => [ 'type' => 'structure', 'required' => [ 'jobSummaryList', ], 'members' => [ 'jobSummaryList' => [ 'shape' => 'JobSummaryList', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'ListSchedulingPoliciesRequest' => [ 'type' => 'structure', 'members' => [ 'maxResults' => [ 'shape' => 'Integer', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'ListSchedulingPoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'schedulingPolicies' => [ 'shape' => 'SchedulingPolicyListingDetailList', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'ListTagsForResourceRequest' => [ 'type' => 'structure', 'required' => [ 'resourceArn', ], 'members' => [ 'resourceArn' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resourceArn', ], ], ], 'ListTagsForResourceResponse' => [ 'type' => 'structure', 'members' => [ 'tags' => [ 'shape' => 'TagrisTagsMap', ], ], ], 'LogConfiguration' => [ 'type' => 'structure', 'required' => [ 'logDriver', ], 'members' => [ 'logDriver' => [ 'shape' => 'LogDriver', ], 'options' => [ 'shape' => 'LogConfigurationOptionsMap', ], 'secretOptions' => [ 'shape' => 'SecretList', ], ], ], 'LogConfigurationOptionsMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'LogDriver' => [ 'type' => 'string', 'enum' => [ 'json-file', 'syslog', 'journald', 'gelf', 'fluentd', 'awslogs', 'splunk', ], ], 'Long' => [ 'type' => 'long', ], 'MountPoint' => [ 'type' => 'structure', 'members' => [ 'containerPath' => [ 'shape' => 'String', ], 'readOnly' => [ 'shape' => 'Boolean', ], 'sourceVolume' => [ 'shape' => 'String', ], ], ], 'MountPoints' => [ 'type' => 'list', 'member' => [ 'shape' => 'MountPoint', ], ], 'NetworkConfiguration' => [ 'type' => 'structure', 'members' => [ 'assignPublicIp' => [ 'shape' => 'AssignPublicIp', ], ], ], 'NetworkInterface' => [ 'type' => 'structure', 'members' => [ 'attachmentId' => [ 'shape' => 'String', ], 'ipv6Address' => [ 'shape' => 'String', ], 'privateIpv4Address' => [ 'shape' => 'String', ], ], ], 'NetworkInterfaceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterface', ], ], 'NodeDetails' => [ 'type' => 'structure', 'members' => [ 'nodeIndex' => [ 'shape' => 'Integer', ], 'isMainNode' => [ 'shape' => 'Boolean', ], ], ], 'NodeOverrides' => [ 'type' => 'structure', 'members' => [ 'numNodes' => [ 'shape' => 'Integer', ], 'nodePropertyOverrides' => [ 'shape' => 'NodePropertyOverrides', ], ], ], 'NodeProperties' => [ 'type' => 'structure', 'required' => [ 'numNodes', 'mainNode', 'nodeRangeProperties', ], 'members' => [ 'numNodes' => [ 'shape' => 'Integer', ], 'mainNode' => [ 'shape' => 'Integer', ], 'nodeRangeProperties' => [ 'shape' => 'NodeRangeProperties', ], ], ], 'NodePropertiesSummary' => [ 'type' => 'structure', 'members' => [ 'isMainNode' => [ 'shape' => 'Boolean', ], 'numNodes' => [ 'shape' => 'Integer', ], 'nodeIndex' => [ 'shape' => 'Integer', ], ], ], 'NodePropertyOverride' => [ 'type' => 'structure', 'required' => [ 'targetNodes', ], 'members' => [ 'targetNodes' => [ 'shape' => 'String', ], 'containerOverrides' => [ 'shape' => 'ContainerOverrides', ], ], ], 'NodePropertyOverrides' => [ 'type' => 'list', 'member' => [ 'shape' => 'NodePropertyOverride', ], ], 'NodeRangeProperties' => [ 'type' => 'list', 'member' => [ 'shape' => 'NodeRangeProperty', ], ], 'NodeRangeProperty' => [ 'type' => 'structure', 'required' => [ 'targetNodes', ], 'members' => [ 'targetNodes' => [ 'shape' => 'String', ], 'container' => [ 'shape' => 'ContainerProperties', ], ], ], 'OrchestrationType' => [ 'type' => 'string', 'enum' => [ 'ECS', 'EKS', ], ], 'ParametersMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'PlatformCapability' => [ 'type' => 'string', 'enum' => [ 'EC2', 'FARGATE', ], ], 'PlatformCapabilityList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PlatformCapability', ], ], 'Quantity' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'RegisterJobDefinitionRequest' => [ 'type' => 'structure', 'required' => [ 'jobDefinitionName', 'type', ], 'members' => [ 'jobDefinitionName' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'JobDefinitionType', ], 'parameters' => [ 'shape' => 'ParametersMap', ], 'schedulingPriority' => [ 'shape' => 'Integer', ], 'containerProperties' => [ 'shape' => 'ContainerProperties', ], 'nodeProperties' => [ 'shape' => 'NodeProperties', ], 'retryStrategy' => [ 'shape' => 'RetryStrategy', ], 'propagateTags' => [ 'shape' => 'Boolean', ], 'timeout' => [ 'shape' => 'JobTimeout', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], 'platformCapabilities' => [ 'shape' => 'PlatformCapabilityList', ], 'eksProperties' => [ 'shape' => 'EksProperties', ], ], ], 'RegisterJobDefinitionResponse' => [ 'type' => 'structure', 'required' => [ 'jobDefinitionName', 'jobDefinitionArn', 'revision', ], 'members' => [ 'jobDefinitionName' => [ 'shape' => 'String', ], 'jobDefinitionArn' => [ 'shape' => 'String', ], 'revision' => [ 'shape' => 'Integer', ], ], ], 'RepositoryCredentials' => [ 'type' => 'structure', 'required' => [ 'credentialsParameter', ], 'members' => [ 'credentialsParameter' => [ 'shape' => 'String', ], ], ], 'ResourceRequirement' => [ 'type' => 'structure', 'required' => [ 'value', 'type', ], 'members' => [ 'value' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'ResourceType', ], ], ], 'ResourceRequirements' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceRequirement', ], ], 'ResourceType' => [ 'type' => 'string', 'enum' => [ 'GPU', 'VCPU', 'MEMORY', ], ], 'RetryAction' => [ 'type' => 'string', 'enum' => [ 'RETRY', 'EXIT', ], ], 'RetryStrategy' => [ 'type' => 'structure', 'members' => [ 'attempts' => [ 'shape' => 'Integer', ], 'evaluateOnExit' => [ 'shape' => 'EvaluateOnExitList', ], ], ], 'RuntimePlatform' => [ 'type' => 'structure', 'members' => [ 'operatingSystemFamily' => [ 'shape' => 'String', ], 'cpuArchitecture' => [ 'shape' => 'String', ], ], ], 'SchedulingPolicyDetail' => [ 'type' => 'structure', 'required' => [ 'name', 'arn', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'arn' => [ 'shape' => 'String', ], 'fairsharePolicy' => [ 'shape' => 'FairsharePolicy', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], ], ], 'SchedulingPolicyDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SchedulingPolicyDetail', ], ], 'SchedulingPolicyListingDetail' => [ 'type' => 'structure', 'required' => [ 'arn', ], 'members' => [ 'arn' => [ 'shape' => 'String', ], ], ], 'SchedulingPolicyListingDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SchedulingPolicyListingDetail', ], ], 'Secret' => [ 'type' => 'structure', 'required' => [ 'name', 'valueFrom', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'valueFrom' => [ 'shape' => 'String', ], ], ], 'SecretList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Secret', ], ], 'ServerException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], 'ShareAttributes' => [ 'type' => 'structure', 'required' => [ 'shareIdentifier', ], 'members' => [ 'shareIdentifier' => [ 'shape' => 'String', ], 'weightFactor' => [ 'shape' => 'Float', ], ], ], 'ShareAttributesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ShareAttributes', ], ], 'String' => [ 'type' => 'string', ], 'StringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'SubmitJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobName', 'jobQueue', 'jobDefinition', ], 'members' => [ 'jobName' => [ 'shape' => 'String', ], 'jobQueue' => [ 'shape' => 'String', ], 'shareIdentifier' => [ 'shape' => 'String', ], 'schedulingPriorityOverride' => [ 'shape' => 'Integer', ], 'arrayProperties' => [ 'shape' => 'ArrayProperties', ], 'dependsOn' => [ 'shape' => 'JobDependencyList', ], 'jobDefinition' => [ 'shape' => 'String', ], 'parameters' => [ 'shape' => 'ParametersMap', ], 'containerOverrides' => [ 'shape' => 'ContainerOverrides', ], 'nodeOverrides' => [ 'shape' => 'NodeOverrides', ], 'retryStrategy' => [ 'shape' => 'RetryStrategy', ], 'propagateTags' => [ 'shape' => 'Boolean', ], 'timeout' => [ 'shape' => 'JobTimeout', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], 'eksPropertiesOverride' => [ 'shape' => 'EksPropertiesOverride', ], ], ], 'SubmitJobResponse' => [ 'type' => 'structure', 'required' => [ 'jobName', 'jobId', ], 'members' => [ 'jobArn' => [ 'shape' => 'String', ], 'jobName' => [ 'shape' => 'String', ], 'jobId' => [ 'shape' => 'String', ], ], ], 'TagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'TagKeysList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagKey', ], 'max' => 50, 'min' => 1, ], 'TagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'resourceArn', 'tags', ], 'members' => [ 'resourceArn' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resourceArn', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], ], ], 'TagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'TagValue' => [ 'type' => 'string', 'max' => 256, ], 'TagrisTagsMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'TagKey', ], 'value' => [ 'shape' => 'TagValue', ], 'max' => 50, 'min' => 1, ], 'TagsMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'TerminateJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', 'reason', ], 'members' => [ 'jobId' => [ 'shape' => 'String', ], 'reason' => [ 'shape' => 'String', ], ], ], 'TerminateJobResponse' => [ 'type' => 'structure', 'members' => [], ], 'Tmpfs' => [ 'type' => 'structure', 'required' => [ 'containerPath', 'size', ], 'members' => [ 'containerPath' => [ 'shape' => 'String', ], 'size' => [ 'shape' => 'Integer', ], 'mountOptions' => [ 'shape' => 'StringList', ], ], ], 'TmpfsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tmpfs', ], ], 'Ulimit' => [ 'type' => 'structure', 'required' => [ 'hardLimit', 'name', 'softLimit', ], 'members' => [ 'hardLimit' => [ 'shape' => 'Integer', ], 'name' => [ 'shape' => 'String', ], 'softLimit' => [ 'shape' => 'Integer', ], ], ], 'Ulimits' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ulimit', ], ], 'UntagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'resourceArn', 'tagKeys', ], 'members' => [ 'resourceArn' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resourceArn', ], 'tagKeys' => [ 'shape' => 'TagKeysList', 'location' => 'querystring', 'locationName' => 'tagKeys', ], ], ], 'UntagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateComputeEnvironmentRequest' => [ 'type' => 'structure', 'required' => [ 'computeEnvironment', ], 'members' => [ 'computeEnvironment' => [ 'shape' => 'String', ], 'state' => [ 'shape' => 'CEState', ], 'unmanagedvCpus' => [ 'shape' => 'Integer', ], 'computeResources' => [ 'shape' => 'ComputeResourceUpdate', ], 'serviceRole' => [ 'shape' => 'String', ], 'updatePolicy' => [ 'shape' => 'UpdatePolicy', ], ], ], 'UpdateComputeEnvironmentResponse' => [ 'type' => 'structure', 'members' => [ 'computeEnvironmentName' => [ 'shape' => 'String', ], 'computeEnvironmentArn' => [ 'shape' => 'String', ], ], ], 'UpdateJobQueueRequest' => [ 'type' => 'structure', 'required' => [ 'jobQueue', ], 'members' => [ 'jobQueue' => [ 'shape' => 'String', ], 'state' => [ 'shape' => 'JQState', ], 'schedulingPolicyArn' => [ 'shape' => 'String', ], 'priority' => [ 'shape' => 'Integer', ], 'computeEnvironmentOrder' => [ 'shape' => 'ComputeEnvironmentOrders', ], ], ], 'UpdateJobQueueResponse' => [ 'type' => 'structure', 'members' => [ 'jobQueueName' => [ 'shape' => 'String', ], 'jobQueueArn' => [ 'shape' => 'String', ], ], ], 'UpdatePolicy' => [ 'type' => 'structure', 'members' => [ 'terminateJobsOnUpdate' => [ 'shape' => 'Boolean', ], 'jobExecutionTimeoutMinutes' => [ 'shape' => 'JobExecutionTimeoutMinutes', ], ], ], 'UpdateSchedulingPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'arn', ], 'members' => [ 'arn' => [ 'shape' => 'String', ], 'fairsharePolicy' => [ 'shape' => 'FairsharePolicy', ], ], ], 'UpdateSchedulingPolicyResponse' => [ 'type' => 'structure', 'members' => [], ], 'Volume' => [ 'type' => 'structure', 'members' => [ 'host' => [ 'shape' => 'Host', ], 'name' => [ 'shape' => 'String', ], 'efsVolumeConfiguration' => [ 'shape' => 'EFSVolumeConfiguration', ], ], ], 'Volumes' => [ 'type' => 'list', 'member' => [ 'shape' => 'Volume', ], ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2016-08-10', 'endpointPrefix' => 'batch', 'jsonVersion' => '1.1', 'protocol' => 'rest-json', 'serviceAbbreviation' => 'AWS Batch', 'serviceFullName' => 'AWS Batch', 'serviceId' => 'Batch', 'signatureVersion' => 'v4', 'uid' => 'batch-2016-08-10', ], 'operations' => [ 'CancelJob' => [ 'name' => 'CancelJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/canceljob', ], 'input' => [ 'shape' => 'CancelJobRequest', ], 'output' => [ 'shape' => 'CancelJobResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'CreateComputeEnvironment' => [ 'name' => 'CreateComputeEnvironment', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/createcomputeenvironment', ], 'input' => [ 'shape' => 'CreateComputeEnvironmentRequest', ], 'output' => [ 'shape' => 'CreateComputeEnvironmentResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'CreateJobQueue' => [ 'name' => 'CreateJobQueue', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/createjobqueue', ], 'input' => [ 'shape' => 'CreateJobQueueRequest', ], 'output' => [ 'shape' => 'CreateJobQueueResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'CreateSchedulingPolicy' => [ 'name' => 'CreateSchedulingPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/createschedulingpolicy', ], 'input' => [ 'shape' => 'CreateSchedulingPolicyRequest', ], 'output' => [ 'shape' => 'CreateSchedulingPolicyResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DeleteComputeEnvironment' => [ 'name' => 'DeleteComputeEnvironment', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/deletecomputeenvironment', ], 'input' => [ 'shape' => 'DeleteComputeEnvironmentRequest', ], 'output' => [ 'shape' => 'DeleteComputeEnvironmentResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DeleteJobQueue' => [ 'name' => 'DeleteJobQueue', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/deletejobqueue', ], 'input' => [ 'shape' => 'DeleteJobQueueRequest', ], 'output' => [ 'shape' => 'DeleteJobQueueResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DeleteSchedulingPolicy' => [ 'name' => 'DeleteSchedulingPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/deleteschedulingpolicy', ], 'input' => [ 'shape' => 'DeleteSchedulingPolicyRequest', ], 'output' => [ 'shape' => 'DeleteSchedulingPolicyResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DeregisterJobDefinition' => [ 'name' => 'DeregisterJobDefinition', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/deregisterjobdefinition', ], 'input' => [ 'shape' => 'DeregisterJobDefinitionRequest', ], 'output' => [ 'shape' => 'DeregisterJobDefinitionResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DescribeComputeEnvironments' => [ 'name' => 'DescribeComputeEnvironments', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/describecomputeenvironments', ], 'input' => [ 'shape' => 'DescribeComputeEnvironmentsRequest', ], 'output' => [ 'shape' => 'DescribeComputeEnvironmentsResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DescribeJobDefinitions' => [ 'name' => 'DescribeJobDefinitions', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/describejobdefinitions', ], 'input' => [ 'shape' => 'DescribeJobDefinitionsRequest', ], 'output' => [ 'shape' => 'DescribeJobDefinitionsResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DescribeJobQueues' => [ 'name' => 'DescribeJobQueues', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/describejobqueues', ], 'input' => [ 'shape' => 'DescribeJobQueuesRequest', ], 'output' => [ 'shape' => 'DescribeJobQueuesResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DescribeJobs' => [ 'name' => 'DescribeJobs', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/describejobs', ], 'input' => [ 'shape' => 'DescribeJobsRequest', ], 'output' => [ 'shape' => 'DescribeJobsResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'DescribeSchedulingPolicies' => [ 'name' => 'DescribeSchedulingPolicies', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/describeschedulingpolicies', ], 'input' => [ 'shape' => 'DescribeSchedulingPoliciesRequest', ], 'output' => [ 'shape' => 'DescribeSchedulingPoliciesResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'ListJobs' => [ 'name' => 'ListJobs', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/listjobs', ], 'input' => [ 'shape' => 'ListJobsRequest', ], 'output' => [ 'shape' => 'ListJobsResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'ListSchedulingPolicies' => [ 'name' => 'ListSchedulingPolicies', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/listschedulingpolicies', ], 'input' => [ 'shape' => 'ListSchedulingPoliciesRequest', ], 'output' => [ 'shape' => 'ListSchedulingPoliciesResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource', 'http' => [ 'method' => 'GET', 'requestUri' => '/v1/tags/{resourceArn}', ], 'input' => [ 'shape' => 'ListTagsForResourceRequest', ], 'output' => [ 'shape' => 'ListTagsForResourceResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'RegisterJobDefinition' => [ 'name' => 'RegisterJobDefinition', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/registerjobdefinition', ], 'input' => [ 'shape' => 'RegisterJobDefinitionRequest', ], 'output' => [ 'shape' => 'RegisterJobDefinitionResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'SubmitJob' => [ 'name' => 'SubmitJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/submitjob', ], 'input' => [ 'shape' => 'SubmitJobRequest', ], 'output' => [ 'shape' => 'SubmitJobResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'TagResource' => [ 'name' => 'TagResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/tags/{resourceArn}', ], 'input' => [ 'shape' => 'TagResourceRequest', ], 'output' => [ 'shape' => 'TagResourceResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'TerminateJob' => [ 'name' => 'TerminateJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/terminatejob', ], 'input' => [ 'shape' => 'TerminateJobRequest', ], 'output' => [ 'shape' => 'TerminateJobResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'UntagResource' => [ 'name' => 'UntagResource', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/v1/tags/{resourceArn}', ], 'input' => [ 'shape' => 'UntagResourceRequest', ], 'output' => [ 'shape' => 'UntagResourceResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'UpdateComputeEnvironment' => [ 'name' => 'UpdateComputeEnvironment', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/updatecomputeenvironment', ], 'input' => [ 'shape' => 'UpdateComputeEnvironmentRequest', ], 'output' => [ 'shape' => 'UpdateComputeEnvironmentResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'UpdateJobQueue' => [ 'name' => 'UpdateJobQueue', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/updatejobqueue', ], 'input' => [ 'shape' => 'UpdateJobQueueRequest', ], 'output' => [ 'shape' => 'UpdateJobQueueResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], 'UpdateSchedulingPolicy' => [ 'name' => 'UpdateSchedulingPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/v1/updateschedulingpolicy', ], 'input' => [ 'shape' => 'UpdateSchedulingPolicyRequest', ], 'output' => [ 'shape' => 'UpdateSchedulingPolicyResponse', ], 'errors' => [ [ 'shape' => 'ClientException', ], [ 'shape' => 'ServerException', ], ], ], ], 'shapes' => [ 'ArrayJobDependency' => [ 'type' => 'string', 'enum' => [ 'N_TO_N', 'SEQUENTIAL', ], ], 'ArrayJobStatusSummary' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'Integer', ], ], 'ArrayProperties' => [ 'type' => 'structure', 'members' => [ 'size' => [ 'shape' => 'Integer', ], ], ], 'ArrayPropertiesDetail' => [ 'type' => 'structure', 'members' => [ 'statusSummary' => [ 'shape' => 'ArrayJobStatusSummary', ], 'size' => [ 'shape' => 'Integer', ], 'index' => [ 'shape' => 'Integer', ], ], ], 'ArrayPropertiesSummary' => [ 'type' => 'structure', 'members' => [ 'size' => [ 'shape' => 'Integer', ], 'index' => [ 'shape' => 'Integer', ], ], ], 'AssignPublicIp' => [ 'type' => 'string', 'enum' => [ 'ENABLED', 'DISABLED', ], ], 'AttemptContainerDetail' => [ 'type' => 'structure', 'members' => [ 'containerInstanceArn' => [ 'shape' => 'String', ], 'taskArn' => [ 'shape' => 'String', ], 'exitCode' => [ 'shape' => 'Integer', ], 'reason' => [ 'shape' => 'String', ], 'logStreamName' => [ 'shape' => 'String', ], 'networkInterfaces' => [ 'shape' => 'NetworkInterfaceList', ], ], ], 'AttemptDetail' => [ 'type' => 'structure', 'members' => [ 'container' => [ 'shape' => 'AttemptContainerDetail', ], 'startedAt' => [ 'shape' => 'Long', ], 'stoppedAt' => [ 'shape' => 'Long', ], 'statusReason' => [ 'shape' => 'String', ], ], ], 'AttemptDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'AttemptDetail', ], ], 'Boolean' => [ 'type' => 'boolean', ], 'CEState' => [ 'type' => 'string', 'enum' => [ 'ENABLED', 'DISABLED', ], ], 'CEStatus' => [ 'type' => 'string', 'enum' => [ 'CREATING', 'UPDATING', 'DELETING', 'DELETED', 'VALID', 'INVALID', ], ], 'CEType' => [ 'type' => 'string', 'enum' => [ 'MANAGED', 'UNMANAGED', ], ], 'CRAllocationStrategy' => [ 'type' => 'string', 'enum' => [ 'BEST_FIT', 'BEST_FIT_PROGRESSIVE', 'SPOT_CAPACITY_OPTIMIZED', 'SPOT_PRICE_CAPACITY_OPTIMIZED', ], ], 'CRType' => [ 'type' => 'string', 'enum' => [ 'EC2', 'SPOT', 'FARGATE', 'FARGATE_SPOT', ], ], 'CRUpdateAllocationStrategy' => [ 'type' => 'string', 'enum' => [ 'BEST_FIT_PROGRESSIVE', 'SPOT_CAPACITY_OPTIMIZED', 'SPOT_PRICE_CAPACITY_OPTIMIZED', ], ], 'CancelJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', 'reason', ], 'members' => [ 'jobId' => [ 'shape' => 'String', ], 'reason' => [ 'shape' => 'String', ], ], ], 'CancelJobResponse' => [ 'type' => 'structure', 'members' => [], ], 'ClientException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'ComputeEnvironmentDetail' => [ 'type' => 'structure', 'required' => [ 'computeEnvironmentName', 'computeEnvironmentArn', ], 'members' => [ 'computeEnvironmentName' => [ 'shape' => 'String', ], 'computeEnvironmentArn' => [ 'shape' => 'String', ], 'unmanagedvCpus' => [ 'shape' => 'Integer', ], 'ecsClusterArn' => [ 'shape' => 'String', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], 'type' => [ 'shape' => 'CEType', ], 'state' => [ 'shape' => 'CEState', ], 'status' => [ 'shape' => 'CEStatus', ], 'statusReason' => [ 'shape' => 'String', ], 'computeResources' => [ 'shape' => 'ComputeResource', ], 'serviceRole' => [ 'shape' => 'String', ], 'updatePolicy' => [ 'shape' => 'UpdatePolicy', ], 'eksConfiguration' => [ 'shape' => 'EksConfiguration', ], 'containerOrchestrationType' => [ 'shape' => 'OrchestrationType', ], 'uuid' => [ 'shape' => 'String', ], ], ], 'ComputeEnvironmentDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ComputeEnvironmentDetail', ], ], 'ComputeEnvironmentOrder' => [ 'type' => 'structure', 'required' => [ 'order', 'computeEnvironment', ], 'members' => [ 'order' => [ 'shape' => 'Integer', ], 'computeEnvironment' => [ 'shape' => 'String', ], ], ], 'ComputeEnvironmentOrders' => [ 'type' => 'list', 'member' => [ 'shape' => 'ComputeEnvironmentOrder', ], ], 'ComputeResource' => [ 'type' => 'structure', 'required' => [ 'type', 'maxvCpus', 'subnets', ], 'members' => [ 'type' => [ 'shape' => 'CRType', ], 'allocationStrategy' => [ 'shape' => 'CRAllocationStrategy', ], 'minvCpus' => [ 'shape' => 'Integer', ], 'maxvCpus' => [ 'shape' => 'Integer', ], 'desiredvCpus' => [ 'shape' => 'Integer', ], 'instanceTypes' => [ 'shape' => 'StringList', ], 'imageId' => [ 'shape' => 'String', 'deprecated' => true, 'deprecatedMessage' => 'This field is deprecated, use ec2Configuration[].imageIdOverride instead.', ], 'subnets' => [ 'shape' => 'StringList', ], 'securityGroupIds' => [ 'shape' => 'StringList', ], 'ec2KeyPair' => [ 'shape' => 'String', ], 'instanceRole' => [ 'shape' => 'String', ], 'tags' => [ 'shape' => 'TagsMap', ], 'placementGroup' => [ 'shape' => 'String', ], 'bidPercentage' => [ 'shape' => 'Integer', ], 'spotIamFleetRole' => [ 'shape' => 'String', ], 'launchTemplate' => [ 'shape' => 'LaunchTemplateSpecification', ], 'ec2Configuration' => [ 'shape' => 'Ec2ConfigurationList', ], ], ], 'ComputeResourceUpdate' => [ 'type' => 'structure', 'members' => [ 'minvCpus' => [ 'shape' => 'Integer', ], 'maxvCpus' => [ 'shape' => 'Integer', ], 'desiredvCpus' => [ 'shape' => 'Integer', ], 'subnets' => [ 'shape' => 'StringList', ], 'securityGroupIds' => [ 'shape' => 'StringList', ], 'allocationStrategy' => [ 'shape' => 'CRUpdateAllocationStrategy', ], 'instanceTypes' => [ 'shape' => 'StringList', ], 'ec2KeyPair' => [ 'shape' => 'String', ], 'instanceRole' => [ 'shape' => 'String', ], 'tags' => [ 'shape' => 'TagsMap', ], 'placementGroup' => [ 'shape' => 'String', ], 'bidPercentage' => [ 'shape' => 'Integer', ], 'launchTemplate' => [ 'shape' => 'LaunchTemplateSpecification', ], 'ec2Configuration' => [ 'shape' => 'Ec2ConfigurationList', ], 'updateToLatestImageVersion' => [ 'shape' => 'Boolean', ], 'type' => [ 'shape' => 'CRType', ], 'imageId' => [ 'shape' => 'String', ], ], ], 'ContainerDetail' => [ 'type' => 'structure', 'members' => [ 'image' => [ 'shape' => 'String', ], 'vcpus' => [ 'shape' => 'Integer', ], 'memory' => [ 'shape' => 'Integer', ], 'command' => [ 'shape' => 'StringList', ], 'jobRoleArn' => [ 'shape' => 'String', ], 'executionRoleArn' => [ 'shape' => 'String', ], 'volumes' => [ 'shape' => 'Volumes', ], 'environment' => [ 'shape' => 'EnvironmentVariables', ], 'mountPoints' => [ 'shape' => 'MountPoints', ], 'readonlyRootFilesystem' => [ 'shape' => 'Boolean', ], 'ulimits' => [ 'shape' => 'Ulimits', ], 'privileged' => [ 'shape' => 'Boolean', ], 'user' => [ 'shape' => 'String', ], 'exitCode' => [ 'shape' => 'Integer', ], 'reason' => [ 'shape' => 'String', ], 'containerInstanceArn' => [ 'shape' => 'String', ], 'taskArn' => [ 'shape' => 'String', ], 'logStreamName' => [ 'shape' => 'String', ], 'instanceType' => [ 'shape' => 'String', ], 'networkInterfaces' => [ 'shape' => 'NetworkInterfaceList', ], 'resourceRequirements' => [ 'shape' => 'ResourceRequirements', ], 'linuxParameters' => [ 'shape' => 'LinuxParameters', ], 'logConfiguration' => [ 'shape' => 'LogConfiguration', ], 'secrets' => [ 'shape' => 'SecretList', ], 'networkConfiguration' => [ 'shape' => 'NetworkConfiguration', ], 'fargatePlatformConfiguration' => [ 'shape' => 'FargatePlatformConfiguration', ], 'ephemeralStorage' => [ 'shape' => 'EphemeralStorage', ], 'runtimePlatform' => [ 'shape' => 'RuntimePlatform', ], 'repositoryCredentials' => [ 'shape' => 'RepositoryCredentials', ], ], ], 'ContainerOverrides' => [ 'type' => 'structure', 'members' => [ 'vcpus' => [ 'shape' => 'Integer', 'deprecated' => true, 'deprecatedMessage' => 'This field is deprecated, use resourceRequirements instead.', ], 'memory' => [ 'shape' => 'Integer', 'deprecated' => true, 'deprecatedMessage' => 'This field is deprecated, use resourceRequirements instead.', ], 'command' => [ 'shape' => 'StringList', ], 'instanceType' => [ 'shape' => 'String', ], 'environment' => [ 'shape' => 'EnvironmentVariables', ], 'resourceRequirements' => [ 'shape' => 'ResourceRequirements', ], ], ], 'ContainerProperties' => [ 'type' => 'structure', 'members' => [ 'image' => [ 'shape' => 'String', ], 'vcpus' => [ 'shape' => 'Integer', 'deprecated' => true, 'deprecatedMessage' => 'This field is deprecated, use resourceRequirements instead.', ], 'memory' => [ 'shape' => 'Integer', 'deprecated' => true, 'deprecatedMessage' => 'This field is deprecated, use resourceRequirements instead.', ], 'command' => [ 'shape' => 'StringList', ], 'jobRoleArn' => [ 'shape' => 'String', ], 'executionRoleArn' => [ 'shape' => 'String', ], 'volumes' => [ 'shape' => 'Volumes', ], 'environment' => [ 'shape' => 'EnvironmentVariables', ], 'mountPoints' => [ 'shape' => 'MountPoints', ], 'readonlyRootFilesystem' => [ 'shape' => 'Boolean', ], 'privileged' => [ 'shape' => 'Boolean', ], 'ulimits' => [ 'shape' => 'Ulimits', ], 'user' => [ 'shape' => 'String', ], 'instanceType' => [ 'shape' => 'String', ], 'resourceRequirements' => [ 'shape' => 'ResourceRequirements', ], 'linuxParameters' => [ 'shape' => 'LinuxParameters', ], 'logConfiguration' => [ 'shape' => 'LogConfiguration', ], 'secrets' => [ 'shape' => 'SecretList', ], 'networkConfiguration' => [ 'shape' => 'NetworkConfiguration', ], 'fargatePlatformConfiguration' => [ 'shape' => 'FargatePlatformConfiguration', ], 'ephemeralStorage' => [ 'shape' => 'EphemeralStorage', ], 'runtimePlatform' => [ 'shape' => 'RuntimePlatform', ], 'repositoryCredentials' => [ 'shape' => 'RepositoryCredentials', ], ], ], 'ContainerSummary' => [ 'type' => 'structure', 'members' => [ 'exitCode' => [ 'shape' => 'Integer', ], 'reason' => [ 'shape' => 'String', ], ], ], 'CreateComputeEnvironmentRequest' => [ 'type' => 'structure', 'required' => [ 'computeEnvironmentName', 'type', ], 'members' => [ 'computeEnvironmentName' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'CEType', ], 'state' => [ 'shape' => 'CEState', ], 'unmanagedvCpus' => [ 'shape' => 'Integer', ], 'computeResources' => [ 'shape' => 'ComputeResource', ], 'serviceRole' => [ 'shape' => 'String', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], 'eksConfiguration' => [ 'shape' => 'EksConfiguration', ], ], ], 'CreateComputeEnvironmentResponse' => [ 'type' => 'structure', 'members' => [ 'computeEnvironmentName' => [ 'shape' => 'String', ], 'computeEnvironmentArn' => [ 'shape' => 'String', ], ], ], 'CreateJobQueueRequest' => [ 'type' => 'structure', 'required' => [ 'jobQueueName', 'priority', 'computeEnvironmentOrder', ], 'members' => [ 'jobQueueName' => [ 'shape' => 'String', ], 'state' => [ 'shape' => 'JQState', ], 'schedulingPolicyArn' => [ 'shape' => 'String', ], 'priority' => [ 'shape' => 'Integer', ], 'computeEnvironmentOrder' => [ 'shape' => 'ComputeEnvironmentOrders', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], ], ], 'CreateJobQueueResponse' => [ 'type' => 'structure', 'required' => [ 'jobQueueName', 'jobQueueArn', ], 'members' => [ 'jobQueueName' => [ 'shape' => 'String', ], 'jobQueueArn' => [ 'shape' => 'String', ], ], ], 'CreateSchedulingPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'fairsharePolicy' => [ 'shape' => 'FairsharePolicy', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], ], ], 'CreateSchedulingPolicyResponse' => [ 'type' => 'structure', 'required' => [ 'name', 'arn', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'arn' => [ 'shape' => 'String', ], ], ], 'DeleteComputeEnvironmentRequest' => [ 'type' => 'structure', 'required' => [ 'computeEnvironment', ], 'members' => [ 'computeEnvironment' => [ 'shape' => 'String', ], ], ], 'DeleteComputeEnvironmentResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteJobQueueRequest' => [ 'type' => 'structure', 'required' => [ 'jobQueue', ], 'members' => [ 'jobQueue' => [ 'shape' => 'String', ], ], ], 'DeleteJobQueueResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteSchedulingPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'arn', ], 'members' => [ 'arn' => [ 'shape' => 'String', ], ], ], 'DeleteSchedulingPolicyResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeregisterJobDefinitionRequest' => [ 'type' => 'structure', 'required' => [ 'jobDefinition', ], 'members' => [ 'jobDefinition' => [ 'shape' => 'String', ], ], ], 'DeregisterJobDefinitionResponse' => [ 'type' => 'structure', 'members' => [], ], 'DescribeComputeEnvironmentsRequest' => [ 'type' => 'structure', 'members' => [ 'computeEnvironments' => [ 'shape' => 'StringList', ], 'maxResults' => [ 'shape' => 'Integer', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'DescribeComputeEnvironmentsResponse' => [ 'type' => 'structure', 'members' => [ 'computeEnvironments' => [ 'shape' => 'ComputeEnvironmentDetailList', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'DescribeJobDefinitionsRequest' => [ 'type' => 'structure', 'members' => [ 'jobDefinitions' => [ 'shape' => 'StringList', ], 'maxResults' => [ 'shape' => 'Integer', ], 'jobDefinitionName' => [ 'shape' => 'String', ], 'status' => [ 'shape' => 'String', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'DescribeJobDefinitionsResponse' => [ 'type' => 'structure', 'members' => [ 'jobDefinitions' => [ 'shape' => 'JobDefinitionList', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'DescribeJobQueuesRequest' => [ 'type' => 'structure', 'members' => [ 'jobQueues' => [ 'shape' => 'StringList', ], 'maxResults' => [ 'shape' => 'Integer', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'DescribeJobQueuesResponse' => [ 'type' => 'structure', 'members' => [ 'jobQueues' => [ 'shape' => 'JobQueueDetailList', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'DescribeJobsRequest' => [ 'type' => 'structure', 'required' => [ 'jobs', ], 'members' => [ 'jobs' => [ 'shape' => 'StringList', ], ], ], 'DescribeJobsResponse' => [ 'type' => 'structure', 'members' => [ 'jobs' => [ 'shape' => 'JobDetailList', ], ], ], 'DescribeSchedulingPoliciesRequest' => [ 'type' => 'structure', 'required' => [ 'arns', ], 'members' => [ 'arns' => [ 'shape' => 'StringList', ], ], ], 'DescribeSchedulingPoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'schedulingPolicies' => [ 'shape' => 'SchedulingPolicyDetailList', ], ], ], 'Device' => [ 'type' => 'structure', 'required' => [ 'hostPath', ], 'members' => [ 'hostPath' => [ 'shape' => 'String', ], 'containerPath' => [ 'shape' => 'String', ], 'permissions' => [ 'shape' => 'DeviceCgroupPermissions', ], ], ], 'DeviceCgroupPermission' => [ 'type' => 'string', 'enum' => [ 'READ', 'WRITE', 'MKNOD', ], ], 'DeviceCgroupPermissions' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeviceCgroupPermission', ], ], 'DevicesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Device', ], ], 'EFSAuthorizationConfig' => [ 'type' => 'structure', 'members' => [ 'accessPointId' => [ 'shape' => 'String', ], 'iam' => [ 'shape' => 'EFSAuthorizationConfigIAM', ], ], ], 'EFSAuthorizationConfigIAM' => [ 'type' => 'string', 'enum' => [ 'ENABLED', 'DISABLED', ], ], 'EFSTransitEncryption' => [ 'type' => 'string', 'enum' => [ 'ENABLED', 'DISABLED', ], ], 'EFSVolumeConfiguration' => [ 'type' => 'structure', 'required' => [ 'fileSystemId', ], 'members' => [ 'fileSystemId' => [ 'shape' => 'String', ], 'rootDirectory' => [ 'shape' => 'String', ], 'transitEncryption' => [ 'shape' => 'EFSTransitEncryption', ], 'transitEncryptionPort' => [ 'shape' => 'Integer', ], 'authorizationConfig' => [ 'shape' => 'EFSAuthorizationConfig', ], ], ], 'Ec2Configuration' => [ 'type' => 'structure', 'required' => [ 'imageType', ], 'members' => [ 'imageType' => [ 'shape' => 'ImageType', ], 'imageIdOverride' => [ 'shape' => 'ImageIdOverride', ], 'imageKubernetesVersion' => [ 'shape' => 'KubernetesVersion', ], ], ], 'Ec2ConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ec2Configuration', ], ], 'EcsProperties' => [ 'type' => 'structure', 'required' => [ 'taskProperties', ], 'members' => [ 'taskProperties' => [ 'shape' => 'ListEcsTaskProperties', ], ], ], 'EcsPropertiesDetail' => [ 'type' => 'structure', 'members' => [ 'taskProperties' => [ 'shape' => 'ListEcsTaskDetails', ], ], ], 'EcsPropertiesOverride' => [ 'type' => 'structure', 'members' => [ 'taskProperties' => [ 'shape' => 'ListTaskPropertiesOverride', ], ], ], 'EcsTaskDetails' => [ 'type' => 'structure', 'members' => [ 'containers' => [ 'shape' => 'ListTaskContainerDetails', ], 'containerInstanceArn' => [ 'shape' => 'String', ], 'taskArn' => [ 'shape' => 'String', ], 'ephemeralStorage' => [ 'shape' => 'EphemeralStorage', ], 'executionRoleArn' => [ 'shape' => 'String', ], 'platformVersion' => [ 'shape' => 'String', ], 'ipcMode' => [ 'shape' => 'String', ], 'taskRoleArn' => [ 'shape' => 'String', ], 'pidMode' => [ 'shape' => 'String', ], 'networkConfiguration' => [ 'shape' => 'NetworkConfiguration', ], 'runtimePlatform' => [ 'shape' => 'RuntimePlatform', ], 'volumes' => [ 'shape' => 'Volumes', ], ], ], 'EcsTaskProperties' => [ 'type' => 'structure', 'required' => [ 'containers', ], 'members' => [ 'containers' => [ 'shape' => 'ListTaskContainerProperties', ], 'ephemeralStorage' => [ 'shape' => 'EphemeralStorage', ], 'executionRoleArn' => [ 'shape' => 'String', ], 'platformVersion' => [ 'shape' => 'String', ], 'ipcMode' => [ 'shape' => 'String', ], 'taskRoleArn' => [ 'shape' => 'String', ], 'pidMode' => [ 'shape' => 'String', ], 'networkConfiguration' => [ 'shape' => 'NetworkConfiguration', ], 'runtimePlatform' => [ 'shape' => 'RuntimePlatform', ], 'volumes' => [ 'shape' => 'Volumes', ], ], ], 'EksAttemptContainerDetail' => [ 'type' => 'structure', 'members' => [ 'exitCode' => [ 'shape' => 'Integer', ], 'reason' => [ 'shape' => 'String', ], ], ], 'EksAttemptContainerDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'EksAttemptContainerDetail', ], ], 'EksAttemptDetail' => [ 'type' => 'structure', 'members' => [ 'containers' => [ 'shape' => 'EksAttemptContainerDetails', ], 'initContainers' => [ 'shape' => 'EksAttemptContainerDetails', ], 'podName' => [ 'shape' => 'String', ], 'nodeName' => [ 'shape' => 'String', ], 'startedAt' => [ 'shape' => 'Long', ], 'stoppedAt' => [ 'shape' => 'Long', ], 'statusReason' => [ 'shape' => 'String', ], ], ], 'EksAttemptDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'EksAttemptDetail', ], ], 'EksConfiguration' => [ 'type' => 'structure', 'required' => [ 'eksClusterArn', 'kubernetesNamespace', ], 'members' => [ 'eksClusterArn' => [ 'shape' => 'String', ], 'kubernetesNamespace' => [ 'shape' => 'String', ], ], ], 'EksContainer' => [ 'type' => 'structure', 'required' => [ 'image', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'image' => [ 'shape' => 'String', ], 'imagePullPolicy' => [ 'shape' => 'String', ], 'command' => [ 'shape' => 'StringList', ], 'args' => [ 'shape' => 'StringList', ], 'env' => [ 'shape' => 'EksContainerEnvironmentVariables', ], 'resources' => [ 'shape' => 'EksContainerResourceRequirements', ], 'volumeMounts' => [ 'shape' => 'EksContainerVolumeMounts', ], 'securityContext' => [ 'shape' => 'EksContainerSecurityContext', ], ], ], 'EksContainerDetail' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'String', ], 'image' => [ 'shape' => 'String', ], 'imagePullPolicy' => [ 'shape' => 'String', ], 'command' => [ 'shape' => 'StringList', ], 'args' => [ 'shape' => 'StringList', ], 'env' => [ 'shape' => 'EksContainerEnvironmentVariables', ], 'resources' => [ 'shape' => 'EksContainerResourceRequirements', ], 'exitCode' => [ 'shape' => 'Integer', ], 'reason' => [ 'shape' => 'String', ], 'volumeMounts' => [ 'shape' => 'EksContainerVolumeMounts', ], 'securityContext' => [ 'shape' => 'EksContainerSecurityContext', ], ], ], 'EksContainerDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'EksContainerDetail', ], ], 'EksContainerEnvironmentVariable' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], ], 'EksContainerEnvironmentVariables' => [ 'type' => 'list', 'member' => [ 'shape' => 'EksContainerEnvironmentVariable', ], ], 'EksContainerOverride' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'String', ], 'image' => [ 'shape' => 'String', ], 'command' => [ 'shape' => 'StringList', ], 'args' => [ 'shape' => 'StringList', ], 'env' => [ 'shape' => 'EksContainerEnvironmentVariables', ], 'resources' => [ 'shape' => 'EksContainerResourceRequirements', ], ], ], 'EksContainerOverrideList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EksContainerOverride', ], ], 'EksContainerResourceRequirements' => [ 'type' => 'structure', 'members' => [ 'limits' => [ 'shape' => 'EksLimits', ], 'requests' => [ 'shape' => 'EksRequests', ], ], ], 'EksContainerSecurityContext' => [ 'type' => 'structure', 'members' => [ 'runAsUser' => [ 'shape' => 'Long', ], 'runAsGroup' => [ 'shape' => 'Long', ], 'privileged' => [ 'shape' => 'Boolean', ], 'readOnlyRootFilesystem' => [ 'shape' => 'Boolean', ], 'runAsNonRoot' => [ 'shape' => 'Boolean', ], ], ], 'EksContainerVolumeMount' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'String', ], 'mountPath' => [ 'shape' => 'String', ], 'readOnly' => [ 'shape' => 'Boolean', ], ], ], 'EksContainerVolumeMounts' => [ 'type' => 'list', 'member' => [ 'shape' => 'EksContainerVolumeMount', ], ], 'EksContainers' => [ 'type' => 'list', 'member' => [ 'shape' => 'EksContainer', ], ], 'EksEmptyDir' => [ 'type' => 'structure', 'members' => [ 'medium' => [ 'shape' => 'String', ], 'sizeLimit' => [ 'shape' => 'Quantity', ], ], ], 'EksHostPath' => [ 'type' => 'structure', 'members' => [ 'path' => [ 'shape' => 'String', ], ], ], 'EksLabelsMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'EksLimits' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'Quantity', ], ], 'EksMetadata' => [ 'type' => 'structure', 'members' => [ 'labels' => [ 'shape' => 'EksLabelsMap', ], ], ], 'EksPodProperties' => [ 'type' => 'structure', 'members' => [ 'serviceAccountName' => [ 'shape' => 'String', ], 'hostNetwork' => [ 'shape' => 'Boolean', ], 'dnsPolicy' => [ 'shape' => 'String', ], 'containers' => [ 'shape' => 'EksContainers', ], 'initContainers' => [ 'shape' => 'EksContainers', ], 'volumes' => [ 'shape' => 'EksVolumes', ], 'metadata' => [ 'shape' => 'EksMetadata', ], 'shareProcessNamespace' => [ 'shape' => 'Boolean', ], ], ], 'EksPodPropertiesDetail' => [ 'type' => 'structure', 'members' => [ 'serviceAccountName' => [ 'shape' => 'String', ], 'hostNetwork' => [ 'shape' => 'Boolean', ], 'dnsPolicy' => [ 'shape' => 'String', ], 'containers' => [ 'shape' => 'EksContainerDetails', ], 'initContainers' => [ 'shape' => 'EksContainerDetails', ], 'volumes' => [ 'shape' => 'EksVolumes', ], 'podName' => [ 'shape' => 'String', ], 'nodeName' => [ 'shape' => 'String', ], 'metadata' => [ 'shape' => 'EksMetadata', ], 'shareProcessNamespace' => [ 'shape' => 'Boolean', ], ], ], 'EksPodPropertiesOverride' => [ 'type' => 'structure', 'members' => [ 'containers' => [ 'shape' => 'EksContainerOverrideList', ], 'initContainers' => [ 'shape' => 'EksContainerOverrideList', ], 'metadata' => [ 'shape' => 'EksMetadata', ], ], ], 'EksProperties' => [ 'type' => 'structure', 'members' => [ 'podProperties' => [ 'shape' => 'EksPodProperties', ], ], ], 'EksPropertiesDetail' => [ 'type' => 'structure', 'members' => [ 'podProperties' => [ 'shape' => 'EksPodPropertiesDetail', ], ], ], 'EksPropertiesOverride' => [ 'type' => 'structure', 'members' => [ 'podProperties' => [ 'shape' => 'EksPodPropertiesOverride', ], ], ], 'EksRequests' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'Quantity', ], ], 'EksSecret' => [ 'type' => 'structure', 'required' => [ 'secretName', ], 'members' => [ 'secretName' => [ 'shape' => 'String', ], 'optional' => [ 'shape' => 'Boolean', ], ], ], 'EksVolume' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'hostPath' => [ 'shape' => 'EksHostPath', ], 'emptyDir' => [ 'shape' => 'EksEmptyDir', ], 'secret' => [ 'shape' => 'EksSecret', ], ], ], 'EksVolumes' => [ 'type' => 'list', 'member' => [ 'shape' => 'EksVolume', ], ], 'EnvironmentVariables' => [ 'type' => 'list', 'member' => [ 'shape' => 'KeyValuePair', ], ], 'EphemeralStorage' => [ 'type' => 'structure', 'required' => [ 'sizeInGiB', ], 'members' => [ 'sizeInGiB' => [ 'shape' => 'Integer', ], ], ], 'EvaluateOnExit' => [ 'type' => 'structure', 'required' => [ 'action', ], 'members' => [ 'onStatusReason' => [ 'shape' => 'String', ], 'onReason' => [ 'shape' => 'String', ], 'onExitCode' => [ 'shape' => 'String', ], 'action' => [ 'shape' => 'RetryAction', ], ], ], 'EvaluateOnExitList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EvaluateOnExit', ], ], 'FairsharePolicy' => [ 'type' => 'structure', 'members' => [ 'shareDecaySeconds' => [ 'shape' => 'Integer', ], 'computeReservation' => [ 'shape' => 'Integer', ], 'shareDistribution' => [ 'shape' => 'ShareAttributesList', ], ], ], 'FargatePlatformConfiguration' => [ 'type' => 'structure', 'members' => [ 'platformVersion' => [ 'shape' => 'String', ], ], ], 'Float' => [ 'type' => 'float', ], 'Host' => [ 'type' => 'structure', 'members' => [ 'sourcePath' => [ 'shape' => 'String', ], ], ], 'ImageIdOverride' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'ImageType' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'Integer' => [ 'type' => 'integer', ], 'JQState' => [ 'type' => 'string', 'enum' => [ 'ENABLED', 'DISABLED', ], ], 'JQStatus' => [ 'type' => 'string', 'enum' => [ 'CREATING', 'UPDATING', 'DELETING', 'DELETED', 'VALID', 'INVALID', ], ], 'JobDefinition' => [ 'type' => 'structure', 'required' => [ 'jobDefinitionName', 'jobDefinitionArn', 'revision', 'type', ], 'members' => [ 'jobDefinitionName' => [ 'shape' => 'String', ], 'jobDefinitionArn' => [ 'shape' => 'String', ], 'revision' => [ 'shape' => 'Integer', ], 'status' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'String', ], 'schedulingPriority' => [ 'shape' => 'Integer', ], 'parameters' => [ 'shape' => 'ParametersMap', ], 'retryStrategy' => [ 'shape' => 'RetryStrategy', ], 'containerProperties' => [ 'shape' => 'ContainerProperties', ], 'timeout' => [ 'shape' => 'JobTimeout', ], 'nodeProperties' => [ 'shape' => 'NodeProperties', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], 'propagateTags' => [ 'shape' => 'Boolean', ], 'platformCapabilities' => [ 'shape' => 'PlatformCapabilityList', ], 'ecsProperties' => [ 'shape' => 'EcsProperties', ], 'eksProperties' => [ 'shape' => 'EksProperties', ], 'containerOrchestrationType' => [ 'shape' => 'OrchestrationType', ], ], ], 'JobDefinitionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobDefinition', ], ], 'JobDefinitionType' => [ 'type' => 'string', 'enum' => [ 'container', 'multinode', ], ], 'JobDependency' => [ 'type' => 'structure', 'members' => [ 'jobId' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'ArrayJobDependency', ], ], ], 'JobDependencyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobDependency', ], ], 'JobDetail' => [ 'type' => 'structure', 'required' => [ 'jobName', 'jobId', 'jobQueue', 'status', 'startedAt', 'jobDefinition', ], 'members' => [ 'jobArn' => [ 'shape' => 'String', ], 'jobName' => [ 'shape' => 'String', ], 'jobId' => [ 'shape' => 'String', ], 'jobQueue' => [ 'shape' => 'String', ], 'status' => [ 'shape' => 'JobStatus', ], 'shareIdentifier' => [ 'shape' => 'String', ], 'schedulingPriority' => [ 'shape' => 'Integer', ], 'attempts' => [ 'shape' => 'AttemptDetails', ], 'statusReason' => [ 'shape' => 'String', ], 'createdAt' => [ 'shape' => 'Long', ], 'retryStrategy' => [ 'shape' => 'RetryStrategy', ], 'startedAt' => [ 'shape' => 'Long', ], 'stoppedAt' => [ 'shape' => 'Long', ], 'dependsOn' => [ 'shape' => 'JobDependencyList', ], 'jobDefinition' => [ 'shape' => 'String', ], 'parameters' => [ 'shape' => 'ParametersMap', ], 'container' => [ 'shape' => 'ContainerDetail', ], 'nodeDetails' => [ 'shape' => 'NodeDetails', ], 'nodeProperties' => [ 'shape' => 'NodeProperties', ], 'arrayProperties' => [ 'shape' => 'ArrayPropertiesDetail', ], 'timeout' => [ 'shape' => 'JobTimeout', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], 'propagateTags' => [ 'shape' => 'Boolean', ], 'platformCapabilities' => [ 'shape' => 'PlatformCapabilityList', ], 'eksProperties' => [ 'shape' => 'EksPropertiesDetail', ], 'eksAttempts' => [ 'shape' => 'EksAttemptDetails', ], 'ecsProperties' => [ 'shape' => 'EcsPropertiesDetail', ], 'isCancelled' => [ 'shape' => 'Boolean', ], 'isTerminated' => [ 'shape' => 'Boolean', ], ], ], 'JobDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobDetail', ], ], 'JobExecutionTimeoutMinutes' => [ 'type' => 'long', 'max' => 360, 'min' => 1, ], 'JobQueueDetail' => [ 'type' => 'structure', 'required' => [ 'jobQueueName', 'jobQueueArn', 'state', 'priority', 'computeEnvironmentOrder', ], 'members' => [ 'jobQueueName' => [ 'shape' => 'String', ], 'jobQueueArn' => [ 'shape' => 'String', ], 'state' => [ 'shape' => 'JQState', ], 'schedulingPolicyArn' => [ 'shape' => 'String', ], 'status' => [ 'shape' => 'JQStatus', ], 'statusReason' => [ 'shape' => 'String', ], 'priority' => [ 'shape' => 'Integer', ], 'computeEnvironmentOrder' => [ 'shape' => 'ComputeEnvironmentOrders', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], ], ], 'JobQueueDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobQueueDetail', ], ], 'JobStatus' => [ 'type' => 'string', 'enum' => [ 'SUBMITTED', 'PENDING', 'RUNNABLE', 'STARTING', 'RUNNING', 'SUCCEEDED', 'FAILED', ], ], 'JobSummary' => [ 'type' => 'structure', 'required' => [ 'jobId', 'jobName', ], 'members' => [ 'jobArn' => [ 'shape' => 'String', ], 'jobId' => [ 'shape' => 'String', ], 'jobName' => [ 'shape' => 'String', ], 'createdAt' => [ 'shape' => 'Long', ], 'status' => [ 'shape' => 'JobStatus', ], 'statusReason' => [ 'shape' => 'String', ], 'startedAt' => [ 'shape' => 'Long', ], 'stoppedAt' => [ 'shape' => 'Long', ], 'container' => [ 'shape' => 'ContainerSummary', ], 'arrayProperties' => [ 'shape' => 'ArrayPropertiesSummary', ], 'nodeProperties' => [ 'shape' => 'NodePropertiesSummary', ], 'jobDefinition' => [ 'shape' => 'String', ], ], ], 'JobSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobSummary', ], ], 'JobTimeout' => [ 'type' => 'structure', 'members' => [ 'attemptDurationSeconds' => [ 'shape' => 'Integer', ], ], ], 'KeyValuePair' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], ], 'KeyValuesPair' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'String', ], 'values' => [ 'shape' => 'StringList', ], ], ], 'KubernetesVersion' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'LaunchTemplateSpecification' => [ 'type' => 'structure', 'members' => [ 'launchTemplateId' => [ 'shape' => 'String', ], 'launchTemplateName' => [ 'shape' => 'String', ], 'version' => [ 'shape' => 'String', ], ], ], 'LinuxParameters' => [ 'type' => 'structure', 'members' => [ 'devices' => [ 'shape' => 'DevicesList', ], 'initProcessEnabled' => [ 'shape' => 'Boolean', ], 'sharedMemorySize' => [ 'shape' => 'Integer', ], 'tmpfs' => [ 'shape' => 'TmpfsList', ], 'maxSwap' => [ 'shape' => 'Integer', ], 'swappiness' => [ 'shape' => 'Integer', ], ], ], 'ListEcsTaskDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'EcsTaskDetails', ], ], 'ListEcsTaskProperties' => [ 'type' => 'list', 'member' => [ 'shape' => 'EcsTaskProperties', ], ], 'ListJobsFilterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'KeyValuesPair', ], ], 'ListJobsRequest' => [ 'type' => 'structure', 'members' => [ 'jobQueue' => [ 'shape' => 'String', ], 'arrayJobId' => [ 'shape' => 'String', ], 'multiNodeJobId' => [ 'shape' => 'String', ], 'jobStatus' => [ 'shape' => 'JobStatus', ], 'maxResults' => [ 'shape' => 'Integer', ], 'nextToken' => [ 'shape' => 'String', ], 'filters' => [ 'shape' => 'ListJobsFilterList', ], ], ], 'ListJobsResponse' => [ 'type' => 'structure', 'required' => [ 'jobSummaryList', ], 'members' => [ 'jobSummaryList' => [ 'shape' => 'JobSummaryList', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'ListSchedulingPoliciesRequest' => [ 'type' => 'structure', 'members' => [ 'maxResults' => [ 'shape' => 'Integer', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'ListSchedulingPoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'schedulingPolicies' => [ 'shape' => 'SchedulingPolicyListingDetailList', ], 'nextToken' => [ 'shape' => 'String', ], ], ], 'ListTagsForResourceRequest' => [ 'type' => 'structure', 'required' => [ 'resourceArn', ], 'members' => [ 'resourceArn' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resourceArn', ], ], ], 'ListTagsForResourceResponse' => [ 'type' => 'structure', 'members' => [ 'tags' => [ 'shape' => 'TagrisTagsMap', ], ], ], 'ListTaskContainerDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'TaskContainerDetails', ], ], 'ListTaskContainerOverrides' => [ 'type' => 'list', 'member' => [ 'shape' => 'TaskContainerOverrides', ], ], 'ListTaskContainerProperties' => [ 'type' => 'list', 'member' => [ 'shape' => 'TaskContainerProperties', ], ], 'ListTaskPropertiesOverride' => [ 'type' => 'list', 'member' => [ 'shape' => 'TaskPropertiesOverride', ], ], 'LogConfiguration' => [ 'type' => 'structure', 'required' => [ 'logDriver', ], 'members' => [ 'logDriver' => [ 'shape' => 'LogDriver', ], 'options' => [ 'shape' => 'LogConfigurationOptionsMap', ], 'secretOptions' => [ 'shape' => 'SecretList', ], ], ], 'LogConfigurationOptionsMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'LogDriver' => [ 'type' => 'string', 'enum' => [ 'json-file', 'syslog', 'journald', 'gelf', 'fluentd', 'awslogs', 'splunk', ], ], 'Long' => [ 'type' => 'long', ], 'MountPoint' => [ 'type' => 'structure', 'members' => [ 'containerPath' => [ 'shape' => 'String', ], 'readOnly' => [ 'shape' => 'Boolean', ], 'sourceVolume' => [ 'shape' => 'String', ], ], ], 'MountPoints' => [ 'type' => 'list', 'member' => [ 'shape' => 'MountPoint', ], ], 'NetworkConfiguration' => [ 'type' => 'structure', 'members' => [ 'assignPublicIp' => [ 'shape' => 'AssignPublicIp', ], ], ], 'NetworkInterface' => [ 'type' => 'structure', 'members' => [ 'attachmentId' => [ 'shape' => 'String', ], 'ipv6Address' => [ 'shape' => 'String', ], 'privateIpv4Address' => [ 'shape' => 'String', ], ], ], 'NetworkInterfaceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterface', ], ], 'NodeDetails' => [ 'type' => 'structure', 'members' => [ 'nodeIndex' => [ 'shape' => 'Integer', ], 'isMainNode' => [ 'shape' => 'Boolean', ], ], ], 'NodeOverrides' => [ 'type' => 'structure', 'members' => [ 'numNodes' => [ 'shape' => 'Integer', ], 'nodePropertyOverrides' => [ 'shape' => 'NodePropertyOverrides', ], ], ], 'NodeProperties' => [ 'type' => 'structure', 'required' => [ 'numNodes', 'mainNode', 'nodeRangeProperties', ], 'members' => [ 'numNodes' => [ 'shape' => 'Integer', ], 'mainNode' => [ 'shape' => 'Integer', ], 'nodeRangeProperties' => [ 'shape' => 'NodeRangeProperties', ], ], ], 'NodePropertiesSummary' => [ 'type' => 'structure', 'members' => [ 'isMainNode' => [ 'shape' => 'Boolean', ], 'numNodes' => [ 'shape' => 'Integer', ], 'nodeIndex' => [ 'shape' => 'Integer', ], ], ], 'NodePropertyOverride' => [ 'type' => 'structure', 'required' => [ 'targetNodes', ], 'members' => [ 'targetNodes' => [ 'shape' => 'String', ], 'containerOverrides' => [ 'shape' => 'ContainerOverrides', ], 'ecsPropertiesOverride' => [ 'shape' => 'EcsPropertiesOverride', ], 'instanceTypes' => [ 'shape' => 'StringList', ], ], ], 'NodePropertyOverrides' => [ 'type' => 'list', 'member' => [ 'shape' => 'NodePropertyOverride', ], ], 'NodeRangeProperties' => [ 'type' => 'list', 'member' => [ 'shape' => 'NodeRangeProperty', ], ], 'NodeRangeProperty' => [ 'type' => 'structure', 'required' => [ 'targetNodes', ], 'members' => [ 'targetNodes' => [ 'shape' => 'String', ], 'container' => [ 'shape' => 'ContainerProperties', ], 'instanceTypes' => [ 'shape' => 'StringList', ], 'ecsProperties' => [ 'shape' => 'EcsProperties', ], ], ], 'OrchestrationType' => [ 'type' => 'string', 'enum' => [ 'ECS', 'EKS', ], ], 'ParametersMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'PlatformCapability' => [ 'type' => 'string', 'enum' => [ 'EC2', 'FARGATE', ], ], 'PlatformCapabilityList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PlatformCapability', ], ], 'Quantity' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'RegisterJobDefinitionRequest' => [ 'type' => 'structure', 'required' => [ 'jobDefinitionName', 'type', ], 'members' => [ 'jobDefinitionName' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'JobDefinitionType', ], 'parameters' => [ 'shape' => 'ParametersMap', ], 'schedulingPriority' => [ 'shape' => 'Integer', ], 'containerProperties' => [ 'shape' => 'ContainerProperties', ], 'nodeProperties' => [ 'shape' => 'NodeProperties', ], 'retryStrategy' => [ 'shape' => 'RetryStrategy', ], 'propagateTags' => [ 'shape' => 'Boolean', ], 'timeout' => [ 'shape' => 'JobTimeout', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], 'platformCapabilities' => [ 'shape' => 'PlatformCapabilityList', ], 'eksProperties' => [ 'shape' => 'EksProperties', ], 'ecsProperties' => [ 'shape' => 'EcsProperties', ], ], ], 'RegisterJobDefinitionResponse' => [ 'type' => 'structure', 'required' => [ 'jobDefinitionName', 'jobDefinitionArn', 'revision', ], 'members' => [ 'jobDefinitionName' => [ 'shape' => 'String', ], 'jobDefinitionArn' => [ 'shape' => 'String', ], 'revision' => [ 'shape' => 'Integer', ], ], ], 'RepositoryCredentials' => [ 'type' => 'structure', 'required' => [ 'credentialsParameter', ], 'members' => [ 'credentialsParameter' => [ 'shape' => 'String', ], ], ], 'ResourceRequirement' => [ 'type' => 'structure', 'required' => [ 'value', 'type', ], 'members' => [ 'value' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'ResourceType', ], ], ], 'ResourceRequirements' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceRequirement', ], ], 'ResourceType' => [ 'type' => 'string', 'enum' => [ 'GPU', 'VCPU', 'MEMORY', ], ], 'RetryAction' => [ 'type' => 'string', 'enum' => [ 'RETRY', 'EXIT', ], ], 'RetryStrategy' => [ 'type' => 'structure', 'members' => [ 'attempts' => [ 'shape' => 'Integer', ], 'evaluateOnExit' => [ 'shape' => 'EvaluateOnExitList', ], ], ], 'RuntimePlatform' => [ 'type' => 'structure', 'members' => [ 'operatingSystemFamily' => [ 'shape' => 'String', ], 'cpuArchitecture' => [ 'shape' => 'String', ], ], ], 'SchedulingPolicyDetail' => [ 'type' => 'structure', 'required' => [ 'name', 'arn', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'arn' => [ 'shape' => 'String', ], 'fairsharePolicy' => [ 'shape' => 'FairsharePolicy', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], ], ], 'SchedulingPolicyDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SchedulingPolicyDetail', ], ], 'SchedulingPolicyListingDetail' => [ 'type' => 'structure', 'required' => [ 'arn', ], 'members' => [ 'arn' => [ 'shape' => 'String', ], ], ], 'SchedulingPolicyListingDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SchedulingPolicyListingDetail', ], ], 'Secret' => [ 'type' => 'structure', 'required' => [ 'name', 'valueFrom', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'valueFrom' => [ 'shape' => 'String', ], ], ], 'SecretList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Secret', ], ], 'ServerException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], 'ShareAttributes' => [ 'type' => 'structure', 'required' => [ 'shareIdentifier', ], 'members' => [ 'shareIdentifier' => [ 'shape' => 'String', ], 'weightFactor' => [ 'shape' => 'Float', ], ], ], 'ShareAttributesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ShareAttributes', ], ], 'String' => [ 'type' => 'string', ], 'StringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'SubmitJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobName', 'jobQueue', 'jobDefinition', ], 'members' => [ 'jobName' => [ 'shape' => 'String', ], 'jobQueue' => [ 'shape' => 'String', ], 'shareIdentifier' => [ 'shape' => 'String', ], 'schedulingPriorityOverride' => [ 'shape' => 'Integer', ], 'arrayProperties' => [ 'shape' => 'ArrayProperties', ], 'dependsOn' => [ 'shape' => 'JobDependencyList', ], 'jobDefinition' => [ 'shape' => 'String', ], 'parameters' => [ 'shape' => 'ParametersMap', ], 'containerOverrides' => [ 'shape' => 'ContainerOverrides', ], 'nodeOverrides' => [ 'shape' => 'NodeOverrides', ], 'retryStrategy' => [ 'shape' => 'RetryStrategy', ], 'propagateTags' => [ 'shape' => 'Boolean', ], 'timeout' => [ 'shape' => 'JobTimeout', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], 'eksPropertiesOverride' => [ 'shape' => 'EksPropertiesOverride', ], 'ecsPropertiesOverride' => [ 'shape' => 'EcsPropertiesOverride', ], ], ], 'SubmitJobResponse' => [ 'type' => 'structure', 'required' => [ 'jobName', 'jobId', ], 'members' => [ 'jobArn' => [ 'shape' => 'String', ], 'jobName' => [ 'shape' => 'String', ], 'jobId' => [ 'shape' => 'String', ], ], ], 'TagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'TagKeysList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagKey', ], 'max' => 50, 'min' => 1, ], 'TagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'resourceArn', 'tags', ], 'members' => [ 'resourceArn' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resourceArn', ], 'tags' => [ 'shape' => 'TagrisTagsMap', ], ], ], 'TagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'TagValue' => [ 'type' => 'string', 'max' => 256, ], 'TagrisTagsMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'TagKey', ], 'value' => [ 'shape' => 'TagValue', ], 'max' => 50, 'min' => 1, ], 'TagsMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'TaskContainerDependency' => [ 'type' => 'structure', 'members' => [ 'containerName' => [ 'shape' => 'String', ], 'condition' => [ 'shape' => 'String', ], ], ], 'TaskContainerDependencyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TaskContainerDependency', ], ], 'TaskContainerDetails' => [ 'type' => 'structure', 'members' => [ 'command' => [ 'shape' => 'StringList', ], 'dependsOn' => [ 'shape' => 'TaskContainerDependencyList', ], 'environment' => [ 'shape' => 'EnvironmentVariables', ], 'essential' => [ 'shape' => 'Boolean', ], 'image' => [ 'shape' => 'String', ], 'linuxParameters' => [ 'shape' => 'LinuxParameters', ], 'logConfiguration' => [ 'shape' => 'LogConfiguration', ], 'mountPoints' => [ 'shape' => 'MountPoints', ], 'name' => [ 'shape' => 'String', ], 'privileged' => [ 'shape' => 'Boolean', ], 'readonlyRootFilesystem' => [ 'shape' => 'Boolean', ], 'repositoryCredentials' => [ 'shape' => 'RepositoryCredentials', ], 'resourceRequirements' => [ 'shape' => 'ResourceRequirements', ], 'secrets' => [ 'shape' => 'SecretList', ], 'ulimits' => [ 'shape' => 'Ulimits', ], 'user' => [ 'shape' => 'String', ], 'exitCode' => [ 'shape' => 'Integer', ], 'reason' => [ 'shape' => 'String', ], 'logStreamName' => [ 'shape' => 'String', ], 'networkInterfaces' => [ 'shape' => 'NetworkInterfaceList', ], ], ], 'TaskContainerOverrides' => [ 'type' => 'structure', 'members' => [ 'command' => [ 'shape' => 'StringList', ], 'environment' => [ 'shape' => 'EnvironmentVariables', ], 'name' => [ 'shape' => 'String', ], 'resourceRequirements' => [ 'shape' => 'ResourceRequirements', ], ], ], 'TaskContainerProperties' => [ 'type' => 'structure', 'required' => [ 'image', ], 'members' => [ 'command' => [ 'shape' => 'StringList', ], 'dependsOn' => [ 'shape' => 'TaskContainerDependencyList', ], 'environment' => [ 'shape' => 'EnvironmentVariables', ], 'essential' => [ 'shape' => 'Boolean', ], 'image' => [ 'shape' => 'String', ], 'linuxParameters' => [ 'shape' => 'LinuxParameters', ], 'logConfiguration' => [ 'shape' => 'LogConfiguration', ], 'mountPoints' => [ 'shape' => 'MountPoints', ], 'name' => [ 'shape' => 'String', ], 'privileged' => [ 'shape' => 'Boolean', ], 'readonlyRootFilesystem' => [ 'shape' => 'Boolean', ], 'repositoryCredentials' => [ 'shape' => 'RepositoryCredentials', ], 'resourceRequirements' => [ 'shape' => 'ResourceRequirements', ], 'secrets' => [ 'shape' => 'SecretList', ], 'ulimits' => [ 'shape' => 'Ulimits', ], 'user' => [ 'shape' => 'String', ], ], ], 'TaskPropertiesOverride' => [ 'type' => 'structure', 'members' => [ 'containers' => [ 'shape' => 'ListTaskContainerOverrides', ], ], ], 'TerminateJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', 'reason', ], 'members' => [ 'jobId' => [ 'shape' => 'String', ], 'reason' => [ 'shape' => 'String', ], ], ], 'TerminateJobResponse' => [ 'type' => 'structure', 'members' => [], ], 'Tmpfs' => [ 'type' => 'structure', 'required' => [ 'containerPath', 'size', ], 'members' => [ 'containerPath' => [ 'shape' => 'String', ], 'size' => [ 'shape' => 'Integer', ], 'mountOptions' => [ 'shape' => 'StringList', ], ], ], 'TmpfsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tmpfs', ], ], 'Ulimit' => [ 'type' => 'structure', 'required' => [ 'hardLimit', 'name', 'softLimit', ], 'members' => [ 'hardLimit' => [ 'shape' => 'Integer', ], 'name' => [ 'shape' => 'String', ], 'softLimit' => [ 'shape' => 'Integer', ], ], ], 'Ulimits' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ulimit', ], ], 'UntagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'resourceArn', 'tagKeys', ], 'members' => [ 'resourceArn' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resourceArn', ], 'tagKeys' => [ 'shape' => 'TagKeysList', 'location' => 'querystring', 'locationName' => 'tagKeys', ], ], ], 'UntagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateComputeEnvironmentRequest' => [ 'type' => 'structure', 'required' => [ 'computeEnvironment', ], 'members' => [ 'computeEnvironment' => [ 'shape' => 'String', ], 'state' => [ 'shape' => 'CEState', ], 'unmanagedvCpus' => [ 'shape' => 'Integer', ], 'computeResources' => [ 'shape' => 'ComputeResourceUpdate', ], 'serviceRole' => [ 'shape' => 'String', ], 'updatePolicy' => [ 'shape' => 'UpdatePolicy', ], ], ], 'UpdateComputeEnvironmentResponse' => [ 'type' => 'structure', 'members' => [ 'computeEnvironmentName' => [ 'shape' => 'String', ], 'computeEnvironmentArn' => [ 'shape' => 'String', ], ], ], 'UpdateJobQueueRequest' => [ 'type' => 'structure', 'required' => [ 'jobQueue', ], 'members' => [ 'jobQueue' => [ 'shape' => 'String', ], 'state' => [ 'shape' => 'JQState', ], 'schedulingPolicyArn' => [ 'shape' => 'String', ], 'priority' => [ 'shape' => 'Integer', ], 'computeEnvironmentOrder' => [ 'shape' => 'ComputeEnvironmentOrders', ], ], ], 'UpdateJobQueueResponse' => [ 'type' => 'structure', 'members' => [ 'jobQueueName' => [ 'shape' => 'String', ], 'jobQueueArn' => [ 'shape' => 'String', ], ], ], 'UpdatePolicy' => [ 'type' => 'structure', 'members' => [ 'terminateJobsOnUpdate' => [ 'shape' => 'Boolean', ], 'jobExecutionTimeoutMinutes' => [ 'shape' => 'JobExecutionTimeoutMinutes', ], ], ], 'UpdateSchedulingPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'arn', ], 'members' => [ 'arn' => [ 'shape' => 'String', ], 'fairsharePolicy' => [ 'shape' => 'FairsharePolicy', ], ], ], 'UpdateSchedulingPolicyResponse' => [ 'type' => 'structure', 'members' => [], ], 'Volume' => [ 'type' => 'structure', 'members' => [ 'host' => [ 'shape' => 'Host', ], 'name' => [ 'shape' => 'String', ], 'efsVolumeConfiguration' => [ 'shape' => 'EFSVolumeConfiguration', ], ], ], 'Volumes' => [ 'type' => 'list', 'member' => [ 'shape' => 'Volume', ], ], ],]; diff --git a/src/data/batch/2016-08-10/docs-2.json b/src/data/batch/2016-08-10/docs-2.json index f5ced0fbc7..d3c0c2cb54 100644 --- a/src/data/batch/2016-08-10/docs-2.json +++ b/src/data/batch/2016-08-10/docs-2.json @@ -95,7 +95,9 @@ "EksContainerSecurityContext$runAsNonRoot": "

When this parameter is specified, the container is run as a user with a uid other than 0. If this parameter isn't specified, so such rule is enforced. This parameter maps to RunAsUser and MustRunAsNonRoot policy in the Users and groups pod security policies in the Kubernetes documentation.

", "EksContainerVolumeMount$readOnly": "

If this value is true, the container has read-only access to the volume. Otherwise, the container can write to the volume. The default value is false.

", "EksPodProperties$hostNetwork": "

Indicates if the pod uses the hosts' network IP address. The default value is true. Setting this to false enables the Kubernetes pod networking model. Most Batch workloads are egress-only and don't require the overhead of IP allocation for each pod for incoming connections. For more information, see Host namespaces and Pod networking in the Kubernetes documentation.

", + "EksPodProperties$shareProcessNamespace": "

Indicates if the processes in a container are shared, or visible, to other containers in the same pod. For more information, see Share Process Namespace between Containers in a Pod.

", "EksPodPropertiesDetail$hostNetwork": "

Indicates if the pod uses the hosts' network IP address. The default value is true. Setting this to false enables the Kubernetes pod networking model. Most Batch workloads are egress-only and don't require the overhead of IP allocation for each pod for incoming connections. For more information, see Host namespaces and Pod networking in the Kubernetes documentation.

", + "EksPodPropertiesDetail$shareProcessNamespace": "

Indicates if the processes in a container are shared, or visible, to other containers in the same pod. For more information, see Share Process Namespace between Containers in a Pod.

", "EksSecret$optional": "

Specifies whether the secret or the secret's keys must be defined.

", "JobDefinition$propagateTags": "

Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks when the tasks are created. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the FAILED state.

", "JobDetail$propagateTags": "

Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks when the tasks are created. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the FAILED state.

", @@ -107,6 +109,12 @@ "NodePropertiesSummary$isMainNode": "

Specifies whether the current node is the main node for a multi-node parallel job.

", "RegisterJobDefinitionRequest$propagateTags": "

Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags are not propagated. Tags can only be propagated to the tasks during task creation. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the FAILED state.

If the job runs on Amazon EKS resources, then you must not specify propagateTags.

", "SubmitJobRequest$propagateTags": "

Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks during task creation. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the FAILED state. When specified, this overrides the tag propagation setting in the job definition.

", + "TaskContainerDetails$essential": "

If the essential parameter of a container is marked as true, and that container fails or stops for any reason, all other containers that are part of the task are stopped. If the essential parameter of a container is marked as false, its failure doesn't affect the rest of the containers in a task. If this parameter is omitted, a container is assumed to be essential.

All tasks must have at least one essential container. If you have an application that's composed of multiple containers, group containers that are used for a common purpose into components, and separate the different components into multiple task definitions. For more information, see Application Architecture in the Amazon Elastic Container Service Developer Guide.

", + "TaskContainerDetails$privileged": "

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

This parameter is not supported for Windows containers or tasks run on Fargate.

", + "TaskContainerDetails$readonlyRootFilesystem": "

When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

This parameter is not supported for Windows containers.

", + "TaskContainerProperties$essential": "

If the essential parameter of a container is marked as true, and that container fails or stops for any reason, all other containers that are part of the task are stopped. If the essential parameter of a container is marked as false, its failure doesn't affect the rest of the containers in a task. If this parameter is omitted, a container is assumed to be essential.

All tasks must have at least one essential container. If you have an application that's composed of multiple containers, group containers that are used for a common purpose into components, and separate the different components into multiple task definitions. For more information, see Application Architecture in the Amazon Elastic Container Service Developer Guide.

", + "TaskContainerProperties$privileged": "

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

This parameter is not supported for Windows containers or tasks run on Fargate.

", + "TaskContainerProperties$readonlyRootFilesystem": "

When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

This parameter is not supported for Windows containers.

", "UpdatePolicy$terminateJobsOnUpdate": "

Specifies whether jobs are automatically terminated when the computer environment infrastructure is updated. The default value is false.

" } }, @@ -178,7 +186,7 @@ } }, "ComputeEnvironmentOrder": { - "base": "

The order that compute environments are tried in for job placement within a queue. Compute environments are tried in ascending order. For example, if two compute environments are associated with a job queue, the compute environment with a lower order integer value is tried for job placement first. Compute environments must be in the VALID state before you can associate them with a job queue. All of the compute environments must be either EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT); EC2 and Fargate compute environments can't be mixed.

All compute environments that are associated with a job queue must share the same architecture. Batch doesn't support mixing compute environment architecture types in a single job queue.

", + "base": "

The order that compute environments are tried in for job placement within a queue. Compute environments are tried in ascending order. For example, if two compute environments are associated with a job queue, the compute environment with a lower order integer value is tried for job placement first. Compute environments must be in the VALID state before you can associate them with a job queue. All of the compute environments must be either EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT); Amazon EC2 and Fargate compute environments can't be mixed.

All compute environments that are associated with a job queue must share the same architecture. Batch doesn't support mixing compute environment architecture types in a single job queue.

", "refs": { "ComputeEnvironmentOrders$member": null } @@ -207,22 +215,22 @@ "ContainerDetail": { "base": "

An object that represents the details of a container that's part of a job.

", "refs": { - "JobDetail$container": "

An object that represents the details for the container that's associated with the job.

" + "JobDetail$container": "

An object that represents the details for the container that's associated with the job. If the details are for a multiple-container job, this object will be empty.

" } }, "ContainerOverrides": { "base": "

The overrides that should be sent to a container.

For information about using Batch overrides when you connect event sources to targets, see BatchContainerOverrides.

", "refs": { "NodePropertyOverride$containerOverrides": "

The overrides that are sent to a node range.

", - "SubmitJobRequest$containerOverrides": "

An object with various properties that override the defaults for the job definition that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container, which is specified in the job definition or the Docker image, with a command override. You can also override existing environment variables on a container or add new environment variables to it with an environment override.

" + "SubmitJobRequest$containerOverrides": "

An object with properties that override the defaults for the job definition that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container, which is specified in the job definition or the Docker image, with a command override. You can also override existing environment variables on a container or add new environment variables to it with an environment override.

" } }, "ContainerProperties": { "base": "

Container properties are used for Amazon ECS based job definitions. These properties to describe the container that's launched as part of a job.

", "refs": { - "JobDefinition$containerProperties": "

An object with various properties specific to Amazon ECS based jobs. Valid values are containerProperties, eksProperties, and nodeProperties. Only one can be specified.

", + "JobDefinition$containerProperties": "

An object with properties specific to Amazon ECS-based jobs. When containerProperties is used in the job definition, it can't be used in addition to eksProperties, ecsProperties, or nodeProperties.

", "NodeRangeProperty$container": "

The container details for the node range.

", - "RegisterJobDefinitionRequest$containerProperties": "

An object with various properties specific to Amazon ECS based single-node container-based jobs. If the job definition's type parameter is container, then you must specify either containerProperties or nodeProperties. This must not be specified for Amazon EKS based job definitions.

If the job runs on Fargate resources, then you must not specify nodeProperties; use only containerProperties.

" + "RegisterJobDefinitionRequest$containerProperties": "

An object with properties specific to Amazon ECS-based single-node container-based jobs. If the job definition's type parameter is container, then you must specify either containerProperties or nodeProperties. This must not be specified for Amazon EKS-based job definitions.

If the job runs on Fargate resources, then you must not specify nodeProperties; use only containerProperties.

" } }, "ContainerSummary": { @@ -408,8 +416,41 @@ "Ec2ConfigurationList": { "base": null, "refs": { - "ComputeResource$ec2Configuration": "

Provides information that's used to select Amazon Machine Images (AMIs) for EC2 instances in the compute environment. If Ec2Configuration isn't specified, the default is ECS_AL2.

One or two values can be provided.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

", - "ComputeResourceUpdate$ec2Configuration": "

Provides information used to select Amazon Machine Images (AMIs) for EC2 instances in the compute environment. If Ec2Configuration isn't specified, the default is ECS_AL2.

When updating a compute environment, changing this setting requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide. To remove the EC2 configuration and any custom AMI ID specified in imageIdOverride, set this value to an empty string.

One or two values can be provided.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

" + "ComputeResource$ec2Configuration": "

Provides information that's used to select Amazon Machine Images (AMIs) for Amazon EC2 instances in the compute environment. If Ec2Configuration isn't specified, the default is ECS_AL2.

One or two values can be provided.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

", + "ComputeResourceUpdate$ec2Configuration": "

Provides information used to select Amazon Machine Images (AMIs) for Amazon EC2 instances in the compute environment. If Ec2Configuration isn't specified, the default is ECS_AL2.

When updating a compute environment, changing this setting requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide. To remove the Amazon EC2 configuration and any custom AMI ID specified in imageIdOverride, set this value to an empty string.

One or two values can be provided.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

" + } + }, + "EcsProperties": { + "base": "

An object that contains the properties for the Amazon ECS resources of a job.

", + "refs": { + "JobDefinition$ecsProperties": "

An object that contains the properties for the Amazon ECS resources of a job.When ecsProperties is used in the job definition, it can't be used in addition to containerProperties, eksProperties, or nodeProperties.

", + "NodeRangeProperty$ecsProperties": "

This is an object that represents the properties of the node range for a multi-node parallel job.

", + "RegisterJobDefinitionRequest$ecsProperties": "

An object with properties that are specific to Amazon ECS-based jobs. This must not be specified for Amazon EKS-based job definitions.

" + } + }, + "EcsPropertiesDetail": { + "base": "

An object that contains the details for the Amazon ECS resources of a job.

", + "refs": { + "JobDetail$ecsProperties": "

An object with properties that are specific to Amazon ECS-based jobs.

" + } + }, + "EcsPropertiesOverride": { + "base": "

An object that contains overrides for the Amazon ECS task definition of a job.

", + "refs": { + "NodePropertyOverride$ecsPropertiesOverride": "

An object that contains the properties that you want to replace for the existing Amazon ECS resources of a job.

", + "SubmitJobRequest$ecsPropertiesOverride": "

An object, with properties that override defaults for the job definition, can only be specified for jobs that are run on Amazon ECS resources.

" + } + }, + "EcsTaskDetails": { + "base": "

The details of a task definition that describes the container and volume definitions of an Amazon ECS task.

", + "refs": { + "ListEcsTaskDetails$member": null + } + }, + "EcsTaskProperties": { + "base": "

The properties for a task definition that describes the container and volume definitions of an Amazon ECS task. You can specify which Docker images to use, the required resources, and other configurations related to launching the task definition through an Amazon ECS service or task.

", + "refs": { + "ListEcsTaskProperties$member": null } }, "EksAttemptContainerDetail": { @@ -421,7 +462,8 @@ "EksAttemptContainerDetails": { "base": null, "refs": { - "EksAttemptDetail$containers": "

The details for the final status of the containers for this job attempt.

" + "EksAttemptDetail$containers": "

The details for the final status of the containers for this job attempt.

", + "EksAttemptDetail$initContainers": "

The details for the init containers.

" } }, "EksAttemptDetail": { @@ -458,7 +500,8 @@ "EksContainerDetails": { "base": null, "refs": { - "EksPodPropertiesDetail$containers": "

The properties of the container that's used on the Amazon EKS pod.

" + "EksPodPropertiesDetail$containers": "

The properties of the container that's used on the Amazon EKS pod.

", + "EksPodPropertiesDetail$initContainers": "

The container registered with the Amazon EKS Connector agent and persists the registration information in the Kubernetes backend data store.

" } }, "EksContainerEnvironmentVariable": { @@ -476,7 +519,7 @@ } }, "EksContainerOverride": { - "base": "

Object representing any Kubernetes overrides to a job definition that's used in a SubmitJob API operation.

", + "base": "

Object representing any Kubernetes overrides to a job definition that's used in a SubmitJob API operation.

", "refs": { "EksContainerOverrideList$member": null } @@ -484,7 +527,8 @@ "EksContainerOverrideList": { "base": null, "refs": { - "EksPodPropertiesOverride$containers": "

The overrides for the container that's used on the Amazon EKS pod.

" + "EksPodPropertiesOverride$containers": "

The overrides for the container that's used on the Amazon EKS pod.

", + "EksPodPropertiesOverride$initContainers": "

The overrides for the conatainers defined in the Amazon EKS pod. These containers run before application containers, always runs to completion, and must complete successfully before the next container starts. These containers are registered with the Amazon EKS Connector agent and persists the registration information in the Kubernetes backend data store. For more information, see Init Containers in the Kubernetes documentation.

This object is limited to 10 elements

" } }, "EksContainerResourceRequirements": { @@ -518,7 +562,8 @@ "EksContainers": { "base": null, "refs": { - "EksPodProperties$containers": "

The properties of the container that's used on the Amazon EKS pod.

" + "EksPodProperties$containers": "

The properties of the container that's used on the Amazon EKS pod.

", + "EksPodProperties$initContainers": "

These containers run before application containers, always runs to completion, and must complete successfully before the next container starts. These containers are registered with the Amazon EKS Connector agent and persists the registration information in the Kubernetes backend data store. For more information, see Init Containers in the Kubernetes documentation.

This object is limited to 10 elements

" } }, "EksEmptyDir": { @@ -574,20 +619,20 @@ "EksProperties": { "base": "

An object that contains the properties for the Kubernetes resources of a job.

", "refs": { - "JobDefinition$eksProperties": "

An object with various properties that are specific to Amazon EKS based jobs. Valid values are containerProperties, eksProperties, and nodeProperties. Only one can be specified.

", - "RegisterJobDefinitionRequest$eksProperties": "

An object with various properties that are specific to Amazon EKS based jobs. This must not be specified for Amazon ECS based job definitions.

" + "JobDefinition$eksProperties": "

An object with properties that are specific to Amazon EKS-based jobs. When eksProperties is used in the job definition, it can't be used in addition to containerProperties, ecsProperties, or nodeProperties.

", + "RegisterJobDefinitionRequest$eksProperties": "

An object with properties that are specific to Amazon EKS-based jobs. This must not be specified for Amazon ECS based job definitions.

" } }, "EksPropertiesDetail": { "base": "

An object that contains the details for the Kubernetes resources of a job.

", "refs": { - "JobDetail$eksProperties": "

An object with various properties that are specific to Amazon EKS based jobs. Only one of container, eksProperties, or nodeDetails is specified.

" + "JobDetail$eksProperties": "

An object with various properties that are specific to Amazon EKS based jobs.

" } }, "EksPropertiesOverride": { "base": "

An object that contains overrides for the Kubernetes resources of a job.

", "refs": { - "SubmitJobRequest$eksPropertiesOverride": "

An object that can only be specified for jobs that are run on Amazon EKS resources with various properties that override defaults for the job definition.

" + "SubmitJobRequest$eksPropertiesOverride": "

An object, with properties that override defaults for the job definition, can only be specified for jobs that are run on Amazon EKS resources.

" } }, "EksRequests": { @@ -620,14 +665,19 @@ "refs": { "ContainerDetail$environment": "

The environment variables to pass to a container.

Environment variables cannot start with \"AWS_BATCH\". This naming convention is reserved for variables that Batch sets.

", "ContainerOverrides$environment": "

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

Environment variables cannot start with \"AWS_BATCH\". This naming convention is reserved for variables that Batch sets.

", - "ContainerProperties$environment": "

The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

We don't recommend using plaintext environment variables for sensitive information, such as credential data.

Environment variables cannot start with \"AWS_BATCH\". This naming convention is reserved for variables that Batch sets.

" + "ContainerProperties$environment": "

The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

We don't recommend using plaintext environment variables for sensitive information, such as credential data.

Environment variables cannot start with \"AWS_BATCH\". This naming convention is reserved for variables that Batch sets.

", + "TaskContainerDetails$environment": "

The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

We don't recommend using plaintext environment variables for sensitive information, such as credential data.

", + "TaskContainerOverrides$environment": "

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

Environment variables cannot start with AWS_BATCH. This naming convention is reserved for variables that Batch sets.

", + "TaskContainerProperties$environment": "

The environment variables to pass to a container. This parameter maps to Env inthe Create a container section of the Docker Remote API and the --env parameter to docker run.

We don't recommend using plaintext environment variables for sensitive information, such as credential data.

Environment variables cannot start with AWS_BATCH. This naming convention is reserved for variables that Batch sets.

" } }, "EphemeralStorage": { "base": "

The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate.

", "refs": { "ContainerDetail$ephemeralStorage": "

The amount of ephemeral storage allocated for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate.

", - "ContainerProperties$ephemeralStorage": "

The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate.

" + "ContainerProperties$ephemeralStorage": "

The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate.

", + "EcsTaskDetails$ephemeralStorage": "

The amount of ephemeral storage allocated for the task.

", + "EcsTaskProperties$ephemeralStorage": "

The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate.

" } }, "EvaluateOnExit": { @@ -651,10 +701,10 @@ } }, "FargatePlatformConfiguration": { - "base": "

The platform configuration for jobs that are running on Fargate resources. Jobs that run on EC2 resources must not specify this parameter.

", + "base": "

The platform configuration for jobs that are running on Fargate resources. Jobs that run on Amazon EC2 resources must not specify this parameter.

", "refs": { - "ContainerDetail$fargatePlatformConfiguration": "

The platform configuration for jobs that are running on Fargate resources. Jobs that are running on EC2 resources must not specify this parameter.

", - "ContainerProperties$fargatePlatformConfiguration": "

The platform configuration for jobs that are running on Fargate resources. Jobs that are running on EC2 resources must not specify this parameter.

" + "ContainerDetail$fargatePlatformConfiguration": "

The platform configuration for jobs that are running on Fargate resources. Jobs that are running on Amazon EC2 resources must not specify this parameter.

", + "ContainerProperties$fargatePlatformConfiguration": "

The platform configuration for jobs that are running on Fargate resources. Jobs that are running on Amazon EC2 resources must not specify this parameter.

" } }, "Float": { @@ -701,13 +751,13 @@ "ComputeResourceUpdate$maxvCpus": "

The maximum number of Amazon EC2 vCPUs that an environment can reach.

With BEST_FIT_PROGRESSIVE,SPOT_CAPACITY_OPTIMIZED and SPOT_PRICE_CAPACITY_OPTIMIZED (recommended) strategies using On-Demand or Spot Instances, and the BEST_FIT strategy using Spot Instances, Batch might need to exceed maxvCpus to meet your capacity requirements. In this event, Batch never exceeds maxvCpus by more than a single instance.

", "ComputeResourceUpdate$desiredvCpus": "

The desired number of vCPUS in the compute environment. Batch modifies this value between the minimum and maximum values based on job queue demand.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

Batch doesn't support changing the desired number of vCPUs of an existing compute environment. Don't specify this parameter for compute environments using Amazon EKS clusters.

When you update the desiredvCpus setting, the value must be between the minvCpus and maxvCpus values.

Additionally, the updated desiredvCpus value must be greater than or equal to the current desiredvCpus value. For more information, see Troubleshooting Batch in the Batch User Guide.

", "ComputeResourceUpdate$bidPercentage": "

The maximum percentage that a Spot Instance price can be when compared with the On-Demand price for that instance type before instances are launched. For example, if your maximum percentage is 20%, the Spot price must be less than 20% of the current On-Demand price for that Amazon EC2 instance. You always pay the lowest (market) price and never more than your maximum percentage. For most use cases, we recommend leaving this field empty.

When updating a compute environment, changing the bid percentage requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

", - "ContainerDetail$vcpus": "

The number of vCPUs reserved for the container. For jobs that run on EC2 resources, you can specify the vCPU requirement for the job using resourceRequirements, but you can't specify the vCPU requirements in both the vcpus and resourceRequirements object. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares. You must specify at least one vCPU. This is required but can be specified in several places. It must be specified for each node at least once.

This parameter isn't applicable to jobs that run on Fargate resources. For jobs that run on Fargate resources, you must specify the vCPU requirement for the job using resourceRequirements.

", - "ContainerDetail$memory": "

For jobs running on EC2 resources that didn't specify memory requirements using resourceRequirements, the number of MiB of memory reserved for the job. For other jobs, including all run on Fargate resources, see resourceRequirements.

", - "ContainerDetail$exitCode": "

The exit code to return upon completion.

", - "ContainerOverrides$vcpus": "

This parameter is deprecated, use resourceRequirements to override the vcpus parameter that's set in the job definition. It's not supported for jobs running on Fargate resources. For jobs that run on EC2 resources, it overrides the vcpus parameter set in the job definition, but doesn't override any vCPU requirement specified in the resourceRequirements structure in the job definition. To override vCPU requirements that are specified in the resourceRequirements structure in the job definition, resourceRequirements must be specified in the SubmitJob request, with type set to VCPU and value set to the new value. For more information, see Can't override job definition resource requirements in the Batch User Guide.

", - "ContainerOverrides$memory": "

This parameter is deprecated, use resourceRequirements to override the memory requirements specified in the job definition. It's not supported for jobs running on Fargate resources. For jobs that run on EC2 resources, it overrides the memory parameter set in the job definition, but doesn't override any memory requirement that's specified in the resourceRequirements structure in the job definition. To override memory requirements that are specified in the resourceRequirements structure in the job definition, resourceRequirements must be specified in the SubmitJob request, with type set to MEMORY and value set to the new value. For more information, see Can't override job definition resource requirements in the Batch User Guide.

", - "ContainerProperties$vcpus": "

This parameter is deprecated, use resourceRequirements to specify the vCPU requirements for the job definition. It's not supported for jobs running on Fargate resources. For jobs running on EC2 resources, it specifies the number of vCPUs reserved for the job.

Each vCPU is equivalent to 1,024 CPU shares. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. The number of vCPUs must be specified but can be specified in several places. You must specify it at least once for each node.

", - "ContainerProperties$memory": "

This parameter is deprecated, use resourceRequirements to specify the memory requirements for the job definition. It's not supported for jobs running on Fargate resources. For jobs that run on EC2 resources, it specifies the memory hard limit (in MiB) for a container. If your container attempts to exceed the specified number, it's terminated. You must specify at least 4 MiB of memory for a job using this parameter. The memory hard limit can be specified in several places. It must be specified for each node at least once.

", + "ContainerDetail$vcpus": "

The number of vCPUs reserved for the container. For jobs that run on Amazon EC2 resources, you can specify the vCPU requirement for the job using resourceRequirements, but you can't specify the vCPU requirements in both the vcpus and resourceRequirements object. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares. You must specify at least one vCPU. This is required but can be specified in several places. It must be specified for each node at least once.

This parameter isn't applicable to jobs that run on Fargate resources. For jobs that run on Fargate resources, you must specify the vCPU requirement for the job using resourceRequirements.

", + "ContainerDetail$memory": "

For jobs running on Amazon EC2 resources that didn't specify memory requirements using resourceRequirements, the number of MiB of memory reserved for the job. For other jobs, including all run on Fargate resources, see resourceRequirements.

", + "ContainerDetail$exitCode": "

The exit code returned upon completion.

", + "ContainerOverrides$vcpus": "

This parameter is deprecated, use resourceRequirements to override the vcpus parameter that's set in the job definition. It's not supported for jobs running on Fargate resources. For jobs that run on Amazon EC2 resources, it overrides the vcpus parameter set in the job definition, but doesn't override any vCPU requirement specified in the resourceRequirements structure in the job definition. To override vCPU requirements that are specified in the resourceRequirements structure in the job definition, resourceRequirements must be specified in the SubmitJob request, with type set to VCPU and value set to the new value. For more information, see Can't override job definition resource requirements in the Batch User Guide.

", + "ContainerOverrides$memory": "

This parameter is deprecated, use resourceRequirements to override the memory requirements specified in the job definition. It's not supported for jobs running on Fargate resources. For jobs that run on Amazon EC2 resources, it overrides the memory parameter set in the job definition, but doesn't override any memory requirement that's specified in the resourceRequirements structure in the job definition. To override memory requirements that are specified in the resourceRequirements structure in the job definition, resourceRequirements must be specified in the SubmitJob request, with type set to MEMORY and value set to the new value. For more information, see Can't override job definition resource requirements in the Batch User Guide.

", + "ContainerProperties$vcpus": "

This parameter is deprecated, use resourceRequirements to specify the vCPU requirements for the job definition. It's not supported for jobs running on Fargate resources. For jobs running on Amazon EC2 resources, it specifies the number of vCPUs reserved for the job.

Each vCPU is equivalent to 1,024 CPU shares. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. The number of vCPUs must be specified but can be specified in several places. You must specify it at least once for each node.

", + "ContainerProperties$memory": "

This parameter is deprecated, use resourceRequirements to specify the memory requirements for the job definition. It's not supported for jobs running on Fargate resources. For jobs that run on Amazon EC2 resources, it specifies the memory hard limit (in MiB) for a container. If your container attempts to exceed the specified number, it's terminated. You must specify at least 4 MiB of memory for a job using this parameter. The memory hard limit can be specified in several places. It must be specified for each node at least once.

", "ContainerSummary$exitCode": "

The exit code to return upon completion.

", "CreateComputeEnvironmentRequest$unmanagedvCpus": "

The maximum number of vCPUs for an unmanaged compute environment. This parameter is only used for fair share scheduling to reserve vCPU capacity for new share identifiers. If this parameter isn't provided for a fair share job queue, no vCPU capacity is reserved.

This parameter is only supported when the type parameter is set to UNMANAGED.

", "CreateJobQueueRequest$priority": "

The priority of the job queue. Job queues with a higher priority (or a higher integer value for the priority parameter) are evaluated first when associated with the same compute environment. Priority is determined in descending order. For example, a job queue with a priority value of 10 is given scheduling preference over a job queue with a priority value of 1. All of the compute environments must be either EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT); EC2 and Fargate compute environments can't be mixed.

", @@ -715,15 +765,15 @@ "DescribeJobDefinitionsRequest$maxResults": "

The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page and a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn't used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

", "DescribeJobQueuesRequest$maxResults": "

The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page and a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn't used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

", "EFSVolumeConfiguration$transitEncryptionPort": "

The port to use when sending encrypted data between the Amazon ECS host and the Amazon EFS server. If you don't specify a transit encryption port, it uses the port selection strategy that the Amazon EFS mount helper uses. The value must be between 0 and 65,535. For more information, see EFS mount helper in the Amazon Elastic File System User Guide.

", - "EksAttemptContainerDetail$exitCode": "

The exit code for the job attempt. A non-zero exit code is considered failed.

", - "EksContainerDetail$exitCode": "

The exit code for the job attempt. A non-zero exit code is considered failed.

", + "EksAttemptContainerDetail$exitCode": "

The exit code returned for the job attempt. A non-zero exit code is considered failed.

", + "EksContainerDetail$exitCode": "

The exit code returned for the job attempt. A non-zero exit code is considered failed.

", "EphemeralStorage$sizeInGiB": "

The total amount, in GiB, of ephemeral storage to set for the task. The minimum supported value is 21 GiB and the maximum supported value is 200 GiB.

", "FairsharePolicy$shareDecaySeconds": "

The amount of time (in seconds) to use to calculate a fair share percentage for each fair share identifier in use. A value of zero (0) indicates that only current usage is measured. The decay allows for more recently run jobs to have more weight than jobs that ran earlier. The maximum supported value is 604800 (1 week).

", "FairsharePolicy$computeReservation": "

A value used to reserve some of the available maximum vCPU for fair share identifiers that aren't already used.

The reserved ratio is (computeReservation/100)^ActiveFairShares where ActiveFairShares is the number of active fair share identifiers.

For example, a computeReservation value of 50 indicates that Batch reserves 50% of the maximum available vCPU if there's only one fair share identifier. It reserves 25% if there are two fair share identifiers. It reserves 12.5% if there are three fair share identifiers. A computeReservation value of 25 indicates that Batch should reserve 25% of the maximum available vCPU if there's only one fair share identifier, 6.25% if there are two fair share identifiers, and 1.56% if there are three fair share identifiers.

The minimum value is 0 and the maximum value is 99.

", "JobDefinition$revision": "

The revision of the job definition.

", "JobDefinition$schedulingPriority": "

The scheduling priority of the job definition. This only affects jobs in job queues with a fair share policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority.

", "JobDetail$schedulingPriority": "

The scheduling policy of the job definition. This only affects jobs in job queues with a fair share policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority.

", - "JobQueueDetail$priority": "

The priority of the job queue. Job queues with a higher priority (or a higher integer value for the priority parameter) are evaluated first when associated with the same compute environment. Priority is determined in descending order. For example, a job queue with a priority value of 10 is given scheduling preference over a job queue with a priority value of 1. All of the compute environments must be either EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT). EC2 and Fargate compute environments can't be mixed.

", + "JobQueueDetail$priority": "

The priority of the job queue. Job queues with a higher priority (or a higher integer value for the priority parameter) are evaluated first when associated with the same compute environment. Priority is determined in descending order. For example, a job queue with a priority value of 10 is given scheduling preference over a job queue with a priority value of 1. All of the compute environments must be either Amazon EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT). Amazon EC2 and Fargate compute environments can't be mixed.

", "JobTimeout$attemptDurationSeconds": "

The job timeout time (in seconds) that's measured from the job attempt's startedAt timestamp. After this time passes, Batch terminates your jobs if they aren't finished. The minimum value for the timeout is 60 seconds.

For array jobs, the timeout applies to the child jobs, not to the parent array job.

For multi-node parallel (MNP) jobs, the timeout applies to the whole job, not to the individual nodes.

", "LinuxParameters$sharedMemorySize": "

The value for the size (in MiB) of the /dev/shm volume. This parameter maps to the --shm-size option to docker run.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't provide it for these jobs.

", "LinuxParameters$maxSwap": "

The total amount of swap memory (in MiB) a container can use. This parameter is translated to the --memory-swap option to docker run where the value is the sum of the container memory plus the maxSwap value. For more information, see --memory-swap details in the Docker documentation.

If a maxSwap value of 0 is specified, the container doesn't use swap. Accepted values are 0 or any positive integer. If the maxSwap parameter is omitted, the container doesn't use the swap configuration for the container instance that it's running on. A maxSwap value must be set for the swappiness parameter to be used.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't provide it for these jobs.

", @@ -740,6 +790,7 @@ "RegisterJobDefinitionResponse$revision": "

The revision of the job definition.

", "RetryStrategy$attempts": "

The number of times to move a job to the RUNNABLE status. You can specify between 1 and 10 attempts. If the value of attempts is greater than one, the job is retried on failure the same number of attempts as the value.

", "SubmitJobRequest$schedulingPriorityOverride": "

The scheduling priority for the job. This only affects jobs in job queues with a fair share policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority. This overrides any scheduling priority in the job definition and works only within a single share identifier.

The minimum supported value is 0 and the maximum supported value is 9999.

", + "TaskContainerDetails$exitCode": "

The exit code returned upon completion.

", "Tmpfs$size": "

The size (in MiB) of the tmpfs volume.

", "Ulimit$hardLimit": "

The hard limit for the ulimit type.

", "Ulimit$softLimit": "

The soft limit for the ulimit type.

", @@ -776,7 +827,7 @@ "JobDefinitionType": { "base": null, "refs": { - "RegisterJobDefinitionRequest$type": "

The type of job definition. For more information about multi-node parallel jobs, see Creating a multi-node parallel job definition in the Batch User Guide.

If the job is run on Fargate resources, then multinode isn't supported.

" + "RegisterJobDefinitionRequest$type": "

The type of job definition. For more information about multi-node parallel jobs, see Creating a multi-node parallel job definition in the Batch User Guide.

If the job is run on Fargate resources, then multinode isn't supported.

" } }, "JobDependency": { @@ -872,7 +923,7 @@ "LaunchTemplateSpecification": { "base": "

An object that represents a launch template that's associated with a compute resource. You must specify either the launch template ID or launch template name in the request, but not both.

If security groups are specified using both the securityGroupIds parameter of CreateComputeEnvironment and the launch template, the values in the securityGroupIds parameter of CreateComputeEnvironment will be used.

This object isn't applicable to jobs that are running on Fargate resources.

", "refs": { - "ComputeResource$launchTemplate": "

The launch template to use for your compute resources. Any other compute resource parameters that you specify in a CreateComputeEnvironment API operation override the same parameters in the launch template. You must specify either the launch template ID or launch template name in the request, but not both. For more information, see Launch template support in the Batch User Guide.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

", + "ComputeResource$launchTemplate": "

The launch template to use for your compute resources. Any other compute resource parameters that you specify in a CreateComputeEnvironment API operation override the same parameters in the launch template. You must specify either the launch template ID or launch template name in the request, but not both. For more information, see Launch template support in the Batch User Guide.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

", "ComputeResourceUpdate$launchTemplate": "

The updated launch template to use for your compute resources. You must specify either the launch template ID or launch template name in the request, but not both. For more information, see Launch template support in the Batch User Guide. To remove the custom launch template and use the default launch template, set launchTemplateId or launchTemplateName member of the launch template specification to an empty string. Removing the launch template from a compute environment will not remove the AMI specified in the launch template. In order to update the AMI specified in a launch template, the updateToLatestImageVersion parameter must be set to true.

When updating a compute environment, changing the launch template requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

" } }, @@ -880,7 +931,21 @@ "base": "

Linux-specific modifications that are applied to the container, such as details for device mappings.

", "refs": { "ContainerDetail$linuxParameters": "

Linux-specific modifications that are applied to the container, such as details for device mappings.

", - "ContainerProperties$linuxParameters": "

Linux-specific modifications that are applied to the container, such as details for device mappings.

" + "ContainerProperties$linuxParameters": "

Linux-specific modifications that are applied to the container, such as details for device mappings.

", + "TaskContainerDetails$linuxParameters": "

Linux-specific modifications that are applied to the container, such as Linux kernel capabilities. For more information, see KernelCapabilities.

This parameter is not supported for Windows containers.

", + "TaskContainerProperties$linuxParameters": "

Linux-specific modifications that are applied to the container, such as Linux kernel capabilities. For more information, see KernelCapabilities.

" + } + }, + "ListEcsTaskDetails": { + "base": null, + "refs": { + "EcsPropertiesDetail$taskProperties": "

The properties for the Amazon ECS task definition of a job.

" + } + }, + "ListEcsTaskProperties": { + "base": null, + "refs": { + "EcsProperties$taskProperties": "

An object that contains the properties for the Amazon ECS task definition of a job.

This object is currently limited to one element.

" } }, "ListJobsFilterList": { @@ -919,11 +984,37 @@ "refs": { } }, + "ListTaskContainerDetails": { + "base": null, + "refs": { + "EcsTaskDetails$containers": "

A list of containers that are included in the taskProperties list.

" + } + }, + "ListTaskContainerOverrides": { + "base": null, + "refs": { + "TaskPropertiesOverride$containers": "

The overrides for the container definition of a job.

" + } + }, + "ListTaskContainerProperties": { + "base": null, + "refs": { + "EcsTaskProperties$containers": "

This object is a list of containers.

" + } + }, + "ListTaskPropertiesOverride": { + "base": null, + "refs": { + "EcsPropertiesOverride$taskProperties": "

The overrides for the Amazon ECS task definition of a job.

This object is currently limited to one element.

" + } + }, "LogConfiguration": { "base": "

Log configuration options to send to a custom log driver for the container.

", "refs": { - "ContainerDetail$logConfiguration": "

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run. By default, containers use the same logging driver that the Docker daemon uses. However, the container might use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance. Or, alternatively, it must be configured on a different log server for remote logging options. For more information on the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

Batch currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type). Additional log drivers might be available in future releases of the Amazon ECS container agent.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version | grep \"Server API version\"

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS container agent configuration in the Amazon Elastic Container Service Developer Guide.

", - "ContainerProperties$logConfiguration": "

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run. By default, containers use the same logging driver that the Docker daemon uses. However the container might use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance (or on a different log server for remote logging options). For more information on the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

Batch currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type).

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version | grep \"Server API version\"

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS container agent configuration in the Amazon Elastic Container Service Developer Guide.

" + "ContainerDetail$logConfiguration": "

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run. By default, containers use the same logging driver that the Docker daemon uses. However, the container might use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance. Or, alternatively, it must be configured on a different log server for remote logging options. For more information on the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

Batch currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type). Additional log drivers might be available in future releases of the Amazon ECS container agent.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version | grep \"Server API version\"

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS container agent configuration in the Amazon Elastic Container Service Developer Guide.

", + "ContainerProperties$logConfiguration": "

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run. By default, containers use the same logging driver that the Docker daemon uses. However the container might use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance (or on a different log server for remote logging options). For more information on the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

Batch currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type).

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version | grep \"Server API version\"

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS container agent configuration in the Amazon Elastic Container Service Developer Guide.

", + "TaskContainerDetails$logConfiguration": "

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run.

By default, containers use the same logging driver that the Docker daemon uses. However the container can use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance (or on a different log server for remote logging options). For more information about the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

Amazon ECS currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type). Additional log drivers may be available in future releases of the Amazon ECS container agent.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS container agent configuration in the Amazon Elastic Container Service Developer Guide.

", + "TaskContainerProperties$logConfiguration": "

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run.

By default, containers use the same logging driver that the Docker daemon uses. However the container can use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance (or on a different log server for remote logging options). For more information about the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

Amazon ECS currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type). Additional log drivers may be available in future releases of the Amazon ECS container agent.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS container agent configuration in the Amazon Elastic Container Service Developer Guide.

" } }, "LogConfigurationOptionsMap": { @@ -947,10 +1038,10 @@ "EksAttemptDetail$stoppedAt": "

The Unix timestamp (in milliseconds) for when the attempt was stopped. This happens when the attempt transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED.

", "EksContainerSecurityContext$runAsUser": "

When this parameter is specified, the container is run as the specified user ID (uid). If this parameter isn't specified, the default is the user that's specified in the image metadata. This parameter maps to RunAsUser and MustRanAs policy in the Users and groups pod security policies in the Kubernetes documentation.

", "EksContainerSecurityContext$runAsGroup": "

When this parameter is specified, the container is run as the specified group ID (gid). If this parameter isn't specified, the default is the group that's specified in the image metadata. This parameter maps to RunAsGroup and MustRunAs policy in the Users and groups pod security policies in the Kubernetes documentation.

", - "JobDetail$createdAt": "

The Unix timestamp (in milliseconds) for when the job was created. For non-array jobs and parent array jobs, this is when the job entered the SUBMITTED state. This is specifically at the time SubmitJob was called. For array child jobs, this is when the child job was spawned by its parent and entered the PENDING state.

", + "JobDetail$createdAt": "

The Unix timestamp (in milliseconds) for when the job was created. For non-array jobs and parent array jobs, this is when the job entered the SUBMITTED state. This is specifically at the time SubmitJob was called. For array child jobs, this is when the child job was spawned by its parent and entered the PENDING state.

", "JobDetail$startedAt": "

The Unix timestamp (in milliseconds) for when the job was started. More specifically, it's when the job transitioned from the STARTING state to the RUNNING state.

", "JobDetail$stoppedAt": "

The Unix timestamp (in milliseconds) for when the job was stopped. More specifically, it's when the job transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED.

", - "JobSummary$createdAt": "

The Unix timestamp (in milliseconds) for when the job was created. For non-array jobs and parent array jobs, this is when the job entered the SUBMITTED state (at the time SubmitJob was called). For array child jobs, this is when the child job was spawned by its parent and entered the PENDING state.

", + "JobSummary$createdAt": "

The Unix timestamp (in milliseconds) for when the job was created. For non-array jobs and parent array jobs, this is when the job entered the SUBMITTED state (at the time SubmitJob was called). For array child jobs, this is when the child job was spawned by its parent and entered the PENDING state.

", "JobSummary$startedAt": "

The Unix timestamp for when the job was started. More specifically, it's when the job transitioned from the STARTING state to the RUNNING state.

", "JobSummary$stoppedAt": "

The Unix timestamp for when the job was stopped. More specifically, it's when the job transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED.

" } @@ -965,14 +1056,18 @@ "base": null, "refs": { "ContainerDetail$mountPoints": "

The mount points for data volumes in your container.

", - "ContainerProperties$mountPoints": "

The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

" + "ContainerProperties$mountPoints": "

The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

", + "TaskContainerDetails$mountPoints": "

The mount points for data volumes in your container.

This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

Windows containers can mount whole directories on the same drive as $env:ProgramData. Windows containers can't mount directories on a different drive, and mount point can't be across drives.

", + "TaskContainerProperties$mountPoints": "

The mount points for data volumes in your container.

This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

Windows containers can mount whole directories on the same drive as $env:ProgramData. Windows containers can't mount directories on a different drive, and mount point can't be across drives.

" } }, "NetworkConfiguration": { - "base": "

The network configuration for jobs that are running on Fargate resources. Jobs that are running on EC2 resources must not specify this parameter.

", + "base": "

The network configuration for jobs that are running on Fargate resources. Jobs that are running on Amazon EC2 resources must not specify this parameter.

", "refs": { - "ContainerDetail$networkConfiguration": "

The network configuration for jobs that are running on Fargate resources. Jobs that are running on EC2 resources must not specify this parameter.

", - "ContainerProperties$networkConfiguration": "

The network configuration for jobs that are running on Fargate resources. Jobs that are running on EC2 resources must not specify this parameter.

" + "ContainerDetail$networkConfiguration": "

The network configuration for jobs that are running on Fargate resources. Jobs that are running on Amazon EC2 resources must not specify this parameter.

", + "ContainerProperties$networkConfiguration": "

The network configuration for jobs that are running on Fargate resources. Jobs that are running on Amazon EC2 resources must not specify this parameter.

", + "EcsTaskDetails$networkConfiguration": "

The network configuration for jobs that are running on Fargate resources. Jobs that are running on Amazon EC2 resources must not specify this parameter.

", + "EcsTaskProperties$networkConfiguration": "

The network configuration for jobs that are running on Fargate resources. Jobs that are running on Amazon EC2 resources must not specify this parameter.

" } }, "NetworkInterface": { @@ -985,7 +1080,8 @@ "base": null, "refs": { "AttemptContainerDetail$networkInterfaces": "

The network interfaces that are associated with the job attempt.

", - "ContainerDetail$networkInterfaces": "

The network interfaces that are associated with the job.

" + "ContainerDetail$networkInterfaces": "

The network interfaces that are associated with the job.

", + "TaskContainerDetails$networkInterfaces": "

The network interfaces that are associated with the job.

" } }, "NodeDetails": { @@ -995,7 +1091,7 @@ } }, "NodeOverrides": { - "base": "

An object that represents any node overrides to a job definition that's used in a SubmitJob API operation.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't provide it for these jobs. Rather, use containerOverrides instead.

", + "base": "

An object that represents any node overrides to a job definition that's used in a SubmitJob API operation.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't provide it for these jobs. Rather, use containerOverrides instead.

", "refs": { "SubmitJobRequest$nodeOverrides": "

A list of node overrides in JSON format that specify the node range to target and the container overrides for that node range.

This parameter isn't applicable to jobs that are running on Fargate resources; use containerOverrides instead.

" } @@ -1003,9 +1099,9 @@ "NodeProperties": { "base": "

An object that represents the node properties of a multi-node parallel job.

Node properties can't be specified for Amazon EKS based job definitions.

", "refs": { - "JobDefinition$nodeProperties": "

An object with various properties that are specific to multi-node parallel jobs. Valid values are containerProperties, eksProperties, and nodeProperties. Only one can be specified.

If the job runs on Fargate resources, don't specify nodeProperties. Use containerProperties instead.

", + "JobDefinition$nodeProperties": "

An object with properties that are specific to multi-node parallel jobs. When nodeProperties is used in the job definition, it can't be used in addition to containerProperties, ecsProperties, or eksProperties.

If the job runs on Fargate resources, don't specify nodeProperties. Use containerProperties instead.

", "JobDetail$nodeProperties": "

An object that represents the node properties of a multi-node parallel job.

This isn't applicable to jobs that are running on Fargate resources.

", - "RegisterJobDefinitionRequest$nodeProperties": "

An object with various properties specific to multi-node parallel jobs. If you specify node properties for a job, it becomes a multi-node parallel job. For more information, see Multi-node Parallel Jobs in the Batch User Guide. If the job definition's type parameter is container, then you must specify either containerProperties or nodeProperties.

If the job runs on Fargate resources, then you must not specify nodeProperties; use containerProperties instead.

If the job runs on Amazon EKS resources, then you must not specify nodeProperties.

" + "RegisterJobDefinitionRequest$nodeProperties": "

An object with properties specific to multi-node parallel jobs. If you specify node properties for a job, it becomes a multi-node parallel job. For more information, see Multi-node Parallel Jobs in the Batch User Guide.

If the job runs on Fargate resources, then you must not specify nodeProperties; use containerProperties instead.

If the job runs on Amazon EKS resources, then you must not specify nodeProperties.

" } }, "NodePropertiesSummary": { @@ -1015,7 +1111,7 @@ } }, "NodePropertyOverride": { - "base": "

The object that represents any node overrides to a job definition that's used in a SubmitJob API operation.

", + "base": "

The object that represents any node overrides to a job definition that's used in a SubmitJob API operation.

", "refs": { "NodePropertyOverrides$member": null } @@ -1033,7 +1129,7 @@ } }, "NodeRangeProperty": { - "base": "

An object that represents the properties of the node range for a multi-node parallel job.

", + "base": "

This is an object that represents the properties of the node range for a multi-node parallel job.

", "refs": { "NodeRangeProperties$member": null } @@ -1090,7 +1186,9 @@ "base": "

The repository credentials for private registry authentication.

", "refs": { "ContainerDetail$repositoryCredentials": "

The private repository authentication credentials to use.

", - "ContainerProperties$repositoryCredentials": "

The private repository authentication credentials to use.

" + "ContainerProperties$repositoryCredentials": "

The private repository authentication credentials to use.

", + "TaskContainerDetails$repositoryCredentials": "

The private repository authentication credentials to use.

", + "TaskContainerProperties$repositoryCredentials": "

The private repository authentication credentials to use.

" } }, "ResourceRequirement": { @@ -1104,7 +1202,10 @@ "refs": { "ContainerDetail$resourceRequirements": "

The type and amount of resources to assign to a container. The supported resources include GPU, MEMORY, and VCPU.

", "ContainerOverrides$resourceRequirements": "

The type and amount of resources to assign to a container. This overrides the settings in the job definition. The supported resources include GPU, MEMORY, and VCPU.

", - "ContainerProperties$resourceRequirements": "

The type and amount of resources to assign to a container. The supported resources include GPU, MEMORY, and VCPU.

" + "ContainerProperties$resourceRequirements": "

The type and amount of resources to assign to a container. The supported resources include GPU, MEMORY, and VCPU.

", + "TaskContainerDetails$resourceRequirements": "

The type and amount of a resource to assign to a container. The only supported resource is a GPU.

", + "TaskContainerOverrides$resourceRequirements": "

The type and amount of resources to assign to a container. This overrides the settings in the job definition. The supported resources include GPU, MEMORY, and VCPU.

", + "TaskContainerProperties$resourceRequirements": "

The type and amount of a resource to assign to a container. The only supported resource is a GPU.

" } }, "ResourceType": { @@ -1132,7 +1233,9 @@ "base": "

An object that represents the compute environment architecture for Batch jobs on Fargate.

", "refs": { "ContainerDetail$runtimePlatform": "

An object that represents the compute environment architecture for Batch jobs on Fargate.

", - "ContainerProperties$runtimePlatform": "

An object that represents the compute environment architecture for Batch jobs on Fargate.

" + "ContainerProperties$runtimePlatform": "

An object that represents the compute environment architecture for Batch jobs on Fargate.

", + "EcsTaskDetails$runtimePlatform": "

An object that represents the compute environment architecture for Batch jobs on Fargate.

", + "EcsTaskProperties$runtimePlatform": "

An object that represents the compute environment architecture for Batch jobs on Fargate.

" } }, "SchedulingPolicyDetail": { @@ -1170,7 +1273,9 @@ "refs": { "ContainerDetail$secrets": "

The secrets to pass to the container. For more information, see Specifying sensitive data in the Batch User Guide.

", "ContainerProperties$secrets": "

The secrets for the container. For more information, see Specifying sensitive data in the Batch User Guide.

", - "LogConfiguration$secretOptions": "

The secrets to pass to the log configuration. For more information, see Specifying sensitive data in the Batch User Guide.

" + "LogConfiguration$secretOptions": "

The secrets to pass to the log configuration. For more information, see Specifying sensitive data in the Batch User Guide.

", + "TaskContainerDetails$secrets": "

The secrets to pass to the container. For more information, see Specifying Sensitive Data in the Amazon Elastic Container Service Developer Guide.

", + "TaskContainerProperties$secrets": "

The secrets to pass to the container. For more information, see Specifying Sensitive Data in the Amazon Elastic Container Service Developer Guide.

" } }, "ServerException": { @@ -1214,7 +1319,7 @@ "ComputeResource$instanceRole": "

The Amazon ECS instance profile applied to Amazon EC2 instances in a compute environment. This parameter is required for Amazon EC2 instances types. You can specify the short name or full Amazon Resource Name (ARN) of an instance profile. For example, ecsInstanceRole or arn:aws:iam::<aws_account_id>:instance-profile/ecsInstanceRole . For more information, see Amazon ECS instance role in the Batch User Guide.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

", "ComputeResource$placementGroup": "

The Amazon EC2 placement group to associate with your compute resources. If you intend to submit multi-node parallel jobs to your compute environment, you should consider creating a cluster placement group and associate it with your compute resources. This keeps your multi-node parallel job on a logical grouping of instances within a single Availability Zone with high network flow potential. For more information, see Placement groups in the Amazon EC2 User Guide for Linux Instances.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

", "ComputeResource$spotIamFleetRole": "

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment. This role is required if the allocation strategy set to BEST_FIT or if the allocation strategy isn't specified. For more information, see Amazon EC2 spot fleet role in the Batch User Guide.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

To tag your Spot Instances on creation, the Spot Fleet IAM role specified here must use the newer AmazonEC2SpotFleetTaggingRole managed policy. The previously recommended AmazonEC2SpotFleetRole managed policy doesn't have the required permissions to tag Spot Instances. For more information, see Spot instances not tagged on creation in the Batch User Guide.

", - "ComputeResourceUpdate$ec2KeyPair": "

The Amazon EC2 key pair that's used for instances launched in the compute environment. You can use this key pair to log in to your instances with SSH. To remove the Amazon EC2 key pair, set this value to an empty string.

When updating a compute environment, changing the EC2 key pair requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

", + "ComputeResourceUpdate$ec2KeyPair": "

The Amazon EC2 key pair that's used for instances launched in the compute environment. You can use this key pair to log in to your instances with SSH. To remove the Amazon EC2 key pair, set this value to an empty string.

When updating a compute environment, changing the Amazon EC2 key pair requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

", "ComputeResourceUpdate$instanceRole": "

The Amazon ECS instance profile applied to Amazon EC2 instances in a compute environment. Required for Amazon EC2 instances. You can specify the short name or full Amazon Resource Name (ARN) of an instance profile. For example, ecsInstanceRole or arn:aws:iam::<aws_account_id>:instance-profile/ecsInstanceRole . For more information, see Amazon ECS instance role in the Batch User Guide.

When updating a compute environment, changing this setting requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

", "ComputeResourceUpdate$placementGroup": "

The Amazon EC2 placement group to associate with your compute resources. If you intend to submit multi-node parallel jobs to your compute environment, you should consider creating a cluster placement group and associate it with your compute resources. This keeps your multi-node parallel job on a logical grouping of instances within a single Availability Zone with high network flow potential. For more information, see Placement groups in the Amazon EC2 User Guide for Linux Instances.

When updating a compute environment, changing the placement group requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

", "ComputeResourceUpdate$imageId": "

The Amazon Machine Image (AMI) ID used for instances launched in the compute environment. This parameter is overridden by the imageIdOverride member of the Ec2Configuration structure. To remove the custom AMI ID and use the default AMI ID, set this value to an empty string.

When updating a compute environment, changing the AMI ID requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

The AMI that you choose for a compute environment must match the architecture of the instance types that you intend to use for that compute environment. For example, if your compute environment uses A1 instance types, the compute resource AMI that you choose must support ARM instances. Amazon ECS vends both x86 and ARM versions of the Amazon ECS-optimized Amazon Linux 2 AMI. For more information, see Amazon ECS-optimized Amazon Linux 2 AMI in the Amazon Elastic Container Service Developer Guide.

", @@ -1262,6 +1367,18 @@ "EFSAuthorizationConfig$accessPointId": "

The Amazon EFS access point ID to use. If an access point is specified, the root directory value specified in the EFSVolumeConfiguration must either be omitted or set to / which enforces the path set on the EFS access point. If an access point is used, transit encryption must be enabled in the EFSVolumeConfiguration. For more information, see Working with Amazon EFS access points in the Amazon Elastic File System User Guide.

", "EFSVolumeConfiguration$fileSystemId": "

The Amazon EFS file system ID to use.

", "EFSVolumeConfiguration$rootDirectory": "

The directory within the Amazon EFS file system to mount as the root directory inside the host. If this parameter is omitted, the root of the Amazon EFS volume is used instead. Specifying / has the same effect as omitting this parameter. The maximum length is 4,096 characters.

If an EFS access point is specified in the authorizationConfig, the root directory parameter must either be omitted or set to /, which enforces the path set on the Amazon EFS access point.

", + "EcsTaskDetails$containerInstanceArn": "

The Amazon Resource Name (ARN) of the container instance that hosts the task.

", + "EcsTaskDetails$taskArn": "

The ARN of the Amazon ECS task.

", + "EcsTaskDetails$executionRoleArn": "

The Amazon Resource Name (ARN) of the execution role that Batch can assume. For more information, see Batch execution IAM role in the Batch User Guide.

", + "EcsTaskDetails$platformVersion": "

The Fargate platform version where the jobs are running.

", + "EcsTaskDetails$ipcMode": "

The IPC resource namespace to use for the containers in the task.

", + "EcsTaskDetails$taskRoleArn": "

The Amazon Resource Name (ARN) of the IAM role that the container can assume for Amazon Web Services permissions. For more information, see IAM roles for tasks in the Amazon Elastic Container Service Developer Guide.

This is object is comparable to ContainerProperties:jobRoleArn.

", + "EcsTaskDetails$pidMode": "

The process namespace to use for the containers in the task.

", + "EcsTaskProperties$executionRoleArn": "

The Amazon Resource Name (ARN) of the execution role that Batch can assume. For jobs that run on Fargate resources, you must provide an execution role. For more information, see Batch execution IAM role in the Batch User Guide.

", + "EcsTaskProperties$platformVersion": "

The Fargate platform version where the jobs are running. A platform version is specified only for jobs that are running on Fargate resources. If one isn't specified, the LATEST platform version is used by default. This uses a recent, approved version of the Fargate platform for compute resources. For more information, see Fargate platform versions in the Amazon Elastic Container Service Developer Guide.

", + "EcsTaskProperties$ipcMode": "

The IPC resource namespace to use for the containers in the task. The valid values are host, task, or none.

If host is specified, all containers within the tasks that specified the host IPC mode on the same container instance share the same IPC resources with the host Amazon EC2 instance.

If task is specified, all containers within the specified task share the same IPC resources.

If none is specified, the IPC resources within the containers of a task are private, and are not shared with other containers in a task or on the container instance.

If no value is specified, then the IPC resource namespace sharing depends on the Docker daemon setting on the container instance. For more information, see IPC settings in the Docker run reference.

", + "EcsTaskProperties$taskRoleArn": "

The Amazon Resource Name (ARN) that's associated with the Amazon ECS task.

This is object is comparable to ContainerProperties:jobRoleArn.

", + "EcsTaskProperties$pidMode": "

The process namespace to use for the containers in the task. The valid values are host or task. For example, monitoring sidecars might need pidMode to access information about other containers running in the same task.

If host is specified, all containers within the tasks that specified the host PID mode on the same container instance share the process namespace with the host Amazon EC2 instance.

If task is specified, all containers within the specified task share the same process namespace.

If no value is specified, the default is a private namespace for each container. For more information, see PID settings in the Docker run reference.

", "EksAttemptContainerDetail$reason": "

A short (255 max characters) human-readable string to provide additional details for a running or stopped container.

", "EksAttemptDetail$podName": "

The name of the pod for this job attempt.

", "EksAttemptDetail$nodeName": "

The name of the node for this job attempt.

", @@ -1277,6 +1394,7 @@ "EksContainerDetail$reason": "

A short human-readable string to provide additional details for a running or stopped container. It can be up to 255 characters long.

", "EksContainerEnvironmentVariable$name": "

The name of the environment variable.

", "EksContainerEnvironmentVariable$value": "

The value of the environment variable.

", + "EksContainerOverride$name": "

A pointer to the container that you want to override. The name must match a unique container name that you wish to override.

", "EksContainerOverride$image": "

The override of the Docker image that's used to start the container.

", "EksContainerVolumeMount$name": "

The name the volume mount. This must match the name of one of the volumes in the pod.

", "EksContainerVolumeMount$mountPath": "

The path on the container where the volume is mounted.

", @@ -1349,7 +1467,7 @@ "RegisterJobDefinitionResponse$jobDefinitionName": "

The name of the job definition.

", "RegisterJobDefinitionResponse$jobDefinitionArn": "

The Amazon Resource Name (ARN) of the job definition.

", "RepositoryCredentials$credentialsParameter": "

The Amazon Resource Name (ARN) of the secret containing the private repository credentials.

", - "ResourceRequirement$value": "

The quantity of the specified resource to reserve for the container. The values vary based on the type specified.

type=\"GPU\"

The number of physical GPUs to reserve for the container. Make sure that the number of GPUs reserved for all containers in a job doesn't exceed the number of available GPUs on the compute resource that the job is launched on.

GPUs aren't available for jobs that are running on Fargate resources.

type=\"MEMORY\"

The memory hard limit (in MiB) present to the container. This parameter is supported for jobs that are running on EC2 resources. If your container attempts to exceed the memory specified, the container is terminated. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run. You must specify at least 4 MiB of memory for a job. This is required but can be specified in several places for multi-node parallel (MNP) jobs. It must be specified for each node at least once. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

If you're trying to maximize your resource utilization by providing your jobs as much memory as possible for a particular instance type, see Memory management in the Batch User Guide.

For jobs that are running on Fargate resources, then value is the hard limit (in MiB), and must match one of the supported values and the VCPU values must be one of the values supported for that memory value.

value = 512

VCPU = 0.25

value = 1024

VCPU = 0.25 or 0.5

value = 2048

VCPU = 0.25, 0.5, or 1

value = 3072

VCPU = 0.5, or 1

value = 4096

VCPU = 0.5, 1, or 2

value = 5120, 6144, or 7168

VCPU = 1 or 2

value = 8192

VCPU = 1, 2, or 4

value = 9216, 10240, 11264, 12288, 13312, 14336, or 15360

VCPU = 2 or 4

value = 16384

VCPU = 2, 4, or 8

value = 17408, 18432, 19456, 21504, 22528, 23552, 25600, 26624, 27648, 29696, or 30720

VCPU = 4

value = 20480, 24576, or 28672

VCPU = 4 or 8

value = 36864, 45056, 53248, or 61440

VCPU = 8

value = 32768, 40960, 49152, or 57344

VCPU = 8 or 16

value = 65536, 73728, 81920, 90112, 98304, 106496, 114688, or 122880

VCPU = 16

type=\"VCPU\"

The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares. For EC2 resources, you must specify at least one vCPU. This is required but can be specified in several places; it must be specified for each node at least once.

The default for the Fargate On-Demand vCPU resource count quota is 6 vCPUs. For more information about Fargate quotas, see Fargate quotas in the Amazon Web Services General Reference.

For jobs that are running on Fargate resources, then value must match one of the supported values and the MEMORY values must be one of the values supported for that VCPU value. The supported values are 0.25, 0.5, 1, 2, 4, 8, and 16

value = 0.25

MEMORY = 512, 1024, or 2048

value = 0.5

MEMORY = 1024, 2048, 3072, or 4096

value = 1

MEMORY = 2048, 3072, 4096, 5120, 6144, 7168, or 8192

value = 2

MEMORY = 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336, 15360, or 16384

value = 4

MEMORY = 8192, 9216, 10240, 11264, 12288, 13312, 14336, 15360, 16384, 17408, 18432, 19456, 20480, 21504, 22528, 23552, 24576, 25600, 26624, 27648, 28672, 29696, or 30720

value = 8

MEMORY = 16384, 20480, 24576, 28672, 32768, 36864, 40960, 45056, 49152, 53248, 57344, or 61440

value = 16

MEMORY = 32768, 40960, 49152, 57344, 65536, 73728, 81920, 90112, 98304, 106496, 114688, or 122880

", + "ResourceRequirement$value": "

The quantity of the specified resource to reserve for the container. The values vary based on the type specified.

type=\"GPU\"

The number of physical GPUs to reserve for the container. Make sure that the number of GPUs reserved for all containers in a job doesn't exceed the number of available GPUs on the compute resource that the job is launched on.

GPUs aren't available for jobs that are running on Fargate resources.

type=\"MEMORY\"

The memory hard limit (in MiB) present to the container. This parameter is supported for jobs that are running on Amazon EC2 resources. If your container attempts to exceed the memory specified, the container is terminated. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run. You must specify at least 4 MiB of memory for a job. This is required but can be specified in several places for multi-node parallel (MNP) jobs. It must be specified for each node at least once. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

If you're trying to maximize your resource utilization by providing your jobs as much memory as possible for a particular instance type, see Memory management in the Batch User Guide.

For jobs that are running on Fargate resources, then value is the hard limit (in MiB), and must match one of the supported values and the VCPU values must be one of the values supported for that memory value.

value = 512

VCPU = 0.25

value = 1024

VCPU = 0.25 or 0.5

value = 2048

VCPU = 0.25, 0.5, or 1

value = 3072

VCPU = 0.5, or 1

value = 4096

VCPU = 0.5, 1, or 2

value = 5120, 6144, or 7168

VCPU = 1 or 2

value = 8192

VCPU = 1, 2, or 4

value = 9216, 10240, 11264, 12288, 13312, 14336, or 15360

VCPU = 2 or 4

value = 16384

VCPU = 2, 4, or 8

value = 17408, 18432, 19456, 21504, 22528, 23552, 25600, 26624, 27648, 29696, or 30720

VCPU = 4

value = 20480, 24576, or 28672

VCPU = 4 or 8

value = 36864, 45056, 53248, or 61440

VCPU = 8

value = 32768, 40960, 49152, or 57344

VCPU = 8 or 16

value = 65536, 73728, 81920, 90112, 98304, 106496, 114688, or 122880

VCPU = 16

type=\"VCPU\"

The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares. For Amazon EC2 resources, you must specify at least one vCPU. This is required but can be specified in several places; it must be specified for each node at least once.

The default for the Fargate On-Demand vCPU resource count quota is 6 vCPUs. For more information about Fargate quotas, see Fargate quotas in the Amazon Web Services General Reference.

For jobs that are running on Fargate resources, then value must match one of the supported values and the MEMORY values must be one of the values supported for that VCPU value. The supported values are 0.25, 0.5, 1, 2, 4, 8, and 16

value = 0.25

MEMORY = 512, 1024, or 2048

value = 0.5

MEMORY = 1024, 2048, 3072, or 4096

value = 1

MEMORY = 2048, 3072, 4096, 5120, 6144, 7168, or 8192

value = 2

MEMORY = 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336, 15360, or 16384

value = 4

MEMORY = 8192, 9216, 10240, 11264, 12288, 13312, 14336, 15360, 16384, 17408, 18432, 19456, 20480, 21504, 22528, 23552, 24576, 25600, 26624, 27648, 28672, 29696, or 30720

value = 8

MEMORY = 16384, 20480, 24576, 28672, 32768, 36864, 40960, 45056, 49152, 53248, 57344, or 61440

value = 16

MEMORY = 32768, 40960, 49152, 57344, 65536, 73728, 81920, 90112, 98304, 106496, 114688, or 122880

", "RuntimePlatform$operatingSystemFamily": "

The operating system for the compute environment. Valid values are: LINUX (default), WINDOWS_SERVER_2019_CORE, WINDOWS_SERVER_2019_FULL, WINDOWS_SERVER_2022_CORE, and WINDOWS_SERVER_2022_FULL.

The following parameters can’t be set for Windows containers: linuxParameters, privileged, user, ulimits, readonlyRootFilesystem, and efsVolumeConfiguration.

The Batch Scheduler checks the compute environments that are attached to the job queue before registering a task definition with Fargate. In this scenario, the job queue is where the job is submitted. If the job requires a Windows container and the first compute environment is LINUX, the compute environment is skipped and the next compute environment is checked until a Windows-based compute environment is found.

Fargate Spot is not supported for ARM64 and Windows-based containers on Fargate. A job queue will be blocked if a Fargate ARM64 or Windows job is submitted to a job queue with only Fargate Spot compute environments. However, you can attach both FARGATE and FARGATE_SPOT compute environments to the same job queue.

", "RuntimePlatform$cpuArchitecture": "

The vCPU architecture. The default value is X86_64. Valid values are X86_64 and ARM64.

This parameter must be set to X86_64 for Windows containers.

Fargate Spot is not supported for ARM64 and Windows-based containers on Fargate. A job queue will be blocked if a Fargate ARM64 or Windows job is submitted to a job queue with only Fargate Spot compute environments. However, you can attach both FARGATE and FARGATE_SPOT compute environments to the same job queue.

", "SchedulingPolicyDetail$name": "

The name of the scheduling policy.

", @@ -1370,6 +1488,17 @@ "TagResourceRequest$resourceArn": "

The Amazon Resource Name (ARN) of the resource that tags are added to. Batch resources that support tags are compute environments, jobs, job definitions, job queues, and scheduling policies. ARNs for child jobs of array and multi-node parallel (MNP) jobs aren't supported.

", "TagsMap$key": null, "TagsMap$value": null, + "TaskContainerDependency$containerName": "

A unique identifier for the container.

", + "TaskContainerDependency$condition": "

The dependency condition of the container. The following are the available conditions and their behavior:

", + "TaskContainerDetails$image": "

The image used to start a container. This string is passed directly to the Docker daemon. By default, images in the Docker Hub registry are available. Other repositories are specified with either repository-url/image:tag or repository-url/image@digest. Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of the docker run .

", + "TaskContainerDetails$name": "

The name of a container.

", + "TaskContainerDetails$user": "

The user to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

When running tasks using the host network mode, don't run containers using the root user (UID 0). We recommend using a non-root user for better security.

You can specify the user using the following formats. If specifying a UID or GID, you must specify it as a positive integer.

This parameter is not supported for Windows containers.

", + "TaskContainerDetails$reason": "

A short (255 max characters) human-readable string to provide additional details for a running or stopped container.

", + "TaskContainerDetails$logStreamName": "

The name of the CloudWatch Logs log stream that's associated with the container. The log group for Batch jobs is /aws/batch/job. Each container attempt receives a log stream name when they reach the RUNNING status.

", + "TaskContainerOverrides$name": "

A pointer to the container that you want to override. The container's name provides a unique identifier for the container being used.

", + "TaskContainerProperties$image": "

The image used to start a container. This string is passed directly to the Docker daemon. By default, images in the Docker Hub registry are available. Other repositories are specified with either repository-url/image:tag or repository-url/image@digest. Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of the docker run .

", + "TaskContainerProperties$name": "

The name of a container. The name can be used as a unique identifier to target your dependsOn and Overrides objects.

", + "TaskContainerProperties$user": "

The user to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

When running tasks using the host network mode, don't run containers using the root user (UID 0). We recommend using a non-root user for better security.

You can specify the user using the following formats. If specifying a UID or GID, you must specify it as a positive integer.

This parameter is not supported for Windows containers.

", "TerminateJobRequest$jobId": "

The Batch job ID of the job to terminate.

", "TerminateJobRequest$reason": "

A message to attach to the job that explains the reason for canceling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the Batch activity logs.

", "Tmpfs$containerPath": "

The absolute file path in the container where the tmpfs volume is mounted.

", @@ -1393,8 +1522,8 @@ "ComputeResource$instanceTypes": "

The instances types that can be launched. You can specify instance families to launch any instance type within those families (for example, c5 or p3), or you can specify specific sizes within a family (such as c5.8xlarge). You can also choose optimal to select instance types (from the C4, M4, and R4 instance families) that match the demand of your job queues.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

When you create a compute environment, the instance types that you select for the compute environment must share the same architecture. For example, you can't mix x86 and ARM instances in the same compute environment.

Currently, optimal uses instance types from the C4, M4, and R4 instance families. In Regions that don't have instance types from those instance families, instance types from the C5, M5, and R5 instance families are used.

", "ComputeResource$subnets": "

The VPC subnets where the compute resources are launched. These subnets must be within the same VPC. Fargate compute resources can contain up to 16 subnets. For more information, see VPCs and subnets in the Amazon VPC User Guide.

Batch on Amazon EC2 and Batch on Amazon EKS support Local Zones. For more information, see Local Zones in the Amazon EC2 User Guide for Linux Instances, Amazon EKS and Amazon Web Services Local Zones in the Amazon EKS User Guide and Amazon ECS clusters in Local Zones, Wavelength Zones, and Amazon Web Services Outposts in the Amazon ECS Developer Guide.

Batch on Fargate doesn't currently support Local Zones.

", "ComputeResource$securityGroupIds": "

The Amazon EC2 security groups that are associated with instances launched in the compute environment. One or more security groups must be specified, either in securityGroupIds or using a launch template referenced in launchTemplate. This parameter is required for jobs that are running on Fargate resources and must contain at least one security group. Fargate doesn't support launch templates. If security groups are specified using both securityGroupIds and launchTemplate, the values in securityGroupIds are used.

", - "ComputeResourceUpdate$subnets": "

The VPC subnets where the compute resources are launched. Fargate compute resources can contain up to 16 subnets. For Fargate compute resources, providing an empty list will be handled as if this parameter wasn't specified and no change is made. For EC2 compute resources, providing an empty list removes the VPC subnets from the compute resource. For more information, see VPCs and subnets in the Amazon VPC User Guide.

When updating a compute environment, changing the VPC subnets requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

Batch on Amazon EC2 and Batch on Amazon EKS support Local Zones. For more information, see Local Zones in the Amazon EC2 User Guide for Linux Instances, Amazon EKS and Amazon Web Services Local Zones in the Amazon EKS User Guide and Amazon ECS clusters in Local Zones, Wavelength Zones, and Amazon Web Services Outposts in the Amazon ECS Developer Guide.

Batch on Fargate doesn't currently support Local Zones.

", - "ComputeResourceUpdate$securityGroupIds": "

The Amazon EC2 security groups that are associated with instances launched in the compute environment. This parameter is required for Fargate compute resources, where it can contain up to 5 security groups. For Fargate compute resources, providing an empty list is handled as if this parameter wasn't specified and no change is made. For EC2 compute resources, providing an empty list removes the security groups from the compute resource.

When updating a compute environment, changing the EC2 security groups requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

", + "ComputeResourceUpdate$subnets": "

The VPC subnets where the compute resources are launched. Fargate compute resources can contain up to 16 subnets. For Fargate compute resources, providing an empty list will be handled as if this parameter wasn't specified and no change is made. For Amazon EC2 compute resources, providing an empty list removes the VPC subnets from the compute resource. For more information, see VPCs and subnets in the Amazon VPC User Guide.

When updating a compute environment, changing the VPC subnets requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

Batch on Amazon EC2 and Batch on Amazon EKS support Local Zones. For more information, see Local Zones in the Amazon EC2 User Guide for Linux Instances, Amazon EKS and Amazon Web Services Local Zones in the Amazon EKS User Guide and Amazon ECS clusters in Local Zones, Wavelength Zones, and Amazon Web Services Outposts in the Amazon ECS Developer Guide.

Batch on Fargate doesn't currently support Local Zones.

", + "ComputeResourceUpdate$securityGroupIds": "

The Amazon EC2 security groups that are associated with instances launched in the compute environment. This parameter is required for Fargate compute resources, where it can contain up to 5 security groups. For Fargate compute resources, providing an empty list is handled as if this parameter wasn't specified and no change is made. For Amazon EC2 compute resources, providing an empty list removes the security groups from the compute resource.

When updating a compute environment, changing the Amazon EC2 security groups requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

", "ComputeResourceUpdate$instanceTypes": "

The instances types that can be launched. You can specify instance families to launch any instance type within those families (for example, c5 or p3), or you can specify specific sizes within a family (such as c5.8xlarge). You can also choose optimal to select instance types (from the C4, M4, and R4 instance families) that match the demand of your job queues.

When updating a compute environment, changing this setting requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

When you create a compute environment, the instance types that you select for the compute environment must share the same architecture. For example, you can't mix x86 and ARM instances in the same compute environment.

Currently, optimal uses instance types from the C4, M4, and R4 instance families. In Regions that don't have instance types from those instance families, instance types from the C5, M5, and R5 instance families are used.

", "ContainerDetail$command": "

The command that's passed to the container.

", "ContainerOverrides$command": "

The command to send to the container that overrides the default command from the Docker image or the job definition.

This parameter can't contain an empty string.

", @@ -1405,12 +1534,17 @@ "DescribeJobsRequest$jobs": "

A list of up to 100 job IDs.

", "DescribeSchedulingPoliciesRequest$arns": "

A list of up to 100 scheduling policy Amazon Resource Name (ARN) entries.

", "EksContainer$command": "

The entrypoint for the container. This isn't run within a shell. If this isn't specified, the ENTRYPOINT of the container image is used. Environment variable references are expanded using the container's environment.

If the referenced environment variable doesn't exist, the reference in the command isn't changed. For example, if the reference is to \"$(NAME1)\" and the NAME1 environment variable doesn't exist, the command string will remain \"$(NAME1).\" $$ is replaced with $ and the resulting string isn't expanded. For example, $$(VAR_NAME) will be passed as $(VAR_NAME) whether or not the VAR_NAME environment variable exists. The entrypoint can't be updated. For more information, see ENTRYPOINT in the Dockerfile reference and Define a command and arguments for a container and Entrypoint in the Kubernetes documentation.

", - "EksContainer$args": "

An array of arguments to the entrypoint. If this isn't specified, the CMD of the container image is used. This corresponds to the args member in the Entrypoint portion of the Pod in Kubernetes. Environment variable references are expanded using the container's environment.

If the referenced environment variable doesn't exist, the reference in the command isn't changed. For example, if the reference is to \"$(NAME1)\" and the NAME1 environment variable doesn't exist, the command string will remain \"$(NAME1).\" $$ is replaced with $, and the resulting string isn't expanded. For example, $$(VAR_NAME) is passed as $(VAR_NAME) whether or not the VAR_NAME environment variable exists. For more information, see CMD in the Dockerfile reference and Define a command and arguments for a pod in the Kubernetes documentation.

", + "EksContainer$args": "

An array of arguments to the entrypoint. If this isn't specified, the CMD of the container image is used. This corresponds to the args member in the Entrypoint portion of the Pod in Kubernetes. Environment variable references are expanded using the container's environment.

If the referenced environment variable doesn't exist, the reference in the command isn't changed. For example, if the reference is to \"$(NAME1)\" and the NAME1 environment variable doesn't exist, the command string will remain \"$(NAME1).\" $$ is replaced with $, and the resulting string isn't expanded. For example, $$(VAR_NAME) is passed as $(VAR_NAME) whether or not the VAR_NAME environment variable exists. For more information, see Dockerfile reference: CMD and Define a command and arguments for a pod in the Kubernetes documentation.

", "EksContainerDetail$command": "

The entrypoint for the container. For more information, see Entrypoint in the Kubernetes documentation.

", - "EksContainerDetail$args": "

An array of arguments to the entrypoint. If this isn't specified, the CMD of the container image is used. This corresponds to the args member in the Entrypoint portion of the Pod in Kubernetes. Environment variable references are expanded using the container's environment.

If the referenced environment variable doesn't exist, the reference in the command isn't changed. For example, if the reference is to \"$(NAME1)\" and the NAME1 environment variable doesn't exist, the command string will remain \"$(NAME1)\". $$ is replaced with $ and the resulting string isn't expanded. For example, $$(VAR_NAME) is passed as $(VAR_NAME) whether or not the VAR_NAME environment variable exists. For more information, see CMD in the Dockerfile reference and Define a command and arguments for a pod in the Kubernetes documentation.

", + "EksContainerDetail$args": "

An array of arguments to the entrypoint. If this isn't specified, the CMD of the container image is used. This corresponds to the args member in the Entrypoint portion of the Pod in Kubernetes. Environment variable references are expanded using the container's environment.

If the referenced environment variable doesn't exist, the reference in the command isn't changed. For example, if the reference is to \"$(NAME1)\" and the NAME1 environment variable doesn't exist, the command string will remain \"$(NAME1)\". $$ is replaced with $ and the resulting string isn't expanded. For example, $$(VAR_NAME) is passed as $(VAR_NAME) whether or not the VAR_NAME environment variable exists. For more information, see Dockerfile reference: CMD and Define a command and arguments for a pod in the Kubernetes documentation.

", "EksContainerOverride$command": "

The command to send to the container that overrides the default command from the Docker image or the job definition.

", - "EksContainerOverride$args": "

The arguments to the entrypoint to send to the container that overrides the default arguments from the Docker image or the job definition. For more information, see CMD in the Dockerfile reference and Define a command an arguments for a pod in the Kubernetes documentation.

", + "EksContainerOverride$args": "

The arguments to the entrypoint to send to the container that overrides the default arguments from the Docker image or the job definition. For more information, see Dockerfile reference: CMD and Define a command an arguments for a pod in the Kubernetes documentation.

", "KeyValuesPair$values": "

The filter values.

", + "NodePropertyOverride$instanceTypes": "

An object that contains the instance types that you want to replace for the existing resources of a job.

", + "NodeRangeProperty$instanceTypes": "

The instance types of the underlying host infrastructure of a multi-node parallel job.

This parameter isn't applicable to jobs that are running on Fargate resources.

In addition, this list object is currently limited to one element.

", + "TaskContainerDetails$command": "

The command that's passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.

", + "TaskContainerOverrides$command": "

The command to send to the container that overrides the default command from the Docker image or the job definition.

This parameter can't contain an empty string.

", + "TaskContainerProperties$command": "

The command that's passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see Dockerfile reference: CMD.

", "Tmpfs$mountOptions": "

The list of tmpfs volume mount options.

Valid values: \"defaults\" | \"ro\" | \"rw\" | \"suid\" | \"nosuid\" | \"dev\" | \"nodev\" | \"exec\" | \"noexec\" | \"sync\" | \"async\" | \"dirsync\" | \"remount\" | \"mand\" | \"nomand\" | \"atime\" | \"noatime\" | \"diratime\" | \"nodiratime\" | \"bind\" | \"rbind\" | \"unbindable\" | \"runbindable\" | \"private\" | \"rprivate\" | \"shared\" | \"rshared\" | \"slave\" | \"rslave\" | \"relatime\" | \"norelatime\" | \"strictatime\" | \"nostrictatime\" | \"mode\" | \"uid\" | \"gid\" | \"nr_inodes\" | \"nr_blocks\" | \"mpol\"

" } }, @@ -1473,8 +1607,45 @@ "TagsMap": { "base": null, "refs": { - "ComputeResource$tags": "

Key-value pair tags to be applied to EC2 resources that are launched in the compute environment. For Batch, these take the form of \"String1\": \"String2\", where String1 is the tag key and String2 is the tag value-for example, { \"Name\": \"Batch Instance - C4OnDemand\" }. This is helpful for recognizing your Batch instances in the Amazon EC2 console. Updating these tags requires an infrastructure update to the compute environment. For more information, see Updating compute environments in the Batch User Guide. These tags aren't seen when using the Batch ListTagsForResource API operation.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

", - "ComputeResourceUpdate$tags": "

Key-value pair tags to be applied to EC2 resources that are launched in the compute environment. For Batch, these take the form of \"String1\": \"String2\", where String1 is the tag key and String2 is the tag value-for example, { \"Name\": \"Batch Instance - C4OnDemand\" }. This is helpful for recognizing your Batch instances in the Amazon EC2 console. These tags aren't seen when using the Batch ListTagsForResource API operation.

When updating a compute environment, changing this setting requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

" + "ComputeResource$tags": "

Key-value pair tags to be applied to Amazon EC2 resources that are launched in the compute environment. For Batch, these take the form of \"String1\": \"String2\", where String1 is the tag key and String2 is the tag value-for example, { \"Name\": \"Batch Instance - C4OnDemand\" }. This is helpful for recognizing your Batch instances in the Amazon EC2 console. Updating these tags requires an infrastructure update to the compute environment. For more information, see Updating compute environments in the Batch User Guide. These tags aren't seen when using the Batch ListTagsForResource API operation.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

", + "ComputeResourceUpdate$tags": "

Key-value pair tags to be applied to Amazon EC2 resources that are launched in the compute environment. For Batch, these take the form of \"String1\": \"String2\", where String1 is the tag key and String2 is the tag value-for example, { \"Name\": \"Batch Instance - C4OnDemand\" }. This is helpful for recognizing your Batch instances in the Amazon EC2 console. These tags aren't seen when using the Batch ListTagsForResource API operation.

When updating a compute environment, changing this setting requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.

" + } + }, + "TaskContainerDependency": { + "base": "

A list of containers that this task depends on.

", + "refs": { + "TaskContainerDependencyList$member": null + } + }, + "TaskContainerDependencyList": { + "base": null, + "refs": { + "TaskContainerDetails$dependsOn": "

A list of containers that this container depends on.

", + "TaskContainerProperties$dependsOn": "

A list of containers that this container depends on.

" + } + }, + "TaskContainerDetails": { + "base": "

The details for the container in this task attempt.

", + "refs": { + "ListTaskContainerDetails$member": null + } + }, + "TaskContainerOverrides": { + "base": "

The overrides that should be sent to a container.

For information about using Batch overrides when you connect event sources to targets, see BatchContainerOverrides.

", + "refs": { + "ListTaskContainerOverrides$member": null + } + }, + "TaskContainerProperties": { + "base": "

Container properties are used for Amazon ECS-based job definitions. These properties to describe the container that's launched as part of a job.

", + "refs": { + "ListTaskContainerProperties$member": null + } + }, + "TaskPropertiesOverride": { + "base": "

An object that contains overrides for the task definition of a job.

", + "refs": { + "ListTaskPropertiesOverride$member": null } }, "TerminateJobRequest": { @@ -1509,7 +1680,9 @@ "base": null, "refs": { "ContainerDetail$ulimits": "

A list of ulimit values to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

This parameter isn't applicable to jobs that are running on Fargate resources.

", - "ContainerProperties$ulimits": "

A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

This parameter isn't applicable to jobs that are running on Fargate resources and shouldn't be provided.

" + "ContainerProperties$ulimits": "

A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

This parameter isn't applicable to jobs that are running on Fargate resources and shouldn't be provided.

", + "TaskContainerDetails$ulimits": "

A list of ulimits to set in the container. If a ulimit value is specified in a task definition, it overrides the default values set by Docker. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

Amazon ECS tasks hosted on Fargate use the default resource limit values set by the operating system with the exception of the nofile resource limit parameter which Fargate overrides. The nofile resource limit sets a restriction on the number of open files that a container can use. The default nofile soft limit is 1024 and the default hard limit is 65535.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'

This parameter is not supported for Windows containers.

", + "TaskContainerProperties$ulimits": "

A list of ulimits to set in the container. If a ulimit value is specified in a task definition, it overrides the default values set by Docker. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

Amazon ECS tasks hosted on Fargate use the default resource limit values set by the operating system with the exception of the nofile resource limit parameter which Fargate overrides. The nofile resource limit sets a restriction on the number of open files that a container can use. The default nofile soft limit is 1024 and the default hard limit is 65535.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'

This parameter is not supported for Windows containers.

" } }, "UntagResourceRequest": { @@ -1569,7 +1742,9 @@ "base": null, "refs": { "ContainerDetail$volumes": "

A list of volumes that are associated with the job.

", - "ContainerProperties$volumes": "

A list of data volumes used in a job.

" + "ContainerProperties$volumes": "

A list of data volumes used in a job.

", + "EcsTaskDetails$volumes": "

A list of data volumes used in a job.

", + "EcsTaskProperties$volumes": "

A list of volumes that are associated with the job.

" } } } diff --git a/src/data/batch/2016-08-10/docs-2.json.php b/src/data/batch/2016-08-10/docs-2.json.php index 7d7f66d4a4..958c1e6c00 100644 --- a/src/data/batch/2016-08-10/docs-2.json.php +++ b/src/data/batch/2016-08-10/docs-2.json.php @@ -1,3 +1,3 @@ '2.0', 'service' => 'Batch

Using Batch, you can run batch computing workloads on the Amazon Web Services Cloud. Batch computing is a common means for developers, scientists, and engineers to access large amounts of compute resources. Batch uses the advantages of the batch computing to remove the undifferentiated heavy lifting of configuring and managing required infrastructure. At the same time, it also adopts a familiar batch computing software approach. You can use Batch to efficiently provision resources d, and work toward eliminating capacity constraints, reducing your overall compute costs, and delivering results more quickly.

As a fully managed service, Batch can run batch computing workloads of any scale. Batch automatically provisions compute resources and optimizes workload distribution based on the quantity and scale of your specific workloads. With Batch, there\'s no need to install or manage batch computing software. This means that you can focus on analyzing results and solving your specific problems instead.

', 'operations' => [ 'CancelJob' => '

Cancels a job in an Batch job queue. Jobs that are in the SUBMITTED or PENDING are canceled. A job inRUNNABLE remains in RUNNABLE until it reaches the head of the job queue. Then the job status is updated to FAILED.

A PENDING job is canceled after all dependency jobs are completed. Therefore, it may take longer than expected to cancel a job in PENDING status.

When you try to cancel an array parent job in PENDING, Batch attempts to cancel all child jobs. The array parent job is canceled when all child jobs are completed.

Jobs that progressed to the STARTING or RUNNING state aren\'t canceled. However, the API operation still succeeds, even if no job is canceled. These jobs must be terminated with the TerminateJob operation.

', 'CreateComputeEnvironment' => '

Creates an Batch compute environment. You can create MANAGED or UNMANAGED compute environments. MANAGED compute environments can use Amazon EC2 or Fargate resources. UNMANAGED compute environments can only use EC2 resources.

In a managed compute environment, Batch manages the capacity and instance types of the compute resources within the environment. This is based on the compute resource specification that you define or the launch template that you specify when you create the compute environment. Either, you can choose to use EC2 On-Demand Instances and EC2 Spot Instances. Or, you can use Fargate and Fargate Spot capacity in your managed compute environment. You can optionally set a maximum price so that Spot Instances only launch when the Spot Instance price is less than a specified percentage of the On-Demand price.

Multi-node parallel jobs aren\'t supported on Spot Instances.

In an unmanaged compute environment, you can manage your own EC2 compute resources and have flexibility with how you configure your compute resources. For example, you can use custom AMIs. However, you must verify that each of your AMIs meet the Amazon ECS container instance AMI specification. For more information, see container instance AMIs in the Amazon Elastic Container Service Developer Guide. After you created your unmanaged compute environment, you can use the DescribeComputeEnvironments operation to find the Amazon ECS cluster that\'s associated with it. Then, launch your container instances into that Amazon ECS cluster. For more information, see Launching an Amazon ECS container instance in the Amazon Elastic Container Service Developer Guide.

To create a compute environment that uses EKS resources, the caller must have permissions to call eks:DescribeCluster.

Batch doesn\'t automatically upgrade the AMIs in a compute environment after it\'s created. For example, it also doesn\'t update the AMIs in your compute environment when a newer version of the Amazon ECS optimized AMI is available. You\'re responsible for the management of the guest operating system. This includes any updates and security patches. You\'re also responsible for any additional application software or utilities that you install on the compute resources. There are two ways to use a new AMI for your Batch jobs. The original method is to complete these steps:

  1. Create a new compute environment with the new AMI.

  2. Add the compute environment to an existing job queue.

  3. Remove the earlier compute environment from your job queue.

  4. Delete the earlier compute environment.

In April 2022, Batch added enhanced support for updating compute environments. For more information, see Updating compute environments. To use the enhanced updating of compute environments to update AMIs, follow these rules:

  • Either don\'t set the service role (serviceRole) parameter or set it to the AWSBatchServiceRole service-linked role.

  • Set the allocation strategy (allocationStrategy) parameter to BEST_FIT_PROGRESSIVE, SPOT_CAPACITY_OPTIMIZED, or SPOT_PRICE_CAPACITY_OPTIMIZED.

  • Set the update to latest image version (updateToLatestImageVersion) parameter to true. The updateToLatestImageVersion parameter is used when you update a compute environment. This parameter is ignored when you create a compute environment.

  • Don\'t specify an AMI ID in imageId, imageIdOverride (in ec2Configuration ), or in the launch template (launchTemplate). In that case, Batch selects the latest Amazon ECS optimized AMI that\'s supported by Batch at the time the infrastructure update is initiated. Alternatively, you can specify the AMI ID in the imageId or imageIdOverride parameters, or the launch template identified by the LaunchTemplate properties. Changing any of these properties starts an infrastructure update. If the AMI ID is specified in the launch template, it can\'t be replaced by specifying an AMI ID in either the imageId or imageIdOverride parameters. It can only be replaced by specifying a different launch template, or if the launch template version is set to $Default or $Latest, by setting either a new default version for the launch template (if $Default) or by adding a new version to the launch template (if $Latest).

If these rules are followed, any update that starts an infrastructure update causes the AMI ID to be re-selected. If the version setting in the launch template (launchTemplate) is set to $Latest or $Default, the latest or default version of the launch template is evaluated up at the time of the infrastructure update, even if the launchTemplate wasn\'t updated.

', 'CreateJobQueue' => '

Creates an Batch job queue. When you create a job queue, you associate one or more compute environments to the queue and assign an order of preference for the compute environments.

You also set a priority to the job queue that determines the order that the Batch scheduler places jobs onto its associated compute environments. For example, if a compute environment is associated with more than one job queue, the job queue with a higher priority is given preference for scheduling jobs to that compute environment.

', 'CreateSchedulingPolicy' => '

Creates an Batch scheduling policy.

', 'DeleteComputeEnvironment' => '

Deletes an Batch compute environment.

Before you can delete a compute environment, you must set its state to DISABLED with the UpdateComputeEnvironment API operation and disassociate it from any job queues with the UpdateJobQueue API operation. Compute environments that use Fargate resources must terminate all active jobs on that compute environment before deleting the compute environment. If this isn\'t done, the compute environment enters an invalid state.

', 'DeleteJobQueue' => '

Deletes the specified job queue. You must first disable submissions for a queue with the UpdateJobQueue operation. All jobs in the queue are eventually terminated when you delete a job queue. The jobs are terminated at a rate of about 16 jobs each second.

It\'s not necessary to disassociate compute environments from a queue before submitting a DeleteJobQueue request.

', 'DeleteSchedulingPolicy' => '

Deletes the specified scheduling policy.

You can\'t delete a scheduling policy that\'s used in any job queues.

', 'DeregisterJobDefinition' => '

Deregisters an Batch job definition. Job definitions are permanently deleted after 180 days.

', 'DescribeComputeEnvironments' => '

Describes one or more of your compute environments.

If you\'re using an unmanaged compute environment, you can use the DescribeComputeEnvironment operation to determine the ecsClusterArn that you launch your Amazon ECS container instances into.

', 'DescribeJobDefinitions' => '

Describes a list of job definitions. You can specify a status (such as ACTIVE) to only return job definitions that match that status.

', 'DescribeJobQueues' => '

Describes one or more of your job queues.

', 'DescribeJobs' => '

Describes a list of Batch jobs.

', 'DescribeSchedulingPolicies' => '

Describes one or more of your scheduling policies.

', 'ListJobs' => '

Returns a list of Batch jobs.

You must specify only one of the following items:

You can filter the results by job status with the jobStatus parameter. If you don\'t specify a status, only RUNNING jobs are returned.

', 'ListSchedulingPolicies' => '

Returns a list of Batch scheduling policies.

', 'ListTagsForResource' => '

Lists the tags for an Batch resource. Batch resources that support tags are compute environments, jobs, job definitions, job queues, and scheduling policies. ARNs for child jobs of array and multi-node parallel (MNP) jobs aren\'t supported.

', 'RegisterJobDefinition' => '

Registers an Batch job definition.

', 'SubmitJob' => '

Submits an Batch job from a job definition. Parameters that are specified during SubmitJob override parameters defined in the job definition. vCPU and memory requirements that are specified in the resourceRequirements objects in the job definition are the exception. They can\'t be overridden this way using the memory and vcpus parameters. Rather, you must specify updates to job definition parameters in a resourceRequirements object that\'s included in the containerOverrides parameter.

Job queues with a scheduling policy are limited to 500 active fair share identifiers at a time.

Jobs that run on Fargate resources can\'t be guaranteed to run for more than 14 days. This is because, after 14 days, Fargate resources might become unavailable and job might be terminated.

', 'TagResource' => '

Associates the specified tags to a resource with the specified resourceArn. If existing tags on a resource aren\'t specified in the request parameters, they aren\'t changed. When a resource is deleted, the tags that are associated with that resource are deleted as well. Batch resources that support tags are compute environments, jobs, job definitions, job queues, and scheduling policies. ARNs for child jobs of array and multi-node parallel (MNP) jobs aren\'t supported.

', 'TerminateJob' => '

Terminates a job in a job queue. Jobs that are in the STARTING or RUNNING state are terminated, which causes them to transition to FAILED. Jobs that have not progressed to the STARTING state are cancelled.

', 'UntagResource' => '

Deletes specified tags from an Batch resource.

', 'UpdateComputeEnvironment' => '

Updates an Batch compute environment.

', 'UpdateJobQueue' => '

Updates a job queue.

', 'UpdateSchedulingPolicy' => '

Updates a scheduling policy.

', ], 'shapes' => [ 'ArrayJobDependency' => [ 'base' => NULL, 'refs' => [ 'JobDependency$type' => '

The type of the job dependency.

', ], ], 'ArrayJobStatusSummary' => [ 'base' => NULL, 'refs' => [ 'ArrayPropertiesDetail$statusSummary' => '

A summary of the number of array job children in each available job status. This parameter is returned for parent array jobs.

', ], ], 'ArrayProperties' => [ 'base' => '

An object that represents an Batch array job.

', 'refs' => [ 'SubmitJobRequest$arrayProperties' => '

The array properties for the submitted job, such as the size of the array. The array size can be between 2 and 10,000. If you specify array properties for a job, it becomes an array job. For more information, see Array Jobs in the Batch User Guide.

', ], ], 'ArrayPropertiesDetail' => [ 'base' => '

An object that represents the array properties of a job.

', 'refs' => [ 'JobDetail$arrayProperties' => '

The array properties of the job, if it\'s an array job.

', ], ], 'ArrayPropertiesSummary' => [ 'base' => '

An object that represents the array properties of a job.

', 'refs' => [ 'JobSummary$arrayProperties' => '

The array properties of the job, if it\'s an array job.

', ], ], 'AssignPublicIp' => [ 'base' => NULL, 'refs' => [ 'NetworkConfiguration$assignPublicIp' => '

Indicates whether the job has a public IP address. For a job that\'s running on Fargate resources in a private subnet to send outbound traffic to the internet (for example, to pull container images), the private subnet requires a NAT gateway be attached to route requests to the internet. For more information, see Amazon ECS task networking in the Amazon Elastic Container Service Developer Guide. The default value is "DISABLED".

', ], ], 'AttemptContainerDetail' => [ 'base' => '

An object that represents the details of a container that\'s part of a job attempt.

', 'refs' => [ 'AttemptDetail$container' => '

The details for the container in this job attempt.

', ], ], 'AttemptDetail' => [ 'base' => '

An object that represents a job attempt.

', 'refs' => [ 'AttemptDetails$member' => NULL, ], ], 'AttemptDetails' => [ 'base' => NULL, 'refs' => [ 'JobDetail$attempts' => '

A list of job attempts that are associated with this job.

', ], ], 'Boolean' => [ 'base' => NULL, 'refs' => [ 'ComputeResourceUpdate$updateToLatestImageVersion' => '

Specifies whether the AMI ID is updated to the latest one that\'s supported by Batch when the compute environment has an infrastructure update. The default value is false.

An AMI ID can either be specified in the imageId or imageIdOverride parameters or be determined by the launch template that\'s specified in the launchTemplate parameter. If an AMI ID is specified any of these ways, this parameter is ignored. For more information about to update AMI IDs during an infrastructure update, see Updating the AMI ID in the Batch User Guide.

When updating a compute environment, changing this setting requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

', 'ContainerDetail$readonlyRootFilesystem' => '

When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run .

', 'ContainerDetail$privileged' => '

When this parameter is true, the container is given elevated permissions on the host container instance (similar to the root user). The default value is false.

This parameter isn\'t applicable to jobs that are running on Fargate resources and shouldn\'t be provided, or specified as false.

', 'ContainerProperties$readonlyRootFilesystem' => '

When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

', 'ContainerProperties$privileged' => '

When this parameter is true, the container is given elevated permissions on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run. The default value is false.

This parameter isn\'t applicable to jobs that are running on Fargate resources and shouldn\'t be provided, or specified as false.

', 'EksContainerSecurityContext$privileged' => '

When this parameter is true, the container is given elevated permissions on the host container instance. The level of permissions are similar to the root user permissions. The default value is false. This parameter maps to privileged policy in the Privileged pod security policies in the Kubernetes documentation.

', 'EksContainerSecurityContext$readOnlyRootFilesystem' => '

When this parameter is true, the container is given read-only access to its root file system. The default value is false. This parameter maps to ReadOnlyRootFilesystem policy in the Volumes and file systems pod security policies in the Kubernetes documentation.

', 'EksContainerSecurityContext$runAsNonRoot' => '

When this parameter is specified, the container is run as a user with a uid other than 0. If this parameter isn\'t specified, so such rule is enforced. This parameter maps to RunAsUser and MustRunAsNonRoot policy in the Users and groups pod security policies in the Kubernetes documentation.

', 'EksContainerVolumeMount$readOnly' => '

If this value is true, the container has read-only access to the volume. Otherwise, the container can write to the volume. The default value is false.

', 'EksPodProperties$hostNetwork' => '

Indicates if the pod uses the hosts\' network IP address. The default value is true. Setting this to false enables the Kubernetes pod networking model. Most Batch workloads are egress-only and don\'t require the overhead of IP allocation for each pod for incoming connections. For more information, see Host namespaces and Pod networking in the Kubernetes documentation.

', 'EksPodPropertiesDetail$hostNetwork' => '

Indicates if the pod uses the hosts\' network IP address. The default value is true. Setting this to false enables the Kubernetes pod networking model. Most Batch workloads are egress-only and don\'t require the overhead of IP allocation for each pod for incoming connections. For more information, see Host namespaces and Pod networking in the Kubernetes documentation.

', 'EksSecret$optional' => '

Specifies whether the secret or the secret\'s keys must be defined.

', 'JobDefinition$propagateTags' => '

Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags aren\'t propagated. Tags can only be propagated to the tasks when the tasks are created. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the FAILED state.

', 'JobDetail$propagateTags' => '

Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags aren\'t propagated. Tags can only be propagated to the tasks when the tasks are created. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the FAILED state.

', 'JobDetail$isCancelled' => '

Indicates whether the job is canceled.

', 'JobDetail$isTerminated' => '

Indicates whether the job is terminated.

', 'LinuxParameters$initProcessEnabled' => '

If true, run an init process inside the container that forwards signals and reaps processes. This parameter maps to the --init option to docker run. This parameter requires version 1.25 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version | grep "Server API version"

', 'MountPoint$readOnly' => '

If this value is true, the container has read-only access to the volume. Otherwise, the container can write to the volume. The default value is false.

', 'NodeDetails$isMainNode' => '

Specifies whether the current node is the main node for a multi-node parallel job.

', 'NodePropertiesSummary$isMainNode' => '

Specifies whether the current node is the main node for a multi-node parallel job.

', 'RegisterJobDefinitionRequest$propagateTags' => '

Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags are not propagated. Tags can only be propagated to the tasks during task creation. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the FAILED state.

If the job runs on Amazon EKS resources, then you must not specify propagateTags.

', 'SubmitJobRequest$propagateTags' => '

Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags aren\'t propagated. Tags can only be propagated to the tasks during task creation. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the FAILED state. When specified, this overrides the tag propagation setting in the job definition.

', 'UpdatePolicy$terminateJobsOnUpdate' => '

Specifies whether jobs are automatically terminated when the computer environment infrastructure is updated. The default value is false.

', ], ], 'CEState' => [ 'base' => NULL, 'refs' => [ 'ComputeEnvironmentDetail$state' => '

The state of the compute environment. The valid values are ENABLED or DISABLED.

If the state is ENABLED, then the Batch scheduler can attempt to place jobs from an associated job queue on the compute resources within the environment. If the compute environment is managed, then it can scale its instances out or in automatically based on the job queue demand.

If the state is DISABLED, then the Batch scheduler doesn\'t attempt to place jobs within the environment. Jobs in a STARTING or RUNNING state continue to progress normally. Managed compute environments in the DISABLED state don\'t scale out.

Compute environments in a DISABLED state may continue to incur billing charges. To prevent additional charges, turn off and then delete the compute environment. For more information, see State in the Batch User Guide.

When an instance is idle, the instance scales down to the minvCpus value. However, the instance size doesn\'t change. For example, consider a c5.8xlarge instance with a minvCpus value of 4 and a desiredvCpus value of 36. This instance doesn\'t scale down to a c5.large instance.

', 'CreateComputeEnvironmentRequest$state' => '

The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.

If the state is ENABLED, then the Batch scheduler can attempt to place jobs from an associated job queue on the compute resources within the environment. If the compute environment is managed, then it can scale its instances out or in automatically, based on the job queue demand.

If the state is DISABLED, then the Batch scheduler doesn\'t attempt to place jobs within the environment. Jobs in a STARTING or RUNNING state continue to progress normally. Managed compute environments in the DISABLED state don\'t scale out.

Compute environments in a DISABLED state may continue to incur billing charges. To prevent additional charges, turn off and then delete the compute environment. For more information, see State in the Batch User Guide.

When an instance is idle, the instance scales down to the minvCpus value. However, the instance size doesn\'t change. For example, consider a c5.8xlarge instance with a minvCpus value of 4 and a desiredvCpus value of 36. This instance doesn\'t scale down to a c5.large instance.

', 'UpdateComputeEnvironmentRequest$state' => '

The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.

If the state is ENABLED, then the Batch scheduler can attempt to place jobs from an associated job queue on the compute resources within the environment. If the compute environment is managed, then it can scale its instances out or in automatically, based on the job queue demand.

If the state is DISABLED, then the Batch scheduler doesn\'t attempt to place jobs within the environment. Jobs in a STARTING or RUNNING state continue to progress normally. Managed compute environments in the DISABLED state don\'t scale out.

Compute environments in a DISABLED state may continue to incur billing charges. To prevent additional charges, turn off and then delete the compute environment. For more information, see State in the Batch User Guide.

When an instance is idle, the instance scales down to the minvCpus value. However, the instance size doesn\'t change. For example, consider a c5.8xlarge instance with a minvCpus value of 4 and a desiredvCpus value of 36. This instance doesn\'t scale down to a c5.large instance.

', ], ], 'CEStatus' => [ 'base' => NULL, 'refs' => [ 'ComputeEnvironmentDetail$status' => '

The current status of the compute environment (for example, CREATING or VALID).

', ], ], 'CEType' => [ 'base' => NULL, 'refs' => [ 'ComputeEnvironmentDetail$type' => '

The type of the compute environment: MANAGED or UNMANAGED. For more information, see Compute environments in the Batch User Guide.

', 'CreateComputeEnvironmentRequest$type' => '

The type of the compute environment: MANAGED or UNMANAGED. For more information, see Compute Environments in the Batch User Guide.

', ], ], 'CRAllocationStrategy' => [ 'base' => NULL, 'refs' => [ 'ComputeResource$allocationStrategy' => '

The allocation strategy to use for the compute resource if not enough instances of the best fitting instance type can be allocated. This might be because of availability of the instance type in the Region or Amazon EC2 service limits. For more information, see Allocation strategies in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

BEST_FIT (default)

Batch selects an instance type that best fits the needs of the jobs with a preference for the lowest-cost instance type. If additional instances of the selected instance type aren\'t available, Batch waits for the additional instances to be available. If there aren\'t enough instances available or the user is reaching Amazon EC2 service limits, additional jobs aren\'t run until the currently running jobs are completed. This allocation strategy keeps costs lower but can limit scaling. If you\'re using Spot Fleets with BEST_FIT, the Spot Fleet IAM Role must be specified. Compute resources that use a BEST_FIT allocation strategy don\'t support infrastructure updates and can\'t update some parameters. For more information, see Updating compute environments in the Batch User Guide.

BEST_FIT_PROGRESSIVE

Batch selects additional instance types that are large enough to meet the requirements of the jobs in the queue. Its preference is for instance types with lower cost vCPUs. If additional instances of the previously selected instance types aren\'t available, Batch selects new instance types.

SPOT_CAPACITY_OPTIMIZED

Batch selects one or more instance types that are large enough to meet the requirements of the jobs in the queue. Its preference is for instance types that are less likely to be interrupted. This allocation strategy is only available for Spot Instance compute resources.

SPOT_PRICE_CAPACITY_OPTIMIZED

The price and capacity optimized allocation strategy looks at both price and capacity to select the Spot Instance pools that are the least likely to be interrupted and have the lowest possible price. This allocation strategy is only available for Spot Instance compute resources.

With BEST_FIT_PROGRESSIVE,SPOT_CAPACITY_OPTIMIZED and SPOT_PRICE_CAPACITY_OPTIMIZED (recommended) strategies using On-Demand or Spot Instances, and the BEST_FIT strategy using Spot Instances, Batch might need to exceed maxvCpus to meet your capacity requirements. In this event, Batch never exceeds maxvCpus by more than a single instance.

', ], ], 'CRType' => [ 'base' => NULL, 'refs' => [ 'ComputeResource$type' => '

The type of compute environment: EC2, SPOT, FARGATE, or FARGATE_SPOT. For more information, see Compute environments in the Batch User Guide.

If you choose SPOT, you must also specify an Amazon EC2 Spot Fleet role with the spotIamFleetRole parameter. For more information, see Amazon EC2 spot fleet role in the Batch User Guide.

', 'ComputeResourceUpdate$type' => '

The type of compute environment: EC2, SPOT, FARGATE, or FARGATE_SPOT. For more information, see Compute environments in the Batch User Guide.

If you choose SPOT, you must also specify an Amazon EC2 Spot Fleet role with the spotIamFleetRole parameter. For more information, see Amazon EC2 spot fleet role in the Batch User Guide.

When updating a compute environment, changing the type of a compute environment requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

', ], ], 'CRUpdateAllocationStrategy' => [ 'base' => NULL, 'refs' => [ 'ComputeResourceUpdate$allocationStrategy' => '

The allocation strategy to use for the compute resource if there\'s not enough instances of the best fitting instance type that can be allocated. This might be because of availability of the instance type in the Region or Amazon EC2 service limits. For more information, see Allocation strategies in the Batch User Guide.

When updating a compute environment, changing the allocation strategy requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide. BEST_FIT isn\'t supported when updating a compute environment.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

BEST_FIT_PROGRESSIVE

Batch selects additional instance types that are large enough to meet the requirements of the jobs in the queue. Its preference is for instance types with lower cost vCPUs. If additional instances of the previously selected instance types aren\'t available, Batch selects new instance types.

SPOT_CAPACITY_OPTIMIZED

Batch selects one or more instance types that are large enough to meet the requirements of the jobs in the queue. Its preference is for instance types that are less likely to be interrupted. This allocation strategy is only available for Spot Instance compute resources.

SPOT_PRICE_CAPACITY_OPTIMIZED

The price and capacity optimized allocation strategy looks at both price and capacity to select the Spot Instance pools that are the least likely to be interrupted and have the lowest possible price. This allocation strategy is only available for Spot Instance compute resources.

With BEST_FIT_PROGRESSIVE,SPOT_CAPACITY_OPTIMIZED and SPOT_PRICE_CAPACITY_OPTIMIZED (recommended) strategies using On-Demand or Spot Instances, and the BEST_FIT strategy using Spot Instances, Batch might need to exceed maxvCpus to meet your capacity requirements. In this event, Batch never exceeds maxvCpus by more than a single instance.

', ], ], 'CancelJobRequest' => [ 'base' => '

Contains the parameters for CancelJob.

', 'refs' => [], ], 'CancelJobResponse' => [ 'base' => NULL, 'refs' => [], ], 'ClientException' => [ 'base' => '

These errors are usually caused by a client action. One example cause is using an action or resource on behalf of a user that doesn\'t have permissions to use the action or resource. Another cause is specifying an identifier that\'s not valid.

', 'refs' => [], ], 'ComputeEnvironmentDetail' => [ 'base' => '

An object that represents an Batch compute environment.

', 'refs' => [ 'ComputeEnvironmentDetailList$member' => NULL, ], ], 'ComputeEnvironmentDetailList' => [ 'base' => NULL, 'refs' => [ 'DescribeComputeEnvironmentsResponse$computeEnvironments' => '

The list of compute environments.

', ], ], 'ComputeEnvironmentOrder' => [ 'base' => '

The order that compute environments are tried in for job placement within a queue. Compute environments are tried in ascending order. For example, if two compute environments are associated with a job queue, the compute environment with a lower order integer value is tried for job placement first. Compute environments must be in the VALID state before you can associate them with a job queue. All of the compute environments must be either EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT); EC2 and Fargate compute environments can\'t be mixed.

All compute environments that are associated with a job queue must share the same architecture. Batch doesn\'t support mixing compute environment architecture types in a single job queue.

', 'refs' => [ 'ComputeEnvironmentOrders$member' => NULL, ], ], 'ComputeEnvironmentOrders' => [ 'base' => NULL, 'refs' => [ 'CreateJobQueueRequest$computeEnvironmentOrder' => '

The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment runs a specific job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to three compute environments with a job queue. All of the compute environments must be either EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT); EC2 and Fargate compute environments can\'t be mixed.

All compute environments that are associated with a job queue must share the same architecture. Batch doesn\'t support mixing compute environment architecture types in a single job queue.

', 'JobQueueDetail$computeEnvironmentOrder' => '

The compute environments that are attached to the job queue and the order that job placement is preferred. Compute environments are selected for job placement in ascending order.

', 'UpdateJobQueueRequest$computeEnvironmentOrder' => '

Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment runs a given job. Compute environments must be in the VALID state before you can associate them with a job queue. All of the compute environments must be either EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT). EC2 and Fargate compute environments can\'t be mixed.

All compute environments that are associated with a job queue must share the same architecture. Batch doesn\'t support mixing compute environment architecture types in a single job queue.

', ], ], 'ComputeResource' => [ 'base' => '

An object that represents an Batch compute resource. For more information, see Compute environments in the Batch User Guide.

', 'refs' => [ 'ComputeEnvironmentDetail$computeResources' => '

The compute resources defined for the compute environment. For more information, see Compute environments in the Batch User Guide.

', 'CreateComputeEnvironmentRequest$computeResources' => '

Details about the compute resources managed by the compute environment. This parameter is required for managed compute environments. For more information, see Compute Environments in the Batch User Guide.

', ], ], 'ComputeResourceUpdate' => [ 'base' => '

An object that represents the attributes of a compute environment that can be updated. For more information, see Updating compute environments in the Batch User Guide.

', 'refs' => [ 'UpdateComputeEnvironmentRequest$computeResources' => '

Details of the compute resources managed by the compute environment. Required for a managed compute environment. For more information, see Compute Environments in the Batch User Guide.

', ], ], 'ContainerDetail' => [ 'base' => '

An object that represents the details of a container that\'s part of a job.

', 'refs' => [ 'JobDetail$container' => '

An object that represents the details for the container that\'s associated with the job.

', ], ], 'ContainerOverrides' => [ 'base' => '

The overrides that should be sent to a container.

For information about using Batch overrides when you connect event sources to targets, see BatchContainerOverrides.

', 'refs' => [ 'NodePropertyOverride$containerOverrides' => '

The overrides that are sent to a node range.

', 'SubmitJobRequest$containerOverrides' => '

An object with various properties that override the defaults for the job definition that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container, which is specified in the job definition or the Docker image, with a command override. You can also override existing environment variables on a container or add new environment variables to it with an environment override.

', ], ], 'ContainerProperties' => [ 'base' => '

Container properties are used for Amazon ECS based job definitions. These properties to describe the container that\'s launched as part of a job.

', 'refs' => [ 'JobDefinition$containerProperties' => '

An object with various properties specific to Amazon ECS based jobs. Valid values are containerProperties, eksProperties, and nodeProperties. Only one can be specified.

', 'NodeRangeProperty$container' => '

The container details for the node range.

', 'RegisterJobDefinitionRequest$containerProperties' => '

An object with various properties specific to Amazon ECS based single-node container-based jobs. If the job definition\'s type parameter is container, then you must specify either containerProperties or nodeProperties. This must not be specified for Amazon EKS based job definitions.

If the job runs on Fargate resources, then you must not specify nodeProperties; use only containerProperties.

', ], ], 'ContainerSummary' => [ 'base' => '

An object that represents summary details of a container within a job.

', 'refs' => [ 'JobSummary$container' => '

An object that represents the details of the container that\'s associated with the job.

', ], ], 'CreateComputeEnvironmentRequest' => [ 'base' => '

Contains the parameters for CreateComputeEnvironment.

', 'refs' => [], ], 'CreateComputeEnvironmentResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateJobQueueRequest' => [ 'base' => '

Contains the parameters for CreateJobQueue.

', 'refs' => [], ], 'CreateJobQueueResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateSchedulingPolicyRequest' => [ 'base' => '

Contains the parameters for CreateSchedulingPolicy.

', 'refs' => [], ], 'CreateSchedulingPolicyResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteComputeEnvironmentRequest' => [ 'base' => '

Contains the parameters for DeleteComputeEnvironment.

', 'refs' => [], ], 'DeleteComputeEnvironmentResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteJobQueueRequest' => [ 'base' => '

Contains the parameters for DeleteJobQueue.

', 'refs' => [], ], 'DeleteJobQueueResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteSchedulingPolicyRequest' => [ 'base' => '

Contains the parameters for DeleteSchedulingPolicy.

', 'refs' => [], ], 'DeleteSchedulingPolicyResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeregisterJobDefinitionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeregisterJobDefinitionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeComputeEnvironmentsRequest' => [ 'base' => '

Contains the parameters for DescribeComputeEnvironments.

', 'refs' => [], ], 'DescribeComputeEnvironmentsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobDefinitionsRequest' => [ 'base' => '

Contains the parameters for DescribeJobDefinitions.

', 'refs' => [], ], 'DescribeJobDefinitionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobQueuesRequest' => [ 'base' => '

Contains the parameters for DescribeJobQueues.

', 'refs' => [], ], 'DescribeJobQueuesResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobsRequest' => [ 'base' => '

Contains the parameters for DescribeJobs.

', 'refs' => [], ], 'DescribeJobsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSchedulingPoliciesRequest' => [ 'base' => '

Contains the parameters for DescribeSchedulingPolicies.

', 'refs' => [], ], 'DescribeSchedulingPoliciesResponse' => [ 'base' => NULL, 'refs' => [], ], 'Device' => [ 'base' => '

An object that represents a container instance host device.

This object isn\'t applicable to jobs that are running on Fargate resources and shouldn\'t be provided.

', 'refs' => [ 'DevicesList$member' => NULL, ], ], 'DeviceCgroupPermission' => [ 'base' => NULL, 'refs' => [ 'DeviceCgroupPermissions$member' => NULL, ], ], 'DeviceCgroupPermissions' => [ 'base' => NULL, 'refs' => [ 'Device$permissions' => '

The explicit permissions to provide to the container for the device. By default, the container has permissions for read, write, and mknod for the device.

', ], ], 'DevicesList' => [ 'base' => NULL, 'refs' => [ 'LinuxParameters$devices' => '

Any of the host devices to expose to the container. This parameter maps to Devices in the Create a container section of the Docker Remote API and the --device option to docker run.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t provide it for these jobs.

', ], ], 'EFSAuthorizationConfig' => [ 'base' => '

The authorization configuration details for the Amazon EFS file system.

', 'refs' => [ 'EFSVolumeConfiguration$authorizationConfig' => '

The authorization configuration details for the Amazon EFS file system.

', ], ], 'EFSAuthorizationConfigIAM' => [ 'base' => NULL, 'refs' => [ 'EFSAuthorizationConfig$iam' => '

Whether or not to use the Batch job IAM role defined in a job definition when mounting the Amazon EFS file system. If enabled, transit encryption must be enabled in the EFSVolumeConfiguration. If this parameter is omitted, the default value of DISABLED is used. For more information, see Using Amazon EFS access points in the Batch User Guide. EFS IAM authorization requires that TransitEncryption be ENABLED and that a JobRoleArn is specified.

', ], ], 'EFSTransitEncryption' => [ 'base' => NULL, 'refs' => [ 'EFSVolumeConfiguration$transitEncryption' => '

Determines whether to enable encryption for Amazon EFS data in transit between the Amazon ECS host and the Amazon EFS server. Transit encryption must be enabled if Amazon EFS IAM authorization is used. If this parameter is omitted, the default value of DISABLED is used. For more information, see Encrypting data in transit in the Amazon Elastic File System User Guide.

', ], ], 'EFSVolumeConfiguration' => [ 'base' => '

This is used when you\'re using an Amazon Elastic File System file system for job storage. For more information, see Amazon EFS Volumes in the Batch User Guide.

', 'refs' => [ 'Volume$efsVolumeConfiguration' => '

This parameter is specified when you\'re using an Amazon Elastic File System file system for job storage. Jobs that are running on Fargate resources must specify a platformVersion of at least 1.4.0.

', ], ], 'Ec2Configuration' => [ 'base' => '

Provides information used to select Amazon Machine Images (AMIs) for instances in the compute environment. If Ec2Configuration isn\'t specified, the default is ECS_AL2 (Amazon Linux 2).

This object isn\'t applicable to jobs that are running on Fargate resources.

', 'refs' => [ 'Ec2ConfigurationList$member' => NULL, ], ], 'Ec2ConfigurationList' => [ 'base' => NULL, 'refs' => [ 'ComputeResource$ec2Configuration' => '

Provides information that\'s used to select Amazon Machine Images (AMIs) for EC2 instances in the compute environment. If Ec2Configuration isn\'t specified, the default is ECS_AL2.

One or two values can be provided.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResourceUpdate$ec2Configuration' => '

Provides information used to select Amazon Machine Images (AMIs) for EC2 instances in the compute environment. If Ec2Configuration isn\'t specified, the default is ECS_AL2.

When updating a compute environment, changing this setting requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide. To remove the EC2 configuration and any custom AMI ID specified in imageIdOverride, set this value to an empty string.

One or two values can be provided.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', ], ], 'EksAttemptContainerDetail' => [ 'base' => '

An object that represents the details for an attempt for a job attempt that an Amazon EKS container runs.

', 'refs' => [ 'EksAttemptContainerDetails$member' => NULL, ], ], 'EksAttemptContainerDetails' => [ 'base' => NULL, 'refs' => [ 'EksAttemptDetail$containers' => '

The details for the final status of the containers for this job attempt.

', ], ], 'EksAttemptDetail' => [ 'base' => '

An object that represents the details of a job attempt for a job attempt by an Amazon EKS container.

', 'refs' => [ 'EksAttemptDetails$member' => NULL, ], ], 'EksAttemptDetails' => [ 'base' => NULL, 'refs' => [ 'JobDetail$eksAttempts' => '

A list of job attempts that are associated with this job.

', ], ], 'EksConfiguration' => [ 'base' => '

Configuration for the Amazon EKS cluster that supports the Batch compute environment. The cluster must exist before the compute environment can be created.

', 'refs' => [ 'ComputeEnvironmentDetail$eksConfiguration' => '

The configuration for the Amazon EKS cluster that supports the Batch compute environment. Only specify this parameter if the containerOrchestrationType is EKS.

', 'CreateComputeEnvironmentRequest$eksConfiguration' => '

The details for the Amazon EKS cluster that supports the compute environment.

', ], ], 'EksContainer' => [ 'base' => '

EKS container properties are used in job definitions for Amazon EKS based job definitions to describe the properties for a container node in the pod that\'s launched as part of a job. This can\'t be specified for Amazon ECS based job definitions.

', 'refs' => [ 'EksContainers$member' => NULL, ], ], 'EksContainerDetail' => [ 'base' => '

The details for container properties that are returned by DescribeJobs for jobs that use Amazon EKS.

', 'refs' => [ 'EksContainerDetails$member' => NULL, ], ], 'EksContainerDetails' => [ 'base' => NULL, 'refs' => [ 'EksPodPropertiesDetail$containers' => '

The properties of the container that\'s used on the Amazon EKS pod.

', ], ], 'EksContainerEnvironmentVariable' => [ 'base' => '

An environment variable.

', 'refs' => [ 'EksContainerEnvironmentVariables$member' => NULL, ], ], 'EksContainerEnvironmentVariables' => [ 'base' => NULL, 'refs' => [ 'EksContainer$env' => '

The environment variables to pass to a container.

Environment variables cannot start with "AWS_BATCH". This naming convention is reserved for variables that Batch sets.

', 'EksContainerDetail$env' => '

The environment variables to pass to a container.

Environment variables cannot start with "AWS_BATCH". This naming convention is reserved for variables that Batch sets.

', 'EksContainerOverride$env' => '

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch. Or, you can override the existing environment variables from the Docker image or the job definition.

Environment variables cannot start with "AWS_BATCH". This naming convention is reserved for variables that Batch sets.

', ], ], 'EksContainerOverride' => [ 'base' => '

Object representing any Kubernetes overrides to a job definition that\'s used in a SubmitJob API operation.

', 'refs' => [ 'EksContainerOverrideList$member' => NULL, ], ], 'EksContainerOverrideList' => [ 'base' => NULL, 'refs' => [ 'EksPodPropertiesOverride$containers' => '

The overrides for the container that\'s used on the Amazon EKS pod.

', ], ], 'EksContainerResourceRequirements' => [ 'base' => '

The type and amount of resources to assign to a container. The supported resources include memory, cpu, and nvidia.com/gpu. For more information, see Resource management for pods and containers in the Kubernetes documentation.

', 'refs' => [ 'EksContainer$resources' => '

The type and amount of resources to assign to a container. The supported resources include memory, cpu, and nvidia.com/gpu. For more information, see Resource management for pods and containers in the Kubernetes documentation.

', 'EksContainerDetail$resources' => '

The type and amount of resources to assign to a container. The supported resources include memory, cpu, and nvidia.com/gpu. For more information, see Resource management for pods and containers in the Kubernetes documentation.

', 'EksContainerOverride$resources' => '

The type and amount of resources to assign to a container. These override the settings in the job definition. The supported resources include memory, cpu, and nvidia.com/gpu. For more information, see Resource management for pods and containers in the Kubernetes documentation.

', ], ], 'EksContainerSecurityContext' => [ 'base' => '

The security context for a job. For more information, see Configure a security context for a pod or container in the Kubernetes documentation.

', 'refs' => [ 'EksContainer$securityContext' => '

The security context for a job. For more information, see Configure a security context for a pod or container in the Kubernetes documentation.

', 'EksContainerDetail$securityContext' => '

The security context for a job. For more information, see Configure a security context for a pod or container in the Kubernetes documentation.

', ], ], 'EksContainerVolumeMount' => [ 'base' => '

The volume mounts for a container for an Amazon EKS job. For more information about volumes and volume mounts in Kubernetes, see Volumes in the Kubernetes documentation.

', 'refs' => [ 'EksContainerVolumeMounts$member' => NULL, ], ], 'EksContainerVolumeMounts' => [ 'base' => NULL, 'refs' => [ 'EksContainer$volumeMounts' => '

The volume mounts for the container. Batch supports emptyDir, hostPath, and secret volume types. For more information about volumes and volume mounts in Kubernetes, see Volumes in the Kubernetes documentation.

', 'EksContainerDetail$volumeMounts' => '

The volume mounts for the container. Batch supports emptyDir, hostPath, and secret volume types. For more information about volumes and volume mounts in Kubernetes, see Volumes in the Kubernetes documentation.

', ], ], 'EksContainers' => [ 'base' => NULL, 'refs' => [ 'EksPodProperties$containers' => '

The properties of the container that\'s used on the Amazon EKS pod.

', ], ], 'EksEmptyDir' => [ 'base' => '

Specifies the configuration of a Kubernetes emptyDir volume. An emptyDir volume is first created when a pod is assigned to a node. It exists as long as that pod is running on that node. The emptyDir volume is initially empty. All containers in the pod can read and write the files in the emptyDir volume. However, the emptyDir volume can be mounted at the same or different paths in each container. When a pod is removed from a node for any reason, the data in the emptyDir is deleted permanently. For more information, see emptyDir in the Kubernetes documentation.

', 'refs' => [ 'EksVolume$emptyDir' => '

Specifies the configuration of a Kubernetes emptyDir volume. For more information, see emptyDir in the Kubernetes documentation.

', ], ], 'EksHostPath' => [ 'base' => '

Specifies the configuration of a Kubernetes hostPath volume. A hostPath volume mounts an existing file or directory from the host node\'s filesystem into your pod. For more information, see hostPath in the Kubernetes documentation.

', 'refs' => [ 'EksVolume$hostPath' => '

Specifies the configuration of a Kubernetes hostPath volume. For more information, see hostPath in the Kubernetes documentation.

', ], ], 'EksLabelsMap' => [ 'base' => NULL, 'refs' => [ 'EksMetadata$labels' => '

Key-value pairs used to identify, sort, and organize cube resources. Can contain up to 63 uppercase letters, lowercase letters, numbers, hyphens (-), and underscores (_). Labels can be added or modified at any time. Each resource can have multiple labels, but each key must be unique for a given object.

', ], ], 'EksLimits' => [ 'base' => NULL, 'refs' => [ 'EksContainerResourceRequirements$limits' => '

The type and quantity of the resources to reserve for the container. The values vary based on the name that\'s specified. Resources can be requested using either the limits or the requests objects.

memory

The memory hard limit (in MiB) for the container, using whole integers, with a "Mi" suffix. If your container attempts to exceed the memory specified, the container is terminated. You must specify at least 4 MiB of memory for a job. memory can be specified in limits, requests, or both. If memory is specified in both places, then the value that\'s specified in limits must be equal to the value that\'s specified in requests.

To maximize your resource utilization, provide your jobs with as much memory as possible for the specific instance type that you are using. To learn how, see Memory management in the Batch User Guide.

cpu

The number of CPUs that\'s reserved for the container. Values must be an even multiple of 0.25. cpu can be specified in limits, requests, or both. If cpu is specified in both places, then the value that\'s specified in limits must be at least as large as the value that\'s specified in requests.

nvidia.com/gpu

The number of GPUs that\'s reserved for the container. Values must be a whole integer. memory can be specified in limits, requests, or both. If memory is specified in both places, then the value that\'s specified in limits must be equal to the value that\'s specified in requests.

', ], ], 'EksMetadata' => [ 'base' => '

Describes and uniquely identifies Kubernetes resources. For example, the compute environment that a pod runs in or the jobID for a job running in the pod. For more information, see Understanding Kubernetes Objects in the Kubernetes documentation.

', 'refs' => [ 'EksPodProperties$metadata' => '

Metadata about the Kubernetes pod. For more information, see Understanding Kubernetes Objects in the Kubernetes documentation.

', 'EksPodPropertiesDetail$metadata' => '

Describes and uniquely identifies Kubernetes resources. For example, the compute environment that a pod runs in or the jobID for a job running in the pod. For more information, see Understanding Kubernetes Objects in the Kubernetes documentation.

', 'EksPodPropertiesOverride$metadata' => '

Metadata about the overrides for the container that\'s used on the Amazon EKS pod.

', ], ], 'EksPodProperties' => [ 'base' => '

The properties for the pod.

', 'refs' => [ 'EksProperties$podProperties' => '

The properties for the Kubernetes pod resources of a job.

', ], ], 'EksPodPropertiesDetail' => [ 'base' => '

The details for the pod.

', 'refs' => [ 'EksPropertiesDetail$podProperties' => '

The properties for the Kubernetes pod resources of a job.

', ], ], 'EksPodPropertiesOverride' => [ 'base' => '

An object that contains overrides for the Kubernetes pod properties of a job.

', 'refs' => [ 'EksPropertiesOverride$podProperties' => '

The overrides for the Kubernetes pod resources of a job.

', ], ], 'EksProperties' => [ 'base' => '

An object that contains the properties for the Kubernetes resources of a job.

', 'refs' => [ 'JobDefinition$eksProperties' => '

An object with various properties that are specific to Amazon EKS based jobs. Valid values are containerProperties, eksProperties, and nodeProperties. Only one can be specified.

', 'RegisterJobDefinitionRequest$eksProperties' => '

An object with various properties that are specific to Amazon EKS based jobs. This must not be specified for Amazon ECS based job definitions.

', ], ], 'EksPropertiesDetail' => [ 'base' => '

An object that contains the details for the Kubernetes resources of a job.

', 'refs' => [ 'JobDetail$eksProperties' => '

An object with various properties that are specific to Amazon EKS based jobs. Only one of container, eksProperties, or nodeDetails is specified.

', ], ], 'EksPropertiesOverride' => [ 'base' => '

An object that contains overrides for the Kubernetes resources of a job.

', 'refs' => [ 'SubmitJobRequest$eksPropertiesOverride' => '

An object that can only be specified for jobs that are run on Amazon EKS resources with various properties that override defaults for the job definition.

', ], ], 'EksRequests' => [ 'base' => NULL, 'refs' => [ 'EksContainerResourceRequirements$requests' => '

The type and quantity of the resources to request for the container. The values vary based on the name that\'s specified. Resources can be requested by using either the limits or the requests objects.

memory

The memory hard limit (in MiB) for the container, using whole integers, with a "Mi" suffix. If your container attempts to exceed the memory specified, the container is terminated. You must specify at least 4 MiB of memory for a job. memory can be specified in limits, requests, or both. If memory is specified in both, then the value that\'s specified in limits must be equal to the value that\'s specified in requests.

If you\'re trying to maximize your resource utilization by providing your jobs as much memory as possible for a particular instance type, see Memory management in the Batch User Guide.

cpu

The number of CPUs that are reserved for the container. Values must be an even multiple of 0.25. cpu can be specified in limits, requests, or both. If cpu is specified in both, then the value that\'s specified in limits must be at least as large as the value that\'s specified in requests.

nvidia.com/gpu

The number of GPUs that are reserved for the container. Values must be a whole integer. nvidia.com/gpu can be specified in limits, requests, or both. If nvidia.com/gpu is specified in both, then the value that\'s specified in limits must be equal to the value that\'s specified in requests.

', ], ], 'EksSecret' => [ 'base' => '

Specifies the configuration of a Kubernetes secret volume. For more information, see secret in the Kubernetes documentation.

', 'refs' => [ 'EksVolume$secret' => '

Specifies the configuration of a Kubernetes secret volume. For more information, see secret in the Kubernetes documentation.

', ], ], 'EksVolume' => [ 'base' => '

Specifies an Amazon EKS volume for a job definition.

', 'refs' => [ 'EksVolumes$member' => NULL, ], ], 'EksVolumes' => [ 'base' => NULL, 'refs' => [ 'EksPodProperties$volumes' => '

Specifies the volumes for a job definition that uses Amazon EKS resources.

', 'EksPodPropertiesDetail$volumes' => '

Specifies the volumes for a job definition using Amazon EKS resources.

', ], ], 'EnvironmentVariables' => [ 'base' => NULL, 'refs' => [ 'ContainerDetail$environment' => '

The environment variables to pass to a container.

Environment variables cannot start with "AWS_BATCH". This naming convention is reserved for variables that Batch sets.

', 'ContainerOverrides$environment' => '

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

Environment variables cannot start with "AWS_BATCH". This naming convention is reserved for variables that Batch sets.

', 'ContainerProperties$environment' => '

The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

We don\'t recommend using plaintext environment variables for sensitive information, such as credential data.

Environment variables cannot start with "AWS_BATCH". This naming convention is reserved for variables that Batch sets.

', ], ], 'EphemeralStorage' => [ 'base' => '

The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate.

', 'refs' => [ 'ContainerDetail$ephemeralStorage' => '

The amount of ephemeral storage allocated for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate.

', 'ContainerProperties$ephemeralStorage' => '

The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate.

', ], ], 'EvaluateOnExit' => [ 'base' => '

Specifies an array of up to 5 conditions to be met, and an action to take (RETRY or EXIT) if all conditions are met. If none of the EvaluateOnExit conditions in a RetryStrategy match, then the job is retried.

', 'refs' => [ 'EvaluateOnExitList$member' => NULL, ], ], 'EvaluateOnExitList' => [ 'base' => NULL, 'refs' => [ 'RetryStrategy$evaluateOnExit' => '

Array of up to 5 objects that specify the conditions where jobs are retried or failed. If this parameter is specified, then the attempts parameter must also be specified. If none of the listed conditions match, then the job is retried.

', ], ], 'FairsharePolicy' => [ 'base' => '

The fair share policy for a scheduling policy.

', 'refs' => [ 'CreateSchedulingPolicyRequest$fairsharePolicy' => '

The fair share policy of the scheduling policy.

', 'SchedulingPolicyDetail$fairsharePolicy' => '

The fair share policy for the scheduling policy.

', 'UpdateSchedulingPolicyRequest$fairsharePolicy' => '

The fair share policy.

', ], ], 'FargatePlatformConfiguration' => [ 'base' => '

The platform configuration for jobs that are running on Fargate resources. Jobs that run on EC2 resources must not specify this parameter.

', 'refs' => [ 'ContainerDetail$fargatePlatformConfiguration' => '

The platform configuration for jobs that are running on Fargate resources. Jobs that are running on EC2 resources must not specify this parameter.

', 'ContainerProperties$fargatePlatformConfiguration' => '

The platform configuration for jobs that are running on Fargate resources. Jobs that are running on EC2 resources must not specify this parameter.

', ], ], 'Float' => [ 'base' => NULL, 'refs' => [ 'ShareAttributes$weightFactor' => '

The weight factor for the fair share identifier. The default value is 1.0. A lower value has a higher priority for compute resources. For example, jobs that use a share identifier with a weight factor of 0.125 (1/8) get 8 times the compute resources of jobs that use a share identifier with a weight factor of 1.

The smallest supported value is 0.0001, and the largest supported value is 999.9999.

', ], ], 'Host' => [ 'base' => '

Determine whether your data volume persists on the host container instance and where it\'s stored. If this parameter is empty, then the Docker daemon assigns a host path for your data volume. However, the data isn\'t guaranteed to persist after the containers that are associated with it stop running.

', 'refs' => [ 'Volume$host' => '

The contents of the host parameter determine whether your data volume persists on the host container instance and where it\'s stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume. However, the data isn\'t guaranteed to persist after the containers that are associated with it stop running.

This parameter isn\'t applicable to jobs that are running on Fargate resources and shouldn\'t be provided.

', ], ], 'ImageIdOverride' => [ 'base' => NULL, 'refs' => [ 'Ec2Configuration$imageIdOverride' => '

The AMI ID used for instances launched in the compute environment that match the image type. This setting overrides the imageId set in the computeResource object.

The AMI that you choose for a compute environment must match the architecture of the instance types that you intend to use for that compute environment. For example, if your compute environment uses A1 instance types, the compute resource AMI that you choose must support ARM instances. Amazon ECS vends both x86 and ARM versions of the Amazon ECS-optimized Amazon Linux 2 AMI. For more information, see Amazon ECS-optimized Amazon Linux 2 AMI in the Amazon Elastic Container Service Developer Guide.

', ], ], 'ImageType' => [ 'base' => NULL, 'refs' => [ 'Ec2Configuration$imageType' => '

The image type to match with the instance type to select an AMI. The supported values are different for ECS and EKS resources.

ECS

If the imageIdOverride parameter isn\'t specified, then a recent Amazon ECS-optimized Amazon Linux 2 AMI (ECS_AL2) is used. If a new image type is specified in an update, but neither an imageId nor a imageIdOverride parameter is specified, then the latest Amazon ECS optimized AMI for that image type that\'s supported by Batch is used.

ECS_AL2

Amazon Linux 2: Default for all non-GPU instance families.

ECS_AL2_NVIDIA

Amazon Linux 2 (GPU): Default for all GPU instance families (for example P4 and G4) and can be used for all non Amazon Web Services Graviton-based instance types.

ECS_AL2023

Amazon Linux 2023: Batch supports Amazon Linux 2023.

Amazon Linux 2023 does not support A1 instances.

ECS_AL1

Amazon Linux. Amazon Linux has reached the end-of-life of standard support. For more information, see Amazon Linux AMI.

EKS

If the imageIdOverride parameter isn\'t specified, then a recent Amazon EKS-optimized Amazon Linux AMI (EKS_AL2) is used. If a new image type is specified in an update, but neither an imageId nor a imageIdOverride parameter is specified, then the latest Amazon EKS optimized AMI for that image type that Batch supports is used.

EKS_AL2

Amazon Linux 2: Default for all non-GPU instance families.

EKS_AL2_NVIDIA

Amazon Linux 2 (accelerated): Default for all GPU instance families (for example, P4 and G4) and can be used for all non Amazon Web Services Graviton-based instance types.

', ], ], 'Integer' => [ 'base' => NULL, 'refs' => [ 'ArrayJobStatusSummary$value' => NULL, 'ArrayProperties$size' => '

The size of the array job.

', 'ArrayPropertiesDetail$size' => '

The size of the array job. This parameter is returned for parent array jobs.

', 'ArrayPropertiesDetail$index' => '

The job index within the array that\'s associated with this job. This parameter is returned for array job children.

', 'ArrayPropertiesSummary$size' => '

The size of the array job. This parameter is returned for parent array jobs.

', 'ArrayPropertiesSummary$index' => '

The job index within the array that\'s associated with this job. This parameter is returned for children of array jobs.

', 'AttemptContainerDetail$exitCode' => '

The exit code for the job attempt. A non-zero exit code is considered failed.

', 'ComputeEnvironmentDetail$unmanagedvCpus' => '

The maximum number of VCPUs expected to be used for an unmanaged compute environment.

', 'ComputeEnvironmentOrder$order' => '

The order of the compute environment. Compute environments are tried in ascending order. For example, if two compute environments are associated with a job queue, the compute environment with a lower order integer value is tried for job placement first.

', 'ComputeResource$minvCpus' => '

The minimum number of vCPUs that a compute environment should maintain (even if the compute environment is DISABLED).

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResource$maxvCpus' => '

The maximum number of vCPUs that a compute environment can support.

With BEST_FIT_PROGRESSIVE,SPOT_CAPACITY_OPTIMIZED and SPOT_PRICE_CAPACITY_OPTIMIZED (recommended) strategies using On-Demand or Spot Instances, and the BEST_FIT strategy using Spot Instances, Batch might need to exceed maxvCpus to meet your capacity requirements. In this event, Batch never exceeds maxvCpus by more than a single instance.

', 'ComputeResource$desiredvCpus' => '

The desired number of vCPUS in the compute environment. Batch modifies this value between the minimum and maximum values based on job queue demand.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResource$bidPercentage' => '

The maximum percentage that a Spot Instance price can be when compared with the On-Demand price for that instance type before instances are launched. For example, if your maximum percentage is 20%, then the Spot price must be less than 20% of the current On-Demand price for that Amazon EC2 instance. You always pay the lowest (market) price and never more than your maximum percentage. If you leave this field empty, the default value is 100% of the On-Demand price. For most use cases, we recommend leaving this field empty.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResourceUpdate$minvCpus' => '

The minimum number of vCPUs that an environment should maintain (even if the compute environment is DISABLED).

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResourceUpdate$maxvCpus' => '

The maximum number of Amazon EC2 vCPUs that an environment can reach.

With BEST_FIT_PROGRESSIVE,SPOT_CAPACITY_OPTIMIZED and SPOT_PRICE_CAPACITY_OPTIMIZED (recommended) strategies using On-Demand or Spot Instances, and the BEST_FIT strategy using Spot Instances, Batch might need to exceed maxvCpus to meet your capacity requirements. In this event, Batch never exceeds maxvCpus by more than a single instance.

', 'ComputeResourceUpdate$desiredvCpus' => '

The desired number of vCPUS in the compute environment. Batch modifies this value between the minimum and maximum values based on job queue demand.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

Batch doesn\'t support changing the desired number of vCPUs of an existing compute environment. Don\'t specify this parameter for compute environments using Amazon EKS clusters.

When you update the desiredvCpus setting, the value must be between the minvCpus and maxvCpus values.

Additionally, the updated desiredvCpus value must be greater than or equal to the current desiredvCpus value. For more information, see Troubleshooting Batch in the Batch User Guide.

', 'ComputeResourceUpdate$bidPercentage' => '

The maximum percentage that a Spot Instance price can be when compared with the On-Demand price for that instance type before instances are launched. For example, if your maximum percentage is 20%, the Spot price must be less than 20% of the current On-Demand price for that Amazon EC2 instance. You always pay the lowest (market) price and never more than your maximum percentage. For most use cases, we recommend leaving this field empty.

When updating a compute environment, changing the bid percentage requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ContainerDetail$vcpus' => '

The number of vCPUs reserved for the container. For jobs that run on EC2 resources, you can specify the vCPU requirement for the job using resourceRequirements, but you can\'t specify the vCPU requirements in both the vcpus and resourceRequirements object. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares. You must specify at least one vCPU. This is required but can be specified in several places. It must be specified for each node at least once.

This parameter isn\'t applicable to jobs that run on Fargate resources. For jobs that run on Fargate resources, you must specify the vCPU requirement for the job using resourceRequirements.

', 'ContainerDetail$memory' => '

For jobs running on EC2 resources that didn\'t specify memory requirements using resourceRequirements, the number of MiB of memory reserved for the job. For other jobs, including all run on Fargate resources, see resourceRequirements.

', 'ContainerDetail$exitCode' => '

The exit code to return upon completion.

', 'ContainerOverrides$vcpus' => '

This parameter is deprecated, use resourceRequirements to override the vcpus parameter that\'s set in the job definition. It\'s not supported for jobs running on Fargate resources. For jobs that run on EC2 resources, it overrides the vcpus parameter set in the job definition, but doesn\'t override any vCPU requirement specified in the resourceRequirements structure in the job definition. To override vCPU requirements that are specified in the resourceRequirements structure in the job definition, resourceRequirements must be specified in the SubmitJob request, with type set to VCPU and value set to the new value. For more information, see Can\'t override job definition resource requirements in the Batch User Guide.

', 'ContainerOverrides$memory' => '

This parameter is deprecated, use resourceRequirements to override the memory requirements specified in the job definition. It\'s not supported for jobs running on Fargate resources. For jobs that run on EC2 resources, it overrides the memory parameter set in the job definition, but doesn\'t override any memory requirement that\'s specified in the resourceRequirements structure in the job definition. To override memory requirements that are specified in the resourceRequirements structure in the job definition, resourceRequirements must be specified in the SubmitJob request, with type set to MEMORY and value set to the new value. For more information, see Can\'t override job definition resource requirements in the Batch User Guide.

', 'ContainerProperties$vcpus' => '

This parameter is deprecated, use resourceRequirements to specify the vCPU requirements for the job definition. It\'s not supported for jobs running on Fargate resources. For jobs running on EC2 resources, it specifies the number of vCPUs reserved for the job.

Each vCPU is equivalent to 1,024 CPU shares. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. The number of vCPUs must be specified but can be specified in several places. You must specify it at least once for each node.

', 'ContainerProperties$memory' => '

This parameter is deprecated, use resourceRequirements to specify the memory requirements for the job definition. It\'s not supported for jobs running on Fargate resources. For jobs that run on EC2 resources, it specifies the memory hard limit (in MiB) for a container. If your container attempts to exceed the specified number, it\'s terminated. You must specify at least 4 MiB of memory for a job using this parameter. The memory hard limit can be specified in several places. It must be specified for each node at least once.

', 'ContainerSummary$exitCode' => '

The exit code to return upon completion.

', 'CreateComputeEnvironmentRequest$unmanagedvCpus' => '

The maximum number of vCPUs for an unmanaged compute environment. This parameter is only used for fair share scheduling to reserve vCPU capacity for new share identifiers. If this parameter isn\'t provided for a fair share job queue, no vCPU capacity is reserved.

This parameter is only supported when the type parameter is set to UNMANAGED.

', 'CreateJobQueueRequest$priority' => '

The priority of the job queue. Job queues with a higher priority (or a higher integer value for the priority parameter) are evaluated first when associated with the same compute environment. Priority is determined in descending order. For example, a job queue with a priority value of 10 is given scheduling preference over a job queue with a priority value of 1. All of the compute environments must be either EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT); EC2 and Fargate compute environments can\'t be mixed.

', 'DescribeComputeEnvironmentsRequest$maxResults' => '

The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn\'t used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

', 'DescribeJobDefinitionsRequest$maxResults' => '

The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page and a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn\'t used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

', 'DescribeJobQueuesRequest$maxResults' => '

The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page and a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn\'t used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

', 'EFSVolumeConfiguration$transitEncryptionPort' => '

The port to use when sending encrypted data between the Amazon ECS host and the Amazon EFS server. If you don\'t specify a transit encryption port, it uses the port selection strategy that the Amazon EFS mount helper uses. The value must be between 0 and 65,535. For more information, see EFS mount helper in the Amazon Elastic File System User Guide.

', 'EksAttemptContainerDetail$exitCode' => '

The exit code for the job attempt. A non-zero exit code is considered failed.

', 'EksContainerDetail$exitCode' => '

The exit code for the job attempt. A non-zero exit code is considered failed.

', 'EphemeralStorage$sizeInGiB' => '

The total amount, in GiB, of ephemeral storage to set for the task. The minimum supported value is 21 GiB and the maximum supported value is 200 GiB.

', 'FairsharePolicy$shareDecaySeconds' => '

The amount of time (in seconds) to use to calculate a fair share percentage for each fair share identifier in use. A value of zero (0) indicates that only current usage is measured. The decay allows for more recently run jobs to have more weight than jobs that ran earlier. The maximum supported value is 604800 (1 week).

', 'FairsharePolicy$computeReservation' => '

A value used to reserve some of the available maximum vCPU for fair share identifiers that aren\'t already used.

The reserved ratio is (computeReservation/100)^ActiveFairShares where ActiveFairShares is the number of active fair share identifiers.

For example, a computeReservation value of 50 indicates that Batch reserves 50% of the maximum available vCPU if there\'s only one fair share identifier. It reserves 25% if there are two fair share identifiers. It reserves 12.5% if there are three fair share identifiers. A computeReservation value of 25 indicates that Batch should reserve 25% of the maximum available vCPU if there\'s only one fair share identifier, 6.25% if there are two fair share identifiers, and 1.56% if there are three fair share identifiers.

The minimum value is 0 and the maximum value is 99.

', 'JobDefinition$revision' => '

The revision of the job definition.

', 'JobDefinition$schedulingPriority' => '

The scheduling priority of the job definition. This only affects jobs in job queues with a fair share policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority.

', 'JobDetail$schedulingPriority' => '

The scheduling policy of the job definition. This only affects jobs in job queues with a fair share policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority.

', 'JobQueueDetail$priority' => '

The priority of the job queue. Job queues with a higher priority (or a higher integer value for the priority parameter) are evaluated first when associated with the same compute environment. Priority is determined in descending order. For example, a job queue with a priority value of 10 is given scheduling preference over a job queue with a priority value of 1. All of the compute environments must be either EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT). EC2 and Fargate compute environments can\'t be mixed.

', 'JobTimeout$attemptDurationSeconds' => '

The job timeout time (in seconds) that\'s measured from the job attempt\'s startedAt timestamp. After this time passes, Batch terminates your jobs if they aren\'t finished. The minimum value for the timeout is 60 seconds.

For array jobs, the timeout applies to the child jobs, not to the parent array job.

For multi-node parallel (MNP) jobs, the timeout applies to the whole job, not to the individual nodes.

', 'LinuxParameters$sharedMemorySize' => '

The value for the size (in MiB) of the /dev/shm volume. This parameter maps to the --shm-size option to docker run.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t provide it for these jobs.

', 'LinuxParameters$maxSwap' => '

The total amount of swap memory (in MiB) a container can use. This parameter is translated to the --memory-swap option to docker run where the value is the sum of the container memory plus the maxSwap value. For more information, see --memory-swap details in the Docker documentation.

If a maxSwap value of 0 is specified, the container doesn\'t use swap. Accepted values are 0 or any positive integer. If the maxSwap parameter is omitted, the container doesn\'t use the swap configuration for the container instance that it\'s running on. A maxSwap value must be set for the swappiness parameter to be used.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t provide it for these jobs.

', 'LinuxParameters$swappiness' => '

You can use this parameter to tune a container\'s memory swappiness behavior. A swappiness value of 0 causes swapping to not occur unless absolutely necessary. A swappiness value of 100 causes pages to be swapped aggressively. Valid values are whole numbers between 0 and 100. If the swappiness parameter isn\'t specified, a default value of 60 is used. If a value isn\'t specified for maxSwap, then this parameter is ignored. If maxSwap is set to 0, the container doesn\'t use swap. This parameter maps to the --memory-swappiness option to docker run.

Consider the following when you use a per-container swap configuration.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t provide it for these jobs.

', 'ListJobsRequest$maxResults' => '

The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page and a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn\'t used, then ListJobs returns up to 100 results and a nextToken value if applicable.

', 'ListSchedulingPoliciesRequest$maxResults' => '

The maximum number of results that\'s returned by ListSchedulingPolicies in paginated output. When this parameter is used, ListSchedulingPolicies only returns maxResults results in a single page and a nextToken response element. You can see the remaining results of the initial request by sending another ListSchedulingPolicies request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn\'t used, ListSchedulingPolicies returns up to 100 results and a nextToken value if applicable.

', 'NodeDetails$nodeIndex' => '

The node index for the node. Node index numbering starts at zero. This index is also available on the node with the AWS_BATCH_JOB_NODE_INDEX environment variable.

', 'NodeOverrides$numNodes' => '

The number of nodes to use with a multi-node parallel job. This value overrides the number of nodes that are specified in the job definition. To use this override, you must meet the following conditions:

', 'NodeProperties$numNodes' => '

The number of nodes that are associated with a multi-node parallel job.

', 'NodeProperties$mainNode' => '

Specifies the node index for the main node of a multi-node parallel job. This node index value must be fewer than the number of nodes.

', 'NodePropertiesSummary$numNodes' => '

The number of nodes that are associated with a multi-node parallel job.

', 'NodePropertiesSummary$nodeIndex' => '

The node index for the node. Node index numbering begins at zero. This index is also available on the node with the AWS_BATCH_JOB_NODE_INDEX environment variable.

', 'RegisterJobDefinitionRequest$schedulingPriority' => '

The scheduling priority for jobs that are submitted with this job definition. This only affects jobs in job queues with a fair share policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority.

The minimum supported value is 0 and the maximum supported value is 9999.

', 'RegisterJobDefinitionResponse$revision' => '

The revision of the job definition.

', 'RetryStrategy$attempts' => '

The number of times to move a job to the RUNNABLE status. You can specify between 1 and 10 attempts. If the value of attempts is greater than one, the job is retried on failure the same number of attempts as the value.

', 'SubmitJobRequest$schedulingPriorityOverride' => '

The scheduling priority for the job. This only affects jobs in job queues with a fair share policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority. This overrides any scheduling priority in the job definition and works only within a single share identifier.

The minimum supported value is 0 and the maximum supported value is 9999.

', 'Tmpfs$size' => '

The size (in MiB) of the tmpfs volume.

', 'Ulimit$hardLimit' => '

The hard limit for the ulimit type.

', 'Ulimit$softLimit' => '

The soft limit for the ulimit type.

', 'UpdateComputeEnvironmentRequest$unmanagedvCpus' => '

The maximum number of vCPUs expected to be used for an unmanaged compute environment. Don\'t specify this parameter for a managed compute environment. This parameter is only used for fair share scheduling to reserve vCPU capacity for new share identifiers. If this parameter isn\'t provided for a fair share job queue, no vCPU capacity is reserved.

', 'UpdateJobQueueRequest$priority' => '

The priority of the job queue. Job queues with a higher priority (or a higher integer value for the priority parameter) are evaluated first when associated with the same compute environment. Priority is determined in descending order. For example, a job queue with a priority value of 10 is given scheduling preference over a job queue with a priority value of 1. All of the compute environments must be either EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT). EC2 and Fargate compute environments can\'t be mixed.

', ], ], 'JQState' => [ 'base' => NULL, 'refs' => [ 'CreateJobQueueRequest$state' => '

The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs. If the job queue state is DISABLED, new jobs can\'t be added to the queue, but jobs already in the queue can finish.

', 'JobQueueDetail$state' => '

Describes the ability of the queue to accept new jobs. If the job queue state is ENABLED, it can accept jobs. If the job queue state is DISABLED, new jobs can\'t be added to the queue, but jobs already in the queue can finish.

', 'UpdateJobQueueRequest$state' => '

Describes the queue\'s ability to accept new jobs. If the job queue state is ENABLED, it can accept jobs. If the job queue state is DISABLED, new jobs can\'t be added to the queue, but jobs already in the queue can finish.

', ], ], 'JQStatus' => [ 'base' => NULL, 'refs' => [ 'JobQueueDetail$status' => '

The status of the job queue (for example, CREATING or VALID).

', ], ], 'JobDefinition' => [ 'base' => '

An object that represents an Batch job definition.

', 'refs' => [ 'JobDefinitionList$member' => NULL, ], ], 'JobDefinitionList' => [ 'base' => NULL, 'refs' => [ 'DescribeJobDefinitionsResponse$jobDefinitions' => '

The list of job definitions.

', ], ], 'JobDefinitionType' => [ 'base' => NULL, 'refs' => [ 'RegisterJobDefinitionRequest$type' => '

The type of job definition. For more information about multi-node parallel jobs, see Creating a multi-node parallel job definition in the Batch User Guide.

If the job is run on Fargate resources, then multinode isn\'t supported.

', ], ], 'JobDependency' => [ 'base' => '

An object that represents an Batch job dependency.

', 'refs' => [ 'JobDependencyList$member' => NULL, ], ], 'JobDependencyList' => [ 'base' => NULL, 'refs' => [ 'JobDetail$dependsOn' => '

A list of job IDs that this job depends on.

', 'SubmitJobRequest$dependsOn' => '

A list of dependencies for the job. A job can depend upon a maximum of 20 jobs. You can specify a SEQUENTIAL type dependency without specifying a job ID for array jobs so that each child array job completes sequentially, starting at index 0. You can also specify an N_TO_N type dependency with a job ID for array jobs. In that case, each index child of this job must wait for the corresponding index child of each dependency to complete before it can begin.

', ], ], 'JobDetail' => [ 'base' => '

An object that represents an Batch job.

', 'refs' => [ 'JobDetailList$member' => NULL, ], ], 'JobDetailList' => [ 'base' => NULL, 'refs' => [ 'DescribeJobsResponse$jobs' => '

The list of jobs.

', ], ], 'JobExecutionTimeoutMinutes' => [ 'base' => NULL, 'refs' => [ 'UpdatePolicy$jobExecutionTimeoutMinutes' => '

Specifies the job timeout (in minutes) when the compute environment infrastructure is updated. The default value is 30.

', ], ], 'JobQueueDetail' => [ 'base' => '

An object that represents the details for an Batch job queue.

', 'refs' => [ 'JobQueueDetailList$member' => NULL, ], ], 'JobQueueDetailList' => [ 'base' => NULL, 'refs' => [ 'DescribeJobQueuesResponse$jobQueues' => '

The list of job queues.

', ], ], 'JobStatus' => [ 'base' => NULL, 'refs' => [ 'JobDetail$status' => '

The current status for the job.

If your jobs don\'t progress to STARTING, see Jobs stuck in RUNNABLE status in the troubleshooting section of the Batch User Guide.

', 'JobSummary$status' => '

The current status for the job.

', 'ListJobsRequest$jobStatus' => '

The job status used to filter jobs in the specified queue. If the filters parameter is specified, the jobStatus parameter is ignored and jobs with any status are returned. If you don\'t specify a status, only RUNNING jobs are returned.

', ], ], 'JobSummary' => [ 'base' => '

An object that represents summary details of a job.

', 'refs' => [ 'JobSummaryList$member' => NULL, ], ], 'JobSummaryList' => [ 'base' => NULL, 'refs' => [ 'ListJobsResponse$jobSummaryList' => '

A list of job summaries that match the request.

', ], ], 'JobTimeout' => [ 'base' => '

An object that represents a job timeout configuration.

', 'refs' => [ 'JobDefinition$timeout' => '

The timeout time for jobs that are submitted with this job definition. After the amount of time you specify passes, Batch terminates your jobs if they aren\'t finished.

', 'JobDetail$timeout' => '

The timeout configuration for the job.

', 'RegisterJobDefinitionRequest$timeout' => '

The timeout configuration for jobs that are submitted with this job definition, after which Batch terminates your jobs if they have not finished. If a job is terminated due to a timeout, it isn\'t retried. The minimum value for the timeout is 60 seconds. Any timeout configuration that\'s specified during a SubmitJob operation overrides the timeout configuration defined here. For more information, see Job Timeouts in the Batch User Guide.

', 'SubmitJobRequest$timeout' => '

The timeout configuration for this SubmitJob operation. You can specify a timeout duration after which Batch terminates your jobs if they haven\'t finished. If a job is terminated due to a timeout, it isn\'t retried. The minimum value for the timeout is 60 seconds. This configuration overrides any timeout configuration specified in the job definition. For array jobs, child jobs have the same timeout configuration as the parent job. For more information, see Job Timeouts in the Amazon Elastic Container Service Developer Guide.

', ], ], 'KeyValuePair' => [ 'base' => '

A key-value pair object.

', 'refs' => [ 'EnvironmentVariables$member' => NULL, ], ], 'KeyValuesPair' => [ 'base' => '

A filter name and value pair that\'s used to return a more specific list of results from a ListJobs API operation.

', 'refs' => [ 'ListJobsFilterList$member' => NULL, ], ], 'KubernetesVersion' => [ 'base' => NULL, 'refs' => [ 'Ec2Configuration$imageKubernetesVersion' => '

The Kubernetes version for the compute environment. If you don\'t specify a value, the latest version that Batch supports is used.

', ], ], 'LaunchTemplateSpecification' => [ 'base' => '

An object that represents a launch template that\'s associated with a compute resource. You must specify either the launch template ID or launch template name in the request, but not both.

If security groups are specified using both the securityGroupIds parameter of CreateComputeEnvironment and the launch template, the values in the securityGroupIds parameter of CreateComputeEnvironment will be used.

This object isn\'t applicable to jobs that are running on Fargate resources.

', 'refs' => [ 'ComputeResource$launchTemplate' => '

The launch template to use for your compute resources. Any other compute resource parameters that you specify in a CreateComputeEnvironment API operation override the same parameters in the launch template. You must specify either the launch template ID or launch template name in the request, but not both. For more information, see Launch template support in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResourceUpdate$launchTemplate' => '

The updated launch template to use for your compute resources. You must specify either the launch template ID or launch template name in the request, but not both. For more information, see Launch template support in the Batch User Guide. To remove the custom launch template and use the default launch template, set launchTemplateId or launchTemplateName member of the launch template specification to an empty string. Removing the launch template from a compute environment will not remove the AMI specified in the launch template. In order to update the AMI specified in a launch template, the updateToLatestImageVersion parameter must be set to true.

When updating a compute environment, changing the launch template requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', ], ], 'LinuxParameters' => [ 'base' => '

Linux-specific modifications that are applied to the container, such as details for device mappings.

', 'refs' => [ 'ContainerDetail$linuxParameters' => '

Linux-specific modifications that are applied to the container, such as details for device mappings.

', 'ContainerProperties$linuxParameters' => '

Linux-specific modifications that are applied to the container, such as details for device mappings.

', ], ], 'ListJobsFilterList' => [ 'base' => NULL, 'refs' => [ 'ListJobsRequest$filters' => '

The filter to apply to the query. Only one filter can be used at a time. When the filter is used, jobStatus is ignored. The filter doesn\'t apply to child jobs in an array or multi-node parallel (MNP) jobs. The results are sorted by the createdAt field, with the most recent jobs being first.

JOB_NAME

The value of the filter is a case-insensitive match for the job name. If the value ends with an asterisk (*), the filter matches any job name that begins with the string before the \'*\'. This corresponds to the jobName value. For example, test1 matches both Test1 and test1, and test1* matches both test1 and Test10. When the JOB_NAME filter is used, the results are grouped by the job name and version.

JOB_DEFINITION

The value for the filter is the name or Amazon Resource Name (ARN) of the job definition. This corresponds to the jobDefinition value. The value is case sensitive. When the value for the filter is the job definition name, the results include all the jobs that used any revision of that job definition name. If the value ends with an asterisk (*), the filter matches any job definition name that begins with the string before the \'*\'. For example, jd1 matches only jd1, and jd1* matches both jd1 and jd1A. The version of the job definition that\'s used doesn\'t affect the sort order. When the JOB_DEFINITION filter is used and the ARN is used (which is in the form arn:${Partition}:batch:${Region}:${Account}:job-definition/${JobDefinitionName}:${Revision}), the results include jobs that used the specified revision of the job definition. Asterisk (*) isn\'t supported when the ARN is used.

BEFORE_CREATED_AT

The value for the filter is the time that\'s before the job was created. This corresponds to the createdAt value. The value is a string representation of the number of milliseconds since 00:00:00 UTC (midnight) on January 1, 1970.

AFTER_CREATED_AT

The value for the filter is the time that\'s after the job was created. This corresponds to the createdAt value. The value is a string representation of the number of milliseconds since 00:00:00 UTC (midnight) on January 1, 1970.

', ], ], 'ListJobsRequest' => [ 'base' => '

Contains the parameters for ListJobs.

', 'refs' => [], ], 'ListJobsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListSchedulingPoliciesRequest' => [ 'base' => '

Contains the parameters for ListSchedulingPolicies.

', 'refs' => [], ], 'ListSchedulingPoliciesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListTagsForResourceRequest' => [ 'base' => '

Contains the parameters for ListTagsForResource.

', 'refs' => [], ], 'ListTagsForResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'LogConfiguration' => [ 'base' => '

Log configuration options to send to a custom log driver for the container.

', 'refs' => [ 'ContainerDetail$logConfiguration' => '

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run. By default, containers use the same logging driver that the Docker daemon uses. However, the container might use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance. Or, alternatively, it must be configured on a different log server for remote logging options. For more information on the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

Batch currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type). Additional log drivers might be available in future releases of the Amazon ECS container agent.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version | grep "Server API version"

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS container agent configuration in the Amazon Elastic Container Service Developer Guide.

', 'ContainerProperties$logConfiguration' => '

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run. By default, containers use the same logging driver that the Docker daemon uses. However the container might use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance (or on a different log server for remote logging options). For more information on the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

Batch currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type).

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version | grep "Server API version"

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS container agent configuration in the Amazon Elastic Container Service Developer Guide.

', ], ], 'LogConfigurationOptionsMap' => [ 'base' => NULL, 'refs' => [ 'LogConfiguration$options' => '

The configuration options to send to the log driver. This parameter requires version 1.19 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version | grep "Server API version"

', ], ], 'LogDriver' => [ 'base' => NULL, 'refs' => [ 'LogConfiguration$logDriver' => '

The log driver to use for the container. The valid values that are listed for this parameter are log drivers that the Amazon ECS container agent can communicate with by default.

The supported log drivers are awslogs, fluentd, gelf, json-file, journald, logentries, syslog, and splunk.

Jobs that are running on Fargate resources are restricted to the awslogs and splunk log drivers.

awslogs

Specifies the Amazon CloudWatch Logs logging driver. For more information, see Using the awslogs log driver in the Batch User Guide and Amazon CloudWatch Logs logging driver in the Docker documentation.

fluentd

Specifies the Fluentd logging driver. For more information including usage and options, see Fluentd logging driver in the Docker documentation.

gelf

Specifies the Graylog Extended Format (GELF) logging driver. For more information including usage and options, see Graylog Extended Format logging driver in the Docker documentation.

journald

Specifies the journald logging driver. For more information including usage and options, see Journald logging driver in the Docker documentation.

json-file

Specifies the JSON file logging driver. For more information including usage and options, see JSON File logging driver in the Docker documentation.

splunk

Specifies the Splunk logging driver. For more information including usage and options, see Splunk logging driver in the Docker documentation.

syslog

Specifies the syslog logging driver. For more information including usage and options, see Syslog logging driver in the Docker documentation.

If you have a custom driver that\'s not listed earlier that you want to work with the Amazon ECS container agent, you can fork the Amazon ECS container agent project that\'s available on GitHub and customize it to work with that driver. We encourage you to submit pull requests for changes that you want to have included. However, Amazon Web Services doesn\'t currently support running modified copies of this software.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version | grep "Server API version"

', ], ], 'Long' => [ 'base' => NULL, 'refs' => [ 'AttemptDetail$startedAt' => '

The Unix timestamp (in milliseconds) for when the attempt was started (when the attempt transitioned from the STARTING state to the RUNNING state).

', 'AttemptDetail$stoppedAt' => '

The Unix timestamp (in milliseconds) for when the attempt was stopped (when the attempt transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED).

', 'EksAttemptDetail$startedAt' => '

The Unix timestamp (in milliseconds) for when the attempt was started (when the attempt transitioned from the STARTING state to the RUNNING state).

', 'EksAttemptDetail$stoppedAt' => '

The Unix timestamp (in milliseconds) for when the attempt was stopped. This happens when the attempt transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED.

', 'EksContainerSecurityContext$runAsUser' => '

When this parameter is specified, the container is run as the specified user ID (uid). If this parameter isn\'t specified, the default is the user that\'s specified in the image metadata. This parameter maps to RunAsUser and MustRanAs policy in the Users and groups pod security policies in the Kubernetes documentation.

', 'EksContainerSecurityContext$runAsGroup' => '

When this parameter is specified, the container is run as the specified group ID (gid). If this parameter isn\'t specified, the default is the group that\'s specified in the image metadata. This parameter maps to RunAsGroup and MustRunAs policy in the Users and groups pod security policies in the Kubernetes documentation.

', 'JobDetail$createdAt' => '

The Unix timestamp (in milliseconds) for when the job was created. For non-array jobs and parent array jobs, this is when the job entered the SUBMITTED state. This is specifically at the time SubmitJob was called. For array child jobs, this is when the child job was spawned by its parent and entered the PENDING state.

', 'JobDetail$startedAt' => '

The Unix timestamp (in milliseconds) for when the job was started. More specifically, it\'s when the job transitioned from the STARTING state to the RUNNING state.

', 'JobDetail$stoppedAt' => '

The Unix timestamp (in milliseconds) for when the job was stopped. More specifically, it\'s when the job transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED.

', 'JobSummary$createdAt' => '

The Unix timestamp (in milliseconds) for when the job was created. For non-array jobs and parent array jobs, this is when the job entered the SUBMITTED state (at the time SubmitJob was called). For array child jobs, this is when the child job was spawned by its parent and entered the PENDING state.

', 'JobSummary$startedAt' => '

The Unix timestamp for when the job was started. More specifically, it\'s when the job transitioned from the STARTING state to the RUNNING state.

', 'JobSummary$stoppedAt' => '

The Unix timestamp for when the job was stopped. More specifically, it\'s when the job transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED.

', ], ], 'MountPoint' => [ 'base' => '

Details for a Docker volume mount point that\'s used in a job\'s container properties. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

', 'refs' => [ 'MountPoints$member' => NULL, ], ], 'MountPoints' => [ 'base' => NULL, 'refs' => [ 'ContainerDetail$mountPoints' => '

The mount points for data volumes in your container.

', 'ContainerProperties$mountPoints' => '

The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

', ], ], 'NetworkConfiguration' => [ 'base' => '

The network configuration for jobs that are running on Fargate resources. Jobs that are running on EC2 resources must not specify this parameter.

', 'refs' => [ 'ContainerDetail$networkConfiguration' => '

The network configuration for jobs that are running on Fargate resources. Jobs that are running on EC2 resources must not specify this parameter.

', 'ContainerProperties$networkConfiguration' => '

The network configuration for jobs that are running on Fargate resources. Jobs that are running on EC2 resources must not specify this parameter.

', ], ], 'NetworkInterface' => [ 'base' => '

An object that represents the elastic network interface for a multi-node parallel job node.

', 'refs' => [ 'NetworkInterfaceList$member' => NULL, ], ], 'NetworkInterfaceList' => [ 'base' => NULL, 'refs' => [ 'AttemptContainerDetail$networkInterfaces' => '

The network interfaces that are associated with the job attempt.

', 'ContainerDetail$networkInterfaces' => '

The network interfaces that are associated with the job.

', ], ], 'NodeDetails' => [ 'base' => '

An object that represents the details of a multi-node parallel job node.

', 'refs' => [ 'JobDetail$nodeDetails' => '

An object that represents the details of a node that\'s associated with a multi-node parallel job.

', ], ], 'NodeOverrides' => [ 'base' => '

An object that represents any node overrides to a job definition that\'s used in a SubmitJob API operation.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t provide it for these jobs. Rather, use containerOverrides instead.

', 'refs' => [ 'SubmitJobRequest$nodeOverrides' => '

A list of node overrides in JSON format that specify the node range to target and the container overrides for that node range.

This parameter isn\'t applicable to jobs that are running on Fargate resources; use containerOverrides instead.

', ], ], 'NodeProperties' => [ 'base' => '

An object that represents the node properties of a multi-node parallel job.

Node properties can\'t be specified for Amazon EKS based job definitions.

', 'refs' => [ 'JobDefinition$nodeProperties' => '

An object with various properties that are specific to multi-node parallel jobs. Valid values are containerProperties, eksProperties, and nodeProperties. Only one can be specified.

If the job runs on Fargate resources, don\'t specify nodeProperties. Use containerProperties instead.

', 'JobDetail$nodeProperties' => '

An object that represents the node properties of a multi-node parallel job.

This isn\'t applicable to jobs that are running on Fargate resources.

', 'RegisterJobDefinitionRequest$nodeProperties' => '

An object with various properties specific to multi-node parallel jobs. If you specify node properties for a job, it becomes a multi-node parallel job. For more information, see Multi-node Parallel Jobs in the Batch User Guide. If the job definition\'s type parameter is container, then you must specify either containerProperties or nodeProperties.

If the job runs on Fargate resources, then you must not specify nodeProperties; use containerProperties instead.

If the job runs on Amazon EKS resources, then you must not specify nodeProperties.

', ], ], 'NodePropertiesSummary' => [ 'base' => '

An object that represents the properties of a node that\'s associated with a multi-node parallel job.

', 'refs' => [ 'JobSummary$nodeProperties' => '

The node properties for a single node in a job summary list.

This isn\'t applicable to jobs that are running on Fargate resources.

', ], ], 'NodePropertyOverride' => [ 'base' => '

The object that represents any node overrides to a job definition that\'s used in a SubmitJob API operation.

', 'refs' => [ 'NodePropertyOverrides$member' => NULL, ], ], 'NodePropertyOverrides' => [ 'base' => NULL, 'refs' => [ 'NodeOverrides$nodePropertyOverrides' => '

The node property overrides for the job.

', ], ], 'NodeRangeProperties' => [ 'base' => NULL, 'refs' => [ 'NodeProperties$nodeRangeProperties' => '

A list of node ranges and their properties that are associated with a multi-node parallel job.

', ], ], 'NodeRangeProperty' => [ 'base' => '

An object that represents the properties of the node range for a multi-node parallel job.

', 'refs' => [ 'NodeRangeProperties$member' => NULL, ], ], 'OrchestrationType' => [ 'base' => NULL, 'refs' => [ 'ComputeEnvironmentDetail$containerOrchestrationType' => '

The orchestration type of the compute environment. The valid values are ECS (default) or EKS.

', 'JobDefinition$containerOrchestrationType' => '

The orchestration type of the compute environment. The valid values are ECS (default) or EKS.

', ], ], 'ParametersMap' => [ 'base' => NULL, 'refs' => [ 'JobDefinition$parameters' => '

Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition. For more information about specifying parameters, see Job definition parameters in the Batch User Guide.

', 'JobDetail$parameters' => '

Additional parameters that are passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.

', 'RegisterJobDefinitionRequest$parameters' => '

Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

', 'SubmitJobRequest$parameters' => '

Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

', ], ], 'PlatformCapability' => [ 'base' => NULL, 'refs' => [ 'PlatformCapabilityList$member' => NULL, ], ], 'PlatformCapabilityList' => [ 'base' => NULL, 'refs' => [ 'JobDefinition$platformCapabilities' => '

The platform capabilities required by the job definition. If no value is specified, it defaults to EC2. Jobs run on Fargate resources specify FARGATE.

', 'JobDetail$platformCapabilities' => '

The platform capabilities required by the job definition. If no value is specified, it defaults to EC2. Jobs run on Fargate resources specify FARGATE.

', 'RegisterJobDefinitionRequest$platformCapabilities' => '

The platform capabilities required by the job definition. If no value is specified, it defaults to EC2. To run the job on Fargate resources, specify FARGATE.

If the job runs on Amazon EKS resources, then you must not specify platformCapabilities.

', ], ], 'Quantity' => [ 'base' => NULL, 'refs' => [ 'EksEmptyDir$sizeLimit' => '

The maximum size of the volume. By default, there\'s no maximum size defined.

', 'EksLimits$value' => NULL, 'EksRequests$value' => NULL, ], ], 'RegisterJobDefinitionRequest' => [ 'base' => '

Contains the parameters for RegisterJobDefinition.

', 'refs' => [], ], 'RegisterJobDefinitionResponse' => [ 'base' => NULL, 'refs' => [], ], 'RepositoryCredentials' => [ 'base' => '

The repository credentials for private registry authentication.

', 'refs' => [ 'ContainerDetail$repositoryCredentials' => '

The private repository authentication credentials to use.

', 'ContainerProperties$repositoryCredentials' => '

The private repository authentication credentials to use.

', ], ], 'ResourceRequirement' => [ 'base' => '

The type and amount of a resource to assign to a container. The supported resources include GPU, MEMORY, and VCPU.

', 'refs' => [ 'ResourceRequirements$member' => NULL, ], ], 'ResourceRequirements' => [ 'base' => NULL, 'refs' => [ 'ContainerDetail$resourceRequirements' => '

The type and amount of resources to assign to a container. The supported resources include GPU, MEMORY, and VCPU.

', 'ContainerOverrides$resourceRequirements' => '

The type and amount of resources to assign to a container. This overrides the settings in the job definition. The supported resources include GPU, MEMORY, and VCPU.

', 'ContainerProperties$resourceRequirements' => '

The type and amount of resources to assign to a container. The supported resources include GPU, MEMORY, and VCPU.

', ], ], 'ResourceType' => [ 'base' => NULL, 'refs' => [ 'ResourceRequirement$type' => '

The type of resource to assign to a container. The supported resources include GPU, MEMORY, and VCPU.

', ], ], 'RetryAction' => [ 'base' => NULL, 'refs' => [ 'EvaluateOnExit$action' => '

Specifies the action to take if all of the specified conditions (onStatusReason, onReason, and onExitCode) are met. The values aren\'t case sensitive.

', ], ], 'RetryStrategy' => [ 'base' => '

The retry strategy that\'s associated with a job. For more information, see Automated job retries in the Batch User Guide.

', 'refs' => [ 'JobDefinition$retryStrategy' => '

The retry strategy to use for failed jobs that are submitted with this job definition.

', 'JobDetail$retryStrategy' => '

The retry strategy to use for this job if an attempt fails.

', 'RegisterJobDefinitionRequest$retryStrategy' => '

The retry strategy to use for failed jobs that are submitted with this job definition. Any retry strategy that\'s specified during a SubmitJob operation overrides the retry strategy defined here. If a job is terminated due to a timeout, it isn\'t retried.

', 'SubmitJobRequest$retryStrategy' => '

The retry strategy to use for failed jobs from this SubmitJob operation. When a retry strategy is specified here, it overrides the retry strategy defined in the job definition.

', ], ], 'RuntimePlatform' => [ 'base' => '

An object that represents the compute environment architecture for Batch jobs on Fargate.

', 'refs' => [ 'ContainerDetail$runtimePlatform' => '

An object that represents the compute environment architecture for Batch jobs on Fargate.

', 'ContainerProperties$runtimePlatform' => '

An object that represents the compute environment architecture for Batch jobs on Fargate.

', ], ], 'SchedulingPolicyDetail' => [ 'base' => '

An object that represents a scheduling policy.

', 'refs' => [ 'SchedulingPolicyDetailList$member' => NULL, ], ], 'SchedulingPolicyDetailList' => [ 'base' => NULL, 'refs' => [ 'DescribeSchedulingPoliciesResponse$schedulingPolicies' => '

The list of scheduling policies.

', ], ], 'SchedulingPolicyListingDetail' => [ 'base' => '

An object that contains the details of a scheduling policy that\'s returned in a ListSchedulingPolicy action.

', 'refs' => [ 'SchedulingPolicyListingDetailList$member' => NULL, ], ], 'SchedulingPolicyListingDetailList' => [ 'base' => NULL, 'refs' => [ 'ListSchedulingPoliciesResponse$schedulingPolicies' => '

A list of scheduling policies that match the request.

', ], ], 'Secret' => [ 'base' => '

An object that represents the secret to expose to your container. Secrets can be exposed to a container in the following ways:

For more information, see Specifying sensitive data in the Batch User Guide.

', 'refs' => [ 'SecretList$member' => NULL, ], ], 'SecretList' => [ 'base' => NULL, 'refs' => [ 'ContainerDetail$secrets' => '

The secrets to pass to the container. For more information, see Specifying sensitive data in the Batch User Guide.

', 'ContainerProperties$secrets' => '

The secrets for the container. For more information, see Specifying sensitive data in the Batch User Guide.

', 'LogConfiguration$secretOptions' => '

The secrets to pass to the log configuration. For more information, see Specifying sensitive data in the Batch User Guide.

', ], ], 'ServerException' => [ 'base' => '

These errors are usually caused by a server issue.

', 'refs' => [], ], 'ShareAttributes' => [ 'base' => '

Specifies the weights for the fair share identifiers for the fair share policy. Fair share identifiers that aren\'t included have a default weight of 1.0.

', 'refs' => [ 'ShareAttributesList$member' => NULL, ], ], 'ShareAttributesList' => [ 'base' => NULL, 'refs' => [ 'FairsharePolicy$shareDistribution' => '

An array of SharedIdentifier objects that contain the weights for the fair share identifiers for the fair share policy. Fair share identifiers that aren\'t included have a default weight of 1.0.

', ], ], 'String' => [ 'base' => NULL, 'refs' => [ 'ArrayJobStatusSummary$key' => NULL, 'AttemptContainerDetail$containerInstanceArn' => '

The Amazon Resource Name (ARN) of the Amazon ECS container instance that hosts the job attempt.

', 'AttemptContainerDetail$taskArn' => '

The Amazon Resource Name (ARN) of the Amazon ECS task that\'s associated with the job attempt. Each container attempt receives a task ARN when they reach the STARTING status.

', 'AttemptContainerDetail$reason' => '

A short (255 max characters) human-readable string to provide additional details for a running or stopped container.

', 'AttemptContainerDetail$logStreamName' => '

The name of the CloudWatch Logs log stream that\'s associated with the container. The log group for Batch jobs is /aws/batch/job. Each container attempt receives a log stream name when they reach the RUNNING status.

', 'AttemptDetail$statusReason' => '

A short, human-readable string to provide additional details for the current status of the job attempt.

', 'CancelJobRequest$jobId' => '

The Batch job ID of the job to cancel.

', 'CancelJobRequest$reason' => '

A message to attach to the job that explains the reason for canceling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the Batch activity logs.

', 'ClientException$message' => NULL, 'ComputeEnvironmentDetail$computeEnvironmentName' => '

The name of the compute environment. It can be up to 128 characters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

', 'ComputeEnvironmentDetail$computeEnvironmentArn' => '

The Amazon Resource Name (ARN) of the compute environment.

', 'ComputeEnvironmentDetail$ecsClusterArn' => '

The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster that the compute environment uses.

', 'ComputeEnvironmentDetail$statusReason' => '

A short, human-readable string to provide additional details for the current status of the compute environment.

', 'ComputeEnvironmentDetail$serviceRole' => '

The service role that\'s associated with the compute environment that allows Batch to make calls to Amazon Web Services API operations on your behalf. For more information, see Batch service IAM role in the Batch User Guide.

', 'ComputeEnvironmentDetail$uuid' => '

Unique identifier for the compute environment.

', 'ComputeEnvironmentOrder$computeEnvironment' => '

The Amazon Resource Name (ARN) of the compute environment.

', 'ComputeResource$imageId' => '

The Amazon Machine Image (AMI) ID used for instances launched in the compute environment. This parameter is overridden by the imageIdOverride member of the Ec2Configuration structure.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

The AMI that you choose for a compute environment must match the architecture of the instance types that you intend to use for that compute environment. For example, if your compute environment uses A1 instance types, the compute resource AMI that you choose must support ARM instances. Amazon ECS vends both x86 and ARM versions of the Amazon ECS-optimized Amazon Linux 2 AMI. For more information, see Amazon ECS-optimized Amazon Linux 2 AMI in the Amazon Elastic Container Service Developer Guide.

', 'ComputeResource$ec2KeyPair' => '

The Amazon EC2 key pair that\'s used for instances launched in the compute environment. You can use this key pair to log in to your instances with SSH.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResource$instanceRole' => '

The Amazon ECS instance profile applied to Amazon EC2 instances in a compute environment. This parameter is required for Amazon EC2 instances types. You can specify the short name or full Amazon Resource Name (ARN) of an instance profile. For example, ecsInstanceRole or arn:aws:iam::<aws_account_id>:instance-profile/ecsInstanceRole . For more information, see Amazon ECS instance role in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResource$placementGroup' => '

The Amazon EC2 placement group to associate with your compute resources. If you intend to submit multi-node parallel jobs to your compute environment, you should consider creating a cluster placement group and associate it with your compute resources. This keeps your multi-node parallel job on a logical grouping of instances within a single Availability Zone with high network flow potential. For more information, see Placement groups in the Amazon EC2 User Guide for Linux Instances.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResource$spotIamFleetRole' => '

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment. This role is required if the allocation strategy set to BEST_FIT or if the allocation strategy isn\'t specified. For more information, see Amazon EC2 spot fleet role in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

To tag your Spot Instances on creation, the Spot Fleet IAM role specified here must use the newer AmazonEC2SpotFleetTaggingRole managed policy. The previously recommended AmazonEC2SpotFleetRole managed policy doesn\'t have the required permissions to tag Spot Instances. For more information, see Spot instances not tagged on creation in the Batch User Guide.

', 'ComputeResourceUpdate$ec2KeyPair' => '

The Amazon EC2 key pair that\'s used for instances launched in the compute environment. You can use this key pair to log in to your instances with SSH. To remove the Amazon EC2 key pair, set this value to an empty string.

When updating a compute environment, changing the EC2 key pair requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResourceUpdate$instanceRole' => '

The Amazon ECS instance profile applied to Amazon EC2 instances in a compute environment. Required for Amazon EC2 instances. You can specify the short name or full Amazon Resource Name (ARN) of an instance profile. For example, ecsInstanceRole or arn:aws:iam::<aws_account_id>:instance-profile/ecsInstanceRole . For more information, see Amazon ECS instance role in the Batch User Guide.

When updating a compute environment, changing this setting requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResourceUpdate$placementGroup' => '

The Amazon EC2 placement group to associate with your compute resources. If you intend to submit multi-node parallel jobs to your compute environment, you should consider creating a cluster placement group and associate it with your compute resources. This keeps your multi-node parallel job on a logical grouping of instances within a single Availability Zone with high network flow potential. For more information, see Placement groups in the Amazon EC2 User Guide for Linux Instances.

When updating a compute environment, changing the placement group requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResourceUpdate$imageId' => '

The Amazon Machine Image (AMI) ID used for instances launched in the compute environment. This parameter is overridden by the imageIdOverride member of the Ec2Configuration structure. To remove the custom AMI ID and use the default AMI ID, set this value to an empty string.

When updating a compute environment, changing the AMI ID requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

The AMI that you choose for a compute environment must match the architecture of the instance types that you intend to use for that compute environment. For example, if your compute environment uses A1 instance types, the compute resource AMI that you choose must support ARM instances. Amazon ECS vends both x86 and ARM versions of the Amazon ECS-optimized Amazon Linux 2 AMI. For more information, see Amazon ECS-optimized Amazon Linux 2 AMI in the Amazon Elastic Container Service Developer Guide.

', 'ContainerDetail$image' => '

The image used to start the container.

', 'ContainerDetail$jobRoleArn' => '

The Amazon Resource Name (ARN) that\'s associated with the job when run.

', 'ContainerDetail$executionRoleArn' => '

The Amazon Resource Name (ARN) of the execution role that Batch can assume. For more information, see Batch execution IAM role in the Batch User Guide.

', 'ContainerDetail$user' => '

The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

', 'ContainerDetail$reason' => '

A short (255 max characters) human-readable string to provide additional details for a running or stopped container.

', 'ContainerDetail$containerInstanceArn' => '

The Amazon Resource Name (ARN) of the container instance that the container is running on.

', 'ContainerDetail$taskArn' => '

The Amazon Resource Name (ARN) of the Amazon ECS task that\'s associated with the container job. Each container attempt receives a task ARN when they reach the STARTING status.

', 'ContainerDetail$logStreamName' => '

The name of the Amazon CloudWatch Logs log stream that\'s associated with the container. The log group for Batch jobs is /aws/batch/job. Each container attempt receives a log stream name when they reach the RUNNING status.

', 'ContainerDetail$instanceType' => '

The instance type of the underlying host infrastructure of a multi-node parallel job.

This parameter isn\'t applicable to jobs that are running on Fargate resources.

', 'ContainerOverrides$instanceType' => '

The instance type to use for a multi-node parallel job.

This parameter isn\'t applicable to single-node container jobs or jobs that run on Fargate resources, and shouldn\'t be provided.

', 'ContainerProperties$image' => '

Required. The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . It can be 255 characters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), underscores (_), colons (:), periods (.), forward slashes (/), and number signs (#). This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

Docker image architecture must match the processor architecture of the compute resources that they\'re scheduled on. For example, ARM-based Docker images can only run on ARM-based compute resources.

', 'ContainerProperties$jobRoleArn' => '

The Amazon Resource Name (ARN) of the IAM role that the container can assume for Amazon Web Services permissions. For more information, see IAM roles for tasks in the Amazon Elastic Container Service Developer Guide.

', 'ContainerProperties$executionRoleArn' => '

The Amazon Resource Name (ARN) of the execution role that Batch can assume. For jobs that run on Fargate resources, you must provide an execution role. For more information, see Batch execution IAM role in the Batch User Guide.

', 'ContainerProperties$user' => '

The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

', 'ContainerProperties$instanceType' => '

The instance type to use for a multi-node parallel job. All node groups in a multi-node parallel job must use the same instance type.

This parameter isn\'t applicable to single-node container jobs or jobs that run on Fargate resources, and shouldn\'t be provided.

', 'ContainerSummary$reason' => '

A short (255 max characters) human-readable string to provide additional details for a running or stopped container.

', 'CreateComputeEnvironmentRequest$computeEnvironmentName' => '

The name for your compute environment. It can be up to 128 characters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

', 'CreateComputeEnvironmentRequest$serviceRole' => '

The full Amazon Resource Name (ARN) of the IAM role that allows Batch to make calls to other Amazon Web Services services on your behalf. For more information, see Batch service IAM role in the Batch User Guide.

If your account already created the Batch service-linked role, that role is used by default for your compute environment unless you specify a different role here. If the Batch service-linked role doesn\'t exist in your account, and no role is specified here, the service attempts to create the Batch service-linked role in your account.

If your specified role has a path other than /, then you must specify either the full role ARN (recommended) or prefix the role name with the path. For example, if a role with the name bar has a path of /foo/, specify /foo/bar as the role name. For more information, see Friendly names and paths in the IAM User Guide.

Depending on how you created your Batch service role, its ARN might contain the service-role path prefix. When you only specify the name of the service role, Batch assumes that your ARN doesn\'t use the service-role path prefix. Because of this, we recommend that you specify the full ARN of your service role when you create compute environments.

', 'CreateComputeEnvironmentResponse$computeEnvironmentName' => '

The name of the compute environment. It can be up to 128 characters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

', 'CreateComputeEnvironmentResponse$computeEnvironmentArn' => '

The Amazon Resource Name (ARN) of the compute environment.

', 'CreateJobQueueRequest$jobQueueName' => '

The name of the job queue. It can be up to 128 letters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

', 'CreateJobQueueRequest$schedulingPolicyArn' => '

The Amazon Resource Name (ARN) of the fair share scheduling policy. If this parameter is specified, the job queue uses a fair share scheduling policy. If this parameter isn\'t specified, the job queue uses a first in, first out (FIFO) scheduling policy. After a job queue is created, you can replace but can\'t remove the fair share scheduling policy. The format is aws:Partition:batch:Region:Account:scheduling-policy/Name . An example is aws:aws:batch:us-west-2:123456789012:scheduling-policy/MySchedulingPolicy.

', 'CreateJobQueueResponse$jobQueueName' => '

The name of the job queue.

', 'CreateJobQueueResponse$jobQueueArn' => '

The Amazon Resource Name (ARN) of the job queue.

', 'CreateSchedulingPolicyRequest$name' => '

The name of the scheduling policy. It can be up to 128 letters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

', 'CreateSchedulingPolicyResponse$name' => '

The name of the scheduling policy.

', 'CreateSchedulingPolicyResponse$arn' => '

The Amazon Resource Name (ARN) of the scheduling policy. The format is aws:Partition:batch:Region:Account:scheduling-policy/Name . For example, aws:aws:batch:us-west-2:123456789012:scheduling-policy/MySchedulingPolicy.

', 'DeleteComputeEnvironmentRequest$computeEnvironment' => '

The name or Amazon Resource Name (ARN) of the compute environment to delete.

', 'DeleteJobQueueRequest$jobQueue' => '

The short name or full Amazon Resource Name (ARN) of the queue to delete.

', 'DeleteSchedulingPolicyRequest$arn' => '

The Amazon Resource Name (ARN) of the scheduling policy to delete.

', 'DeregisterJobDefinitionRequest$jobDefinition' => '

The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.

', 'DescribeComputeEnvironmentsRequest$nextToken' => '

The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

Treat this token as an opaque identifier that\'s only used to retrieve the next items in a list and not for other programmatic purposes.

', 'DescribeComputeEnvironmentsResponse$nextToken' => '

The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeComputeEnvironments request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeJobDefinitionsRequest$jobDefinitionName' => '

The name of the job definition to describe.

', 'DescribeJobDefinitionsRequest$status' => '

The status used to filter job definitions.

', 'DescribeJobDefinitionsRequest$nextToken' => '

The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

Treat this token as an opaque identifier that\'s only used to retrieve the next items in a list and not for other programmatic purposes.

', 'DescribeJobDefinitionsResponse$nextToken' => '

The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeJobQueuesRequest$nextToken' => '

The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

Treat this token as an opaque identifier that\'s only used to retrieve the next items in a list and not for other programmatic purposes.

', 'DescribeJobQueuesResponse$nextToken' => '

The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

', 'Device$hostPath' => '

The path for the device on the host container instance.

', 'Device$containerPath' => '

The path inside the container that\'s used to expose the host device. By default, the hostPath value is used.

', 'EFSAuthorizationConfig$accessPointId' => '

The Amazon EFS access point ID to use. If an access point is specified, the root directory value specified in the EFSVolumeConfiguration must either be omitted or set to / which enforces the path set on the EFS access point. If an access point is used, transit encryption must be enabled in the EFSVolumeConfiguration. For more information, see Working with Amazon EFS access points in the Amazon Elastic File System User Guide.

', 'EFSVolumeConfiguration$fileSystemId' => '

The Amazon EFS file system ID to use.

', 'EFSVolumeConfiguration$rootDirectory' => '

The directory within the Amazon EFS file system to mount as the root directory inside the host. If this parameter is omitted, the root of the Amazon EFS volume is used instead. Specifying / has the same effect as omitting this parameter. The maximum length is 4,096 characters.

If an EFS access point is specified in the authorizationConfig, the root directory parameter must either be omitted or set to /, which enforces the path set on the Amazon EFS access point.

', 'EksAttemptContainerDetail$reason' => '

A short (255 max characters) human-readable string to provide additional details for a running or stopped container.

', 'EksAttemptDetail$podName' => '

The name of the pod for this job attempt.

', 'EksAttemptDetail$nodeName' => '

The name of the node for this job attempt.

', 'EksAttemptDetail$statusReason' => '

A short, human-readable string to provide additional details for the current status of the job attempt.

', 'EksConfiguration$eksClusterArn' => '

The Amazon Resource Name (ARN) of the Amazon EKS cluster. An example is arn:aws:eks:us-east-1:123456789012:cluster/ClusterForBatch .

', 'EksConfiguration$kubernetesNamespace' => '

The namespace of the Amazon EKS cluster. Batch manages pods in this namespace. The value can\'t left empty or null. It must be fewer than 64 characters long, can\'t be set to default, can\'t start with "kube-," and must match this regular expression: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$. For more information, see Namespaces in the Kubernetes documentation.

', 'EksContainer$name' => '

The name of the container. If the name isn\'t specified, the default name "Default" is used. Each container in a pod must have a unique name.

', 'EksContainer$image' => '

The Docker image used to start the container.

', 'EksContainer$imagePullPolicy' => '

The image pull policy for the container. Supported values are Always, IfNotPresent, and Never. This parameter defaults to IfNotPresent. However, if the :latest tag is specified, it defaults to Always. For more information, see Updating images in the Kubernetes documentation.

', 'EksContainerDetail$name' => '

The name of the container. If the name isn\'t specified, the default name "Default" is used. Each container in a pod must have a unique name.

', 'EksContainerDetail$image' => '

The Docker image used to start the container.

', 'EksContainerDetail$imagePullPolicy' => '

The image pull policy for the container. Supported values are Always, IfNotPresent, and Never. This parameter defaults to Always if the :latest tag is specified, IfNotPresent otherwise. For more information, see Updating images in the Kubernetes documentation.

', 'EksContainerDetail$reason' => '

A short human-readable string to provide additional details for a running or stopped container. It can be up to 255 characters long.

', 'EksContainerEnvironmentVariable$name' => '

The name of the environment variable.

', 'EksContainerEnvironmentVariable$value' => '

The value of the environment variable.

', 'EksContainerOverride$image' => '

The override of the Docker image that\'s used to start the container.

', 'EksContainerVolumeMount$name' => '

The name the volume mount. This must match the name of one of the volumes in the pod.

', 'EksContainerVolumeMount$mountPath' => '

The path on the container where the volume is mounted.

', 'EksEmptyDir$medium' => '

The medium to store the volume. The default value is an empty string, which uses the storage of the node.

""

(Default) Use the disk storage of the node.

"Memory"

Use the tmpfs volume that\'s backed by the RAM of the node. Contents of the volume are lost when the node reboots, and any storage on the volume counts against the container\'s memory limit.

', 'EksHostPath$path' => '

The path of the file or directory on the host to mount into containers on the pod.

', 'EksLabelsMap$key' => NULL, 'EksLabelsMap$value' => NULL, 'EksLimits$key' => NULL, 'EksPodProperties$serviceAccountName' => '

The name of the service account that\'s used to run the pod. For more information, see Kubernetes service accounts and Configure a Kubernetes service account to assume an IAM role in the Amazon EKS User Guide and Configure service accounts for pods in the Kubernetes documentation.

', 'EksPodProperties$dnsPolicy' => '

The DNS policy for the pod. The default value is ClusterFirst. If the hostNetwork parameter is not specified, the default is ClusterFirstWithHostNet. ClusterFirst indicates that any DNS query that does not match the configured cluster domain suffix is forwarded to the upstream nameserver inherited from the node. For more information, see Pod\'s DNS policy in the Kubernetes documentation.

Valid values: Default | ClusterFirst | ClusterFirstWithHostNet

', 'EksPodPropertiesDetail$serviceAccountName' => '

The name of the service account that\'s used to run the pod. For more information, see Kubernetes service accounts and Configure a Kubernetes service account to assume an IAM role in the Amazon EKS User Guide and Configure service accounts for pods in the Kubernetes documentation.

', 'EksPodPropertiesDetail$dnsPolicy' => '

The DNS policy for the pod. The default value is ClusterFirst. If the hostNetwork parameter is not specified, the default is ClusterFirstWithHostNet. ClusterFirst indicates that any DNS query that does not match the configured cluster domain suffix is forwarded to the upstream nameserver inherited from the node. If no value was specified for dnsPolicy in the RegisterJobDefinition API operation, then no value will be returned for dnsPolicy by either of DescribeJobDefinitions or DescribeJobs API operations. The pod spec setting will contain either ClusterFirst or ClusterFirstWithHostNet, depending on the value of the hostNetwork parameter. For more information, see Pod\'s DNS policy in the Kubernetes documentation.

Valid values: Default | ClusterFirst | ClusterFirstWithHostNet

', 'EksPodPropertiesDetail$podName' => '

The name of the pod for this job.

', 'EksPodPropertiesDetail$nodeName' => '

The name of the node for this job.

', 'EksRequests$key' => NULL, 'EksSecret$secretName' => '

The name of the secret. The name must be allowed as a DNS subdomain name. For more information, see DNS subdomain names in the Kubernetes documentation.

', 'EksVolume$name' => '

The name of the volume. The name must be allowed as a DNS subdomain name. For more information, see DNS subdomain names in the Kubernetes documentation.

', 'EvaluateOnExit$onStatusReason' => '

Contains a glob pattern to match against the StatusReason returned for a job. The pattern can contain up to 512 characters. It can contain letters, numbers, periods (.), colons (:), and white spaces (including spaces or tabs). It can optionally end with an asterisk (*) so that only the start of the string needs to be an exact match.

', 'EvaluateOnExit$onReason' => '

Contains a glob pattern to match against the Reason returned for a job. The pattern can contain up to 512 characters. It can contain letters, numbers, periods (.), colons (:), and white space (including spaces and tabs). It can optionally end with an asterisk (*) so that only the start of the string needs to be an exact match.

', 'EvaluateOnExit$onExitCode' => '

Contains a glob pattern to match against the decimal representation of the ExitCode returned for a job. The pattern can be up to 512 characters long. It can contain only numbers, and can end with an asterisk (*) so that only the start of the string needs to be an exact match.

The string can contain up to 512 characters.

', 'FargatePlatformConfiguration$platformVersion' => '

The Fargate platform version where the jobs are running. A platform version is specified only for jobs that are running on Fargate resources. If one isn\'t specified, the LATEST platform version is used by default. This uses a recent, approved version of the Fargate platform for compute resources. For more information, see Fargate platform versions in the Amazon Elastic Container Service Developer Guide.

', 'Host$sourcePath' => '

The path on the host container instance that\'s presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If this parameter contains a file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the source path location doesn\'t exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.

This parameter isn\'t applicable to jobs that run on Fargate resources. Don\'t provide this for these jobs.

', 'JobDefinition$jobDefinitionName' => '

The name of the job definition.

', 'JobDefinition$jobDefinitionArn' => '

The Amazon Resource Name (ARN) for the job definition.

', 'JobDefinition$status' => '

The status of the job definition.

', 'JobDefinition$type' => '

The type of job definition. It\'s either container or multinode. If the job is run on Fargate resources, then multinode isn\'t supported. For more information about multi-node parallel jobs, see Creating a multi-node parallel job definition in the Batch User Guide.

', 'JobDependency$jobId' => '

The job ID of the Batch job that\'s associated with this dependency.

', 'JobDetail$jobArn' => '

The Amazon Resource Name (ARN) of the job.

', 'JobDetail$jobName' => '

The job name.

', 'JobDetail$jobId' => '

The job ID.

', 'JobDetail$jobQueue' => '

The Amazon Resource Name (ARN) of the job queue that the job is associated with.

', 'JobDetail$shareIdentifier' => '

The share identifier for the job.

', 'JobDetail$statusReason' => '

A short, human-readable string to provide more details for the current status of the job.

', 'JobDetail$jobDefinition' => '

The Amazon Resource Name (ARN) of the job definition that this job uses.

', 'JobQueueDetail$jobQueueName' => '

The job queue name.

', 'JobQueueDetail$jobQueueArn' => '

The Amazon Resource Name (ARN) of the job queue.

', 'JobQueueDetail$schedulingPolicyArn' => '

The Amazon Resource Name (ARN) of the scheduling policy. The format is aws:Partition:batch:Region:Account:scheduling-policy/Name . For example, aws:aws:batch:us-west-2:123456789012:scheduling-policy/MySchedulingPolicy.

', 'JobQueueDetail$statusReason' => '

A short, human-readable string to provide additional details for the current status of the job queue.

', 'JobSummary$jobArn' => '

The Amazon Resource Name (ARN) of the job.

', 'JobSummary$jobId' => '

The job ID.

', 'JobSummary$jobName' => '

The job name.

', 'JobSummary$statusReason' => '

A short, human-readable string to provide more details for the current status of the job.

', 'JobSummary$jobDefinition' => '

The Amazon Resource Name (ARN) of the job definition.

', 'KeyValuePair$name' => '

The name of the key-value pair. For environment variables, this is the name of the environment variable.

', 'KeyValuePair$value' => '

The value of the key-value pair. For environment variables, this is the value of the environment variable.

', 'KeyValuesPair$name' => '

The name of the filter. Filter names are case sensitive.

', 'LaunchTemplateSpecification$launchTemplateId' => '

The ID of the launch template.

', 'LaunchTemplateSpecification$launchTemplateName' => '

The name of the launch template.

', 'LaunchTemplateSpecification$version' => '

The version number of the launch template, $Latest, or $Default.

If the value is $Latest, the latest version of the launch template is used. If the value is $Default, the default version of the launch template is used.

If the AMI ID that\'s used in a compute environment is from the launch template, the AMI isn\'t changed when the compute environment is updated. It\'s only changed if the updateToLatestImageVersion parameter for the compute environment is set to true. During an infrastructure update, if either $Latest or $Default is specified, Batch re-evaluates the launch template version, and it might use a different version of the launch template. This is the case even if the launch template isn\'t specified in the update. When updating a compute environment, changing the launch template requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

Default: $Default.

', 'ListJobsRequest$jobQueue' => '

The name or full Amazon Resource Name (ARN) of the job queue used to list jobs.

', 'ListJobsRequest$arrayJobId' => '

The job ID for an array job. Specifying an array job ID with this parameter lists all child jobs from within the specified array.

', 'ListJobsRequest$multiNodeJobId' => '

The job ID for a multi-node parallel job. Specifying a multi-node parallel job ID with this parameter lists all nodes that are associated with the specified job.

', 'ListJobsRequest$nextToken' => '

The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

Treat this token as an opaque identifier that\'s only used to retrieve the next items in a list and not for other programmatic purposes.

', 'ListJobsResponse$nextToken' => '

The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

', 'ListSchedulingPoliciesRequest$nextToken' => '

The nextToken value that\'s returned from a previous paginated ListSchedulingPolicies request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

Treat this token as an opaque identifier that\'s only used to retrieve the next items in a list and not for other programmatic purposes.

', 'ListSchedulingPoliciesResponse$nextToken' => '

The nextToken value to include in a future ListSchedulingPolicies request. When the results of a ListSchedulingPolicies request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

', 'ListTagsForResourceRequest$resourceArn' => '

The Amazon Resource Name (ARN) that identifies the resource that tags are listed for. Batch resources that support tags are compute environments, jobs, job definitions, job queues, and scheduling policies. ARNs for child jobs of array and multi-node parallel (MNP) jobs aren\'t supported.

', 'LogConfigurationOptionsMap$key' => NULL, 'LogConfigurationOptionsMap$value' => NULL, 'MountPoint$containerPath' => '

The path on the container where the host volume is mounted.

', 'MountPoint$sourceVolume' => '

The name of the volume to mount.

', 'NetworkInterface$attachmentId' => '

The attachment ID for the network interface.

', 'NetworkInterface$ipv6Address' => '

The private IPv6 address for the network interface.

', 'NetworkInterface$privateIpv4Address' => '

The private IPv4 address for the network interface.

', 'NodePropertyOverride$targetNodes' => '

The range of nodes, using node index values, that\'s used to override. A range of 0:3 indicates nodes with index values of 0 through 3. If the starting range value is omitted (:n), then 0 is used to start the range. If the ending range value is omitted (n:), then the highest possible node index is used to end the range.

', 'NodeRangeProperty$targetNodes' => '

The range of nodes, using node index values. A range of 0:3 indicates nodes with index values of 0 through 3. If the starting range value is omitted (:n), then 0 is used to start the range. If the ending range value is omitted (n:), then the highest possible node index is used to end the range. Your accumulative node ranges must account for all nodes (0:n). You can nest node ranges (for example, 0:10 and 4:5). In this case, the 4:5 range properties override the 0:10 properties.

', 'ParametersMap$key' => NULL, 'ParametersMap$value' => NULL, 'RegisterJobDefinitionRequest$jobDefinitionName' => '

The name of the job definition to register. It can be up to 128 letters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

', 'RegisterJobDefinitionResponse$jobDefinitionName' => '

The name of the job definition.

', 'RegisterJobDefinitionResponse$jobDefinitionArn' => '

The Amazon Resource Name (ARN) of the job definition.

', 'RepositoryCredentials$credentialsParameter' => '

The Amazon Resource Name (ARN) of the secret containing the private repository credentials.

', 'ResourceRequirement$value' => '

The quantity of the specified resource to reserve for the container. The values vary based on the type specified.

type="GPU"

The number of physical GPUs to reserve for the container. Make sure that the number of GPUs reserved for all containers in a job doesn\'t exceed the number of available GPUs on the compute resource that the job is launched on.

GPUs aren\'t available for jobs that are running on Fargate resources.

type="MEMORY"

The memory hard limit (in MiB) present to the container. This parameter is supported for jobs that are running on EC2 resources. If your container attempts to exceed the memory specified, the container is terminated. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run. You must specify at least 4 MiB of memory for a job. This is required but can be specified in several places for multi-node parallel (MNP) jobs. It must be specified for each node at least once. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

If you\'re trying to maximize your resource utilization by providing your jobs as much memory as possible for a particular instance type, see Memory management in the Batch User Guide.

For jobs that are running on Fargate resources, then value is the hard limit (in MiB), and must match one of the supported values and the VCPU values must be one of the values supported for that memory value.

value = 512

VCPU = 0.25

value = 1024

VCPU = 0.25 or 0.5

value = 2048

VCPU = 0.25, 0.5, or 1

value = 3072

VCPU = 0.5, or 1

value = 4096

VCPU = 0.5, 1, or 2

value = 5120, 6144, or 7168

VCPU = 1 or 2

value = 8192

VCPU = 1, 2, or 4

value = 9216, 10240, 11264, 12288, 13312, 14336, or 15360

VCPU = 2 or 4

value = 16384

VCPU = 2, 4, or 8

value = 17408, 18432, 19456, 21504, 22528, 23552, 25600, 26624, 27648, 29696, or 30720

VCPU = 4

value = 20480, 24576, or 28672

VCPU = 4 or 8

value = 36864, 45056, 53248, or 61440

VCPU = 8

value = 32768, 40960, 49152, or 57344

VCPU = 8 or 16

value = 65536, 73728, 81920, 90112, 98304, 106496, 114688, or 122880

VCPU = 16

type="VCPU"

The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares. For EC2 resources, you must specify at least one vCPU. This is required but can be specified in several places; it must be specified for each node at least once.

The default for the Fargate On-Demand vCPU resource count quota is 6 vCPUs. For more information about Fargate quotas, see Fargate quotas in the Amazon Web Services General Reference.

For jobs that are running on Fargate resources, then value must match one of the supported values and the MEMORY values must be one of the values supported for that VCPU value. The supported values are 0.25, 0.5, 1, 2, 4, 8, and 16

value = 0.25

MEMORY = 512, 1024, or 2048

value = 0.5

MEMORY = 1024, 2048, 3072, or 4096

value = 1

MEMORY = 2048, 3072, 4096, 5120, 6144, 7168, or 8192

value = 2

MEMORY = 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336, 15360, or 16384

value = 4

MEMORY = 8192, 9216, 10240, 11264, 12288, 13312, 14336, 15360, 16384, 17408, 18432, 19456, 20480, 21504, 22528, 23552, 24576, 25600, 26624, 27648, 28672, 29696, or 30720

value = 8

MEMORY = 16384, 20480, 24576, 28672, 32768, 36864, 40960, 45056, 49152, 53248, 57344, or 61440

value = 16

MEMORY = 32768, 40960, 49152, 57344, 65536, 73728, 81920, 90112, 98304, 106496, 114688, or 122880

', 'RuntimePlatform$operatingSystemFamily' => '

The operating system for the compute environment. Valid values are: LINUX (default), WINDOWS_SERVER_2019_CORE, WINDOWS_SERVER_2019_FULL, WINDOWS_SERVER_2022_CORE, and WINDOWS_SERVER_2022_FULL.

The following parameters can’t be set for Windows containers: linuxParameters, privileged, user, ulimits, readonlyRootFilesystem, and efsVolumeConfiguration.

The Batch Scheduler checks the compute environments that are attached to the job queue before registering a task definition with Fargate. In this scenario, the job queue is where the job is submitted. If the job requires a Windows container and the first compute environment is LINUX, the compute environment is skipped and the next compute environment is checked until a Windows-based compute environment is found.

Fargate Spot is not supported for ARM64 and Windows-based containers on Fargate. A job queue will be blocked if a Fargate ARM64 or Windows job is submitted to a job queue with only Fargate Spot compute environments. However, you can attach both FARGATE and FARGATE_SPOT compute environments to the same job queue.

', 'RuntimePlatform$cpuArchitecture' => '

The vCPU architecture. The default value is X86_64. Valid values are X86_64 and ARM64.

This parameter must be set to X86_64 for Windows containers.

Fargate Spot is not supported for ARM64 and Windows-based containers on Fargate. A job queue will be blocked if a Fargate ARM64 or Windows job is submitted to a job queue with only Fargate Spot compute environments. However, you can attach both FARGATE and FARGATE_SPOT compute environments to the same job queue.

', 'SchedulingPolicyDetail$name' => '

The name of the scheduling policy.

', 'SchedulingPolicyDetail$arn' => '

The Amazon Resource Name (ARN) of the scheduling policy. An example is arn:aws:batch:us-east-1:123456789012:scheduling-policy/HighPriority .

', 'SchedulingPolicyListingDetail$arn' => '

Amazon Resource Name (ARN) of the scheduling policy.

', 'Secret$name' => '

The name of the secret.

', 'Secret$valueFrom' => '

The secret to expose to the container. The supported values are either the full Amazon Resource Name (ARN) of the Secrets Manager secret or the full ARN of the parameter in the Amazon Web Services Systems Manager Parameter Store.

If the Amazon Web Services Systems Manager Parameter Store parameter exists in the same Region as the job you\'re launching, then you can use either the full Amazon Resource Name (ARN) or name of the parameter. If the parameter exists in a different Region, then the full ARN must be specified.

', 'ServerException$message' => NULL, 'ShareAttributes$shareIdentifier' => '

A fair share identifier or fair share identifier prefix. If the string ends with an asterisk (*), this entry specifies the weight factor to use for fair share identifiers that start with that prefix. The list of fair share identifiers in a fair share policy can\'t overlap. For example, you can\'t have one that specifies a shareIdentifier of UserA* and another that specifies a shareIdentifier of UserA-1.

There can be no more than 500 fair share identifiers active in a job queue.

The string is limited to 255 alphanumeric characters, and can be followed by an asterisk (*).

', 'StringList$member' => NULL, 'SubmitJobRequest$jobName' => '

The name of the job. It can be up to 128 letters long. The first character must be alphanumeric, can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

', 'SubmitJobRequest$jobQueue' => '

The job queue where the job is submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.

', 'SubmitJobRequest$shareIdentifier' => '

The share identifier for the job. Don\'t specify this parameter if the job queue doesn\'t have a scheduling policy. If the job queue has a scheduling policy, then this parameter must be specified.

This string is limited to 255 alphanumeric characters, and can be followed by an asterisk (*).

', 'SubmitJobRequest$jobDefinition' => '

The job definition used by this job. This value can be one of definition-name, definition-name:revision, or the Amazon Resource Name (ARN) for the job definition, with or without the revision (arn:aws:batch:region:account:job-definition/definition-name:revision , or arn:aws:batch:region:account:job-definition/definition-name ).

If the revision is not specified, then the latest active revision is used.

', 'SubmitJobResponse$jobArn' => '

The Amazon Resource Name (ARN) for the job.

', 'SubmitJobResponse$jobName' => '

The name of the job.

', 'SubmitJobResponse$jobId' => '

The unique identifier for the job.

', 'TagResourceRequest$resourceArn' => '

The Amazon Resource Name (ARN) of the resource that tags are added to. Batch resources that support tags are compute environments, jobs, job definitions, job queues, and scheduling policies. ARNs for child jobs of array and multi-node parallel (MNP) jobs aren\'t supported.

', 'TagsMap$key' => NULL, 'TagsMap$value' => NULL, 'TerminateJobRequest$jobId' => '

The Batch job ID of the job to terminate.

', 'TerminateJobRequest$reason' => '

A message to attach to the job that explains the reason for canceling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the Batch activity logs.

', 'Tmpfs$containerPath' => '

The absolute file path in the container where the tmpfs volume is mounted.

', 'Ulimit$name' => '

The type of the ulimit. Valid values are: core | cpu | data | fsize | locks | memlock | msgqueue | nice | nofile | nproc | rss | rtprio | rttime | sigpending | stack.

', 'UntagResourceRequest$resourceArn' => '

The Amazon Resource Name (ARN) of the resource from which to delete tags. Batch resources that support tags are compute environments, jobs, job definitions, job queues, and scheduling policies. ARNs for child jobs of array and multi-node parallel (MNP) jobs aren\'t supported.

', 'UpdateComputeEnvironmentRequest$computeEnvironment' => '

The name or full Amazon Resource Name (ARN) of the compute environment to update.

', 'UpdateComputeEnvironmentRequest$serviceRole' => '

The full Amazon Resource Name (ARN) of the IAM role that allows Batch to make calls to other Amazon Web Services services on your behalf. For more information, see Batch service IAM role in the Batch User Guide.

If the compute environment has a service-linked role, it can\'t be changed to use a regular IAM role. Likewise, if the compute environment has a regular IAM role, it can\'t be changed to use a service-linked role. To update the parameters for the compute environment that require an infrastructure update to change, the AWSServiceRoleForBatch service-linked role must be used. For more information, see Updating compute environments in the Batch User Guide.

If your specified role has a path other than /, then you must either specify the full role ARN (recommended) or prefix the role name with the path.

Depending on how you created your Batch service role, its ARN might contain the service-role path prefix. When you only specify the name of the service role, Batch assumes that your ARN doesn\'t use the service-role path prefix. Because of this, we recommend that you specify the full ARN of your service role when you create compute environments.

', 'UpdateComputeEnvironmentResponse$computeEnvironmentName' => '

The name of the compute environment. It can be up to 128 characters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

', 'UpdateComputeEnvironmentResponse$computeEnvironmentArn' => '

The Amazon Resource Name (ARN) of the compute environment.

', 'UpdateJobQueueRequest$jobQueue' => '

The name or the Amazon Resource Name (ARN) of the job queue.

', 'UpdateJobQueueRequest$schedulingPolicyArn' => '

Amazon Resource Name (ARN) of the fair share scheduling policy. Once a job queue is created, the fair share scheduling policy can be replaced but not removed. The format is aws:Partition:batch:Region:Account:scheduling-policy/Name . For example, aws:aws:batch:us-west-2:123456789012:scheduling-policy/MySchedulingPolicy.

', 'UpdateJobQueueResponse$jobQueueName' => '

The name of the job queue.

', 'UpdateJobQueueResponse$jobQueueArn' => '

The Amazon Resource Name (ARN) of the job queue.

', 'UpdateSchedulingPolicyRequest$arn' => '

The Amazon Resource Name (ARN) of the scheduling policy to update.

', 'Volume$name' => '

The name of the volume. It can be up to 255 characters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_). This name is referenced in the sourceVolume parameter of container definition mountPoints.

', ], ], 'StringList' => [ 'base' => NULL, 'refs' => [ 'ComputeResource$instanceTypes' => '

The instances types that can be launched. You can specify instance families to launch any instance type within those families (for example, c5 or p3), or you can specify specific sizes within a family (such as c5.8xlarge). You can also choose optimal to select instance types (from the C4, M4, and R4 instance families) that match the demand of your job queues.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

When you create a compute environment, the instance types that you select for the compute environment must share the same architecture. For example, you can\'t mix x86 and ARM instances in the same compute environment.

Currently, optimal uses instance types from the C4, M4, and R4 instance families. In Regions that don\'t have instance types from those instance families, instance types from the C5, M5, and R5 instance families are used.

', 'ComputeResource$subnets' => '

The VPC subnets where the compute resources are launched. These subnets must be within the same VPC. Fargate compute resources can contain up to 16 subnets. For more information, see VPCs and subnets in the Amazon VPC User Guide.

Batch on Amazon EC2 and Batch on Amazon EKS support Local Zones. For more information, see Local Zones in the Amazon EC2 User Guide for Linux Instances, Amazon EKS and Amazon Web Services Local Zones in the Amazon EKS User Guide and Amazon ECS clusters in Local Zones, Wavelength Zones, and Amazon Web Services Outposts in the Amazon ECS Developer Guide.

Batch on Fargate doesn\'t currently support Local Zones.

', 'ComputeResource$securityGroupIds' => '

The Amazon EC2 security groups that are associated with instances launched in the compute environment. One or more security groups must be specified, either in securityGroupIds or using a launch template referenced in launchTemplate. This parameter is required for jobs that are running on Fargate resources and must contain at least one security group. Fargate doesn\'t support launch templates. If security groups are specified using both securityGroupIds and launchTemplate, the values in securityGroupIds are used.

', 'ComputeResourceUpdate$subnets' => '

The VPC subnets where the compute resources are launched. Fargate compute resources can contain up to 16 subnets. For Fargate compute resources, providing an empty list will be handled as if this parameter wasn\'t specified and no change is made. For EC2 compute resources, providing an empty list removes the VPC subnets from the compute resource. For more information, see VPCs and subnets in the Amazon VPC User Guide.

When updating a compute environment, changing the VPC subnets requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

Batch on Amazon EC2 and Batch on Amazon EKS support Local Zones. For more information, see Local Zones in the Amazon EC2 User Guide for Linux Instances, Amazon EKS and Amazon Web Services Local Zones in the Amazon EKS User Guide and Amazon ECS clusters in Local Zones, Wavelength Zones, and Amazon Web Services Outposts in the Amazon ECS Developer Guide.

Batch on Fargate doesn\'t currently support Local Zones.

', 'ComputeResourceUpdate$securityGroupIds' => '

The Amazon EC2 security groups that are associated with instances launched in the compute environment. This parameter is required for Fargate compute resources, where it can contain up to 5 security groups. For Fargate compute resources, providing an empty list is handled as if this parameter wasn\'t specified and no change is made. For EC2 compute resources, providing an empty list removes the security groups from the compute resource.

When updating a compute environment, changing the EC2 security groups requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

', 'ComputeResourceUpdate$instanceTypes' => '

The instances types that can be launched. You can specify instance families to launch any instance type within those families (for example, c5 or p3), or you can specify specific sizes within a family (such as c5.8xlarge). You can also choose optimal to select instance types (from the C4, M4, and R4 instance families) that match the demand of your job queues.

When updating a compute environment, changing this setting requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

When you create a compute environment, the instance types that you select for the compute environment must share the same architecture. For example, you can\'t mix x86 and ARM instances in the same compute environment.

Currently, optimal uses instance types from the C4, M4, and R4 instance families. In Regions that don\'t have instance types from those instance families, instance types from the C5, M5, and R5 instance families are used.

', 'ContainerDetail$command' => '

The command that\'s passed to the container.

', 'ContainerOverrides$command' => '

The command to send to the container that overrides the default command from the Docker image or the job definition.

This parameter can\'t contain an empty string.

', 'ContainerProperties$command' => '

The command that\'s passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.

', 'DescribeComputeEnvironmentsRequest$computeEnvironments' => '

A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.

', 'DescribeJobDefinitionsRequest$jobDefinitions' => '

A list of up to 100 job definitions. Each entry in the list can either be an ARN in the format arn:aws:batch:${Region}:${Account}:job-definition/${JobDefinitionName}:${Revision} or a short version using the form ${JobDefinitionName}:${Revision}. This parameter can\'t be used with other parameters.

', 'DescribeJobQueuesRequest$jobQueues' => '

A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.

', 'DescribeJobsRequest$jobs' => '

A list of up to 100 job IDs.

', 'DescribeSchedulingPoliciesRequest$arns' => '

A list of up to 100 scheduling policy Amazon Resource Name (ARN) entries.

', 'EksContainer$command' => '

The entrypoint for the container. This isn\'t run within a shell. If this isn\'t specified, the ENTRYPOINT of the container image is used. Environment variable references are expanded using the container\'s environment.

If the referenced environment variable doesn\'t exist, the reference in the command isn\'t changed. For example, if the reference is to "$(NAME1)" and the NAME1 environment variable doesn\'t exist, the command string will remain "$(NAME1)." $$ is replaced with $ and the resulting string isn\'t expanded. For example, $$(VAR_NAME) will be passed as $(VAR_NAME) whether or not the VAR_NAME environment variable exists. The entrypoint can\'t be updated. For more information, see ENTRYPOINT in the Dockerfile reference and Define a command and arguments for a container and Entrypoint in the Kubernetes documentation.

', 'EksContainer$args' => '

An array of arguments to the entrypoint. If this isn\'t specified, the CMD of the container image is used. This corresponds to the args member in the Entrypoint portion of the Pod in Kubernetes. Environment variable references are expanded using the container\'s environment.

If the referenced environment variable doesn\'t exist, the reference in the command isn\'t changed. For example, if the reference is to "$(NAME1)" and the NAME1 environment variable doesn\'t exist, the command string will remain "$(NAME1)." $$ is replaced with $, and the resulting string isn\'t expanded. For example, $$(VAR_NAME) is passed as $(VAR_NAME) whether or not the VAR_NAME environment variable exists. For more information, see CMD in the Dockerfile reference and Define a command and arguments for a pod in the Kubernetes documentation.

', 'EksContainerDetail$command' => '

The entrypoint for the container. For more information, see Entrypoint in the Kubernetes documentation.

', 'EksContainerDetail$args' => '

An array of arguments to the entrypoint. If this isn\'t specified, the CMD of the container image is used. This corresponds to the args member in the Entrypoint portion of the Pod in Kubernetes. Environment variable references are expanded using the container\'s environment.

If the referenced environment variable doesn\'t exist, the reference in the command isn\'t changed. For example, if the reference is to "$(NAME1)" and the NAME1 environment variable doesn\'t exist, the command string will remain "$(NAME1)". $$ is replaced with $ and the resulting string isn\'t expanded. For example, $$(VAR_NAME) is passed as $(VAR_NAME) whether or not the VAR_NAME environment variable exists. For more information, see CMD in the Dockerfile reference and Define a command and arguments for a pod in the Kubernetes documentation.

', 'EksContainerOverride$command' => '

The command to send to the container that overrides the default command from the Docker image or the job definition.

', 'EksContainerOverride$args' => '

The arguments to the entrypoint to send to the container that overrides the default arguments from the Docker image or the job definition. For more information, see CMD in the Dockerfile reference and Define a command an arguments for a pod in the Kubernetes documentation.

', 'KeyValuesPair$values' => '

The filter values.

', 'Tmpfs$mountOptions' => '

The list of tmpfs volume mount options.

Valid values: "defaults" | "ro" | "rw" | "suid" | "nosuid" | "dev" | "nodev" | "exec" | "noexec" | "sync" | "async" | "dirsync" | "remount" | "mand" | "nomand" | "atime" | "noatime" | "diratime" | "nodiratime" | "bind" | "rbind" | "unbindable" | "runbindable" | "private" | "rprivate" | "shared" | "rshared" | "slave" | "rslave" | "relatime" | "norelatime" | "strictatime" | "nostrictatime" | "mode" | "uid" | "gid" | "nr_inodes" | "nr_blocks" | "mpol"

', ], ], 'SubmitJobRequest' => [ 'base' => '

Contains the parameters for SubmitJob.

', 'refs' => [], ], 'SubmitJobResponse' => [ 'base' => NULL, 'refs' => [], ], 'TagKey' => [ 'base' => NULL, 'refs' => [ 'TagKeysList$member' => NULL, 'TagrisTagsMap$key' => NULL, ], ], 'TagKeysList' => [ 'base' => NULL, 'refs' => [ 'UntagResourceRequest$tagKeys' => '

The keys of the tags to be removed.

', ], ], 'TagResourceRequest' => [ 'base' => '

Contains the parameters for TagResource.

', 'refs' => [], ], 'TagResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'TagValue' => [ 'base' => NULL, 'refs' => [ 'TagrisTagsMap$value' => NULL, ], ], 'TagrisTagsMap' => [ 'base' => NULL, 'refs' => [ 'ComputeEnvironmentDetail$tags' => '

The tags applied to the compute environment.

', 'CreateComputeEnvironmentRequest$tags' => '

The tags that you apply to the compute environment to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging Amazon Web Services Resources in Amazon Web Services General Reference.

These tags can be updated or removed using the TagResource and UntagResource API operations. These tags don\'t propagate to the underlying compute resources.

', 'CreateJobQueueRequest$tags' => '

The tags that you apply to the job queue to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging your Batch resources in Batch User Guide.

', 'CreateSchedulingPolicyRequest$tags' => '

The tags that you apply to the scheduling policy to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging Amazon Web Services Resources in Amazon Web Services General Reference.

These tags can be updated or removed using the TagResource and UntagResource API operations.

', 'JobDefinition$tags' => '

The tags that are applied to the job definition.

', 'JobDetail$tags' => '

The tags that are applied to the job.

', 'JobQueueDetail$tags' => '

The tags that are applied to the job queue. For more information, see Tagging your Batch resources in Batch User Guide.

', 'ListTagsForResourceResponse$tags' => '

The tags for the resource.

', 'RegisterJobDefinitionRequest$tags' => '

The tags that you apply to the job definition to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging Amazon Web Services Resources in Batch User Guide.

', 'SchedulingPolicyDetail$tags' => '

The tags that you apply to the scheduling policy to categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging Amazon Web Services resources in Amazon Web Services General Reference.

', 'SubmitJobRequest$tags' => '

The tags that you apply to the job request to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging Amazon Web Services Resources in Amazon Web Services General Reference.

', 'TagResourceRequest$tags' => '

The tags that you apply to the resource to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging Amazon Web Services Resources in Amazon Web Services General Reference.

', ], ], 'TagsMap' => [ 'base' => NULL, 'refs' => [ 'ComputeResource$tags' => '

Key-value pair tags to be applied to EC2 resources that are launched in the compute environment. For Batch, these take the form of "String1": "String2", where String1 is the tag key and String2 is the tag value-for example, { "Name": "Batch Instance - C4OnDemand" }. This is helpful for recognizing your Batch instances in the Amazon EC2 console. Updating these tags requires an infrastructure update to the compute environment. For more information, see Updating compute environments in the Batch User Guide. These tags aren\'t seen when using the Batch ListTagsForResource API operation.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResourceUpdate$tags' => '

Key-value pair tags to be applied to EC2 resources that are launched in the compute environment. For Batch, these take the form of "String1": "String2", where String1 is the tag key and String2 is the tag value-for example, { "Name": "Batch Instance - C4OnDemand" }. This is helpful for recognizing your Batch instances in the Amazon EC2 console. These tags aren\'t seen when using the Batch ListTagsForResource API operation.

When updating a compute environment, changing this setting requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', ], ], 'TerminateJobRequest' => [ 'base' => '

Contains the parameters for TerminateJob.

', 'refs' => [], ], 'TerminateJobResponse' => [ 'base' => NULL, 'refs' => [], ], 'Tmpfs' => [ 'base' => '

The container path, mount options, and size of the tmpfs mount.

This object isn\'t applicable to jobs that are running on Fargate resources.

', 'refs' => [ 'TmpfsList$member' => NULL, ], ], 'TmpfsList' => [ 'base' => NULL, 'refs' => [ 'LinuxParameters$tmpfs' => '

The container path, mount options, and size (in MiB) of the tmpfs mount. This parameter maps to the --tmpfs option to docker run.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t provide this parameter for this resource type.

', ], ], 'Ulimit' => [ 'base' => '

The ulimit settings to pass to the container. For more information, see Ulimit.

This object isn\'t applicable to jobs that are running on Fargate resources.

', 'refs' => [ 'Ulimits$member' => NULL, ], ], 'Ulimits' => [ 'base' => NULL, 'refs' => [ 'ContainerDetail$ulimits' => '

A list of ulimit values to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

This parameter isn\'t applicable to jobs that are running on Fargate resources.

', 'ContainerProperties$ulimits' => '

A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

This parameter isn\'t applicable to jobs that are running on Fargate resources and shouldn\'t be provided.

', ], ], 'UntagResourceRequest' => [ 'base' => '

Contains the parameters for UntagResource.

', 'refs' => [], ], 'UntagResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateComputeEnvironmentRequest' => [ 'base' => '

Contains the parameters for UpdateComputeEnvironment.

', 'refs' => [], ], 'UpdateComputeEnvironmentResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateJobQueueRequest' => [ 'base' => '

Contains the parameters for UpdateJobQueue.

', 'refs' => [], ], 'UpdateJobQueueResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdatePolicy' => [ 'base' => '

Specifies the infrastructure update policy for the compute environment. For more information about infrastructure updates, see Updating compute environments in the Batch User Guide.

', 'refs' => [ 'ComputeEnvironmentDetail$updatePolicy' => '

Specifies the infrastructure update policy for the compute environment. For more information about infrastructure updates, see Updating compute environments in the Batch User Guide.

', 'UpdateComputeEnvironmentRequest$updatePolicy' => '

Specifies the updated infrastructure update policy for the compute environment. For more information about infrastructure updates, see Updating compute environments in the Batch User Guide.

', ], ], 'UpdateSchedulingPolicyRequest' => [ 'base' => '

Contains the parameters for UpdateSchedulingPolicy.

', 'refs' => [], ], 'UpdateSchedulingPolicyResponse' => [ 'base' => NULL, 'refs' => [], ], 'Volume' => [ 'base' => '

A data volume that\'s used in a job\'s container properties.

', 'refs' => [ 'Volumes$member' => NULL, ], ], 'Volumes' => [ 'base' => NULL, 'refs' => [ 'ContainerDetail$volumes' => '

A list of volumes that are associated with the job.

', 'ContainerProperties$volumes' => '

A list of data volumes used in a job.

', ], ], ],]; +return [ 'version' => '2.0', 'service' => 'Batch

Using Batch, you can run batch computing workloads on the Amazon Web Services Cloud. Batch computing is a common means for developers, scientists, and engineers to access large amounts of compute resources. Batch uses the advantages of the batch computing to remove the undifferentiated heavy lifting of configuring and managing required infrastructure. At the same time, it also adopts a familiar batch computing software approach. You can use Batch to efficiently provision resources d, and work toward eliminating capacity constraints, reducing your overall compute costs, and delivering results more quickly.

As a fully managed service, Batch can run batch computing workloads of any scale. Batch automatically provisions compute resources and optimizes workload distribution based on the quantity and scale of your specific workloads. With Batch, there\'s no need to install or manage batch computing software. This means that you can focus on analyzing results and solving your specific problems instead.

', 'operations' => [ 'CancelJob' => '

Cancels a job in an Batch job queue. Jobs that are in the SUBMITTED or PENDING are canceled. A job inRUNNABLE remains in RUNNABLE until it reaches the head of the job queue. Then the job status is updated to FAILED.

A PENDING job is canceled after all dependency jobs are completed. Therefore, it may take longer than expected to cancel a job in PENDING status.

When you try to cancel an array parent job in PENDING, Batch attempts to cancel all child jobs. The array parent job is canceled when all child jobs are completed.

Jobs that progressed to the STARTING or RUNNING state aren\'t canceled. However, the API operation still succeeds, even if no job is canceled. These jobs must be terminated with the TerminateJob operation.

', 'CreateComputeEnvironment' => '

Creates an Batch compute environment. You can create MANAGED or UNMANAGED compute environments. MANAGED compute environments can use Amazon EC2 or Fargate resources. UNMANAGED compute environments can only use EC2 resources.

In a managed compute environment, Batch manages the capacity and instance types of the compute resources within the environment. This is based on the compute resource specification that you define or the launch template that you specify when you create the compute environment. Either, you can choose to use EC2 On-Demand Instances and EC2 Spot Instances. Or, you can use Fargate and Fargate Spot capacity in your managed compute environment. You can optionally set a maximum price so that Spot Instances only launch when the Spot Instance price is less than a specified percentage of the On-Demand price.

Multi-node parallel jobs aren\'t supported on Spot Instances.

In an unmanaged compute environment, you can manage your own EC2 compute resources and have flexibility with how you configure your compute resources. For example, you can use custom AMIs. However, you must verify that each of your AMIs meet the Amazon ECS container instance AMI specification. For more information, see container instance AMIs in the Amazon Elastic Container Service Developer Guide. After you created your unmanaged compute environment, you can use the DescribeComputeEnvironments operation to find the Amazon ECS cluster that\'s associated with it. Then, launch your container instances into that Amazon ECS cluster. For more information, see Launching an Amazon ECS container instance in the Amazon Elastic Container Service Developer Guide.

To create a compute environment that uses EKS resources, the caller must have permissions to call eks:DescribeCluster.

Batch doesn\'t automatically upgrade the AMIs in a compute environment after it\'s created. For example, it also doesn\'t update the AMIs in your compute environment when a newer version of the Amazon ECS optimized AMI is available. You\'re responsible for the management of the guest operating system. This includes any updates and security patches. You\'re also responsible for any additional application software or utilities that you install on the compute resources. There are two ways to use a new AMI for your Batch jobs. The original method is to complete these steps:

  1. Create a new compute environment with the new AMI.

  2. Add the compute environment to an existing job queue.

  3. Remove the earlier compute environment from your job queue.

  4. Delete the earlier compute environment.

In April 2022, Batch added enhanced support for updating compute environments. For more information, see Updating compute environments. To use the enhanced updating of compute environments to update AMIs, follow these rules:

  • Either don\'t set the service role (serviceRole) parameter or set it to the AWSBatchServiceRole service-linked role.

  • Set the allocation strategy (allocationStrategy) parameter to BEST_FIT_PROGRESSIVE, SPOT_CAPACITY_OPTIMIZED, or SPOT_PRICE_CAPACITY_OPTIMIZED.

  • Set the update to latest image version (updateToLatestImageVersion) parameter to true. The updateToLatestImageVersion parameter is used when you update a compute environment. This parameter is ignored when you create a compute environment.

  • Don\'t specify an AMI ID in imageId, imageIdOverride (in ec2Configuration ), or in the launch template (launchTemplate). In that case, Batch selects the latest Amazon ECS optimized AMI that\'s supported by Batch at the time the infrastructure update is initiated. Alternatively, you can specify the AMI ID in the imageId or imageIdOverride parameters, or the launch template identified by the LaunchTemplate properties. Changing any of these properties starts an infrastructure update. If the AMI ID is specified in the launch template, it can\'t be replaced by specifying an AMI ID in either the imageId or imageIdOverride parameters. It can only be replaced by specifying a different launch template, or if the launch template version is set to $Default or $Latest, by setting either a new default version for the launch template (if $Default) or by adding a new version to the launch template (if $Latest).

If these rules are followed, any update that starts an infrastructure update causes the AMI ID to be re-selected. If the version setting in the launch template (launchTemplate) is set to $Latest or $Default, the latest or default version of the launch template is evaluated up at the time of the infrastructure update, even if the launchTemplate wasn\'t updated.

', 'CreateJobQueue' => '

Creates an Batch job queue. When you create a job queue, you associate one or more compute environments to the queue and assign an order of preference for the compute environments.

You also set a priority to the job queue that determines the order that the Batch scheduler places jobs onto its associated compute environments. For example, if a compute environment is associated with more than one job queue, the job queue with a higher priority is given preference for scheduling jobs to that compute environment.

', 'CreateSchedulingPolicy' => '

Creates an Batch scheduling policy.

', 'DeleteComputeEnvironment' => '

Deletes an Batch compute environment.

Before you can delete a compute environment, you must set its state to DISABLED with the UpdateComputeEnvironment API operation and disassociate it from any job queues with the UpdateJobQueue API operation. Compute environments that use Fargate resources must terminate all active jobs on that compute environment before deleting the compute environment. If this isn\'t done, the compute environment enters an invalid state.

', 'DeleteJobQueue' => '

Deletes the specified job queue. You must first disable submissions for a queue with the UpdateJobQueue operation. All jobs in the queue are eventually terminated when you delete a job queue. The jobs are terminated at a rate of about 16 jobs each second.

It\'s not necessary to disassociate compute environments from a queue before submitting a DeleteJobQueue request.

', 'DeleteSchedulingPolicy' => '

Deletes the specified scheduling policy.

You can\'t delete a scheduling policy that\'s used in any job queues.

', 'DeregisterJobDefinition' => '

Deregisters an Batch job definition. Job definitions are permanently deleted after 180 days.

', 'DescribeComputeEnvironments' => '

Describes one or more of your compute environments.

If you\'re using an unmanaged compute environment, you can use the DescribeComputeEnvironment operation to determine the ecsClusterArn that you launch your Amazon ECS container instances into.

', 'DescribeJobDefinitions' => '

Describes a list of job definitions. You can specify a status (such as ACTIVE) to only return job definitions that match that status.

', 'DescribeJobQueues' => '

Describes one or more of your job queues.

', 'DescribeJobs' => '

Describes a list of Batch jobs.

', 'DescribeSchedulingPolicies' => '

Describes one or more of your scheduling policies.

', 'ListJobs' => '

Returns a list of Batch jobs.

You must specify only one of the following items:

You can filter the results by job status with the jobStatus parameter. If you don\'t specify a status, only RUNNING jobs are returned.

', 'ListSchedulingPolicies' => '

Returns a list of Batch scheduling policies.

', 'ListTagsForResource' => '

Lists the tags for an Batch resource. Batch resources that support tags are compute environments, jobs, job definitions, job queues, and scheduling policies. ARNs for child jobs of array and multi-node parallel (MNP) jobs aren\'t supported.

', 'RegisterJobDefinition' => '

Registers an Batch job definition.

', 'SubmitJob' => '

Submits an Batch job from a job definition. Parameters that are specified during SubmitJob override parameters defined in the job definition. vCPU and memory requirements that are specified in the resourceRequirements objects in the job definition are the exception. They can\'t be overridden this way using the memory and vcpus parameters. Rather, you must specify updates to job definition parameters in a resourceRequirements object that\'s included in the containerOverrides parameter.

Job queues with a scheduling policy are limited to 500 active fair share identifiers at a time.

Jobs that run on Fargate resources can\'t be guaranteed to run for more than 14 days. This is because, after 14 days, Fargate resources might become unavailable and job might be terminated.

', 'TagResource' => '

Associates the specified tags to a resource with the specified resourceArn. If existing tags on a resource aren\'t specified in the request parameters, they aren\'t changed. When a resource is deleted, the tags that are associated with that resource are deleted as well. Batch resources that support tags are compute environments, jobs, job definitions, job queues, and scheduling policies. ARNs for child jobs of array and multi-node parallel (MNP) jobs aren\'t supported.

', 'TerminateJob' => '

Terminates a job in a job queue. Jobs that are in the STARTING or RUNNING state are terminated, which causes them to transition to FAILED. Jobs that have not progressed to the STARTING state are cancelled.

', 'UntagResource' => '

Deletes specified tags from an Batch resource.

', 'UpdateComputeEnvironment' => '

Updates an Batch compute environment.

', 'UpdateJobQueue' => '

Updates a job queue.

', 'UpdateSchedulingPolicy' => '

Updates a scheduling policy.

', ], 'shapes' => [ 'ArrayJobDependency' => [ 'base' => NULL, 'refs' => [ 'JobDependency$type' => '

The type of the job dependency.

', ], ], 'ArrayJobStatusSummary' => [ 'base' => NULL, 'refs' => [ 'ArrayPropertiesDetail$statusSummary' => '

A summary of the number of array job children in each available job status. This parameter is returned for parent array jobs.

', ], ], 'ArrayProperties' => [ 'base' => '

An object that represents an Batch array job.

', 'refs' => [ 'SubmitJobRequest$arrayProperties' => '

The array properties for the submitted job, such as the size of the array. The array size can be between 2 and 10,000. If you specify array properties for a job, it becomes an array job. For more information, see Array Jobs in the Batch User Guide.

', ], ], 'ArrayPropertiesDetail' => [ 'base' => '

An object that represents the array properties of a job.

', 'refs' => [ 'JobDetail$arrayProperties' => '

The array properties of the job, if it\'s an array job.

', ], ], 'ArrayPropertiesSummary' => [ 'base' => '

An object that represents the array properties of a job.

', 'refs' => [ 'JobSummary$arrayProperties' => '

The array properties of the job, if it\'s an array job.

', ], ], 'AssignPublicIp' => [ 'base' => NULL, 'refs' => [ 'NetworkConfiguration$assignPublicIp' => '

Indicates whether the job has a public IP address. For a job that\'s running on Fargate resources in a private subnet to send outbound traffic to the internet (for example, to pull container images), the private subnet requires a NAT gateway be attached to route requests to the internet. For more information, see Amazon ECS task networking in the Amazon Elastic Container Service Developer Guide. The default value is "DISABLED".

', ], ], 'AttemptContainerDetail' => [ 'base' => '

An object that represents the details of a container that\'s part of a job attempt.

', 'refs' => [ 'AttemptDetail$container' => '

The details for the container in this job attempt.

', ], ], 'AttemptDetail' => [ 'base' => '

An object that represents a job attempt.

', 'refs' => [ 'AttemptDetails$member' => NULL, ], ], 'AttemptDetails' => [ 'base' => NULL, 'refs' => [ 'JobDetail$attempts' => '

A list of job attempts that are associated with this job.

', ], ], 'Boolean' => [ 'base' => NULL, 'refs' => [ 'ComputeResourceUpdate$updateToLatestImageVersion' => '

Specifies whether the AMI ID is updated to the latest one that\'s supported by Batch when the compute environment has an infrastructure update. The default value is false.

An AMI ID can either be specified in the imageId or imageIdOverride parameters or be determined by the launch template that\'s specified in the launchTemplate parameter. If an AMI ID is specified any of these ways, this parameter is ignored. For more information about to update AMI IDs during an infrastructure update, see Updating the AMI ID in the Batch User Guide.

When updating a compute environment, changing this setting requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

', 'ContainerDetail$readonlyRootFilesystem' => '

When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run .

', 'ContainerDetail$privileged' => '

When this parameter is true, the container is given elevated permissions on the host container instance (similar to the root user). The default value is false.

This parameter isn\'t applicable to jobs that are running on Fargate resources and shouldn\'t be provided, or specified as false.

', 'ContainerProperties$readonlyRootFilesystem' => '

When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

', 'ContainerProperties$privileged' => '

When this parameter is true, the container is given elevated permissions on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run. The default value is false.

This parameter isn\'t applicable to jobs that are running on Fargate resources and shouldn\'t be provided, or specified as false.

', 'EksContainerSecurityContext$privileged' => '

When this parameter is true, the container is given elevated permissions on the host container instance. The level of permissions are similar to the root user permissions. The default value is false. This parameter maps to privileged policy in the Privileged pod security policies in the Kubernetes documentation.

', 'EksContainerSecurityContext$readOnlyRootFilesystem' => '

When this parameter is true, the container is given read-only access to its root file system. The default value is false. This parameter maps to ReadOnlyRootFilesystem policy in the Volumes and file systems pod security policies in the Kubernetes documentation.

', 'EksContainerSecurityContext$runAsNonRoot' => '

When this parameter is specified, the container is run as a user with a uid other than 0. If this parameter isn\'t specified, so such rule is enforced. This parameter maps to RunAsUser and MustRunAsNonRoot policy in the Users and groups pod security policies in the Kubernetes documentation.

', 'EksContainerVolumeMount$readOnly' => '

If this value is true, the container has read-only access to the volume. Otherwise, the container can write to the volume. The default value is false.

', 'EksPodProperties$hostNetwork' => '

Indicates if the pod uses the hosts\' network IP address. The default value is true. Setting this to false enables the Kubernetes pod networking model. Most Batch workloads are egress-only and don\'t require the overhead of IP allocation for each pod for incoming connections. For more information, see Host namespaces and Pod networking in the Kubernetes documentation.

', 'EksPodProperties$shareProcessNamespace' => '

Indicates if the processes in a container are shared, or visible, to other containers in the same pod. For more information, see Share Process Namespace between Containers in a Pod.

', 'EksPodPropertiesDetail$hostNetwork' => '

Indicates if the pod uses the hosts\' network IP address. The default value is true. Setting this to false enables the Kubernetes pod networking model. Most Batch workloads are egress-only and don\'t require the overhead of IP allocation for each pod for incoming connections. For more information, see Host namespaces and Pod networking in the Kubernetes documentation.

', 'EksPodPropertiesDetail$shareProcessNamespace' => '

Indicates if the processes in a container are shared, or visible, to other containers in the same pod. For more information, see Share Process Namespace between Containers in a Pod.

', 'EksSecret$optional' => '

Specifies whether the secret or the secret\'s keys must be defined.

', 'JobDefinition$propagateTags' => '

Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags aren\'t propagated. Tags can only be propagated to the tasks when the tasks are created. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the FAILED state.

', 'JobDetail$propagateTags' => '

Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags aren\'t propagated. Tags can only be propagated to the tasks when the tasks are created. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the FAILED state.

', 'JobDetail$isCancelled' => '

Indicates whether the job is canceled.

', 'JobDetail$isTerminated' => '

Indicates whether the job is terminated.

', 'LinuxParameters$initProcessEnabled' => '

If true, run an init process inside the container that forwards signals and reaps processes. This parameter maps to the --init option to docker run. This parameter requires version 1.25 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version | grep "Server API version"

', 'MountPoint$readOnly' => '

If this value is true, the container has read-only access to the volume. Otherwise, the container can write to the volume. The default value is false.

', 'NodeDetails$isMainNode' => '

Specifies whether the current node is the main node for a multi-node parallel job.

', 'NodePropertiesSummary$isMainNode' => '

Specifies whether the current node is the main node for a multi-node parallel job.

', 'RegisterJobDefinitionRequest$propagateTags' => '

Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags are not propagated. Tags can only be propagated to the tasks during task creation. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the FAILED state.

If the job runs on Amazon EKS resources, then you must not specify propagateTags.

', 'SubmitJobRequest$propagateTags' => '

Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags aren\'t propagated. Tags can only be propagated to the tasks during task creation. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the FAILED state. When specified, this overrides the tag propagation setting in the job definition.

', 'TaskContainerDetails$essential' => '

If the essential parameter of a container is marked as true, and that container fails or stops for any reason, all other containers that are part of the task are stopped. If the essential parameter of a container is marked as false, its failure doesn\'t affect the rest of the containers in a task. If this parameter is omitted, a container is assumed to be essential.

All tasks must have at least one essential container. If you have an application that\'s composed of multiple containers, group containers that are used for a common purpose into components, and separate the different components into multiple task definitions. For more information, see Application Architecture in the Amazon Elastic Container Service Developer Guide.

', 'TaskContainerDetails$privileged' => '

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

This parameter is not supported for Windows containers or tasks run on Fargate.

', 'TaskContainerDetails$readonlyRootFilesystem' => '

When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

This parameter is not supported for Windows containers.

', 'TaskContainerProperties$essential' => '

If the essential parameter of a container is marked as true, and that container fails or stops for any reason, all other containers that are part of the task are stopped. If the essential parameter of a container is marked as false, its failure doesn\'t affect the rest of the containers in a task. If this parameter is omitted, a container is assumed to be essential.

All tasks must have at least one essential container. If you have an application that\'s composed of multiple containers, group containers that are used for a common purpose into components, and separate the different components into multiple task definitions. For more information, see Application Architecture in the Amazon Elastic Container Service Developer Guide.

', 'TaskContainerProperties$privileged' => '

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

This parameter is not supported for Windows containers or tasks run on Fargate.

', 'TaskContainerProperties$readonlyRootFilesystem' => '

When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

This parameter is not supported for Windows containers.

', 'UpdatePolicy$terminateJobsOnUpdate' => '

Specifies whether jobs are automatically terminated when the computer environment infrastructure is updated. The default value is false.

', ], ], 'CEState' => [ 'base' => NULL, 'refs' => [ 'ComputeEnvironmentDetail$state' => '

The state of the compute environment. The valid values are ENABLED or DISABLED.

If the state is ENABLED, then the Batch scheduler can attempt to place jobs from an associated job queue on the compute resources within the environment. If the compute environment is managed, then it can scale its instances out or in automatically based on the job queue demand.

If the state is DISABLED, then the Batch scheduler doesn\'t attempt to place jobs within the environment. Jobs in a STARTING or RUNNING state continue to progress normally. Managed compute environments in the DISABLED state don\'t scale out.

Compute environments in a DISABLED state may continue to incur billing charges. To prevent additional charges, turn off and then delete the compute environment. For more information, see State in the Batch User Guide.

When an instance is idle, the instance scales down to the minvCpus value. However, the instance size doesn\'t change. For example, consider a c5.8xlarge instance with a minvCpus value of 4 and a desiredvCpus value of 36. This instance doesn\'t scale down to a c5.large instance.

', 'CreateComputeEnvironmentRequest$state' => '

The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.

If the state is ENABLED, then the Batch scheduler can attempt to place jobs from an associated job queue on the compute resources within the environment. If the compute environment is managed, then it can scale its instances out or in automatically, based on the job queue demand.

If the state is DISABLED, then the Batch scheduler doesn\'t attempt to place jobs within the environment. Jobs in a STARTING or RUNNING state continue to progress normally. Managed compute environments in the DISABLED state don\'t scale out.

Compute environments in a DISABLED state may continue to incur billing charges. To prevent additional charges, turn off and then delete the compute environment. For more information, see State in the Batch User Guide.

When an instance is idle, the instance scales down to the minvCpus value. However, the instance size doesn\'t change. For example, consider a c5.8xlarge instance with a minvCpus value of 4 and a desiredvCpus value of 36. This instance doesn\'t scale down to a c5.large instance.

', 'UpdateComputeEnvironmentRequest$state' => '

The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.

If the state is ENABLED, then the Batch scheduler can attempt to place jobs from an associated job queue on the compute resources within the environment. If the compute environment is managed, then it can scale its instances out or in automatically, based on the job queue demand.

If the state is DISABLED, then the Batch scheduler doesn\'t attempt to place jobs within the environment. Jobs in a STARTING or RUNNING state continue to progress normally. Managed compute environments in the DISABLED state don\'t scale out.

Compute environments in a DISABLED state may continue to incur billing charges. To prevent additional charges, turn off and then delete the compute environment. For more information, see State in the Batch User Guide.

When an instance is idle, the instance scales down to the minvCpus value. However, the instance size doesn\'t change. For example, consider a c5.8xlarge instance with a minvCpus value of 4 and a desiredvCpus value of 36. This instance doesn\'t scale down to a c5.large instance.

', ], ], 'CEStatus' => [ 'base' => NULL, 'refs' => [ 'ComputeEnvironmentDetail$status' => '

The current status of the compute environment (for example, CREATING or VALID).

', ], ], 'CEType' => [ 'base' => NULL, 'refs' => [ 'ComputeEnvironmentDetail$type' => '

The type of the compute environment: MANAGED or UNMANAGED. For more information, see Compute environments in the Batch User Guide.

', 'CreateComputeEnvironmentRequest$type' => '

The type of the compute environment: MANAGED or UNMANAGED. For more information, see Compute Environments in the Batch User Guide.

', ], ], 'CRAllocationStrategy' => [ 'base' => NULL, 'refs' => [ 'ComputeResource$allocationStrategy' => '

The allocation strategy to use for the compute resource if not enough instances of the best fitting instance type can be allocated. This might be because of availability of the instance type in the Region or Amazon EC2 service limits. For more information, see Allocation strategies in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

BEST_FIT (default)

Batch selects an instance type that best fits the needs of the jobs with a preference for the lowest-cost instance type. If additional instances of the selected instance type aren\'t available, Batch waits for the additional instances to be available. If there aren\'t enough instances available or the user is reaching Amazon EC2 service limits, additional jobs aren\'t run until the currently running jobs are completed. This allocation strategy keeps costs lower but can limit scaling. If you\'re using Spot Fleets with BEST_FIT, the Spot Fleet IAM Role must be specified. Compute resources that use a BEST_FIT allocation strategy don\'t support infrastructure updates and can\'t update some parameters. For more information, see Updating compute environments in the Batch User Guide.

BEST_FIT_PROGRESSIVE

Batch selects additional instance types that are large enough to meet the requirements of the jobs in the queue. Its preference is for instance types with lower cost vCPUs. If additional instances of the previously selected instance types aren\'t available, Batch selects new instance types.

SPOT_CAPACITY_OPTIMIZED

Batch selects one or more instance types that are large enough to meet the requirements of the jobs in the queue. Its preference is for instance types that are less likely to be interrupted. This allocation strategy is only available for Spot Instance compute resources.

SPOT_PRICE_CAPACITY_OPTIMIZED

The price and capacity optimized allocation strategy looks at both price and capacity to select the Spot Instance pools that are the least likely to be interrupted and have the lowest possible price. This allocation strategy is only available for Spot Instance compute resources.

With BEST_FIT_PROGRESSIVE,SPOT_CAPACITY_OPTIMIZED and SPOT_PRICE_CAPACITY_OPTIMIZED (recommended) strategies using On-Demand or Spot Instances, and the BEST_FIT strategy using Spot Instances, Batch might need to exceed maxvCpus to meet your capacity requirements. In this event, Batch never exceeds maxvCpus by more than a single instance.

', ], ], 'CRType' => [ 'base' => NULL, 'refs' => [ 'ComputeResource$type' => '

The type of compute environment: EC2, SPOT, FARGATE, or FARGATE_SPOT. For more information, see Compute environments in the Batch User Guide.

If you choose SPOT, you must also specify an Amazon EC2 Spot Fleet role with the spotIamFleetRole parameter. For more information, see Amazon EC2 spot fleet role in the Batch User Guide.

', 'ComputeResourceUpdate$type' => '

The type of compute environment: EC2, SPOT, FARGATE, or FARGATE_SPOT. For more information, see Compute environments in the Batch User Guide.

If you choose SPOT, you must also specify an Amazon EC2 Spot Fleet role with the spotIamFleetRole parameter. For more information, see Amazon EC2 spot fleet role in the Batch User Guide.

When updating a compute environment, changing the type of a compute environment requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

', ], ], 'CRUpdateAllocationStrategy' => [ 'base' => NULL, 'refs' => [ 'ComputeResourceUpdate$allocationStrategy' => '

The allocation strategy to use for the compute resource if there\'s not enough instances of the best fitting instance type that can be allocated. This might be because of availability of the instance type in the Region or Amazon EC2 service limits. For more information, see Allocation strategies in the Batch User Guide.

When updating a compute environment, changing the allocation strategy requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide. BEST_FIT isn\'t supported when updating a compute environment.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

BEST_FIT_PROGRESSIVE

Batch selects additional instance types that are large enough to meet the requirements of the jobs in the queue. Its preference is for instance types with lower cost vCPUs. If additional instances of the previously selected instance types aren\'t available, Batch selects new instance types.

SPOT_CAPACITY_OPTIMIZED

Batch selects one or more instance types that are large enough to meet the requirements of the jobs in the queue. Its preference is for instance types that are less likely to be interrupted. This allocation strategy is only available for Spot Instance compute resources.

SPOT_PRICE_CAPACITY_OPTIMIZED

The price and capacity optimized allocation strategy looks at both price and capacity to select the Spot Instance pools that are the least likely to be interrupted and have the lowest possible price. This allocation strategy is only available for Spot Instance compute resources.

With BEST_FIT_PROGRESSIVE,SPOT_CAPACITY_OPTIMIZED and SPOT_PRICE_CAPACITY_OPTIMIZED (recommended) strategies using On-Demand or Spot Instances, and the BEST_FIT strategy using Spot Instances, Batch might need to exceed maxvCpus to meet your capacity requirements. In this event, Batch never exceeds maxvCpus by more than a single instance.

', ], ], 'CancelJobRequest' => [ 'base' => '

Contains the parameters for CancelJob.

', 'refs' => [], ], 'CancelJobResponse' => [ 'base' => NULL, 'refs' => [], ], 'ClientException' => [ 'base' => '

These errors are usually caused by a client action. One example cause is using an action or resource on behalf of a user that doesn\'t have permissions to use the action or resource. Another cause is specifying an identifier that\'s not valid.

', 'refs' => [], ], 'ComputeEnvironmentDetail' => [ 'base' => '

An object that represents an Batch compute environment.

', 'refs' => [ 'ComputeEnvironmentDetailList$member' => NULL, ], ], 'ComputeEnvironmentDetailList' => [ 'base' => NULL, 'refs' => [ 'DescribeComputeEnvironmentsResponse$computeEnvironments' => '

The list of compute environments.

', ], ], 'ComputeEnvironmentOrder' => [ 'base' => '

The order that compute environments are tried in for job placement within a queue. Compute environments are tried in ascending order. For example, if two compute environments are associated with a job queue, the compute environment with a lower order integer value is tried for job placement first. Compute environments must be in the VALID state before you can associate them with a job queue. All of the compute environments must be either EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT); Amazon EC2 and Fargate compute environments can\'t be mixed.

All compute environments that are associated with a job queue must share the same architecture. Batch doesn\'t support mixing compute environment architecture types in a single job queue.

', 'refs' => [ 'ComputeEnvironmentOrders$member' => NULL, ], ], 'ComputeEnvironmentOrders' => [ 'base' => NULL, 'refs' => [ 'CreateJobQueueRequest$computeEnvironmentOrder' => '

The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment runs a specific job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to three compute environments with a job queue. All of the compute environments must be either EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT); EC2 and Fargate compute environments can\'t be mixed.

All compute environments that are associated with a job queue must share the same architecture. Batch doesn\'t support mixing compute environment architecture types in a single job queue.

', 'JobQueueDetail$computeEnvironmentOrder' => '

The compute environments that are attached to the job queue and the order that job placement is preferred. Compute environments are selected for job placement in ascending order.

', 'UpdateJobQueueRequest$computeEnvironmentOrder' => '

Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment runs a given job. Compute environments must be in the VALID state before you can associate them with a job queue. All of the compute environments must be either EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT). EC2 and Fargate compute environments can\'t be mixed.

All compute environments that are associated with a job queue must share the same architecture. Batch doesn\'t support mixing compute environment architecture types in a single job queue.

', ], ], 'ComputeResource' => [ 'base' => '

An object that represents an Batch compute resource. For more information, see Compute environments in the Batch User Guide.

', 'refs' => [ 'ComputeEnvironmentDetail$computeResources' => '

The compute resources defined for the compute environment. For more information, see Compute environments in the Batch User Guide.

', 'CreateComputeEnvironmentRequest$computeResources' => '

Details about the compute resources managed by the compute environment. This parameter is required for managed compute environments. For more information, see Compute Environments in the Batch User Guide.

', ], ], 'ComputeResourceUpdate' => [ 'base' => '

An object that represents the attributes of a compute environment that can be updated. For more information, see Updating compute environments in the Batch User Guide.

', 'refs' => [ 'UpdateComputeEnvironmentRequest$computeResources' => '

Details of the compute resources managed by the compute environment. Required for a managed compute environment. For more information, see Compute Environments in the Batch User Guide.

', ], ], 'ContainerDetail' => [ 'base' => '

An object that represents the details of a container that\'s part of a job.

', 'refs' => [ 'JobDetail$container' => '

An object that represents the details for the container that\'s associated with the job. If the details are for a multiple-container job, this object will be empty.

', ], ], 'ContainerOverrides' => [ 'base' => '

The overrides that should be sent to a container.

For information about using Batch overrides when you connect event sources to targets, see BatchContainerOverrides.

', 'refs' => [ 'NodePropertyOverride$containerOverrides' => '

The overrides that are sent to a node range.

', 'SubmitJobRequest$containerOverrides' => '

An object with properties that override the defaults for the job definition that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container, which is specified in the job definition or the Docker image, with a command override. You can also override existing environment variables on a container or add new environment variables to it with an environment override.

', ], ], 'ContainerProperties' => [ 'base' => '

Container properties are used for Amazon ECS based job definitions. These properties to describe the container that\'s launched as part of a job.

', 'refs' => [ 'JobDefinition$containerProperties' => '

An object with properties specific to Amazon ECS-based jobs. When containerProperties is used in the job definition, it can\'t be used in addition to eksProperties, ecsProperties, or nodeProperties.

', 'NodeRangeProperty$container' => '

The container details for the node range.

', 'RegisterJobDefinitionRequest$containerProperties' => '

An object with properties specific to Amazon ECS-based single-node container-based jobs. If the job definition\'s type parameter is container, then you must specify either containerProperties or nodeProperties. This must not be specified for Amazon EKS-based job definitions.

If the job runs on Fargate resources, then you must not specify nodeProperties; use only containerProperties.

', ], ], 'ContainerSummary' => [ 'base' => '

An object that represents summary details of a container within a job.

', 'refs' => [ 'JobSummary$container' => '

An object that represents the details of the container that\'s associated with the job.

', ], ], 'CreateComputeEnvironmentRequest' => [ 'base' => '

Contains the parameters for CreateComputeEnvironment.

', 'refs' => [], ], 'CreateComputeEnvironmentResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateJobQueueRequest' => [ 'base' => '

Contains the parameters for CreateJobQueue.

', 'refs' => [], ], 'CreateJobQueueResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateSchedulingPolicyRequest' => [ 'base' => '

Contains the parameters for CreateSchedulingPolicy.

', 'refs' => [], ], 'CreateSchedulingPolicyResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteComputeEnvironmentRequest' => [ 'base' => '

Contains the parameters for DeleteComputeEnvironment.

', 'refs' => [], ], 'DeleteComputeEnvironmentResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteJobQueueRequest' => [ 'base' => '

Contains the parameters for DeleteJobQueue.

', 'refs' => [], ], 'DeleteJobQueueResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteSchedulingPolicyRequest' => [ 'base' => '

Contains the parameters for DeleteSchedulingPolicy.

', 'refs' => [], ], 'DeleteSchedulingPolicyResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeregisterJobDefinitionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeregisterJobDefinitionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeComputeEnvironmentsRequest' => [ 'base' => '

Contains the parameters for DescribeComputeEnvironments.

', 'refs' => [], ], 'DescribeComputeEnvironmentsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobDefinitionsRequest' => [ 'base' => '

Contains the parameters for DescribeJobDefinitions.

', 'refs' => [], ], 'DescribeJobDefinitionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobQueuesRequest' => [ 'base' => '

Contains the parameters for DescribeJobQueues.

', 'refs' => [], ], 'DescribeJobQueuesResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobsRequest' => [ 'base' => '

Contains the parameters for DescribeJobs.

', 'refs' => [], ], 'DescribeJobsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSchedulingPoliciesRequest' => [ 'base' => '

Contains the parameters for DescribeSchedulingPolicies.

', 'refs' => [], ], 'DescribeSchedulingPoliciesResponse' => [ 'base' => NULL, 'refs' => [], ], 'Device' => [ 'base' => '

An object that represents a container instance host device.

This object isn\'t applicable to jobs that are running on Fargate resources and shouldn\'t be provided.

', 'refs' => [ 'DevicesList$member' => NULL, ], ], 'DeviceCgroupPermission' => [ 'base' => NULL, 'refs' => [ 'DeviceCgroupPermissions$member' => NULL, ], ], 'DeviceCgroupPermissions' => [ 'base' => NULL, 'refs' => [ 'Device$permissions' => '

The explicit permissions to provide to the container for the device. By default, the container has permissions for read, write, and mknod for the device.

', ], ], 'DevicesList' => [ 'base' => NULL, 'refs' => [ 'LinuxParameters$devices' => '

Any of the host devices to expose to the container. This parameter maps to Devices in the Create a container section of the Docker Remote API and the --device option to docker run.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t provide it for these jobs.

', ], ], 'EFSAuthorizationConfig' => [ 'base' => '

The authorization configuration details for the Amazon EFS file system.

', 'refs' => [ 'EFSVolumeConfiguration$authorizationConfig' => '

The authorization configuration details for the Amazon EFS file system.

', ], ], 'EFSAuthorizationConfigIAM' => [ 'base' => NULL, 'refs' => [ 'EFSAuthorizationConfig$iam' => '

Whether or not to use the Batch job IAM role defined in a job definition when mounting the Amazon EFS file system. If enabled, transit encryption must be enabled in the EFSVolumeConfiguration. If this parameter is omitted, the default value of DISABLED is used. For more information, see Using Amazon EFS access points in the Batch User Guide. EFS IAM authorization requires that TransitEncryption be ENABLED and that a JobRoleArn is specified.

', ], ], 'EFSTransitEncryption' => [ 'base' => NULL, 'refs' => [ 'EFSVolumeConfiguration$transitEncryption' => '

Determines whether to enable encryption for Amazon EFS data in transit between the Amazon ECS host and the Amazon EFS server. Transit encryption must be enabled if Amazon EFS IAM authorization is used. If this parameter is omitted, the default value of DISABLED is used. For more information, see Encrypting data in transit in the Amazon Elastic File System User Guide.

', ], ], 'EFSVolumeConfiguration' => [ 'base' => '

This is used when you\'re using an Amazon Elastic File System file system for job storage. For more information, see Amazon EFS Volumes in the Batch User Guide.

', 'refs' => [ 'Volume$efsVolumeConfiguration' => '

This parameter is specified when you\'re using an Amazon Elastic File System file system for job storage. Jobs that are running on Fargate resources must specify a platformVersion of at least 1.4.0.

', ], ], 'Ec2Configuration' => [ 'base' => '

Provides information used to select Amazon Machine Images (AMIs) for instances in the compute environment. If Ec2Configuration isn\'t specified, the default is ECS_AL2 (Amazon Linux 2).

This object isn\'t applicable to jobs that are running on Fargate resources.

', 'refs' => [ 'Ec2ConfigurationList$member' => NULL, ], ], 'Ec2ConfigurationList' => [ 'base' => NULL, 'refs' => [ 'ComputeResource$ec2Configuration' => '

Provides information that\'s used to select Amazon Machine Images (AMIs) for Amazon EC2 instances in the compute environment. If Ec2Configuration isn\'t specified, the default is ECS_AL2.

One or two values can be provided.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResourceUpdate$ec2Configuration' => '

Provides information used to select Amazon Machine Images (AMIs) for Amazon EC2 instances in the compute environment. If Ec2Configuration isn\'t specified, the default is ECS_AL2.

When updating a compute environment, changing this setting requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide. To remove the Amazon EC2 configuration and any custom AMI ID specified in imageIdOverride, set this value to an empty string.

One or two values can be provided.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', ], ], 'EcsProperties' => [ 'base' => '

An object that contains the properties for the Amazon ECS resources of a job.

', 'refs' => [ 'JobDefinition$ecsProperties' => '

An object that contains the properties for the Amazon ECS resources of a job.When ecsProperties is used in the job definition, it can\'t be used in addition to containerProperties, eksProperties, or nodeProperties.

', 'NodeRangeProperty$ecsProperties' => '

This is an object that represents the properties of the node range for a multi-node parallel job.

', 'RegisterJobDefinitionRequest$ecsProperties' => '

An object with properties that are specific to Amazon ECS-based jobs. This must not be specified for Amazon EKS-based job definitions.

', ], ], 'EcsPropertiesDetail' => [ 'base' => '

An object that contains the details for the Amazon ECS resources of a job.

', 'refs' => [ 'JobDetail$ecsProperties' => '

An object with properties that are specific to Amazon ECS-based jobs.

', ], ], 'EcsPropertiesOverride' => [ 'base' => '

An object that contains overrides for the Amazon ECS task definition of a job.

', 'refs' => [ 'NodePropertyOverride$ecsPropertiesOverride' => '

An object that contains the properties that you want to replace for the existing Amazon ECS resources of a job.

', 'SubmitJobRequest$ecsPropertiesOverride' => '

An object, with properties that override defaults for the job definition, can only be specified for jobs that are run on Amazon ECS resources.

', ], ], 'EcsTaskDetails' => [ 'base' => '

The details of a task definition that describes the container and volume definitions of an Amazon ECS task.

', 'refs' => [ 'ListEcsTaskDetails$member' => NULL, ], ], 'EcsTaskProperties' => [ 'base' => '

The properties for a task definition that describes the container and volume definitions of an Amazon ECS task. You can specify which Docker images to use, the required resources, and other configurations related to launching the task definition through an Amazon ECS service or task.

', 'refs' => [ 'ListEcsTaskProperties$member' => NULL, ], ], 'EksAttemptContainerDetail' => [ 'base' => '

An object that represents the details for an attempt for a job attempt that an Amazon EKS container runs.

', 'refs' => [ 'EksAttemptContainerDetails$member' => NULL, ], ], 'EksAttemptContainerDetails' => [ 'base' => NULL, 'refs' => [ 'EksAttemptDetail$containers' => '

The details for the final status of the containers for this job attempt.

', 'EksAttemptDetail$initContainers' => '

The details for the init containers.

', ], ], 'EksAttemptDetail' => [ 'base' => '

An object that represents the details of a job attempt for a job attempt by an Amazon EKS container.

', 'refs' => [ 'EksAttemptDetails$member' => NULL, ], ], 'EksAttemptDetails' => [ 'base' => NULL, 'refs' => [ 'JobDetail$eksAttempts' => '

A list of job attempts that are associated with this job.

', ], ], 'EksConfiguration' => [ 'base' => '

Configuration for the Amazon EKS cluster that supports the Batch compute environment. The cluster must exist before the compute environment can be created.

', 'refs' => [ 'ComputeEnvironmentDetail$eksConfiguration' => '

The configuration for the Amazon EKS cluster that supports the Batch compute environment. Only specify this parameter if the containerOrchestrationType is EKS.

', 'CreateComputeEnvironmentRequest$eksConfiguration' => '

The details for the Amazon EKS cluster that supports the compute environment.

', ], ], 'EksContainer' => [ 'base' => '

EKS container properties are used in job definitions for Amazon EKS based job definitions to describe the properties for a container node in the pod that\'s launched as part of a job. This can\'t be specified for Amazon ECS based job definitions.

', 'refs' => [ 'EksContainers$member' => NULL, ], ], 'EksContainerDetail' => [ 'base' => '

The details for container properties that are returned by DescribeJobs for jobs that use Amazon EKS.

', 'refs' => [ 'EksContainerDetails$member' => NULL, ], ], 'EksContainerDetails' => [ 'base' => NULL, 'refs' => [ 'EksPodPropertiesDetail$containers' => '

The properties of the container that\'s used on the Amazon EKS pod.

', 'EksPodPropertiesDetail$initContainers' => '

The container registered with the Amazon EKS Connector agent and persists the registration information in the Kubernetes backend data store.

', ], ], 'EksContainerEnvironmentVariable' => [ 'base' => '

An environment variable.

', 'refs' => [ 'EksContainerEnvironmentVariables$member' => NULL, ], ], 'EksContainerEnvironmentVariables' => [ 'base' => NULL, 'refs' => [ 'EksContainer$env' => '

The environment variables to pass to a container.

Environment variables cannot start with "AWS_BATCH". This naming convention is reserved for variables that Batch sets.

', 'EksContainerDetail$env' => '

The environment variables to pass to a container.

Environment variables cannot start with "AWS_BATCH". This naming convention is reserved for variables that Batch sets.

', 'EksContainerOverride$env' => '

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch. Or, you can override the existing environment variables from the Docker image or the job definition.

Environment variables cannot start with "AWS_BATCH". This naming convention is reserved for variables that Batch sets.

', ], ], 'EksContainerOverride' => [ 'base' => '

Object representing any Kubernetes overrides to a job definition that\'s used in a SubmitJob API operation.

', 'refs' => [ 'EksContainerOverrideList$member' => NULL, ], ], 'EksContainerOverrideList' => [ 'base' => NULL, 'refs' => [ 'EksPodPropertiesOverride$containers' => '

The overrides for the container that\'s used on the Amazon EKS pod.

', 'EksPodPropertiesOverride$initContainers' => '

The overrides for the conatainers defined in the Amazon EKS pod. These containers run before application containers, always runs to completion, and must complete successfully before the next container starts. These containers are registered with the Amazon EKS Connector agent and persists the registration information in the Kubernetes backend data store. For more information, see Init Containers in the Kubernetes documentation.

This object is limited to 10 elements

', ], ], 'EksContainerResourceRequirements' => [ 'base' => '

The type and amount of resources to assign to a container. The supported resources include memory, cpu, and nvidia.com/gpu. For more information, see Resource management for pods and containers in the Kubernetes documentation.

', 'refs' => [ 'EksContainer$resources' => '

The type and amount of resources to assign to a container. The supported resources include memory, cpu, and nvidia.com/gpu. For more information, see Resource management for pods and containers in the Kubernetes documentation.

', 'EksContainerDetail$resources' => '

The type and amount of resources to assign to a container. The supported resources include memory, cpu, and nvidia.com/gpu. For more information, see Resource management for pods and containers in the Kubernetes documentation.

', 'EksContainerOverride$resources' => '

The type and amount of resources to assign to a container. These override the settings in the job definition. The supported resources include memory, cpu, and nvidia.com/gpu. For more information, see Resource management for pods and containers in the Kubernetes documentation.

', ], ], 'EksContainerSecurityContext' => [ 'base' => '

The security context for a job. For more information, see Configure a security context for a pod or container in the Kubernetes documentation.

', 'refs' => [ 'EksContainer$securityContext' => '

The security context for a job. For more information, see Configure a security context for a pod or container in the Kubernetes documentation.

', 'EksContainerDetail$securityContext' => '

The security context for a job. For more information, see Configure a security context for a pod or container in the Kubernetes documentation.

', ], ], 'EksContainerVolumeMount' => [ 'base' => '

The volume mounts for a container for an Amazon EKS job. For more information about volumes and volume mounts in Kubernetes, see Volumes in the Kubernetes documentation.

', 'refs' => [ 'EksContainerVolumeMounts$member' => NULL, ], ], 'EksContainerVolumeMounts' => [ 'base' => NULL, 'refs' => [ 'EksContainer$volumeMounts' => '

The volume mounts for the container. Batch supports emptyDir, hostPath, and secret volume types. For more information about volumes and volume mounts in Kubernetes, see Volumes in the Kubernetes documentation.

', 'EksContainerDetail$volumeMounts' => '

The volume mounts for the container. Batch supports emptyDir, hostPath, and secret volume types. For more information about volumes and volume mounts in Kubernetes, see Volumes in the Kubernetes documentation.

', ], ], 'EksContainers' => [ 'base' => NULL, 'refs' => [ 'EksPodProperties$containers' => '

The properties of the container that\'s used on the Amazon EKS pod.

', 'EksPodProperties$initContainers' => '

These containers run before application containers, always runs to completion, and must complete successfully before the next container starts. These containers are registered with the Amazon EKS Connector agent and persists the registration information in the Kubernetes backend data store. For more information, see Init Containers in the Kubernetes documentation.

This object is limited to 10 elements

', ], ], 'EksEmptyDir' => [ 'base' => '

Specifies the configuration of a Kubernetes emptyDir volume. An emptyDir volume is first created when a pod is assigned to a node. It exists as long as that pod is running on that node. The emptyDir volume is initially empty. All containers in the pod can read and write the files in the emptyDir volume. However, the emptyDir volume can be mounted at the same or different paths in each container. When a pod is removed from a node for any reason, the data in the emptyDir is deleted permanently. For more information, see emptyDir in the Kubernetes documentation.

', 'refs' => [ 'EksVolume$emptyDir' => '

Specifies the configuration of a Kubernetes emptyDir volume. For more information, see emptyDir in the Kubernetes documentation.

', ], ], 'EksHostPath' => [ 'base' => '

Specifies the configuration of a Kubernetes hostPath volume. A hostPath volume mounts an existing file or directory from the host node\'s filesystem into your pod. For more information, see hostPath in the Kubernetes documentation.

', 'refs' => [ 'EksVolume$hostPath' => '

Specifies the configuration of a Kubernetes hostPath volume. For more information, see hostPath in the Kubernetes documentation.

', ], ], 'EksLabelsMap' => [ 'base' => NULL, 'refs' => [ 'EksMetadata$labels' => '

Key-value pairs used to identify, sort, and organize cube resources. Can contain up to 63 uppercase letters, lowercase letters, numbers, hyphens (-), and underscores (_). Labels can be added or modified at any time. Each resource can have multiple labels, but each key must be unique for a given object.

', ], ], 'EksLimits' => [ 'base' => NULL, 'refs' => [ 'EksContainerResourceRequirements$limits' => '

The type and quantity of the resources to reserve for the container. The values vary based on the name that\'s specified. Resources can be requested using either the limits or the requests objects.

memory

The memory hard limit (in MiB) for the container, using whole integers, with a "Mi" suffix. If your container attempts to exceed the memory specified, the container is terminated. You must specify at least 4 MiB of memory for a job. memory can be specified in limits, requests, or both. If memory is specified in both places, then the value that\'s specified in limits must be equal to the value that\'s specified in requests.

To maximize your resource utilization, provide your jobs with as much memory as possible for the specific instance type that you are using. To learn how, see Memory management in the Batch User Guide.

cpu

The number of CPUs that\'s reserved for the container. Values must be an even multiple of 0.25. cpu can be specified in limits, requests, or both. If cpu is specified in both places, then the value that\'s specified in limits must be at least as large as the value that\'s specified in requests.

nvidia.com/gpu

The number of GPUs that\'s reserved for the container. Values must be a whole integer. memory can be specified in limits, requests, or both. If memory is specified in both places, then the value that\'s specified in limits must be equal to the value that\'s specified in requests.

', ], ], 'EksMetadata' => [ 'base' => '

Describes and uniquely identifies Kubernetes resources. For example, the compute environment that a pod runs in or the jobID for a job running in the pod. For more information, see Understanding Kubernetes Objects in the Kubernetes documentation.

', 'refs' => [ 'EksPodProperties$metadata' => '

Metadata about the Kubernetes pod. For more information, see Understanding Kubernetes Objects in the Kubernetes documentation.

', 'EksPodPropertiesDetail$metadata' => '

Describes and uniquely identifies Kubernetes resources. For example, the compute environment that a pod runs in or the jobID for a job running in the pod. For more information, see Understanding Kubernetes Objects in the Kubernetes documentation.

', 'EksPodPropertiesOverride$metadata' => '

Metadata about the overrides for the container that\'s used on the Amazon EKS pod.

', ], ], 'EksPodProperties' => [ 'base' => '

The properties for the pod.

', 'refs' => [ 'EksProperties$podProperties' => '

The properties for the Kubernetes pod resources of a job.

', ], ], 'EksPodPropertiesDetail' => [ 'base' => '

The details for the pod.

', 'refs' => [ 'EksPropertiesDetail$podProperties' => '

The properties for the Kubernetes pod resources of a job.

', ], ], 'EksPodPropertiesOverride' => [ 'base' => '

An object that contains overrides for the Kubernetes pod properties of a job.

', 'refs' => [ 'EksPropertiesOverride$podProperties' => '

The overrides for the Kubernetes pod resources of a job.

', ], ], 'EksProperties' => [ 'base' => '

An object that contains the properties for the Kubernetes resources of a job.

', 'refs' => [ 'JobDefinition$eksProperties' => '

An object with properties that are specific to Amazon EKS-based jobs. When eksProperties is used in the job definition, it can\'t be used in addition to containerProperties, ecsProperties, or nodeProperties.

', 'RegisterJobDefinitionRequest$eksProperties' => '

An object with properties that are specific to Amazon EKS-based jobs. This must not be specified for Amazon ECS based job definitions.

', ], ], 'EksPropertiesDetail' => [ 'base' => '

An object that contains the details for the Kubernetes resources of a job.

', 'refs' => [ 'JobDetail$eksProperties' => '

An object with various properties that are specific to Amazon EKS based jobs.

', ], ], 'EksPropertiesOverride' => [ 'base' => '

An object that contains overrides for the Kubernetes resources of a job.

', 'refs' => [ 'SubmitJobRequest$eksPropertiesOverride' => '

An object, with properties that override defaults for the job definition, can only be specified for jobs that are run on Amazon EKS resources.

', ], ], 'EksRequests' => [ 'base' => NULL, 'refs' => [ 'EksContainerResourceRequirements$requests' => '

The type and quantity of the resources to request for the container. The values vary based on the name that\'s specified. Resources can be requested by using either the limits or the requests objects.

memory

The memory hard limit (in MiB) for the container, using whole integers, with a "Mi" suffix. If your container attempts to exceed the memory specified, the container is terminated. You must specify at least 4 MiB of memory for a job. memory can be specified in limits, requests, or both. If memory is specified in both, then the value that\'s specified in limits must be equal to the value that\'s specified in requests.

If you\'re trying to maximize your resource utilization by providing your jobs as much memory as possible for a particular instance type, see Memory management in the Batch User Guide.

cpu

The number of CPUs that are reserved for the container. Values must be an even multiple of 0.25. cpu can be specified in limits, requests, or both. If cpu is specified in both, then the value that\'s specified in limits must be at least as large as the value that\'s specified in requests.

nvidia.com/gpu

The number of GPUs that are reserved for the container. Values must be a whole integer. nvidia.com/gpu can be specified in limits, requests, or both. If nvidia.com/gpu is specified in both, then the value that\'s specified in limits must be equal to the value that\'s specified in requests.

', ], ], 'EksSecret' => [ 'base' => '

Specifies the configuration of a Kubernetes secret volume. For more information, see secret in the Kubernetes documentation.

', 'refs' => [ 'EksVolume$secret' => '

Specifies the configuration of a Kubernetes secret volume. For more information, see secret in the Kubernetes documentation.

', ], ], 'EksVolume' => [ 'base' => '

Specifies an Amazon EKS volume for a job definition.

', 'refs' => [ 'EksVolumes$member' => NULL, ], ], 'EksVolumes' => [ 'base' => NULL, 'refs' => [ 'EksPodProperties$volumes' => '

Specifies the volumes for a job definition that uses Amazon EKS resources.

', 'EksPodPropertiesDetail$volumes' => '

Specifies the volumes for a job definition using Amazon EKS resources.

', ], ], 'EnvironmentVariables' => [ 'base' => NULL, 'refs' => [ 'ContainerDetail$environment' => '

The environment variables to pass to a container.

Environment variables cannot start with "AWS_BATCH". This naming convention is reserved for variables that Batch sets.

', 'ContainerOverrides$environment' => '

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

Environment variables cannot start with "AWS_BATCH". This naming convention is reserved for variables that Batch sets.

', 'ContainerProperties$environment' => '

The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

We don\'t recommend using plaintext environment variables for sensitive information, such as credential data.

Environment variables cannot start with "AWS_BATCH". This naming convention is reserved for variables that Batch sets.

', 'TaskContainerDetails$environment' => '

The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

We don\'t recommend using plaintext environment variables for sensitive information, such as credential data.

', 'TaskContainerOverrides$environment' => '

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

Environment variables cannot start with AWS_BATCH. This naming convention is reserved for variables that Batch sets.

', 'TaskContainerProperties$environment' => '

The environment variables to pass to a container. This parameter maps to Env inthe Create a container section of the Docker Remote API and the --env parameter to docker run.

We don\'t recommend using plaintext environment variables for sensitive information, such as credential data.

Environment variables cannot start with AWS_BATCH. This naming convention is reserved for variables that Batch sets.

', ], ], 'EphemeralStorage' => [ 'base' => '

The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate.

', 'refs' => [ 'ContainerDetail$ephemeralStorage' => '

The amount of ephemeral storage allocated for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate.

', 'ContainerProperties$ephemeralStorage' => '

The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate.

', 'EcsTaskDetails$ephemeralStorage' => '

The amount of ephemeral storage allocated for the task.

', 'EcsTaskProperties$ephemeralStorage' => '

The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate.

', ], ], 'EvaluateOnExit' => [ 'base' => '

Specifies an array of up to 5 conditions to be met, and an action to take (RETRY or EXIT) if all conditions are met. If none of the EvaluateOnExit conditions in a RetryStrategy match, then the job is retried.

', 'refs' => [ 'EvaluateOnExitList$member' => NULL, ], ], 'EvaluateOnExitList' => [ 'base' => NULL, 'refs' => [ 'RetryStrategy$evaluateOnExit' => '

Array of up to 5 objects that specify the conditions where jobs are retried or failed. If this parameter is specified, then the attempts parameter must also be specified. If none of the listed conditions match, then the job is retried.

', ], ], 'FairsharePolicy' => [ 'base' => '

The fair share policy for a scheduling policy.

', 'refs' => [ 'CreateSchedulingPolicyRequest$fairsharePolicy' => '

The fair share policy of the scheduling policy.

', 'SchedulingPolicyDetail$fairsharePolicy' => '

The fair share policy for the scheduling policy.

', 'UpdateSchedulingPolicyRequest$fairsharePolicy' => '

The fair share policy.

', ], ], 'FargatePlatformConfiguration' => [ 'base' => '

The platform configuration for jobs that are running on Fargate resources. Jobs that run on Amazon EC2 resources must not specify this parameter.

', 'refs' => [ 'ContainerDetail$fargatePlatformConfiguration' => '

The platform configuration for jobs that are running on Fargate resources. Jobs that are running on Amazon EC2 resources must not specify this parameter.

', 'ContainerProperties$fargatePlatformConfiguration' => '

The platform configuration for jobs that are running on Fargate resources. Jobs that are running on Amazon EC2 resources must not specify this parameter.

', ], ], 'Float' => [ 'base' => NULL, 'refs' => [ 'ShareAttributes$weightFactor' => '

The weight factor for the fair share identifier. The default value is 1.0. A lower value has a higher priority for compute resources. For example, jobs that use a share identifier with a weight factor of 0.125 (1/8) get 8 times the compute resources of jobs that use a share identifier with a weight factor of 1.

The smallest supported value is 0.0001, and the largest supported value is 999.9999.

', ], ], 'Host' => [ 'base' => '

Determine whether your data volume persists on the host container instance and where it\'s stored. If this parameter is empty, then the Docker daemon assigns a host path for your data volume. However, the data isn\'t guaranteed to persist after the containers that are associated with it stop running.

', 'refs' => [ 'Volume$host' => '

The contents of the host parameter determine whether your data volume persists on the host container instance and where it\'s stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume. However, the data isn\'t guaranteed to persist after the containers that are associated with it stop running.

This parameter isn\'t applicable to jobs that are running on Fargate resources and shouldn\'t be provided.

', ], ], 'ImageIdOverride' => [ 'base' => NULL, 'refs' => [ 'Ec2Configuration$imageIdOverride' => '

The AMI ID used for instances launched in the compute environment that match the image type. This setting overrides the imageId set in the computeResource object.

The AMI that you choose for a compute environment must match the architecture of the instance types that you intend to use for that compute environment. For example, if your compute environment uses A1 instance types, the compute resource AMI that you choose must support ARM instances. Amazon ECS vends both x86 and ARM versions of the Amazon ECS-optimized Amazon Linux 2 AMI. For more information, see Amazon ECS-optimized Amazon Linux 2 AMI in the Amazon Elastic Container Service Developer Guide.

', ], ], 'ImageType' => [ 'base' => NULL, 'refs' => [ 'Ec2Configuration$imageType' => '

The image type to match with the instance type to select an AMI. The supported values are different for ECS and EKS resources.

ECS

If the imageIdOverride parameter isn\'t specified, then a recent Amazon ECS-optimized Amazon Linux 2 AMI (ECS_AL2) is used. If a new image type is specified in an update, but neither an imageId nor a imageIdOverride parameter is specified, then the latest Amazon ECS optimized AMI for that image type that\'s supported by Batch is used.

ECS_AL2

Amazon Linux 2: Default for all non-GPU instance families.

ECS_AL2_NVIDIA

Amazon Linux 2 (GPU): Default for all GPU instance families (for example P4 and G4) and can be used for all non Amazon Web Services Graviton-based instance types.

ECS_AL2023

Amazon Linux 2023: Batch supports Amazon Linux 2023.

Amazon Linux 2023 does not support A1 instances.

ECS_AL1

Amazon Linux. Amazon Linux has reached the end-of-life of standard support. For more information, see Amazon Linux AMI.

EKS

If the imageIdOverride parameter isn\'t specified, then a recent Amazon EKS-optimized Amazon Linux AMI (EKS_AL2) is used. If a new image type is specified in an update, but neither an imageId nor a imageIdOverride parameter is specified, then the latest Amazon EKS optimized AMI for that image type that Batch supports is used.

EKS_AL2

Amazon Linux 2: Default for all non-GPU instance families.

EKS_AL2_NVIDIA

Amazon Linux 2 (accelerated): Default for all GPU instance families (for example, P4 and G4) and can be used for all non Amazon Web Services Graviton-based instance types.

', ], ], 'Integer' => [ 'base' => NULL, 'refs' => [ 'ArrayJobStatusSummary$value' => NULL, 'ArrayProperties$size' => '

The size of the array job.

', 'ArrayPropertiesDetail$size' => '

The size of the array job. This parameter is returned for parent array jobs.

', 'ArrayPropertiesDetail$index' => '

The job index within the array that\'s associated with this job. This parameter is returned for array job children.

', 'ArrayPropertiesSummary$size' => '

The size of the array job. This parameter is returned for parent array jobs.

', 'ArrayPropertiesSummary$index' => '

The job index within the array that\'s associated with this job. This parameter is returned for children of array jobs.

', 'AttemptContainerDetail$exitCode' => '

The exit code for the job attempt. A non-zero exit code is considered failed.

', 'ComputeEnvironmentDetail$unmanagedvCpus' => '

The maximum number of VCPUs expected to be used for an unmanaged compute environment.

', 'ComputeEnvironmentOrder$order' => '

The order of the compute environment. Compute environments are tried in ascending order. For example, if two compute environments are associated with a job queue, the compute environment with a lower order integer value is tried for job placement first.

', 'ComputeResource$minvCpus' => '

The minimum number of vCPUs that a compute environment should maintain (even if the compute environment is DISABLED).

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResource$maxvCpus' => '

The maximum number of vCPUs that a compute environment can support.

With BEST_FIT_PROGRESSIVE,SPOT_CAPACITY_OPTIMIZED and SPOT_PRICE_CAPACITY_OPTIMIZED (recommended) strategies using On-Demand or Spot Instances, and the BEST_FIT strategy using Spot Instances, Batch might need to exceed maxvCpus to meet your capacity requirements. In this event, Batch never exceeds maxvCpus by more than a single instance.

', 'ComputeResource$desiredvCpus' => '

The desired number of vCPUS in the compute environment. Batch modifies this value between the minimum and maximum values based on job queue demand.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResource$bidPercentage' => '

The maximum percentage that a Spot Instance price can be when compared with the On-Demand price for that instance type before instances are launched. For example, if your maximum percentage is 20%, then the Spot price must be less than 20% of the current On-Demand price for that Amazon EC2 instance. You always pay the lowest (market) price and never more than your maximum percentage. If you leave this field empty, the default value is 100% of the On-Demand price. For most use cases, we recommend leaving this field empty.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResourceUpdate$minvCpus' => '

The minimum number of vCPUs that an environment should maintain (even if the compute environment is DISABLED).

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResourceUpdate$maxvCpus' => '

The maximum number of Amazon EC2 vCPUs that an environment can reach.

With BEST_FIT_PROGRESSIVE,SPOT_CAPACITY_OPTIMIZED and SPOT_PRICE_CAPACITY_OPTIMIZED (recommended) strategies using On-Demand or Spot Instances, and the BEST_FIT strategy using Spot Instances, Batch might need to exceed maxvCpus to meet your capacity requirements. In this event, Batch never exceeds maxvCpus by more than a single instance.

', 'ComputeResourceUpdate$desiredvCpus' => '

The desired number of vCPUS in the compute environment. Batch modifies this value between the minimum and maximum values based on job queue demand.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

Batch doesn\'t support changing the desired number of vCPUs of an existing compute environment. Don\'t specify this parameter for compute environments using Amazon EKS clusters.

When you update the desiredvCpus setting, the value must be between the minvCpus and maxvCpus values.

Additionally, the updated desiredvCpus value must be greater than or equal to the current desiredvCpus value. For more information, see Troubleshooting Batch in the Batch User Guide.

', 'ComputeResourceUpdate$bidPercentage' => '

The maximum percentage that a Spot Instance price can be when compared with the On-Demand price for that instance type before instances are launched. For example, if your maximum percentage is 20%, the Spot price must be less than 20% of the current On-Demand price for that Amazon EC2 instance. You always pay the lowest (market) price and never more than your maximum percentage. For most use cases, we recommend leaving this field empty.

When updating a compute environment, changing the bid percentage requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ContainerDetail$vcpus' => '

The number of vCPUs reserved for the container. For jobs that run on Amazon EC2 resources, you can specify the vCPU requirement for the job using resourceRequirements, but you can\'t specify the vCPU requirements in both the vcpus and resourceRequirements object. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares. You must specify at least one vCPU. This is required but can be specified in several places. It must be specified for each node at least once.

This parameter isn\'t applicable to jobs that run on Fargate resources. For jobs that run on Fargate resources, you must specify the vCPU requirement for the job using resourceRequirements.

', 'ContainerDetail$memory' => '

For jobs running on Amazon EC2 resources that didn\'t specify memory requirements using resourceRequirements, the number of MiB of memory reserved for the job. For other jobs, including all run on Fargate resources, see resourceRequirements.

', 'ContainerDetail$exitCode' => '

The exit code returned upon completion.

', 'ContainerOverrides$vcpus' => '

This parameter is deprecated, use resourceRequirements to override the vcpus parameter that\'s set in the job definition. It\'s not supported for jobs running on Fargate resources. For jobs that run on Amazon EC2 resources, it overrides the vcpus parameter set in the job definition, but doesn\'t override any vCPU requirement specified in the resourceRequirements structure in the job definition. To override vCPU requirements that are specified in the resourceRequirements structure in the job definition, resourceRequirements must be specified in the SubmitJob request, with type set to VCPU and value set to the new value. For more information, see Can\'t override job definition resource requirements in the Batch User Guide.

', 'ContainerOverrides$memory' => '

This parameter is deprecated, use resourceRequirements to override the memory requirements specified in the job definition. It\'s not supported for jobs running on Fargate resources. For jobs that run on Amazon EC2 resources, it overrides the memory parameter set in the job definition, but doesn\'t override any memory requirement that\'s specified in the resourceRequirements structure in the job definition. To override memory requirements that are specified in the resourceRequirements structure in the job definition, resourceRequirements must be specified in the SubmitJob request, with type set to MEMORY and value set to the new value. For more information, see Can\'t override job definition resource requirements in the Batch User Guide.

', 'ContainerProperties$vcpus' => '

This parameter is deprecated, use resourceRequirements to specify the vCPU requirements for the job definition. It\'s not supported for jobs running on Fargate resources. For jobs running on Amazon EC2 resources, it specifies the number of vCPUs reserved for the job.

Each vCPU is equivalent to 1,024 CPU shares. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. The number of vCPUs must be specified but can be specified in several places. You must specify it at least once for each node.

', 'ContainerProperties$memory' => '

This parameter is deprecated, use resourceRequirements to specify the memory requirements for the job definition. It\'s not supported for jobs running on Fargate resources. For jobs that run on Amazon EC2 resources, it specifies the memory hard limit (in MiB) for a container. If your container attempts to exceed the specified number, it\'s terminated. You must specify at least 4 MiB of memory for a job using this parameter. The memory hard limit can be specified in several places. It must be specified for each node at least once.

', 'ContainerSummary$exitCode' => '

The exit code to return upon completion.

', 'CreateComputeEnvironmentRequest$unmanagedvCpus' => '

The maximum number of vCPUs for an unmanaged compute environment. This parameter is only used for fair share scheduling to reserve vCPU capacity for new share identifiers. If this parameter isn\'t provided for a fair share job queue, no vCPU capacity is reserved.

This parameter is only supported when the type parameter is set to UNMANAGED.

', 'CreateJobQueueRequest$priority' => '

The priority of the job queue. Job queues with a higher priority (or a higher integer value for the priority parameter) are evaluated first when associated with the same compute environment. Priority is determined in descending order. For example, a job queue with a priority value of 10 is given scheduling preference over a job queue with a priority value of 1. All of the compute environments must be either EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT); EC2 and Fargate compute environments can\'t be mixed.

', 'DescribeComputeEnvironmentsRequest$maxResults' => '

The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn\'t used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

', 'DescribeJobDefinitionsRequest$maxResults' => '

The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page and a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn\'t used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

', 'DescribeJobQueuesRequest$maxResults' => '

The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page and a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn\'t used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

', 'EFSVolumeConfiguration$transitEncryptionPort' => '

The port to use when sending encrypted data between the Amazon ECS host and the Amazon EFS server. If you don\'t specify a transit encryption port, it uses the port selection strategy that the Amazon EFS mount helper uses. The value must be between 0 and 65,535. For more information, see EFS mount helper in the Amazon Elastic File System User Guide.

', 'EksAttemptContainerDetail$exitCode' => '

The exit code returned for the job attempt. A non-zero exit code is considered failed.

', 'EksContainerDetail$exitCode' => '

The exit code returned for the job attempt. A non-zero exit code is considered failed.

', 'EphemeralStorage$sizeInGiB' => '

The total amount, in GiB, of ephemeral storage to set for the task. The minimum supported value is 21 GiB and the maximum supported value is 200 GiB.

', 'FairsharePolicy$shareDecaySeconds' => '

The amount of time (in seconds) to use to calculate a fair share percentage for each fair share identifier in use. A value of zero (0) indicates that only current usage is measured. The decay allows for more recently run jobs to have more weight than jobs that ran earlier. The maximum supported value is 604800 (1 week).

', 'FairsharePolicy$computeReservation' => '

A value used to reserve some of the available maximum vCPU for fair share identifiers that aren\'t already used.

The reserved ratio is (computeReservation/100)^ActiveFairShares where ActiveFairShares is the number of active fair share identifiers.

For example, a computeReservation value of 50 indicates that Batch reserves 50% of the maximum available vCPU if there\'s only one fair share identifier. It reserves 25% if there are two fair share identifiers. It reserves 12.5% if there are three fair share identifiers. A computeReservation value of 25 indicates that Batch should reserve 25% of the maximum available vCPU if there\'s only one fair share identifier, 6.25% if there are two fair share identifiers, and 1.56% if there are three fair share identifiers.

The minimum value is 0 and the maximum value is 99.

', 'JobDefinition$revision' => '

The revision of the job definition.

', 'JobDefinition$schedulingPriority' => '

The scheduling priority of the job definition. This only affects jobs in job queues with a fair share policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority.

', 'JobDetail$schedulingPriority' => '

The scheduling policy of the job definition. This only affects jobs in job queues with a fair share policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority.

', 'JobQueueDetail$priority' => '

The priority of the job queue. Job queues with a higher priority (or a higher integer value for the priority parameter) are evaluated first when associated with the same compute environment. Priority is determined in descending order. For example, a job queue with a priority value of 10 is given scheduling preference over a job queue with a priority value of 1. All of the compute environments must be either Amazon EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT). Amazon EC2 and Fargate compute environments can\'t be mixed.

', 'JobTimeout$attemptDurationSeconds' => '

The job timeout time (in seconds) that\'s measured from the job attempt\'s startedAt timestamp. After this time passes, Batch terminates your jobs if they aren\'t finished. The minimum value for the timeout is 60 seconds.

For array jobs, the timeout applies to the child jobs, not to the parent array job.

For multi-node parallel (MNP) jobs, the timeout applies to the whole job, not to the individual nodes.

', 'LinuxParameters$sharedMemorySize' => '

The value for the size (in MiB) of the /dev/shm volume. This parameter maps to the --shm-size option to docker run.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t provide it for these jobs.

', 'LinuxParameters$maxSwap' => '

The total amount of swap memory (in MiB) a container can use. This parameter is translated to the --memory-swap option to docker run where the value is the sum of the container memory plus the maxSwap value. For more information, see --memory-swap details in the Docker documentation.

If a maxSwap value of 0 is specified, the container doesn\'t use swap. Accepted values are 0 or any positive integer. If the maxSwap parameter is omitted, the container doesn\'t use the swap configuration for the container instance that it\'s running on. A maxSwap value must be set for the swappiness parameter to be used.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t provide it for these jobs.

', 'LinuxParameters$swappiness' => '

You can use this parameter to tune a container\'s memory swappiness behavior. A swappiness value of 0 causes swapping to not occur unless absolutely necessary. A swappiness value of 100 causes pages to be swapped aggressively. Valid values are whole numbers between 0 and 100. If the swappiness parameter isn\'t specified, a default value of 60 is used. If a value isn\'t specified for maxSwap, then this parameter is ignored. If maxSwap is set to 0, the container doesn\'t use swap. This parameter maps to the --memory-swappiness option to docker run.

Consider the following when you use a per-container swap configuration.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t provide it for these jobs.

', 'ListJobsRequest$maxResults' => '

The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page and a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn\'t used, then ListJobs returns up to 100 results and a nextToken value if applicable.

', 'ListSchedulingPoliciesRequest$maxResults' => '

The maximum number of results that\'s returned by ListSchedulingPolicies in paginated output. When this parameter is used, ListSchedulingPolicies only returns maxResults results in a single page and a nextToken response element. You can see the remaining results of the initial request by sending another ListSchedulingPolicies request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn\'t used, ListSchedulingPolicies returns up to 100 results and a nextToken value if applicable.

', 'NodeDetails$nodeIndex' => '

The node index for the node. Node index numbering starts at zero. This index is also available on the node with the AWS_BATCH_JOB_NODE_INDEX environment variable.

', 'NodeOverrides$numNodes' => '

The number of nodes to use with a multi-node parallel job. This value overrides the number of nodes that are specified in the job definition. To use this override, you must meet the following conditions:

', 'NodeProperties$numNodes' => '

The number of nodes that are associated with a multi-node parallel job.

', 'NodeProperties$mainNode' => '

Specifies the node index for the main node of a multi-node parallel job. This node index value must be fewer than the number of nodes.

', 'NodePropertiesSummary$numNodes' => '

The number of nodes that are associated with a multi-node parallel job.

', 'NodePropertiesSummary$nodeIndex' => '

The node index for the node. Node index numbering begins at zero. This index is also available on the node with the AWS_BATCH_JOB_NODE_INDEX environment variable.

', 'RegisterJobDefinitionRequest$schedulingPriority' => '

The scheduling priority for jobs that are submitted with this job definition. This only affects jobs in job queues with a fair share policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority.

The minimum supported value is 0 and the maximum supported value is 9999.

', 'RegisterJobDefinitionResponse$revision' => '

The revision of the job definition.

', 'RetryStrategy$attempts' => '

The number of times to move a job to the RUNNABLE status. You can specify between 1 and 10 attempts. If the value of attempts is greater than one, the job is retried on failure the same number of attempts as the value.

', 'SubmitJobRequest$schedulingPriorityOverride' => '

The scheduling priority for the job. This only affects jobs in job queues with a fair share policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority. This overrides any scheduling priority in the job definition and works only within a single share identifier.

The minimum supported value is 0 and the maximum supported value is 9999.

', 'TaskContainerDetails$exitCode' => '

The exit code returned upon completion.

', 'Tmpfs$size' => '

The size (in MiB) of the tmpfs volume.

', 'Ulimit$hardLimit' => '

The hard limit for the ulimit type.

', 'Ulimit$softLimit' => '

The soft limit for the ulimit type.

', 'UpdateComputeEnvironmentRequest$unmanagedvCpus' => '

The maximum number of vCPUs expected to be used for an unmanaged compute environment. Don\'t specify this parameter for a managed compute environment. This parameter is only used for fair share scheduling to reserve vCPU capacity for new share identifiers. If this parameter isn\'t provided for a fair share job queue, no vCPU capacity is reserved.

', 'UpdateJobQueueRequest$priority' => '

The priority of the job queue. Job queues with a higher priority (or a higher integer value for the priority parameter) are evaluated first when associated with the same compute environment. Priority is determined in descending order. For example, a job queue with a priority value of 10 is given scheduling preference over a job queue with a priority value of 1. All of the compute environments must be either EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT). EC2 and Fargate compute environments can\'t be mixed.

', ], ], 'JQState' => [ 'base' => NULL, 'refs' => [ 'CreateJobQueueRequest$state' => '

The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs. If the job queue state is DISABLED, new jobs can\'t be added to the queue, but jobs already in the queue can finish.

', 'JobQueueDetail$state' => '

Describes the ability of the queue to accept new jobs. If the job queue state is ENABLED, it can accept jobs. If the job queue state is DISABLED, new jobs can\'t be added to the queue, but jobs already in the queue can finish.

', 'UpdateJobQueueRequest$state' => '

Describes the queue\'s ability to accept new jobs. If the job queue state is ENABLED, it can accept jobs. If the job queue state is DISABLED, new jobs can\'t be added to the queue, but jobs already in the queue can finish.

', ], ], 'JQStatus' => [ 'base' => NULL, 'refs' => [ 'JobQueueDetail$status' => '

The status of the job queue (for example, CREATING or VALID).

', ], ], 'JobDefinition' => [ 'base' => '

An object that represents an Batch job definition.

', 'refs' => [ 'JobDefinitionList$member' => NULL, ], ], 'JobDefinitionList' => [ 'base' => NULL, 'refs' => [ 'DescribeJobDefinitionsResponse$jobDefinitions' => '

The list of job definitions.

', ], ], 'JobDefinitionType' => [ 'base' => NULL, 'refs' => [ 'RegisterJobDefinitionRequest$type' => '

The type of job definition. For more information about multi-node parallel jobs, see Creating a multi-node parallel job definition in the Batch User Guide.

If the job is run on Fargate resources, then multinode isn\'t supported.

', ], ], 'JobDependency' => [ 'base' => '

An object that represents an Batch job dependency.

', 'refs' => [ 'JobDependencyList$member' => NULL, ], ], 'JobDependencyList' => [ 'base' => NULL, 'refs' => [ 'JobDetail$dependsOn' => '

A list of job IDs that this job depends on.

', 'SubmitJobRequest$dependsOn' => '

A list of dependencies for the job. A job can depend upon a maximum of 20 jobs. You can specify a SEQUENTIAL type dependency without specifying a job ID for array jobs so that each child array job completes sequentially, starting at index 0. You can also specify an N_TO_N type dependency with a job ID for array jobs. In that case, each index child of this job must wait for the corresponding index child of each dependency to complete before it can begin.

', ], ], 'JobDetail' => [ 'base' => '

An object that represents an Batch job.

', 'refs' => [ 'JobDetailList$member' => NULL, ], ], 'JobDetailList' => [ 'base' => NULL, 'refs' => [ 'DescribeJobsResponse$jobs' => '

The list of jobs.

', ], ], 'JobExecutionTimeoutMinutes' => [ 'base' => NULL, 'refs' => [ 'UpdatePolicy$jobExecutionTimeoutMinutes' => '

Specifies the job timeout (in minutes) when the compute environment infrastructure is updated. The default value is 30.

', ], ], 'JobQueueDetail' => [ 'base' => '

An object that represents the details for an Batch job queue.

', 'refs' => [ 'JobQueueDetailList$member' => NULL, ], ], 'JobQueueDetailList' => [ 'base' => NULL, 'refs' => [ 'DescribeJobQueuesResponse$jobQueues' => '

The list of job queues.

', ], ], 'JobStatus' => [ 'base' => NULL, 'refs' => [ 'JobDetail$status' => '

The current status for the job.

If your jobs don\'t progress to STARTING, see Jobs stuck in RUNNABLE status in the troubleshooting section of the Batch User Guide.

', 'JobSummary$status' => '

The current status for the job.

', 'ListJobsRequest$jobStatus' => '

The job status used to filter jobs in the specified queue. If the filters parameter is specified, the jobStatus parameter is ignored and jobs with any status are returned. If you don\'t specify a status, only RUNNING jobs are returned.

', ], ], 'JobSummary' => [ 'base' => '

An object that represents summary details of a job.

', 'refs' => [ 'JobSummaryList$member' => NULL, ], ], 'JobSummaryList' => [ 'base' => NULL, 'refs' => [ 'ListJobsResponse$jobSummaryList' => '

A list of job summaries that match the request.

', ], ], 'JobTimeout' => [ 'base' => '

An object that represents a job timeout configuration.

', 'refs' => [ 'JobDefinition$timeout' => '

The timeout time for jobs that are submitted with this job definition. After the amount of time you specify passes, Batch terminates your jobs if they aren\'t finished.

', 'JobDetail$timeout' => '

The timeout configuration for the job.

', 'RegisterJobDefinitionRequest$timeout' => '

The timeout configuration for jobs that are submitted with this job definition, after which Batch terminates your jobs if they have not finished. If a job is terminated due to a timeout, it isn\'t retried. The minimum value for the timeout is 60 seconds. Any timeout configuration that\'s specified during a SubmitJob operation overrides the timeout configuration defined here. For more information, see Job Timeouts in the Batch User Guide.

', 'SubmitJobRequest$timeout' => '

The timeout configuration for this SubmitJob operation. You can specify a timeout duration after which Batch terminates your jobs if they haven\'t finished. If a job is terminated due to a timeout, it isn\'t retried. The minimum value for the timeout is 60 seconds. This configuration overrides any timeout configuration specified in the job definition. For array jobs, child jobs have the same timeout configuration as the parent job. For more information, see Job Timeouts in the Amazon Elastic Container Service Developer Guide.

', ], ], 'KeyValuePair' => [ 'base' => '

A key-value pair object.

', 'refs' => [ 'EnvironmentVariables$member' => NULL, ], ], 'KeyValuesPair' => [ 'base' => '

A filter name and value pair that\'s used to return a more specific list of results from a ListJobs API operation.

', 'refs' => [ 'ListJobsFilterList$member' => NULL, ], ], 'KubernetesVersion' => [ 'base' => NULL, 'refs' => [ 'Ec2Configuration$imageKubernetesVersion' => '

The Kubernetes version for the compute environment. If you don\'t specify a value, the latest version that Batch supports is used.

', ], ], 'LaunchTemplateSpecification' => [ 'base' => '

An object that represents a launch template that\'s associated with a compute resource. You must specify either the launch template ID or launch template name in the request, but not both.

If security groups are specified using both the securityGroupIds parameter of CreateComputeEnvironment and the launch template, the values in the securityGroupIds parameter of CreateComputeEnvironment will be used.

This object isn\'t applicable to jobs that are running on Fargate resources.

', 'refs' => [ 'ComputeResource$launchTemplate' => '

The launch template to use for your compute resources. Any other compute resource parameters that you specify in a CreateComputeEnvironment API operation override the same parameters in the launch template. You must specify either the launch template ID or launch template name in the request, but not both. For more information, see Launch template support in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResourceUpdate$launchTemplate' => '

The updated launch template to use for your compute resources. You must specify either the launch template ID or launch template name in the request, but not both. For more information, see Launch template support in the Batch User Guide. To remove the custom launch template and use the default launch template, set launchTemplateId or launchTemplateName member of the launch template specification to an empty string. Removing the launch template from a compute environment will not remove the AMI specified in the launch template. In order to update the AMI specified in a launch template, the updateToLatestImageVersion parameter must be set to true.

When updating a compute environment, changing the launch template requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', ], ], 'LinuxParameters' => [ 'base' => '

Linux-specific modifications that are applied to the container, such as details for device mappings.

', 'refs' => [ 'ContainerDetail$linuxParameters' => '

Linux-specific modifications that are applied to the container, such as details for device mappings.

', 'ContainerProperties$linuxParameters' => '

Linux-specific modifications that are applied to the container, such as details for device mappings.

', 'TaskContainerDetails$linuxParameters' => '

Linux-specific modifications that are applied to the container, such as Linux kernel capabilities. For more information, see KernelCapabilities.

This parameter is not supported for Windows containers.

', 'TaskContainerProperties$linuxParameters' => '

Linux-specific modifications that are applied to the container, such as Linux kernel capabilities. For more information, see KernelCapabilities.

', ], ], 'ListEcsTaskDetails' => [ 'base' => NULL, 'refs' => [ 'EcsPropertiesDetail$taskProperties' => '

The properties for the Amazon ECS task definition of a job.

', ], ], 'ListEcsTaskProperties' => [ 'base' => NULL, 'refs' => [ 'EcsProperties$taskProperties' => '

An object that contains the properties for the Amazon ECS task definition of a job.

This object is currently limited to one element.

', ], ], 'ListJobsFilterList' => [ 'base' => NULL, 'refs' => [ 'ListJobsRequest$filters' => '

The filter to apply to the query. Only one filter can be used at a time. When the filter is used, jobStatus is ignored. The filter doesn\'t apply to child jobs in an array or multi-node parallel (MNP) jobs. The results are sorted by the createdAt field, with the most recent jobs being first.

JOB_NAME

The value of the filter is a case-insensitive match for the job name. If the value ends with an asterisk (*), the filter matches any job name that begins with the string before the \'*\'. This corresponds to the jobName value. For example, test1 matches both Test1 and test1, and test1* matches both test1 and Test10. When the JOB_NAME filter is used, the results are grouped by the job name and version.

JOB_DEFINITION

The value for the filter is the name or Amazon Resource Name (ARN) of the job definition. This corresponds to the jobDefinition value. The value is case sensitive. When the value for the filter is the job definition name, the results include all the jobs that used any revision of that job definition name. If the value ends with an asterisk (*), the filter matches any job definition name that begins with the string before the \'*\'. For example, jd1 matches only jd1, and jd1* matches both jd1 and jd1A. The version of the job definition that\'s used doesn\'t affect the sort order. When the JOB_DEFINITION filter is used and the ARN is used (which is in the form arn:${Partition}:batch:${Region}:${Account}:job-definition/${JobDefinitionName}:${Revision}), the results include jobs that used the specified revision of the job definition. Asterisk (*) isn\'t supported when the ARN is used.

BEFORE_CREATED_AT

The value for the filter is the time that\'s before the job was created. This corresponds to the createdAt value. The value is a string representation of the number of milliseconds since 00:00:00 UTC (midnight) on January 1, 1970.

AFTER_CREATED_AT

The value for the filter is the time that\'s after the job was created. This corresponds to the createdAt value. The value is a string representation of the number of milliseconds since 00:00:00 UTC (midnight) on January 1, 1970.

', ], ], 'ListJobsRequest' => [ 'base' => '

Contains the parameters for ListJobs.

', 'refs' => [], ], 'ListJobsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListSchedulingPoliciesRequest' => [ 'base' => '

Contains the parameters for ListSchedulingPolicies.

', 'refs' => [], ], 'ListSchedulingPoliciesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListTagsForResourceRequest' => [ 'base' => '

Contains the parameters for ListTagsForResource.

', 'refs' => [], ], 'ListTagsForResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListTaskContainerDetails' => [ 'base' => NULL, 'refs' => [ 'EcsTaskDetails$containers' => '

A list of containers that are included in the taskProperties list.

', ], ], 'ListTaskContainerOverrides' => [ 'base' => NULL, 'refs' => [ 'TaskPropertiesOverride$containers' => '

The overrides for the container definition of a job.

', ], ], 'ListTaskContainerProperties' => [ 'base' => NULL, 'refs' => [ 'EcsTaskProperties$containers' => '

This object is a list of containers.

', ], ], 'ListTaskPropertiesOverride' => [ 'base' => NULL, 'refs' => [ 'EcsPropertiesOverride$taskProperties' => '

The overrides for the Amazon ECS task definition of a job.

This object is currently limited to one element.

', ], ], 'LogConfiguration' => [ 'base' => '

Log configuration options to send to a custom log driver for the container.

', 'refs' => [ 'ContainerDetail$logConfiguration' => '

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run. By default, containers use the same logging driver that the Docker daemon uses. However, the container might use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance. Or, alternatively, it must be configured on a different log server for remote logging options. For more information on the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

Batch currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type). Additional log drivers might be available in future releases of the Amazon ECS container agent.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version | grep "Server API version"

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS container agent configuration in the Amazon Elastic Container Service Developer Guide.

', 'ContainerProperties$logConfiguration' => '

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run. By default, containers use the same logging driver that the Docker daemon uses. However the container might use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance (or on a different log server for remote logging options). For more information on the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

Batch currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type).

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version | grep "Server API version"

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS container agent configuration in the Amazon Elastic Container Service Developer Guide.

', 'TaskContainerDetails$logConfiguration' => '

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run.

By default, containers use the same logging driver that the Docker daemon uses. However the container can use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance (or on a different log server for remote logging options). For more information about the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

Amazon ECS currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type). Additional log drivers may be available in future releases of the Amazon ECS container agent.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format \'{{.Server.APIVersion}}\'

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS container agent configuration in the Amazon Elastic Container Service Developer Guide.

', 'TaskContainerProperties$logConfiguration' => '

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run.

By default, containers use the same logging driver that the Docker daemon uses. However the container can use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance (or on a different log server for remote logging options). For more information about the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

Amazon ECS currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type). Additional log drivers may be available in future releases of the Amazon ECS container agent.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format \'{{.Server.APIVersion}}\'

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS container agent configuration in the Amazon Elastic Container Service Developer Guide.

', ], ], 'LogConfigurationOptionsMap' => [ 'base' => NULL, 'refs' => [ 'LogConfiguration$options' => '

The configuration options to send to the log driver. This parameter requires version 1.19 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version | grep "Server API version"

', ], ], 'LogDriver' => [ 'base' => NULL, 'refs' => [ 'LogConfiguration$logDriver' => '

The log driver to use for the container. The valid values that are listed for this parameter are log drivers that the Amazon ECS container agent can communicate with by default.

The supported log drivers are awslogs, fluentd, gelf, json-file, journald, logentries, syslog, and splunk.

Jobs that are running on Fargate resources are restricted to the awslogs and splunk log drivers.

awslogs

Specifies the Amazon CloudWatch Logs logging driver. For more information, see Using the awslogs log driver in the Batch User Guide and Amazon CloudWatch Logs logging driver in the Docker documentation.

fluentd

Specifies the Fluentd logging driver. For more information including usage and options, see Fluentd logging driver in the Docker documentation.

gelf

Specifies the Graylog Extended Format (GELF) logging driver. For more information including usage and options, see Graylog Extended Format logging driver in the Docker documentation.

journald

Specifies the journald logging driver. For more information including usage and options, see Journald logging driver in the Docker documentation.

json-file

Specifies the JSON file logging driver. For more information including usage and options, see JSON File logging driver in the Docker documentation.

splunk

Specifies the Splunk logging driver. For more information including usage and options, see Splunk logging driver in the Docker documentation.

syslog

Specifies the syslog logging driver. For more information including usage and options, see Syslog logging driver in the Docker documentation.

If you have a custom driver that\'s not listed earlier that you want to work with the Amazon ECS container agent, you can fork the Amazon ECS container agent project that\'s available on GitHub and customize it to work with that driver. We encourage you to submit pull requests for changes that you want to have included. However, Amazon Web Services doesn\'t currently support running modified copies of this software.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version | grep "Server API version"

', ], ], 'Long' => [ 'base' => NULL, 'refs' => [ 'AttemptDetail$startedAt' => '

The Unix timestamp (in milliseconds) for when the attempt was started (when the attempt transitioned from the STARTING state to the RUNNING state).

', 'AttemptDetail$stoppedAt' => '

The Unix timestamp (in milliseconds) for when the attempt was stopped (when the attempt transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED).

', 'EksAttemptDetail$startedAt' => '

The Unix timestamp (in milliseconds) for when the attempt was started (when the attempt transitioned from the STARTING state to the RUNNING state).

', 'EksAttemptDetail$stoppedAt' => '

The Unix timestamp (in milliseconds) for when the attempt was stopped. This happens when the attempt transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED.

', 'EksContainerSecurityContext$runAsUser' => '

When this parameter is specified, the container is run as the specified user ID (uid). If this parameter isn\'t specified, the default is the user that\'s specified in the image metadata. This parameter maps to RunAsUser and MustRanAs policy in the Users and groups pod security policies in the Kubernetes documentation.

', 'EksContainerSecurityContext$runAsGroup' => '

When this parameter is specified, the container is run as the specified group ID (gid). If this parameter isn\'t specified, the default is the group that\'s specified in the image metadata. This parameter maps to RunAsGroup and MustRunAs policy in the Users and groups pod security policies in the Kubernetes documentation.

', 'JobDetail$createdAt' => '

The Unix timestamp (in milliseconds) for when the job was created. For non-array jobs and parent array jobs, this is when the job entered the SUBMITTED state. This is specifically at the time SubmitJob was called. For array child jobs, this is when the child job was spawned by its parent and entered the PENDING state.

', 'JobDetail$startedAt' => '

The Unix timestamp (in milliseconds) for when the job was started. More specifically, it\'s when the job transitioned from the STARTING state to the RUNNING state.

', 'JobDetail$stoppedAt' => '

The Unix timestamp (in milliseconds) for when the job was stopped. More specifically, it\'s when the job transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED.

', 'JobSummary$createdAt' => '

The Unix timestamp (in milliseconds) for when the job was created. For non-array jobs and parent array jobs, this is when the job entered the SUBMITTED state (at the time SubmitJob was called). For array child jobs, this is when the child job was spawned by its parent and entered the PENDING state.

', 'JobSummary$startedAt' => '

The Unix timestamp for when the job was started. More specifically, it\'s when the job transitioned from the STARTING state to the RUNNING state.

', 'JobSummary$stoppedAt' => '

The Unix timestamp for when the job was stopped. More specifically, it\'s when the job transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED.

', ], ], 'MountPoint' => [ 'base' => '

Details for a Docker volume mount point that\'s used in a job\'s container properties. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

', 'refs' => [ 'MountPoints$member' => NULL, ], ], 'MountPoints' => [ 'base' => NULL, 'refs' => [ 'ContainerDetail$mountPoints' => '

The mount points for data volumes in your container.

', 'ContainerProperties$mountPoints' => '

The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

', 'TaskContainerDetails$mountPoints' => '

The mount points for data volumes in your container.

This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

Windows containers can mount whole directories on the same drive as $env:ProgramData. Windows containers can\'t mount directories on a different drive, and mount point can\'t be across drives.

', 'TaskContainerProperties$mountPoints' => '

The mount points for data volumes in your container.

This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

Windows containers can mount whole directories on the same drive as $env:ProgramData. Windows containers can\'t mount directories on a different drive, and mount point can\'t be across drives.

', ], ], 'NetworkConfiguration' => [ 'base' => '

The network configuration for jobs that are running on Fargate resources. Jobs that are running on Amazon EC2 resources must not specify this parameter.

', 'refs' => [ 'ContainerDetail$networkConfiguration' => '

The network configuration for jobs that are running on Fargate resources. Jobs that are running on Amazon EC2 resources must not specify this parameter.

', 'ContainerProperties$networkConfiguration' => '

The network configuration for jobs that are running on Fargate resources. Jobs that are running on Amazon EC2 resources must not specify this parameter.

', 'EcsTaskDetails$networkConfiguration' => '

The network configuration for jobs that are running on Fargate resources. Jobs that are running on Amazon EC2 resources must not specify this parameter.

', 'EcsTaskProperties$networkConfiguration' => '

The network configuration for jobs that are running on Fargate resources. Jobs that are running on Amazon EC2 resources must not specify this parameter.

', ], ], 'NetworkInterface' => [ 'base' => '

An object that represents the elastic network interface for a multi-node parallel job node.

', 'refs' => [ 'NetworkInterfaceList$member' => NULL, ], ], 'NetworkInterfaceList' => [ 'base' => NULL, 'refs' => [ 'AttemptContainerDetail$networkInterfaces' => '

The network interfaces that are associated with the job attempt.

', 'ContainerDetail$networkInterfaces' => '

The network interfaces that are associated with the job.

', 'TaskContainerDetails$networkInterfaces' => '

The network interfaces that are associated with the job.

', ], ], 'NodeDetails' => [ 'base' => '

An object that represents the details of a multi-node parallel job node.

', 'refs' => [ 'JobDetail$nodeDetails' => '

An object that represents the details of a node that\'s associated with a multi-node parallel job.

', ], ], 'NodeOverrides' => [ 'base' => '

An object that represents any node overrides to a job definition that\'s used in a SubmitJob API operation.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t provide it for these jobs. Rather, use containerOverrides instead.

', 'refs' => [ 'SubmitJobRequest$nodeOverrides' => '

A list of node overrides in JSON format that specify the node range to target and the container overrides for that node range.

This parameter isn\'t applicable to jobs that are running on Fargate resources; use containerOverrides instead.

', ], ], 'NodeProperties' => [ 'base' => '

An object that represents the node properties of a multi-node parallel job.

Node properties can\'t be specified for Amazon EKS based job definitions.

', 'refs' => [ 'JobDefinition$nodeProperties' => '

An object with properties that are specific to multi-node parallel jobs. When nodeProperties is used in the job definition, it can\'t be used in addition to containerProperties, ecsProperties, or eksProperties.

If the job runs on Fargate resources, don\'t specify nodeProperties. Use containerProperties instead.

', 'JobDetail$nodeProperties' => '

An object that represents the node properties of a multi-node parallel job.

This isn\'t applicable to jobs that are running on Fargate resources.

', 'RegisterJobDefinitionRequest$nodeProperties' => '

An object with properties specific to multi-node parallel jobs. If you specify node properties for a job, it becomes a multi-node parallel job. For more information, see Multi-node Parallel Jobs in the Batch User Guide.

If the job runs on Fargate resources, then you must not specify nodeProperties; use containerProperties instead.

If the job runs on Amazon EKS resources, then you must not specify nodeProperties.

', ], ], 'NodePropertiesSummary' => [ 'base' => '

An object that represents the properties of a node that\'s associated with a multi-node parallel job.

', 'refs' => [ 'JobSummary$nodeProperties' => '

The node properties for a single node in a job summary list.

This isn\'t applicable to jobs that are running on Fargate resources.

', ], ], 'NodePropertyOverride' => [ 'base' => '

The object that represents any node overrides to a job definition that\'s used in a SubmitJob API operation.

', 'refs' => [ 'NodePropertyOverrides$member' => NULL, ], ], 'NodePropertyOverrides' => [ 'base' => NULL, 'refs' => [ 'NodeOverrides$nodePropertyOverrides' => '

The node property overrides for the job.

', ], ], 'NodeRangeProperties' => [ 'base' => NULL, 'refs' => [ 'NodeProperties$nodeRangeProperties' => '

A list of node ranges and their properties that are associated with a multi-node parallel job.

', ], ], 'NodeRangeProperty' => [ 'base' => '

This is an object that represents the properties of the node range for a multi-node parallel job.

', 'refs' => [ 'NodeRangeProperties$member' => NULL, ], ], 'OrchestrationType' => [ 'base' => NULL, 'refs' => [ 'ComputeEnvironmentDetail$containerOrchestrationType' => '

The orchestration type of the compute environment. The valid values are ECS (default) or EKS.

', 'JobDefinition$containerOrchestrationType' => '

The orchestration type of the compute environment. The valid values are ECS (default) or EKS.

', ], ], 'ParametersMap' => [ 'base' => NULL, 'refs' => [ 'JobDefinition$parameters' => '

Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition. For more information about specifying parameters, see Job definition parameters in the Batch User Guide.

', 'JobDetail$parameters' => '

Additional parameters that are passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.

', 'RegisterJobDefinitionRequest$parameters' => '

Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

', 'SubmitJobRequest$parameters' => '

Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

', ], ], 'PlatformCapability' => [ 'base' => NULL, 'refs' => [ 'PlatformCapabilityList$member' => NULL, ], ], 'PlatformCapabilityList' => [ 'base' => NULL, 'refs' => [ 'JobDefinition$platformCapabilities' => '

The platform capabilities required by the job definition. If no value is specified, it defaults to EC2. Jobs run on Fargate resources specify FARGATE.

', 'JobDetail$platformCapabilities' => '

The platform capabilities required by the job definition. If no value is specified, it defaults to EC2. Jobs run on Fargate resources specify FARGATE.

', 'RegisterJobDefinitionRequest$platformCapabilities' => '

The platform capabilities required by the job definition. If no value is specified, it defaults to EC2. To run the job on Fargate resources, specify FARGATE.

If the job runs on Amazon EKS resources, then you must not specify platformCapabilities.

', ], ], 'Quantity' => [ 'base' => NULL, 'refs' => [ 'EksEmptyDir$sizeLimit' => '

The maximum size of the volume. By default, there\'s no maximum size defined.

', 'EksLimits$value' => NULL, 'EksRequests$value' => NULL, ], ], 'RegisterJobDefinitionRequest' => [ 'base' => '

Contains the parameters for RegisterJobDefinition.

', 'refs' => [], ], 'RegisterJobDefinitionResponse' => [ 'base' => NULL, 'refs' => [], ], 'RepositoryCredentials' => [ 'base' => '

The repository credentials for private registry authentication.

', 'refs' => [ 'ContainerDetail$repositoryCredentials' => '

The private repository authentication credentials to use.

', 'ContainerProperties$repositoryCredentials' => '

The private repository authentication credentials to use.

', 'TaskContainerDetails$repositoryCredentials' => '

The private repository authentication credentials to use.

', 'TaskContainerProperties$repositoryCredentials' => '

The private repository authentication credentials to use.

', ], ], 'ResourceRequirement' => [ 'base' => '

The type and amount of a resource to assign to a container. The supported resources include GPU, MEMORY, and VCPU.

', 'refs' => [ 'ResourceRequirements$member' => NULL, ], ], 'ResourceRequirements' => [ 'base' => NULL, 'refs' => [ 'ContainerDetail$resourceRequirements' => '

The type and amount of resources to assign to a container. The supported resources include GPU, MEMORY, and VCPU.

', 'ContainerOverrides$resourceRequirements' => '

The type and amount of resources to assign to a container. This overrides the settings in the job definition. The supported resources include GPU, MEMORY, and VCPU.

', 'ContainerProperties$resourceRequirements' => '

The type and amount of resources to assign to a container. The supported resources include GPU, MEMORY, and VCPU.

', 'TaskContainerDetails$resourceRequirements' => '

The type and amount of a resource to assign to a container. The only supported resource is a GPU.

', 'TaskContainerOverrides$resourceRequirements' => '

The type and amount of resources to assign to a container. This overrides the settings in the job definition. The supported resources include GPU, MEMORY, and VCPU.

', 'TaskContainerProperties$resourceRequirements' => '

The type and amount of a resource to assign to a container. The only supported resource is a GPU.

', ], ], 'ResourceType' => [ 'base' => NULL, 'refs' => [ 'ResourceRequirement$type' => '

The type of resource to assign to a container. The supported resources include GPU, MEMORY, and VCPU.

', ], ], 'RetryAction' => [ 'base' => NULL, 'refs' => [ 'EvaluateOnExit$action' => '

Specifies the action to take if all of the specified conditions (onStatusReason, onReason, and onExitCode) are met. The values aren\'t case sensitive.

', ], ], 'RetryStrategy' => [ 'base' => '

The retry strategy that\'s associated with a job. For more information, see Automated job retries in the Batch User Guide.

', 'refs' => [ 'JobDefinition$retryStrategy' => '

The retry strategy to use for failed jobs that are submitted with this job definition.

', 'JobDetail$retryStrategy' => '

The retry strategy to use for this job if an attempt fails.

', 'RegisterJobDefinitionRequest$retryStrategy' => '

The retry strategy to use for failed jobs that are submitted with this job definition. Any retry strategy that\'s specified during a SubmitJob operation overrides the retry strategy defined here. If a job is terminated due to a timeout, it isn\'t retried.

', 'SubmitJobRequest$retryStrategy' => '

The retry strategy to use for failed jobs from this SubmitJob operation. When a retry strategy is specified here, it overrides the retry strategy defined in the job definition.

', ], ], 'RuntimePlatform' => [ 'base' => '

An object that represents the compute environment architecture for Batch jobs on Fargate.

', 'refs' => [ 'ContainerDetail$runtimePlatform' => '

An object that represents the compute environment architecture for Batch jobs on Fargate.

', 'ContainerProperties$runtimePlatform' => '

An object that represents the compute environment architecture for Batch jobs on Fargate.

', 'EcsTaskDetails$runtimePlatform' => '

An object that represents the compute environment architecture for Batch jobs on Fargate.

', 'EcsTaskProperties$runtimePlatform' => '

An object that represents the compute environment architecture for Batch jobs on Fargate.

', ], ], 'SchedulingPolicyDetail' => [ 'base' => '

An object that represents a scheduling policy.

', 'refs' => [ 'SchedulingPolicyDetailList$member' => NULL, ], ], 'SchedulingPolicyDetailList' => [ 'base' => NULL, 'refs' => [ 'DescribeSchedulingPoliciesResponse$schedulingPolicies' => '

The list of scheduling policies.

', ], ], 'SchedulingPolicyListingDetail' => [ 'base' => '

An object that contains the details of a scheduling policy that\'s returned in a ListSchedulingPolicy action.

', 'refs' => [ 'SchedulingPolicyListingDetailList$member' => NULL, ], ], 'SchedulingPolicyListingDetailList' => [ 'base' => NULL, 'refs' => [ 'ListSchedulingPoliciesResponse$schedulingPolicies' => '

A list of scheduling policies that match the request.

', ], ], 'Secret' => [ 'base' => '

An object that represents the secret to expose to your container. Secrets can be exposed to a container in the following ways:

For more information, see Specifying sensitive data in the Batch User Guide.

', 'refs' => [ 'SecretList$member' => NULL, ], ], 'SecretList' => [ 'base' => NULL, 'refs' => [ 'ContainerDetail$secrets' => '

The secrets to pass to the container. For more information, see Specifying sensitive data in the Batch User Guide.

', 'ContainerProperties$secrets' => '

The secrets for the container. For more information, see Specifying sensitive data in the Batch User Guide.

', 'LogConfiguration$secretOptions' => '

The secrets to pass to the log configuration. For more information, see Specifying sensitive data in the Batch User Guide.

', 'TaskContainerDetails$secrets' => '

The secrets to pass to the container. For more information, see Specifying Sensitive Data in the Amazon Elastic Container Service Developer Guide.

', 'TaskContainerProperties$secrets' => '

The secrets to pass to the container. For more information, see Specifying Sensitive Data in the Amazon Elastic Container Service Developer Guide.

', ], ], 'ServerException' => [ 'base' => '

These errors are usually caused by a server issue.

', 'refs' => [], ], 'ShareAttributes' => [ 'base' => '

Specifies the weights for the fair share identifiers for the fair share policy. Fair share identifiers that aren\'t included have a default weight of 1.0.

', 'refs' => [ 'ShareAttributesList$member' => NULL, ], ], 'ShareAttributesList' => [ 'base' => NULL, 'refs' => [ 'FairsharePolicy$shareDistribution' => '

An array of SharedIdentifier objects that contain the weights for the fair share identifiers for the fair share policy. Fair share identifiers that aren\'t included have a default weight of 1.0.

', ], ], 'String' => [ 'base' => NULL, 'refs' => [ 'ArrayJobStatusSummary$key' => NULL, 'AttemptContainerDetail$containerInstanceArn' => '

The Amazon Resource Name (ARN) of the Amazon ECS container instance that hosts the job attempt.

', 'AttemptContainerDetail$taskArn' => '

The Amazon Resource Name (ARN) of the Amazon ECS task that\'s associated with the job attempt. Each container attempt receives a task ARN when they reach the STARTING status.

', 'AttemptContainerDetail$reason' => '

A short (255 max characters) human-readable string to provide additional details for a running or stopped container.

', 'AttemptContainerDetail$logStreamName' => '

The name of the CloudWatch Logs log stream that\'s associated with the container. The log group for Batch jobs is /aws/batch/job. Each container attempt receives a log stream name when they reach the RUNNING status.

', 'AttemptDetail$statusReason' => '

A short, human-readable string to provide additional details for the current status of the job attempt.

', 'CancelJobRequest$jobId' => '

The Batch job ID of the job to cancel.

', 'CancelJobRequest$reason' => '

A message to attach to the job that explains the reason for canceling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the Batch activity logs.

', 'ClientException$message' => NULL, 'ComputeEnvironmentDetail$computeEnvironmentName' => '

The name of the compute environment. It can be up to 128 characters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

', 'ComputeEnvironmentDetail$computeEnvironmentArn' => '

The Amazon Resource Name (ARN) of the compute environment.

', 'ComputeEnvironmentDetail$ecsClusterArn' => '

The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster that the compute environment uses.

', 'ComputeEnvironmentDetail$statusReason' => '

A short, human-readable string to provide additional details for the current status of the compute environment.

', 'ComputeEnvironmentDetail$serviceRole' => '

The service role that\'s associated with the compute environment that allows Batch to make calls to Amazon Web Services API operations on your behalf. For more information, see Batch service IAM role in the Batch User Guide.

', 'ComputeEnvironmentDetail$uuid' => '

Unique identifier for the compute environment.

', 'ComputeEnvironmentOrder$computeEnvironment' => '

The Amazon Resource Name (ARN) of the compute environment.

', 'ComputeResource$imageId' => '

The Amazon Machine Image (AMI) ID used for instances launched in the compute environment. This parameter is overridden by the imageIdOverride member of the Ec2Configuration structure.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

The AMI that you choose for a compute environment must match the architecture of the instance types that you intend to use for that compute environment. For example, if your compute environment uses A1 instance types, the compute resource AMI that you choose must support ARM instances. Amazon ECS vends both x86 and ARM versions of the Amazon ECS-optimized Amazon Linux 2 AMI. For more information, see Amazon ECS-optimized Amazon Linux 2 AMI in the Amazon Elastic Container Service Developer Guide.

', 'ComputeResource$ec2KeyPair' => '

The Amazon EC2 key pair that\'s used for instances launched in the compute environment. You can use this key pair to log in to your instances with SSH.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResource$instanceRole' => '

The Amazon ECS instance profile applied to Amazon EC2 instances in a compute environment. This parameter is required for Amazon EC2 instances types. You can specify the short name or full Amazon Resource Name (ARN) of an instance profile. For example, ecsInstanceRole or arn:aws:iam::<aws_account_id>:instance-profile/ecsInstanceRole . For more information, see Amazon ECS instance role in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResource$placementGroup' => '

The Amazon EC2 placement group to associate with your compute resources. If you intend to submit multi-node parallel jobs to your compute environment, you should consider creating a cluster placement group and associate it with your compute resources. This keeps your multi-node parallel job on a logical grouping of instances within a single Availability Zone with high network flow potential. For more information, see Placement groups in the Amazon EC2 User Guide for Linux Instances.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResource$spotIamFleetRole' => '

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment. This role is required if the allocation strategy set to BEST_FIT or if the allocation strategy isn\'t specified. For more information, see Amazon EC2 spot fleet role in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

To tag your Spot Instances on creation, the Spot Fleet IAM role specified here must use the newer AmazonEC2SpotFleetTaggingRole managed policy. The previously recommended AmazonEC2SpotFleetRole managed policy doesn\'t have the required permissions to tag Spot Instances. For more information, see Spot instances not tagged on creation in the Batch User Guide.

', 'ComputeResourceUpdate$ec2KeyPair' => '

The Amazon EC2 key pair that\'s used for instances launched in the compute environment. You can use this key pair to log in to your instances with SSH. To remove the Amazon EC2 key pair, set this value to an empty string.

When updating a compute environment, changing the Amazon EC2 key pair requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResourceUpdate$instanceRole' => '

The Amazon ECS instance profile applied to Amazon EC2 instances in a compute environment. Required for Amazon EC2 instances. You can specify the short name or full Amazon Resource Name (ARN) of an instance profile. For example, ecsInstanceRole or arn:aws:iam::<aws_account_id>:instance-profile/ecsInstanceRole . For more information, see Amazon ECS instance role in the Batch User Guide.

When updating a compute environment, changing this setting requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResourceUpdate$placementGroup' => '

The Amazon EC2 placement group to associate with your compute resources. If you intend to submit multi-node parallel jobs to your compute environment, you should consider creating a cluster placement group and associate it with your compute resources. This keeps your multi-node parallel job on a logical grouping of instances within a single Availability Zone with high network flow potential. For more information, see Placement groups in the Amazon EC2 User Guide for Linux Instances.

When updating a compute environment, changing the placement group requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResourceUpdate$imageId' => '

The Amazon Machine Image (AMI) ID used for instances launched in the compute environment. This parameter is overridden by the imageIdOverride member of the Ec2Configuration structure. To remove the custom AMI ID and use the default AMI ID, set this value to an empty string.

When updating a compute environment, changing the AMI ID requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

The AMI that you choose for a compute environment must match the architecture of the instance types that you intend to use for that compute environment. For example, if your compute environment uses A1 instance types, the compute resource AMI that you choose must support ARM instances. Amazon ECS vends both x86 and ARM versions of the Amazon ECS-optimized Amazon Linux 2 AMI. For more information, see Amazon ECS-optimized Amazon Linux 2 AMI in the Amazon Elastic Container Service Developer Guide.

', 'ContainerDetail$image' => '

The image used to start the container.

', 'ContainerDetail$jobRoleArn' => '

The Amazon Resource Name (ARN) that\'s associated with the job when run.

', 'ContainerDetail$executionRoleArn' => '

The Amazon Resource Name (ARN) of the execution role that Batch can assume. For more information, see Batch execution IAM role in the Batch User Guide.

', 'ContainerDetail$user' => '

The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

', 'ContainerDetail$reason' => '

A short (255 max characters) human-readable string to provide additional details for a running or stopped container.

', 'ContainerDetail$containerInstanceArn' => '

The Amazon Resource Name (ARN) of the container instance that the container is running on.

', 'ContainerDetail$taskArn' => '

The Amazon Resource Name (ARN) of the Amazon ECS task that\'s associated with the container job. Each container attempt receives a task ARN when they reach the STARTING status.

', 'ContainerDetail$logStreamName' => '

The name of the Amazon CloudWatch Logs log stream that\'s associated with the container. The log group for Batch jobs is /aws/batch/job. Each container attempt receives a log stream name when they reach the RUNNING status.

', 'ContainerDetail$instanceType' => '

The instance type of the underlying host infrastructure of a multi-node parallel job.

This parameter isn\'t applicable to jobs that are running on Fargate resources.

', 'ContainerOverrides$instanceType' => '

The instance type to use for a multi-node parallel job.

This parameter isn\'t applicable to single-node container jobs or jobs that run on Fargate resources, and shouldn\'t be provided.

', 'ContainerProperties$image' => '

Required. The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . It can be 255 characters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), underscores (_), colons (:), periods (.), forward slashes (/), and number signs (#). This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

Docker image architecture must match the processor architecture of the compute resources that they\'re scheduled on. For example, ARM-based Docker images can only run on ARM-based compute resources.

', 'ContainerProperties$jobRoleArn' => '

The Amazon Resource Name (ARN) of the IAM role that the container can assume for Amazon Web Services permissions. For more information, see IAM roles for tasks in the Amazon Elastic Container Service Developer Guide.

', 'ContainerProperties$executionRoleArn' => '

The Amazon Resource Name (ARN) of the execution role that Batch can assume. For jobs that run on Fargate resources, you must provide an execution role. For more information, see Batch execution IAM role in the Batch User Guide.

', 'ContainerProperties$user' => '

The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

', 'ContainerProperties$instanceType' => '

The instance type to use for a multi-node parallel job. All node groups in a multi-node parallel job must use the same instance type.

This parameter isn\'t applicable to single-node container jobs or jobs that run on Fargate resources, and shouldn\'t be provided.

', 'ContainerSummary$reason' => '

A short (255 max characters) human-readable string to provide additional details for a running or stopped container.

', 'CreateComputeEnvironmentRequest$computeEnvironmentName' => '

The name for your compute environment. It can be up to 128 characters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

', 'CreateComputeEnvironmentRequest$serviceRole' => '

The full Amazon Resource Name (ARN) of the IAM role that allows Batch to make calls to other Amazon Web Services services on your behalf. For more information, see Batch service IAM role in the Batch User Guide.

If your account already created the Batch service-linked role, that role is used by default for your compute environment unless you specify a different role here. If the Batch service-linked role doesn\'t exist in your account, and no role is specified here, the service attempts to create the Batch service-linked role in your account.

If your specified role has a path other than /, then you must specify either the full role ARN (recommended) or prefix the role name with the path. For example, if a role with the name bar has a path of /foo/, specify /foo/bar as the role name. For more information, see Friendly names and paths in the IAM User Guide.

Depending on how you created your Batch service role, its ARN might contain the service-role path prefix. When you only specify the name of the service role, Batch assumes that your ARN doesn\'t use the service-role path prefix. Because of this, we recommend that you specify the full ARN of your service role when you create compute environments.

', 'CreateComputeEnvironmentResponse$computeEnvironmentName' => '

The name of the compute environment. It can be up to 128 characters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

', 'CreateComputeEnvironmentResponse$computeEnvironmentArn' => '

The Amazon Resource Name (ARN) of the compute environment.

', 'CreateJobQueueRequest$jobQueueName' => '

The name of the job queue. It can be up to 128 letters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

', 'CreateJobQueueRequest$schedulingPolicyArn' => '

The Amazon Resource Name (ARN) of the fair share scheduling policy. If this parameter is specified, the job queue uses a fair share scheduling policy. If this parameter isn\'t specified, the job queue uses a first in, first out (FIFO) scheduling policy. After a job queue is created, you can replace but can\'t remove the fair share scheduling policy. The format is aws:Partition:batch:Region:Account:scheduling-policy/Name . An example is aws:aws:batch:us-west-2:123456789012:scheduling-policy/MySchedulingPolicy.

', 'CreateJobQueueResponse$jobQueueName' => '

The name of the job queue.

', 'CreateJobQueueResponse$jobQueueArn' => '

The Amazon Resource Name (ARN) of the job queue.

', 'CreateSchedulingPolicyRequest$name' => '

The name of the scheduling policy. It can be up to 128 letters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

', 'CreateSchedulingPolicyResponse$name' => '

The name of the scheduling policy.

', 'CreateSchedulingPolicyResponse$arn' => '

The Amazon Resource Name (ARN) of the scheduling policy. The format is aws:Partition:batch:Region:Account:scheduling-policy/Name . For example, aws:aws:batch:us-west-2:123456789012:scheduling-policy/MySchedulingPolicy.

', 'DeleteComputeEnvironmentRequest$computeEnvironment' => '

The name or Amazon Resource Name (ARN) of the compute environment to delete.

', 'DeleteJobQueueRequest$jobQueue' => '

The short name or full Amazon Resource Name (ARN) of the queue to delete.

', 'DeleteSchedulingPolicyRequest$arn' => '

The Amazon Resource Name (ARN) of the scheduling policy to delete.

', 'DeregisterJobDefinitionRequest$jobDefinition' => '

The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.

', 'DescribeComputeEnvironmentsRequest$nextToken' => '

The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

Treat this token as an opaque identifier that\'s only used to retrieve the next items in a list and not for other programmatic purposes.

', 'DescribeComputeEnvironmentsResponse$nextToken' => '

The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeComputeEnvironments request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeJobDefinitionsRequest$jobDefinitionName' => '

The name of the job definition to describe.

', 'DescribeJobDefinitionsRequest$status' => '

The status used to filter job definitions.

', 'DescribeJobDefinitionsRequest$nextToken' => '

The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

Treat this token as an opaque identifier that\'s only used to retrieve the next items in a list and not for other programmatic purposes.

', 'DescribeJobDefinitionsResponse$nextToken' => '

The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeJobQueuesRequest$nextToken' => '

The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

Treat this token as an opaque identifier that\'s only used to retrieve the next items in a list and not for other programmatic purposes.

', 'DescribeJobQueuesResponse$nextToken' => '

The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

', 'Device$hostPath' => '

The path for the device on the host container instance.

', 'Device$containerPath' => '

The path inside the container that\'s used to expose the host device. By default, the hostPath value is used.

', 'EFSAuthorizationConfig$accessPointId' => '

The Amazon EFS access point ID to use. If an access point is specified, the root directory value specified in the EFSVolumeConfiguration must either be omitted or set to / which enforces the path set on the EFS access point. If an access point is used, transit encryption must be enabled in the EFSVolumeConfiguration. For more information, see Working with Amazon EFS access points in the Amazon Elastic File System User Guide.

', 'EFSVolumeConfiguration$fileSystemId' => '

The Amazon EFS file system ID to use.

', 'EFSVolumeConfiguration$rootDirectory' => '

The directory within the Amazon EFS file system to mount as the root directory inside the host. If this parameter is omitted, the root of the Amazon EFS volume is used instead. Specifying / has the same effect as omitting this parameter. The maximum length is 4,096 characters.

If an EFS access point is specified in the authorizationConfig, the root directory parameter must either be omitted or set to /, which enforces the path set on the Amazon EFS access point.

', 'EcsTaskDetails$containerInstanceArn' => '

The Amazon Resource Name (ARN) of the container instance that hosts the task.

', 'EcsTaskDetails$taskArn' => '

The ARN of the Amazon ECS task.

', 'EcsTaskDetails$executionRoleArn' => '

The Amazon Resource Name (ARN) of the execution role that Batch can assume. For more information, see Batch execution IAM role in the Batch User Guide.

', 'EcsTaskDetails$platformVersion' => '

The Fargate platform version where the jobs are running.

', 'EcsTaskDetails$ipcMode' => '

The IPC resource namespace to use for the containers in the task.

', 'EcsTaskDetails$taskRoleArn' => '

The Amazon Resource Name (ARN) of the IAM role that the container can assume for Amazon Web Services permissions. For more information, see IAM roles for tasks in the Amazon Elastic Container Service Developer Guide.

This is object is comparable to ContainerProperties:jobRoleArn.

', 'EcsTaskDetails$pidMode' => '

The process namespace to use for the containers in the task.

', 'EcsTaskProperties$executionRoleArn' => '

The Amazon Resource Name (ARN) of the execution role that Batch can assume. For jobs that run on Fargate resources, you must provide an execution role. For more information, see Batch execution IAM role in the Batch User Guide.

', 'EcsTaskProperties$platformVersion' => '

The Fargate platform version where the jobs are running. A platform version is specified only for jobs that are running on Fargate resources. If one isn\'t specified, the LATEST platform version is used by default. This uses a recent, approved version of the Fargate platform for compute resources. For more information, see Fargate platform versions in the Amazon Elastic Container Service Developer Guide.

', 'EcsTaskProperties$ipcMode' => '

The IPC resource namespace to use for the containers in the task. The valid values are host, task, or none.

If host is specified, all containers within the tasks that specified the host IPC mode on the same container instance share the same IPC resources with the host Amazon EC2 instance.

If task is specified, all containers within the specified task share the same IPC resources.

If none is specified, the IPC resources within the containers of a task are private, and are not shared with other containers in a task or on the container instance.

If no value is specified, then the IPC resource namespace sharing depends on the Docker daemon setting on the container instance. For more information, see IPC settings in the Docker run reference.

', 'EcsTaskProperties$taskRoleArn' => '

The Amazon Resource Name (ARN) that\'s associated with the Amazon ECS task.

This is object is comparable to ContainerProperties:jobRoleArn.

', 'EcsTaskProperties$pidMode' => '

The process namespace to use for the containers in the task. The valid values are host or task. For example, monitoring sidecars might need pidMode to access information about other containers running in the same task.

If host is specified, all containers within the tasks that specified the host PID mode on the same container instance share the process namespace with the host Amazon EC2 instance.

If task is specified, all containers within the specified task share the same process namespace.

If no value is specified, the default is a private namespace for each container. For more information, see PID settings in the Docker run reference.

', 'EksAttemptContainerDetail$reason' => '

A short (255 max characters) human-readable string to provide additional details for a running or stopped container.

', 'EksAttemptDetail$podName' => '

The name of the pod for this job attempt.

', 'EksAttemptDetail$nodeName' => '

The name of the node for this job attempt.

', 'EksAttemptDetail$statusReason' => '

A short, human-readable string to provide additional details for the current status of the job attempt.

', 'EksConfiguration$eksClusterArn' => '

The Amazon Resource Name (ARN) of the Amazon EKS cluster. An example is arn:aws:eks:us-east-1:123456789012:cluster/ClusterForBatch .

', 'EksConfiguration$kubernetesNamespace' => '

The namespace of the Amazon EKS cluster. Batch manages pods in this namespace. The value can\'t left empty or null. It must be fewer than 64 characters long, can\'t be set to default, can\'t start with "kube-," and must match this regular expression: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$. For more information, see Namespaces in the Kubernetes documentation.

', 'EksContainer$name' => '

The name of the container. If the name isn\'t specified, the default name "Default" is used. Each container in a pod must have a unique name.

', 'EksContainer$image' => '

The Docker image used to start the container.

', 'EksContainer$imagePullPolicy' => '

The image pull policy for the container. Supported values are Always, IfNotPresent, and Never. This parameter defaults to IfNotPresent. However, if the :latest tag is specified, it defaults to Always. For more information, see Updating images in the Kubernetes documentation.

', 'EksContainerDetail$name' => '

The name of the container. If the name isn\'t specified, the default name "Default" is used. Each container in a pod must have a unique name.

', 'EksContainerDetail$image' => '

The Docker image used to start the container.

', 'EksContainerDetail$imagePullPolicy' => '

The image pull policy for the container. Supported values are Always, IfNotPresent, and Never. This parameter defaults to Always if the :latest tag is specified, IfNotPresent otherwise. For more information, see Updating images in the Kubernetes documentation.

', 'EksContainerDetail$reason' => '

A short human-readable string to provide additional details for a running or stopped container. It can be up to 255 characters long.

', 'EksContainerEnvironmentVariable$name' => '

The name of the environment variable.

', 'EksContainerEnvironmentVariable$value' => '

The value of the environment variable.

', 'EksContainerOverride$name' => '

A pointer to the container that you want to override. The name must match a unique container name that you wish to override.

', 'EksContainerOverride$image' => '

The override of the Docker image that\'s used to start the container.

', 'EksContainerVolumeMount$name' => '

The name the volume mount. This must match the name of one of the volumes in the pod.

', 'EksContainerVolumeMount$mountPath' => '

The path on the container where the volume is mounted.

', 'EksEmptyDir$medium' => '

The medium to store the volume. The default value is an empty string, which uses the storage of the node.

""

(Default) Use the disk storage of the node.

"Memory"

Use the tmpfs volume that\'s backed by the RAM of the node. Contents of the volume are lost when the node reboots, and any storage on the volume counts against the container\'s memory limit.

', 'EksHostPath$path' => '

The path of the file or directory on the host to mount into containers on the pod.

', 'EksLabelsMap$key' => NULL, 'EksLabelsMap$value' => NULL, 'EksLimits$key' => NULL, 'EksPodProperties$serviceAccountName' => '

The name of the service account that\'s used to run the pod. For more information, see Kubernetes service accounts and Configure a Kubernetes service account to assume an IAM role in the Amazon EKS User Guide and Configure service accounts for pods in the Kubernetes documentation.

', 'EksPodProperties$dnsPolicy' => '

The DNS policy for the pod. The default value is ClusterFirst. If the hostNetwork parameter is not specified, the default is ClusterFirstWithHostNet. ClusterFirst indicates that any DNS query that does not match the configured cluster domain suffix is forwarded to the upstream nameserver inherited from the node. For more information, see Pod\'s DNS policy in the Kubernetes documentation.

Valid values: Default | ClusterFirst | ClusterFirstWithHostNet

', 'EksPodPropertiesDetail$serviceAccountName' => '

The name of the service account that\'s used to run the pod. For more information, see Kubernetes service accounts and Configure a Kubernetes service account to assume an IAM role in the Amazon EKS User Guide and Configure service accounts for pods in the Kubernetes documentation.

', 'EksPodPropertiesDetail$dnsPolicy' => '

The DNS policy for the pod. The default value is ClusterFirst. If the hostNetwork parameter is not specified, the default is ClusterFirstWithHostNet. ClusterFirst indicates that any DNS query that does not match the configured cluster domain suffix is forwarded to the upstream nameserver inherited from the node. If no value was specified for dnsPolicy in the RegisterJobDefinition API operation, then no value will be returned for dnsPolicy by either of DescribeJobDefinitions or DescribeJobs API operations. The pod spec setting will contain either ClusterFirst or ClusterFirstWithHostNet, depending on the value of the hostNetwork parameter. For more information, see Pod\'s DNS policy in the Kubernetes documentation.

Valid values: Default | ClusterFirst | ClusterFirstWithHostNet

', 'EksPodPropertiesDetail$podName' => '

The name of the pod for this job.

', 'EksPodPropertiesDetail$nodeName' => '

The name of the node for this job.

', 'EksRequests$key' => NULL, 'EksSecret$secretName' => '

The name of the secret. The name must be allowed as a DNS subdomain name. For more information, see DNS subdomain names in the Kubernetes documentation.

', 'EksVolume$name' => '

The name of the volume. The name must be allowed as a DNS subdomain name. For more information, see DNS subdomain names in the Kubernetes documentation.

', 'EvaluateOnExit$onStatusReason' => '

Contains a glob pattern to match against the StatusReason returned for a job. The pattern can contain up to 512 characters. It can contain letters, numbers, periods (.), colons (:), and white spaces (including spaces or tabs). It can optionally end with an asterisk (*) so that only the start of the string needs to be an exact match.

', 'EvaluateOnExit$onReason' => '

Contains a glob pattern to match against the Reason returned for a job. The pattern can contain up to 512 characters. It can contain letters, numbers, periods (.), colons (:), and white space (including spaces and tabs). It can optionally end with an asterisk (*) so that only the start of the string needs to be an exact match.

', 'EvaluateOnExit$onExitCode' => '

Contains a glob pattern to match against the decimal representation of the ExitCode returned for a job. The pattern can be up to 512 characters long. It can contain only numbers, and can end with an asterisk (*) so that only the start of the string needs to be an exact match.

The string can contain up to 512 characters.

', 'FargatePlatformConfiguration$platformVersion' => '

The Fargate platform version where the jobs are running. A platform version is specified only for jobs that are running on Fargate resources. If one isn\'t specified, the LATEST platform version is used by default. This uses a recent, approved version of the Fargate platform for compute resources. For more information, see Fargate platform versions in the Amazon Elastic Container Service Developer Guide.

', 'Host$sourcePath' => '

The path on the host container instance that\'s presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If this parameter contains a file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the source path location doesn\'t exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.

This parameter isn\'t applicable to jobs that run on Fargate resources. Don\'t provide this for these jobs.

', 'JobDefinition$jobDefinitionName' => '

The name of the job definition.

', 'JobDefinition$jobDefinitionArn' => '

The Amazon Resource Name (ARN) for the job definition.

', 'JobDefinition$status' => '

The status of the job definition.

', 'JobDefinition$type' => '

The type of job definition. It\'s either container or multinode. If the job is run on Fargate resources, then multinode isn\'t supported. For more information about multi-node parallel jobs, see Creating a multi-node parallel job definition in the Batch User Guide.

', 'JobDependency$jobId' => '

The job ID of the Batch job that\'s associated with this dependency.

', 'JobDetail$jobArn' => '

The Amazon Resource Name (ARN) of the job.

', 'JobDetail$jobName' => '

The job name.

', 'JobDetail$jobId' => '

The job ID.

', 'JobDetail$jobQueue' => '

The Amazon Resource Name (ARN) of the job queue that the job is associated with.

', 'JobDetail$shareIdentifier' => '

The share identifier for the job.

', 'JobDetail$statusReason' => '

A short, human-readable string to provide more details for the current status of the job.

', 'JobDetail$jobDefinition' => '

The Amazon Resource Name (ARN) of the job definition that this job uses.

', 'JobQueueDetail$jobQueueName' => '

The job queue name.

', 'JobQueueDetail$jobQueueArn' => '

The Amazon Resource Name (ARN) of the job queue.

', 'JobQueueDetail$schedulingPolicyArn' => '

The Amazon Resource Name (ARN) of the scheduling policy. The format is aws:Partition:batch:Region:Account:scheduling-policy/Name . For example, aws:aws:batch:us-west-2:123456789012:scheduling-policy/MySchedulingPolicy.

', 'JobQueueDetail$statusReason' => '

A short, human-readable string to provide additional details for the current status of the job queue.

', 'JobSummary$jobArn' => '

The Amazon Resource Name (ARN) of the job.

', 'JobSummary$jobId' => '

The job ID.

', 'JobSummary$jobName' => '

The job name.

', 'JobSummary$statusReason' => '

A short, human-readable string to provide more details for the current status of the job.

', 'JobSummary$jobDefinition' => '

The Amazon Resource Name (ARN) of the job definition.

', 'KeyValuePair$name' => '

The name of the key-value pair. For environment variables, this is the name of the environment variable.

', 'KeyValuePair$value' => '

The value of the key-value pair. For environment variables, this is the value of the environment variable.

', 'KeyValuesPair$name' => '

The name of the filter. Filter names are case sensitive.

', 'LaunchTemplateSpecification$launchTemplateId' => '

The ID of the launch template.

', 'LaunchTemplateSpecification$launchTemplateName' => '

The name of the launch template.

', 'LaunchTemplateSpecification$version' => '

The version number of the launch template, $Latest, or $Default.

If the value is $Latest, the latest version of the launch template is used. If the value is $Default, the default version of the launch template is used.

If the AMI ID that\'s used in a compute environment is from the launch template, the AMI isn\'t changed when the compute environment is updated. It\'s only changed if the updateToLatestImageVersion parameter for the compute environment is set to true. During an infrastructure update, if either $Latest or $Default is specified, Batch re-evaluates the launch template version, and it might use a different version of the launch template. This is the case even if the launch template isn\'t specified in the update. When updating a compute environment, changing the launch template requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

Default: $Default.

', 'ListJobsRequest$jobQueue' => '

The name or full Amazon Resource Name (ARN) of the job queue used to list jobs.

', 'ListJobsRequest$arrayJobId' => '

The job ID for an array job. Specifying an array job ID with this parameter lists all child jobs from within the specified array.

', 'ListJobsRequest$multiNodeJobId' => '

The job ID for a multi-node parallel job. Specifying a multi-node parallel job ID with this parameter lists all nodes that are associated with the specified job.

', 'ListJobsRequest$nextToken' => '

The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

Treat this token as an opaque identifier that\'s only used to retrieve the next items in a list and not for other programmatic purposes.

', 'ListJobsResponse$nextToken' => '

The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

', 'ListSchedulingPoliciesRequest$nextToken' => '

The nextToken value that\'s returned from a previous paginated ListSchedulingPolicies request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

Treat this token as an opaque identifier that\'s only used to retrieve the next items in a list and not for other programmatic purposes.

', 'ListSchedulingPoliciesResponse$nextToken' => '

The nextToken value to include in a future ListSchedulingPolicies request. When the results of a ListSchedulingPolicies request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

', 'ListTagsForResourceRequest$resourceArn' => '

The Amazon Resource Name (ARN) that identifies the resource that tags are listed for. Batch resources that support tags are compute environments, jobs, job definitions, job queues, and scheduling policies. ARNs for child jobs of array and multi-node parallel (MNP) jobs aren\'t supported.

', 'LogConfigurationOptionsMap$key' => NULL, 'LogConfigurationOptionsMap$value' => NULL, 'MountPoint$containerPath' => '

The path on the container where the host volume is mounted.

', 'MountPoint$sourceVolume' => '

The name of the volume to mount.

', 'NetworkInterface$attachmentId' => '

The attachment ID for the network interface.

', 'NetworkInterface$ipv6Address' => '

The private IPv6 address for the network interface.

', 'NetworkInterface$privateIpv4Address' => '

The private IPv4 address for the network interface.

', 'NodePropertyOverride$targetNodes' => '

The range of nodes, using node index values, that\'s used to override. A range of 0:3 indicates nodes with index values of 0 through 3. If the starting range value is omitted (:n), then 0 is used to start the range. If the ending range value is omitted (n:), then the highest possible node index is used to end the range.

', 'NodeRangeProperty$targetNodes' => '

The range of nodes, using node index values. A range of 0:3 indicates nodes with index values of 0 through 3. If the starting range value is omitted (:n), then 0 is used to start the range. If the ending range value is omitted (n:), then the highest possible node index is used to end the range. Your accumulative node ranges must account for all nodes (0:n). You can nest node ranges (for example, 0:10 and 4:5). In this case, the 4:5 range properties override the 0:10 properties.

', 'ParametersMap$key' => NULL, 'ParametersMap$value' => NULL, 'RegisterJobDefinitionRequest$jobDefinitionName' => '

The name of the job definition to register. It can be up to 128 letters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

', 'RegisterJobDefinitionResponse$jobDefinitionName' => '

The name of the job definition.

', 'RegisterJobDefinitionResponse$jobDefinitionArn' => '

The Amazon Resource Name (ARN) of the job definition.

', 'RepositoryCredentials$credentialsParameter' => '

The Amazon Resource Name (ARN) of the secret containing the private repository credentials.

', 'ResourceRequirement$value' => '

The quantity of the specified resource to reserve for the container. The values vary based on the type specified.

type="GPU"

The number of physical GPUs to reserve for the container. Make sure that the number of GPUs reserved for all containers in a job doesn\'t exceed the number of available GPUs on the compute resource that the job is launched on.

GPUs aren\'t available for jobs that are running on Fargate resources.

type="MEMORY"

The memory hard limit (in MiB) present to the container. This parameter is supported for jobs that are running on Amazon EC2 resources. If your container attempts to exceed the memory specified, the container is terminated. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run. You must specify at least 4 MiB of memory for a job. This is required but can be specified in several places for multi-node parallel (MNP) jobs. It must be specified for each node at least once. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

If you\'re trying to maximize your resource utilization by providing your jobs as much memory as possible for a particular instance type, see Memory management in the Batch User Guide.

For jobs that are running on Fargate resources, then value is the hard limit (in MiB), and must match one of the supported values and the VCPU values must be one of the values supported for that memory value.

value = 512

VCPU = 0.25

value = 1024

VCPU = 0.25 or 0.5

value = 2048

VCPU = 0.25, 0.5, or 1

value = 3072

VCPU = 0.5, or 1

value = 4096

VCPU = 0.5, 1, or 2

value = 5120, 6144, or 7168

VCPU = 1 or 2

value = 8192

VCPU = 1, 2, or 4

value = 9216, 10240, 11264, 12288, 13312, 14336, or 15360

VCPU = 2 or 4

value = 16384

VCPU = 2, 4, or 8

value = 17408, 18432, 19456, 21504, 22528, 23552, 25600, 26624, 27648, 29696, or 30720

VCPU = 4

value = 20480, 24576, or 28672

VCPU = 4 or 8

value = 36864, 45056, 53248, or 61440

VCPU = 8

value = 32768, 40960, 49152, or 57344

VCPU = 8 or 16

value = 65536, 73728, 81920, 90112, 98304, 106496, 114688, or 122880

VCPU = 16

type="VCPU"

The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares. For Amazon EC2 resources, you must specify at least one vCPU. This is required but can be specified in several places; it must be specified for each node at least once.

The default for the Fargate On-Demand vCPU resource count quota is 6 vCPUs. For more information about Fargate quotas, see Fargate quotas in the Amazon Web Services General Reference.

For jobs that are running on Fargate resources, then value must match one of the supported values and the MEMORY values must be one of the values supported for that VCPU value. The supported values are 0.25, 0.5, 1, 2, 4, 8, and 16

value = 0.25

MEMORY = 512, 1024, or 2048

value = 0.5

MEMORY = 1024, 2048, 3072, or 4096

value = 1

MEMORY = 2048, 3072, 4096, 5120, 6144, 7168, or 8192

value = 2

MEMORY = 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336, 15360, or 16384

value = 4

MEMORY = 8192, 9216, 10240, 11264, 12288, 13312, 14336, 15360, 16384, 17408, 18432, 19456, 20480, 21504, 22528, 23552, 24576, 25600, 26624, 27648, 28672, 29696, or 30720

value = 8

MEMORY = 16384, 20480, 24576, 28672, 32768, 36864, 40960, 45056, 49152, 53248, 57344, or 61440

value = 16

MEMORY = 32768, 40960, 49152, 57344, 65536, 73728, 81920, 90112, 98304, 106496, 114688, or 122880

', 'RuntimePlatform$operatingSystemFamily' => '

The operating system for the compute environment. Valid values are: LINUX (default), WINDOWS_SERVER_2019_CORE, WINDOWS_SERVER_2019_FULL, WINDOWS_SERVER_2022_CORE, and WINDOWS_SERVER_2022_FULL.

The following parameters can’t be set for Windows containers: linuxParameters, privileged, user, ulimits, readonlyRootFilesystem, and efsVolumeConfiguration.

The Batch Scheduler checks the compute environments that are attached to the job queue before registering a task definition with Fargate. In this scenario, the job queue is where the job is submitted. If the job requires a Windows container and the first compute environment is LINUX, the compute environment is skipped and the next compute environment is checked until a Windows-based compute environment is found.

Fargate Spot is not supported for ARM64 and Windows-based containers on Fargate. A job queue will be blocked if a Fargate ARM64 or Windows job is submitted to a job queue with only Fargate Spot compute environments. However, you can attach both FARGATE and FARGATE_SPOT compute environments to the same job queue.

', 'RuntimePlatform$cpuArchitecture' => '

The vCPU architecture. The default value is X86_64. Valid values are X86_64 and ARM64.

This parameter must be set to X86_64 for Windows containers.

Fargate Spot is not supported for ARM64 and Windows-based containers on Fargate. A job queue will be blocked if a Fargate ARM64 or Windows job is submitted to a job queue with only Fargate Spot compute environments. However, you can attach both FARGATE and FARGATE_SPOT compute environments to the same job queue.

', 'SchedulingPolicyDetail$name' => '

The name of the scheduling policy.

', 'SchedulingPolicyDetail$arn' => '

The Amazon Resource Name (ARN) of the scheduling policy. An example is arn:aws:batch:us-east-1:123456789012:scheduling-policy/HighPriority .

', 'SchedulingPolicyListingDetail$arn' => '

Amazon Resource Name (ARN) of the scheduling policy.

', 'Secret$name' => '

The name of the secret.

', 'Secret$valueFrom' => '

The secret to expose to the container. The supported values are either the full Amazon Resource Name (ARN) of the Secrets Manager secret or the full ARN of the parameter in the Amazon Web Services Systems Manager Parameter Store.

If the Amazon Web Services Systems Manager Parameter Store parameter exists in the same Region as the job you\'re launching, then you can use either the full Amazon Resource Name (ARN) or name of the parameter. If the parameter exists in a different Region, then the full ARN must be specified.

', 'ServerException$message' => NULL, 'ShareAttributes$shareIdentifier' => '

A fair share identifier or fair share identifier prefix. If the string ends with an asterisk (*), this entry specifies the weight factor to use for fair share identifiers that start with that prefix. The list of fair share identifiers in a fair share policy can\'t overlap. For example, you can\'t have one that specifies a shareIdentifier of UserA* and another that specifies a shareIdentifier of UserA-1.

There can be no more than 500 fair share identifiers active in a job queue.

The string is limited to 255 alphanumeric characters, and can be followed by an asterisk (*).

', 'StringList$member' => NULL, 'SubmitJobRequest$jobName' => '

The name of the job. It can be up to 128 letters long. The first character must be alphanumeric, can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

', 'SubmitJobRequest$jobQueue' => '

The job queue where the job is submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.

', 'SubmitJobRequest$shareIdentifier' => '

The share identifier for the job. Don\'t specify this parameter if the job queue doesn\'t have a scheduling policy. If the job queue has a scheduling policy, then this parameter must be specified.

This string is limited to 255 alphanumeric characters, and can be followed by an asterisk (*).

', 'SubmitJobRequest$jobDefinition' => '

The job definition used by this job. This value can be one of definition-name, definition-name:revision, or the Amazon Resource Name (ARN) for the job definition, with or without the revision (arn:aws:batch:region:account:job-definition/definition-name:revision , or arn:aws:batch:region:account:job-definition/definition-name ).

If the revision is not specified, then the latest active revision is used.

', 'SubmitJobResponse$jobArn' => '

The Amazon Resource Name (ARN) for the job.

', 'SubmitJobResponse$jobName' => '

The name of the job.

', 'SubmitJobResponse$jobId' => '

The unique identifier for the job.

', 'TagResourceRequest$resourceArn' => '

The Amazon Resource Name (ARN) of the resource that tags are added to. Batch resources that support tags are compute environments, jobs, job definitions, job queues, and scheduling policies. ARNs for child jobs of array and multi-node parallel (MNP) jobs aren\'t supported.

', 'TagsMap$key' => NULL, 'TagsMap$value' => NULL, 'TaskContainerDependency$containerName' => '

A unique identifier for the container.

', 'TaskContainerDependency$condition' => '

The dependency condition of the container. The following are the available conditions and their behavior:

', 'TaskContainerDetails$image' => '

The image used to start a container. This string is passed directly to the Docker daemon. By default, images in the Docker Hub registry are available. Other repositories are specified with either repository-url/image:tag or repository-url/image@digest. Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of the docker run .

', 'TaskContainerDetails$name' => '

The name of a container.

', 'TaskContainerDetails$user' => '

The user to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

When running tasks using the host network mode, don\'t run containers using the root user (UID 0). We recommend using a non-root user for better security.

You can specify the user using the following formats. If specifying a UID or GID, you must specify it as a positive integer.

This parameter is not supported for Windows containers.

', 'TaskContainerDetails$reason' => '

A short (255 max characters) human-readable string to provide additional details for a running or stopped container.

', 'TaskContainerDetails$logStreamName' => '

The name of the CloudWatch Logs log stream that\'s associated with the container. The log group for Batch jobs is /aws/batch/job. Each container attempt receives a log stream name when they reach the RUNNING status.

', 'TaskContainerOverrides$name' => '

A pointer to the container that you want to override. The container\'s name provides a unique identifier for the container being used.

', 'TaskContainerProperties$image' => '

The image used to start a container. This string is passed directly to the Docker daemon. By default, images in the Docker Hub registry are available. Other repositories are specified with either repository-url/image:tag or repository-url/image@digest. Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of the docker run .

', 'TaskContainerProperties$name' => '

The name of a container. The name can be used as a unique identifier to target your dependsOn and Overrides objects.

', 'TaskContainerProperties$user' => '

The user to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

When running tasks using the host network mode, don\'t run containers using the root user (UID 0). We recommend using a non-root user for better security.

You can specify the user using the following formats. If specifying a UID or GID, you must specify it as a positive integer.

  • user

  • user:group

  • uid

  • uid:gid

  • user:gi

  • uid:group

This parameter is not supported for Windows containers.

', 'TerminateJobRequest$jobId' => '

The Batch job ID of the job to terminate.

', 'TerminateJobRequest$reason' => '

A message to attach to the job that explains the reason for canceling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the Batch activity logs.

', 'Tmpfs$containerPath' => '

The absolute file path in the container where the tmpfs volume is mounted.

', 'Ulimit$name' => '

The type of the ulimit. Valid values are: core | cpu | data | fsize | locks | memlock | msgqueue | nice | nofile | nproc | rss | rtprio | rttime | sigpending | stack.

', 'UntagResourceRequest$resourceArn' => '

The Amazon Resource Name (ARN) of the resource from which to delete tags. Batch resources that support tags are compute environments, jobs, job definitions, job queues, and scheduling policies. ARNs for child jobs of array and multi-node parallel (MNP) jobs aren\'t supported.

', 'UpdateComputeEnvironmentRequest$computeEnvironment' => '

The name or full Amazon Resource Name (ARN) of the compute environment to update.

', 'UpdateComputeEnvironmentRequest$serviceRole' => '

The full Amazon Resource Name (ARN) of the IAM role that allows Batch to make calls to other Amazon Web Services services on your behalf. For more information, see Batch service IAM role in the Batch User Guide.

If the compute environment has a service-linked role, it can\'t be changed to use a regular IAM role. Likewise, if the compute environment has a regular IAM role, it can\'t be changed to use a service-linked role. To update the parameters for the compute environment that require an infrastructure update to change, the AWSServiceRoleForBatch service-linked role must be used. For more information, see Updating compute environments in the Batch User Guide.

If your specified role has a path other than /, then you must either specify the full role ARN (recommended) or prefix the role name with the path.

Depending on how you created your Batch service role, its ARN might contain the service-role path prefix. When you only specify the name of the service role, Batch assumes that your ARN doesn\'t use the service-role path prefix. Because of this, we recommend that you specify the full ARN of your service role when you create compute environments.

', 'UpdateComputeEnvironmentResponse$computeEnvironmentName' => '

The name of the compute environment. It can be up to 128 characters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

', 'UpdateComputeEnvironmentResponse$computeEnvironmentArn' => '

The Amazon Resource Name (ARN) of the compute environment.

', 'UpdateJobQueueRequest$jobQueue' => '

The name or the Amazon Resource Name (ARN) of the job queue.

', 'UpdateJobQueueRequest$schedulingPolicyArn' => '

Amazon Resource Name (ARN) of the fair share scheduling policy. Once a job queue is created, the fair share scheduling policy can be replaced but not removed. The format is aws:Partition:batch:Region:Account:scheduling-policy/Name . For example, aws:aws:batch:us-west-2:123456789012:scheduling-policy/MySchedulingPolicy.

', 'UpdateJobQueueResponse$jobQueueName' => '

The name of the job queue.

', 'UpdateJobQueueResponse$jobQueueArn' => '

The Amazon Resource Name (ARN) of the job queue.

', 'UpdateSchedulingPolicyRequest$arn' => '

The Amazon Resource Name (ARN) of the scheduling policy to update.

', 'Volume$name' => '

The name of the volume. It can be up to 255 characters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_). This name is referenced in the sourceVolume parameter of container definition mountPoints.

', ], ], 'StringList' => [ 'base' => NULL, 'refs' => [ 'ComputeResource$instanceTypes' => '

The instances types that can be launched. You can specify instance families to launch any instance type within those families (for example, c5 or p3), or you can specify specific sizes within a family (such as c5.8xlarge). You can also choose optimal to select instance types (from the C4, M4, and R4 instance families) that match the demand of your job queues.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

When you create a compute environment, the instance types that you select for the compute environment must share the same architecture. For example, you can\'t mix x86 and ARM instances in the same compute environment.

Currently, optimal uses instance types from the C4, M4, and R4 instance families. In Regions that don\'t have instance types from those instance families, instance types from the C5, M5, and R5 instance families are used.

', 'ComputeResource$subnets' => '

The VPC subnets where the compute resources are launched. These subnets must be within the same VPC. Fargate compute resources can contain up to 16 subnets. For more information, see VPCs and subnets in the Amazon VPC User Guide.

Batch on Amazon EC2 and Batch on Amazon EKS support Local Zones. For more information, see Local Zones in the Amazon EC2 User Guide for Linux Instances, Amazon EKS and Amazon Web Services Local Zones in the Amazon EKS User Guide and Amazon ECS clusters in Local Zones, Wavelength Zones, and Amazon Web Services Outposts in the Amazon ECS Developer Guide.

Batch on Fargate doesn\'t currently support Local Zones.

', 'ComputeResource$securityGroupIds' => '

The Amazon EC2 security groups that are associated with instances launched in the compute environment. One or more security groups must be specified, either in securityGroupIds or using a launch template referenced in launchTemplate. This parameter is required for jobs that are running on Fargate resources and must contain at least one security group. Fargate doesn\'t support launch templates. If security groups are specified using both securityGroupIds and launchTemplate, the values in securityGroupIds are used.

', 'ComputeResourceUpdate$subnets' => '

The VPC subnets where the compute resources are launched. Fargate compute resources can contain up to 16 subnets. For Fargate compute resources, providing an empty list will be handled as if this parameter wasn\'t specified and no change is made. For Amazon EC2 compute resources, providing an empty list removes the VPC subnets from the compute resource. For more information, see VPCs and subnets in the Amazon VPC User Guide.

When updating a compute environment, changing the VPC subnets requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

Batch on Amazon EC2 and Batch on Amazon EKS support Local Zones. For more information, see Local Zones in the Amazon EC2 User Guide for Linux Instances, Amazon EKS and Amazon Web Services Local Zones in the Amazon EKS User Guide and Amazon ECS clusters in Local Zones, Wavelength Zones, and Amazon Web Services Outposts in the Amazon ECS Developer Guide.

Batch on Fargate doesn\'t currently support Local Zones.

', 'ComputeResourceUpdate$securityGroupIds' => '

The Amazon EC2 security groups that are associated with instances launched in the compute environment. This parameter is required for Fargate compute resources, where it can contain up to 5 security groups. For Fargate compute resources, providing an empty list is handled as if this parameter wasn\'t specified and no change is made. For Amazon EC2 compute resources, providing an empty list removes the security groups from the compute resource.

When updating a compute environment, changing the Amazon EC2 security groups requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

', 'ComputeResourceUpdate$instanceTypes' => '

The instances types that can be launched. You can specify instance families to launch any instance type within those families (for example, c5 or p3), or you can specify specific sizes within a family (such as c5.8xlarge). You can also choose optimal to select instance types (from the C4, M4, and R4 instance families) that match the demand of your job queues.

When updating a compute environment, changing this setting requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

When you create a compute environment, the instance types that you select for the compute environment must share the same architecture. For example, you can\'t mix x86 and ARM instances in the same compute environment.

Currently, optimal uses instance types from the C4, M4, and R4 instance families. In Regions that don\'t have instance types from those instance families, instance types from the C5, M5, and R5 instance families are used.

', 'ContainerDetail$command' => '

The command that\'s passed to the container.

', 'ContainerOverrides$command' => '

The command to send to the container that overrides the default command from the Docker image or the job definition.

This parameter can\'t contain an empty string.

', 'ContainerProperties$command' => '

The command that\'s passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.

', 'DescribeComputeEnvironmentsRequest$computeEnvironments' => '

A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.

', 'DescribeJobDefinitionsRequest$jobDefinitions' => '

A list of up to 100 job definitions. Each entry in the list can either be an ARN in the format arn:aws:batch:${Region}:${Account}:job-definition/${JobDefinitionName}:${Revision} or a short version using the form ${JobDefinitionName}:${Revision}. This parameter can\'t be used with other parameters.

', 'DescribeJobQueuesRequest$jobQueues' => '

A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.

', 'DescribeJobsRequest$jobs' => '

A list of up to 100 job IDs.

', 'DescribeSchedulingPoliciesRequest$arns' => '

A list of up to 100 scheduling policy Amazon Resource Name (ARN) entries.

', 'EksContainer$command' => '

The entrypoint for the container. This isn\'t run within a shell. If this isn\'t specified, the ENTRYPOINT of the container image is used. Environment variable references are expanded using the container\'s environment.

If the referenced environment variable doesn\'t exist, the reference in the command isn\'t changed. For example, if the reference is to "$(NAME1)" and the NAME1 environment variable doesn\'t exist, the command string will remain "$(NAME1)." $$ is replaced with $ and the resulting string isn\'t expanded. For example, $$(VAR_NAME) will be passed as $(VAR_NAME) whether or not the VAR_NAME environment variable exists. The entrypoint can\'t be updated. For more information, see ENTRYPOINT in the Dockerfile reference and Define a command and arguments for a container and Entrypoint in the Kubernetes documentation.

', 'EksContainer$args' => '

An array of arguments to the entrypoint. If this isn\'t specified, the CMD of the container image is used. This corresponds to the args member in the Entrypoint portion of the Pod in Kubernetes. Environment variable references are expanded using the container\'s environment.

If the referenced environment variable doesn\'t exist, the reference in the command isn\'t changed. For example, if the reference is to "$(NAME1)" and the NAME1 environment variable doesn\'t exist, the command string will remain "$(NAME1)." $$ is replaced with $, and the resulting string isn\'t expanded. For example, $$(VAR_NAME) is passed as $(VAR_NAME) whether or not the VAR_NAME environment variable exists. For more information, see Dockerfile reference: CMD and Define a command and arguments for a pod in the Kubernetes documentation.

', 'EksContainerDetail$command' => '

The entrypoint for the container. For more information, see Entrypoint in the Kubernetes documentation.

', 'EksContainerDetail$args' => '

An array of arguments to the entrypoint. If this isn\'t specified, the CMD of the container image is used. This corresponds to the args member in the Entrypoint portion of the Pod in Kubernetes. Environment variable references are expanded using the container\'s environment.

If the referenced environment variable doesn\'t exist, the reference in the command isn\'t changed. For example, if the reference is to "$(NAME1)" and the NAME1 environment variable doesn\'t exist, the command string will remain "$(NAME1)". $$ is replaced with $ and the resulting string isn\'t expanded. For example, $$(VAR_NAME) is passed as $(VAR_NAME) whether or not the VAR_NAME environment variable exists. For more information, see Dockerfile reference: CMD and Define a command and arguments for a pod in the Kubernetes documentation.

', 'EksContainerOverride$command' => '

The command to send to the container that overrides the default command from the Docker image or the job definition.

', 'EksContainerOverride$args' => '

The arguments to the entrypoint to send to the container that overrides the default arguments from the Docker image or the job definition. For more information, see Dockerfile reference: CMD and Define a command an arguments for a pod in the Kubernetes documentation.

', 'KeyValuesPair$values' => '

The filter values.

', 'NodePropertyOverride$instanceTypes' => '

An object that contains the instance types that you want to replace for the existing resources of a job.

', 'NodeRangeProperty$instanceTypes' => '

The instance types of the underlying host infrastructure of a multi-node parallel job.

This parameter isn\'t applicable to jobs that are running on Fargate resources.

In addition, this list object is currently limited to one element.

', 'TaskContainerDetails$command' => '

The command that\'s passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.

', 'TaskContainerOverrides$command' => '

The command to send to the container that overrides the default command from the Docker image or the job definition.

This parameter can\'t contain an empty string.

', 'TaskContainerProperties$command' => '

The command that\'s passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see Dockerfile reference: CMD.

', 'Tmpfs$mountOptions' => '

The list of tmpfs volume mount options.

Valid values: "defaults" | "ro" | "rw" | "suid" | "nosuid" | "dev" | "nodev" | "exec" | "noexec" | "sync" | "async" | "dirsync" | "remount" | "mand" | "nomand" | "atime" | "noatime" | "diratime" | "nodiratime" | "bind" | "rbind" | "unbindable" | "runbindable" | "private" | "rprivate" | "shared" | "rshared" | "slave" | "rslave" | "relatime" | "norelatime" | "strictatime" | "nostrictatime" | "mode" | "uid" | "gid" | "nr_inodes" | "nr_blocks" | "mpol"

', ], ], 'SubmitJobRequest' => [ 'base' => '

Contains the parameters for SubmitJob.

', 'refs' => [], ], 'SubmitJobResponse' => [ 'base' => NULL, 'refs' => [], ], 'TagKey' => [ 'base' => NULL, 'refs' => [ 'TagKeysList$member' => NULL, 'TagrisTagsMap$key' => NULL, ], ], 'TagKeysList' => [ 'base' => NULL, 'refs' => [ 'UntagResourceRequest$tagKeys' => '

The keys of the tags to be removed.

', ], ], 'TagResourceRequest' => [ 'base' => '

Contains the parameters for TagResource.

', 'refs' => [], ], 'TagResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'TagValue' => [ 'base' => NULL, 'refs' => [ 'TagrisTagsMap$value' => NULL, ], ], 'TagrisTagsMap' => [ 'base' => NULL, 'refs' => [ 'ComputeEnvironmentDetail$tags' => '

The tags applied to the compute environment.

', 'CreateComputeEnvironmentRequest$tags' => '

The tags that you apply to the compute environment to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging Amazon Web Services Resources in Amazon Web Services General Reference.

These tags can be updated or removed using the TagResource and UntagResource API operations. These tags don\'t propagate to the underlying compute resources.

', 'CreateJobQueueRequest$tags' => '

The tags that you apply to the job queue to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging your Batch resources in Batch User Guide.

', 'CreateSchedulingPolicyRequest$tags' => '

The tags that you apply to the scheduling policy to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging Amazon Web Services Resources in Amazon Web Services General Reference.

These tags can be updated or removed using the TagResource and UntagResource API operations.

', 'JobDefinition$tags' => '

The tags that are applied to the job definition.

', 'JobDetail$tags' => '

The tags that are applied to the job.

', 'JobQueueDetail$tags' => '

The tags that are applied to the job queue. For more information, see Tagging your Batch resources in Batch User Guide.

', 'ListTagsForResourceResponse$tags' => '

The tags for the resource.

', 'RegisterJobDefinitionRequest$tags' => '

The tags that you apply to the job definition to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging Amazon Web Services Resources in Batch User Guide.

', 'SchedulingPolicyDetail$tags' => '

The tags that you apply to the scheduling policy to categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging Amazon Web Services resources in Amazon Web Services General Reference.

', 'SubmitJobRequest$tags' => '

The tags that you apply to the job request to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging Amazon Web Services Resources in Amazon Web Services General Reference.

', 'TagResourceRequest$tags' => '

The tags that you apply to the resource to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging Amazon Web Services Resources in Amazon Web Services General Reference.

', ], ], 'TagsMap' => [ 'base' => NULL, 'refs' => [ 'ComputeResource$tags' => '

Key-value pair tags to be applied to Amazon EC2 resources that are launched in the compute environment. For Batch, these take the form of "String1": "String2", where String1 is the tag key and String2 is the tag value-for example, { "Name": "Batch Instance - C4OnDemand" }. This is helpful for recognizing your Batch instances in the Amazon EC2 console. Updating these tags requires an infrastructure update to the compute environment. For more information, see Updating compute environments in the Batch User Guide. These tags aren\'t seen when using the Batch ListTagsForResource API operation.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', 'ComputeResourceUpdate$tags' => '

Key-value pair tags to be applied to Amazon EC2 resources that are launched in the compute environment. For Batch, these take the form of "String1": "String2", where String1 is the tag key and String2 is the tag value-for example, { "Name": "Batch Instance - C4OnDemand" }. This is helpful for recognizing your Batch instances in the Amazon EC2 console. These tags aren\'t seen when using the Batch ListTagsForResource API operation.

When updating a compute environment, changing this setting requires an infrastructure update of the compute environment. For more information, see Updating compute environments in the Batch User Guide.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t specify it.

', ], ], 'TaskContainerDependency' => [ 'base' => '

A list of containers that this task depends on.

', 'refs' => [ 'TaskContainerDependencyList$member' => NULL, ], ], 'TaskContainerDependencyList' => [ 'base' => NULL, 'refs' => [ 'TaskContainerDetails$dependsOn' => '

A list of containers that this container depends on.

', 'TaskContainerProperties$dependsOn' => '

A list of containers that this container depends on.

', ], ], 'TaskContainerDetails' => [ 'base' => '

The details for the container in this task attempt.

', 'refs' => [ 'ListTaskContainerDetails$member' => NULL, ], ], 'TaskContainerOverrides' => [ 'base' => '

The overrides that should be sent to a container.

For information about using Batch overrides when you connect event sources to targets, see BatchContainerOverrides.

', 'refs' => [ 'ListTaskContainerOverrides$member' => NULL, ], ], 'TaskContainerProperties' => [ 'base' => '

Container properties are used for Amazon ECS-based job definitions. These properties to describe the container that\'s launched as part of a job.

', 'refs' => [ 'ListTaskContainerProperties$member' => NULL, ], ], 'TaskPropertiesOverride' => [ 'base' => '

An object that contains overrides for the task definition of a job.

', 'refs' => [ 'ListTaskPropertiesOverride$member' => NULL, ], ], 'TerminateJobRequest' => [ 'base' => '

Contains the parameters for TerminateJob.

', 'refs' => [], ], 'TerminateJobResponse' => [ 'base' => NULL, 'refs' => [], ], 'Tmpfs' => [ 'base' => '

The container path, mount options, and size of the tmpfs mount.

This object isn\'t applicable to jobs that are running on Fargate resources.

', 'refs' => [ 'TmpfsList$member' => NULL, ], ], 'TmpfsList' => [ 'base' => NULL, 'refs' => [ 'LinuxParameters$tmpfs' => '

The container path, mount options, and size (in MiB) of the tmpfs mount. This parameter maps to the --tmpfs option to docker run.

This parameter isn\'t applicable to jobs that are running on Fargate resources. Don\'t provide this parameter for this resource type.

', ], ], 'Ulimit' => [ 'base' => '

The ulimit settings to pass to the container. For more information, see Ulimit.

This object isn\'t applicable to jobs that are running on Fargate resources.

', 'refs' => [ 'Ulimits$member' => NULL, ], ], 'Ulimits' => [ 'base' => NULL, 'refs' => [ 'ContainerDetail$ulimits' => '

A list of ulimit values to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

This parameter isn\'t applicable to jobs that are running on Fargate resources.

', 'ContainerProperties$ulimits' => '

A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

This parameter isn\'t applicable to jobs that are running on Fargate resources and shouldn\'t be provided.

', 'TaskContainerDetails$ulimits' => '

A list of ulimits to set in the container. If a ulimit value is specified in a task definition, it overrides the default values set by Docker. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

Amazon ECS tasks hosted on Fargate use the default resource limit values set by the operating system with the exception of the nofile resource limit parameter which Fargate overrides. The nofile resource limit sets a restriction on the number of open files that a container can use. The default nofile soft limit is 1024 and the default hard limit is 65535.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format \'{{.Server.APIVersion}}\'

This parameter is not supported for Windows containers.

', 'TaskContainerProperties$ulimits' => '

A list of ulimits to set in the container. If a ulimit value is specified in a task definition, it overrides the default values set by Docker. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

Amazon ECS tasks hosted on Fargate use the default resource limit values set by the operating system with the exception of the nofile resource limit parameter which Fargate overrides. The nofile resource limit sets a restriction on the number of open files that a container can use. The default nofile soft limit is 1024 and the default hard limit is 65535.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format \'{{.Server.APIVersion}}\'

This parameter is not supported for Windows containers.

', ], ], 'UntagResourceRequest' => [ 'base' => '

Contains the parameters for UntagResource.

', 'refs' => [], ], 'UntagResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateComputeEnvironmentRequest' => [ 'base' => '

Contains the parameters for UpdateComputeEnvironment.

', 'refs' => [], ], 'UpdateComputeEnvironmentResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateJobQueueRequest' => [ 'base' => '

Contains the parameters for UpdateJobQueue.

', 'refs' => [], ], 'UpdateJobQueueResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdatePolicy' => [ 'base' => '

Specifies the infrastructure update policy for the compute environment. For more information about infrastructure updates, see Updating compute environments in the Batch User Guide.

', 'refs' => [ 'ComputeEnvironmentDetail$updatePolicy' => '

Specifies the infrastructure update policy for the compute environment. For more information about infrastructure updates, see Updating compute environments in the Batch User Guide.

', 'UpdateComputeEnvironmentRequest$updatePolicy' => '

Specifies the updated infrastructure update policy for the compute environment. For more information about infrastructure updates, see Updating compute environments in the Batch User Guide.

', ], ], 'UpdateSchedulingPolicyRequest' => [ 'base' => '

Contains the parameters for UpdateSchedulingPolicy.

', 'refs' => [], ], 'UpdateSchedulingPolicyResponse' => [ 'base' => NULL, 'refs' => [], ], 'Volume' => [ 'base' => '

A data volume that\'s used in a job\'s container properties.

', 'refs' => [ 'Volumes$member' => NULL, ], ], 'Volumes' => [ 'base' => NULL, 'refs' => [ 'ContainerDetail$volumes' => '

A list of volumes that are associated with the job.

', 'ContainerProperties$volumes' => '

A list of data volumes used in a job.

', 'EcsTaskDetails$volumes' => '

A list of data volumes used in a job.

', 'EcsTaskProperties$volumes' => '

A list of volumes that are associated with the job.

', ], ], ],]; diff --git a/src/data/bedrock-agent-runtime/2023-07-26/api-2.json b/src/data/bedrock-agent-runtime/2023-07-26/api-2.json index 5fdb56a1d0..4c74ef7046 100644 --- a/src/data/bedrock-agent-runtime/2023-07-26/api-2.json +++ b/src/data/bedrock-agent-runtime/2023-07-26/api-2.json @@ -398,20 +398,24 @@ ], "members":{ "knowledgeBaseId":{"shape":"KnowledgeBaseId"}, - "modelArn":{"shape":"BedrockModelArn"} + "modelArn":{"shape":"BedrockModelArn"}, + "retrievalConfiguration":{"shape":"KnowledgeBaseRetrievalConfiguration"} } }, "KnowledgeBaseVectorSearchConfiguration":{ "type":"structure", - "required":["numberOfResults"], "members":{ - "numberOfResults":{"shape":"KnowledgeBaseVectorSearchConfigurationNumberOfResultsInteger"} + "numberOfResults":{ + "shape":"KnowledgeBaseVectorSearchConfigurationNumberOfResultsInteger", + "box":true + }, + "overrideSearchType":{"shape":"SearchType"} } }, "KnowledgeBaseVectorSearchConfigurationNumberOfResultsInteger":{ "type":"integer", "box":true, - "max":10, + "max":25, "min":1 }, "LambdaArn":{"type":"string"}, @@ -625,7 +629,8 @@ "required":["text"], "members":{ "text":{"shape":"String"} - } + }, + "sensitive":true }, "RetrievalResultLocation":{ "type":"structure", @@ -633,7 +638,8 @@ "members":{ "type":{"shape":"RetrievalResultLocationType"}, "s3Location":{"shape":"RetrievalResultS3Location"} - } + }, + "sensitive":true }, "RetrievalResultLocationType":{ "type":"string", @@ -743,6 +749,13 @@ "type":"list", "member":{"shape":"RetrievedReference"} }, + "SearchType":{ + "type":"string", + "enum":[ + "HYBRID", + "SEMANTIC" + ] + }, "ServiceQuotaExceededException":{ "type":"structure", "members":{ @@ -816,7 +829,8 @@ "members":{ "text":{"shape":"String"}, "span":{"shape":"Span"} - } + }, + "sensitive":true }, "ThrottlingException":{ "type":"structure", diff --git a/src/data/bedrock-agent-runtime/2023-07-26/api-2.json.php b/src/data/bedrock-agent-runtime/2023-07-26/api-2.json.php index 7d0fa78a42..01962b9eb6 100644 --- a/src/data/bedrock-agent-runtime/2023-07-26/api-2.json.php +++ b/src/data/bedrock-agent-runtime/2023-07-26/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2023-07-26', 'endpointPrefix' => 'bedrock-agent-runtime', 'jsonVersion' => '1.1', 'protocol' => 'rest-json', 'serviceFullName' => 'Agents for Amazon Bedrock Runtime', 'serviceId' => 'Bedrock Agent Runtime', 'signatureVersion' => 'v4', 'signingName' => 'bedrock', 'uid' => 'bedrock-agent-runtime-2023-07-26', ], 'operations' => [ 'InvokeAgent' => [ 'name' => 'InvokeAgent', 'http' => [ 'method' => 'POST', 'requestUri' => '/agents/{agentId}/agentAliases/{agentAliasId}/sessions/{sessionId}/text', 'responseCode' => 200, ], 'input' => [ 'shape' => 'InvokeAgentRequest', ], 'output' => [ 'shape' => 'InvokeAgentResponse', ], 'errors' => [ [ 'shape' => 'ConflictException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'DependencyFailedException', ], [ 'shape' => 'BadGatewayException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'AccessDeniedException', ], [ 'shape' => 'ServiceQuotaExceededException', ], ], ], 'Retrieve' => [ 'name' => 'Retrieve', 'http' => [ 'method' => 'POST', 'requestUri' => '/knowledgebases/{knowledgeBaseId}/retrieve', 'responseCode' => 200, ], 'input' => [ 'shape' => 'RetrieveRequest', ], 'output' => [ 'shape' => 'RetrieveResponse', ], 'errors' => [ [ 'shape' => 'ConflictException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'DependencyFailedException', ], [ 'shape' => 'BadGatewayException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'AccessDeniedException', ], [ 'shape' => 'ServiceQuotaExceededException', ], ], ], 'RetrieveAndGenerate' => [ 'name' => 'RetrieveAndGenerate', 'http' => [ 'method' => 'POST', 'requestUri' => '/retrieveAndGenerate', 'responseCode' => 200, ], 'input' => [ 'shape' => 'RetrieveAndGenerateRequest', ], 'output' => [ 'shape' => 'RetrieveAndGenerateResponse', ], 'errors' => [ [ 'shape' => 'ConflictException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'DependencyFailedException', ], [ 'shape' => 'BadGatewayException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'AccessDeniedException', ], [ 'shape' => 'ServiceQuotaExceededException', ], ], ], ], 'shapes' => [ 'AccessDeniedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 403, 'senderFault' => true, ], 'exception' => true, ], 'ActionGroupInvocationInput' => [ 'type' => 'structure', 'members' => [ 'actionGroupName' => [ 'shape' => 'ActionGroupName', ], 'verb' => [ 'shape' => 'Verb', ], 'apiPath' => [ 'shape' => 'ApiPath', ], 'parameters' => [ 'shape' => 'Parameters', ], 'requestBody' => [ 'shape' => 'RequestBody', ], ], ], 'ActionGroupInvocationOutput' => [ 'type' => 'structure', 'members' => [ 'text' => [ 'shape' => 'ActionGroupOutputString', ], ], ], 'ActionGroupName' => [ 'type' => 'string', 'sensitive' => true, ], 'ActionGroupOutputString' => [ 'type' => 'string', 'sensitive' => true, ], 'AgentAliasId' => [ 'type' => 'string', 'max' => 10, 'min' => 0, 'pattern' => '[0-9a-zA-Z]+', ], 'AgentId' => [ 'type' => 'string', 'max' => 10, 'min' => 0, 'pattern' => '[0-9a-zA-Z]+', ], 'ApiPath' => [ 'type' => 'string', 'sensitive' => true, ], 'Attribution' => [ 'type' => 'structure', 'members' => [ 'citations' => [ 'shape' => 'Citations', ], ], ], 'BadGatewayException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], 'resourceName' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 502, ], 'exception' => true, 'fault' => true, ], 'BedrockModelArn' => [ 'type' => 'string', 'max' => 1011, 'min' => 20, 'pattern' => 'arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:(([0-9]{12}:custom-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}/[a-z0-9]{12})|(:foundation-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}))', ], 'Boolean' => [ 'type' => 'boolean', 'box' => true, ], 'Citation' => [ 'type' => 'structure', 'members' => [ 'generatedResponsePart' => [ 'shape' => 'GeneratedResponsePart', ], 'retrievedReferences' => [ 'shape' => 'RetrievedReferences', ], ], ], 'Citations' => [ 'type' => 'list', 'member' => [ 'shape' => 'Citation', ], ], 'ConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 409, 'senderFault' => true, ], 'exception' => true, ], 'ContentMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'Parameters', ], ], 'CreationMode' => [ 'type' => 'string', 'enum' => [ 'DEFAULT', 'OVERRIDDEN', ], ], 'DependencyFailedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], 'resourceName' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 424, 'senderFault' => true, ], 'exception' => true, ], 'Double' => [ 'type' => 'double', 'box' => true, ], 'FailureReasonString' => [ 'type' => 'string', 'sensitive' => true, ], 'FailureTrace' => [ 'type' => 'structure', 'members' => [ 'traceId' => [ 'shape' => 'TraceId', ], 'failureReason' => [ 'shape' => 'FailureReasonString', ], ], 'sensitive' => true, ], 'FinalResponse' => [ 'type' => 'structure', 'members' => [ 'text' => [ 'shape' => 'FinalResponseString', ], ], ], 'FinalResponseString' => [ 'type' => 'string', 'sensitive' => true, ], 'GeneratedResponsePart' => [ 'type' => 'structure', 'members' => [ 'textResponsePart' => [ 'shape' => 'TextResponsePart', ], ], ], 'InferenceConfiguration' => [ 'type' => 'structure', 'members' => [ 'temperature' => [ 'shape' => 'Temperature', ], 'topP' => [ 'shape' => 'TopP', ], 'topK' => [ 'shape' => 'TopK', ], 'maximumLength' => [ 'shape' => 'MaximumLength', ], 'stopSequences' => [ 'shape' => 'StopSequences', ], ], ], 'InputText' => [ 'type' => 'string', 'max' => 25000000, 'min' => 0, 'sensitive' => true, ], 'InternalServerException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], 'InvocationInput' => [ 'type' => 'structure', 'members' => [ 'traceId' => [ 'shape' => 'TraceId', ], 'invocationType' => [ 'shape' => 'InvocationType', ], 'actionGroupInvocationInput' => [ 'shape' => 'ActionGroupInvocationInput', ], 'knowledgeBaseLookupInput' => [ 'shape' => 'KnowledgeBaseLookupInput', ], ], 'sensitive' => true, ], 'InvocationType' => [ 'type' => 'string', 'enum' => [ 'ACTION_GROUP', 'KNOWLEDGE_BASE', 'FINISH', ], ], 'InvokeAgentRequest' => [ 'type' => 'structure', 'required' => [ 'agentId', 'agentAliasId', 'sessionId', 'inputText', ], 'members' => [ 'sessionState' => [ 'shape' => 'SessionState', ], 'agentId' => [ 'shape' => 'AgentId', 'location' => 'uri', 'locationName' => 'agentId', ], 'agentAliasId' => [ 'shape' => 'AgentAliasId', 'location' => 'uri', 'locationName' => 'agentAliasId', ], 'sessionId' => [ 'shape' => 'SessionId', 'location' => 'uri', 'locationName' => 'sessionId', ], 'endSession' => [ 'shape' => 'Boolean', ], 'enableTrace' => [ 'shape' => 'Boolean', ], 'inputText' => [ 'shape' => 'InputText', ], ], ], 'InvokeAgentResponse' => [ 'type' => 'structure', 'required' => [ 'completion', 'contentType', 'sessionId', ], 'members' => [ 'completion' => [ 'shape' => 'ResponseStream', ], 'contentType' => [ 'shape' => 'MimeType', 'location' => 'header', 'locationName' => 'x-amzn-bedrock-agent-content-type', ], 'sessionId' => [ 'shape' => 'SessionId', 'location' => 'header', 'locationName' => 'x-amz-bedrock-agent-session-id', ], ], 'payload' => 'completion', ], 'KmsKeyArn' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => 'arn:aws(|-cn|-us-gov):kms:[a-zA-Z0-9-]*:[0-9]{12}:key/[a-zA-Z0-9-]{36}', ], 'KnowledgeBaseId' => [ 'type' => 'string', 'max' => 10, 'min' => 0, 'pattern' => '[0-9a-zA-Z]+', ], 'KnowledgeBaseLookupInput' => [ 'type' => 'structure', 'members' => [ 'text' => [ 'shape' => 'KnowledgeBaseLookupInputString', ], 'knowledgeBaseId' => [ 'shape' => 'TraceKnowledgeBaseId', ], ], ], 'KnowledgeBaseLookupInputString' => [ 'type' => 'string', 'sensitive' => true, ], 'KnowledgeBaseLookupOutput' => [ 'type' => 'structure', 'members' => [ 'retrievedReferences' => [ 'shape' => 'RetrievedReferences', ], ], ], 'KnowledgeBaseQuery' => [ 'type' => 'structure', 'required' => [ 'text', ], 'members' => [ 'text' => [ 'shape' => 'KnowledgeBaseQueryTextString', ], ], 'sensitive' => true, ], 'KnowledgeBaseQueryTextString' => [ 'type' => 'string', 'max' => 1000, 'min' => 0, ], 'KnowledgeBaseRetrievalConfiguration' => [ 'type' => 'structure', 'required' => [ 'vectorSearchConfiguration', ], 'members' => [ 'vectorSearchConfiguration' => [ 'shape' => 'KnowledgeBaseVectorSearchConfiguration', ], ], ], 'KnowledgeBaseRetrievalResult' => [ 'type' => 'structure', 'required' => [ 'content', ], 'members' => [ 'content' => [ 'shape' => 'RetrievalResultContent', ], 'location' => [ 'shape' => 'RetrievalResultLocation', ], 'score' => [ 'shape' => 'Double', ], ], ], 'KnowledgeBaseRetrievalResults' => [ 'type' => 'list', 'member' => [ 'shape' => 'KnowledgeBaseRetrievalResult', ], 'sensitive' => true, ], 'KnowledgeBaseRetrieveAndGenerateConfiguration' => [ 'type' => 'structure', 'required' => [ 'knowledgeBaseId', 'modelArn', ], 'members' => [ 'knowledgeBaseId' => [ 'shape' => 'KnowledgeBaseId', ], 'modelArn' => [ 'shape' => 'BedrockModelArn', ], ], ], 'KnowledgeBaseVectorSearchConfiguration' => [ 'type' => 'structure', 'required' => [ 'numberOfResults', ], 'members' => [ 'numberOfResults' => [ 'shape' => 'KnowledgeBaseVectorSearchConfigurationNumberOfResultsInteger', ], ], ], 'KnowledgeBaseVectorSearchConfigurationNumberOfResultsInteger' => [ 'type' => 'integer', 'box' => true, 'max' => 10, 'min' => 1, ], 'LambdaArn' => [ 'type' => 'string', ], 'MaximumLength' => [ 'type' => 'integer', 'box' => true, 'max' => 4096, 'min' => 0, ], 'MimeType' => [ 'type' => 'string', ], 'ModelInvocationInput' => [ 'type' => 'structure', 'members' => [ 'traceId' => [ 'shape' => 'TraceId', ], 'text' => [ 'shape' => 'PromptText', ], 'type' => [ 'shape' => 'PromptType', ], 'inferenceConfiguration' => [ 'shape' => 'InferenceConfiguration', ], 'overrideLambda' => [ 'shape' => 'LambdaArn', ], 'promptCreationMode' => [ 'shape' => 'CreationMode', ], 'parserMode' => [ 'shape' => 'CreationMode', ], ], 'sensitive' => true, ], 'NextToken' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => '\\S*', ], 'NonBlankString' => [ 'type' => 'string', 'pattern' => '[\\s\\S]*', ], 'Observation' => [ 'type' => 'structure', 'members' => [ 'traceId' => [ 'shape' => 'TraceId', ], 'type' => [ 'shape' => 'Type', ], 'actionGroupInvocationOutput' => [ 'shape' => 'ActionGroupInvocationOutput', ], 'knowledgeBaseLookupOutput' => [ 'shape' => 'KnowledgeBaseLookupOutput', ], 'finalResponse' => [ 'shape' => 'FinalResponse', ], 'repromptResponse' => [ 'shape' => 'RepromptResponse', ], ], 'sensitive' => true, ], 'OrchestrationTrace' => [ 'type' => 'structure', 'members' => [ 'rationale' => [ 'shape' => 'Rationale', ], 'invocationInput' => [ 'shape' => 'InvocationInput', ], 'observation' => [ 'shape' => 'Observation', ], 'modelInvocationInput' => [ 'shape' => 'ModelInvocationInput', ], ], 'sensitive' => true, 'union' => true, ], 'OutputString' => [ 'type' => 'string', 'sensitive' => true, ], 'Parameter' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], ], 'Parameters' => [ 'type' => 'list', 'member' => [ 'shape' => 'Parameter', ], ], 'PartBody' => [ 'type' => 'blob', 'max' => 1000000, 'min' => 0, 'sensitive' => true, ], 'PayloadPart' => [ 'type' => 'structure', 'members' => [ 'bytes' => [ 'shape' => 'PartBody', ], 'attribution' => [ 'shape' => 'Attribution', ], ], 'event' => true, 'sensitive' => true, ], 'PostProcessingModelInvocationOutput' => [ 'type' => 'structure', 'members' => [ 'traceId' => [ 'shape' => 'TraceId', ], 'parsedResponse' => [ 'shape' => 'PostProcessingParsedResponse', ], ], 'sensitive' => true, ], 'PostProcessingParsedResponse' => [ 'type' => 'structure', 'members' => [ 'text' => [ 'shape' => 'OutputString', ], ], 'sensitive' => true, ], 'PostProcessingTrace' => [ 'type' => 'structure', 'members' => [ 'modelInvocationInput' => [ 'shape' => 'ModelInvocationInput', ], 'modelInvocationOutput' => [ 'shape' => 'PostProcessingModelInvocationOutput', ], ], 'sensitive' => true, 'union' => true, ], 'PreProcessingModelInvocationOutput' => [ 'type' => 'structure', 'members' => [ 'traceId' => [ 'shape' => 'TraceId', ], 'parsedResponse' => [ 'shape' => 'PreProcessingParsedResponse', ], ], 'sensitive' => true, ], 'PreProcessingParsedResponse' => [ 'type' => 'structure', 'members' => [ 'rationale' => [ 'shape' => 'RationaleString', ], 'isValid' => [ 'shape' => 'Boolean', ], ], 'sensitive' => true, ], 'PreProcessingTrace' => [ 'type' => 'structure', 'members' => [ 'modelInvocationInput' => [ 'shape' => 'ModelInvocationInput', ], 'modelInvocationOutput' => [ 'shape' => 'PreProcessingModelInvocationOutput', ], ], 'sensitive' => true, 'union' => true, ], 'PromptSessionAttributesMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'PromptText' => [ 'type' => 'string', 'sensitive' => true, ], 'PromptType' => [ 'type' => 'string', 'enum' => [ 'PRE_PROCESSING', 'ORCHESTRATION', 'KNOWLEDGE_BASE_RESPONSE_GENERATION', 'POST_PROCESSING', ], ], 'Rationale' => [ 'type' => 'structure', 'members' => [ 'traceId' => [ 'shape' => 'TraceId', ], 'text' => [ 'shape' => 'RationaleString', ], ], 'sensitive' => true, ], 'RationaleString' => [ 'type' => 'string', 'sensitive' => true, ], 'RepromptResponse' => [ 'type' => 'structure', 'members' => [ 'text' => [ 'shape' => 'String', ], 'source' => [ 'shape' => 'Source', ], ], 'sensitive' => true, ], 'RequestBody' => [ 'type' => 'structure', 'members' => [ 'content' => [ 'shape' => 'ContentMap', ], ], ], 'ResourceNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ResponseStream' => [ 'type' => 'structure', 'members' => [ 'chunk' => [ 'shape' => 'PayloadPart', ], 'trace' => [ 'shape' => 'TracePart', ], 'internalServerException' => [ 'shape' => 'InternalServerException', ], 'validationException' => [ 'shape' => 'ValidationException', ], 'resourceNotFoundException' => [ 'shape' => 'ResourceNotFoundException', ], 'serviceQuotaExceededException' => [ 'shape' => 'ServiceQuotaExceededException', ], 'throttlingException' => [ 'shape' => 'ThrottlingException', ], 'accessDeniedException' => [ 'shape' => 'AccessDeniedException', ], 'conflictException' => [ 'shape' => 'ConflictException', ], 'dependencyFailedException' => [ 'shape' => 'DependencyFailedException', ], 'badGatewayException' => [ 'shape' => 'BadGatewayException', ], ], 'eventstream' => true, ], 'RetrievalResultContent' => [ 'type' => 'structure', 'required' => [ 'text', ], 'members' => [ 'text' => [ 'shape' => 'String', ], ], ], 'RetrievalResultLocation' => [ 'type' => 'structure', 'required' => [ 'type', ], 'members' => [ 'type' => [ 'shape' => 'RetrievalResultLocationType', ], 's3Location' => [ 'shape' => 'RetrievalResultS3Location', ], ], ], 'RetrievalResultLocationType' => [ 'type' => 'string', 'enum' => [ 'S3', ], ], 'RetrievalResultS3Location' => [ 'type' => 'structure', 'members' => [ 'uri' => [ 'shape' => 'String', ], ], ], 'RetrieveAndGenerateConfiguration' => [ 'type' => 'structure', 'required' => [ 'type', ], 'members' => [ 'type' => [ 'shape' => 'RetrieveAndGenerateType', ], 'knowledgeBaseConfiguration' => [ 'shape' => 'KnowledgeBaseRetrieveAndGenerateConfiguration', ], ], ], 'RetrieveAndGenerateInput' => [ 'type' => 'structure', 'required' => [ 'text', ], 'members' => [ 'text' => [ 'shape' => 'RetrieveAndGenerateInputTextString', ], ], 'sensitive' => true, ], 'RetrieveAndGenerateInputTextString' => [ 'type' => 'string', 'max' => 1000, 'min' => 0, ], 'RetrieveAndGenerateOutput' => [ 'type' => 'structure', 'required' => [ 'text', ], 'members' => [ 'text' => [ 'shape' => 'String', ], ], 'sensitive' => true, ], 'RetrieveAndGenerateRequest' => [ 'type' => 'structure', 'required' => [ 'input', ], 'members' => [ 'sessionId' => [ 'shape' => 'SessionId', ], 'input' => [ 'shape' => 'RetrieveAndGenerateInput', ], 'retrieveAndGenerateConfiguration' => [ 'shape' => 'RetrieveAndGenerateConfiguration', ], 'sessionConfiguration' => [ 'shape' => 'RetrieveAndGenerateSessionConfiguration', ], ], ], 'RetrieveAndGenerateResponse' => [ 'type' => 'structure', 'required' => [ 'sessionId', 'output', ], 'members' => [ 'sessionId' => [ 'shape' => 'SessionId', ], 'output' => [ 'shape' => 'RetrieveAndGenerateOutput', ], 'citations' => [ 'shape' => 'Citations', ], ], ], 'RetrieveAndGenerateSessionConfiguration' => [ 'type' => 'structure', 'required' => [ 'kmsKeyArn', ], 'members' => [ 'kmsKeyArn' => [ 'shape' => 'KmsKeyArn', ], ], ], 'RetrieveAndGenerateType' => [ 'type' => 'string', 'enum' => [ 'KNOWLEDGE_BASE', ], ], 'RetrieveRequest' => [ 'type' => 'structure', 'required' => [ 'knowledgeBaseId', 'retrievalQuery', ], 'members' => [ 'knowledgeBaseId' => [ 'shape' => 'KnowledgeBaseId', 'location' => 'uri', 'locationName' => 'knowledgeBaseId', ], 'retrievalQuery' => [ 'shape' => 'KnowledgeBaseQuery', ], 'retrievalConfiguration' => [ 'shape' => 'KnowledgeBaseRetrievalConfiguration', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'RetrieveResponse' => [ 'type' => 'structure', 'required' => [ 'retrievalResults', ], 'members' => [ 'retrievalResults' => [ 'shape' => 'KnowledgeBaseRetrievalResults', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'RetrievedReference' => [ 'type' => 'structure', 'members' => [ 'content' => [ 'shape' => 'RetrievalResultContent', ], 'location' => [ 'shape' => 'RetrievalResultLocation', ], ], ], 'RetrievedReferences' => [ 'type' => 'list', 'member' => [ 'shape' => 'RetrievedReference', ], ], 'ServiceQuotaExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SessionAttributesMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'SessionId' => [ 'type' => 'string', 'max' => 100, 'min' => 2, 'pattern' => '[0-9a-zA-Z._:-]+', ], 'SessionState' => [ 'type' => 'structure', 'members' => [ 'sessionAttributes' => [ 'shape' => 'SessionAttributesMap', ], 'promptSessionAttributes' => [ 'shape' => 'PromptSessionAttributesMap', ], ], ], 'Source' => [ 'type' => 'string', 'enum' => [ 'ACTION_GROUP', 'KNOWLEDGE_BASE', 'PARSER', ], 'sensitive' => true, ], 'Span' => [ 'type' => 'structure', 'members' => [ 'start' => [ 'shape' => 'SpanStartInteger', ], 'end' => [ 'shape' => 'SpanEndInteger', ], ], ], 'SpanEndInteger' => [ 'type' => 'integer', 'box' => true, 'min' => 0, ], 'SpanStartInteger' => [ 'type' => 'integer', 'box' => true, 'min' => 0, ], 'StopSequences' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], 'max' => 4, 'min' => 0, ], 'String' => [ 'type' => 'string', ], 'Temperature' => [ 'type' => 'float', 'box' => true, 'max' => 1, 'min' => 0, ], 'TextResponsePart' => [ 'type' => 'structure', 'members' => [ 'text' => [ 'shape' => 'String', ], 'span' => [ 'shape' => 'Span', ], ], ], 'ThrottlingException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 429, 'senderFault' => true, ], 'exception' => true, ], 'TopK' => [ 'type' => 'integer', 'box' => true, 'max' => 500, 'min' => 0, ], 'TopP' => [ 'type' => 'float', 'box' => true, 'max' => 1, 'min' => 0, ], 'Trace' => [ 'type' => 'structure', 'members' => [ 'preProcessingTrace' => [ 'shape' => 'PreProcessingTrace', ], 'orchestrationTrace' => [ 'shape' => 'OrchestrationTrace', ], 'postProcessingTrace' => [ 'shape' => 'PostProcessingTrace', ], 'failureTrace' => [ 'shape' => 'FailureTrace', ], ], 'sensitive' => true, 'union' => true, ], 'TraceId' => [ 'type' => 'string', 'max' => 16, 'min' => 2, ], 'TraceKnowledgeBaseId' => [ 'type' => 'string', 'sensitive' => true, ], 'TracePart' => [ 'type' => 'structure', 'members' => [ 'agentId' => [ 'shape' => 'AgentId', ], 'agentAliasId' => [ 'shape' => 'AgentAliasId', ], 'sessionId' => [ 'shape' => 'SessionId', ], 'trace' => [ 'shape' => 'Trace', ], ], 'event' => true, 'sensitive' => true, ], 'Type' => [ 'type' => 'string', 'enum' => [ 'ACTION_GROUP', 'KNOWLEDGE_BASE', 'FINISH', 'ASK_USER', 'REPROMPT', ], ], 'ValidationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Verb' => [ 'type' => 'string', 'sensitive' => true, ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2023-07-26', 'endpointPrefix' => 'bedrock-agent-runtime', 'jsonVersion' => '1.1', 'protocol' => 'rest-json', 'serviceFullName' => 'Agents for Amazon Bedrock Runtime', 'serviceId' => 'Bedrock Agent Runtime', 'signatureVersion' => 'v4', 'signingName' => 'bedrock', 'uid' => 'bedrock-agent-runtime-2023-07-26', ], 'operations' => [ 'InvokeAgent' => [ 'name' => 'InvokeAgent', 'http' => [ 'method' => 'POST', 'requestUri' => '/agents/{agentId}/agentAliases/{agentAliasId}/sessions/{sessionId}/text', 'responseCode' => 200, ], 'input' => [ 'shape' => 'InvokeAgentRequest', ], 'output' => [ 'shape' => 'InvokeAgentResponse', ], 'errors' => [ [ 'shape' => 'ConflictException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'DependencyFailedException', ], [ 'shape' => 'BadGatewayException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'AccessDeniedException', ], [ 'shape' => 'ServiceQuotaExceededException', ], ], ], 'Retrieve' => [ 'name' => 'Retrieve', 'http' => [ 'method' => 'POST', 'requestUri' => '/knowledgebases/{knowledgeBaseId}/retrieve', 'responseCode' => 200, ], 'input' => [ 'shape' => 'RetrieveRequest', ], 'output' => [ 'shape' => 'RetrieveResponse', ], 'errors' => [ [ 'shape' => 'ConflictException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'DependencyFailedException', ], [ 'shape' => 'BadGatewayException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'AccessDeniedException', ], [ 'shape' => 'ServiceQuotaExceededException', ], ], ], 'RetrieveAndGenerate' => [ 'name' => 'RetrieveAndGenerate', 'http' => [ 'method' => 'POST', 'requestUri' => '/retrieveAndGenerate', 'responseCode' => 200, ], 'input' => [ 'shape' => 'RetrieveAndGenerateRequest', ], 'output' => [ 'shape' => 'RetrieveAndGenerateResponse', ], 'errors' => [ [ 'shape' => 'ConflictException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'DependencyFailedException', ], [ 'shape' => 'BadGatewayException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'AccessDeniedException', ], [ 'shape' => 'ServiceQuotaExceededException', ], ], ], ], 'shapes' => [ 'AccessDeniedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 403, 'senderFault' => true, ], 'exception' => true, ], 'ActionGroupInvocationInput' => [ 'type' => 'structure', 'members' => [ 'actionGroupName' => [ 'shape' => 'ActionGroupName', ], 'verb' => [ 'shape' => 'Verb', ], 'apiPath' => [ 'shape' => 'ApiPath', ], 'parameters' => [ 'shape' => 'Parameters', ], 'requestBody' => [ 'shape' => 'RequestBody', ], ], ], 'ActionGroupInvocationOutput' => [ 'type' => 'structure', 'members' => [ 'text' => [ 'shape' => 'ActionGroupOutputString', ], ], ], 'ActionGroupName' => [ 'type' => 'string', 'sensitive' => true, ], 'ActionGroupOutputString' => [ 'type' => 'string', 'sensitive' => true, ], 'AgentAliasId' => [ 'type' => 'string', 'max' => 10, 'min' => 0, 'pattern' => '[0-9a-zA-Z]+', ], 'AgentId' => [ 'type' => 'string', 'max' => 10, 'min' => 0, 'pattern' => '[0-9a-zA-Z]+', ], 'ApiPath' => [ 'type' => 'string', 'sensitive' => true, ], 'Attribution' => [ 'type' => 'structure', 'members' => [ 'citations' => [ 'shape' => 'Citations', ], ], ], 'BadGatewayException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], 'resourceName' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 502, ], 'exception' => true, 'fault' => true, ], 'BedrockModelArn' => [ 'type' => 'string', 'max' => 1011, 'min' => 20, 'pattern' => 'arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:(([0-9]{12}:custom-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}/[a-z0-9]{12})|(:foundation-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}))', ], 'Boolean' => [ 'type' => 'boolean', 'box' => true, ], 'Citation' => [ 'type' => 'structure', 'members' => [ 'generatedResponsePart' => [ 'shape' => 'GeneratedResponsePart', ], 'retrievedReferences' => [ 'shape' => 'RetrievedReferences', ], ], ], 'Citations' => [ 'type' => 'list', 'member' => [ 'shape' => 'Citation', ], ], 'ConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 409, 'senderFault' => true, ], 'exception' => true, ], 'ContentMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'Parameters', ], ], 'CreationMode' => [ 'type' => 'string', 'enum' => [ 'DEFAULT', 'OVERRIDDEN', ], ], 'DependencyFailedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], 'resourceName' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 424, 'senderFault' => true, ], 'exception' => true, ], 'Double' => [ 'type' => 'double', 'box' => true, ], 'FailureReasonString' => [ 'type' => 'string', 'sensitive' => true, ], 'FailureTrace' => [ 'type' => 'structure', 'members' => [ 'traceId' => [ 'shape' => 'TraceId', ], 'failureReason' => [ 'shape' => 'FailureReasonString', ], ], 'sensitive' => true, ], 'FinalResponse' => [ 'type' => 'structure', 'members' => [ 'text' => [ 'shape' => 'FinalResponseString', ], ], ], 'FinalResponseString' => [ 'type' => 'string', 'sensitive' => true, ], 'GeneratedResponsePart' => [ 'type' => 'structure', 'members' => [ 'textResponsePart' => [ 'shape' => 'TextResponsePart', ], ], ], 'InferenceConfiguration' => [ 'type' => 'structure', 'members' => [ 'temperature' => [ 'shape' => 'Temperature', ], 'topP' => [ 'shape' => 'TopP', ], 'topK' => [ 'shape' => 'TopK', ], 'maximumLength' => [ 'shape' => 'MaximumLength', ], 'stopSequences' => [ 'shape' => 'StopSequences', ], ], ], 'InputText' => [ 'type' => 'string', 'max' => 25000000, 'min' => 0, 'sensitive' => true, ], 'InternalServerException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], 'InvocationInput' => [ 'type' => 'structure', 'members' => [ 'traceId' => [ 'shape' => 'TraceId', ], 'invocationType' => [ 'shape' => 'InvocationType', ], 'actionGroupInvocationInput' => [ 'shape' => 'ActionGroupInvocationInput', ], 'knowledgeBaseLookupInput' => [ 'shape' => 'KnowledgeBaseLookupInput', ], ], 'sensitive' => true, ], 'InvocationType' => [ 'type' => 'string', 'enum' => [ 'ACTION_GROUP', 'KNOWLEDGE_BASE', 'FINISH', ], ], 'InvokeAgentRequest' => [ 'type' => 'structure', 'required' => [ 'agentId', 'agentAliasId', 'sessionId', 'inputText', ], 'members' => [ 'sessionState' => [ 'shape' => 'SessionState', ], 'agentId' => [ 'shape' => 'AgentId', 'location' => 'uri', 'locationName' => 'agentId', ], 'agentAliasId' => [ 'shape' => 'AgentAliasId', 'location' => 'uri', 'locationName' => 'agentAliasId', ], 'sessionId' => [ 'shape' => 'SessionId', 'location' => 'uri', 'locationName' => 'sessionId', ], 'endSession' => [ 'shape' => 'Boolean', ], 'enableTrace' => [ 'shape' => 'Boolean', ], 'inputText' => [ 'shape' => 'InputText', ], ], ], 'InvokeAgentResponse' => [ 'type' => 'structure', 'required' => [ 'completion', 'contentType', 'sessionId', ], 'members' => [ 'completion' => [ 'shape' => 'ResponseStream', ], 'contentType' => [ 'shape' => 'MimeType', 'location' => 'header', 'locationName' => 'x-amzn-bedrock-agent-content-type', ], 'sessionId' => [ 'shape' => 'SessionId', 'location' => 'header', 'locationName' => 'x-amz-bedrock-agent-session-id', ], ], 'payload' => 'completion', ], 'KmsKeyArn' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => 'arn:aws(|-cn|-us-gov):kms:[a-zA-Z0-9-]*:[0-9]{12}:key/[a-zA-Z0-9-]{36}', ], 'KnowledgeBaseId' => [ 'type' => 'string', 'max' => 10, 'min' => 0, 'pattern' => '[0-9a-zA-Z]+', ], 'KnowledgeBaseLookupInput' => [ 'type' => 'structure', 'members' => [ 'text' => [ 'shape' => 'KnowledgeBaseLookupInputString', ], 'knowledgeBaseId' => [ 'shape' => 'TraceKnowledgeBaseId', ], ], ], 'KnowledgeBaseLookupInputString' => [ 'type' => 'string', 'sensitive' => true, ], 'KnowledgeBaseLookupOutput' => [ 'type' => 'structure', 'members' => [ 'retrievedReferences' => [ 'shape' => 'RetrievedReferences', ], ], ], 'KnowledgeBaseQuery' => [ 'type' => 'structure', 'required' => [ 'text', ], 'members' => [ 'text' => [ 'shape' => 'KnowledgeBaseQueryTextString', ], ], 'sensitive' => true, ], 'KnowledgeBaseQueryTextString' => [ 'type' => 'string', 'max' => 1000, 'min' => 0, ], 'KnowledgeBaseRetrievalConfiguration' => [ 'type' => 'structure', 'required' => [ 'vectorSearchConfiguration', ], 'members' => [ 'vectorSearchConfiguration' => [ 'shape' => 'KnowledgeBaseVectorSearchConfiguration', ], ], ], 'KnowledgeBaseRetrievalResult' => [ 'type' => 'structure', 'required' => [ 'content', ], 'members' => [ 'content' => [ 'shape' => 'RetrievalResultContent', ], 'location' => [ 'shape' => 'RetrievalResultLocation', ], 'score' => [ 'shape' => 'Double', ], ], ], 'KnowledgeBaseRetrievalResults' => [ 'type' => 'list', 'member' => [ 'shape' => 'KnowledgeBaseRetrievalResult', ], 'sensitive' => true, ], 'KnowledgeBaseRetrieveAndGenerateConfiguration' => [ 'type' => 'structure', 'required' => [ 'knowledgeBaseId', 'modelArn', ], 'members' => [ 'knowledgeBaseId' => [ 'shape' => 'KnowledgeBaseId', ], 'modelArn' => [ 'shape' => 'BedrockModelArn', ], 'retrievalConfiguration' => [ 'shape' => 'KnowledgeBaseRetrievalConfiguration', ], ], ], 'KnowledgeBaseVectorSearchConfiguration' => [ 'type' => 'structure', 'members' => [ 'numberOfResults' => [ 'shape' => 'KnowledgeBaseVectorSearchConfigurationNumberOfResultsInteger', 'box' => true, ], 'overrideSearchType' => [ 'shape' => 'SearchType', ], ], ], 'KnowledgeBaseVectorSearchConfigurationNumberOfResultsInteger' => [ 'type' => 'integer', 'box' => true, 'max' => 25, 'min' => 1, ], 'LambdaArn' => [ 'type' => 'string', ], 'MaximumLength' => [ 'type' => 'integer', 'box' => true, 'max' => 4096, 'min' => 0, ], 'MimeType' => [ 'type' => 'string', ], 'ModelInvocationInput' => [ 'type' => 'structure', 'members' => [ 'traceId' => [ 'shape' => 'TraceId', ], 'text' => [ 'shape' => 'PromptText', ], 'type' => [ 'shape' => 'PromptType', ], 'inferenceConfiguration' => [ 'shape' => 'InferenceConfiguration', ], 'overrideLambda' => [ 'shape' => 'LambdaArn', ], 'promptCreationMode' => [ 'shape' => 'CreationMode', ], 'parserMode' => [ 'shape' => 'CreationMode', ], ], 'sensitive' => true, ], 'NextToken' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => '\\S*', ], 'NonBlankString' => [ 'type' => 'string', 'pattern' => '[\\s\\S]*', ], 'Observation' => [ 'type' => 'structure', 'members' => [ 'traceId' => [ 'shape' => 'TraceId', ], 'type' => [ 'shape' => 'Type', ], 'actionGroupInvocationOutput' => [ 'shape' => 'ActionGroupInvocationOutput', ], 'knowledgeBaseLookupOutput' => [ 'shape' => 'KnowledgeBaseLookupOutput', ], 'finalResponse' => [ 'shape' => 'FinalResponse', ], 'repromptResponse' => [ 'shape' => 'RepromptResponse', ], ], 'sensitive' => true, ], 'OrchestrationTrace' => [ 'type' => 'structure', 'members' => [ 'rationale' => [ 'shape' => 'Rationale', ], 'invocationInput' => [ 'shape' => 'InvocationInput', ], 'observation' => [ 'shape' => 'Observation', ], 'modelInvocationInput' => [ 'shape' => 'ModelInvocationInput', ], ], 'sensitive' => true, 'union' => true, ], 'OutputString' => [ 'type' => 'string', 'sensitive' => true, ], 'Parameter' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], ], 'Parameters' => [ 'type' => 'list', 'member' => [ 'shape' => 'Parameter', ], ], 'PartBody' => [ 'type' => 'blob', 'max' => 1000000, 'min' => 0, 'sensitive' => true, ], 'PayloadPart' => [ 'type' => 'structure', 'members' => [ 'bytes' => [ 'shape' => 'PartBody', ], 'attribution' => [ 'shape' => 'Attribution', ], ], 'event' => true, 'sensitive' => true, ], 'PostProcessingModelInvocationOutput' => [ 'type' => 'structure', 'members' => [ 'traceId' => [ 'shape' => 'TraceId', ], 'parsedResponse' => [ 'shape' => 'PostProcessingParsedResponse', ], ], 'sensitive' => true, ], 'PostProcessingParsedResponse' => [ 'type' => 'structure', 'members' => [ 'text' => [ 'shape' => 'OutputString', ], ], 'sensitive' => true, ], 'PostProcessingTrace' => [ 'type' => 'structure', 'members' => [ 'modelInvocationInput' => [ 'shape' => 'ModelInvocationInput', ], 'modelInvocationOutput' => [ 'shape' => 'PostProcessingModelInvocationOutput', ], ], 'sensitive' => true, 'union' => true, ], 'PreProcessingModelInvocationOutput' => [ 'type' => 'structure', 'members' => [ 'traceId' => [ 'shape' => 'TraceId', ], 'parsedResponse' => [ 'shape' => 'PreProcessingParsedResponse', ], ], 'sensitive' => true, ], 'PreProcessingParsedResponse' => [ 'type' => 'structure', 'members' => [ 'rationale' => [ 'shape' => 'RationaleString', ], 'isValid' => [ 'shape' => 'Boolean', ], ], 'sensitive' => true, ], 'PreProcessingTrace' => [ 'type' => 'structure', 'members' => [ 'modelInvocationInput' => [ 'shape' => 'ModelInvocationInput', ], 'modelInvocationOutput' => [ 'shape' => 'PreProcessingModelInvocationOutput', ], ], 'sensitive' => true, 'union' => true, ], 'PromptSessionAttributesMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'PromptText' => [ 'type' => 'string', 'sensitive' => true, ], 'PromptType' => [ 'type' => 'string', 'enum' => [ 'PRE_PROCESSING', 'ORCHESTRATION', 'KNOWLEDGE_BASE_RESPONSE_GENERATION', 'POST_PROCESSING', ], ], 'Rationale' => [ 'type' => 'structure', 'members' => [ 'traceId' => [ 'shape' => 'TraceId', ], 'text' => [ 'shape' => 'RationaleString', ], ], 'sensitive' => true, ], 'RationaleString' => [ 'type' => 'string', 'sensitive' => true, ], 'RepromptResponse' => [ 'type' => 'structure', 'members' => [ 'text' => [ 'shape' => 'String', ], 'source' => [ 'shape' => 'Source', ], ], 'sensitive' => true, ], 'RequestBody' => [ 'type' => 'structure', 'members' => [ 'content' => [ 'shape' => 'ContentMap', ], ], ], 'ResourceNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ResponseStream' => [ 'type' => 'structure', 'members' => [ 'chunk' => [ 'shape' => 'PayloadPart', ], 'trace' => [ 'shape' => 'TracePart', ], 'internalServerException' => [ 'shape' => 'InternalServerException', ], 'validationException' => [ 'shape' => 'ValidationException', ], 'resourceNotFoundException' => [ 'shape' => 'ResourceNotFoundException', ], 'serviceQuotaExceededException' => [ 'shape' => 'ServiceQuotaExceededException', ], 'throttlingException' => [ 'shape' => 'ThrottlingException', ], 'accessDeniedException' => [ 'shape' => 'AccessDeniedException', ], 'conflictException' => [ 'shape' => 'ConflictException', ], 'dependencyFailedException' => [ 'shape' => 'DependencyFailedException', ], 'badGatewayException' => [ 'shape' => 'BadGatewayException', ], ], 'eventstream' => true, ], 'RetrievalResultContent' => [ 'type' => 'structure', 'required' => [ 'text', ], 'members' => [ 'text' => [ 'shape' => 'String', ], ], 'sensitive' => true, ], 'RetrievalResultLocation' => [ 'type' => 'structure', 'required' => [ 'type', ], 'members' => [ 'type' => [ 'shape' => 'RetrievalResultLocationType', ], 's3Location' => [ 'shape' => 'RetrievalResultS3Location', ], ], 'sensitive' => true, ], 'RetrievalResultLocationType' => [ 'type' => 'string', 'enum' => [ 'S3', ], ], 'RetrievalResultS3Location' => [ 'type' => 'structure', 'members' => [ 'uri' => [ 'shape' => 'String', ], ], ], 'RetrieveAndGenerateConfiguration' => [ 'type' => 'structure', 'required' => [ 'type', ], 'members' => [ 'type' => [ 'shape' => 'RetrieveAndGenerateType', ], 'knowledgeBaseConfiguration' => [ 'shape' => 'KnowledgeBaseRetrieveAndGenerateConfiguration', ], ], ], 'RetrieveAndGenerateInput' => [ 'type' => 'structure', 'required' => [ 'text', ], 'members' => [ 'text' => [ 'shape' => 'RetrieveAndGenerateInputTextString', ], ], 'sensitive' => true, ], 'RetrieveAndGenerateInputTextString' => [ 'type' => 'string', 'max' => 1000, 'min' => 0, ], 'RetrieveAndGenerateOutput' => [ 'type' => 'structure', 'required' => [ 'text', ], 'members' => [ 'text' => [ 'shape' => 'String', ], ], 'sensitive' => true, ], 'RetrieveAndGenerateRequest' => [ 'type' => 'structure', 'required' => [ 'input', ], 'members' => [ 'sessionId' => [ 'shape' => 'SessionId', ], 'input' => [ 'shape' => 'RetrieveAndGenerateInput', ], 'retrieveAndGenerateConfiguration' => [ 'shape' => 'RetrieveAndGenerateConfiguration', ], 'sessionConfiguration' => [ 'shape' => 'RetrieveAndGenerateSessionConfiguration', ], ], ], 'RetrieveAndGenerateResponse' => [ 'type' => 'structure', 'required' => [ 'sessionId', 'output', ], 'members' => [ 'sessionId' => [ 'shape' => 'SessionId', ], 'output' => [ 'shape' => 'RetrieveAndGenerateOutput', ], 'citations' => [ 'shape' => 'Citations', ], ], ], 'RetrieveAndGenerateSessionConfiguration' => [ 'type' => 'structure', 'required' => [ 'kmsKeyArn', ], 'members' => [ 'kmsKeyArn' => [ 'shape' => 'KmsKeyArn', ], ], ], 'RetrieveAndGenerateType' => [ 'type' => 'string', 'enum' => [ 'KNOWLEDGE_BASE', ], ], 'RetrieveRequest' => [ 'type' => 'structure', 'required' => [ 'knowledgeBaseId', 'retrievalQuery', ], 'members' => [ 'knowledgeBaseId' => [ 'shape' => 'KnowledgeBaseId', 'location' => 'uri', 'locationName' => 'knowledgeBaseId', ], 'retrievalQuery' => [ 'shape' => 'KnowledgeBaseQuery', ], 'retrievalConfiguration' => [ 'shape' => 'KnowledgeBaseRetrievalConfiguration', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'RetrieveResponse' => [ 'type' => 'structure', 'required' => [ 'retrievalResults', ], 'members' => [ 'retrievalResults' => [ 'shape' => 'KnowledgeBaseRetrievalResults', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'RetrievedReference' => [ 'type' => 'structure', 'members' => [ 'content' => [ 'shape' => 'RetrievalResultContent', ], 'location' => [ 'shape' => 'RetrievalResultLocation', ], ], ], 'RetrievedReferences' => [ 'type' => 'list', 'member' => [ 'shape' => 'RetrievedReference', ], ], 'SearchType' => [ 'type' => 'string', 'enum' => [ 'HYBRID', 'SEMANTIC', ], ], 'ServiceQuotaExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SessionAttributesMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'SessionId' => [ 'type' => 'string', 'max' => 100, 'min' => 2, 'pattern' => '[0-9a-zA-Z._:-]+', ], 'SessionState' => [ 'type' => 'structure', 'members' => [ 'sessionAttributes' => [ 'shape' => 'SessionAttributesMap', ], 'promptSessionAttributes' => [ 'shape' => 'PromptSessionAttributesMap', ], ], ], 'Source' => [ 'type' => 'string', 'enum' => [ 'ACTION_GROUP', 'KNOWLEDGE_BASE', 'PARSER', ], 'sensitive' => true, ], 'Span' => [ 'type' => 'structure', 'members' => [ 'start' => [ 'shape' => 'SpanStartInteger', ], 'end' => [ 'shape' => 'SpanEndInteger', ], ], ], 'SpanEndInteger' => [ 'type' => 'integer', 'box' => true, 'min' => 0, ], 'SpanStartInteger' => [ 'type' => 'integer', 'box' => true, 'min' => 0, ], 'StopSequences' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], 'max' => 4, 'min' => 0, ], 'String' => [ 'type' => 'string', ], 'Temperature' => [ 'type' => 'float', 'box' => true, 'max' => 1, 'min' => 0, ], 'TextResponsePart' => [ 'type' => 'structure', 'members' => [ 'text' => [ 'shape' => 'String', ], 'span' => [ 'shape' => 'Span', ], ], 'sensitive' => true, ], 'ThrottlingException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 429, 'senderFault' => true, ], 'exception' => true, ], 'TopK' => [ 'type' => 'integer', 'box' => true, 'max' => 500, 'min' => 0, ], 'TopP' => [ 'type' => 'float', 'box' => true, 'max' => 1, 'min' => 0, ], 'Trace' => [ 'type' => 'structure', 'members' => [ 'preProcessingTrace' => [ 'shape' => 'PreProcessingTrace', ], 'orchestrationTrace' => [ 'shape' => 'OrchestrationTrace', ], 'postProcessingTrace' => [ 'shape' => 'PostProcessingTrace', ], 'failureTrace' => [ 'shape' => 'FailureTrace', ], ], 'sensitive' => true, 'union' => true, ], 'TraceId' => [ 'type' => 'string', 'max' => 16, 'min' => 2, ], 'TraceKnowledgeBaseId' => [ 'type' => 'string', 'sensitive' => true, ], 'TracePart' => [ 'type' => 'structure', 'members' => [ 'agentId' => [ 'shape' => 'AgentId', ], 'agentAliasId' => [ 'shape' => 'AgentAliasId', ], 'sessionId' => [ 'shape' => 'SessionId', ], 'trace' => [ 'shape' => 'Trace', ], ], 'event' => true, 'sensitive' => true, ], 'Type' => [ 'type' => 'string', 'enum' => [ 'ACTION_GROUP', 'KNOWLEDGE_BASE', 'FINISH', 'ASK_USER', 'REPROMPT', ], ], 'ValidationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'NonBlankString', ], ], 'error' => [ 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Verb' => [ 'type' => 'string', 'sensitive' => true, ], ],]; diff --git a/src/data/bedrock-agent-runtime/2023-07-26/docs-2.json b/src/data/bedrock-agent-runtime/2023-07-26/docs-2.json index 10e4a6f4c7..43080d0b18 100644 --- a/src/data/bedrock-agent-runtime/2023-07-26/docs-2.json +++ b/src/data/bedrock-agent-runtime/2023-07-26/docs-2.json @@ -243,6 +243,7 @@ "KnowledgeBaseRetrievalConfiguration": { "base": "

Search parameters for retrieving from knowledge base.

", "refs": { + "KnowledgeBaseRetrieveAndGenerateConfiguration$retrievalConfiguration": null, "RetrieveRequest$retrievalConfiguration": null } }, @@ -554,6 +555,12 @@ "KnowledgeBaseLookupOutput$retrievedReferences": null } }, + "SearchType": { + "base": "

Query type to be performed on data store.

", + "refs": { + "KnowledgeBaseVectorSearchConfiguration$overrideSearchType": "

Override the type of query to be performed on data store

" + } + }, "ServiceQuotaExceededException": { "base": "

This exception is thrown when a request is made beyond the service quota

", "refs": { diff --git a/src/data/bedrock-agent-runtime/2023-07-26/docs-2.json.php b/src/data/bedrock-agent-runtime/2023-07-26/docs-2.json.php index 2361f335c7..d138181a48 100644 --- a/src/data/bedrock-agent-runtime/2023-07-26/docs-2.json.php +++ b/src/data/bedrock-agent-runtime/2023-07-26/docs-2.json.php @@ -1,3 +1,3 @@ '2.0', 'service' => '

Amazon Bedrock Agent

', 'operations' => [ 'InvokeAgent' => '

Invokes the specified Bedrock model to run inference using the input provided in the request body.

', 'Retrieve' => '

Retrieve from knowledge base.

', 'RetrieveAndGenerate' => '

RetrieveAndGenerate API

', ], 'shapes' => [ 'AccessDeniedException' => [ 'base' => '

This exception is thrown when a request is denied per access permissions

', 'refs' => [ 'ResponseStream$accessDeniedException' => NULL, ], ], 'ActionGroupInvocationInput' => [ 'base' => '

input to lambda used in action group

', 'refs' => [ 'InvocationInput$actionGroupInvocationInput' => NULL, ], ], 'ActionGroupInvocationOutput' => [ 'base' => '

output from lambda used in action group

', 'refs' => [ 'Observation$actionGroupInvocationOutput' => NULL, ], ], 'ActionGroupName' => [ 'base' => '

Agent Trace Action Group Name

', 'refs' => [ 'ActionGroupInvocationInput$actionGroupName' => NULL, ], ], 'ActionGroupOutputString' => [ 'base' => '

Agent Trace Action Group Lambda Invocation Output String

', 'refs' => [ 'ActionGroupInvocationOutput$text' => NULL, ], ], 'AgentAliasId' => [ 'base' => '

Identifier of the agent alias.

', 'refs' => [ 'InvokeAgentRequest$agentAliasId' => '

Identifier for Agent Alias

', 'TracePart$agentAliasId' => NULL, ], ], 'AgentId' => [ 'base' => '

Identifier of the agent.

', 'refs' => [ 'InvokeAgentRequest$agentId' => '

Identifier for Agent

', 'TracePart$agentId' => NULL, ], ], 'ApiPath' => [ 'base' => '

Agent Trace Action Group API path

', 'refs' => [ 'ActionGroupInvocationInput$apiPath' => NULL, ], ], 'Attribution' => [ 'base' => '

Citations associated with final agent response

', 'refs' => [ 'PayloadPart$attribution' => NULL, ], ], 'BadGatewayException' => [ 'base' => '

This exception is thrown when a request fails due to dependency like Lambda, Bedrock, STS resource

', 'refs' => [ 'ResponseStream$badGatewayException' => NULL, ], ], 'BedrockModelArn' => [ 'base' => '

Arn of a Bedrock model.

', 'refs' => [ 'KnowledgeBaseRetrieveAndGenerateConfiguration$modelArn' => NULL, ], ], 'Boolean' => [ 'base' => NULL, 'refs' => [ 'InvokeAgentRequest$endSession' => '

End current session

', 'InvokeAgentRequest$enableTrace' => '

Enable agent trace events for improved debugging

', 'PreProcessingParsedResponse$isValid' => '

Boolean value

', ], ], 'Citation' => [ 'base' => '

Citation associated with the agent response

', 'refs' => [ 'Citations$member' => NULL, ], ], 'Citations' => [ 'base' => '

List of citations

', 'refs' => [ 'Attribution$citations' => NULL, 'RetrieveAndGenerateResponse$citations' => NULL, ], ], 'ConflictException' => [ 'base' => '

This exception is thrown when there is a conflict performing an operation

', 'refs' => [ 'ResponseStream$conflictException' => NULL, ], ], 'ContentMap' => [ 'base' => '

Content type paramter map

', 'refs' => [ 'RequestBody$content' => NULL, ], ], 'CreationMode' => [ 'base' => '

indicates if agent uses default prompt or overriden prompt

', 'refs' => [ 'ModelInvocationInput$promptCreationMode' => NULL, 'ModelInvocationInput$parserMode' => NULL, ], ], 'DependencyFailedException' => [ 'base' => '

This exception is thrown when a request fails due to dependency like Lambda, Bedrock, STS resource due to a customer fault (i.e. bad configuration)

', 'refs' => [ 'ResponseStream$dependencyFailedException' => NULL, ], ], 'Double' => [ 'base' => NULL, 'refs' => [ 'KnowledgeBaseRetrievalResult$score' => '

The relevance score of a result.

', ], ], 'FailureReasonString' => [ 'base' => '

Agent Trace Failed Reason String

', 'refs' => [ 'FailureTrace$failureReason' => NULL, ], ], 'FailureTrace' => [ 'base' => '

Trace Part which is emitted when agent trace could not be generated

', 'refs' => [ 'Trace$failureTrace' => NULL, ], ], 'FinalResponse' => [ 'base' => '

Agent finish output

', 'refs' => [ 'Observation$finalResponse' => NULL, ], ], 'FinalResponseString' => [ 'base' => '

Agent Trace Action Group Lambda Invocation Output String

', 'refs' => [ 'FinalResponse$text' => NULL, ], ], 'GeneratedResponsePart' => [ 'base' => '

Generate response part

', 'refs' => [ 'Citation$generatedResponsePart' => NULL, ], ], 'InferenceConfiguration' => [ 'base' => '

Configurations for controlling the inference response of an InvokeAgent API call

', 'refs' => [ 'ModelInvocationInput$inferenceConfiguration' => NULL, ], ], 'InputText' => [ 'base' => '

Model text input

', 'refs' => [ 'InvokeAgentRequest$inputText' => '

Input data in the format specified in the Content-Type request header.

', ], ], 'InternalServerException' => [ 'base' => '

This exception is thrown if there was an unexpected error during processing of request

', 'refs' => [ 'ResponseStream$internalServerException' => NULL, ], ], 'InvocationInput' => [ 'base' => '

Trace Part which contains input details for action group or knowledge base

', 'refs' => [ 'OrchestrationTrace$invocationInput' => NULL, ], ], 'InvocationType' => [ 'base' => '

types of invocations

', 'refs' => [ 'InvocationInput$invocationType' => NULL, ], ], 'InvokeAgentRequest' => [ 'base' => '

InvokeAgent Request

', 'refs' => [], ], 'InvokeAgentResponse' => [ 'base' => '

InvokeAgent Response

', 'refs' => [], ], 'KmsKeyArn' => [ 'base' => '

A KMS key ARN

', 'refs' => [ 'RetrieveAndGenerateSessionConfiguration$kmsKeyArn' => '

The KMS key arn to encrypt the customer data of the session.

', ], ], 'KnowledgeBaseId' => [ 'base' => '

Identifier of the KnowledgeBase

', 'refs' => [ 'KnowledgeBaseRetrieveAndGenerateConfiguration$knowledgeBaseId' => NULL, 'RetrieveRequest$knowledgeBaseId' => NULL, ], ], 'KnowledgeBaseLookupInput' => [ 'base' => '

Input to lambda used in action group

', 'refs' => [ 'InvocationInput$knowledgeBaseLookupInput' => NULL, ], ], 'KnowledgeBaseLookupInputString' => [ 'base' => '

Agent Trace Action Group Lambda Invocation Output String

', 'refs' => [ 'KnowledgeBaseLookupInput$text' => NULL, ], ], 'KnowledgeBaseLookupOutput' => [ 'base' => '

Input to lambda used in action group

', 'refs' => [ 'Observation$knowledgeBaseLookupOutput' => NULL, ], ], 'KnowledgeBaseQuery' => [ 'base' => '

Knowledge base input query.

', 'refs' => [ 'RetrieveRequest$retrievalQuery' => NULL, ], ], 'KnowledgeBaseQueryTextString' => [ 'base' => NULL, 'refs' => [ 'KnowledgeBaseQuery$text' => '

Knowledge base input query in text

', ], ], 'KnowledgeBaseRetrievalConfiguration' => [ 'base' => '

Search parameters for retrieving from knowledge base.

', 'refs' => [ 'RetrieveRequest$retrievalConfiguration' => NULL, ], ], 'KnowledgeBaseRetrievalResult' => [ 'base' => '

Result item returned from a knowledge base retrieval.

', 'refs' => [ 'KnowledgeBaseRetrievalResults$member' => NULL, ], ], 'KnowledgeBaseRetrievalResults' => [ 'base' => '

List of knowledge base retrieval results

', 'refs' => [ 'RetrieveResponse$retrievalResults' => NULL, ], ], 'KnowledgeBaseRetrieveAndGenerateConfiguration' => [ 'base' => '

Configurations for retrieval and generation for knowledge base.

', 'refs' => [ 'RetrieveAndGenerateConfiguration$knowledgeBaseConfiguration' => NULL, ], ], 'KnowledgeBaseVectorSearchConfiguration' => [ 'base' => '

Knowledge base vector search configuration

', 'refs' => [ 'KnowledgeBaseRetrievalConfiguration$vectorSearchConfiguration' => NULL, ], ], 'KnowledgeBaseVectorSearchConfigurationNumberOfResultsInteger' => [ 'base' => NULL, 'refs' => [ 'KnowledgeBaseVectorSearchConfiguration$numberOfResults' => '

Top-K results to retrieve from knowledge base.

', ], ], 'LambdaArn' => [ 'base' => '

ARN of a Lambda.

', 'refs' => [ 'ModelInvocationInput$overrideLambda' => NULL, ], ], 'MaximumLength' => [ 'base' => '

Maximum length of output

', 'refs' => [ 'InferenceConfiguration$maximumLength' => NULL, ], ], 'MimeType' => [ 'base' => '

Content type of the request

', 'refs' => [ 'InvokeAgentResponse$contentType' => '

streaming response mimetype of the model

', ], ], 'ModelInvocationInput' => [ 'base' => '

Trace Part which contains information used to call Invoke Model

', 'refs' => [ 'OrchestrationTrace$modelInvocationInput' => NULL, 'PostProcessingTrace$modelInvocationInput' => NULL, 'PreProcessingTrace$modelInvocationInput' => NULL, ], ], 'NextToken' => [ 'base' => '

Opaque continuation token of previous paginated response.

', 'refs' => [ 'RetrieveRequest$nextToken' => NULL, 'RetrieveResponse$nextToken' => NULL, ], ], 'NonBlankString' => [ 'base' => '

Non Blank String

', 'refs' => [ 'AccessDeniedException$message' => NULL, 'BadGatewayException$message' => NULL, 'BadGatewayException$resourceName' => NULL, 'ConflictException$message' => NULL, 'DependencyFailedException$message' => NULL, 'DependencyFailedException$resourceName' => NULL, 'InternalServerException$message' => NULL, 'ResourceNotFoundException$message' => NULL, 'ServiceQuotaExceededException$message' => NULL, 'ThrottlingException$message' => NULL, 'ValidationException$message' => NULL, ], ], 'Observation' => [ 'base' => '

Trace Part which contains output details for action group or knowledge base or final response

', 'refs' => [ 'OrchestrationTrace$observation' => NULL, ], ], 'OrchestrationTrace' => [ 'base' => '

Trace contains intermidate response during orchestration

', 'refs' => [ 'Trace$orchestrationTrace' => NULL, ], ], 'OutputString' => [ 'base' => '

Agent Trace Output String

', 'refs' => [ 'PostProcessingParsedResponse$text' => NULL, ], ], 'Parameter' => [ 'base' => '

parameters included in action group invocation

', 'refs' => [ 'Parameters$member' => NULL, ], ], 'Parameters' => [ 'base' => '

list of parameters included in action group invocation

', 'refs' => [ 'ActionGroupInvocationInput$parameters' => NULL, 'ContentMap$value' => NULL, ], ], 'PartBody' => [ 'base' => '

PartBody of the payload in bytes

', 'refs' => [ 'PayloadPart$bytes' => NULL, ], ], 'PayloadPart' => [ 'base' => '

Base 64 endoded byte response

', 'refs' => [ 'ResponseStream$chunk' => NULL, ], ], 'PostProcessingModelInvocationOutput' => [ 'base' => '

Trace Part which contains information related to postprocessing

', 'refs' => [ 'PostProcessingTrace$modelInvocationOutput' => NULL, ], ], 'PostProcessingParsedResponse' => [ 'base' => '

Trace Part which contains information if preprocessing was successful

', 'refs' => [ 'PostProcessingModelInvocationOutput$parsedResponse' => NULL, ], ], 'PostProcessingTrace' => [ 'base' => '

Trace Part which contains information related to post processing step

', 'refs' => [ 'Trace$postProcessingTrace' => NULL, ], ], 'PreProcessingModelInvocationOutput' => [ 'base' => '

Trace Part which contains information related to preprocessing

', 'refs' => [ 'PreProcessingTrace$modelInvocationOutput' => NULL, ], ], 'PreProcessingParsedResponse' => [ 'base' => '

Trace Part which contains information if preprocessing was successful

', 'refs' => [ 'PreProcessingModelInvocationOutput$parsedResponse' => NULL, ], ], 'PreProcessingTrace' => [ 'base' => '

Trace Part which contains information related to preprocessing step

', 'refs' => [ 'Trace$preProcessingTrace' => NULL, ], ], 'PromptSessionAttributesMap' => [ 'base' => '

Session attributes that go to the prompt

', 'refs' => [ 'SessionState$promptSessionAttributes' => '

Prompt Session Attributes

', ], ], 'PromptText' => [ 'base' => '

Prompt Message

', 'refs' => [ 'ModelInvocationInput$text' => NULL, ], ], 'PromptType' => [ 'base' => '

types of prompts

', 'refs' => [ 'ModelInvocationInput$type' => NULL, ], ], 'Rationale' => [ 'base' => '

Trace Part which contains information related to reasoning

', 'refs' => [ 'OrchestrationTrace$rationale' => NULL, ], ], 'RationaleString' => [ 'base' => '

Agent Trace Rationale String

', 'refs' => [ 'PreProcessingParsedResponse$rationale' => NULL, 'Rationale$text' => NULL, ], ], 'RepromptResponse' => [ 'base' => '

Observation information if there were reprompts

', 'refs' => [ 'Observation$repromptResponse' => NULL, ], ], 'RequestBody' => [ 'base' => '

Request Body Content Map

', 'refs' => [ 'ActionGroupInvocationInput$requestBody' => NULL, ], ], 'ResourceNotFoundException' => [ 'base' => '

This exception is thrown when a resource referenced by the operation does not exist

', 'refs' => [ 'ResponseStream$resourceNotFoundException' => NULL, ], ], 'ResponseStream' => [ 'base' => '

Response body of is a stream

', 'refs' => [ 'InvokeAgentResponse$completion' => '

Inference response from the model in the format specified in the Content-Type response header.

', ], ], 'RetrievalResultContent' => [ 'base' => '

Content of a retrieval result.

', 'refs' => [ 'KnowledgeBaseRetrievalResult$content' => NULL, 'RetrievedReference$content' => NULL, ], ], 'RetrievalResultLocation' => [ 'base' => '

The source location of a retrieval result.

', 'refs' => [ 'KnowledgeBaseRetrievalResult$location' => NULL, 'RetrievedReference$location' => NULL, ], ], 'RetrievalResultLocationType' => [ 'base' => '

The location type of a retrieval result.

', 'refs' => [ 'RetrievalResultLocation$type' => NULL, ], ], 'RetrievalResultS3Location' => [ 'base' => '

The S3 location of a retrieval result.

', 'refs' => [ 'RetrievalResultLocation$s3Location' => NULL, ], ], 'RetrieveAndGenerateConfiguration' => [ 'base' => '

Configures the retrieval and generation for the session.

', 'refs' => [ 'RetrieveAndGenerateRequest$retrieveAndGenerateConfiguration' => NULL, ], ], 'RetrieveAndGenerateInput' => [ 'base' => '

Customer input of the turn

', 'refs' => [ 'RetrieveAndGenerateRequest$input' => NULL, ], ], 'RetrieveAndGenerateInputTextString' => [ 'base' => NULL, 'refs' => [ 'RetrieveAndGenerateInput$text' => '

Customer input of the turn in text

', ], ], 'RetrieveAndGenerateOutput' => [ 'base' => '

Service response of the turn

', 'refs' => [ 'RetrieveAndGenerateResponse$output' => NULL, ], ], 'RetrieveAndGenerateRequest' => [ 'base' => NULL, 'refs' => [], ], 'RetrieveAndGenerateResponse' => [ 'base' => NULL, 'refs' => [], ], 'RetrieveAndGenerateSessionConfiguration' => [ 'base' => '

Configures common parameters of the session.

', 'refs' => [ 'RetrieveAndGenerateRequest$sessionConfiguration' => NULL, ], ], 'RetrieveAndGenerateType' => [ 'base' => '

The type of RetrieveAndGenerate.

', 'refs' => [ 'RetrieveAndGenerateConfiguration$type' => NULL, ], ], 'RetrieveRequest' => [ 'base' => NULL, 'refs' => [], ], 'RetrieveResponse' => [ 'base' => NULL, 'refs' => [], ], 'RetrievedReference' => [ 'base' => '

Retrieved reference

', 'refs' => [ 'RetrievedReferences$member' => NULL, ], ], 'RetrievedReferences' => [ 'base' => '

list of retrieved references

', 'refs' => [ 'Citation$retrievedReferences' => NULL, 'KnowledgeBaseLookupOutput$retrievedReferences' => NULL, ], ], 'ServiceQuotaExceededException' => [ 'base' => '

This exception is thrown when a request is made beyond the service quota

', 'refs' => [ 'ResponseStream$serviceQuotaExceededException' => NULL, ], ], 'SessionAttributesMap' => [ 'base' => '

Session attributes are pass through attributes passed to the action group

', 'refs' => [ 'SessionState$sessionAttributes' => '

Session Attributes

', ], ], 'SessionId' => [ 'base' => '

Identifier of the session.

', 'refs' => [ 'InvokeAgentRequest$sessionId' => '

Identifier used for the current session

', 'InvokeAgentResponse$sessionId' => '

streaming response mimetype of the model

', 'RetrieveAndGenerateRequest$sessionId' => NULL, 'RetrieveAndGenerateResponse$sessionId' => NULL, 'TracePart$sessionId' => NULL, ], ], 'SessionState' => [ 'base' => '

Session state provided

', 'refs' => [ 'InvokeAgentRequest$sessionState' => '

Session state passed by customer. Base64 encoded json string representation of SessionState.

', ], ], 'Source' => [ 'base' => '

Parsing error source

', 'refs' => [ 'RepromptResponse$source' => NULL, ], ], 'Span' => [ 'base' => '

Span of text

', 'refs' => [ 'TextResponsePart$span' => NULL, ], ], 'SpanEndInteger' => [ 'base' => NULL, 'refs' => [ 'Span$end' => '

End of span

', ], ], 'SpanStartInteger' => [ 'base' => NULL, 'refs' => [ 'Span$start' => '

Start of span

', ], ], 'StopSequences' => [ 'base' => '

List of stop sequences

', 'refs' => [ 'InferenceConfiguration$stopSequences' => NULL, ], ], 'String' => [ 'base' => NULL, 'refs' => [ 'ContentMap$key' => NULL, 'Parameter$name' => '

Name of parameter

', 'Parameter$type' => '

Type of parameter

', 'Parameter$value' => '

Value of parameter

', 'PromptSessionAttributesMap$key' => NULL, 'PromptSessionAttributesMap$value' => NULL, 'RepromptResponse$text' => '

Reprompt response text

', 'RetrievalResultContent$text' => '

Content of a retrieval result in text

', 'RetrievalResultS3Location$uri' => '

URI of S3 location

', 'RetrieveAndGenerateOutput$text' => '

Service response of the turn in text

', 'SessionAttributesMap$key' => NULL, 'SessionAttributesMap$value' => NULL, 'StopSequences$member' => NULL, 'TextResponsePart$text' => '

Response part in text

', ], ], 'Temperature' => [ 'base' => '

Controls randomness, higher values increase diversity

', 'refs' => [ 'InferenceConfiguration$temperature' => NULL, ], ], 'TextResponsePart' => [ 'base' => '

Text response part

', 'refs' => [ 'GeneratedResponsePart$textResponsePart' => NULL, ], ], 'ThrottlingException' => [ 'base' => '

This exception is thrown when the number of requests exceeds the limit

', 'refs' => [ 'ResponseStream$throttlingException' => NULL, ], ], 'TopK' => [ 'base' => '

Sample from the k most likely next tokens

', 'refs' => [ 'InferenceConfiguration$topK' => NULL, ], ], 'TopP' => [ 'base' => '

Cumulative probability cutoff for token selection

', 'refs' => [ 'InferenceConfiguration$topP' => NULL, ], ], 'Trace' => [ 'base' => '

Trace contains intermidate response for customer

', 'refs' => [ 'TracePart$trace' => NULL, ], ], 'TraceId' => [ 'base' => '

Identifier for trace

', 'refs' => [ 'FailureTrace$traceId' => NULL, 'InvocationInput$traceId' => NULL, 'ModelInvocationInput$traceId' => NULL, 'Observation$traceId' => NULL, 'PostProcessingModelInvocationOutput$traceId' => NULL, 'PreProcessingModelInvocationOutput$traceId' => NULL, 'Rationale$traceId' => NULL, ], ], 'TraceKnowledgeBaseId' => [ 'base' => '

Agent Trace Action Group Knowledge Base Id

', 'refs' => [ 'KnowledgeBaseLookupInput$knowledgeBaseId' => NULL, ], ], 'TracePart' => [ 'base' => '

Trace Part which contains intermidate response for customer

', 'refs' => [ 'ResponseStream$trace' => NULL, ], ], 'Type' => [ 'base' => '

types of observations

', 'refs' => [ 'Observation$type' => NULL, ], ], 'ValidationException' => [ 'base' => '

This exception is thrown when the request\'s input validation fails

', 'refs' => [ 'ResponseStream$validationException' => NULL, ], ], 'Verb' => [ 'base' => '

Agent Trace Action Group Action verb

', 'refs' => [ 'ActionGroupInvocationInput$verb' => NULL, ], ], ],]; +return [ 'version' => '2.0', 'service' => '

Amazon Bedrock Agent

', 'operations' => [ 'InvokeAgent' => '

Invokes the specified Bedrock model to run inference using the input provided in the request body.

', 'Retrieve' => '

Retrieve from knowledge base.

', 'RetrieveAndGenerate' => '

RetrieveAndGenerate API

', ], 'shapes' => [ 'AccessDeniedException' => [ 'base' => '

This exception is thrown when a request is denied per access permissions

', 'refs' => [ 'ResponseStream$accessDeniedException' => NULL, ], ], 'ActionGroupInvocationInput' => [ 'base' => '

input to lambda used in action group

', 'refs' => [ 'InvocationInput$actionGroupInvocationInput' => NULL, ], ], 'ActionGroupInvocationOutput' => [ 'base' => '

output from lambda used in action group

', 'refs' => [ 'Observation$actionGroupInvocationOutput' => NULL, ], ], 'ActionGroupName' => [ 'base' => '

Agent Trace Action Group Name

', 'refs' => [ 'ActionGroupInvocationInput$actionGroupName' => NULL, ], ], 'ActionGroupOutputString' => [ 'base' => '

Agent Trace Action Group Lambda Invocation Output String

', 'refs' => [ 'ActionGroupInvocationOutput$text' => NULL, ], ], 'AgentAliasId' => [ 'base' => '

Identifier of the agent alias.

', 'refs' => [ 'InvokeAgentRequest$agentAliasId' => '

Identifier for Agent Alias

', 'TracePart$agentAliasId' => NULL, ], ], 'AgentId' => [ 'base' => '

Identifier of the agent.

', 'refs' => [ 'InvokeAgentRequest$agentId' => '

Identifier for Agent

', 'TracePart$agentId' => NULL, ], ], 'ApiPath' => [ 'base' => '

Agent Trace Action Group API path

', 'refs' => [ 'ActionGroupInvocationInput$apiPath' => NULL, ], ], 'Attribution' => [ 'base' => '

Citations associated with final agent response

', 'refs' => [ 'PayloadPart$attribution' => NULL, ], ], 'BadGatewayException' => [ 'base' => '

This exception is thrown when a request fails due to dependency like Lambda, Bedrock, STS resource

', 'refs' => [ 'ResponseStream$badGatewayException' => NULL, ], ], 'BedrockModelArn' => [ 'base' => '

Arn of a Bedrock model.

', 'refs' => [ 'KnowledgeBaseRetrieveAndGenerateConfiguration$modelArn' => NULL, ], ], 'Boolean' => [ 'base' => NULL, 'refs' => [ 'InvokeAgentRequest$endSession' => '

End current session

', 'InvokeAgentRequest$enableTrace' => '

Enable agent trace events for improved debugging

', 'PreProcessingParsedResponse$isValid' => '

Boolean value

', ], ], 'Citation' => [ 'base' => '

Citation associated with the agent response

', 'refs' => [ 'Citations$member' => NULL, ], ], 'Citations' => [ 'base' => '

List of citations

', 'refs' => [ 'Attribution$citations' => NULL, 'RetrieveAndGenerateResponse$citations' => NULL, ], ], 'ConflictException' => [ 'base' => '

This exception is thrown when there is a conflict performing an operation

', 'refs' => [ 'ResponseStream$conflictException' => NULL, ], ], 'ContentMap' => [ 'base' => '

Content type paramter map

', 'refs' => [ 'RequestBody$content' => NULL, ], ], 'CreationMode' => [ 'base' => '

indicates if agent uses default prompt or overriden prompt

', 'refs' => [ 'ModelInvocationInput$promptCreationMode' => NULL, 'ModelInvocationInput$parserMode' => NULL, ], ], 'DependencyFailedException' => [ 'base' => '

This exception is thrown when a request fails due to dependency like Lambda, Bedrock, STS resource due to a customer fault (i.e. bad configuration)

', 'refs' => [ 'ResponseStream$dependencyFailedException' => NULL, ], ], 'Double' => [ 'base' => NULL, 'refs' => [ 'KnowledgeBaseRetrievalResult$score' => '

The relevance score of a result.

', ], ], 'FailureReasonString' => [ 'base' => '

Agent Trace Failed Reason String

', 'refs' => [ 'FailureTrace$failureReason' => NULL, ], ], 'FailureTrace' => [ 'base' => '

Trace Part which is emitted when agent trace could not be generated

', 'refs' => [ 'Trace$failureTrace' => NULL, ], ], 'FinalResponse' => [ 'base' => '

Agent finish output

', 'refs' => [ 'Observation$finalResponse' => NULL, ], ], 'FinalResponseString' => [ 'base' => '

Agent Trace Action Group Lambda Invocation Output String

', 'refs' => [ 'FinalResponse$text' => NULL, ], ], 'GeneratedResponsePart' => [ 'base' => '

Generate response part

', 'refs' => [ 'Citation$generatedResponsePart' => NULL, ], ], 'InferenceConfiguration' => [ 'base' => '

Configurations for controlling the inference response of an InvokeAgent API call

', 'refs' => [ 'ModelInvocationInput$inferenceConfiguration' => NULL, ], ], 'InputText' => [ 'base' => '

Model text input

', 'refs' => [ 'InvokeAgentRequest$inputText' => '

Input data in the format specified in the Content-Type request header.

', ], ], 'InternalServerException' => [ 'base' => '

This exception is thrown if there was an unexpected error during processing of request

', 'refs' => [ 'ResponseStream$internalServerException' => NULL, ], ], 'InvocationInput' => [ 'base' => '

Trace Part which contains input details for action group or knowledge base

', 'refs' => [ 'OrchestrationTrace$invocationInput' => NULL, ], ], 'InvocationType' => [ 'base' => '

types of invocations

', 'refs' => [ 'InvocationInput$invocationType' => NULL, ], ], 'InvokeAgentRequest' => [ 'base' => '

InvokeAgent Request

', 'refs' => [], ], 'InvokeAgentResponse' => [ 'base' => '

InvokeAgent Response

', 'refs' => [], ], 'KmsKeyArn' => [ 'base' => '

A KMS key ARN

', 'refs' => [ 'RetrieveAndGenerateSessionConfiguration$kmsKeyArn' => '

The KMS key arn to encrypt the customer data of the session.

', ], ], 'KnowledgeBaseId' => [ 'base' => '

Identifier of the KnowledgeBase

', 'refs' => [ 'KnowledgeBaseRetrieveAndGenerateConfiguration$knowledgeBaseId' => NULL, 'RetrieveRequest$knowledgeBaseId' => NULL, ], ], 'KnowledgeBaseLookupInput' => [ 'base' => '

Input to lambda used in action group

', 'refs' => [ 'InvocationInput$knowledgeBaseLookupInput' => NULL, ], ], 'KnowledgeBaseLookupInputString' => [ 'base' => '

Agent Trace Action Group Lambda Invocation Output String

', 'refs' => [ 'KnowledgeBaseLookupInput$text' => NULL, ], ], 'KnowledgeBaseLookupOutput' => [ 'base' => '

Input to lambda used in action group

', 'refs' => [ 'Observation$knowledgeBaseLookupOutput' => NULL, ], ], 'KnowledgeBaseQuery' => [ 'base' => '

Knowledge base input query.

', 'refs' => [ 'RetrieveRequest$retrievalQuery' => NULL, ], ], 'KnowledgeBaseQueryTextString' => [ 'base' => NULL, 'refs' => [ 'KnowledgeBaseQuery$text' => '

Knowledge base input query in text

', ], ], 'KnowledgeBaseRetrievalConfiguration' => [ 'base' => '

Search parameters for retrieving from knowledge base.

', 'refs' => [ 'KnowledgeBaseRetrieveAndGenerateConfiguration$retrievalConfiguration' => NULL, 'RetrieveRequest$retrievalConfiguration' => NULL, ], ], 'KnowledgeBaseRetrievalResult' => [ 'base' => '

Result item returned from a knowledge base retrieval.

', 'refs' => [ 'KnowledgeBaseRetrievalResults$member' => NULL, ], ], 'KnowledgeBaseRetrievalResults' => [ 'base' => '

List of knowledge base retrieval results

', 'refs' => [ 'RetrieveResponse$retrievalResults' => NULL, ], ], 'KnowledgeBaseRetrieveAndGenerateConfiguration' => [ 'base' => '

Configurations for retrieval and generation for knowledge base.

', 'refs' => [ 'RetrieveAndGenerateConfiguration$knowledgeBaseConfiguration' => NULL, ], ], 'KnowledgeBaseVectorSearchConfiguration' => [ 'base' => '

Knowledge base vector search configuration

', 'refs' => [ 'KnowledgeBaseRetrievalConfiguration$vectorSearchConfiguration' => NULL, ], ], 'KnowledgeBaseVectorSearchConfigurationNumberOfResultsInteger' => [ 'base' => NULL, 'refs' => [ 'KnowledgeBaseVectorSearchConfiguration$numberOfResults' => '

Top-K results to retrieve from knowledge base.

', ], ], 'LambdaArn' => [ 'base' => '

ARN of a Lambda.

', 'refs' => [ 'ModelInvocationInput$overrideLambda' => NULL, ], ], 'MaximumLength' => [ 'base' => '

Maximum length of output

', 'refs' => [ 'InferenceConfiguration$maximumLength' => NULL, ], ], 'MimeType' => [ 'base' => '

Content type of the request

', 'refs' => [ 'InvokeAgentResponse$contentType' => '

streaming response mimetype of the model

', ], ], 'ModelInvocationInput' => [ 'base' => '

Trace Part which contains information used to call Invoke Model

', 'refs' => [ 'OrchestrationTrace$modelInvocationInput' => NULL, 'PostProcessingTrace$modelInvocationInput' => NULL, 'PreProcessingTrace$modelInvocationInput' => NULL, ], ], 'NextToken' => [ 'base' => '

Opaque continuation token of previous paginated response.

', 'refs' => [ 'RetrieveRequest$nextToken' => NULL, 'RetrieveResponse$nextToken' => NULL, ], ], 'NonBlankString' => [ 'base' => '

Non Blank String

', 'refs' => [ 'AccessDeniedException$message' => NULL, 'BadGatewayException$message' => NULL, 'BadGatewayException$resourceName' => NULL, 'ConflictException$message' => NULL, 'DependencyFailedException$message' => NULL, 'DependencyFailedException$resourceName' => NULL, 'InternalServerException$message' => NULL, 'ResourceNotFoundException$message' => NULL, 'ServiceQuotaExceededException$message' => NULL, 'ThrottlingException$message' => NULL, 'ValidationException$message' => NULL, ], ], 'Observation' => [ 'base' => '

Trace Part which contains output details for action group or knowledge base or final response

', 'refs' => [ 'OrchestrationTrace$observation' => NULL, ], ], 'OrchestrationTrace' => [ 'base' => '

Trace contains intermidate response during orchestration

', 'refs' => [ 'Trace$orchestrationTrace' => NULL, ], ], 'OutputString' => [ 'base' => '

Agent Trace Output String

', 'refs' => [ 'PostProcessingParsedResponse$text' => NULL, ], ], 'Parameter' => [ 'base' => '

parameters included in action group invocation

', 'refs' => [ 'Parameters$member' => NULL, ], ], 'Parameters' => [ 'base' => '

list of parameters included in action group invocation

', 'refs' => [ 'ActionGroupInvocationInput$parameters' => NULL, 'ContentMap$value' => NULL, ], ], 'PartBody' => [ 'base' => '

PartBody of the payload in bytes

', 'refs' => [ 'PayloadPart$bytes' => NULL, ], ], 'PayloadPart' => [ 'base' => '

Base 64 endoded byte response

', 'refs' => [ 'ResponseStream$chunk' => NULL, ], ], 'PostProcessingModelInvocationOutput' => [ 'base' => '

Trace Part which contains information related to postprocessing

', 'refs' => [ 'PostProcessingTrace$modelInvocationOutput' => NULL, ], ], 'PostProcessingParsedResponse' => [ 'base' => '

Trace Part which contains information if preprocessing was successful

', 'refs' => [ 'PostProcessingModelInvocationOutput$parsedResponse' => NULL, ], ], 'PostProcessingTrace' => [ 'base' => '

Trace Part which contains information related to post processing step

', 'refs' => [ 'Trace$postProcessingTrace' => NULL, ], ], 'PreProcessingModelInvocationOutput' => [ 'base' => '

Trace Part which contains information related to preprocessing

', 'refs' => [ 'PreProcessingTrace$modelInvocationOutput' => NULL, ], ], 'PreProcessingParsedResponse' => [ 'base' => '

Trace Part which contains information if preprocessing was successful

', 'refs' => [ 'PreProcessingModelInvocationOutput$parsedResponse' => NULL, ], ], 'PreProcessingTrace' => [ 'base' => '

Trace Part which contains information related to preprocessing step

', 'refs' => [ 'Trace$preProcessingTrace' => NULL, ], ], 'PromptSessionAttributesMap' => [ 'base' => '

Session attributes that go to the prompt

', 'refs' => [ 'SessionState$promptSessionAttributes' => '

Prompt Session Attributes

', ], ], 'PromptText' => [ 'base' => '

Prompt Message

', 'refs' => [ 'ModelInvocationInput$text' => NULL, ], ], 'PromptType' => [ 'base' => '

types of prompts

', 'refs' => [ 'ModelInvocationInput$type' => NULL, ], ], 'Rationale' => [ 'base' => '

Trace Part which contains information related to reasoning

', 'refs' => [ 'OrchestrationTrace$rationale' => NULL, ], ], 'RationaleString' => [ 'base' => '

Agent Trace Rationale String

', 'refs' => [ 'PreProcessingParsedResponse$rationale' => NULL, 'Rationale$text' => NULL, ], ], 'RepromptResponse' => [ 'base' => '

Observation information if there were reprompts

', 'refs' => [ 'Observation$repromptResponse' => NULL, ], ], 'RequestBody' => [ 'base' => '

Request Body Content Map

', 'refs' => [ 'ActionGroupInvocationInput$requestBody' => NULL, ], ], 'ResourceNotFoundException' => [ 'base' => '

This exception is thrown when a resource referenced by the operation does not exist

', 'refs' => [ 'ResponseStream$resourceNotFoundException' => NULL, ], ], 'ResponseStream' => [ 'base' => '

Response body of is a stream

', 'refs' => [ 'InvokeAgentResponse$completion' => '

Inference response from the model in the format specified in the Content-Type response header.

', ], ], 'RetrievalResultContent' => [ 'base' => '

Content of a retrieval result.

', 'refs' => [ 'KnowledgeBaseRetrievalResult$content' => NULL, 'RetrievedReference$content' => NULL, ], ], 'RetrievalResultLocation' => [ 'base' => '

The source location of a retrieval result.

', 'refs' => [ 'KnowledgeBaseRetrievalResult$location' => NULL, 'RetrievedReference$location' => NULL, ], ], 'RetrievalResultLocationType' => [ 'base' => '

The location type of a retrieval result.

', 'refs' => [ 'RetrievalResultLocation$type' => NULL, ], ], 'RetrievalResultS3Location' => [ 'base' => '

The S3 location of a retrieval result.

', 'refs' => [ 'RetrievalResultLocation$s3Location' => NULL, ], ], 'RetrieveAndGenerateConfiguration' => [ 'base' => '

Configures the retrieval and generation for the session.

', 'refs' => [ 'RetrieveAndGenerateRequest$retrieveAndGenerateConfiguration' => NULL, ], ], 'RetrieveAndGenerateInput' => [ 'base' => '

Customer input of the turn

', 'refs' => [ 'RetrieveAndGenerateRequest$input' => NULL, ], ], 'RetrieveAndGenerateInputTextString' => [ 'base' => NULL, 'refs' => [ 'RetrieveAndGenerateInput$text' => '

Customer input of the turn in text

', ], ], 'RetrieveAndGenerateOutput' => [ 'base' => '

Service response of the turn

', 'refs' => [ 'RetrieveAndGenerateResponse$output' => NULL, ], ], 'RetrieveAndGenerateRequest' => [ 'base' => NULL, 'refs' => [], ], 'RetrieveAndGenerateResponse' => [ 'base' => NULL, 'refs' => [], ], 'RetrieveAndGenerateSessionConfiguration' => [ 'base' => '

Configures common parameters of the session.

', 'refs' => [ 'RetrieveAndGenerateRequest$sessionConfiguration' => NULL, ], ], 'RetrieveAndGenerateType' => [ 'base' => '

The type of RetrieveAndGenerate.

', 'refs' => [ 'RetrieveAndGenerateConfiguration$type' => NULL, ], ], 'RetrieveRequest' => [ 'base' => NULL, 'refs' => [], ], 'RetrieveResponse' => [ 'base' => NULL, 'refs' => [], ], 'RetrievedReference' => [ 'base' => '

Retrieved reference

', 'refs' => [ 'RetrievedReferences$member' => NULL, ], ], 'RetrievedReferences' => [ 'base' => '

list of retrieved references

', 'refs' => [ 'Citation$retrievedReferences' => NULL, 'KnowledgeBaseLookupOutput$retrievedReferences' => NULL, ], ], 'SearchType' => [ 'base' => '

Query type to be performed on data store.

', 'refs' => [ 'KnowledgeBaseVectorSearchConfiguration$overrideSearchType' => '

Override the type of query to be performed on data store

', ], ], 'ServiceQuotaExceededException' => [ 'base' => '

This exception is thrown when a request is made beyond the service quota

', 'refs' => [ 'ResponseStream$serviceQuotaExceededException' => NULL, ], ], 'SessionAttributesMap' => [ 'base' => '

Session attributes are pass through attributes passed to the action group

', 'refs' => [ 'SessionState$sessionAttributes' => '

Session Attributes

', ], ], 'SessionId' => [ 'base' => '

Identifier of the session.

', 'refs' => [ 'InvokeAgentRequest$sessionId' => '

Identifier used for the current session

', 'InvokeAgentResponse$sessionId' => '

streaming response mimetype of the model

', 'RetrieveAndGenerateRequest$sessionId' => NULL, 'RetrieveAndGenerateResponse$sessionId' => NULL, 'TracePart$sessionId' => NULL, ], ], 'SessionState' => [ 'base' => '

Session state provided

', 'refs' => [ 'InvokeAgentRequest$sessionState' => '

Session state passed by customer. Base64 encoded json string representation of SessionState.

', ], ], 'Source' => [ 'base' => '

Parsing error source

', 'refs' => [ 'RepromptResponse$source' => NULL, ], ], 'Span' => [ 'base' => '

Span of text

', 'refs' => [ 'TextResponsePart$span' => NULL, ], ], 'SpanEndInteger' => [ 'base' => NULL, 'refs' => [ 'Span$end' => '

End of span

', ], ], 'SpanStartInteger' => [ 'base' => NULL, 'refs' => [ 'Span$start' => '

Start of span

', ], ], 'StopSequences' => [ 'base' => '

List of stop sequences

', 'refs' => [ 'InferenceConfiguration$stopSequences' => NULL, ], ], 'String' => [ 'base' => NULL, 'refs' => [ 'ContentMap$key' => NULL, 'Parameter$name' => '

Name of parameter

', 'Parameter$type' => '

Type of parameter

', 'Parameter$value' => '

Value of parameter

', 'PromptSessionAttributesMap$key' => NULL, 'PromptSessionAttributesMap$value' => NULL, 'RepromptResponse$text' => '

Reprompt response text

', 'RetrievalResultContent$text' => '

Content of a retrieval result in text

', 'RetrievalResultS3Location$uri' => '

URI of S3 location

', 'RetrieveAndGenerateOutput$text' => '

Service response of the turn in text

', 'SessionAttributesMap$key' => NULL, 'SessionAttributesMap$value' => NULL, 'StopSequences$member' => NULL, 'TextResponsePart$text' => '

Response part in text

', ], ], 'Temperature' => [ 'base' => '

Controls randomness, higher values increase diversity

', 'refs' => [ 'InferenceConfiguration$temperature' => NULL, ], ], 'TextResponsePart' => [ 'base' => '

Text response part

', 'refs' => [ 'GeneratedResponsePart$textResponsePart' => NULL, ], ], 'ThrottlingException' => [ 'base' => '

This exception is thrown when the number of requests exceeds the limit

', 'refs' => [ 'ResponseStream$throttlingException' => NULL, ], ], 'TopK' => [ 'base' => '

Sample from the k most likely next tokens

', 'refs' => [ 'InferenceConfiguration$topK' => NULL, ], ], 'TopP' => [ 'base' => '

Cumulative probability cutoff for token selection

', 'refs' => [ 'InferenceConfiguration$topP' => NULL, ], ], 'Trace' => [ 'base' => '

Trace contains intermidate response for customer

', 'refs' => [ 'TracePart$trace' => NULL, ], ], 'TraceId' => [ 'base' => '

Identifier for trace

', 'refs' => [ 'FailureTrace$traceId' => NULL, 'InvocationInput$traceId' => NULL, 'ModelInvocationInput$traceId' => NULL, 'Observation$traceId' => NULL, 'PostProcessingModelInvocationOutput$traceId' => NULL, 'PreProcessingModelInvocationOutput$traceId' => NULL, 'Rationale$traceId' => NULL, ], ], 'TraceKnowledgeBaseId' => [ 'base' => '

Agent Trace Action Group Knowledge Base Id

', 'refs' => [ 'KnowledgeBaseLookupInput$knowledgeBaseId' => NULL, ], ], 'TracePart' => [ 'base' => '

Trace Part which contains intermidate response for customer

', 'refs' => [ 'ResponseStream$trace' => NULL, ], ], 'Type' => [ 'base' => '

types of observations

', 'refs' => [ 'Observation$type' => NULL, ], ], 'ValidationException' => [ 'base' => '

This exception is thrown when the request\'s input validation fails

', 'refs' => [ 'ResponseStream$validationException' => NULL, ], ], 'Verb' => [ 'base' => '

Agent Trace Action Group Action verb

', 'refs' => [ 'ActionGroupInvocationInput$verb' => NULL, ], ], ],]; diff --git a/src/data/ce/2017-10-25/api-2.json b/src/data/ce/2017-10-25/api-2.json index 32f13cb81f..357104d8ab 100644 --- a/src/data/ce/2017-10-25/api-2.json +++ b/src/data/ce/2017-10-25/api-2.json @@ -145,6 +145,19 @@ {"shape":"InvalidNextTokenException"} ] }, + "GetApproximateUsageRecords":{ + "name":"GetApproximateUsageRecords", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetApproximateUsageRecordsRequest"}, + "output":{"shape":"GetApproximateUsageRecordsResponse"}, + "errors":[ + {"shape":"LimitExceededException"}, + {"shape":"DataUnavailableException"} + ] + }, "GetCostAndUsage":{ "name":"GetCostAndUsage", "http":{ @@ -652,6 +665,18 @@ "type":"list", "member":{"shape":"AnomalySubscription"} }, + "ApproximateUsageRecordsPerService":{ + "type":"map", + "key":{"shape":"GenericString"}, + "value":{"shape":"NonNegativeLong"} + }, + "ApproximationDimension":{ + "type":"string", + "enum":[ + "SERVICE", + "RESOURCE" + ] + }, "Arn":{ "type":"string", "max":2048, @@ -1410,6 +1435,26 @@ "NextPageToken":{"shape":"NextPageToken"} } }, + "GetApproximateUsageRecordsRequest":{ + "type":"structure", + "required":[ + "Granularity", + "ApproximationDimension" + ], + "members":{ + "Granularity":{"shape":"Granularity"}, + "Services":{"shape":"UsageServices"}, + "ApproximationDimension":{"shape":"ApproximationDimension"} + } + }, + "GetApproximateUsageRecordsResponse":{ + "type":"structure", + "members":{ + "Services":{"shape":"ApproximateUsageRecordsPerService"}, + "TotalRecords":{"shape":"NonNegativeLong"}, + "LookbackPeriod":{"shape":"DateInterval"} + } + }, "GetCostAndUsageRequest":{ "type":"structure", "required":[ @@ -2069,6 +2114,10 @@ "type":"integer", "min":0 }, + "NonNegativeLong":{ + "type":"long", + "min":0 + }, "NullableNonNegativeDouble":{ "type":"double", "min":0.0 @@ -2977,6 +3026,10 @@ "EffectiveStart":{"shape":"ZonedDateTime"} } }, + "UsageServices":{ + "type":"list", + "member":{"shape":"GenericString"} + }, "UtilizationByTime":{ "type":"structure", "members":{ diff --git a/src/data/ce/2017-10-25/api-2.json.php b/src/data/ce/2017-10-25/api-2.json.php index 595847c030..7b63e5fa42 100644 --- a/src/data/ce/2017-10-25/api-2.json.php +++ b/src/data/ce/2017-10-25/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2017-10-25', 'endpointPrefix' => 'ce', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'AWS Cost Explorer', 'serviceFullName' => 'AWS Cost Explorer Service', 'serviceId' => 'Cost Explorer', 'signatureVersion' => 'v4', 'signingName' => 'ce', 'targetPrefix' => 'AWSInsightsIndexService', 'uid' => 'ce-2017-10-25', ], 'operations' => [ 'CreateAnomalyMonitor' => [ 'name' => 'CreateAnomalyMonitor', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateAnomalyMonitorRequest', ], 'output' => [ 'shape' => 'CreateAnomalyMonitorResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], ], ], 'CreateAnomalySubscription' => [ 'name' => 'CreateAnomalySubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateAnomalySubscriptionRequest', ], 'output' => [ 'shape' => 'CreateAnomalySubscriptionResponse', ], 'errors' => [ [ 'shape' => 'UnknownMonitorException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CreateCostCategoryDefinition' => [ 'name' => 'CreateCostCategoryDefinition', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCostCategoryDefinitionRequest', ], 'output' => [ 'shape' => 'CreateCostCategoryDefinitionResponse', ], 'errors' => [ [ 'shape' => 'ServiceQuotaExceededException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'DeleteAnomalyMonitor' => [ 'name' => 'DeleteAnomalyMonitor', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteAnomalyMonitorRequest', ], 'output' => [ 'shape' => 'DeleteAnomalyMonitorResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UnknownMonitorException', ], ], ], 'DeleteAnomalySubscription' => [ 'name' => 'DeleteAnomalySubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteAnomalySubscriptionRequest', ], 'output' => [ 'shape' => 'DeleteAnomalySubscriptionResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UnknownSubscriptionException', ], ], ], 'DeleteCostCategoryDefinition' => [ 'name' => 'DeleteCostCategoryDefinition', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCostCategoryDefinitionRequest', ], 'output' => [ 'shape' => 'DeleteCostCategoryDefinitionResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'DescribeCostCategoryDefinition' => [ 'name' => 'DescribeCostCategoryDefinition', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCostCategoryDefinitionRequest', ], 'output' => [ 'shape' => 'DescribeCostCategoryDefinitionResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'GetAnomalies' => [ 'name' => 'GetAnomalies', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetAnomaliesRequest', ], 'output' => [ 'shape' => 'GetAnomaliesResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetAnomalyMonitors' => [ 'name' => 'GetAnomalyMonitors', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetAnomalyMonitorsRequest', ], 'output' => [ 'shape' => 'GetAnomalyMonitorsResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UnknownMonitorException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetAnomalySubscriptions' => [ 'name' => 'GetAnomalySubscriptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetAnomalySubscriptionsRequest', ], 'output' => [ 'shape' => 'GetAnomalySubscriptionsResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UnknownSubscriptionException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetCostAndUsage' => [ 'name' => 'GetCostAndUsage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetCostAndUsageRequest', ], 'output' => [ 'shape' => 'GetCostAndUsageResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BillExpirationException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'RequestChangedException', ], ], ], 'GetCostAndUsageWithResources' => [ 'name' => 'GetCostAndUsageWithResources', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetCostAndUsageWithResourcesRequest', ], 'output' => [ 'shape' => 'GetCostAndUsageWithResourcesResponse', ], 'errors' => [ [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BillExpirationException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'RequestChangedException', ], ], ], 'GetCostCategories' => [ 'name' => 'GetCostCategories', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetCostCategoriesRequest', ], 'output' => [ 'shape' => 'GetCostCategoriesResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BillExpirationException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'RequestChangedException', ], ], ], 'GetCostForecast' => [ 'name' => 'GetCostForecast', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetCostForecastRequest', ], 'output' => [ 'shape' => 'GetCostForecastResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], ], ], 'GetDimensionValues' => [ 'name' => 'GetDimensionValues', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDimensionValuesRequest', ], 'output' => [ 'shape' => 'GetDimensionValuesResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BillExpirationException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'RequestChangedException', ], ], ], 'GetReservationCoverage' => [ 'name' => 'GetReservationCoverage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetReservationCoverageRequest', ], 'output' => [ 'shape' => 'GetReservationCoverageResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetReservationPurchaseRecommendation' => [ 'name' => 'GetReservationPurchaseRecommendation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetReservationPurchaseRecommendationRequest', ], 'output' => [ 'shape' => 'GetReservationPurchaseRecommendationResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetReservationUtilization' => [ 'name' => 'GetReservationUtilization', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetReservationUtilizationRequest', ], 'output' => [ 'shape' => 'GetReservationUtilizationResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetRightsizingRecommendation' => [ 'name' => 'GetRightsizingRecommendation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetRightsizingRecommendationRequest', ], 'output' => [ 'shape' => 'GetRightsizingRecommendationResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetSavingsPlanPurchaseRecommendationDetails' => [ 'name' => 'GetSavingsPlanPurchaseRecommendationDetails', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSavingsPlanPurchaseRecommendationDetailsRequest', ], 'output' => [ 'shape' => 'GetSavingsPlanPurchaseRecommendationDetailsResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], ], ], 'GetSavingsPlansCoverage' => [ 'name' => 'GetSavingsPlansCoverage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSavingsPlansCoverageRequest', ], 'output' => [ 'shape' => 'GetSavingsPlansCoverageResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetSavingsPlansPurchaseRecommendation' => [ 'name' => 'GetSavingsPlansPurchaseRecommendation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSavingsPlansPurchaseRecommendationRequest', ], 'output' => [ 'shape' => 'GetSavingsPlansPurchaseRecommendationResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetSavingsPlansUtilization' => [ 'name' => 'GetSavingsPlansUtilization', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSavingsPlansUtilizationRequest', ], 'output' => [ 'shape' => 'GetSavingsPlansUtilizationResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], ], ], 'GetSavingsPlansUtilizationDetails' => [ 'name' => 'GetSavingsPlansUtilizationDetails', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSavingsPlansUtilizationDetailsRequest', ], 'output' => [ 'shape' => 'GetSavingsPlansUtilizationDetailsResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetTags' => [ 'name' => 'GetTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTagsRequest', ], 'output' => [ 'shape' => 'GetTagsResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BillExpirationException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'RequestChangedException', ], ], ], 'GetUsageForecast' => [ 'name' => 'GetUsageForecast', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetUsageForecastRequest', ], 'output' => [ 'shape' => 'GetUsageForecastResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'UnresolvableUsageUnitException', ], ], ], 'ListCostAllocationTags' => [ 'name' => 'ListCostAllocationTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListCostAllocationTagsRequest', ], 'output' => [ 'shape' => 'ListCostAllocationTagsResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'ListCostCategoryDefinitions' => [ 'name' => 'ListCostCategoryDefinitions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListCostCategoryDefinitionsRequest', ], 'output' => [ 'shape' => 'ListCostCategoryDefinitionsResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], ], ], 'ListSavingsPlansPurchaseRecommendationGeneration' => [ 'name' => 'ListSavingsPlansPurchaseRecommendationGeneration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListSavingsPlansPurchaseRecommendationGenerationRequest', ], 'output' => [ 'shape' => 'ListSavingsPlansPurchaseRecommendationGenerationResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'DataUnavailableException', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListTagsForResourceRequest', ], 'output' => [ 'shape' => 'ListTagsForResourceResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'ProvideAnomalyFeedback' => [ 'name' => 'ProvideAnomalyFeedback', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ProvideAnomalyFeedbackRequest', ], 'output' => [ 'shape' => 'ProvideAnomalyFeedbackResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], ], ], 'StartSavingsPlansPurchaseRecommendationGeneration' => [ 'name' => 'StartSavingsPlansPurchaseRecommendationGeneration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartSavingsPlansPurchaseRecommendationGenerationRequest', ], 'output' => [ 'shape' => 'StartSavingsPlansPurchaseRecommendationGenerationResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ServiceQuotaExceededException', ], [ 'shape' => 'GenerationExistsException', ], [ 'shape' => 'DataUnavailableException', ], ], ], 'TagResource' => [ 'name' => 'TagResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'TagResourceRequest', ], 'output' => [ 'shape' => 'TagResourceResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'TooManyTagsException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'UntagResource' => [ 'name' => 'UntagResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UntagResourceRequest', ], 'output' => [ 'shape' => 'UntagResourceResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'UpdateAnomalyMonitor' => [ 'name' => 'UpdateAnomalyMonitor', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateAnomalyMonitorRequest', ], 'output' => [ 'shape' => 'UpdateAnomalyMonitorResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UnknownMonitorException', ], ], ], 'UpdateAnomalySubscription' => [ 'name' => 'UpdateAnomalySubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateAnomalySubscriptionRequest', ], 'output' => [ 'shape' => 'UpdateAnomalySubscriptionResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UnknownMonitorException', ], [ 'shape' => 'UnknownSubscriptionException', ], ], ], 'UpdateCostAllocationTagsStatus' => [ 'name' => 'UpdateCostAllocationTagsStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateCostAllocationTagsStatusRequest', ], 'output' => [ 'shape' => 'UpdateCostAllocationTagsStatusResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], ], ], 'UpdateCostCategoryDefinition' => [ 'name' => 'UpdateCostCategoryDefinition', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateCostCategoryDefinitionRequest', ], 'output' => [ 'shape' => 'UpdateCostCategoryDefinitionResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ServiceQuotaExceededException', ], [ 'shape' => 'LimitExceededException', ], ], ], ], 'shapes' => [ 'AccountScope' => [ 'type' => 'string', 'enum' => [ 'PAYER', 'LINKED', ], ], 'AmortizedRecurringFee' => [ 'type' => 'string', ], 'AmortizedUpfrontFee' => [ 'type' => 'string', ], 'Anomalies' => [ 'type' => 'list', 'member' => [ 'shape' => 'Anomaly', ], ], 'Anomaly' => [ 'type' => 'structure', 'required' => [ 'AnomalyId', 'AnomalyScore', 'Impact', 'MonitorArn', ], 'members' => [ 'AnomalyId' => [ 'shape' => 'GenericString', ], 'AnomalyStartDate' => [ 'shape' => 'YearMonthDay', ], 'AnomalyEndDate' => [ 'shape' => 'YearMonthDay', ], 'DimensionValue' => [ 'shape' => 'GenericString', ], 'RootCauses' => [ 'shape' => 'RootCauses', ], 'AnomalyScore' => [ 'shape' => 'AnomalyScore', ], 'Impact' => [ 'shape' => 'Impact', ], 'MonitorArn' => [ 'shape' => 'GenericString', ], 'Feedback' => [ 'shape' => 'AnomalyFeedbackType', ], ], ], 'AnomalyDateInterval' => [ 'type' => 'structure', 'required' => [ 'StartDate', ], 'members' => [ 'StartDate' => [ 'shape' => 'YearMonthDay', ], 'EndDate' => [ 'shape' => 'YearMonthDay', ], ], ], 'AnomalyFeedbackType' => [ 'type' => 'string', 'enum' => [ 'YES', 'NO', 'PLANNED_ACTIVITY', ], ], 'AnomalyMonitor' => [ 'type' => 'structure', 'required' => [ 'MonitorName', 'MonitorType', ], 'members' => [ 'MonitorArn' => [ 'shape' => 'GenericString', ], 'MonitorName' => [ 'shape' => 'GenericString', ], 'CreationDate' => [ 'shape' => 'YearMonthDay', ], 'LastUpdatedDate' => [ 'shape' => 'YearMonthDay', ], 'LastEvaluatedDate' => [ 'shape' => 'YearMonthDay', ], 'MonitorType' => [ 'shape' => 'MonitorType', ], 'MonitorDimension' => [ 'shape' => 'MonitorDimension', ], 'MonitorSpecification' => [ 'shape' => 'Expression', ], 'DimensionalValueCount' => [ 'shape' => 'NonNegativeInteger', ], ], ], 'AnomalyMonitors' => [ 'type' => 'list', 'member' => [ 'shape' => 'AnomalyMonitor', ], ], 'AnomalyScore' => [ 'type' => 'structure', 'required' => [ 'MaxScore', 'CurrentScore', ], 'members' => [ 'MaxScore' => [ 'shape' => 'GenericDouble', ], 'CurrentScore' => [ 'shape' => 'GenericDouble', ], ], ], 'AnomalySubscription' => [ 'type' => 'structure', 'required' => [ 'MonitorArnList', 'Subscribers', 'Frequency', 'SubscriptionName', ], 'members' => [ 'SubscriptionArn' => [ 'shape' => 'GenericString', ], 'AccountId' => [ 'shape' => 'GenericString', ], 'MonitorArnList' => [ 'shape' => 'MonitorArnList', ], 'Subscribers' => [ 'shape' => 'Subscribers', ], 'Threshold' => [ 'shape' => 'NullableNonNegativeDouble', 'deprecated' => true, 'deprecatedMessage' => 'Threshold has been deprecated in favor of ThresholdExpression', ], 'Frequency' => [ 'shape' => 'AnomalySubscriptionFrequency', ], 'SubscriptionName' => [ 'shape' => 'GenericString', ], 'ThresholdExpression' => [ 'shape' => 'Expression', ], ], ], 'AnomalySubscriptionFrequency' => [ 'type' => 'string', 'enum' => [ 'DAILY', 'IMMEDIATE', 'WEEKLY', ], ], 'AnomalySubscriptions' => [ 'type' => 'list', 'member' => [ 'shape' => 'AnomalySubscription', ], ], 'Arn' => [ 'type' => 'string', 'max' => 2048, 'min' => 20, 'pattern' => 'arn:aws[-a-z0-9]*:[a-z0-9]+:[-a-z0-9]*:[0-9]{12}:[-a-zA-Z0-9/:_]+', ], 'AttributeType' => [ 'type' => 'string', ], 'AttributeValue' => [ 'type' => 'string', ], 'Attributes' => [ 'type' => 'map', 'key' => [ 'shape' => 'AttributeType', ], 'value' => [ 'shape' => 'AttributeValue', ], ], 'BillExpirationException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'Context' => [ 'type' => 'string', 'enum' => [ 'COST_AND_USAGE', 'RESERVATIONS', 'SAVINGS_PLANS', ], ], 'CostAllocationTag' => [ 'type' => 'structure', 'required' => [ 'TagKey', 'Type', 'Status', ], 'members' => [ 'TagKey' => [ 'shape' => 'TagKey', ], 'Type' => [ 'shape' => 'CostAllocationTagType', ], 'Status' => [ 'shape' => 'CostAllocationTagStatus', ], 'LastUpdatedDate' => [ 'shape' => 'ZonedDateTime', ], 'LastUsedDate' => [ 'shape' => 'ZonedDateTime', ], ], ], 'CostAllocationTagKeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagKey', ], 'max' => 100, 'min' => 1, ], 'CostAllocationTagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CostAllocationTag', ], 'max' => 100, 'min' => 0, ], 'CostAllocationTagStatus' => [ 'type' => 'string', 'enum' => [ 'Active', 'Inactive', ], ], 'CostAllocationTagStatusEntry' => [ 'type' => 'structure', 'required' => [ 'TagKey', 'Status', ], 'members' => [ 'TagKey' => [ 'shape' => 'TagKey', ], 'Status' => [ 'shape' => 'CostAllocationTagStatus', ], ], ], 'CostAllocationTagStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CostAllocationTagStatusEntry', ], 'max' => 20, 'min' => 1, ], 'CostAllocationTagType' => [ 'type' => 'string', 'enum' => [ 'AWSGenerated', 'UserDefined', ], ], 'CostAllocationTagsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'CostCategory' => [ 'type' => 'structure', 'required' => [ 'CostCategoryArn', 'EffectiveStart', 'Name', 'RuleVersion', 'Rules', ], 'members' => [ 'CostCategoryArn' => [ 'shape' => 'Arn', ], 'EffectiveStart' => [ 'shape' => 'ZonedDateTime', ], 'EffectiveEnd' => [ 'shape' => 'ZonedDateTime', ], 'Name' => [ 'shape' => 'CostCategoryName', ], 'RuleVersion' => [ 'shape' => 'CostCategoryRuleVersion', ], 'Rules' => [ 'shape' => 'CostCategoryRulesList', ], 'SplitChargeRules' => [ 'shape' => 'CostCategorySplitChargeRulesList', ], 'ProcessingStatus' => [ 'shape' => 'CostCategoryProcessingStatusList', ], 'DefaultValue' => [ 'shape' => 'CostCategoryValue', ], ], ], 'CostCategoryInheritedValueDimension' => [ 'type' => 'structure', 'members' => [ 'DimensionName' => [ 'shape' => 'CostCategoryInheritedValueDimensionName', ], 'DimensionKey' => [ 'shape' => 'GenericString', ], ], ], 'CostCategoryInheritedValueDimensionName' => [ 'type' => 'string', 'enum' => [ 'LINKED_ACCOUNT_NAME', 'TAG', ], ], 'CostCategoryMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'CostCategoryName' => [ 'type' => 'string', 'max' => 50, 'min' => 1, 'pattern' => '^(?! )[\\p{L}\\p{N}\\p{Z}-_]*(? [ 'type' => 'list', 'member' => [ 'shape' => 'CostCategoryName', ], ], 'CostCategoryProcessingStatus' => [ 'type' => 'structure', 'members' => [ 'Component' => [ 'shape' => 'CostCategoryStatusComponent', ], 'Status' => [ 'shape' => 'CostCategoryStatus', ], ], ], 'CostCategoryProcessingStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CostCategoryProcessingStatus', ], ], 'CostCategoryReference' => [ 'type' => 'structure', 'members' => [ 'CostCategoryArn' => [ 'shape' => 'Arn', ], 'Name' => [ 'shape' => 'CostCategoryName', ], 'EffectiveStart' => [ 'shape' => 'ZonedDateTime', ], 'EffectiveEnd' => [ 'shape' => 'ZonedDateTime', ], 'NumberOfRules' => [ 'shape' => 'NonNegativeInteger', ], 'ProcessingStatus' => [ 'shape' => 'CostCategoryProcessingStatusList', ], 'Values' => [ 'shape' => 'CostCategoryValuesList', ], 'DefaultValue' => [ 'shape' => 'CostCategoryValue', ], ], ], 'CostCategoryReferencesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CostCategoryReference', ], ], 'CostCategoryRule' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'CostCategoryValue', ], 'Rule' => [ 'shape' => 'Expression', ], 'InheritedValue' => [ 'shape' => 'CostCategoryInheritedValueDimension', ], 'Type' => [ 'shape' => 'CostCategoryRuleType', ], ], ], 'CostCategoryRuleType' => [ 'type' => 'string', 'enum' => [ 'REGULAR', 'INHERITED_VALUE', ], ], 'CostCategoryRuleVersion' => [ 'type' => 'string', 'enum' => [ 'CostCategoryExpression.v1', ], ], 'CostCategoryRulesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CostCategoryRule', ], 'max' => 500, 'min' => 1, ], 'CostCategorySplitChargeMethod' => [ 'type' => 'string', 'enum' => [ 'FIXED', 'PROPORTIONAL', 'EVEN', ], ], 'CostCategorySplitChargeRule' => [ 'type' => 'structure', 'required' => [ 'Source', 'Targets', 'Method', ], 'members' => [ 'Source' => [ 'shape' => 'GenericString', ], 'Targets' => [ 'shape' => 'CostCategorySplitChargeRuleTargetsList', ], 'Method' => [ 'shape' => 'CostCategorySplitChargeMethod', ], 'Parameters' => [ 'shape' => 'CostCategorySplitChargeRuleParametersList', ], ], ], 'CostCategorySplitChargeRuleParameter' => [ 'type' => 'structure', 'required' => [ 'Type', 'Values', ], 'members' => [ 'Type' => [ 'shape' => 'CostCategorySplitChargeRuleParameterType', ], 'Values' => [ 'shape' => 'CostCategorySplitChargeRuleParameterValuesList', ], ], ], 'CostCategorySplitChargeRuleParameterType' => [ 'type' => 'string', 'enum' => [ 'ALLOCATION_PERCENTAGES', ], ], 'CostCategorySplitChargeRuleParameterValuesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GenericString', ], 'max' => 500, 'min' => 1, ], 'CostCategorySplitChargeRuleParametersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CostCategorySplitChargeRuleParameter', ], 'max' => 10, 'min' => 1, ], 'CostCategorySplitChargeRuleTargetsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GenericString', ], 'max' => 500, 'min' => 1, ], 'CostCategorySplitChargeRulesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CostCategorySplitChargeRule', ], 'max' => 10, 'min' => 1, ], 'CostCategoryStatus' => [ 'type' => 'string', 'enum' => [ 'PROCESSING', 'APPLIED', ], ], 'CostCategoryStatusComponent' => [ 'type' => 'string', 'enum' => [ 'COST_EXPLORER', ], ], 'CostCategoryValue' => [ 'type' => 'string', 'max' => 50, 'min' => 1, 'pattern' => '^(?! )[\\p{L}\\p{N}\\p{Z}-_]*(? [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'CostCategoryName', ], 'Values' => [ 'shape' => 'Values', ], 'MatchOptions' => [ 'shape' => 'MatchOptions', ], ], ], 'CostCategoryValuesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CostCategoryValue', ], ], 'Coverage' => [ 'type' => 'structure', 'members' => [ 'CoverageHours' => [ 'shape' => 'CoverageHours', ], 'CoverageNormalizedUnits' => [ 'shape' => 'CoverageNormalizedUnits', ], 'CoverageCost' => [ 'shape' => 'CoverageCost', ], ], ], 'CoverageByTime' => [ 'type' => 'structure', 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Groups' => [ 'shape' => 'ReservationCoverageGroups', ], 'Total' => [ 'shape' => 'Coverage', ], ], ], 'CoverageCost' => [ 'type' => 'structure', 'members' => [ 'OnDemandCost' => [ 'shape' => 'OnDemandCost', ], ], ], 'CoverageHours' => [ 'type' => 'structure', 'members' => [ 'OnDemandHours' => [ 'shape' => 'OnDemandHours', ], 'ReservedHours' => [ 'shape' => 'ReservedHours', ], 'TotalRunningHours' => [ 'shape' => 'TotalRunningHours', ], 'CoverageHoursPercentage' => [ 'shape' => 'CoverageHoursPercentage', ], ], ], 'CoverageHoursPercentage' => [ 'type' => 'string', ], 'CoverageNormalizedUnits' => [ 'type' => 'structure', 'members' => [ 'OnDemandNormalizedUnits' => [ 'shape' => 'OnDemandNormalizedUnits', ], 'ReservedNormalizedUnits' => [ 'shape' => 'ReservedNormalizedUnits', ], 'TotalRunningNormalizedUnits' => [ 'shape' => 'TotalRunningNormalizedUnits', ], 'CoverageNormalizedUnitsPercentage' => [ 'shape' => 'CoverageNormalizedUnitsPercentage', ], ], ], 'CoverageNormalizedUnitsPercentage' => [ 'type' => 'string', ], 'CoveragesByTime' => [ 'type' => 'list', 'member' => [ 'shape' => 'CoverageByTime', ], ], 'CreateAnomalyMonitorRequest' => [ 'type' => 'structure', 'required' => [ 'AnomalyMonitor', ], 'members' => [ 'AnomalyMonitor' => [ 'shape' => 'AnomalyMonitor', ], 'ResourceTags' => [ 'shape' => 'ResourceTagList', ], ], ], 'CreateAnomalyMonitorResponse' => [ 'type' => 'structure', 'required' => [ 'MonitorArn', ], 'members' => [ 'MonitorArn' => [ 'shape' => 'GenericString', ], ], ], 'CreateAnomalySubscriptionRequest' => [ 'type' => 'structure', 'required' => [ 'AnomalySubscription', ], 'members' => [ 'AnomalySubscription' => [ 'shape' => 'AnomalySubscription', ], 'ResourceTags' => [ 'shape' => 'ResourceTagList', ], ], ], 'CreateAnomalySubscriptionResponse' => [ 'type' => 'structure', 'required' => [ 'SubscriptionArn', ], 'members' => [ 'SubscriptionArn' => [ 'shape' => 'GenericString', ], ], ], 'CreateCostCategoryDefinitionRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'RuleVersion', 'Rules', ], 'members' => [ 'Name' => [ 'shape' => 'CostCategoryName', ], 'EffectiveStart' => [ 'shape' => 'ZonedDateTime', ], 'RuleVersion' => [ 'shape' => 'CostCategoryRuleVersion', ], 'Rules' => [ 'shape' => 'CostCategoryRulesList', ], 'DefaultValue' => [ 'shape' => 'CostCategoryValue', ], 'SplitChargeRules' => [ 'shape' => 'CostCategorySplitChargeRulesList', ], 'ResourceTags' => [ 'shape' => 'ResourceTagList', ], ], ], 'CreateCostCategoryDefinitionResponse' => [ 'type' => 'structure', 'members' => [ 'CostCategoryArn' => [ 'shape' => 'Arn', ], 'EffectiveStart' => [ 'shape' => 'ZonedDateTime', ], ], ], 'CurrentInstance' => [ 'type' => 'structure', 'members' => [ 'ResourceId' => [ 'shape' => 'GenericString', ], 'InstanceName' => [ 'shape' => 'GenericString', ], 'Tags' => [ 'shape' => 'TagValuesList', ], 'ResourceDetails' => [ 'shape' => 'ResourceDetails', ], 'ResourceUtilization' => [ 'shape' => 'ResourceUtilization', ], 'ReservationCoveredHoursInLookbackPeriod' => [ 'shape' => 'GenericString', ], 'SavingsPlansCoveredHoursInLookbackPeriod' => [ 'shape' => 'GenericString', ], 'OnDemandHoursInLookbackPeriod' => [ 'shape' => 'GenericString', ], 'TotalRunningHoursInLookbackPeriod' => [ 'shape' => 'GenericString', ], 'MonthlyCost' => [ 'shape' => 'GenericString', ], 'CurrencyCode' => [ 'shape' => 'GenericString', ], ], ], 'DataUnavailableException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'DateInterval' => [ 'type' => 'structure', 'required' => [ 'Start', 'End', ], 'members' => [ 'Start' => [ 'shape' => 'YearMonthDay', ], 'End' => [ 'shape' => 'YearMonthDay', ], ], ], 'DeleteAnomalyMonitorRequest' => [ 'type' => 'structure', 'required' => [ 'MonitorArn', ], 'members' => [ 'MonitorArn' => [ 'shape' => 'GenericString', ], ], ], 'DeleteAnomalyMonitorResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteAnomalySubscriptionRequest' => [ 'type' => 'structure', 'required' => [ 'SubscriptionArn', ], 'members' => [ 'SubscriptionArn' => [ 'shape' => 'GenericString', ], ], ], 'DeleteAnomalySubscriptionResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteCostCategoryDefinitionRequest' => [ 'type' => 'structure', 'required' => [ 'CostCategoryArn', ], 'members' => [ 'CostCategoryArn' => [ 'shape' => 'Arn', ], ], ], 'DeleteCostCategoryDefinitionResponse' => [ 'type' => 'structure', 'members' => [ 'CostCategoryArn' => [ 'shape' => 'Arn', ], 'EffectiveEnd' => [ 'shape' => 'ZonedDateTime', ], ], ], 'DescribeCostCategoryDefinitionRequest' => [ 'type' => 'structure', 'required' => [ 'CostCategoryArn', ], 'members' => [ 'CostCategoryArn' => [ 'shape' => 'Arn', ], 'EffectiveOn' => [ 'shape' => 'ZonedDateTime', ], ], ], 'DescribeCostCategoryDefinitionResponse' => [ 'type' => 'structure', 'members' => [ 'CostCategory' => [ 'shape' => 'CostCategory', ], ], ], 'Dimension' => [ 'type' => 'string', 'enum' => [ 'AZ', 'INSTANCE_TYPE', 'LINKED_ACCOUNT', 'LINKED_ACCOUNT_NAME', 'OPERATION', 'PURCHASE_TYPE', 'REGION', 'SERVICE', 'SERVICE_CODE', 'USAGE_TYPE', 'USAGE_TYPE_GROUP', 'RECORD_TYPE', 'OPERATING_SYSTEM', 'TENANCY', 'SCOPE', 'PLATFORM', 'SUBSCRIPTION_ID', 'LEGAL_ENTITY_NAME', 'DEPLOYMENT_OPTION', 'DATABASE_ENGINE', 'CACHE_ENGINE', 'INSTANCE_TYPE_FAMILY', 'BILLING_ENTITY', 'RESERVATION_ID', 'RESOURCE_ID', 'RIGHTSIZING_TYPE', 'SAVINGS_PLANS_TYPE', 'SAVINGS_PLAN_ARN', 'PAYMENT_OPTION', 'AGREEMENT_END_DATE_TIME_AFTER', 'AGREEMENT_END_DATE_TIME_BEFORE', 'INVOICING_ENTITY', 'ANOMALY_TOTAL_IMPACT_ABSOLUTE', 'ANOMALY_TOTAL_IMPACT_PERCENTAGE', ], ], 'DimensionValues' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'Dimension', ], 'Values' => [ 'shape' => 'Values', ], 'MatchOptions' => [ 'shape' => 'MatchOptions', ], ], ], 'DimensionValuesWithAttributes' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'Value', ], 'Attributes' => [ 'shape' => 'Attributes', ], ], ], 'DimensionValuesWithAttributesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DimensionValuesWithAttributes', ], ], 'DiskResourceUtilization' => [ 'type' => 'structure', 'members' => [ 'DiskReadOpsPerSecond' => [ 'shape' => 'GenericString', ], 'DiskWriteOpsPerSecond' => [ 'shape' => 'GenericString', ], 'DiskReadBytesPerSecond' => [ 'shape' => 'GenericString', ], 'DiskWriteBytesPerSecond' => [ 'shape' => 'GenericString', ], ], ], 'EBSResourceUtilization' => [ 'type' => 'structure', 'members' => [ 'EbsReadOpsPerSecond' => [ 'shape' => 'GenericString', ], 'EbsWriteOpsPerSecond' => [ 'shape' => 'GenericString', ], 'EbsReadBytesPerSecond' => [ 'shape' => 'GenericString', ], 'EbsWriteBytesPerSecond' => [ 'shape' => 'GenericString', ], ], ], 'EC2InstanceDetails' => [ 'type' => 'structure', 'members' => [ 'Family' => [ 'shape' => 'GenericString', ], 'InstanceType' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'AvailabilityZone' => [ 'shape' => 'GenericString', ], 'Platform' => [ 'shape' => 'GenericString', ], 'Tenancy' => [ 'shape' => 'GenericString', ], 'CurrentGeneration' => [ 'shape' => 'GenericBoolean', ], 'SizeFlexEligible' => [ 'shape' => 'GenericBoolean', ], ], ], 'EC2ResourceDetails' => [ 'type' => 'structure', 'members' => [ 'HourlyOnDemandRate' => [ 'shape' => 'GenericString', ], 'InstanceType' => [ 'shape' => 'GenericString', ], 'Platform' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'Sku' => [ 'shape' => 'GenericString', ], 'Memory' => [ 'shape' => 'GenericString', ], 'NetworkPerformance' => [ 'shape' => 'GenericString', ], 'Storage' => [ 'shape' => 'GenericString', ], 'Vcpu' => [ 'shape' => 'GenericString', ], ], ], 'EC2ResourceUtilization' => [ 'type' => 'structure', 'members' => [ 'MaxCpuUtilizationPercentage' => [ 'shape' => 'GenericString', ], 'MaxMemoryUtilizationPercentage' => [ 'shape' => 'GenericString', ], 'MaxStorageUtilizationPercentage' => [ 'shape' => 'GenericString', ], 'EBSResourceUtilization' => [ 'shape' => 'EBSResourceUtilization', ], 'DiskResourceUtilization' => [ 'shape' => 'DiskResourceUtilization', ], 'NetworkResourceUtilization' => [ 'shape' => 'NetworkResourceUtilization', ], ], ], 'EC2Specification' => [ 'type' => 'structure', 'members' => [ 'OfferingClass' => [ 'shape' => 'OfferingClass', ], ], ], 'ESInstanceDetails' => [ 'type' => 'structure', 'members' => [ 'InstanceClass' => [ 'shape' => 'GenericString', ], 'InstanceSize' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'CurrentGeneration' => [ 'shape' => 'GenericBoolean', ], 'SizeFlexEligible' => [ 'shape' => 'GenericBoolean', ], ], ], 'ElastiCacheInstanceDetails' => [ 'type' => 'structure', 'members' => [ 'Family' => [ 'shape' => 'GenericString', ], 'NodeType' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'ProductDescription' => [ 'shape' => 'GenericString', ], 'CurrentGeneration' => [ 'shape' => 'GenericBoolean', ], 'SizeFlexEligible' => [ 'shape' => 'GenericBoolean', ], ], ], 'Entity' => [ 'type' => 'string', ], 'ErrorMessage' => [ 'type' => 'string', ], 'Estimated' => [ 'type' => 'boolean', ], 'Expression' => [ 'type' => 'structure', 'members' => [ 'Or' => [ 'shape' => 'Expressions', ], 'And' => [ 'shape' => 'Expressions', ], 'Not' => [ 'shape' => 'Expression', ], 'Dimensions' => [ 'shape' => 'DimensionValues', ], 'Tags' => [ 'shape' => 'TagValues', ], 'CostCategories' => [ 'shape' => 'CostCategoryValues', ], ], ], 'Expressions' => [ 'type' => 'list', 'member' => [ 'shape' => 'Expression', ], ], 'FindingReasonCode' => [ 'type' => 'string', 'enum' => [ 'CPU_OVER_PROVISIONED', 'CPU_UNDER_PROVISIONED', 'MEMORY_OVER_PROVISIONED', 'MEMORY_UNDER_PROVISIONED', 'EBS_THROUGHPUT_OVER_PROVISIONED', 'EBS_THROUGHPUT_UNDER_PROVISIONED', 'EBS_IOPS_OVER_PROVISIONED', 'EBS_IOPS_UNDER_PROVISIONED', 'NETWORK_BANDWIDTH_OVER_PROVISIONED', 'NETWORK_BANDWIDTH_UNDER_PROVISIONED', 'NETWORK_PPS_OVER_PROVISIONED', 'NETWORK_PPS_UNDER_PROVISIONED', 'DISK_IOPS_OVER_PROVISIONED', 'DISK_IOPS_UNDER_PROVISIONED', 'DISK_THROUGHPUT_OVER_PROVISIONED', 'DISK_THROUGHPUT_UNDER_PROVISIONED', ], ], 'FindingReasonCodes' => [ 'type' => 'list', 'member' => [ 'shape' => 'FindingReasonCode', ], ], 'ForecastResult' => [ 'type' => 'structure', 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'MeanValue' => [ 'shape' => 'GenericString', ], 'PredictionIntervalLowerBound' => [ 'shape' => 'GenericString', ], 'PredictionIntervalUpperBound' => [ 'shape' => 'GenericString', ], ], ], 'ForecastResultsByTime' => [ 'type' => 'list', 'member' => [ 'shape' => 'ForecastResult', ], ], 'GenerationExistsException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'GenerationStatus' => [ 'type' => 'string', 'enum' => [ 'SUCCEEDED', 'PROCESSING', 'FAILED', ], ], 'GenerationSummary' => [ 'type' => 'structure', 'members' => [ 'RecommendationId' => [ 'shape' => 'RecommendationId', ], 'GenerationStatus' => [ 'shape' => 'GenerationStatus', ], 'GenerationStartedTime' => [ 'shape' => 'ZonedDateTime', ], 'GenerationCompletionTime' => [ 'shape' => 'ZonedDateTime', ], 'EstimatedCompletionTime' => [ 'shape' => 'ZonedDateTime', ], ], ], 'GenerationSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GenerationSummary', ], ], 'GenericBoolean' => [ 'type' => 'boolean', ], 'GenericDouble' => [ 'type' => 'double', ], 'GenericString' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, 'pattern' => '[\\S\\s]*', ], 'GetAnomaliesRequest' => [ 'type' => 'structure', 'required' => [ 'DateInterval', ], 'members' => [ 'MonitorArn' => [ 'shape' => 'GenericString', ], 'DateInterval' => [ 'shape' => 'AnomalyDateInterval', ], 'Feedback' => [ 'shape' => 'AnomalyFeedbackType', ], 'TotalImpact' => [ 'shape' => 'TotalImpactFilter', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'MaxResults' => [ 'shape' => 'PageSize', ], ], ], 'GetAnomaliesResponse' => [ 'type' => 'structure', 'required' => [ 'Anomalies', ], 'members' => [ 'Anomalies' => [ 'shape' => 'Anomalies', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetAnomalyMonitorsRequest' => [ 'type' => 'structure', 'members' => [ 'MonitorArnList' => [ 'shape' => 'Values', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'MaxResults' => [ 'shape' => 'PageSize', ], ], ], 'GetAnomalyMonitorsResponse' => [ 'type' => 'structure', 'required' => [ 'AnomalyMonitors', ], 'members' => [ 'AnomalyMonitors' => [ 'shape' => 'AnomalyMonitors', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetAnomalySubscriptionsRequest' => [ 'type' => 'structure', 'members' => [ 'SubscriptionArnList' => [ 'shape' => 'Values', ], 'MonitorArn' => [ 'shape' => 'GenericString', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'MaxResults' => [ 'shape' => 'PageSize', ], ], ], 'GetAnomalySubscriptionsResponse' => [ 'type' => 'structure', 'required' => [ 'AnomalySubscriptions', ], 'members' => [ 'AnomalySubscriptions' => [ 'shape' => 'AnomalySubscriptions', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetCostAndUsageRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', 'Granularity', 'Metrics', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Granularity' => [ 'shape' => 'Granularity', ], 'Filter' => [ 'shape' => 'Expression', ], 'Metrics' => [ 'shape' => 'MetricNames', ], 'GroupBy' => [ 'shape' => 'GroupDefinitions', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetCostAndUsageResponse' => [ 'type' => 'structure', 'members' => [ 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'GroupDefinitions' => [ 'shape' => 'GroupDefinitions', ], 'ResultsByTime' => [ 'shape' => 'ResultsByTime', ], 'DimensionValueAttributes' => [ 'shape' => 'DimensionValuesWithAttributesList', ], ], ], 'GetCostAndUsageWithResourcesRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', 'Granularity', 'Filter', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Granularity' => [ 'shape' => 'Granularity', ], 'Filter' => [ 'shape' => 'Expression', ], 'Metrics' => [ 'shape' => 'MetricNames', ], 'GroupBy' => [ 'shape' => 'GroupDefinitions', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetCostAndUsageWithResourcesResponse' => [ 'type' => 'structure', 'members' => [ 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'GroupDefinitions' => [ 'shape' => 'GroupDefinitions', ], 'ResultsByTime' => [ 'shape' => 'ResultsByTime', ], 'DimensionValueAttributes' => [ 'shape' => 'DimensionValuesWithAttributesList', ], ], ], 'GetCostCategoriesRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', ], 'members' => [ 'SearchString' => [ 'shape' => 'SearchString', ], 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'CostCategoryName' => [ 'shape' => 'CostCategoryName', ], 'Filter' => [ 'shape' => 'Expression', ], 'SortBy' => [ 'shape' => 'SortDefinitions', ], 'MaxResults' => [ 'shape' => 'MaxResults', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetCostCategoriesResponse' => [ 'type' => 'structure', 'required' => [ 'ReturnSize', 'TotalSize', ], 'members' => [ 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'CostCategoryNames' => [ 'shape' => 'CostCategoryNamesList', ], 'CostCategoryValues' => [ 'shape' => 'CostCategoryValuesList', ], 'ReturnSize' => [ 'shape' => 'PageSize', ], 'TotalSize' => [ 'shape' => 'PageSize', ], ], ], 'GetCostForecastRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', 'Metric', 'Granularity', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Metric' => [ 'shape' => 'Metric', ], 'Granularity' => [ 'shape' => 'Granularity', ], 'Filter' => [ 'shape' => 'Expression', ], 'PredictionIntervalLevel' => [ 'shape' => 'PredictionIntervalLevel', ], ], ], 'GetCostForecastResponse' => [ 'type' => 'structure', 'members' => [ 'Total' => [ 'shape' => 'MetricValue', ], 'ForecastResultsByTime' => [ 'shape' => 'ForecastResultsByTime', ], ], ], 'GetDimensionValuesRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', 'Dimension', ], 'members' => [ 'SearchString' => [ 'shape' => 'SearchString', ], 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Dimension' => [ 'shape' => 'Dimension', ], 'Context' => [ 'shape' => 'Context', ], 'Filter' => [ 'shape' => 'Expression', ], 'SortBy' => [ 'shape' => 'SortDefinitions', ], 'MaxResults' => [ 'shape' => 'MaxResults', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetDimensionValuesResponse' => [ 'type' => 'structure', 'required' => [ 'DimensionValues', 'ReturnSize', 'TotalSize', ], 'members' => [ 'DimensionValues' => [ 'shape' => 'DimensionValuesWithAttributesList', ], 'ReturnSize' => [ 'shape' => 'PageSize', ], 'TotalSize' => [ 'shape' => 'PageSize', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetReservationCoverageRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'GroupBy' => [ 'shape' => 'GroupDefinitions', ], 'Granularity' => [ 'shape' => 'Granularity', ], 'Filter' => [ 'shape' => 'Expression', ], 'Metrics' => [ 'shape' => 'MetricNames', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'SortBy' => [ 'shape' => 'SortDefinition', ], 'MaxResults' => [ 'shape' => 'MaxResults', 'box' => true, ], ], ], 'GetReservationCoverageResponse' => [ 'type' => 'structure', 'required' => [ 'CoveragesByTime', ], 'members' => [ 'CoveragesByTime' => [ 'shape' => 'CoveragesByTime', ], 'Total' => [ 'shape' => 'Coverage', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetReservationPurchaseRecommendationRequest' => [ 'type' => 'structure', 'required' => [ 'Service', ], 'members' => [ 'AccountId' => [ 'shape' => 'GenericString', ], 'Service' => [ 'shape' => 'GenericString', ], 'Filter' => [ 'shape' => 'Expression', ], 'AccountScope' => [ 'shape' => 'AccountScope', ], 'LookbackPeriodInDays' => [ 'shape' => 'LookbackPeriodInDays', ], 'TermInYears' => [ 'shape' => 'TermInYears', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', ], 'ServiceSpecification' => [ 'shape' => 'ServiceSpecification', ], 'PageSize' => [ 'shape' => 'NonNegativeInteger', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetReservationPurchaseRecommendationResponse' => [ 'type' => 'structure', 'members' => [ 'Metadata' => [ 'shape' => 'ReservationPurchaseRecommendationMetadata', ], 'Recommendations' => [ 'shape' => 'ReservationPurchaseRecommendations', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetReservationUtilizationRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'GroupBy' => [ 'shape' => 'GroupDefinitions', ], 'Granularity' => [ 'shape' => 'Granularity', ], 'Filter' => [ 'shape' => 'Expression', ], 'SortBy' => [ 'shape' => 'SortDefinition', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'MaxResults' => [ 'shape' => 'MaxResults', 'box' => true, ], ], ], 'GetReservationUtilizationResponse' => [ 'type' => 'structure', 'required' => [ 'UtilizationsByTime', ], 'members' => [ 'UtilizationsByTime' => [ 'shape' => 'UtilizationsByTime', ], 'Total' => [ 'shape' => 'ReservationAggregates', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetRightsizingRecommendationRequest' => [ 'type' => 'structure', 'required' => [ 'Service', ], 'members' => [ 'Filter' => [ 'shape' => 'Expression', ], 'Configuration' => [ 'shape' => 'RightsizingRecommendationConfiguration', ], 'Service' => [ 'shape' => 'GenericString', ], 'PageSize' => [ 'shape' => 'NonNegativeInteger', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetRightsizingRecommendationResponse' => [ 'type' => 'structure', 'members' => [ 'Metadata' => [ 'shape' => 'RightsizingRecommendationMetadata', ], 'Summary' => [ 'shape' => 'RightsizingRecommendationSummary', ], 'RightsizingRecommendations' => [ 'shape' => 'RightsizingRecommendationList', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'Configuration' => [ 'shape' => 'RightsizingRecommendationConfiguration', ], ], ], 'GetSavingsPlanPurchaseRecommendationDetailsRequest' => [ 'type' => 'structure', 'required' => [ 'RecommendationDetailId', ], 'members' => [ 'RecommendationDetailId' => [ 'shape' => 'RecommendationDetailId', ], ], ], 'GetSavingsPlanPurchaseRecommendationDetailsResponse' => [ 'type' => 'structure', 'members' => [ 'RecommendationDetailId' => [ 'shape' => 'RecommendationDetailId', ], 'RecommendationDetailData' => [ 'shape' => 'RecommendationDetailData', ], ], ], 'GetSavingsPlansCoverageRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'GroupBy' => [ 'shape' => 'GroupDefinitions', ], 'Granularity' => [ 'shape' => 'Granularity', ], 'Filter' => [ 'shape' => 'Expression', ], 'Metrics' => [ 'shape' => 'MetricNames', ], 'NextToken' => [ 'shape' => 'NextPageToken', ], 'MaxResults' => [ 'shape' => 'MaxResults', 'box' => true, ], 'SortBy' => [ 'shape' => 'SortDefinition', ], ], ], 'GetSavingsPlansCoverageResponse' => [ 'type' => 'structure', 'required' => [ 'SavingsPlansCoverages', ], 'members' => [ 'SavingsPlansCoverages' => [ 'shape' => 'SavingsPlansCoverages', ], 'NextToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetSavingsPlansPurchaseRecommendationRequest' => [ 'type' => 'structure', 'required' => [ 'SavingsPlansType', 'TermInYears', 'PaymentOption', 'LookbackPeriodInDays', ], 'members' => [ 'SavingsPlansType' => [ 'shape' => 'SupportedSavingsPlansType', ], 'TermInYears' => [ 'shape' => 'TermInYears', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', ], 'AccountScope' => [ 'shape' => 'AccountScope', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'PageSize' => [ 'shape' => 'NonNegativeInteger', ], 'LookbackPeriodInDays' => [ 'shape' => 'LookbackPeriodInDays', ], 'Filter' => [ 'shape' => 'Expression', ], ], ], 'GetSavingsPlansPurchaseRecommendationResponse' => [ 'type' => 'structure', 'members' => [ 'Metadata' => [ 'shape' => 'SavingsPlansPurchaseRecommendationMetadata', ], 'SavingsPlansPurchaseRecommendation' => [ 'shape' => 'SavingsPlansPurchaseRecommendation', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetSavingsPlansUtilizationDetailsRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Filter' => [ 'shape' => 'Expression', ], 'DataType' => [ 'shape' => 'SavingsPlansDataTypes', ], 'NextToken' => [ 'shape' => 'NextPageToken', ], 'MaxResults' => [ 'shape' => 'MaxResults', 'box' => true, ], 'SortBy' => [ 'shape' => 'SortDefinition', ], ], ], 'GetSavingsPlansUtilizationDetailsResponse' => [ 'type' => 'structure', 'required' => [ 'SavingsPlansUtilizationDetails', 'TimePeriod', ], 'members' => [ 'SavingsPlansUtilizationDetails' => [ 'shape' => 'SavingsPlansUtilizationDetails', ], 'Total' => [ 'shape' => 'SavingsPlansUtilizationAggregates', ], 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'NextToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetSavingsPlansUtilizationRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Granularity' => [ 'shape' => 'Granularity', ], 'Filter' => [ 'shape' => 'Expression', ], 'SortBy' => [ 'shape' => 'SortDefinition', ], ], ], 'GetSavingsPlansUtilizationResponse' => [ 'type' => 'structure', 'required' => [ 'Total', ], 'members' => [ 'SavingsPlansUtilizationsByTime' => [ 'shape' => 'SavingsPlansUtilizationsByTime', ], 'Total' => [ 'shape' => 'SavingsPlansUtilizationAggregates', ], ], ], 'GetTagsRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', ], 'members' => [ 'SearchString' => [ 'shape' => 'SearchString', ], 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'TagKey' => [ 'shape' => 'TagKey', ], 'Filter' => [ 'shape' => 'Expression', ], 'SortBy' => [ 'shape' => 'SortDefinitions', ], 'MaxResults' => [ 'shape' => 'MaxResults', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetTagsResponse' => [ 'type' => 'structure', 'required' => [ 'Tags', 'ReturnSize', 'TotalSize', ], 'members' => [ 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'Tags' => [ 'shape' => 'TagList', ], 'ReturnSize' => [ 'shape' => 'PageSize', ], 'TotalSize' => [ 'shape' => 'PageSize', ], ], ], 'GetUsageForecastRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', 'Metric', 'Granularity', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Metric' => [ 'shape' => 'Metric', ], 'Granularity' => [ 'shape' => 'Granularity', ], 'Filter' => [ 'shape' => 'Expression', ], 'PredictionIntervalLevel' => [ 'shape' => 'PredictionIntervalLevel', ], ], ], 'GetUsageForecastResponse' => [ 'type' => 'structure', 'members' => [ 'Total' => [ 'shape' => 'MetricValue', ], 'ForecastResultsByTime' => [ 'shape' => 'ForecastResultsByTime', ], ], ], 'Granularity' => [ 'type' => 'string', 'enum' => [ 'DAILY', 'MONTHLY', 'HOURLY', ], ], 'Group' => [ 'type' => 'structure', 'members' => [ 'Keys' => [ 'shape' => 'Keys', ], 'Metrics' => [ 'shape' => 'Metrics', ], ], ], 'GroupDefinition' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'GroupDefinitionType', ], 'Key' => [ 'shape' => 'GroupDefinitionKey', ], ], ], 'GroupDefinitionKey' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, 'pattern' => '[\\S\\s]*', ], 'GroupDefinitionType' => [ 'type' => 'string', 'enum' => [ 'DIMENSION', 'TAG', 'COST_CATEGORY', ], ], 'GroupDefinitions' => [ 'type' => 'list', 'member' => [ 'shape' => 'GroupDefinition', ], ], 'Groups' => [ 'type' => 'list', 'member' => [ 'shape' => 'Group', ], ], 'Impact' => [ 'type' => 'structure', 'required' => [ 'MaxImpact', ], 'members' => [ 'MaxImpact' => [ 'shape' => 'GenericDouble', ], 'TotalImpact' => [ 'shape' => 'GenericDouble', ], 'TotalActualSpend' => [ 'shape' => 'NullableNonNegativeDouble', ], 'TotalExpectedSpend' => [ 'shape' => 'NullableNonNegativeDouble', ], 'TotalImpactPercentage' => [ 'shape' => 'NullableNonNegativeDouble', ], ], ], 'InstanceDetails' => [ 'type' => 'structure', 'members' => [ 'EC2InstanceDetails' => [ 'shape' => 'EC2InstanceDetails', ], 'RDSInstanceDetails' => [ 'shape' => 'RDSInstanceDetails', ], 'RedshiftInstanceDetails' => [ 'shape' => 'RedshiftInstanceDetails', ], 'ElastiCacheInstanceDetails' => [ 'shape' => 'ElastiCacheInstanceDetails', ], 'ESInstanceDetails' => [ 'shape' => 'ESInstanceDetails', ], 'MemoryDBInstanceDetails' => [ 'shape' => 'MemoryDBInstanceDetails', ], ], ], 'InvalidNextTokenException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'Key' => [ 'type' => 'string', ], 'Keys' => [ 'type' => 'list', 'member' => [ 'shape' => 'Key', ], ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ListCostAllocationTagsRequest' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'CostAllocationTagStatus', ], 'TagKeys' => [ 'shape' => 'CostAllocationTagKeyList', ], 'Type' => [ 'shape' => 'CostAllocationTagType', ], 'NextToken' => [ 'shape' => 'NextPageToken', ], 'MaxResults' => [ 'shape' => 'CostAllocationTagsMaxResults', 'box' => true, ], ], ], 'ListCostAllocationTagsResponse' => [ 'type' => 'structure', 'members' => [ 'CostAllocationTags' => [ 'shape' => 'CostAllocationTagList', ], 'NextToken' => [ 'shape' => 'NextPageToken', ], ], ], 'ListCostCategoryDefinitionsRequest' => [ 'type' => 'structure', 'members' => [ 'EffectiveOn' => [ 'shape' => 'ZonedDateTime', ], 'NextToken' => [ 'shape' => 'NextPageToken', ], 'MaxResults' => [ 'shape' => 'CostCategoryMaxResults', 'box' => true, ], ], ], 'ListCostCategoryDefinitionsResponse' => [ 'type' => 'structure', 'members' => [ 'CostCategoryReferences' => [ 'shape' => 'CostCategoryReferencesList', ], 'NextToken' => [ 'shape' => 'NextPageToken', ], ], ], 'ListSavingsPlansPurchaseRecommendationGenerationRequest' => [ 'type' => 'structure', 'members' => [ 'GenerationStatus' => [ 'shape' => 'GenerationStatus', ], 'RecommendationIds' => [ 'shape' => 'RecommendationIdList', ], 'PageSize' => [ 'shape' => 'NonNegativeInteger', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'ListSavingsPlansPurchaseRecommendationGenerationResponse' => [ 'type' => 'structure', 'members' => [ 'GenerationSummaryList' => [ 'shape' => 'GenerationSummaryList', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'ListTagsForResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'Arn', ], ], ], 'ListTagsForResourceResponse' => [ 'type' => 'structure', 'members' => [ 'ResourceTags' => [ 'shape' => 'ResourceTagList', ], ], ], 'LookbackPeriodInDays' => [ 'type' => 'string', 'enum' => [ 'SEVEN_DAYS', 'THIRTY_DAYS', 'SIXTY_DAYS', ], ], 'MatchOption' => [ 'type' => 'string', 'enum' => [ 'EQUALS', 'ABSENT', 'STARTS_WITH', 'ENDS_WITH', 'CONTAINS', 'CASE_SENSITIVE', 'CASE_INSENSITIVE', 'GREATER_THAN_OR_EQUAL', ], ], 'MatchOptions' => [ 'type' => 'list', 'member' => [ 'shape' => 'MatchOption', ], ], 'MaxResults' => [ 'type' => 'integer', 'min' => 1, ], 'MemoryDBInstanceDetails' => [ 'type' => 'structure', 'members' => [ 'Family' => [ 'shape' => 'GenericString', ], 'NodeType' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'CurrentGeneration' => [ 'shape' => 'GenericBoolean', ], 'SizeFlexEligible' => [ 'shape' => 'GenericBoolean', ], ], ], 'Metric' => [ 'type' => 'string', 'enum' => [ 'BLENDED_COST', 'UNBLENDED_COST', 'AMORTIZED_COST', 'NET_UNBLENDED_COST', 'NET_AMORTIZED_COST', 'USAGE_QUANTITY', 'NORMALIZED_USAGE_AMOUNT', ], ], 'MetricAmount' => [ 'type' => 'string', ], 'MetricName' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, 'pattern' => '[\\S\\s]*', ], 'MetricNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'MetricName', ], ], 'MetricUnit' => [ 'type' => 'string', ], 'MetricValue' => [ 'type' => 'structure', 'members' => [ 'Amount' => [ 'shape' => 'MetricAmount', ], 'Unit' => [ 'shape' => 'MetricUnit', ], ], ], 'Metrics' => [ 'type' => 'map', 'key' => [ 'shape' => 'MetricName', ], 'value' => [ 'shape' => 'MetricValue', ], ], 'MetricsOverLookbackPeriod' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecommendationDetailHourlyMetrics', ], ], 'ModifyRecommendationDetail' => [ 'type' => 'structure', 'members' => [ 'TargetInstances' => [ 'shape' => 'TargetInstancesList', ], ], ], 'MonitorArnList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Arn', ], ], 'MonitorDimension' => [ 'type' => 'string', 'enum' => [ 'SERVICE', ], ], 'MonitorType' => [ 'type' => 'string', 'enum' => [ 'DIMENSIONAL', 'CUSTOM', ], ], 'NetRISavings' => [ 'type' => 'string', ], 'NetworkResourceUtilization' => [ 'type' => 'structure', 'members' => [ 'NetworkInBytesPerSecond' => [ 'shape' => 'GenericString', ], 'NetworkOutBytesPerSecond' => [ 'shape' => 'GenericString', ], 'NetworkPacketsInPerSecond' => [ 'shape' => 'GenericString', ], 'NetworkPacketsOutPerSecond' => [ 'shape' => 'GenericString', ], ], ], 'NextPageToken' => [ 'type' => 'string', 'max' => 8192, 'min' => 0, 'pattern' => '[\\S\\s]*', ], 'NonNegativeInteger' => [ 'type' => 'integer', 'min' => 0, ], 'NullableNonNegativeDouble' => [ 'type' => 'double', 'min' => 0.0, ], 'NumericOperator' => [ 'type' => 'string', 'enum' => [ 'EQUAL', 'GREATER_THAN_OR_EQUAL', 'LESS_THAN_OR_EQUAL', 'GREATER_THAN', 'LESS_THAN', 'BETWEEN', ], ], 'OfferingClass' => [ 'type' => 'string', 'enum' => [ 'STANDARD', 'CONVERTIBLE', ], ], 'OnDemandCost' => [ 'type' => 'string', ], 'OnDemandCostOfRIHoursUsed' => [ 'type' => 'string', ], 'OnDemandHours' => [ 'type' => 'string', ], 'OnDemandNormalizedUnits' => [ 'type' => 'string', ], 'PageSize' => [ 'type' => 'integer', ], 'PaymentOption' => [ 'type' => 'string', 'enum' => [ 'NO_UPFRONT', 'PARTIAL_UPFRONT', 'ALL_UPFRONT', 'LIGHT_UTILIZATION', 'MEDIUM_UTILIZATION', 'HEAVY_UTILIZATION', ], ], 'PlatformDifference' => [ 'type' => 'string', 'enum' => [ 'HYPERVISOR', 'NETWORK_INTERFACE', 'STORAGE_INTERFACE', 'INSTANCE_STORE_AVAILABILITY', 'VIRTUALIZATION_TYPE', ], ], 'PlatformDifferences' => [ 'type' => 'list', 'member' => [ 'shape' => 'PlatformDifference', ], ], 'PredictionIntervalLevel' => [ 'type' => 'integer', 'max' => 99, 'min' => 51, ], 'ProvideAnomalyFeedbackRequest' => [ 'type' => 'structure', 'required' => [ 'AnomalyId', 'Feedback', ], 'members' => [ 'AnomalyId' => [ 'shape' => 'GenericString', ], 'Feedback' => [ 'shape' => 'AnomalyFeedbackType', ], ], ], 'ProvideAnomalyFeedbackResponse' => [ 'type' => 'structure', 'required' => [ 'AnomalyId', ], 'members' => [ 'AnomalyId' => [ 'shape' => 'GenericString', ], ], ], 'PurchasedHours' => [ 'type' => 'string', ], 'PurchasedUnits' => [ 'type' => 'string', ], 'RDSInstanceDetails' => [ 'type' => 'structure', 'members' => [ 'Family' => [ 'shape' => 'GenericString', ], 'InstanceType' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'DatabaseEngine' => [ 'shape' => 'GenericString', ], 'DatabaseEdition' => [ 'shape' => 'GenericString', ], 'DeploymentOption' => [ 'shape' => 'GenericString', ], 'LicenseModel' => [ 'shape' => 'GenericString', ], 'CurrentGeneration' => [ 'shape' => 'GenericBoolean', ], 'SizeFlexEligible' => [ 'shape' => 'GenericBoolean', ], ], ], 'RICostForUnusedHours' => [ 'type' => 'string', ], 'RealizedSavings' => [ 'type' => 'string', ], 'RecommendationDetailData' => [ 'type' => 'structure', 'members' => [ 'AccountScope' => [ 'shape' => 'AccountScope', ], 'LookbackPeriodInDays' => [ 'shape' => 'LookbackPeriodInDays', ], 'SavingsPlansType' => [ 'shape' => 'SupportedSavingsPlansType', ], 'TermInYears' => [ 'shape' => 'TermInYears', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', ], 'AccountId' => [ 'shape' => 'GenericString', ], 'CurrencyCode' => [ 'shape' => 'GenericString', ], 'InstanceFamily' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'OfferingId' => [ 'shape' => 'GenericString', ], 'GenerationTimestamp' => [ 'shape' => 'ZonedDateTime', ], 'LatestUsageTimestamp' => [ 'shape' => 'ZonedDateTime', ], 'CurrentAverageHourlyOnDemandSpend' => [ 'shape' => 'GenericString', ], 'CurrentMaximumHourlyOnDemandSpend' => [ 'shape' => 'GenericString', ], 'CurrentMinimumHourlyOnDemandSpend' => [ 'shape' => 'GenericString', ], 'EstimatedAverageUtilization' => [ 'shape' => 'GenericString', ], 'EstimatedMonthlySavingsAmount' => [ 'shape' => 'GenericString', ], 'EstimatedOnDemandCost' => [ 'shape' => 'GenericString', ], 'EstimatedOnDemandCostWithCurrentCommitment' => [ 'shape' => 'GenericString', ], 'EstimatedROI' => [ 'shape' => 'GenericString', ], 'EstimatedSPCost' => [ 'shape' => 'GenericString', ], 'EstimatedSavingsAmount' => [ 'shape' => 'GenericString', ], 'EstimatedSavingsPercentage' => [ 'shape' => 'GenericString', ], 'ExistingHourlyCommitment' => [ 'shape' => 'GenericString', ], 'HourlyCommitmentToPurchase' => [ 'shape' => 'GenericString', ], 'UpfrontCost' => [ 'shape' => 'GenericString', ], 'CurrentAverageCoverage' => [ 'shape' => 'GenericString', ], 'EstimatedAverageCoverage' => [ 'shape' => 'GenericString', ], 'MetricsOverLookbackPeriod' => [ 'shape' => 'MetricsOverLookbackPeriod', ], ], ], 'RecommendationDetailHourlyMetrics' => [ 'type' => 'structure', 'members' => [ 'StartTime' => [ 'shape' => 'ZonedDateTime', ], 'EstimatedOnDemandCost' => [ 'shape' => 'GenericString', ], 'CurrentCoverage' => [ 'shape' => 'GenericString', ], 'EstimatedCoverage' => [ 'shape' => 'GenericString', ], 'EstimatedNewCommitmentUtilization' => [ 'shape' => 'GenericString', ], ], ], 'RecommendationDetailId' => [ 'type' => 'string', 'max' => 36, 'min' => 36, 'pattern' => '^[\\S\\s]{8}-[\\S\\s]{4}-[\\S\\s]{4}-[\\S\\s]{4}-[\\S\\s]{12}$', ], 'RecommendationId' => [ 'type' => 'string', 'max' => 36, 'min' => 36, 'pattern' => '^[\\S\\s]{8}-[\\S\\s]{4}-[\\S\\s]{4}-[\\S\\s]{4}-[\\S\\s]{12}$', ], 'RecommendationIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecommendationId', ], ], 'RecommendationTarget' => [ 'type' => 'string', 'enum' => [ 'SAME_INSTANCE_FAMILY', 'CROSS_INSTANCE_FAMILY', ], ], 'RedshiftInstanceDetails' => [ 'type' => 'structure', 'members' => [ 'Family' => [ 'shape' => 'GenericString', ], 'NodeType' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'CurrentGeneration' => [ 'shape' => 'GenericBoolean', ], 'SizeFlexEligible' => [ 'shape' => 'GenericBoolean', ], ], ], 'RequestChangedException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ReservationAggregates' => [ 'type' => 'structure', 'members' => [ 'UtilizationPercentage' => [ 'shape' => 'UtilizationPercentage', ], 'UtilizationPercentageInUnits' => [ 'shape' => 'UtilizationPercentageInUnits', ], 'PurchasedHours' => [ 'shape' => 'PurchasedHours', ], 'PurchasedUnits' => [ 'shape' => 'PurchasedUnits', ], 'TotalActualHours' => [ 'shape' => 'TotalActualHours', ], 'TotalActualUnits' => [ 'shape' => 'TotalActualUnits', ], 'UnusedHours' => [ 'shape' => 'UnusedHours', ], 'UnusedUnits' => [ 'shape' => 'UnusedUnits', ], 'OnDemandCostOfRIHoursUsed' => [ 'shape' => 'OnDemandCostOfRIHoursUsed', ], 'NetRISavings' => [ 'shape' => 'NetRISavings', ], 'TotalPotentialRISavings' => [ 'shape' => 'TotalPotentialRISavings', ], 'AmortizedUpfrontFee' => [ 'shape' => 'AmortizedUpfrontFee', ], 'AmortizedRecurringFee' => [ 'shape' => 'AmortizedRecurringFee', ], 'TotalAmortizedFee' => [ 'shape' => 'TotalAmortizedFee', ], 'RICostForUnusedHours' => [ 'shape' => 'RICostForUnusedHours', ], 'RealizedSavings' => [ 'shape' => 'RealizedSavings', ], 'UnrealizedSavings' => [ 'shape' => 'UnrealizedSavings', ], ], ], 'ReservationCoverageGroup' => [ 'type' => 'structure', 'members' => [ 'Attributes' => [ 'shape' => 'Attributes', ], 'Coverage' => [ 'shape' => 'Coverage', ], ], ], 'ReservationCoverageGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservationCoverageGroup', ], ], 'ReservationGroupKey' => [ 'type' => 'string', ], 'ReservationGroupValue' => [ 'type' => 'string', ], 'ReservationPurchaseRecommendation' => [ 'type' => 'structure', 'members' => [ 'AccountScope' => [ 'shape' => 'AccountScope', ], 'LookbackPeriodInDays' => [ 'shape' => 'LookbackPeriodInDays', ], 'TermInYears' => [ 'shape' => 'TermInYears', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', ], 'ServiceSpecification' => [ 'shape' => 'ServiceSpecification', ], 'RecommendationDetails' => [ 'shape' => 'ReservationPurchaseRecommendationDetails', ], 'RecommendationSummary' => [ 'shape' => 'ReservationPurchaseRecommendationSummary', ], ], ], 'ReservationPurchaseRecommendationDetail' => [ 'type' => 'structure', 'members' => [ 'AccountId' => [ 'shape' => 'GenericString', ], 'InstanceDetails' => [ 'shape' => 'InstanceDetails', ], 'RecommendedNumberOfInstancesToPurchase' => [ 'shape' => 'GenericString', ], 'RecommendedNormalizedUnitsToPurchase' => [ 'shape' => 'GenericString', ], 'MinimumNumberOfInstancesUsedPerHour' => [ 'shape' => 'GenericString', ], 'MinimumNormalizedUnitsUsedPerHour' => [ 'shape' => 'GenericString', ], 'MaximumNumberOfInstancesUsedPerHour' => [ 'shape' => 'GenericString', ], 'MaximumNormalizedUnitsUsedPerHour' => [ 'shape' => 'GenericString', ], 'AverageNumberOfInstancesUsedPerHour' => [ 'shape' => 'GenericString', ], 'AverageNormalizedUnitsUsedPerHour' => [ 'shape' => 'GenericString', ], 'AverageUtilization' => [ 'shape' => 'GenericString', ], 'EstimatedBreakEvenInMonths' => [ 'shape' => 'GenericString', ], 'CurrencyCode' => [ 'shape' => 'GenericString', ], 'EstimatedMonthlySavingsAmount' => [ 'shape' => 'GenericString', ], 'EstimatedMonthlySavingsPercentage' => [ 'shape' => 'GenericString', ], 'EstimatedMonthlyOnDemandCost' => [ 'shape' => 'GenericString', ], 'EstimatedReservationCostForLookbackPeriod' => [ 'shape' => 'GenericString', ], 'UpfrontCost' => [ 'shape' => 'GenericString', ], 'RecurringStandardMonthlyCost' => [ 'shape' => 'GenericString', ], ], ], 'ReservationPurchaseRecommendationDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservationPurchaseRecommendationDetail', ], ], 'ReservationPurchaseRecommendationMetadata' => [ 'type' => 'structure', 'members' => [ 'RecommendationId' => [ 'shape' => 'GenericString', ], 'GenerationTimestamp' => [ 'shape' => 'GenericString', ], ], ], 'ReservationPurchaseRecommendationSummary' => [ 'type' => 'structure', 'members' => [ 'TotalEstimatedMonthlySavingsAmount' => [ 'shape' => 'GenericString', ], 'TotalEstimatedMonthlySavingsPercentage' => [ 'shape' => 'GenericString', ], 'CurrencyCode' => [ 'shape' => 'GenericString', ], ], ], 'ReservationPurchaseRecommendations' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservationPurchaseRecommendation', ], ], 'ReservationUtilizationGroup' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'ReservationGroupKey', ], 'Value' => [ 'shape' => 'ReservationGroupValue', ], 'Attributes' => [ 'shape' => 'Attributes', ], 'Utilization' => [ 'shape' => 'ReservationAggregates', ], ], ], 'ReservationUtilizationGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservationUtilizationGroup', ], ], 'ReservedHours' => [ 'type' => 'string', ], 'ReservedNormalizedUnits' => [ 'type' => 'string', ], 'ResourceDetails' => [ 'type' => 'structure', 'members' => [ 'EC2ResourceDetails' => [ 'shape' => 'EC2ResourceDetails', ], ], ], 'ResourceNotFoundException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], 'ResourceName' => [ 'shape' => 'Arn', ], ], 'exception' => true, ], 'ResourceTag' => [ 'type' => 'structure', 'required' => [ 'Key', 'Value', ], 'members' => [ 'Key' => [ 'shape' => 'ResourceTagKey', ], 'Value' => [ 'shape' => 'ResourceTagValue', ], ], ], 'ResourceTagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$', ], 'ResourceTagKeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceTagKey', ], 'max' => 200, 'min' => 0, ], 'ResourceTagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceTag', ], 'max' => 200, 'min' => 0, ], 'ResourceTagValue' => [ 'type' => 'string', 'max' => 256, 'min' => 0, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$', ], 'ResourceUtilization' => [ 'type' => 'structure', 'members' => [ 'EC2ResourceUtilization' => [ 'shape' => 'EC2ResourceUtilization', ], ], ], 'ResultByTime' => [ 'type' => 'structure', 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Total' => [ 'shape' => 'Metrics', ], 'Groups' => [ 'shape' => 'Groups', ], 'Estimated' => [ 'shape' => 'Estimated', ], ], ], 'ResultsByTime' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResultByTime', ], ], 'RightsizingRecommendation' => [ 'type' => 'structure', 'members' => [ 'AccountId' => [ 'shape' => 'GenericString', ], 'CurrentInstance' => [ 'shape' => 'CurrentInstance', ], 'RightsizingType' => [ 'shape' => 'RightsizingType', ], 'ModifyRecommendationDetail' => [ 'shape' => 'ModifyRecommendationDetail', ], 'TerminateRecommendationDetail' => [ 'shape' => 'TerminateRecommendationDetail', ], 'FindingReasonCodes' => [ 'shape' => 'FindingReasonCodes', ], ], ], 'RightsizingRecommendationConfiguration' => [ 'type' => 'structure', 'required' => [ 'RecommendationTarget', 'BenefitsConsidered', ], 'members' => [ 'RecommendationTarget' => [ 'shape' => 'RecommendationTarget', ], 'BenefitsConsidered' => [ 'shape' => 'GenericBoolean', ], ], ], 'RightsizingRecommendationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RightsizingRecommendation', ], ], 'RightsizingRecommendationMetadata' => [ 'type' => 'structure', 'members' => [ 'RecommendationId' => [ 'shape' => 'GenericString', ], 'GenerationTimestamp' => [ 'shape' => 'GenericString', ], 'LookbackPeriodInDays' => [ 'shape' => 'LookbackPeriodInDays', ], 'AdditionalMetadata' => [ 'shape' => 'GenericString', ], ], ], 'RightsizingRecommendationSummary' => [ 'type' => 'structure', 'members' => [ 'TotalRecommendationCount' => [ 'shape' => 'GenericString', ], 'EstimatedTotalMonthlySavingsAmount' => [ 'shape' => 'GenericString', ], 'SavingsCurrencyCode' => [ 'shape' => 'GenericString', ], 'SavingsPercentage' => [ 'shape' => 'GenericString', ], ], ], 'RightsizingType' => [ 'type' => 'string', 'enum' => [ 'TERMINATE', 'MODIFY', ], ], 'RootCause' => [ 'type' => 'structure', 'members' => [ 'Service' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'LinkedAccount' => [ 'shape' => 'GenericString', ], 'UsageType' => [ 'shape' => 'GenericString', ], 'LinkedAccountName' => [ 'shape' => 'GenericString', ], ], ], 'RootCauses' => [ 'type' => 'list', 'member' => [ 'shape' => 'RootCause', ], ], 'SavingsPlanArn' => [ 'type' => 'string', ], 'SavingsPlansAmortizedCommitment' => [ 'type' => 'structure', 'members' => [ 'AmortizedRecurringCommitment' => [ 'shape' => 'GenericString', ], 'AmortizedUpfrontCommitment' => [ 'shape' => 'GenericString', ], 'TotalAmortizedCommitment' => [ 'shape' => 'GenericString', ], ], ], 'SavingsPlansCoverage' => [ 'type' => 'structure', 'members' => [ 'Attributes' => [ 'shape' => 'Attributes', ], 'Coverage' => [ 'shape' => 'SavingsPlansCoverageData', ], 'TimePeriod' => [ 'shape' => 'DateInterval', ], ], ], 'SavingsPlansCoverageData' => [ 'type' => 'structure', 'members' => [ 'SpendCoveredBySavingsPlans' => [ 'shape' => 'GenericString', ], 'OnDemandCost' => [ 'shape' => 'GenericString', ], 'TotalCost' => [ 'shape' => 'GenericString', ], 'CoveragePercentage' => [ 'shape' => 'GenericString', ], ], ], 'SavingsPlansCoverages' => [ 'type' => 'list', 'member' => [ 'shape' => 'SavingsPlansCoverage', ], ], 'SavingsPlansDataType' => [ 'type' => 'string', 'enum' => [ 'ATTRIBUTES', 'UTILIZATION', 'AMORTIZED_COMMITMENT', 'SAVINGS', ], ], 'SavingsPlansDataTypes' => [ 'type' => 'list', 'member' => [ 'shape' => 'SavingsPlansDataType', ], ], 'SavingsPlansDetails' => [ 'type' => 'structure', 'members' => [ 'Region' => [ 'shape' => 'GenericString', ], 'InstanceFamily' => [ 'shape' => 'GenericString', ], 'OfferingId' => [ 'shape' => 'GenericString', ], ], ], 'SavingsPlansPurchaseRecommendation' => [ 'type' => 'structure', 'members' => [ 'AccountScope' => [ 'shape' => 'AccountScope', ], 'SavingsPlansType' => [ 'shape' => 'SupportedSavingsPlansType', ], 'TermInYears' => [ 'shape' => 'TermInYears', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', ], 'LookbackPeriodInDays' => [ 'shape' => 'LookbackPeriodInDays', ], 'SavingsPlansPurchaseRecommendationDetails' => [ 'shape' => 'SavingsPlansPurchaseRecommendationDetailList', ], 'SavingsPlansPurchaseRecommendationSummary' => [ 'shape' => 'SavingsPlansPurchaseRecommendationSummary', ], ], ], 'SavingsPlansPurchaseRecommendationDetail' => [ 'type' => 'structure', 'members' => [ 'SavingsPlansDetails' => [ 'shape' => 'SavingsPlansDetails', ], 'AccountId' => [ 'shape' => 'GenericString', ], 'UpfrontCost' => [ 'shape' => 'GenericString', ], 'EstimatedROI' => [ 'shape' => 'GenericString', ], 'CurrencyCode' => [ 'shape' => 'GenericString', ], 'EstimatedSPCost' => [ 'shape' => 'GenericString', ], 'EstimatedOnDemandCost' => [ 'shape' => 'GenericString', ], 'EstimatedOnDemandCostWithCurrentCommitment' => [ 'shape' => 'GenericString', ], 'EstimatedSavingsAmount' => [ 'shape' => 'GenericString', ], 'EstimatedSavingsPercentage' => [ 'shape' => 'GenericString', ], 'HourlyCommitmentToPurchase' => [ 'shape' => 'GenericString', ], 'EstimatedAverageUtilization' => [ 'shape' => 'GenericString', ], 'EstimatedMonthlySavingsAmount' => [ 'shape' => 'GenericString', ], 'CurrentMinimumHourlyOnDemandSpend' => [ 'shape' => 'GenericString', ], 'CurrentMaximumHourlyOnDemandSpend' => [ 'shape' => 'GenericString', ], 'CurrentAverageHourlyOnDemandSpend' => [ 'shape' => 'GenericString', ], 'RecommendationDetailId' => [ 'shape' => 'RecommendationDetailId', ], ], ], 'SavingsPlansPurchaseRecommendationDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SavingsPlansPurchaseRecommendationDetail', ], ], 'SavingsPlansPurchaseRecommendationMetadata' => [ 'type' => 'structure', 'members' => [ 'RecommendationId' => [ 'shape' => 'GenericString', ], 'GenerationTimestamp' => [ 'shape' => 'GenericString', ], 'AdditionalMetadata' => [ 'shape' => 'GenericString', ], ], ], 'SavingsPlansPurchaseRecommendationSummary' => [ 'type' => 'structure', 'members' => [ 'EstimatedROI' => [ 'shape' => 'GenericString', ], 'CurrencyCode' => [ 'shape' => 'GenericString', ], 'EstimatedTotalCost' => [ 'shape' => 'GenericString', ], 'CurrentOnDemandSpend' => [ 'shape' => 'GenericString', ], 'EstimatedSavingsAmount' => [ 'shape' => 'GenericString', ], 'TotalRecommendationCount' => [ 'shape' => 'GenericString', ], 'DailyCommitmentToPurchase' => [ 'shape' => 'GenericString', ], 'HourlyCommitmentToPurchase' => [ 'shape' => 'GenericString', ], 'EstimatedSavingsPercentage' => [ 'shape' => 'GenericString', ], 'EstimatedMonthlySavingsAmount' => [ 'shape' => 'GenericString', ], 'EstimatedOnDemandCostWithCurrentCommitment' => [ 'shape' => 'GenericString', ], ], ], 'SavingsPlansSavings' => [ 'type' => 'structure', 'members' => [ 'NetSavings' => [ 'shape' => 'GenericString', ], 'OnDemandCostEquivalent' => [ 'shape' => 'GenericString', ], ], ], 'SavingsPlansUtilization' => [ 'type' => 'structure', 'members' => [ 'TotalCommitment' => [ 'shape' => 'GenericString', ], 'UsedCommitment' => [ 'shape' => 'GenericString', ], 'UnusedCommitment' => [ 'shape' => 'GenericString', ], 'UtilizationPercentage' => [ 'shape' => 'GenericString', ], ], ], 'SavingsPlansUtilizationAggregates' => [ 'type' => 'structure', 'required' => [ 'Utilization', ], 'members' => [ 'Utilization' => [ 'shape' => 'SavingsPlansUtilization', ], 'Savings' => [ 'shape' => 'SavingsPlansSavings', ], 'AmortizedCommitment' => [ 'shape' => 'SavingsPlansAmortizedCommitment', ], ], ], 'SavingsPlansUtilizationByTime' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', 'Utilization', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Utilization' => [ 'shape' => 'SavingsPlansUtilization', ], 'Savings' => [ 'shape' => 'SavingsPlansSavings', ], 'AmortizedCommitment' => [ 'shape' => 'SavingsPlansAmortizedCommitment', ], ], ], 'SavingsPlansUtilizationDetail' => [ 'type' => 'structure', 'members' => [ 'SavingsPlanArn' => [ 'shape' => 'SavingsPlanArn', ], 'Attributes' => [ 'shape' => 'Attributes', ], 'Utilization' => [ 'shape' => 'SavingsPlansUtilization', ], 'Savings' => [ 'shape' => 'SavingsPlansSavings', ], 'AmortizedCommitment' => [ 'shape' => 'SavingsPlansAmortizedCommitment', ], ], ], 'SavingsPlansUtilizationDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'SavingsPlansUtilizationDetail', ], ], 'SavingsPlansUtilizationsByTime' => [ 'type' => 'list', 'member' => [ 'shape' => 'SavingsPlansUtilizationByTime', ], ], 'SearchString' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, 'pattern' => '[\\S\\s]*', ], 'ServiceQuotaExceededException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ServiceSpecification' => [ 'type' => 'structure', 'members' => [ 'EC2Specification' => [ 'shape' => 'EC2Specification', ], ], ], 'SortDefinition' => [ 'type' => 'structure', 'required' => [ 'Key', ], 'members' => [ 'Key' => [ 'shape' => 'SortDefinitionKey', ], 'SortOrder' => [ 'shape' => 'SortOrder', ], ], ], 'SortDefinitionKey' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, 'pattern' => '[\\S\\s]*', ], 'SortDefinitions' => [ 'type' => 'list', 'member' => [ 'shape' => 'SortDefinition', ], ], 'SortOrder' => [ 'type' => 'string', 'enum' => [ 'ASCENDING', 'DESCENDING', ], ], 'StartSavingsPlansPurchaseRecommendationGenerationRequest' => [ 'type' => 'structure', 'members' => [], ], 'StartSavingsPlansPurchaseRecommendationGenerationResponse' => [ 'type' => 'structure', 'members' => [ 'RecommendationId' => [ 'shape' => 'RecommendationId', ], 'GenerationStartedTime' => [ 'shape' => 'ZonedDateTime', ], 'EstimatedCompletionTime' => [ 'shape' => 'ZonedDateTime', ], ], ], 'Subscriber' => [ 'type' => 'structure', 'members' => [ 'Address' => [ 'shape' => 'SubscriberAddress', ], 'Type' => [ 'shape' => 'SubscriberType', ], 'Status' => [ 'shape' => 'SubscriberStatus', ], ], ], 'SubscriberAddress' => [ 'type' => 'string', 'max' => 302, 'min' => 6, 'pattern' => '(^[a-zA-Z0-9.!#$%&\'*+=?^_‘{|}~-]+@[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)+$)|(^arn:(aws[a-zA-Z-]*):sns:[a-zA-Z0-9-]+:[0-9]{12}:[a-zA-Z0-9_-]+(\\.fifo)?$)', ], 'SubscriberStatus' => [ 'type' => 'string', 'enum' => [ 'CONFIRMED', 'DECLINED', ], ], 'SubscriberType' => [ 'type' => 'string', 'enum' => [ 'EMAIL', 'SNS', ], ], 'Subscribers' => [ 'type' => 'list', 'member' => [ 'shape' => 'Subscriber', ], ], 'SupportedSavingsPlansType' => [ 'type' => 'string', 'enum' => [ 'COMPUTE_SP', 'EC2_INSTANCE_SP', 'SAGEMAKER_SP', ], ], 'TagKey' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, 'pattern' => '[\\S\\s]*', ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Entity', ], ], 'TagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', 'ResourceTags', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'Arn', ], 'ResourceTags' => [ 'shape' => 'ResourceTagList', ], ], ], 'TagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'TagValues' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Values' => [ 'shape' => 'Values', ], 'MatchOptions' => [ 'shape' => 'MatchOptions', ], ], ], 'TagValuesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagValues', ], ], 'TargetInstance' => [ 'type' => 'structure', 'members' => [ 'EstimatedMonthlyCost' => [ 'shape' => 'GenericString', ], 'EstimatedMonthlySavings' => [ 'shape' => 'GenericString', ], 'CurrencyCode' => [ 'shape' => 'GenericString', ], 'DefaultTargetInstance' => [ 'shape' => 'GenericBoolean', ], 'ResourceDetails' => [ 'shape' => 'ResourceDetails', ], 'ExpectedResourceUtilization' => [ 'shape' => 'ResourceUtilization', ], 'PlatformDifferences' => [ 'shape' => 'PlatformDifferences', ], ], ], 'TargetInstancesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TargetInstance', ], ], 'TermInYears' => [ 'type' => 'string', 'enum' => [ 'ONE_YEAR', 'THREE_YEARS', ], ], 'TerminateRecommendationDetail' => [ 'type' => 'structure', 'members' => [ 'EstimatedMonthlySavings' => [ 'shape' => 'GenericString', ], 'CurrencyCode' => [ 'shape' => 'GenericString', ], ], ], 'TooManyTagsException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], 'ResourceName' => [ 'shape' => 'Arn', ], ], 'exception' => true, ], 'TotalActualHours' => [ 'type' => 'string', ], 'TotalActualUnits' => [ 'type' => 'string', ], 'TotalAmortizedFee' => [ 'type' => 'string', ], 'TotalImpactFilter' => [ 'type' => 'structure', 'required' => [ 'NumericOperator', 'StartValue', ], 'members' => [ 'NumericOperator' => [ 'shape' => 'NumericOperator', ], 'StartValue' => [ 'shape' => 'GenericDouble', ], 'EndValue' => [ 'shape' => 'GenericDouble', ], ], ], 'TotalPotentialRISavings' => [ 'type' => 'string', ], 'TotalRunningHours' => [ 'type' => 'string', ], 'TotalRunningNormalizedUnits' => [ 'type' => 'string', ], 'UnknownMonitorException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'UnknownSubscriptionException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'UnrealizedSavings' => [ 'type' => 'string', ], 'UnresolvableUsageUnitException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'UntagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', 'ResourceTagKeys', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'Arn', ], 'ResourceTagKeys' => [ 'shape' => 'ResourceTagKeyList', ], ], ], 'UntagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'UnusedHours' => [ 'type' => 'string', ], 'UnusedUnits' => [ 'type' => 'string', ], 'UpdateAnomalyMonitorRequest' => [ 'type' => 'structure', 'required' => [ 'MonitorArn', ], 'members' => [ 'MonitorArn' => [ 'shape' => 'GenericString', ], 'MonitorName' => [ 'shape' => 'GenericString', ], ], ], 'UpdateAnomalyMonitorResponse' => [ 'type' => 'structure', 'required' => [ 'MonitorArn', ], 'members' => [ 'MonitorArn' => [ 'shape' => 'GenericString', ], ], ], 'UpdateAnomalySubscriptionRequest' => [ 'type' => 'structure', 'required' => [ 'SubscriptionArn', ], 'members' => [ 'SubscriptionArn' => [ 'shape' => 'GenericString', ], 'Threshold' => [ 'shape' => 'NullableNonNegativeDouble', 'deprecated' => true, 'deprecatedMessage' => 'Threshold has been deprecated in favor of ThresholdExpression', ], 'Frequency' => [ 'shape' => 'AnomalySubscriptionFrequency', ], 'MonitorArnList' => [ 'shape' => 'MonitorArnList', ], 'Subscribers' => [ 'shape' => 'Subscribers', ], 'SubscriptionName' => [ 'shape' => 'GenericString', ], 'ThresholdExpression' => [ 'shape' => 'Expression', ], ], ], 'UpdateAnomalySubscriptionResponse' => [ 'type' => 'structure', 'required' => [ 'SubscriptionArn', ], 'members' => [ 'SubscriptionArn' => [ 'shape' => 'GenericString', ], ], ], 'UpdateCostAllocationTagsStatusError' => [ 'type' => 'structure', 'members' => [ 'TagKey' => [ 'shape' => 'TagKey', ], 'Code' => [ 'shape' => 'GenericString', ], 'Message' => [ 'shape' => 'ErrorMessage', ], ], ], 'UpdateCostAllocationTagsStatusErrors' => [ 'type' => 'list', 'member' => [ 'shape' => 'UpdateCostAllocationTagsStatusError', ], 'max' => 20, 'min' => 0, ], 'UpdateCostAllocationTagsStatusRequest' => [ 'type' => 'structure', 'required' => [ 'CostAllocationTagsStatus', ], 'members' => [ 'CostAllocationTagsStatus' => [ 'shape' => 'CostAllocationTagStatusList', ], ], ], 'UpdateCostAllocationTagsStatusResponse' => [ 'type' => 'structure', 'members' => [ 'Errors' => [ 'shape' => 'UpdateCostAllocationTagsStatusErrors', ], ], ], 'UpdateCostCategoryDefinitionRequest' => [ 'type' => 'structure', 'required' => [ 'CostCategoryArn', 'RuleVersion', 'Rules', ], 'members' => [ 'CostCategoryArn' => [ 'shape' => 'Arn', ], 'EffectiveStart' => [ 'shape' => 'ZonedDateTime', ], 'RuleVersion' => [ 'shape' => 'CostCategoryRuleVersion', ], 'Rules' => [ 'shape' => 'CostCategoryRulesList', ], 'DefaultValue' => [ 'shape' => 'CostCategoryValue', ], 'SplitChargeRules' => [ 'shape' => 'CostCategorySplitChargeRulesList', ], ], ], 'UpdateCostCategoryDefinitionResponse' => [ 'type' => 'structure', 'members' => [ 'CostCategoryArn' => [ 'shape' => 'Arn', ], 'EffectiveStart' => [ 'shape' => 'ZonedDateTime', ], ], ], 'UtilizationByTime' => [ 'type' => 'structure', 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Groups' => [ 'shape' => 'ReservationUtilizationGroups', ], 'Total' => [ 'shape' => 'ReservationAggregates', ], ], ], 'UtilizationPercentage' => [ 'type' => 'string', ], 'UtilizationPercentageInUnits' => [ 'type' => 'string', ], 'UtilizationsByTime' => [ 'type' => 'list', 'member' => [ 'shape' => 'UtilizationByTime', ], ], 'Value' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, 'pattern' => '[\\S\\s]*', ], 'Values' => [ 'type' => 'list', 'member' => [ 'shape' => 'Value', ], ], 'YearMonthDay' => [ 'type' => 'string', 'max' => 40, 'min' => 0, 'pattern' => '(\\d{4}-\\d{2}-\\d{2})(T\\d{2}:\\d{2}:\\d{2}Z)?', ], 'ZonedDateTime' => [ 'type' => 'string', 'max' => 25, 'min' => 20, 'pattern' => '^\\d{4}-\\d\\d-\\d\\dT\\d\\d:\\d\\d:\\d\\d(([+-]\\d\\d:\\d\\d)|Z)$', ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2017-10-25', 'endpointPrefix' => 'ce', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'AWS Cost Explorer', 'serviceFullName' => 'AWS Cost Explorer Service', 'serviceId' => 'Cost Explorer', 'signatureVersion' => 'v4', 'signingName' => 'ce', 'targetPrefix' => 'AWSInsightsIndexService', 'uid' => 'ce-2017-10-25', ], 'operations' => [ 'CreateAnomalyMonitor' => [ 'name' => 'CreateAnomalyMonitor', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateAnomalyMonitorRequest', ], 'output' => [ 'shape' => 'CreateAnomalyMonitorResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], ], ], 'CreateAnomalySubscription' => [ 'name' => 'CreateAnomalySubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateAnomalySubscriptionRequest', ], 'output' => [ 'shape' => 'CreateAnomalySubscriptionResponse', ], 'errors' => [ [ 'shape' => 'UnknownMonitorException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CreateCostCategoryDefinition' => [ 'name' => 'CreateCostCategoryDefinition', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCostCategoryDefinitionRequest', ], 'output' => [ 'shape' => 'CreateCostCategoryDefinitionResponse', ], 'errors' => [ [ 'shape' => 'ServiceQuotaExceededException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'DeleteAnomalyMonitor' => [ 'name' => 'DeleteAnomalyMonitor', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteAnomalyMonitorRequest', ], 'output' => [ 'shape' => 'DeleteAnomalyMonitorResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UnknownMonitorException', ], ], ], 'DeleteAnomalySubscription' => [ 'name' => 'DeleteAnomalySubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteAnomalySubscriptionRequest', ], 'output' => [ 'shape' => 'DeleteAnomalySubscriptionResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UnknownSubscriptionException', ], ], ], 'DeleteCostCategoryDefinition' => [ 'name' => 'DeleteCostCategoryDefinition', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCostCategoryDefinitionRequest', ], 'output' => [ 'shape' => 'DeleteCostCategoryDefinitionResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'DescribeCostCategoryDefinition' => [ 'name' => 'DescribeCostCategoryDefinition', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCostCategoryDefinitionRequest', ], 'output' => [ 'shape' => 'DescribeCostCategoryDefinitionResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'GetAnomalies' => [ 'name' => 'GetAnomalies', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetAnomaliesRequest', ], 'output' => [ 'shape' => 'GetAnomaliesResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetAnomalyMonitors' => [ 'name' => 'GetAnomalyMonitors', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetAnomalyMonitorsRequest', ], 'output' => [ 'shape' => 'GetAnomalyMonitorsResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UnknownMonitorException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetAnomalySubscriptions' => [ 'name' => 'GetAnomalySubscriptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetAnomalySubscriptionsRequest', ], 'output' => [ 'shape' => 'GetAnomalySubscriptionsResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UnknownSubscriptionException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetApproximateUsageRecords' => [ 'name' => 'GetApproximateUsageRecords', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetApproximateUsageRecordsRequest', ], 'output' => [ 'shape' => 'GetApproximateUsageRecordsResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], ], ], 'GetCostAndUsage' => [ 'name' => 'GetCostAndUsage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetCostAndUsageRequest', ], 'output' => [ 'shape' => 'GetCostAndUsageResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BillExpirationException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'RequestChangedException', ], ], ], 'GetCostAndUsageWithResources' => [ 'name' => 'GetCostAndUsageWithResources', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetCostAndUsageWithResourcesRequest', ], 'output' => [ 'shape' => 'GetCostAndUsageWithResourcesResponse', ], 'errors' => [ [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BillExpirationException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'RequestChangedException', ], ], ], 'GetCostCategories' => [ 'name' => 'GetCostCategories', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetCostCategoriesRequest', ], 'output' => [ 'shape' => 'GetCostCategoriesResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BillExpirationException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'RequestChangedException', ], ], ], 'GetCostForecast' => [ 'name' => 'GetCostForecast', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetCostForecastRequest', ], 'output' => [ 'shape' => 'GetCostForecastResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], ], ], 'GetDimensionValues' => [ 'name' => 'GetDimensionValues', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDimensionValuesRequest', ], 'output' => [ 'shape' => 'GetDimensionValuesResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BillExpirationException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'RequestChangedException', ], ], ], 'GetReservationCoverage' => [ 'name' => 'GetReservationCoverage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetReservationCoverageRequest', ], 'output' => [ 'shape' => 'GetReservationCoverageResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetReservationPurchaseRecommendation' => [ 'name' => 'GetReservationPurchaseRecommendation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetReservationPurchaseRecommendationRequest', ], 'output' => [ 'shape' => 'GetReservationPurchaseRecommendationResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetReservationUtilization' => [ 'name' => 'GetReservationUtilization', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetReservationUtilizationRequest', ], 'output' => [ 'shape' => 'GetReservationUtilizationResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetRightsizingRecommendation' => [ 'name' => 'GetRightsizingRecommendation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetRightsizingRecommendationRequest', ], 'output' => [ 'shape' => 'GetRightsizingRecommendationResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetSavingsPlanPurchaseRecommendationDetails' => [ 'name' => 'GetSavingsPlanPurchaseRecommendationDetails', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSavingsPlanPurchaseRecommendationDetailsRequest', ], 'output' => [ 'shape' => 'GetSavingsPlanPurchaseRecommendationDetailsResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], ], ], 'GetSavingsPlansCoverage' => [ 'name' => 'GetSavingsPlansCoverage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSavingsPlansCoverageRequest', ], 'output' => [ 'shape' => 'GetSavingsPlansCoverageResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetSavingsPlansPurchaseRecommendation' => [ 'name' => 'GetSavingsPlansPurchaseRecommendation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSavingsPlansPurchaseRecommendationRequest', ], 'output' => [ 'shape' => 'GetSavingsPlansPurchaseRecommendationResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetSavingsPlansUtilization' => [ 'name' => 'GetSavingsPlansUtilization', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSavingsPlansUtilizationRequest', ], 'output' => [ 'shape' => 'GetSavingsPlansUtilizationResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], ], ], 'GetSavingsPlansUtilizationDetails' => [ 'name' => 'GetSavingsPlansUtilizationDetails', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSavingsPlansUtilizationDetailsRequest', ], 'output' => [ 'shape' => 'GetSavingsPlansUtilizationDetailsResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'GetTags' => [ 'name' => 'GetTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTagsRequest', ], 'output' => [ 'shape' => 'GetTagsResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BillExpirationException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'RequestChangedException', ], ], ], 'GetUsageForecast' => [ 'name' => 'GetUsageForecast', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetUsageForecastRequest', ], 'output' => [ 'shape' => 'GetUsageForecastResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'DataUnavailableException', ], [ 'shape' => 'UnresolvableUsageUnitException', ], ], ], 'ListCostAllocationTags' => [ 'name' => 'ListCostAllocationTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListCostAllocationTagsRequest', ], 'output' => [ 'shape' => 'ListCostAllocationTagsResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'ListCostCategoryDefinitions' => [ 'name' => 'ListCostCategoryDefinitions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListCostCategoryDefinitionsRequest', ], 'output' => [ 'shape' => 'ListCostCategoryDefinitionsResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], ], ], 'ListSavingsPlansPurchaseRecommendationGeneration' => [ 'name' => 'ListSavingsPlansPurchaseRecommendationGeneration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListSavingsPlansPurchaseRecommendationGenerationRequest', ], 'output' => [ 'shape' => 'ListSavingsPlansPurchaseRecommendationGenerationResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'DataUnavailableException', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListTagsForResourceRequest', ], 'output' => [ 'shape' => 'ListTagsForResourceResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'ProvideAnomalyFeedback' => [ 'name' => 'ProvideAnomalyFeedback', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ProvideAnomalyFeedbackRequest', ], 'output' => [ 'shape' => 'ProvideAnomalyFeedbackResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], ], ], 'StartSavingsPlansPurchaseRecommendationGeneration' => [ 'name' => 'StartSavingsPlansPurchaseRecommendationGeneration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartSavingsPlansPurchaseRecommendationGenerationRequest', ], 'output' => [ 'shape' => 'StartSavingsPlansPurchaseRecommendationGenerationResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ServiceQuotaExceededException', ], [ 'shape' => 'GenerationExistsException', ], [ 'shape' => 'DataUnavailableException', ], ], ], 'TagResource' => [ 'name' => 'TagResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'TagResourceRequest', ], 'output' => [ 'shape' => 'TagResourceResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'TooManyTagsException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'UntagResource' => [ 'name' => 'UntagResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UntagResourceRequest', ], 'output' => [ 'shape' => 'UntagResourceResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'UpdateAnomalyMonitor' => [ 'name' => 'UpdateAnomalyMonitor', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateAnomalyMonitorRequest', ], 'output' => [ 'shape' => 'UpdateAnomalyMonitorResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UnknownMonitorException', ], ], ], 'UpdateAnomalySubscription' => [ 'name' => 'UpdateAnomalySubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateAnomalySubscriptionRequest', ], 'output' => [ 'shape' => 'UpdateAnomalySubscriptionResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UnknownMonitorException', ], [ 'shape' => 'UnknownSubscriptionException', ], ], ], 'UpdateCostAllocationTagsStatus' => [ 'name' => 'UpdateCostAllocationTagsStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateCostAllocationTagsStatusRequest', ], 'output' => [ 'shape' => 'UpdateCostAllocationTagsStatusResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], ], ], 'UpdateCostCategoryDefinition' => [ 'name' => 'UpdateCostCategoryDefinition', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateCostCategoryDefinitionRequest', ], 'output' => [ 'shape' => 'UpdateCostCategoryDefinitionResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ServiceQuotaExceededException', ], [ 'shape' => 'LimitExceededException', ], ], ], ], 'shapes' => [ 'AccountScope' => [ 'type' => 'string', 'enum' => [ 'PAYER', 'LINKED', ], ], 'AmortizedRecurringFee' => [ 'type' => 'string', ], 'AmortizedUpfrontFee' => [ 'type' => 'string', ], 'Anomalies' => [ 'type' => 'list', 'member' => [ 'shape' => 'Anomaly', ], ], 'Anomaly' => [ 'type' => 'structure', 'required' => [ 'AnomalyId', 'AnomalyScore', 'Impact', 'MonitorArn', ], 'members' => [ 'AnomalyId' => [ 'shape' => 'GenericString', ], 'AnomalyStartDate' => [ 'shape' => 'YearMonthDay', ], 'AnomalyEndDate' => [ 'shape' => 'YearMonthDay', ], 'DimensionValue' => [ 'shape' => 'GenericString', ], 'RootCauses' => [ 'shape' => 'RootCauses', ], 'AnomalyScore' => [ 'shape' => 'AnomalyScore', ], 'Impact' => [ 'shape' => 'Impact', ], 'MonitorArn' => [ 'shape' => 'GenericString', ], 'Feedback' => [ 'shape' => 'AnomalyFeedbackType', ], ], ], 'AnomalyDateInterval' => [ 'type' => 'structure', 'required' => [ 'StartDate', ], 'members' => [ 'StartDate' => [ 'shape' => 'YearMonthDay', ], 'EndDate' => [ 'shape' => 'YearMonthDay', ], ], ], 'AnomalyFeedbackType' => [ 'type' => 'string', 'enum' => [ 'YES', 'NO', 'PLANNED_ACTIVITY', ], ], 'AnomalyMonitor' => [ 'type' => 'structure', 'required' => [ 'MonitorName', 'MonitorType', ], 'members' => [ 'MonitorArn' => [ 'shape' => 'GenericString', ], 'MonitorName' => [ 'shape' => 'GenericString', ], 'CreationDate' => [ 'shape' => 'YearMonthDay', ], 'LastUpdatedDate' => [ 'shape' => 'YearMonthDay', ], 'LastEvaluatedDate' => [ 'shape' => 'YearMonthDay', ], 'MonitorType' => [ 'shape' => 'MonitorType', ], 'MonitorDimension' => [ 'shape' => 'MonitorDimension', ], 'MonitorSpecification' => [ 'shape' => 'Expression', ], 'DimensionalValueCount' => [ 'shape' => 'NonNegativeInteger', ], ], ], 'AnomalyMonitors' => [ 'type' => 'list', 'member' => [ 'shape' => 'AnomalyMonitor', ], ], 'AnomalyScore' => [ 'type' => 'structure', 'required' => [ 'MaxScore', 'CurrentScore', ], 'members' => [ 'MaxScore' => [ 'shape' => 'GenericDouble', ], 'CurrentScore' => [ 'shape' => 'GenericDouble', ], ], ], 'AnomalySubscription' => [ 'type' => 'structure', 'required' => [ 'MonitorArnList', 'Subscribers', 'Frequency', 'SubscriptionName', ], 'members' => [ 'SubscriptionArn' => [ 'shape' => 'GenericString', ], 'AccountId' => [ 'shape' => 'GenericString', ], 'MonitorArnList' => [ 'shape' => 'MonitorArnList', ], 'Subscribers' => [ 'shape' => 'Subscribers', ], 'Threshold' => [ 'shape' => 'NullableNonNegativeDouble', 'deprecated' => true, 'deprecatedMessage' => 'Threshold has been deprecated in favor of ThresholdExpression', ], 'Frequency' => [ 'shape' => 'AnomalySubscriptionFrequency', ], 'SubscriptionName' => [ 'shape' => 'GenericString', ], 'ThresholdExpression' => [ 'shape' => 'Expression', ], ], ], 'AnomalySubscriptionFrequency' => [ 'type' => 'string', 'enum' => [ 'DAILY', 'IMMEDIATE', 'WEEKLY', ], ], 'AnomalySubscriptions' => [ 'type' => 'list', 'member' => [ 'shape' => 'AnomalySubscription', ], ], 'ApproximateUsageRecordsPerService' => [ 'type' => 'map', 'key' => [ 'shape' => 'GenericString', ], 'value' => [ 'shape' => 'NonNegativeLong', ], ], 'ApproximationDimension' => [ 'type' => 'string', 'enum' => [ 'SERVICE', 'RESOURCE', ], ], 'Arn' => [ 'type' => 'string', 'max' => 2048, 'min' => 20, 'pattern' => 'arn:aws[-a-z0-9]*:[a-z0-9]+:[-a-z0-9]*:[0-9]{12}:[-a-zA-Z0-9/:_]+', ], 'AttributeType' => [ 'type' => 'string', ], 'AttributeValue' => [ 'type' => 'string', ], 'Attributes' => [ 'type' => 'map', 'key' => [ 'shape' => 'AttributeType', ], 'value' => [ 'shape' => 'AttributeValue', ], ], 'BillExpirationException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'Context' => [ 'type' => 'string', 'enum' => [ 'COST_AND_USAGE', 'RESERVATIONS', 'SAVINGS_PLANS', ], ], 'CostAllocationTag' => [ 'type' => 'structure', 'required' => [ 'TagKey', 'Type', 'Status', ], 'members' => [ 'TagKey' => [ 'shape' => 'TagKey', ], 'Type' => [ 'shape' => 'CostAllocationTagType', ], 'Status' => [ 'shape' => 'CostAllocationTagStatus', ], 'LastUpdatedDate' => [ 'shape' => 'ZonedDateTime', ], 'LastUsedDate' => [ 'shape' => 'ZonedDateTime', ], ], ], 'CostAllocationTagKeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagKey', ], 'max' => 100, 'min' => 1, ], 'CostAllocationTagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CostAllocationTag', ], 'max' => 100, 'min' => 0, ], 'CostAllocationTagStatus' => [ 'type' => 'string', 'enum' => [ 'Active', 'Inactive', ], ], 'CostAllocationTagStatusEntry' => [ 'type' => 'structure', 'required' => [ 'TagKey', 'Status', ], 'members' => [ 'TagKey' => [ 'shape' => 'TagKey', ], 'Status' => [ 'shape' => 'CostAllocationTagStatus', ], ], ], 'CostAllocationTagStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CostAllocationTagStatusEntry', ], 'max' => 20, 'min' => 1, ], 'CostAllocationTagType' => [ 'type' => 'string', 'enum' => [ 'AWSGenerated', 'UserDefined', ], ], 'CostAllocationTagsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'CostCategory' => [ 'type' => 'structure', 'required' => [ 'CostCategoryArn', 'EffectiveStart', 'Name', 'RuleVersion', 'Rules', ], 'members' => [ 'CostCategoryArn' => [ 'shape' => 'Arn', ], 'EffectiveStart' => [ 'shape' => 'ZonedDateTime', ], 'EffectiveEnd' => [ 'shape' => 'ZonedDateTime', ], 'Name' => [ 'shape' => 'CostCategoryName', ], 'RuleVersion' => [ 'shape' => 'CostCategoryRuleVersion', ], 'Rules' => [ 'shape' => 'CostCategoryRulesList', ], 'SplitChargeRules' => [ 'shape' => 'CostCategorySplitChargeRulesList', ], 'ProcessingStatus' => [ 'shape' => 'CostCategoryProcessingStatusList', ], 'DefaultValue' => [ 'shape' => 'CostCategoryValue', ], ], ], 'CostCategoryInheritedValueDimension' => [ 'type' => 'structure', 'members' => [ 'DimensionName' => [ 'shape' => 'CostCategoryInheritedValueDimensionName', ], 'DimensionKey' => [ 'shape' => 'GenericString', ], ], ], 'CostCategoryInheritedValueDimensionName' => [ 'type' => 'string', 'enum' => [ 'LINKED_ACCOUNT_NAME', 'TAG', ], ], 'CostCategoryMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'CostCategoryName' => [ 'type' => 'string', 'max' => 50, 'min' => 1, 'pattern' => '^(?! )[\\p{L}\\p{N}\\p{Z}-_]*(? [ 'type' => 'list', 'member' => [ 'shape' => 'CostCategoryName', ], ], 'CostCategoryProcessingStatus' => [ 'type' => 'structure', 'members' => [ 'Component' => [ 'shape' => 'CostCategoryStatusComponent', ], 'Status' => [ 'shape' => 'CostCategoryStatus', ], ], ], 'CostCategoryProcessingStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CostCategoryProcessingStatus', ], ], 'CostCategoryReference' => [ 'type' => 'structure', 'members' => [ 'CostCategoryArn' => [ 'shape' => 'Arn', ], 'Name' => [ 'shape' => 'CostCategoryName', ], 'EffectiveStart' => [ 'shape' => 'ZonedDateTime', ], 'EffectiveEnd' => [ 'shape' => 'ZonedDateTime', ], 'NumberOfRules' => [ 'shape' => 'NonNegativeInteger', ], 'ProcessingStatus' => [ 'shape' => 'CostCategoryProcessingStatusList', ], 'Values' => [ 'shape' => 'CostCategoryValuesList', ], 'DefaultValue' => [ 'shape' => 'CostCategoryValue', ], ], ], 'CostCategoryReferencesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CostCategoryReference', ], ], 'CostCategoryRule' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'CostCategoryValue', ], 'Rule' => [ 'shape' => 'Expression', ], 'InheritedValue' => [ 'shape' => 'CostCategoryInheritedValueDimension', ], 'Type' => [ 'shape' => 'CostCategoryRuleType', ], ], ], 'CostCategoryRuleType' => [ 'type' => 'string', 'enum' => [ 'REGULAR', 'INHERITED_VALUE', ], ], 'CostCategoryRuleVersion' => [ 'type' => 'string', 'enum' => [ 'CostCategoryExpression.v1', ], ], 'CostCategoryRulesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CostCategoryRule', ], 'max' => 500, 'min' => 1, ], 'CostCategorySplitChargeMethod' => [ 'type' => 'string', 'enum' => [ 'FIXED', 'PROPORTIONAL', 'EVEN', ], ], 'CostCategorySplitChargeRule' => [ 'type' => 'structure', 'required' => [ 'Source', 'Targets', 'Method', ], 'members' => [ 'Source' => [ 'shape' => 'GenericString', ], 'Targets' => [ 'shape' => 'CostCategorySplitChargeRuleTargetsList', ], 'Method' => [ 'shape' => 'CostCategorySplitChargeMethod', ], 'Parameters' => [ 'shape' => 'CostCategorySplitChargeRuleParametersList', ], ], ], 'CostCategorySplitChargeRuleParameter' => [ 'type' => 'structure', 'required' => [ 'Type', 'Values', ], 'members' => [ 'Type' => [ 'shape' => 'CostCategorySplitChargeRuleParameterType', ], 'Values' => [ 'shape' => 'CostCategorySplitChargeRuleParameterValuesList', ], ], ], 'CostCategorySplitChargeRuleParameterType' => [ 'type' => 'string', 'enum' => [ 'ALLOCATION_PERCENTAGES', ], ], 'CostCategorySplitChargeRuleParameterValuesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GenericString', ], 'max' => 500, 'min' => 1, ], 'CostCategorySplitChargeRuleParametersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CostCategorySplitChargeRuleParameter', ], 'max' => 10, 'min' => 1, ], 'CostCategorySplitChargeRuleTargetsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GenericString', ], 'max' => 500, 'min' => 1, ], 'CostCategorySplitChargeRulesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CostCategorySplitChargeRule', ], 'max' => 10, 'min' => 1, ], 'CostCategoryStatus' => [ 'type' => 'string', 'enum' => [ 'PROCESSING', 'APPLIED', ], ], 'CostCategoryStatusComponent' => [ 'type' => 'string', 'enum' => [ 'COST_EXPLORER', ], ], 'CostCategoryValue' => [ 'type' => 'string', 'max' => 50, 'min' => 1, 'pattern' => '^(?! )[\\p{L}\\p{N}\\p{Z}-_]*(? [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'CostCategoryName', ], 'Values' => [ 'shape' => 'Values', ], 'MatchOptions' => [ 'shape' => 'MatchOptions', ], ], ], 'CostCategoryValuesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CostCategoryValue', ], ], 'Coverage' => [ 'type' => 'structure', 'members' => [ 'CoverageHours' => [ 'shape' => 'CoverageHours', ], 'CoverageNormalizedUnits' => [ 'shape' => 'CoverageNormalizedUnits', ], 'CoverageCost' => [ 'shape' => 'CoverageCost', ], ], ], 'CoverageByTime' => [ 'type' => 'structure', 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Groups' => [ 'shape' => 'ReservationCoverageGroups', ], 'Total' => [ 'shape' => 'Coverage', ], ], ], 'CoverageCost' => [ 'type' => 'structure', 'members' => [ 'OnDemandCost' => [ 'shape' => 'OnDemandCost', ], ], ], 'CoverageHours' => [ 'type' => 'structure', 'members' => [ 'OnDemandHours' => [ 'shape' => 'OnDemandHours', ], 'ReservedHours' => [ 'shape' => 'ReservedHours', ], 'TotalRunningHours' => [ 'shape' => 'TotalRunningHours', ], 'CoverageHoursPercentage' => [ 'shape' => 'CoverageHoursPercentage', ], ], ], 'CoverageHoursPercentage' => [ 'type' => 'string', ], 'CoverageNormalizedUnits' => [ 'type' => 'structure', 'members' => [ 'OnDemandNormalizedUnits' => [ 'shape' => 'OnDemandNormalizedUnits', ], 'ReservedNormalizedUnits' => [ 'shape' => 'ReservedNormalizedUnits', ], 'TotalRunningNormalizedUnits' => [ 'shape' => 'TotalRunningNormalizedUnits', ], 'CoverageNormalizedUnitsPercentage' => [ 'shape' => 'CoverageNormalizedUnitsPercentage', ], ], ], 'CoverageNormalizedUnitsPercentage' => [ 'type' => 'string', ], 'CoveragesByTime' => [ 'type' => 'list', 'member' => [ 'shape' => 'CoverageByTime', ], ], 'CreateAnomalyMonitorRequest' => [ 'type' => 'structure', 'required' => [ 'AnomalyMonitor', ], 'members' => [ 'AnomalyMonitor' => [ 'shape' => 'AnomalyMonitor', ], 'ResourceTags' => [ 'shape' => 'ResourceTagList', ], ], ], 'CreateAnomalyMonitorResponse' => [ 'type' => 'structure', 'required' => [ 'MonitorArn', ], 'members' => [ 'MonitorArn' => [ 'shape' => 'GenericString', ], ], ], 'CreateAnomalySubscriptionRequest' => [ 'type' => 'structure', 'required' => [ 'AnomalySubscription', ], 'members' => [ 'AnomalySubscription' => [ 'shape' => 'AnomalySubscription', ], 'ResourceTags' => [ 'shape' => 'ResourceTagList', ], ], ], 'CreateAnomalySubscriptionResponse' => [ 'type' => 'structure', 'required' => [ 'SubscriptionArn', ], 'members' => [ 'SubscriptionArn' => [ 'shape' => 'GenericString', ], ], ], 'CreateCostCategoryDefinitionRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'RuleVersion', 'Rules', ], 'members' => [ 'Name' => [ 'shape' => 'CostCategoryName', ], 'EffectiveStart' => [ 'shape' => 'ZonedDateTime', ], 'RuleVersion' => [ 'shape' => 'CostCategoryRuleVersion', ], 'Rules' => [ 'shape' => 'CostCategoryRulesList', ], 'DefaultValue' => [ 'shape' => 'CostCategoryValue', ], 'SplitChargeRules' => [ 'shape' => 'CostCategorySplitChargeRulesList', ], 'ResourceTags' => [ 'shape' => 'ResourceTagList', ], ], ], 'CreateCostCategoryDefinitionResponse' => [ 'type' => 'structure', 'members' => [ 'CostCategoryArn' => [ 'shape' => 'Arn', ], 'EffectiveStart' => [ 'shape' => 'ZonedDateTime', ], ], ], 'CurrentInstance' => [ 'type' => 'structure', 'members' => [ 'ResourceId' => [ 'shape' => 'GenericString', ], 'InstanceName' => [ 'shape' => 'GenericString', ], 'Tags' => [ 'shape' => 'TagValuesList', ], 'ResourceDetails' => [ 'shape' => 'ResourceDetails', ], 'ResourceUtilization' => [ 'shape' => 'ResourceUtilization', ], 'ReservationCoveredHoursInLookbackPeriod' => [ 'shape' => 'GenericString', ], 'SavingsPlansCoveredHoursInLookbackPeriod' => [ 'shape' => 'GenericString', ], 'OnDemandHoursInLookbackPeriod' => [ 'shape' => 'GenericString', ], 'TotalRunningHoursInLookbackPeriod' => [ 'shape' => 'GenericString', ], 'MonthlyCost' => [ 'shape' => 'GenericString', ], 'CurrencyCode' => [ 'shape' => 'GenericString', ], ], ], 'DataUnavailableException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'DateInterval' => [ 'type' => 'structure', 'required' => [ 'Start', 'End', ], 'members' => [ 'Start' => [ 'shape' => 'YearMonthDay', ], 'End' => [ 'shape' => 'YearMonthDay', ], ], ], 'DeleteAnomalyMonitorRequest' => [ 'type' => 'structure', 'required' => [ 'MonitorArn', ], 'members' => [ 'MonitorArn' => [ 'shape' => 'GenericString', ], ], ], 'DeleteAnomalyMonitorResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteAnomalySubscriptionRequest' => [ 'type' => 'structure', 'required' => [ 'SubscriptionArn', ], 'members' => [ 'SubscriptionArn' => [ 'shape' => 'GenericString', ], ], ], 'DeleteAnomalySubscriptionResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteCostCategoryDefinitionRequest' => [ 'type' => 'structure', 'required' => [ 'CostCategoryArn', ], 'members' => [ 'CostCategoryArn' => [ 'shape' => 'Arn', ], ], ], 'DeleteCostCategoryDefinitionResponse' => [ 'type' => 'structure', 'members' => [ 'CostCategoryArn' => [ 'shape' => 'Arn', ], 'EffectiveEnd' => [ 'shape' => 'ZonedDateTime', ], ], ], 'DescribeCostCategoryDefinitionRequest' => [ 'type' => 'structure', 'required' => [ 'CostCategoryArn', ], 'members' => [ 'CostCategoryArn' => [ 'shape' => 'Arn', ], 'EffectiveOn' => [ 'shape' => 'ZonedDateTime', ], ], ], 'DescribeCostCategoryDefinitionResponse' => [ 'type' => 'structure', 'members' => [ 'CostCategory' => [ 'shape' => 'CostCategory', ], ], ], 'Dimension' => [ 'type' => 'string', 'enum' => [ 'AZ', 'INSTANCE_TYPE', 'LINKED_ACCOUNT', 'LINKED_ACCOUNT_NAME', 'OPERATION', 'PURCHASE_TYPE', 'REGION', 'SERVICE', 'SERVICE_CODE', 'USAGE_TYPE', 'USAGE_TYPE_GROUP', 'RECORD_TYPE', 'OPERATING_SYSTEM', 'TENANCY', 'SCOPE', 'PLATFORM', 'SUBSCRIPTION_ID', 'LEGAL_ENTITY_NAME', 'DEPLOYMENT_OPTION', 'DATABASE_ENGINE', 'CACHE_ENGINE', 'INSTANCE_TYPE_FAMILY', 'BILLING_ENTITY', 'RESERVATION_ID', 'RESOURCE_ID', 'RIGHTSIZING_TYPE', 'SAVINGS_PLANS_TYPE', 'SAVINGS_PLAN_ARN', 'PAYMENT_OPTION', 'AGREEMENT_END_DATE_TIME_AFTER', 'AGREEMENT_END_DATE_TIME_BEFORE', 'INVOICING_ENTITY', 'ANOMALY_TOTAL_IMPACT_ABSOLUTE', 'ANOMALY_TOTAL_IMPACT_PERCENTAGE', ], ], 'DimensionValues' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'Dimension', ], 'Values' => [ 'shape' => 'Values', ], 'MatchOptions' => [ 'shape' => 'MatchOptions', ], ], ], 'DimensionValuesWithAttributes' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'Value', ], 'Attributes' => [ 'shape' => 'Attributes', ], ], ], 'DimensionValuesWithAttributesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DimensionValuesWithAttributes', ], ], 'DiskResourceUtilization' => [ 'type' => 'structure', 'members' => [ 'DiskReadOpsPerSecond' => [ 'shape' => 'GenericString', ], 'DiskWriteOpsPerSecond' => [ 'shape' => 'GenericString', ], 'DiskReadBytesPerSecond' => [ 'shape' => 'GenericString', ], 'DiskWriteBytesPerSecond' => [ 'shape' => 'GenericString', ], ], ], 'EBSResourceUtilization' => [ 'type' => 'structure', 'members' => [ 'EbsReadOpsPerSecond' => [ 'shape' => 'GenericString', ], 'EbsWriteOpsPerSecond' => [ 'shape' => 'GenericString', ], 'EbsReadBytesPerSecond' => [ 'shape' => 'GenericString', ], 'EbsWriteBytesPerSecond' => [ 'shape' => 'GenericString', ], ], ], 'EC2InstanceDetails' => [ 'type' => 'structure', 'members' => [ 'Family' => [ 'shape' => 'GenericString', ], 'InstanceType' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'AvailabilityZone' => [ 'shape' => 'GenericString', ], 'Platform' => [ 'shape' => 'GenericString', ], 'Tenancy' => [ 'shape' => 'GenericString', ], 'CurrentGeneration' => [ 'shape' => 'GenericBoolean', ], 'SizeFlexEligible' => [ 'shape' => 'GenericBoolean', ], ], ], 'EC2ResourceDetails' => [ 'type' => 'structure', 'members' => [ 'HourlyOnDemandRate' => [ 'shape' => 'GenericString', ], 'InstanceType' => [ 'shape' => 'GenericString', ], 'Platform' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'Sku' => [ 'shape' => 'GenericString', ], 'Memory' => [ 'shape' => 'GenericString', ], 'NetworkPerformance' => [ 'shape' => 'GenericString', ], 'Storage' => [ 'shape' => 'GenericString', ], 'Vcpu' => [ 'shape' => 'GenericString', ], ], ], 'EC2ResourceUtilization' => [ 'type' => 'structure', 'members' => [ 'MaxCpuUtilizationPercentage' => [ 'shape' => 'GenericString', ], 'MaxMemoryUtilizationPercentage' => [ 'shape' => 'GenericString', ], 'MaxStorageUtilizationPercentage' => [ 'shape' => 'GenericString', ], 'EBSResourceUtilization' => [ 'shape' => 'EBSResourceUtilization', ], 'DiskResourceUtilization' => [ 'shape' => 'DiskResourceUtilization', ], 'NetworkResourceUtilization' => [ 'shape' => 'NetworkResourceUtilization', ], ], ], 'EC2Specification' => [ 'type' => 'structure', 'members' => [ 'OfferingClass' => [ 'shape' => 'OfferingClass', ], ], ], 'ESInstanceDetails' => [ 'type' => 'structure', 'members' => [ 'InstanceClass' => [ 'shape' => 'GenericString', ], 'InstanceSize' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'CurrentGeneration' => [ 'shape' => 'GenericBoolean', ], 'SizeFlexEligible' => [ 'shape' => 'GenericBoolean', ], ], ], 'ElastiCacheInstanceDetails' => [ 'type' => 'structure', 'members' => [ 'Family' => [ 'shape' => 'GenericString', ], 'NodeType' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'ProductDescription' => [ 'shape' => 'GenericString', ], 'CurrentGeneration' => [ 'shape' => 'GenericBoolean', ], 'SizeFlexEligible' => [ 'shape' => 'GenericBoolean', ], ], ], 'Entity' => [ 'type' => 'string', ], 'ErrorMessage' => [ 'type' => 'string', ], 'Estimated' => [ 'type' => 'boolean', ], 'Expression' => [ 'type' => 'structure', 'members' => [ 'Or' => [ 'shape' => 'Expressions', ], 'And' => [ 'shape' => 'Expressions', ], 'Not' => [ 'shape' => 'Expression', ], 'Dimensions' => [ 'shape' => 'DimensionValues', ], 'Tags' => [ 'shape' => 'TagValues', ], 'CostCategories' => [ 'shape' => 'CostCategoryValues', ], ], ], 'Expressions' => [ 'type' => 'list', 'member' => [ 'shape' => 'Expression', ], ], 'FindingReasonCode' => [ 'type' => 'string', 'enum' => [ 'CPU_OVER_PROVISIONED', 'CPU_UNDER_PROVISIONED', 'MEMORY_OVER_PROVISIONED', 'MEMORY_UNDER_PROVISIONED', 'EBS_THROUGHPUT_OVER_PROVISIONED', 'EBS_THROUGHPUT_UNDER_PROVISIONED', 'EBS_IOPS_OVER_PROVISIONED', 'EBS_IOPS_UNDER_PROVISIONED', 'NETWORK_BANDWIDTH_OVER_PROVISIONED', 'NETWORK_BANDWIDTH_UNDER_PROVISIONED', 'NETWORK_PPS_OVER_PROVISIONED', 'NETWORK_PPS_UNDER_PROVISIONED', 'DISK_IOPS_OVER_PROVISIONED', 'DISK_IOPS_UNDER_PROVISIONED', 'DISK_THROUGHPUT_OVER_PROVISIONED', 'DISK_THROUGHPUT_UNDER_PROVISIONED', ], ], 'FindingReasonCodes' => [ 'type' => 'list', 'member' => [ 'shape' => 'FindingReasonCode', ], ], 'ForecastResult' => [ 'type' => 'structure', 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'MeanValue' => [ 'shape' => 'GenericString', ], 'PredictionIntervalLowerBound' => [ 'shape' => 'GenericString', ], 'PredictionIntervalUpperBound' => [ 'shape' => 'GenericString', ], ], ], 'ForecastResultsByTime' => [ 'type' => 'list', 'member' => [ 'shape' => 'ForecastResult', ], ], 'GenerationExistsException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'GenerationStatus' => [ 'type' => 'string', 'enum' => [ 'SUCCEEDED', 'PROCESSING', 'FAILED', ], ], 'GenerationSummary' => [ 'type' => 'structure', 'members' => [ 'RecommendationId' => [ 'shape' => 'RecommendationId', ], 'GenerationStatus' => [ 'shape' => 'GenerationStatus', ], 'GenerationStartedTime' => [ 'shape' => 'ZonedDateTime', ], 'GenerationCompletionTime' => [ 'shape' => 'ZonedDateTime', ], 'EstimatedCompletionTime' => [ 'shape' => 'ZonedDateTime', ], ], ], 'GenerationSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GenerationSummary', ], ], 'GenericBoolean' => [ 'type' => 'boolean', ], 'GenericDouble' => [ 'type' => 'double', ], 'GenericString' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, 'pattern' => '[\\S\\s]*', ], 'GetAnomaliesRequest' => [ 'type' => 'structure', 'required' => [ 'DateInterval', ], 'members' => [ 'MonitorArn' => [ 'shape' => 'GenericString', ], 'DateInterval' => [ 'shape' => 'AnomalyDateInterval', ], 'Feedback' => [ 'shape' => 'AnomalyFeedbackType', ], 'TotalImpact' => [ 'shape' => 'TotalImpactFilter', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'MaxResults' => [ 'shape' => 'PageSize', ], ], ], 'GetAnomaliesResponse' => [ 'type' => 'structure', 'required' => [ 'Anomalies', ], 'members' => [ 'Anomalies' => [ 'shape' => 'Anomalies', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetAnomalyMonitorsRequest' => [ 'type' => 'structure', 'members' => [ 'MonitorArnList' => [ 'shape' => 'Values', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'MaxResults' => [ 'shape' => 'PageSize', ], ], ], 'GetAnomalyMonitorsResponse' => [ 'type' => 'structure', 'required' => [ 'AnomalyMonitors', ], 'members' => [ 'AnomalyMonitors' => [ 'shape' => 'AnomalyMonitors', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetAnomalySubscriptionsRequest' => [ 'type' => 'structure', 'members' => [ 'SubscriptionArnList' => [ 'shape' => 'Values', ], 'MonitorArn' => [ 'shape' => 'GenericString', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'MaxResults' => [ 'shape' => 'PageSize', ], ], ], 'GetAnomalySubscriptionsResponse' => [ 'type' => 'structure', 'required' => [ 'AnomalySubscriptions', ], 'members' => [ 'AnomalySubscriptions' => [ 'shape' => 'AnomalySubscriptions', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetApproximateUsageRecordsRequest' => [ 'type' => 'structure', 'required' => [ 'Granularity', 'ApproximationDimension', ], 'members' => [ 'Granularity' => [ 'shape' => 'Granularity', ], 'Services' => [ 'shape' => 'UsageServices', ], 'ApproximationDimension' => [ 'shape' => 'ApproximationDimension', ], ], ], 'GetApproximateUsageRecordsResponse' => [ 'type' => 'structure', 'members' => [ 'Services' => [ 'shape' => 'ApproximateUsageRecordsPerService', ], 'TotalRecords' => [ 'shape' => 'NonNegativeLong', ], 'LookbackPeriod' => [ 'shape' => 'DateInterval', ], ], ], 'GetCostAndUsageRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', 'Granularity', 'Metrics', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Granularity' => [ 'shape' => 'Granularity', ], 'Filter' => [ 'shape' => 'Expression', ], 'Metrics' => [ 'shape' => 'MetricNames', ], 'GroupBy' => [ 'shape' => 'GroupDefinitions', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetCostAndUsageResponse' => [ 'type' => 'structure', 'members' => [ 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'GroupDefinitions' => [ 'shape' => 'GroupDefinitions', ], 'ResultsByTime' => [ 'shape' => 'ResultsByTime', ], 'DimensionValueAttributes' => [ 'shape' => 'DimensionValuesWithAttributesList', ], ], ], 'GetCostAndUsageWithResourcesRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', 'Granularity', 'Filter', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Granularity' => [ 'shape' => 'Granularity', ], 'Filter' => [ 'shape' => 'Expression', ], 'Metrics' => [ 'shape' => 'MetricNames', ], 'GroupBy' => [ 'shape' => 'GroupDefinitions', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetCostAndUsageWithResourcesResponse' => [ 'type' => 'structure', 'members' => [ 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'GroupDefinitions' => [ 'shape' => 'GroupDefinitions', ], 'ResultsByTime' => [ 'shape' => 'ResultsByTime', ], 'DimensionValueAttributes' => [ 'shape' => 'DimensionValuesWithAttributesList', ], ], ], 'GetCostCategoriesRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', ], 'members' => [ 'SearchString' => [ 'shape' => 'SearchString', ], 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'CostCategoryName' => [ 'shape' => 'CostCategoryName', ], 'Filter' => [ 'shape' => 'Expression', ], 'SortBy' => [ 'shape' => 'SortDefinitions', ], 'MaxResults' => [ 'shape' => 'MaxResults', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetCostCategoriesResponse' => [ 'type' => 'structure', 'required' => [ 'ReturnSize', 'TotalSize', ], 'members' => [ 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'CostCategoryNames' => [ 'shape' => 'CostCategoryNamesList', ], 'CostCategoryValues' => [ 'shape' => 'CostCategoryValuesList', ], 'ReturnSize' => [ 'shape' => 'PageSize', ], 'TotalSize' => [ 'shape' => 'PageSize', ], ], ], 'GetCostForecastRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', 'Metric', 'Granularity', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Metric' => [ 'shape' => 'Metric', ], 'Granularity' => [ 'shape' => 'Granularity', ], 'Filter' => [ 'shape' => 'Expression', ], 'PredictionIntervalLevel' => [ 'shape' => 'PredictionIntervalLevel', ], ], ], 'GetCostForecastResponse' => [ 'type' => 'structure', 'members' => [ 'Total' => [ 'shape' => 'MetricValue', ], 'ForecastResultsByTime' => [ 'shape' => 'ForecastResultsByTime', ], ], ], 'GetDimensionValuesRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', 'Dimension', ], 'members' => [ 'SearchString' => [ 'shape' => 'SearchString', ], 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Dimension' => [ 'shape' => 'Dimension', ], 'Context' => [ 'shape' => 'Context', ], 'Filter' => [ 'shape' => 'Expression', ], 'SortBy' => [ 'shape' => 'SortDefinitions', ], 'MaxResults' => [ 'shape' => 'MaxResults', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetDimensionValuesResponse' => [ 'type' => 'structure', 'required' => [ 'DimensionValues', 'ReturnSize', 'TotalSize', ], 'members' => [ 'DimensionValues' => [ 'shape' => 'DimensionValuesWithAttributesList', ], 'ReturnSize' => [ 'shape' => 'PageSize', ], 'TotalSize' => [ 'shape' => 'PageSize', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetReservationCoverageRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'GroupBy' => [ 'shape' => 'GroupDefinitions', ], 'Granularity' => [ 'shape' => 'Granularity', ], 'Filter' => [ 'shape' => 'Expression', ], 'Metrics' => [ 'shape' => 'MetricNames', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'SortBy' => [ 'shape' => 'SortDefinition', ], 'MaxResults' => [ 'shape' => 'MaxResults', 'box' => true, ], ], ], 'GetReservationCoverageResponse' => [ 'type' => 'structure', 'required' => [ 'CoveragesByTime', ], 'members' => [ 'CoveragesByTime' => [ 'shape' => 'CoveragesByTime', ], 'Total' => [ 'shape' => 'Coverage', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetReservationPurchaseRecommendationRequest' => [ 'type' => 'structure', 'required' => [ 'Service', ], 'members' => [ 'AccountId' => [ 'shape' => 'GenericString', ], 'Service' => [ 'shape' => 'GenericString', ], 'Filter' => [ 'shape' => 'Expression', ], 'AccountScope' => [ 'shape' => 'AccountScope', ], 'LookbackPeriodInDays' => [ 'shape' => 'LookbackPeriodInDays', ], 'TermInYears' => [ 'shape' => 'TermInYears', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', ], 'ServiceSpecification' => [ 'shape' => 'ServiceSpecification', ], 'PageSize' => [ 'shape' => 'NonNegativeInteger', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetReservationPurchaseRecommendationResponse' => [ 'type' => 'structure', 'members' => [ 'Metadata' => [ 'shape' => 'ReservationPurchaseRecommendationMetadata', ], 'Recommendations' => [ 'shape' => 'ReservationPurchaseRecommendations', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetReservationUtilizationRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'GroupBy' => [ 'shape' => 'GroupDefinitions', ], 'Granularity' => [ 'shape' => 'Granularity', ], 'Filter' => [ 'shape' => 'Expression', ], 'SortBy' => [ 'shape' => 'SortDefinition', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'MaxResults' => [ 'shape' => 'MaxResults', 'box' => true, ], ], ], 'GetReservationUtilizationResponse' => [ 'type' => 'structure', 'required' => [ 'UtilizationsByTime', ], 'members' => [ 'UtilizationsByTime' => [ 'shape' => 'UtilizationsByTime', ], 'Total' => [ 'shape' => 'ReservationAggregates', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetRightsizingRecommendationRequest' => [ 'type' => 'structure', 'required' => [ 'Service', ], 'members' => [ 'Filter' => [ 'shape' => 'Expression', ], 'Configuration' => [ 'shape' => 'RightsizingRecommendationConfiguration', ], 'Service' => [ 'shape' => 'GenericString', ], 'PageSize' => [ 'shape' => 'NonNegativeInteger', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetRightsizingRecommendationResponse' => [ 'type' => 'structure', 'members' => [ 'Metadata' => [ 'shape' => 'RightsizingRecommendationMetadata', ], 'Summary' => [ 'shape' => 'RightsizingRecommendationSummary', ], 'RightsizingRecommendations' => [ 'shape' => 'RightsizingRecommendationList', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'Configuration' => [ 'shape' => 'RightsizingRecommendationConfiguration', ], ], ], 'GetSavingsPlanPurchaseRecommendationDetailsRequest' => [ 'type' => 'structure', 'required' => [ 'RecommendationDetailId', ], 'members' => [ 'RecommendationDetailId' => [ 'shape' => 'RecommendationDetailId', ], ], ], 'GetSavingsPlanPurchaseRecommendationDetailsResponse' => [ 'type' => 'structure', 'members' => [ 'RecommendationDetailId' => [ 'shape' => 'RecommendationDetailId', ], 'RecommendationDetailData' => [ 'shape' => 'RecommendationDetailData', ], ], ], 'GetSavingsPlansCoverageRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'GroupBy' => [ 'shape' => 'GroupDefinitions', ], 'Granularity' => [ 'shape' => 'Granularity', ], 'Filter' => [ 'shape' => 'Expression', ], 'Metrics' => [ 'shape' => 'MetricNames', ], 'NextToken' => [ 'shape' => 'NextPageToken', ], 'MaxResults' => [ 'shape' => 'MaxResults', 'box' => true, ], 'SortBy' => [ 'shape' => 'SortDefinition', ], ], ], 'GetSavingsPlansCoverageResponse' => [ 'type' => 'structure', 'required' => [ 'SavingsPlansCoverages', ], 'members' => [ 'SavingsPlansCoverages' => [ 'shape' => 'SavingsPlansCoverages', ], 'NextToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetSavingsPlansPurchaseRecommendationRequest' => [ 'type' => 'structure', 'required' => [ 'SavingsPlansType', 'TermInYears', 'PaymentOption', 'LookbackPeriodInDays', ], 'members' => [ 'SavingsPlansType' => [ 'shape' => 'SupportedSavingsPlansType', ], 'TermInYears' => [ 'shape' => 'TermInYears', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', ], 'AccountScope' => [ 'shape' => 'AccountScope', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'PageSize' => [ 'shape' => 'NonNegativeInteger', ], 'LookbackPeriodInDays' => [ 'shape' => 'LookbackPeriodInDays', ], 'Filter' => [ 'shape' => 'Expression', ], ], ], 'GetSavingsPlansPurchaseRecommendationResponse' => [ 'type' => 'structure', 'members' => [ 'Metadata' => [ 'shape' => 'SavingsPlansPurchaseRecommendationMetadata', ], 'SavingsPlansPurchaseRecommendation' => [ 'shape' => 'SavingsPlansPurchaseRecommendation', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetSavingsPlansUtilizationDetailsRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Filter' => [ 'shape' => 'Expression', ], 'DataType' => [ 'shape' => 'SavingsPlansDataTypes', ], 'NextToken' => [ 'shape' => 'NextPageToken', ], 'MaxResults' => [ 'shape' => 'MaxResults', 'box' => true, ], 'SortBy' => [ 'shape' => 'SortDefinition', ], ], ], 'GetSavingsPlansUtilizationDetailsResponse' => [ 'type' => 'structure', 'required' => [ 'SavingsPlansUtilizationDetails', 'TimePeriod', ], 'members' => [ 'SavingsPlansUtilizationDetails' => [ 'shape' => 'SavingsPlansUtilizationDetails', ], 'Total' => [ 'shape' => 'SavingsPlansUtilizationAggregates', ], 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'NextToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetSavingsPlansUtilizationRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Granularity' => [ 'shape' => 'Granularity', ], 'Filter' => [ 'shape' => 'Expression', ], 'SortBy' => [ 'shape' => 'SortDefinition', ], ], ], 'GetSavingsPlansUtilizationResponse' => [ 'type' => 'structure', 'required' => [ 'Total', ], 'members' => [ 'SavingsPlansUtilizationsByTime' => [ 'shape' => 'SavingsPlansUtilizationsByTime', ], 'Total' => [ 'shape' => 'SavingsPlansUtilizationAggregates', ], ], ], 'GetTagsRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', ], 'members' => [ 'SearchString' => [ 'shape' => 'SearchString', ], 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'TagKey' => [ 'shape' => 'TagKey', ], 'Filter' => [ 'shape' => 'Expression', ], 'SortBy' => [ 'shape' => 'SortDefinitions', ], 'MaxResults' => [ 'shape' => 'MaxResults', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'GetTagsResponse' => [ 'type' => 'structure', 'required' => [ 'Tags', 'ReturnSize', 'TotalSize', ], 'members' => [ 'NextPageToken' => [ 'shape' => 'NextPageToken', ], 'Tags' => [ 'shape' => 'TagList', ], 'ReturnSize' => [ 'shape' => 'PageSize', ], 'TotalSize' => [ 'shape' => 'PageSize', ], ], ], 'GetUsageForecastRequest' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', 'Metric', 'Granularity', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Metric' => [ 'shape' => 'Metric', ], 'Granularity' => [ 'shape' => 'Granularity', ], 'Filter' => [ 'shape' => 'Expression', ], 'PredictionIntervalLevel' => [ 'shape' => 'PredictionIntervalLevel', ], ], ], 'GetUsageForecastResponse' => [ 'type' => 'structure', 'members' => [ 'Total' => [ 'shape' => 'MetricValue', ], 'ForecastResultsByTime' => [ 'shape' => 'ForecastResultsByTime', ], ], ], 'Granularity' => [ 'type' => 'string', 'enum' => [ 'DAILY', 'MONTHLY', 'HOURLY', ], ], 'Group' => [ 'type' => 'structure', 'members' => [ 'Keys' => [ 'shape' => 'Keys', ], 'Metrics' => [ 'shape' => 'Metrics', ], ], ], 'GroupDefinition' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'GroupDefinitionType', ], 'Key' => [ 'shape' => 'GroupDefinitionKey', ], ], ], 'GroupDefinitionKey' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, 'pattern' => '[\\S\\s]*', ], 'GroupDefinitionType' => [ 'type' => 'string', 'enum' => [ 'DIMENSION', 'TAG', 'COST_CATEGORY', ], ], 'GroupDefinitions' => [ 'type' => 'list', 'member' => [ 'shape' => 'GroupDefinition', ], ], 'Groups' => [ 'type' => 'list', 'member' => [ 'shape' => 'Group', ], ], 'Impact' => [ 'type' => 'structure', 'required' => [ 'MaxImpact', ], 'members' => [ 'MaxImpact' => [ 'shape' => 'GenericDouble', ], 'TotalImpact' => [ 'shape' => 'GenericDouble', ], 'TotalActualSpend' => [ 'shape' => 'NullableNonNegativeDouble', ], 'TotalExpectedSpend' => [ 'shape' => 'NullableNonNegativeDouble', ], 'TotalImpactPercentage' => [ 'shape' => 'NullableNonNegativeDouble', ], ], ], 'InstanceDetails' => [ 'type' => 'structure', 'members' => [ 'EC2InstanceDetails' => [ 'shape' => 'EC2InstanceDetails', ], 'RDSInstanceDetails' => [ 'shape' => 'RDSInstanceDetails', ], 'RedshiftInstanceDetails' => [ 'shape' => 'RedshiftInstanceDetails', ], 'ElastiCacheInstanceDetails' => [ 'shape' => 'ElastiCacheInstanceDetails', ], 'ESInstanceDetails' => [ 'shape' => 'ESInstanceDetails', ], 'MemoryDBInstanceDetails' => [ 'shape' => 'MemoryDBInstanceDetails', ], ], ], 'InvalidNextTokenException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'Key' => [ 'type' => 'string', ], 'Keys' => [ 'type' => 'list', 'member' => [ 'shape' => 'Key', ], ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ListCostAllocationTagsRequest' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'CostAllocationTagStatus', ], 'TagKeys' => [ 'shape' => 'CostAllocationTagKeyList', ], 'Type' => [ 'shape' => 'CostAllocationTagType', ], 'NextToken' => [ 'shape' => 'NextPageToken', ], 'MaxResults' => [ 'shape' => 'CostAllocationTagsMaxResults', 'box' => true, ], ], ], 'ListCostAllocationTagsResponse' => [ 'type' => 'structure', 'members' => [ 'CostAllocationTags' => [ 'shape' => 'CostAllocationTagList', ], 'NextToken' => [ 'shape' => 'NextPageToken', ], ], ], 'ListCostCategoryDefinitionsRequest' => [ 'type' => 'structure', 'members' => [ 'EffectiveOn' => [ 'shape' => 'ZonedDateTime', ], 'NextToken' => [ 'shape' => 'NextPageToken', ], 'MaxResults' => [ 'shape' => 'CostCategoryMaxResults', 'box' => true, ], ], ], 'ListCostCategoryDefinitionsResponse' => [ 'type' => 'structure', 'members' => [ 'CostCategoryReferences' => [ 'shape' => 'CostCategoryReferencesList', ], 'NextToken' => [ 'shape' => 'NextPageToken', ], ], ], 'ListSavingsPlansPurchaseRecommendationGenerationRequest' => [ 'type' => 'structure', 'members' => [ 'GenerationStatus' => [ 'shape' => 'GenerationStatus', ], 'RecommendationIds' => [ 'shape' => 'RecommendationIdList', ], 'PageSize' => [ 'shape' => 'NonNegativeInteger', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'ListSavingsPlansPurchaseRecommendationGenerationResponse' => [ 'type' => 'structure', 'members' => [ 'GenerationSummaryList' => [ 'shape' => 'GenerationSummaryList', ], 'NextPageToken' => [ 'shape' => 'NextPageToken', ], ], ], 'ListTagsForResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'Arn', ], ], ], 'ListTagsForResourceResponse' => [ 'type' => 'structure', 'members' => [ 'ResourceTags' => [ 'shape' => 'ResourceTagList', ], ], ], 'LookbackPeriodInDays' => [ 'type' => 'string', 'enum' => [ 'SEVEN_DAYS', 'THIRTY_DAYS', 'SIXTY_DAYS', ], ], 'MatchOption' => [ 'type' => 'string', 'enum' => [ 'EQUALS', 'ABSENT', 'STARTS_WITH', 'ENDS_WITH', 'CONTAINS', 'CASE_SENSITIVE', 'CASE_INSENSITIVE', 'GREATER_THAN_OR_EQUAL', ], ], 'MatchOptions' => [ 'type' => 'list', 'member' => [ 'shape' => 'MatchOption', ], ], 'MaxResults' => [ 'type' => 'integer', 'min' => 1, ], 'MemoryDBInstanceDetails' => [ 'type' => 'structure', 'members' => [ 'Family' => [ 'shape' => 'GenericString', ], 'NodeType' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'CurrentGeneration' => [ 'shape' => 'GenericBoolean', ], 'SizeFlexEligible' => [ 'shape' => 'GenericBoolean', ], ], ], 'Metric' => [ 'type' => 'string', 'enum' => [ 'BLENDED_COST', 'UNBLENDED_COST', 'AMORTIZED_COST', 'NET_UNBLENDED_COST', 'NET_AMORTIZED_COST', 'USAGE_QUANTITY', 'NORMALIZED_USAGE_AMOUNT', ], ], 'MetricAmount' => [ 'type' => 'string', ], 'MetricName' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, 'pattern' => '[\\S\\s]*', ], 'MetricNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'MetricName', ], ], 'MetricUnit' => [ 'type' => 'string', ], 'MetricValue' => [ 'type' => 'structure', 'members' => [ 'Amount' => [ 'shape' => 'MetricAmount', ], 'Unit' => [ 'shape' => 'MetricUnit', ], ], ], 'Metrics' => [ 'type' => 'map', 'key' => [ 'shape' => 'MetricName', ], 'value' => [ 'shape' => 'MetricValue', ], ], 'MetricsOverLookbackPeriod' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecommendationDetailHourlyMetrics', ], ], 'ModifyRecommendationDetail' => [ 'type' => 'structure', 'members' => [ 'TargetInstances' => [ 'shape' => 'TargetInstancesList', ], ], ], 'MonitorArnList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Arn', ], ], 'MonitorDimension' => [ 'type' => 'string', 'enum' => [ 'SERVICE', ], ], 'MonitorType' => [ 'type' => 'string', 'enum' => [ 'DIMENSIONAL', 'CUSTOM', ], ], 'NetRISavings' => [ 'type' => 'string', ], 'NetworkResourceUtilization' => [ 'type' => 'structure', 'members' => [ 'NetworkInBytesPerSecond' => [ 'shape' => 'GenericString', ], 'NetworkOutBytesPerSecond' => [ 'shape' => 'GenericString', ], 'NetworkPacketsInPerSecond' => [ 'shape' => 'GenericString', ], 'NetworkPacketsOutPerSecond' => [ 'shape' => 'GenericString', ], ], ], 'NextPageToken' => [ 'type' => 'string', 'max' => 8192, 'min' => 0, 'pattern' => '[\\S\\s]*', ], 'NonNegativeInteger' => [ 'type' => 'integer', 'min' => 0, ], 'NonNegativeLong' => [ 'type' => 'long', 'min' => 0, ], 'NullableNonNegativeDouble' => [ 'type' => 'double', 'min' => 0.0, ], 'NumericOperator' => [ 'type' => 'string', 'enum' => [ 'EQUAL', 'GREATER_THAN_OR_EQUAL', 'LESS_THAN_OR_EQUAL', 'GREATER_THAN', 'LESS_THAN', 'BETWEEN', ], ], 'OfferingClass' => [ 'type' => 'string', 'enum' => [ 'STANDARD', 'CONVERTIBLE', ], ], 'OnDemandCost' => [ 'type' => 'string', ], 'OnDemandCostOfRIHoursUsed' => [ 'type' => 'string', ], 'OnDemandHours' => [ 'type' => 'string', ], 'OnDemandNormalizedUnits' => [ 'type' => 'string', ], 'PageSize' => [ 'type' => 'integer', ], 'PaymentOption' => [ 'type' => 'string', 'enum' => [ 'NO_UPFRONT', 'PARTIAL_UPFRONT', 'ALL_UPFRONT', 'LIGHT_UTILIZATION', 'MEDIUM_UTILIZATION', 'HEAVY_UTILIZATION', ], ], 'PlatformDifference' => [ 'type' => 'string', 'enum' => [ 'HYPERVISOR', 'NETWORK_INTERFACE', 'STORAGE_INTERFACE', 'INSTANCE_STORE_AVAILABILITY', 'VIRTUALIZATION_TYPE', ], ], 'PlatformDifferences' => [ 'type' => 'list', 'member' => [ 'shape' => 'PlatformDifference', ], ], 'PredictionIntervalLevel' => [ 'type' => 'integer', 'max' => 99, 'min' => 51, ], 'ProvideAnomalyFeedbackRequest' => [ 'type' => 'structure', 'required' => [ 'AnomalyId', 'Feedback', ], 'members' => [ 'AnomalyId' => [ 'shape' => 'GenericString', ], 'Feedback' => [ 'shape' => 'AnomalyFeedbackType', ], ], ], 'ProvideAnomalyFeedbackResponse' => [ 'type' => 'structure', 'required' => [ 'AnomalyId', ], 'members' => [ 'AnomalyId' => [ 'shape' => 'GenericString', ], ], ], 'PurchasedHours' => [ 'type' => 'string', ], 'PurchasedUnits' => [ 'type' => 'string', ], 'RDSInstanceDetails' => [ 'type' => 'structure', 'members' => [ 'Family' => [ 'shape' => 'GenericString', ], 'InstanceType' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'DatabaseEngine' => [ 'shape' => 'GenericString', ], 'DatabaseEdition' => [ 'shape' => 'GenericString', ], 'DeploymentOption' => [ 'shape' => 'GenericString', ], 'LicenseModel' => [ 'shape' => 'GenericString', ], 'CurrentGeneration' => [ 'shape' => 'GenericBoolean', ], 'SizeFlexEligible' => [ 'shape' => 'GenericBoolean', ], ], ], 'RICostForUnusedHours' => [ 'type' => 'string', ], 'RealizedSavings' => [ 'type' => 'string', ], 'RecommendationDetailData' => [ 'type' => 'structure', 'members' => [ 'AccountScope' => [ 'shape' => 'AccountScope', ], 'LookbackPeriodInDays' => [ 'shape' => 'LookbackPeriodInDays', ], 'SavingsPlansType' => [ 'shape' => 'SupportedSavingsPlansType', ], 'TermInYears' => [ 'shape' => 'TermInYears', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', ], 'AccountId' => [ 'shape' => 'GenericString', ], 'CurrencyCode' => [ 'shape' => 'GenericString', ], 'InstanceFamily' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'OfferingId' => [ 'shape' => 'GenericString', ], 'GenerationTimestamp' => [ 'shape' => 'ZonedDateTime', ], 'LatestUsageTimestamp' => [ 'shape' => 'ZonedDateTime', ], 'CurrentAverageHourlyOnDemandSpend' => [ 'shape' => 'GenericString', ], 'CurrentMaximumHourlyOnDemandSpend' => [ 'shape' => 'GenericString', ], 'CurrentMinimumHourlyOnDemandSpend' => [ 'shape' => 'GenericString', ], 'EstimatedAverageUtilization' => [ 'shape' => 'GenericString', ], 'EstimatedMonthlySavingsAmount' => [ 'shape' => 'GenericString', ], 'EstimatedOnDemandCost' => [ 'shape' => 'GenericString', ], 'EstimatedOnDemandCostWithCurrentCommitment' => [ 'shape' => 'GenericString', ], 'EstimatedROI' => [ 'shape' => 'GenericString', ], 'EstimatedSPCost' => [ 'shape' => 'GenericString', ], 'EstimatedSavingsAmount' => [ 'shape' => 'GenericString', ], 'EstimatedSavingsPercentage' => [ 'shape' => 'GenericString', ], 'ExistingHourlyCommitment' => [ 'shape' => 'GenericString', ], 'HourlyCommitmentToPurchase' => [ 'shape' => 'GenericString', ], 'UpfrontCost' => [ 'shape' => 'GenericString', ], 'CurrentAverageCoverage' => [ 'shape' => 'GenericString', ], 'EstimatedAverageCoverage' => [ 'shape' => 'GenericString', ], 'MetricsOverLookbackPeriod' => [ 'shape' => 'MetricsOverLookbackPeriod', ], ], ], 'RecommendationDetailHourlyMetrics' => [ 'type' => 'structure', 'members' => [ 'StartTime' => [ 'shape' => 'ZonedDateTime', ], 'EstimatedOnDemandCost' => [ 'shape' => 'GenericString', ], 'CurrentCoverage' => [ 'shape' => 'GenericString', ], 'EstimatedCoverage' => [ 'shape' => 'GenericString', ], 'EstimatedNewCommitmentUtilization' => [ 'shape' => 'GenericString', ], ], ], 'RecommendationDetailId' => [ 'type' => 'string', 'max' => 36, 'min' => 36, 'pattern' => '^[\\S\\s]{8}-[\\S\\s]{4}-[\\S\\s]{4}-[\\S\\s]{4}-[\\S\\s]{12}$', ], 'RecommendationId' => [ 'type' => 'string', 'max' => 36, 'min' => 36, 'pattern' => '^[\\S\\s]{8}-[\\S\\s]{4}-[\\S\\s]{4}-[\\S\\s]{4}-[\\S\\s]{12}$', ], 'RecommendationIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecommendationId', ], ], 'RecommendationTarget' => [ 'type' => 'string', 'enum' => [ 'SAME_INSTANCE_FAMILY', 'CROSS_INSTANCE_FAMILY', ], ], 'RedshiftInstanceDetails' => [ 'type' => 'structure', 'members' => [ 'Family' => [ 'shape' => 'GenericString', ], 'NodeType' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'CurrentGeneration' => [ 'shape' => 'GenericBoolean', ], 'SizeFlexEligible' => [ 'shape' => 'GenericBoolean', ], ], ], 'RequestChangedException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ReservationAggregates' => [ 'type' => 'structure', 'members' => [ 'UtilizationPercentage' => [ 'shape' => 'UtilizationPercentage', ], 'UtilizationPercentageInUnits' => [ 'shape' => 'UtilizationPercentageInUnits', ], 'PurchasedHours' => [ 'shape' => 'PurchasedHours', ], 'PurchasedUnits' => [ 'shape' => 'PurchasedUnits', ], 'TotalActualHours' => [ 'shape' => 'TotalActualHours', ], 'TotalActualUnits' => [ 'shape' => 'TotalActualUnits', ], 'UnusedHours' => [ 'shape' => 'UnusedHours', ], 'UnusedUnits' => [ 'shape' => 'UnusedUnits', ], 'OnDemandCostOfRIHoursUsed' => [ 'shape' => 'OnDemandCostOfRIHoursUsed', ], 'NetRISavings' => [ 'shape' => 'NetRISavings', ], 'TotalPotentialRISavings' => [ 'shape' => 'TotalPotentialRISavings', ], 'AmortizedUpfrontFee' => [ 'shape' => 'AmortizedUpfrontFee', ], 'AmortizedRecurringFee' => [ 'shape' => 'AmortizedRecurringFee', ], 'TotalAmortizedFee' => [ 'shape' => 'TotalAmortizedFee', ], 'RICostForUnusedHours' => [ 'shape' => 'RICostForUnusedHours', ], 'RealizedSavings' => [ 'shape' => 'RealizedSavings', ], 'UnrealizedSavings' => [ 'shape' => 'UnrealizedSavings', ], ], ], 'ReservationCoverageGroup' => [ 'type' => 'structure', 'members' => [ 'Attributes' => [ 'shape' => 'Attributes', ], 'Coverage' => [ 'shape' => 'Coverage', ], ], ], 'ReservationCoverageGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservationCoverageGroup', ], ], 'ReservationGroupKey' => [ 'type' => 'string', ], 'ReservationGroupValue' => [ 'type' => 'string', ], 'ReservationPurchaseRecommendation' => [ 'type' => 'structure', 'members' => [ 'AccountScope' => [ 'shape' => 'AccountScope', ], 'LookbackPeriodInDays' => [ 'shape' => 'LookbackPeriodInDays', ], 'TermInYears' => [ 'shape' => 'TermInYears', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', ], 'ServiceSpecification' => [ 'shape' => 'ServiceSpecification', ], 'RecommendationDetails' => [ 'shape' => 'ReservationPurchaseRecommendationDetails', ], 'RecommendationSummary' => [ 'shape' => 'ReservationPurchaseRecommendationSummary', ], ], ], 'ReservationPurchaseRecommendationDetail' => [ 'type' => 'structure', 'members' => [ 'AccountId' => [ 'shape' => 'GenericString', ], 'InstanceDetails' => [ 'shape' => 'InstanceDetails', ], 'RecommendedNumberOfInstancesToPurchase' => [ 'shape' => 'GenericString', ], 'RecommendedNormalizedUnitsToPurchase' => [ 'shape' => 'GenericString', ], 'MinimumNumberOfInstancesUsedPerHour' => [ 'shape' => 'GenericString', ], 'MinimumNormalizedUnitsUsedPerHour' => [ 'shape' => 'GenericString', ], 'MaximumNumberOfInstancesUsedPerHour' => [ 'shape' => 'GenericString', ], 'MaximumNormalizedUnitsUsedPerHour' => [ 'shape' => 'GenericString', ], 'AverageNumberOfInstancesUsedPerHour' => [ 'shape' => 'GenericString', ], 'AverageNormalizedUnitsUsedPerHour' => [ 'shape' => 'GenericString', ], 'AverageUtilization' => [ 'shape' => 'GenericString', ], 'EstimatedBreakEvenInMonths' => [ 'shape' => 'GenericString', ], 'CurrencyCode' => [ 'shape' => 'GenericString', ], 'EstimatedMonthlySavingsAmount' => [ 'shape' => 'GenericString', ], 'EstimatedMonthlySavingsPercentage' => [ 'shape' => 'GenericString', ], 'EstimatedMonthlyOnDemandCost' => [ 'shape' => 'GenericString', ], 'EstimatedReservationCostForLookbackPeriod' => [ 'shape' => 'GenericString', ], 'UpfrontCost' => [ 'shape' => 'GenericString', ], 'RecurringStandardMonthlyCost' => [ 'shape' => 'GenericString', ], ], ], 'ReservationPurchaseRecommendationDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservationPurchaseRecommendationDetail', ], ], 'ReservationPurchaseRecommendationMetadata' => [ 'type' => 'structure', 'members' => [ 'RecommendationId' => [ 'shape' => 'GenericString', ], 'GenerationTimestamp' => [ 'shape' => 'GenericString', ], ], ], 'ReservationPurchaseRecommendationSummary' => [ 'type' => 'structure', 'members' => [ 'TotalEstimatedMonthlySavingsAmount' => [ 'shape' => 'GenericString', ], 'TotalEstimatedMonthlySavingsPercentage' => [ 'shape' => 'GenericString', ], 'CurrencyCode' => [ 'shape' => 'GenericString', ], ], ], 'ReservationPurchaseRecommendations' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservationPurchaseRecommendation', ], ], 'ReservationUtilizationGroup' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'ReservationGroupKey', ], 'Value' => [ 'shape' => 'ReservationGroupValue', ], 'Attributes' => [ 'shape' => 'Attributes', ], 'Utilization' => [ 'shape' => 'ReservationAggregates', ], ], ], 'ReservationUtilizationGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservationUtilizationGroup', ], ], 'ReservedHours' => [ 'type' => 'string', ], 'ReservedNormalizedUnits' => [ 'type' => 'string', ], 'ResourceDetails' => [ 'type' => 'structure', 'members' => [ 'EC2ResourceDetails' => [ 'shape' => 'EC2ResourceDetails', ], ], ], 'ResourceNotFoundException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], 'ResourceName' => [ 'shape' => 'Arn', ], ], 'exception' => true, ], 'ResourceTag' => [ 'type' => 'structure', 'required' => [ 'Key', 'Value', ], 'members' => [ 'Key' => [ 'shape' => 'ResourceTagKey', ], 'Value' => [ 'shape' => 'ResourceTagValue', ], ], ], 'ResourceTagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$', ], 'ResourceTagKeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceTagKey', ], 'max' => 200, 'min' => 0, ], 'ResourceTagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceTag', ], 'max' => 200, 'min' => 0, ], 'ResourceTagValue' => [ 'type' => 'string', 'max' => 256, 'min' => 0, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$', ], 'ResourceUtilization' => [ 'type' => 'structure', 'members' => [ 'EC2ResourceUtilization' => [ 'shape' => 'EC2ResourceUtilization', ], ], ], 'ResultByTime' => [ 'type' => 'structure', 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Total' => [ 'shape' => 'Metrics', ], 'Groups' => [ 'shape' => 'Groups', ], 'Estimated' => [ 'shape' => 'Estimated', ], ], ], 'ResultsByTime' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResultByTime', ], ], 'RightsizingRecommendation' => [ 'type' => 'structure', 'members' => [ 'AccountId' => [ 'shape' => 'GenericString', ], 'CurrentInstance' => [ 'shape' => 'CurrentInstance', ], 'RightsizingType' => [ 'shape' => 'RightsizingType', ], 'ModifyRecommendationDetail' => [ 'shape' => 'ModifyRecommendationDetail', ], 'TerminateRecommendationDetail' => [ 'shape' => 'TerminateRecommendationDetail', ], 'FindingReasonCodes' => [ 'shape' => 'FindingReasonCodes', ], ], ], 'RightsizingRecommendationConfiguration' => [ 'type' => 'structure', 'required' => [ 'RecommendationTarget', 'BenefitsConsidered', ], 'members' => [ 'RecommendationTarget' => [ 'shape' => 'RecommendationTarget', ], 'BenefitsConsidered' => [ 'shape' => 'GenericBoolean', ], ], ], 'RightsizingRecommendationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RightsizingRecommendation', ], ], 'RightsizingRecommendationMetadata' => [ 'type' => 'structure', 'members' => [ 'RecommendationId' => [ 'shape' => 'GenericString', ], 'GenerationTimestamp' => [ 'shape' => 'GenericString', ], 'LookbackPeriodInDays' => [ 'shape' => 'LookbackPeriodInDays', ], 'AdditionalMetadata' => [ 'shape' => 'GenericString', ], ], ], 'RightsizingRecommendationSummary' => [ 'type' => 'structure', 'members' => [ 'TotalRecommendationCount' => [ 'shape' => 'GenericString', ], 'EstimatedTotalMonthlySavingsAmount' => [ 'shape' => 'GenericString', ], 'SavingsCurrencyCode' => [ 'shape' => 'GenericString', ], 'SavingsPercentage' => [ 'shape' => 'GenericString', ], ], ], 'RightsizingType' => [ 'type' => 'string', 'enum' => [ 'TERMINATE', 'MODIFY', ], ], 'RootCause' => [ 'type' => 'structure', 'members' => [ 'Service' => [ 'shape' => 'GenericString', ], 'Region' => [ 'shape' => 'GenericString', ], 'LinkedAccount' => [ 'shape' => 'GenericString', ], 'UsageType' => [ 'shape' => 'GenericString', ], 'LinkedAccountName' => [ 'shape' => 'GenericString', ], ], ], 'RootCauses' => [ 'type' => 'list', 'member' => [ 'shape' => 'RootCause', ], ], 'SavingsPlanArn' => [ 'type' => 'string', ], 'SavingsPlansAmortizedCommitment' => [ 'type' => 'structure', 'members' => [ 'AmortizedRecurringCommitment' => [ 'shape' => 'GenericString', ], 'AmortizedUpfrontCommitment' => [ 'shape' => 'GenericString', ], 'TotalAmortizedCommitment' => [ 'shape' => 'GenericString', ], ], ], 'SavingsPlansCoverage' => [ 'type' => 'structure', 'members' => [ 'Attributes' => [ 'shape' => 'Attributes', ], 'Coverage' => [ 'shape' => 'SavingsPlansCoverageData', ], 'TimePeriod' => [ 'shape' => 'DateInterval', ], ], ], 'SavingsPlansCoverageData' => [ 'type' => 'structure', 'members' => [ 'SpendCoveredBySavingsPlans' => [ 'shape' => 'GenericString', ], 'OnDemandCost' => [ 'shape' => 'GenericString', ], 'TotalCost' => [ 'shape' => 'GenericString', ], 'CoveragePercentage' => [ 'shape' => 'GenericString', ], ], ], 'SavingsPlansCoverages' => [ 'type' => 'list', 'member' => [ 'shape' => 'SavingsPlansCoverage', ], ], 'SavingsPlansDataType' => [ 'type' => 'string', 'enum' => [ 'ATTRIBUTES', 'UTILIZATION', 'AMORTIZED_COMMITMENT', 'SAVINGS', ], ], 'SavingsPlansDataTypes' => [ 'type' => 'list', 'member' => [ 'shape' => 'SavingsPlansDataType', ], ], 'SavingsPlansDetails' => [ 'type' => 'structure', 'members' => [ 'Region' => [ 'shape' => 'GenericString', ], 'InstanceFamily' => [ 'shape' => 'GenericString', ], 'OfferingId' => [ 'shape' => 'GenericString', ], ], ], 'SavingsPlansPurchaseRecommendation' => [ 'type' => 'structure', 'members' => [ 'AccountScope' => [ 'shape' => 'AccountScope', ], 'SavingsPlansType' => [ 'shape' => 'SupportedSavingsPlansType', ], 'TermInYears' => [ 'shape' => 'TermInYears', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', ], 'LookbackPeriodInDays' => [ 'shape' => 'LookbackPeriodInDays', ], 'SavingsPlansPurchaseRecommendationDetails' => [ 'shape' => 'SavingsPlansPurchaseRecommendationDetailList', ], 'SavingsPlansPurchaseRecommendationSummary' => [ 'shape' => 'SavingsPlansPurchaseRecommendationSummary', ], ], ], 'SavingsPlansPurchaseRecommendationDetail' => [ 'type' => 'structure', 'members' => [ 'SavingsPlansDetails' => [ 'shape' => 'SavingsPlansDetails', ], 'AccountId' => [ 'shape' => 'GenericString', ], 'UpfrontCost' => [ 'shape' => 'GenericString', ], 'EstimatedROI' => [ 'shape' => 'GenericString', ], 'CurrencyCode' => [ 'shape' => 'GenericString', ], 'EstimatedSPCost' => [ 'shape' => 'GenericString', ], 'EstimatedOnDemandCost' => [ 'shape' => 'GenericString', ], 'EstimatedOnDemandCostWithCurrentCommitment' => [ 'shape' => 'GenericString', ], 'EstimatedSavingsAmount' => [ 'shape' => 'GenericString', ], 'EstimatedSavingsPercentage' => [ 'shape' => 'GenericString', ], 'HourlyCommitmentToPurchase' => [ 'shape' => 'GenericString', ], 'EstimatedAverageUtilization' => [ 'shape' => 'GenericString', ], 'EstimatedMonthlySavingsAmount' => [ 'shape' => 'GenericString', ], 'CurrentMinimumHourlyOnDemandSpend' => [ 'shape' => 'GenericString', ], 'CurrentMaximumHourlyOnDemandSpend' => [ 'shape' => 'GenericString', ], 'CurrentAverageHourlyOnDemandSpend' => [ 'shape' => 'GenericString', ], 'RecommendationDetailId' => [ 'shape' => 'RecommendationDetailId', ], ], ], 'SavingsPlansPurchaseRecommendationDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SavingsPlansPurchaseRecommendationDetail', ], ], 'SavingsPlansPurchaseRecommendationMetadata' => [ 'type' => 'structure', 'members' => [ 'RecommendationId' => [ 'shape' => 'GenericString', ], 'GenerationTimestamp' => [ 'shape' => 'GenericString', ], 'AdditionalMetadata' => [ 'shape' => 'GenericString', ], ], ], 'SavingsPlansPurchaseRecommendationSummary' => [ 'type' => 'structure', 'members' => [ 'EstimatedROI' => [ 'shape' => 'GenericString', ], 'CurrencyCode' => [ 'shape' => 'GenericString', ], 'EstimatedTotalCost' => [ 'shape' => 'GenericString', ], 'CurrentOnDemandSpend' => [ 'shape' => 'GenericString', ], 'EstimatedSavingsAmount' => [ 'shape' => 'GenericString', ], 'TotalRecommendationCount' => [ 'shape' => 'GenericString', ], 'DailyCommitmentToPurchase' => [ 'shape' => 'GenericString', ], 'HourlyCommitmentToPurchase' => [ 'shape' => 'GenericString', ], 'EstimatedSavingsPercentage' => [ 'shape' => 'GenericString', ], 'EstimatedMonthlySavingsAmount' => [ 'shape' => 'GenericString', ], 'EstimatedOnDemandCostWithCurrentCommitment' => [ 'shape' => 'GenericString', ], ], ], 'SavingsPlansSavings' => [ 'type' => 'structure', 'members' => [ 'NetSavings' => [ 'shape' => 'GenericString', ], 'OnDemandCostEquivalent' => [ 'shape' => 'GenericString', ], ], ], 'SavingsPlansUtilization' => [ 'type' => 'structure', 'members' => [ 'TotalCommitment' => [ 'shape' => 'GenericString', ], 'UsedCommitment' => [ 'shape' => 'GenericString', ], 'UnusedCommitment' => [ 'shape' => 'GenericString', ], 'UtilizationPercentage' => [ 'shape' => 'GenericString', ], ], ], 'SavingsPlansUtilizationAggregates' => [ 'type' => 'structure', 'required' => [ 'Utilization', ], 'members' => [ 'Utilization' => [ 'shape' => 'SavingsPlansUtilization', ], 'Savings' => [ 'shape' => 'SavingsPlansSavings', ], 'AmortizedCommitment' => [ 'shape' => 'SavingsPlansAmortizedCommitment', ], ], ], 'SavingsPlansUtilizationByTime' => [ 'type' => 'structure', 'required' => [ 'TimePeriod', 'Utilization', ], 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Utilization' => [ 'shape' => 'SavingsPlansUtilization', ], 'Savings' => [ 'shape' => 'SavingsPlansSavings', ], 'AmortizedCommitment' => [ 'shape' => 'SavingsPlansAmortizedCommitment', ], ], ], 'SavingsPlansUtilizationDetail' => [ 'type' => 'structure', 'members' => [ 'SavingsPlanArn' => [ 'shape' => 'SavingsPlanArn', ], 'Attributes' => [ 'shape' => 'Attributes', ], 'Utilization' => [ 'shape' => 'SavingsPlansUtilization', ], 'Savings' => [ 'shape' => 'SavingsPlansSavings', ], 'AmortizedCommitment' => [ 'shape' => 'SavingsPlansAmortizedCommitment', ], ], ], 'SavingsPlansUtilizationDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'SavingsPlansUtilizationDetail', ], ], 'SavingsPlansUtilizationsByTime' => [ 'type' => 'list', 'member' => [ 'shape' => 'SavingsPlansUtilizationByTime', ], ], 'SearchString' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, 'pattern' => '[\\S\\s]*', ], 'ServiceQuotaExceededException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ServiceSpecification' => [ 'type' => 'structure', 'members' => [ 'EC2Specification' => [ 'shape' => 'EC2Specification', ], ], ], 'SortDefinition' => [ 'type' => 'structure', 'required' => [ 'Key', ], 'members' => [ 'Key' => [ 'shape' => 'SortDefinitionKey', ], 'SortOrder' => [ 'shape' => 'SortOrder', ], ], ], 'SortDefinitionKey' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, 'pattern' => '[\\S\\s]*', ], 'SortDefinitions' => [ 'type' => 'list', 'member' => [ 'shape' => 'SortDefinition', ], ], 'SortOrder' => [ 'type' => 'string', 'enum' => [ 'ASCENDING', 'DESCENDING', ], ], 'StartSavingsPlansPurchaseRecommendationGenerationRequest' => [ 'type' => 'structure', 'members' => [], ], 'StartSavingsPlansPurchaseRecommendationGenerationResponse' => [ 'type' => 'structure', 'members' => [ 'RecommendationId' => [ 'shape' => 'RecommendationId', ], 'GenerationStartedTime' => [ 'shape' => 'ZonedDateTime', ], 'EstimatedCompletionTime' => [ 'shape' => 'ZonedDateTime', ], ], ], 'Subscriber' => [ 'type' => 'structure', 'members' => [ 'Address' => [ 'shape' => 'SubscriberAddress', ], 'Type' => [ 'shape' => 'SubscriberType', ], 'Status' => [ 'shape' => 'SubscriberStatus', ], ], ], 'SubscriberAddress' => [ 'type' => 'string', 'max' => 302, 'min' => 6, 'pattern' => '(^[a-zA-Z0-9.!#$%&\'*+=?^_‘{|}~-]+@[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)+$)|(^arn:(aws[a-zA-Z-]*):sns:[a-zA-Z0-9-]+:[0-9]{12}:[a-zA-Z0-9_-]+(\\.fifo)?$)', ], 'SubscriberStatus' => [ 'type' => 'string', 'enum' => [ 'CONFIRMED', 'DECLINED', ], ], 'SubscriberType' => [ 'type' => 'string', 'enum' => [ 'EMAIL', 'SNS', ], ], 'Subscribers' => [ 'type' => 'list', 'member' => [ 'shape' => 'Subscriber', ], ], 'SupportedSavingsPlansType' => [ 'type' => 'string', 'enum' => [ 'COMPUTE_SP', 'EC2_INSTANCE_SP', 'SAGEMAKER_SP', ], ], 'TagKey' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, 'pattern' => '[\\S\\s]*', ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Entity', ], ], 'TagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', 'ResourceTags', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'Arn', ], 'ResourceTags' => [ 'shape' => 'ResourceTagList', ], ], ], 'TagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'TagValues' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Values' => [ 'shape' => 'Values', ], 'MatchOptions' => [ 'shape' => 'MatchOptions', ], ], ], 'TagValuesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagValues', ], ], 'TargetInstance' => [ 'type' => 'structure', 'members' => [ 'EstimatedMonthlyCost' => [ 'shape' => 'GenericString', ], 'EstimatedMonthlySavings' => [ 'shape' => 'GenericString', ], 'CurrencyCode' => [ 'shape' => 'GenericString', ], 'DefaultTargetInstance' => [ 'shape' => 'GenericBoolean', ], 'ResourceDetails' => [ 'shape' => 'ResourceDetails', ], 'ExpectedResourceUtilization' => [ 'shape' => 'ResourceUtilization', ], 'PlatformDifferences' => [ 'shape' => 'PlatformDifferences', ], ], ], 'TargetInstancesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TargetInstance', ], ], 'TermInYears' => [ 'type' => 'string', 'enum' => [ 'ONE_YEAR', 'THREE_YEARS', ], ], 'TerminateRecommendationDetail' => [ 'type' => 'structure', 'members' => [ 'EstimatedMonthlySavings' => [ 'shape' => 'GenericString', ], 'CurrencyCode' => [ 'shape' => 'GenericString', ], ], ], 'TooManyTagsException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], 'ResourceName' => [ 'shape' => 'Arn', ], ], 'exception' => true, ], 'TotalActualHours' => [ 'type' => 'string', ], 'TotalActualUnits' => [ 'type' => 'string', ], 'TotalAmortizedFee' => [ 'type' => 'string', ], 'TotalImpactFilter' => [ 'type' => 'structure', 'required' => [ 'NumericOperator', 'StartValue', ], 'members' => [ 'NumericOperator' => [ 'shape' => 'NumericOperator', ], 'StartValue' => [ 'shape' => 'GenericDouble', ], 'EndValue' => [ 'shape' => 'GenericDouble', ], ], ], 'TotalPotentialRISavings' => [ 'type' => 'string', ], 'TotalRunningHours' => [ 'type' => 'string', ], 'TotalRunningNormalizedUnits' => [ 'type' => 'string', ], 'UnknownMonitorException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'UnknownSubscriptionException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'UnrealizedSavings' => [ 'type' => 'string', ], 'UnresolvableUsageUnitException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'UntagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', 'ResourceTagKeys', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'Arn', ], 'ResourceTagKeys' => [ 'shape' => 'ResourceTagKeyList', ], ], ], 'UntagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'UnusedHours' => [ 'type' => 'string', ], 'UnusedUnits' => [ 'type' => 'string', ], 'UpdateAnomalyMonitorRequest' => [ 'type' => 'structure', 'required' => [ 'MonitorArn', ], 'members' => [ 'MonitorArn' => [ 'shape' => 'GenericString', ], 'MonitorName' => [ 'shape' => 'GenericString', ], ], ], 'UpdateAnomalyMonitorResponse' => [ 'type' => 'structure', 'required' => [ 'MonitorArn', ], 'members' => [ 'MonitorArn' => [ 'shape' => 'GenericString', ], ], ], 'UpdateAnomalySubscriptionRequest' => [ 'type' => 'structure', 'required' => [ 'SubscriptionArn', ], 'members' => [ 'SubscriptionArn' => [ 'shape' => 'GenericString', ], 'Threshold' => [ 'shape' => 'NullableNonNegativeDouble', 'deprecated' => true, 'deprecatedMessage' => 'Threshold has been deprecated in favor of ThresholdExpression', ], 'Frequency' => [ 'shape' => 'AnomalySubscriptionFrequency', ], 'MonitorArnList' => [ 'shape' => 'MonitorArnList', ], 'Subscribers' => [ 'shape' => 'Subscribers', ], 'SubscriptionName' => [ 'shape' => 'GenericString', ], 'ThresholdExpression' => [ 'shape' => 'Expression', ], ], ], 'UpdateAnomalySubscriptionResponse' => [ 'type' => 'structure', 'required' => [ 'SubscriptionArn', ], 'members' => [ 'SubscriptionArn' => [ 'shape' => 'GenericString', ], ], ], 'UpdateCostAllocationTagsStatusError' => [ 'type' => 'structure', 'members' => [ 'TagKey' => [ 'shape' => 'TagKey', ], 'Code' => [ 'shape' => 'GenericString', ], 'Message' => [ 'shape' => 'ErrorMessage', ], ], ], 'UpdateCostAllocationTagsStatusErrors' => [ 'type' => 'list', 'member' => [ 'shape' => 'UpdateCostAllocationTagsStatusError', ], 'max' => 20, 'min' => 0, ], 'UpdateCostAllocationTagsStatusRequest' => [ 'type' => 'structure', 'required' => [ 'CostAllocationTagsStatus', ], 'members' => [ 'CostAllocationTagsStatus' => [ 'shape' => 'CostAllocationTagStatusList', ], ], ], 'UpdateCostAllocationTagsStatusResponse' => [ 'type' => 'structure', 'members' => [ 'Errors' => [ 'shape' => 'UpdateCostAllocationTagsStatusErrors', ], ], ], 'UpdateCostCategoryDefinitionRequest' => [ 'type' => 'structure', 'required' => [ 'CostCategoryArn', 'RuleVersion', 'Rules', ], 'members' => [ 'CostCategoryArn' => [ 'shape' => 'Arn', ], 'EffectiveStart' => [ 'shape' => 'ZonedDateTime', ], 'RuleVersion' => [ 'shape' => 'CostCategoryRuleVersion', ], 'Rules' => [ 'shape' => 'CostCategoryRulesList', ], 'DefaultValue' => [ 'shape' => 'CostCategoryValue', ], 'SplitChargeRules' => [ 'shape' => 'CostCategorySplitChargeRulesList', ], ], ], 'UpdateCostCategoryDefinitionResponse' => [ 'type' => 'structure', 'members' => [ 'CostCategoryArn' => [ 'shape' => 'Arn', ], 'EffectiveStart' => [ 'shape' => 'ZonedDateTime', ], ], ], 'UsageServices' => [ 'type' => 'list', 'member' => [ 'shape' => 'GenericString', ], ], 'UtilizationByTime' => [ 'type' => 'structure', 'members' => [ 'TimePeriod' => [ 'shape' => 'DateInterval', ], 'Groups' => [ 'shape' => 'ReservationUtilizationGroups', ], 'Total' => [ 'shape' => 'ReservationAggregates', ], ], ], 'UtilizationPercentage' => [ 'type' => 'string', ], 'UtilizationPercentageInUnits' => [ 'type' => 'string', ], 'UtilizationsByTime' => [ 'type' => 'list', 'member' => [ 'shape' => 'UtilizationByTime', ], ], 'Value' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, 'pattern' => '[\\S\\s]*', ], 'Values' => [ 'type' => 'list', 'member' => [ 'shape' => 'Value', ], ], 'YearMonthDay' => [ 'type' => 'string', 'max' => 40, 'min' => 0, 'pattern' => '(\\d{4}-\\d{2}-\\d{2})(T\\d{2}:\\d{2}:\\d{2}Z)?', ], 'ZonedDateTime' => [ 'type' => 'string', 'max' => 25, 'min' => 20, 'pattern' => '^\\d{4}-\\d\\d-\\d\\dT\\d\\d:\\d\\d:\\d\\d(([+-]\\d\\d:\\d\\d)|Z)$', ], ],]; diff --git a/src/data/ce/2017-10-25/docs-2.json b/src/data/ce/2017-10-25/docs-2.json index fe2693fbba..78855d4e62 100644 --- a/src/data/ce/2017-10-25/docs-2.json +++ b/src/data/ce/2017-10-25/docs-2.json @@ -12,6 +12,7 @@ "GetAnomalies": "

Retrieves all of the cost anomalies detected on your account during the time period that's specified by the DateInterval object. Anomalies are available for up to 90 days.

", "GetAnomalyMonitors": "

Retrieves the cost anomaly monitor definitions for your account. You can filter using a list of cost anomaly monitor Amazon Resource Names (ARNs).

", "GetAnomalySubscriptions": "

Retrieves the cost anomaly subscription objects for your account. You can filter using a list of cost anomaly monitor Amazon Resource Names (ARNs).

", + "GetApproximateUsageRecords": "

Retrieves estimated usage records for hourly granularity or resource-level data at daily granularity.

", "GetCostAndUsage": "

Retrieves cost and usage metrics for your account. You can specify which cost and usage-related metric that you want the request to return. For example, you can specify BlendedCosts or UsageQuantity. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Management account in an organization in Organizations have access to all member accounts.

For information about filter limitations, see Quotas and restrictions in the Billing and Cost Management User Guide.

", "GetCostAndUsageWithResources": "

Retrieves cost and usage metrics with resources for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Management account in an organization in Organizations have access to all member accounts. This API is currently available for the Amazon Elastic Compute Cloud – Compute service only.

This is an opt-in only feature. You can enable this feature from the Cost Explorer Settings page. For information about how to access the Settings page, see Controlling Access for Cost Explorer in the Billing and Cost Management User Guide.

", "GetCostCategories": "

Retrieves an array of Cost Category names and values incurred cost.

If some Cost Category names and values are not associated with any cost, they will not be returned by this API.

", @@ -129,6 +130,18 @@ "GetAnomalySubscriptionsResponse$AnomalySubscriptions": "

A list of cost anomaly subscriptions that includes the detailed metadata for each one.

" } }, + "ApproximateUsageRecordsPerService": { + "base": null, + "refs": { + "GetApproximateUsageRecordsResponse$Services": "

The service metadata for the service or services in the response.

" + } + }, + "ApproximationDimension": { + "base": null, + "refs": { + "GetApproximateUsageRecordsRequest$ApproximationDimension": "

The service to evaluate for the usage records. You can choose resource-level data at daily granularity, or hourly granularity with or without resource-level data.

" + } + }, "Arn": { "base": null, "refs": { @@ -508,6 +521,7 @@ "refs": { "CoverageByTime$TimePeriod": "

The period that this coverage was used over.

", "ForecastResult$TimePeriod": "

The period of time that the forecast covers.

", + "GetApproximateUsageRecordsResponse$LookbackPeriod": "

The lookback period that's used for the estimation.

", "GetCostAndUsageRequest$TimePeriod": "

Sets the start date and end date for retrieving Amazon Web Services costs. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.

", "GetCostAndUsageWithResourcesRequest$TimePeriod": "

Sets the start and end dates for retrieving Amazon Web Services costs. The range must be within the last 14 days (the start date cannot be earlier than 14 days ago). The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.

", "GetCostCategoriesRequest$TimePeriod": null, @@ -795,6 +809,7 @@ "AnomalySubscription$SubscriptionArn": "

The AnomalySubscription Amazon Resource Name (ARN).

", "AnomalySubscription$AccountId": "

Your unique account identifier.

", "AnomalySubscription$SubscriptionName": "

The name for the subscription.

", + "ApproximateUsageRecordsPerService$key": null, "CostCategoryInheritedValueDimension$DimensionKey": "

The key to extract cost category values.

", "CostCategorySplitChargeRule$Source": "

The Cost Category value that you want to split. That value can't be used as a source or a target in other split charge rules. To indicate uncategorized costs, you can use an empty string as the source.

", "CostCategorySplitChargeRuleParameterValuesList$member": null, @@ -988,7 +1003,8 @@ "UpdateAnomalySubscriptionRequest$SubscriptionArn": "

A cost anomaly subscription Amazon Resource Name (ARN).

", "UpdateAnomalySubscriptionRequest$SubscriptionName": "

The new name of the subscription.

", "UpdateAnomalySubscriptionResponse$SubscriptionArn": "

A cost anomaly subscription ARN.

", - "UpdateCostAllocationTagsStatusError$Code": "

An error code representing why the action failed on this entry.

" + "UpdateCostAllocationTagsStatusError$Code": "

An error code representing why the action failed on this entry.

", + "UsageServices$member": null } }, "GetAnomaliesRequest": { @@ -1021,6 +1037,16 @@ "refs": { } }, + "GetApproximateUsageRecordsRequest": { + "base": null, + "refs": { + } + }, + "GetApproximateUsageRecordsResponse": { + "base": null, + "refs": { + } + }, "GetCostAndUsageRequest": { "base": null, "refs": { @@ -1184,6 +1210,7 @@ "Granularity": { "base": null, "refs": { + "GetApproximateUsageRecordsRequest$Granularity": "

How granular you want the data to be. You can enable data at hourly or daily granularity.

", "GetCostAndUsageRequest$Granularity": "

Sets the Amazon Web Services cost granularity to MONTHLY or DAILY, or HOURLY. If Granularity isn't set, the response object doesn't include the Granularity, either MONTHLY or DAILY, or HOURLY.

", "GetCostAndUsageWithResourcesRequest$Granularity": "

Sets the Amazon Web Services cost granularity to MONTHLY, DAILY, or HOURLY. If Granularity isn't set, the response object doesn't include the Granularity, MONTHLY, DAILY, or HOURLY.

", "GetCostForecastRequest$Granularity": "

How granular you want the forecast to be. You can get 3 months of DAILY forecasts or 12 months of MONTHLY forecasts.

The GetCostForecast operation supports only DAILY and MONTHLY granularities.

", @@ -1498,6 +1525,13 @@ "ListSavingsPlansPurchaseRecommendationGenerationRequest$PageSize": "

The number of recommendations that you want returned in a single response object.

" } }, + "NonNegativeLong": { + "base": null, + "refs": { + "ApproximateUsageRecordsPerService$value": null, + "GetApproximateUsageRecordsResponse$TotalRecords": "

The total number of usage records for all services in the services list.

" + } + }, "NullableNonNegativeDouble": { "base": null, "refs": { @@ -2323,6 +2357,12 @@ "refs": { } }, + "UsageServices": { + "base": null, + "refs": { + "GetApproximateUsageRecordsRequest$Services": "

The service metadata for the service or services you want to query. If not specified, all elements are returned.

" + } + }, "UtilizationByTime": { "base": "

The amount of utilization, in hours.

", "refs": { diff --git a/src/data/ce/2017-10-25/docs-2.json.php b/src/data/ce/2017-10-25/docs-2.json.php index 1e257449f1..e0bea1cf75 100644 --- a/src/data/ce/2017-10-25/docs-2.json.php +++ b/src/data/ce/2017-10-25/docs-2.json.php @@ -1,3 +1,3 @@ '2.0', 'service' => '

You can use the Cost Explorer API to programmatically query your cost and usage data. You can query for aggregated data such as total monthly costs or total daily usage. You can also query for granular data. This might include the number of daily write operations for Amazon DynamoDB database tables in your production environment.

Service Endpoint

The Cost Explorer API provides the following endpoint:

  • https://ce.us-east-1.amazonaws.com

For information about the costs that are associated with the Cost Explorer API, see Amazon Web Services Cost Management Pricing.

', 'operations' => [ 'CreateAnomalyMonitor' => '

Creates a new cost anomaly detection monitor with the requested type and monitor specification.

', 'CreateAnomalySubscription' => '

Adds an alert subscription to a cost anomaly detection monitor. You can use each subscription to define subscribers with email or SNS notifications. Email subscribers can set an absolute or percentage threshold and a time frequency for receiving notifications.

', 'CreateCostCategoryDefinition' => '

Creates a new Cost Category with the requested name and rules.

', 'DeleteAnomalyMonitor' => '

Deletes a cost anomaly monitor.

', 'DeleteAnomalySubscription' => '

Deletes a cost anomaly subscription.

', 'DeleteCostCategoryDefinition' => '

Deletes a Cost Category. Expenses from this month going forward will no longer be categorized with this Cost Category.

', 'DescribeCostCategoryDefinition' => '

Returns the name, Amazon Resource Name (ARN), rules, definition, and effective dates of a Cost Category that\'s defined in the account.

You have the option to use EffectiveOn to return a Cost Category that\'s active on a specific date. If there\'s no EffectiveOn specified, you see a Cost Category that\'s effective on the current date. If Cost Category is still effective, EffectiveEnd is omitted in the response.

', 'GetAnomalies' => '

Retrieves all of the cost anomalies detected on your account during the time period that\'s specified by the DateInterval object. Anomalies are available for up to 90 days.

', 'GetAnomalyMonitors' => '

Retrieves the cost anomaly monitor definitions for your account. You can filter using a list of cost anomaly monitor Amazon Resource Names (ARNs).

', 'GetAnomalySubscriptions' => '

Retrieves the cost anomaly subscription objects for your account. You can filter using a list of cost anomaly monitor Amazon Resource Names (ARNs).

', 'GetCostAndUsage' => '

Retrieves cost and usage metrics for your account. You can specify which cost and usage-related metric that you want the request to return. For example, you can specify BlendedCosts or UsageQuantity. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Management account in an organization in Organizations have access to all member accounts.

For information about filter limitations, see Quotas and restrictions in the Billing and Cost Management User Guide.

', 'GetCostAndUsageWithResources' => '

Retrieves cost and usage metrics with resources for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Management account in an organization in Organizations have access to all member accounts. This API is currently available for the Amazon Elastic Compute Cloud – Compute service only.

This is an opt-in only feature. You can enable this feature from the Cost Explorer Settings page. For information about how to access the Settings page, see Controlling Access for Cost Explorer in the Billing and Cost Management User Guide.

', 'GetCostCategories' => '

Retrieves an array of Cost Category names and values incurred cost.

If some Cost Category names and values are not associated with any cost, they will not be returned by this API.

', 'GetCostForecast' => '

Retrieves a forecast for how much Amazon Web Services predicts that you will spend over the forecast time period that you select, based on your past costs.

', 'GetDimensionValues' => '

Retrieves all available filter values for a specified filter over a period of time. You can search the dimension values for an arbitrary string.

', 'GetReservationCoverage' => '

Retrieves the reservation coverage for your account, which you can use to see how much of your Amazon Elastic Compute Cloud, Amazon ElastiCache, Amazon Relational Database Service, or Amazon Redshift usage is covered by a reservation. An organization\'s management account can see the coverage of the associated member accounts. This supports dimensions, Cost Categories, and nested expressions. For any time period, you can filter data about reservation usage by the following dimensions:

  • AZ

  • CACHE_ENGINE

  • DATABASE_ENGINE

  • DEPLOYMENT_OPTION

  • INSTANCE_TYPE

  • LINKED_ACCOUNT

  • OPERATING_SYSTEM

  • PLATFORM

  • REGION

  • SERVICE

  • TAG

  • TENANCY

To determine valid values for a dimension, use the GetDimensionValues operation.

', 'GetReservationPurchaseRecommendation' => '

Gets recommendations for reservation purchases. These recommendations might help you to reduce your costs. Reservations provide a discounted hourly rate (up to 75%) compared to On-Demand pricing.

Amazon Web Services generates your recommendations by identifying your On-Demand usage during a specific time period and collecting your usage into categories that are eligible for a reservation. After Amazon Web Services has these categories, it simulates every combination of reservations in each category of usage to identify the best number of each type of Reserved Instance (RI) to purchase to maximize your estimated savings.

For example, Amazon Web Services automatically aggregates your Amazon EC2 Linux, shared tenancy, and c4 family usage in the US West (Oregon) Region and recommends that you buy size-flexible regional reservations to apply to the c4 family usage. Amazon Web Services recommends the smallest size instance in an instance family. This makes it easier to purchase a size-flexible Reserved Instance (RI). Amazon Web Services also shows the equal number of normalized units. This way, you can purchase any instance size that you want. For this example, your RI recommendation is for c4.large because that is the smallest size instance in the c4 instance family.

', 'GetReservationUtilization' => '

Retrieves the reservation utilization for your account. Management account in an organization have access to member accounts. You can filter data by dimensions in a time period. You can use GetDimensionValues to determine the possible dimension values. Currently, you can group only by SUBSCRIPTION_ID.

', 'GetRightsizingRecommendation' => '

Creates recommendations that help you save cost by identifying idle and underutilized Amazon EC2 instances.

Recommendations are generated to either downsize or terminate instances, along with providing savings detail and metrics. For more information about calculation and function, see Optimizing Your Cost with Rightsizing Recommendations in the Billing and Cost Management User Guide.

', 'GetSavingsPlanPurchaseRecommendationDetails' => '

Retrieves the details for a Savings Plan recommendation. These details include the hourly data-points that construct the cost, coverage, and utilization charts.

', 'GetSavingsPlansCoverage' => '

Retrieves the Savings Plans covered for your account. This enables you to see how much of your cost is covered by a Savings Plan. An organization’s management account can see the coverage of the associated member accounts. This supports dimensions, Cost Categories, and nested expressions. For any time period, you can filter data for Savings Plans usage with the following dimensions:

  • LINKED_ACCOUNT

  • REGION

  • SERVICE

  • INSTANCE_FAMILY

To determine valid values for a dimension, use the GetDimensionValues operation.

', 'GetSavingsPlansPurchaseRecommendation' => '

Retrieves the Savings Plans recommendations for your account. First use StartSavingsPlansPurchaseRecommendationGeneration to generate a new set of recommendations, and then use GetSavingsPlansPurchaseRecommendation to retrieve them.

', 'GetSavingsPlansUtilization' => '

Retrieves the Savings Plans utilization for your account across date ranges with daily or monthly granularity. Management account in an organization have access to member accounts. You can use GetDimensionValues in SAVINGS_PLANS to determine the possible dimension values.

You can\'t group by any dimension values for GetSavingsPlansUtilization.

', 'GetSavingsPlansUtilizationDetails' => '

Retrieves attribute data along with aggregate utilization and savings data for a given time period. This doesn\'t support granular or grouped data (daily/monthly) in response. You can\'t retrieve data by dates in a single response similar to GetSavingsPlanUtilization, but you have the option to make multiple calls to GetSavingsPlanUtilizationDetails by providing individual dates. You can use GetDimensionValues in SAVINGS_PLANS to determine the possible dimension values.

GetSavingsPlanUtilizationDetails internally groups data by SavingsPlansArn.

', 'GetTags' => '

Queries for available tag keys and tag values for a specified period. You can search the tag values for an arbitrary string.

', 'GetUsageForecast' => '

Retrieves a forecast for how much Amazon Web Services predicts that you will use over the forecast time period that you select, based on your past usage.

', 'ListCostAllocationTags' => '

Get a list of cost allocation tags. All inputs in the API are optional and serve as filters. By default, all cost allocation tags are returned.

', 'ListCostCategoryDefinitions' => '

Returns the name, Amazon Resource Name (ARN), NumberOfRules and effective dates of all Cost Categories defined in the account. You have the option to use EffectiveOn to return a list of Cost Categories that were active on a specific date. If there is no EffectiveOn specified, you’ll see Cost Categories that are effective on the current date. If Cost Category is still effective, EffectiveEnd is omitted in the response. ListCostCategoryDefinitions supports pagination. The request can have a MaxResults range up to 100.

', 'ListSavingsPlansPurchaseRecommendationGeneration' => '

Retrieves a list of your historical recommendation generations within the past 30 days.

', 'ListTagsForResource' => '

Returns a list of resource tags associated with the resource specified by the Amazon Resource Name (ARN).

', 'ProvideAnomalyFeedback' => '

Modifies the feedback property of a given cost anomaly.

', 'StartSavingsPlansPurchaseRecommendationGeneration' => '

Requests a Savings Plans recommendation generation. This enables you to calculate a fresh set of Savings Plans recommendations that takes your latest usage data and current Savings Plans inventory into account. You can refresh Savings Plans recommendations up to three times daily for a consolidated billing family.

StartSavingsPlansPurchaseRecommendationGeneration has no request syntax because no input parameters are needed to support this operation.

', 'TagResource' => '

An API operation for adding one or more tags (key-value pairs) to a resource.

You can use the TagResource operation with a resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value you specify replaces the previous value for that tag.

Although the maximum number of array members is 200, user-tag maximum is 50. The remaining are reserved for Amazon Web Services use.

', 'UntagResource' => '

Removes one or more tags from a resource. Specify only tag keys in your request. Don\'t specify the value.

', 'UpdateAnomalyMonitor' => '

Updates an existing cost anomaly monitor. The changes made are applied going forward, and doesn\'t change anomalies detected in the past.

', 'UpdateAnomalySubscription' => '

Updates an existing cost anomaly subscription. Specify the fields that you want to update. Omitted fields are unchanged.

The JSON below describes the generic construct for each type. See Request Parameters for possible values as they apply to AnomalySubscription.

', 'UpdateCostAllocationTagsStatus' => '

Updates status for cost allocation tags in bulk, with maximum batch size of 20. If the tag status that\'s updated is the same as the existing tag status, the request doesn\'t fail. Instead, it doesn\'t have any effect on the tag status (for example, activating the active tag).

', 'UpdateCostCategoryDefinition' => '

Updates an existing Cost Category. Changes made to the Cost Category rules will be used to categorize the current month’s expenses and future expenses. This won’t change categorization for the previous months.

', ], 'shapes' => [ 'AccountScope' => [ 'base' => NULL, 'refs' => [ 'GetReservationPurchaseRecommendationRequest$AccountScope' => '

The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the management account and member accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual member accounts only.

', 'GetSavingsPlansPurchaseRecommendationRequest$AccountScope' => '

The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the management account and member accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual member accounts only.

', 'RecommendationDetailData$AccountScope' => '

The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the management account and member accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual member accounts only.

', 'ReservationPurchaseRecommendation$AccountScope' => '

The account scope that Amazon Web Services recommends that you purchase this instance for. For example, you can purchase this reservation for an entire organization in Amazon Web Services Organizations.

', 'SavingsPlansPurchaseRecommendation$AccountScope' => '

The account scope that you want your recommendations for. Amazon Web Services calculates recommendations that include the management account and member accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual member accounts only.

', ], ], 'AmortizedRecurringFee' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$AmortizedRecurringFee' => '

The monthly cost of your reservation. It\'s amortized over the reservation period.

', ], ], 'AmortizedUpfrontFee' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$AmortizedUpfrontFee' => '

The upfront cost of your reservation. It\'s amortized over the reservation period.

', ], ], 'Anomalies' => [ 'base' => NULL, 'refs' => [ 'GetAnomaliesResponse$Anomalies' => '

A list of cost anomalies.

', ], ], 'Anomaly' => [ 'base' => '

An unusual cost pattern. This consists of the detailed metadata and the current status of the anomaly object.

', 'refs' => [ 'Anomalies$member' => NULL, ], ], 'AnomalyDateInterval' => [ 'base' => '

The time period for an anomaly.

', 'refs' => [ 'GetAnomaliesRequest$DateInterval' => '

Assigns the start and end dates for retrieving cost anomalies. The returned anomaly object will have an AnomalyEndDate in the specified time range.

', ], ], 'AnomalyFeedbackType' => [ 'base' => NULL, 'refs' => [ 'Anomaly$Feedback' => '

The feedback value.

', 'GetAnomaliesRequest$Feedback' => '

Filters anomaly results by the feedback field on the anomaly object.

', 'ProvideAnomalyFeedbackRequest$Feedback' => '

Describes whether the cost anomaly was a planned activity or you considered it an anomaly.

', ], ], 'AnomalyMonitor' => [ 'base' => '

This object continuously inspects your account\'s cost data for anomalies. It\'s based on MonitorType and MonitorSpecification. The content consists of detailed metadata and the current status of the monitor object.

', 'refs' => [ 'AnomalyMonitors$member' => NULL, 'CreateAnomalyMonitorRequest$AnomalyMonitor' => '

The cost anomaly detection monitor object that you want to create.

', ], ], 'AnomalyMonitors' => [ 'base' => NULL, 'refs' => [ 'GetAnomalyMonitorsResponse$AnomalyMonitors' => '

A list of cost anomaly monitors that includes the detailed metadata for each monitor.

', ], ], 'AnomalyScore' => [ 'base' => '

Quantifies the anomaly. The higher score means that it\'s more anomalous.

', 'refs' => [ 'Anomaly$AnomalyScore' => '

The latest and maximum score for the anomaly.

', ], ], 'AnomalySubscription' => [ 'base' => '

An AnomalySubscription resource (also referred to as an alert subscription) sends notifications about specific anomalies that meet an alerting criteria defined by you.

You can specify the frequency of the alerts and the subscribers to notify.

Anomaly subscriptions can be associated with one or more AnomalyMonitor resources, and they only send notifications about anomalies detected by those associated monitors. You can also configure a threshold to further control which anomalies are included in the notifications.

Anomalies that don’t exceed the chosen threshold and therefore don’t trigger notifications from an anomaly subscription will still be available on the console and from the GetAnomalies API.

', 'refs' => [ 'AnomalySubscriptions$member' => NULL, 'CreateAnomalySubscriptionRequest$AnomalySubscription' => '

The cost anomaly subscription object that you want to create.

', ], ], 'AnomalySubscriptionFrequency' => [ 'base' => NULL, 'refs' => [ 'AnomalySubscription$Frequency' => '

The frequency that anomaly notifications are sent. Notifications are sent either over email (for DAILY and WEEKLY frequencies) or SNS (for IMMEDIATE frequency). For more information, see Creating an Amazon SNS topic for anomaly notifications.

', 'UpdateAnomalySubscriptionRequest$Frequency' => '

The update to the frequency value that subscribers receive notifications.

', ], ], 'AnomalySubscriptions' => [ 'base' => NULL, 'refs' => [ 'GetAnomalySubscriptionsResponse$AnomalySubscriptions' => '

A list of cost anomaly subscriptions that includes the detailed metadata for each one.

', ], ], 'Arn' => [ 'base' => NULL, 'refs' => [ 'CostCategory$CostCategoryArn' => '

The unique identifier for your Cost Category.

', 'CostCategoryReference$CostCategoryArn' => '

The unique identifier for your Cost Category.

', 'CreateCostCategoryDefinitionResponse$CostCategoryArn' => '

The unique identifier for your newly created Cost Category.

', 'DeleteCostCategoryDefinitionRequest$CostCategoryArn' => '

The unique identifier for your Cost Category.

', 'DeleteCostCategoryDefinitionResponse$CostCategoryArn' => '

The unique identifier for your Cost Category.

', 'DescribeCostCategoryDefinitionRequest$CostCategoryArn' => '

The unique identifier for your Cost Category.

', 'ListTagsForResourceRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the resource. For a list of supported resources, see ResourceTag.

', 'MonitorArnList$member' => NULL, 'ResourceNotFoundException$ResourceName' => NULL, 'TagResourceRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the resource. For a list of supported resources, see ResourceTag.

', 'TooManyTagsException$ResourceName' => NULL, 'UntagResourceRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the resource. For a list of supported resources, see ResourceTag.

', 'UpdateCostCategoryDefinitionRequest$CostCategoryArn' => '

The unique identifier for your Cost Category.

', 'UpdateCostCategoryDefinitionResponse$CostCategoryArn' => '

The unique identifier for your Cost Category.

', ], ], 'AttributeType' => [ 'base' => NULL, 'refs' => [ 'Attributes$key' => NULL, ], ], 'AttributeValue' => [ 'base' => NULL, 'refs' => [ 'Attributes$value' => NULL, ], ], 'Attributes' => [ 'base' => NULL, 'refs' => [ 'DimensionValuesWithAttributes$Attributes' => '

The attribute that applies to a specific Dimension.

', 'ReservationCoverageGroup$Attributes' => '

The attributes for this group of reservations.

', 'ReservationUtilizationGroup$Attributes' => '

The attributes for this group of reservations.

', 'SavingsPlansCoverage$Attributes' => '

The attribute that applies to a specific Dimension.

', 'SavingsPlansUtilizationDetail$Attributes' => '

The attribute that applies to a specific Dimension.

', ], ], 'BillExpirationException' => [ 'base' => '

The requested report expired. Update the date interval and try again.

', 'refs' => [], ], 'Context' => [ 'base' => NULL, 'refs' => [ 'GetDimensionValuesRequest$Context' => '

The context for the call to GetDimensionValues. This can be RESERVATIONS or COST_AND_USAGE. The default value is COST_AND_USAGE. If the context is set to RESERVATIONS, the resulting dimension values can be used in the GetReservationUtilization operation. If the context is set to COST_AND_USAGE, the resulting dimension values can be used in the GetCostAndUsage operation.

If you set the context to COST_AND_USAGE, you can use the following dimensions for searching:

  • AZ - The Availability Zone. An example is us-east-1a.

  • BILLING_ENTITY - The Amazon Web Services seller that your account is with. Possible values are the following:

    - Amazon Web Services(Amazon Web Services): The entity that sells Amazon Web Services.

    - AISPL (Amazon Internet Services Pvt. Ltd.): The local Indian entity that\'s an acting reseller for Amazon Web Services in India.

    - Amazon Web Services Marketplace: The entity that supports the sale of solutions that are built on Amazon Web Services by third-party software providers.

  • CACHE_ENGINE - The Amazon ElastiCache operating system. Examples are Windows or Linux.

  • DEPLOYMENT_OPTION - The scope of Amazon Relational Database Service deployments. Valid values are SingleAZ and MultiAZ.

  • DATABASE_ENGINE - The Amazon Relational Database Service database. Examples are Aurora or MySQL.

  • INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge.

  • INSTANCE_TYPE_FAMILY - A family of instance types optimized to fit different use cases. Examples are Compute Optimized (for example, C4, C5, C6g, and C7g), Memory Optimization (for example, R4, R5n, R5b, and R6g).

  • INVOICING_ENTITY - The name of the entity that issues the Amazon Web Services invoice.

  • LEGAL_ENTITY_NAME - The name of the organization that sells you Amazon Web Services services, such as Amazon Web Services.

  • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the Amazon Web Services ID of the member account.

  • OPERATING_SYSTEM - The operating system. Examples are Windows or Linux.

  • OPERATION - The action performed. Examples include RunInstance and CreateBucket.

  • PLATFORM - The Amazon EC2 operating system. Examples are Windows or Linux.

  • PURCHASE_TYPE - The reservation type of the purchase that this usage is related to. Examples include On-Demand Instances and Standard Reserved Instances.

  • RESERVATION_ID - The unique identifier for an Amazon Web Services Reservation Instance.

  • SAVINGS_PLAN_ARN - The unique identifier for your Savings Plans.

  • SAVINGS_PLANS_TYPE - Type of Savings Plans (EC2 Instance or Compute).

  • SERVICE - The Amazon Web Services service such as Amazon DynamoDB.

  • TENANCY - The tenancy of a resource. Examples are shared or dedicated.

  • USAGE_TYPE - The type of usage. An example is DataTransfer-In-Bytes. The response for the GetDimensionValues operation includes a unit attribute. Examples include GB and Hrs.

  • USAGE_TYPE_GROUP - The grouping of common usage types. An example is Amazon EC2: CloudWatch – Alarms. The response for this operation includes a unit attribute.

  • REGION - The Amazon Web Services Region.

  • RECORD_TYPE - The different types of charges such as Reserved Instance (RI) fees, usage costs, tax refunds, and credits.

  • RESOURCE_ID - The unique identifier of the resource. ResourceId is an opt-in feature only available for last 14 days for EC2-Compute Service.

If you set the context to RESERVATIONS, you can use the following dimensions for searching:

  • AZ - The Availability Zone. An example is us-east-1a.

  • CACHE_ENGINE - The Amazon ElastiCache operating system. Examples are Windows or Linux.

  • DEPLOYMENT_OPTION - The scope of Amazon Relational Database Service deployments. Valid values are SingleAZ and MultiAZ.

  • INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge.

  • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the Amazon Web Services ID of the member account.

  • PLATFORM - The Amazon EC2 operating system. Examples are Windows or Linux.

  • REGION - The Amazon Web Services Region.

  • SCOPE (Utilization only) - The scope of a Reserved Instance (RI). Values are regional or a single Availability Zone.

  • TAG (Coverage only) - The tags that are associated with a Reserved Instance (RI).

  • TENANCY - The tenancy of a resource. Examples are shared or dedicated.

If you set the context to SAVINGS_PLANS, you can use the following dimensions for searching:

  • SAVINGS_PLANS_TYPE - Type of Savings Plans (EC2 Instance or Compute)

  • PAYMENT_OPTION - The payment option for the given Savings Plans (for example, All Upfront)

  • REGION - The Amazon Web Services Region.

  • INSTANCE_TYPE_FAMILY - The family of instances (For example, m5)

  • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the Amazon Web Services ID of the member account.

  • SAVINGS_PLAN_ARN - The unique identifier for your Savings Plans.

', ], ], 'CostAllocationTag' => [ 'base' => '

The cost allocation tag structure. This includes detailed metadata for the CostAllocationTag object.

', 'refs' => [ 'CostAllocationTagList$member' => NULL, ], ], 'CostAllocationTagKeyList' => [ 'base' => NULL, 'refs' => [ 'ListCostAllocationTagsRequest$TagKeys' => '

The list of cost allocation tag keys that are returned for this request.

', ], ], 'CostAllocationTagList' => [ 'base' => NULL, 'refs' => [ 'ListCostAllocationTagsResponse$CostAllocationTags' => '

A list of cost allocation tags that includes the detailed metadata for each one.

', ], ], 'CostAllocationTagStatus' => [ 'base' => NULL, 'refs' => [ 'CostAllocationTag$Status' => '

The status of a cost allocation tag.

', 'CostAllocationTagStatusEntry$Status' => '

The status of a cost allocation tag.

', 'ListCostAllocationTagsRequest$Status' => '

The status of cost allocation tag keys that are returned for this request.

', ], ], 'CostAllocationTagStatusEntry' => [ 'base' => '

The cost allocation tag status. The status of a key can either be active or inactive.

', 'refs' => [ 'CostAllocationTagStatusList$member' => NULL, ], ], 'CostAllocationTagStatusList' => [ 'base' => NULL, 'refs' => [ 'UpdateCostAllocationTagsStatusRequest$CostAllocationTagsStatus' => '

The list of CostAllocationTagStatusEntry objects that are used to update cost allocation tags status for this request.

', ], ], 'CostAllocationTagType' => [ 'base' => NULL, 'refs' => [ 'CostAllocationTag$Type' => '

The type of cost allocation tag. You can use AWSGenerated or UserDefined type tags. AWSGenerated type tags are tags that Amazon Web Services defines and applies to support Amazon Web Services resources for cost allocation purposes. UserDefined type tags are tags that you define, create, and apply to resources.

', 'ListCostAllocationTagsRequest$Type' => '

The type of CostAllocationTag object that are returned for this request. The AWSGenerated type tags are tags that Amazon Web Services defines and applies to support Amazon Web Services resources for cost allocation purposes. The UserDefined type tags are tags that you define, create, and apply to resources.

', ], ], 'CostAllocationTagsMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListCostAllocationTagsRequest$MaxResults' => '

The maximum number of objects that are returned for this request. By default, the request returns 100 results.

', ], ], 'CostCategory' => [ 'base' => '

The structure of Cost Categories. This includes detailed metadata and the set of rules for the CostCategory object.

', 'refs' => [ 'DescribeCostCategoryDefinitionResponse$CostCategory' => NULL, ], ], 'CostCategoryInheritedValueDimension' => [ 'base' => '

When you create or update a cost category, you can define the CostCategoryRule rule type as INHERITED_VALUE. This rule type adds the flexibility to define a rule that dynamically inherits the cost category value from the dimension value that\'s defined by CostCategoryInheritedValueDimension. For example, suppose that you want to dynamically group costs that are based on the value of a specific tag key. First, choose an inherited value rule type, and then choose the tag dimension and specify the tag key to use.

', 'refs' => [ 'CostCategoryRule$InheritedValue' => '

The value the line item is categorized as if the line item contains the matched dimension.

', ], ], 'CostCategoryInheritedValueDimensionName' => [ 'base' => NULL, 'refs' => [ 'CostCategoryInheritedValueDimension$DimensionName' => '

The name of the dimension that\'s used to group costs.

If you specify LINKED_ACCOUNT_NAME, the cost category value is based on account name. If you specify TAG, the cost category value is based on the value of the specified tag key.

', ], ], 'CostCategoryMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListCostCategoryDefinitionsRequest$MaxResults' => '

The number of entries a paginated response contains.

', ], ], 'CostCategoryName' => [ 'base' => '

The unique name of the Cost Category.

', 'refs' => [ 'CostCategory$Name' => NULL, 'CostCategoryNamesList$member' => NULL, 'CostCategoryReference$Name' => NULL, 'CostCategoryValues$Key' => NULL, 'CreateCostCategoryDefinitionRequest$Name' => NULL, 'GetCostCategoriesRequest$CostCategoryName' => NULL, ], ], 'CostCategoryNamesList' => [ 'base' => NULL, 'refs' => [ 'GetCostCategoriesResponse$CostCategoryNames' => '

The names of the Cost Categories.

', ], ], 'CostCategoryProcessingStatus' => [ 'base' => '

The list of processing statuses for Cost Management products for a specific cost category.

', 'refs' => [ 'CostCategoryProcessingStatusList$member' => NULL, ], ], 'CostCategoryProcessingStatusList' => [ 'base' => NULL, 'refs' => [ 'CostCategory$ProcessingStatus' => '

The list of processing statuses for Cost Management products for a specific cost category.

', 'CostCategoryReference$ProcessingStatus' => '

The list of processing statuses for Cost Management products for a specific cost category.

', ], ], 'CostCategoryReference' => [ 'base' => '

A reference to a Cost Category containing only enough information to identify the Cost Category.

You can use this information to retrieve the full Cost Category information using DescribeCostCategory.

', 'refs' => [ 'CostCategoryReferencesList$member' => NULL, ], ], 'CostCategoryReferencesList' => [ 'base' => NULL, 'refs' => [ 'ListCostCategoryDefinitionsResponse$CostCategoryReferences' => '

A reference to a Cost Category that contains enough information to identify the Cost Category.

', ], ], 'CostCategoryRule' => [ 'base' => '

Rules are processed in order. If there are multiple rules that match the line item, then the first rule to match is used to determine that Cost Category value.

', 'refs' => [ 'CostCategoryRulesList$member' => NULL, ], ], 'CostCategoryRuleType' => [ 'base' => NULL, 'refs' => [ 'CostCategoryRule$Type' => '

You can define the CostCategoryRule rule type as either REGULAR or INHERITED_VALUE. The INHERITED_VALUE rule type adds the flexibility to define a rule that dynamically inherits the cost category value. This value is from the dimension value that\'s defined by CostCategoryInheritedValueDimension. For example, suppose that you want to costs to be dynamically grouped based on the value of a specific tag key. First, choose an inherited value rule type, and then choose the tag dimension and specify the tag key to use.

', ], ], 'CostCategoryRuleVersion' => [ 'base' => '

The rule schema version in this particular Cost Category.

', 'refs' => [ 'CostCategory$RuleVersion' => NULL, 'CreateCostCategoryDefinitionRequest$RuleVersion' => NULL, 'UpdateCostCategoryDefinitionRequest$RuleVersion' => NULL, ], ], 'CostCategoryRulesList' => [ 'base' => NULL, 'refs' => [ 'CostCategory$Rules' => '

The rules are processed in order. If there are multiple rules that match the line item, then the first rule to match is used to determine that Cost Category value.

', 'CreateCostCategoryDefinitionRequest$Rules' => '

The Cost Category rules used to categorize costs. For more information, see CostCategoryRule.

', 'UpdateCostCategoryDefinitionRequest$Rules' => '

The Expression object used to categorize costs. For more information, see CostCategoryRule .

', ], ], 'CostCategorySplitChargeMethod' => [ 'base' => NULL, 'refs' => [ 'CostCategorySplitChargeRule$Method' => '

The method that\'s used to define how to split your source costs across your targets.

Proportional - Allocates charges across your targets based on the proportional weighted cost of each target.

Fixed - Allocates charges across your targets based on your defined allocation percentage.

>Even - Allocates costs evenly across all targets.

', ], ], 'CostCategorySplitChargeRule' => [ 'base' => '

Use the split charge rule to split the cost of one Cost Category value across several other target values.

', 'refs' => [ 'CostCategorySplitChargeRulesList$member' => NULL, ], ], 'CostCategorySplitChargeRuleParameter' => [ 'base' => '

The parameters for a split charge method.

', 'refs' => [ 'CostCategorySplitChargeRuleParametersList$member' => NULL, ], ], 'CostCategorySplitChargeRuleParameterType' => [ 'base' => NULL, 'refs' => [ 'CostCategorySplitChargeRuleParameter$Type' => '

The parameter type.

', ], ], 'CostCategorySplitChargeRuleParameterValuesList' => [ 'base' => NULL, 'refs' => [ 'CostCategorySplitChargeRuleParameter$Values' => '

The parameter values.

', ], ], 'CostCategorySplitChargeRuleParametersList' => [ 'base' => NULL, 'refs' => [ 'CostCategorySplitChargeRule$Parameters' => '

The parameters for a split charge method. This is only required for the FIXED method.

', ], ], 'CostCategorySplitChargeRuleTargetsList' => [ 'base' => NULL, 'refs' => [ 'CostCategorySplitChargeRule$Targets' => '

The Cost Category values that you want to split costs across. These values can\'t be used as a source in other split charge rules.

', ], ], 'CostCategorySplitChargeRulesList' => [ 'base' => NULL, 'refs' => [ 'CostCategory$SplitChargeRules' => '

The split charge rules that are used to allocate your charges between your Cost Category values.

', 'CreateCostCategoryDefinitionRequest$SplitChargeRules' => '

The split charge rules used to allocate your charges between your Cost Category values.

', 'UpdateCostCategoryDefinitionRequest$SplitChargeRules' => '

The split charge rules used to allocate your charges between your Cost Category values.

', ], ], 'CostCategoryStatus' => [ 'base' => NULL, 'refs' => [ 'CostCategoryProcessingStatus$Status' => '

The process status for a specific cost category.

', ], ], 'CostCategoryStatusComponent' => [ 'base' => NULL, 'refs' => [ 'CostCategoryProcessingStatus$Component' => '

The Cost Management product name of the applied status.

', ], ], 'CostCategoryValue' => [ 'base' => '

The default value for the cost category.

', 'refs' => [ 'CostCategory$DefaultValue' => NULL, 'CostCategoryReference$DefaultValue' => NULL, 'CostCategoryRule$Value' => NULL, 'CostCategoryValuesList$member' => NULL, 'CreateCostCategoryDefinitionRequest$DefaultValue' => NULL, 'UpdateCostCategoryDefinitionRequest$DefaultValue' => NULL, ], ], 'CostCategoryValues' => [ 'base' => '

The Cost Categories values used for filtering the costs.

If Values and Key are not specified, the ABSENT MatchOption is applied to all Cost Categories. That is, it filters on resources that aren\'t mapped to any Cost Categories.

If Values is provided and Key isn\'t specified, the ABSENT MatchOption is applied to the Cost Categories Key only. That is, it filters on resources without the given Cost Categories key.

', 'refs' => [ 'Expression$CostCategories' => '

The filter that\'s based on CostCategory values.

', ], ], 'CostCategoryValuesList' => [ 'base' => NULL, 'refs' => [ 'CostCategoryReference$Values' => '

A list of unique cost category values in a specific cost category.

', 'GetCostCategoriesResponse$CostCategoryValues' => '

The Cost Category values.

If the CostCategoryName key isn\'t specified in the request, the CostCategoryValues fields aren\'t returned.

', ], ], 'Coverage' => [ 'base' => '

The amount of instance usage that a reservation covered.

', 'refs' => [ 'CoverageByTime$Total' => '

The total reservation coverage, in hours.

', 'GetReservationCoverageResponse$Total' => '

The total amount of instance usage that a reservation covered.

', 'ReservationCoverageGroup$Coverage' => '

How much instance usage this group of reservations covered.

', ], ], 'CoverageByTime' => [ 'base' => '

Reservation coverage for a specified period, in hours.

', 'refs' => [ 'CoveragesByTime$member' => NULL, ], ], 'CoverageCost' => [ 'base' => '

How much it costs to run an instance.

', 'refs' => [ 'Coverage$CoverageCost' => '

The amount of cost that the reservation covered.

', ], ], 'CoverageHours' => [ 'base' => '

How long a running instance either used a reservation or was On-Demand.

', 'refs' => [ 'Coverage$CoverageHours' => '

The amount of instance usage that the reservation covered, in hours.

', ], ], 'CoverageHoursPercentage' => [ 'base' => NULL, 'refs' => [ 'CoverageHours$CoverageHoursPercentage' => '

The percentage of instance hours that a reservation covered.

', ], ], 'CoverageNormalizedUnits' => [ 'base' => '

The amount of instance usage, in normalized units. You can use normalized units to see your EC2 usage for multiple sizes of instances in a uniform way. For example, suppose that you run an xlarge instance and a 2xlarge instance. If you run both instances for the same amount of time, the 2xlarge instance uses twice as much of your reservation as the xlarge instance, even though both instances show only one instance-hour. When you use normalized units instead of instance-hours, the xlarge instance used 8 normalized units, and the 2xlarge instance used 16 normalized units.

For more information, see Modifying Reserved Instances in the Amazon Elastic Compute Cloud User Guide for Linux Instances.

', 'refs' => [ 'Coverage$CoverageNormalizedUnits' => '

The amount of instance usage that the reservation covered, in normalized units.

', ], ], 'CoverageNormalizedUnitsPercentage' => [ 'base' => NULL, 'refs' => [ 'CoverageNormalizedUnits$CoverageNormalizedUnitsPercentage' => '

The percentage of your used instance normalized units that a reservation covers.

', ], ], 'CoveragesByTime' => [ 'base' => NULL, 'refs' => [ 'GetReservationCoverageResponse$CoveragesByTime' => '

The amount of time that your reservations covered.

', ], ], 'CreateAnomalyMonitorRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateAnomalyMonitorResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateAnomalySubscriptionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateAnomalySubscriptionResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateCostCategoryDefinitionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateCostCategoryDefinitionResponse' => [ 'base' => NULL, 'refs' => [], ], 'CurrentInstance' => [ 'base' => '

Context about the current instance.

', 'refs' => [ 'RightsizingRecommendation$CurrentInstance' => '

Context regarding the current instance.

', ], ], 'DataUnavailableException' => [ 'base' => '

The requested data is unavailable.

', 'refs' => [], ], 'DateInterval' => [ 'base' => '

The time period of the request.

', 'refs' => [ 'CoverageByTime$TimePeriod' => '

The period that this coverage was used over.

', 'ForecastResult$TimePeriod' => '

The period of time that the forecast covers.

', 'GetCostAndUsageRequest$TimePeriod' => '

Sets the start date and end date for retrieving Amazon Web Services costs. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.

', 'GetCostAndUsageWithResourcesRequest$TimePeriod' => '

Sets the start and end dates for retrieving Amazon Web Services costs. The range must be within the last 14 days (the start date cannot be earlier than 14 days ago). The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.

', 'GetCostCategoriesRequest$TimePeriod' => NULL, 'GetCostForecastRequest$TimePeriod' => '

The period of time that you want the forecast to cover. The start date must be equal to or no later than the current date to avoid a validation error.

', 'GetDimensionValuesRequest$TimePeriod' => '

The start date and end date for retrieving the dimension values. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.

', 'GetReservationCoverageRequest$TimePeriod' => '

The start and end dates of the period that you want to retrieve data about reservation coverage for. You can retrieve data for a maximum of 13 months: the last 12 months and the current month. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.

', 'GetReservationUtilizationRequest$TimePeriod' => '

Sets the start and end dates for retrieving Reserved Instance (RI) utilization. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.

', 'GetSavingsPlansCoverageRequest$TimePeriod' => '

The time period that you want the usage and costs for. The Start date must be within 13 months. The End date must be after the Start date, and before the current date. Future dates can\'t be used as an End date.

', 'GetSavingsPlansUtilizationDetailsRequest$TimePeriod' => '

The time period that you want the usage and costs for. The Start date must be within 13 months. The End date must be after the Start date, and before the current date. Future dates can\'t be used as an End date.

', 'GetSavingsPlansUtilizationDetailsResponse$TimePeriod' => NULL, 'GetSavingsPlansUtilizationRequest$TimePeriod' => '

The time period that you want the usage and costs for. The Start date must be within 13 months. The End date must be after the Start date, and before the current date. Future dates can\'t be used as an End date.

', 'GetTagsRequest$TimePeriod' => '

The start and end dates for retrieving the dimension values. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.

', 'GetUsageForecastRequest$TimePeriod' => '

The start and end dates of the period that you want to retrieve usage forecast for. The start date is included in the period, but the end date isn\'t included in the period. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01. The start date must be equal to or later than the current date to avoid a validation error.

', 'ResultByTime$TimePeriod' => '

The time period that the result covers.

', 'SavingsPlansCoverage$TimePeriod' => NULL, 'SavingsPlansUtilizationByTime$TimePeriod' => NULL, 'UtilizationByTime$TimePeriod' => '

The period of time that this utilization was used for.

', ], ], 'DeleteAnomalyMonitorRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAnomalyMonitorResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAnomalySubscriptionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAnomalySubscriptionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCostCategoryDefinitionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCostCategoryDefinitionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCostCategoryDefinitionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCostCategoryDefinitionResponse' => [ 'base' => NULL, 'refs' => [], ], 'Dimension' => [ 'base' => NULL, 'refs' => [ 'DimensionValues$Key' => '

The names of the metadata types that you can use to filter and group your results. For example, AZ returns a list of Availability Zones.

Not all dimensions are supported in each API. Refer to the documentation for each specific API to see what is supported.

LINK_ACCOUNT_NAME and SERVICE_CODE can only be used in CostCategoryRule.

ANOMALY_TOTAL_IMPACT_ABSOLUTE and ANOMALY_TOTAL_IMPACT_PERCENTAGE can only be used in AnomalySubscriptions.

', 'GetDimensionValuesRequest$Dimension' => '

The name of the dimension. Each Dimension is available for a different Context. For more information, see Context. LINK_ACCOUNT_NAME and SERVICE_CODE can only be used in CostCategoryRule.

', ], ], 'DimensionValues' => [ 'base' => '

The metadata that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

', 'refs' => [ 'Expression$Dimensions' => '

The specific Dimension to use for Expression.

', ], ], 'DimensionValuesWithAttributes' => [ 'base' => '

The metadata of a specific type that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

', 'refs' => [ 'DimensionValuesWithAttributesList$member' => NULL, ], ], 'DimensionValuesWithAttributesList' => [ 'base' => NULL, 'refs' => [ 'GetCostAndUsageResponse$DimensionValueAttributes' => '

The attributes that apply to a specific dimension value. For example, if the value is a linked account, the attribute is that account name.

', 'GetCostAndUsageWithResourcesResponse$DimensionValueAttributes' => '

The attributes that apply to a specific dimension value. For example, if the value is a linked account, the attribute is that account name.

', 'GetDimensionValuesResponse$DimensionValues' => '

The filters that you used to filter your request. Some dimensions are available only for a specific context.

If you set the context to COST_AND_USAGE, you can use the following dimensions for searching:

  • AZ - The Availability Zone. An example is us-east-1a.

  • DATABASE_ENGINE - The Amazon Relational Database Service database. Examples are Aurora or MySQL.

  • INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge.

  • LEGAL_ENTITY_NAME - The name of the organization that sells you Amazon Web Services services, such as Amazon Web Services.

  • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the Amazon Web Services ID of the member account.

  • OPERATING_SYSTEM - The operating system. Examples are Windows or Linux.

  • OPERATION - The action performed. Examples include RunInstance and CreateBucket.

  • PLATFORM - The Amazon EC2 operating system. Examples are Windows or Linux.

  • PURCHASE_TYPE - The reservation type of the purchase to which this usage is related. Examples include On-Demand Instances and Standard Reserved Instances.

  • SERVICE - The Amazon Web Services service such as Amazon DynamoDB.

  • USAGE_TYPE - The type of usage. An example is DataTransfer-In-Bytes. The response for the GetDimensionValues operation includes a unit attribute. Examples include GB and Hrs.

  • USAGE_TYPE_GROUP - The grouping of common usage types. An example is Amazon EC2: CloudWatch – Alarms. The response for this operation includes a unit attribute.

  • RECORD_TYPE - The different types of charges such as RI fees, usage costs, tax refunds, and credits.

  • RESOURCE_ID - The unique identifier of the resource. ResourceId is an opt-in feature only available for last 14 days for EC2-Compute Service. You can opt-in by enabling Hourly and Resource Level Data in Cost Management Console preferences.

If you set the context to RESERVATIONS, you can use the following dimensions for searching:

  • AZ - The Availability Zone. An example is us-east-1a.

  • CACHE_ENGINE - The Amazon ElastiCache operating system. Examples are Windows or Linux.

  • DEPLOYMENT_OPTION - The scope of Amazon Relational Database Service deployments. Valid values are SingleAZ and MultiAZ.

  • INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge.

  • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the Amazon Web Services ID of the member account.

  • PLATFORM - The Amazon EC2 operating system. Examples are Windows or Linux.

  • REGION - The Amazon Web Services Region.

  • SCOPE (Utilization only) - The scope of a Reserved Instance (RI). Values are regional or a single Availability Zone.

  • TAG (Coverage only) - The tags that are associated with a Reserved Instance (RI).

  • TENANCY - The tenancy of a resource. Examples are shared or dedicated.

If you set the context to SAVINGS_PLANS, you can use the following dimensions for searching:

  • SAVINGS_PLANS_TYPE - Type of Savings Plans (EC2 Instance or Compute)

  • PAYMENT_OPTION - Payment option for the given Savings Plans (for example, All Upfront)

  • REGION - The Amazon Web Services Region.

  • INSTANCE_TYPE_FAMILY - The family of instances (For example, m5)

  • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the Amazon Web Services ID of the member account.

  • SAVINGS_PLAN_ARN - The unique identifier for your Savings Plan

', ], ], 'DiskResourceUtilization' => [ 'base' => '

The field that contains a list of disk (local storage) metrics that are associated with the current instance.

', 'refs' => [ 'EC2ResourceUtilization$DiskResourceUtilization' => '

The field that contains a list of disk (local storage) metrics that are associated with the current instance.

', ], ], 'EBSResourceUtilization' => [ 'base' => '

The EBS field that contains a list of EBS metrics that are associated with the current instance.

', 'refs' => [ 'EC2ResourceUtilization$EBSResourceUtilization' => '

The EBS field that contains a list of EBS metrics that are associated with the current instance.

', ], ], 'EC2InstanceDetails' => [ 'base' => '

Details about the Amazon EC2 reservations that Amazon Web Services recommends that you purchase.

', 'refs' => [ 'InstanceDetails$EC2InstanceDetails' => '

The Amazon EC2 reservations that Amazon Web Services recommends that you purchase.

', ], ], 'EC2ResourceDetails' => [ 'base' => '

Details on the Amazon EC2 Resource.

', 'refs' => [ 'ResourceDetails$EC2ResourceDetails' => '

Details for the Amazon EC2 resource.

', ], ], 'EC2ResourceUtilization' => [ 'base' => '

Utilization metrics for the instance.

', 'refs' => [ 'ResourceUtilization$EC2ResourceUtilization' => '

The utilization of current Amazon EC2 instance.

', ], ], 'EC2Specification' => [ 'base' => '

The Amazon EC2 hardware specifications that you want Amazon Web Services to provide recommendations for.

', 'refs' => [ 'ServiceSpecification$EC2Specification' => '

The Amazon EC2 hardware specifications that you want Amazon Web Services to provide recommendations for.

', ], ], 'ESInstanceDetails' => [ 'base' => '

Details about the Amazon OpenSearch Service reservations that Amazon Web Services recommends that you purchase.

', 'refs' => [ 'InstanceDetails$ESInstanceDetails' => '

The Amazon OpenSearch Service reservations that Amazon Web Services recommends that you purchase.

', ], ], 'ElastiCacheInstanceDetails' => [ 'base' => '

Details about the Amazon ElastiCache reservations that Amazon Web Services recommends that you purchase.

', 'refs' => [ 'InstanceDetails$ElastiCacheInstanceDetails' => '

The ElastiCache reservations that Amazon Web Services recommends that you purchase.

', ], ], 'Entity' => [ 'base' => NULL, 'refs' => [ 'TagList$member' => NULL, ], ], 'ErrorMessage' => [ 'base' => NULL, 'refs' => [ 'BillExpirationException$Message' => NULL, 'DataUnavailableException$Message' => NULL, 'GenerationExistsException$Message' => NULL, 'InvalidNextTokenException$Message' => NULL, 'LimitExceededException$Message' => NULL, 'RequestChangedException$Message' => NULL, 'ResourceNotFoundException$Message' => NULL, 'ServiceQuotaExceededException$Message' => NULL, 'TooManyTagsException$Message' => NULL, 'UnknownMonitorException$Message' => NULL, 'UnknownSubscriptionException$Message' => NULL, 'UnresolvableUsageUnitException$Message' => NULL, 'UpdateCostAllocationTagsStatusError$Message' => '

A message explaining why the action failed on this entry.

', ], ], 'Estimated' => [ 'base' => NULL, 'refs' => [ 'ResultByTime$Estimated' => '

Determines whether the result is estimated.

', ], ], 'Expression' => [ 'base' => '

Use Expression to filter in various Cost Explorer APIs.

Not all Expression types are supported in each API. Refer to the documentation for each specific API to see what is supported.

There are two patterns:

  • Simple dimension values.

    • There are three types of simple dimension values: CostCategories, Tags, and Dimensions.

      • Specify the CostCategories field to define a filter that acts on Cost Categories.

      • Specify the Tags field to define a filter that acts on Cost Allocation Tags.

      • Specify the Dimensions field to define a filter that acts on the DimensionValues .

    • For each filter type, you can set the dimension name and values for the filters that you plan to use.

      • For example, you can filter for REGION==us-east-1 OR REGION==us-west-1. For GetRightsizingRecommendation, the Region is a full name (for example, REGION==US East (N. Virginia).

      • The corresponding Expression for this example is as follows: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] } }

      • As shown in the previous example, lists of dimension values are combined with OR when applying the filter.

    • You can also set different match options to further control how the filter behaves. Not all APIs support match options. Refer to the documentation for each specific API to see what is supported.

      • For example, you can filter for linked account names that start with "a".

      • The corresponding Expression for this example is as follows: { "Dimensions": { "Key": "LINKED_ACCOUNT_NAME", "MatchOptions": [ "STARTS_WITH" ], "Values": [ "a" ] } }

  • Compound Expression types with logical operations.

    • You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. By doing this, you can filter by more advanced options.

    • For example, you can filter by ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer).

    • The corresponding Expression for this example is as follows: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

    Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error: { "And": [ ... ], "Dimensions": { "Key": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

    The following is an example of the corresponding error message: "Expression has more than one roots. Only one root operator is allowed for each expression: And, Or, Not, Dimensions, Tags, CostCategories"

For the GetRightsizingRecommendation action, a combination of OR and NOT isn\'t supported. OR isn\'t supported between different dimensions, or dimensions and tags. NOT operators aren\'t supported. Dimensions are also limited to LINKED_ACCOUNT, REGION, or RIGHTSIZING_TYPE.

For the GetReservationPurchaseRecommendation action, only NOT is supported. AND and OR aren\'t supported. Dimensions are limited to LINKED_ACCOUNT.

', 'refs' => [ 'AnomalyMonitor$MonitorSpecification' => NULL, 'AnomalySubscription$ThresholdExpression' => '

An Expression object used to specify the anomalies that you want to generate alerts for. This supports dimensions and nested expressions. The supported dimensions are ANOMALY_TOTAL_IMPACT_ABSOLUTE and ANOMALY_TOTAL_IMPACT_PERCENTAGE, corresponding to an anomaly’s TotalImpact and TotalImpactPercentage, respectively (see Impact for more details). The supported nested expression types are AND and OR. The match option GREATER_THAN_OR_EQUAL is required. Values must be numbers between 0 and 10,000,000,000 in string format.

One of Threshold or ThresholdExpression is required for this resource. You cannot specify both.

The following are examples of valid ThresholdExpressions:

  • Absolute threshold: { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }

  • Percentage threshold: { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_PERCENTAGE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }

  • AND two thresholds together: { "And": [ { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }, { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_PERCENTAGE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } } ] }

  • OR two thresholds together: { "Or": [ { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }, { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_PERCENTAGE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } } ] }

', 'CostCategoryRule$Rule' => '

An Expression object used to categorize costs. This supports dimensions, tags, and nested expressions. Currently the only dimensions supported are LINKED_ACCOUNT, SERVICE_CODE, RECORD_TYPE, LINKED_ACCOUNT_NAME, REGION, and USAGE_TYPE.

RECORD_TYPE is a dimension used for Cost Explorer APIs, and is also supported for Cost Category expressions. This dimension uses different terms, depending on whether you\'re using the console or API/JSON editor. For a detailed comparison, see Term Comparisons in the Billing and Cost Management User Guide.

', 'Expression$Not' => '

Return results that don\'t match a Dimension object.

', 'Expressions$member' => NULL, 'GetCostAndUsageRequest$Filter' => '

Filters Amazon Web Services costs by different dimensions. For example, you can specify SERVICE and LINKED_ACCOUNT and get the costs that are associated with that account\'s usage of that service. You can nest Expression objects to define any combination of dimension filters. For more information, see Expression.

Valid values for MatchOptions for Dimensions are EQUALS and CASE_SENSITIVE.

Valid values for MatchOptions for CostCategories and Tags are EQUALS, ABSENT, and CASE_SENSITIVE. Default values are EQUALS and CASE_SENSITIVE.

', 'GetCostAndUsageWithResourcesRequest$Filter' => '

Filters Amazon Web Services costs by different dimensions. For example, you can specify SERVICE and LINKED_ACCOUNT and get the costs that are associated with that account\'s usage of that service. You can nest Expression objects to define any combination of dimension filters. For more information, see Expression.

The GetCostAndUsageWithResources operation requires that you either group by or filter by a ResourceId. It requires the Expression "SERVICE = Amazon Elastic Compute Cloud - Compute" in the filter.

Valid values for MatchOptions for Dimensions are EQUALS and CASE_SENSITIVE.

Valid values for MatchOptions for CostCategories and Tags are EQUALS, ABSENT, and CASE_SENSITIVE. Default values are EQUALS and CASE_SENSITIVE.

', 'GetCostCategoriesRequest$Filter' => NULL, 'GetCostForecastRequest$Filter' => '

The filters that you want to use to filter your forecast. The GetCostForecast API supports filtering by the following dimensions:

  • AZ

  • INSTANCE_TYPE

  • LINKED_ACCOUNT

  • LINKED_ACCOUNT_NAME

  • OPERATION

  • PURCHASE_TYPE

  • REGION

  • SERVICE

  • USAGE_TYPE

  • USAGE_TYPE_GROUP

  • RECORD_TYPE

  • OPERATING_SYSTEM

  • TENANCY

  • SCOPE

  • PLATFORM

  • SUBSCRIPTION_ID

  • LEGAL_ENTITY_NAME

  • DEPLOYMENT_OPTION

  • DATABASE_ENGINE

  • INSTANCE_TYPE_FAMILY

  • BILLING_ENTITY

  • RESERVATION_ID

  • SAVINGS_PLAN_ARN

', 'GetDimensionValuesRequest$Filter' => NULL, 'GetReservationCoverageRequest$Filter' => '

Filters utilization data by dimensions. You can filter by the following dimensions:

  • AZ

  • CACHE_ENGINE

  • DATABASE_ENGINE

  • DEPLOYMENT_OPTION

  • INSTANCE_TYPE

  • LINKED_ACCOUNT

  • OPERATING_SYSTEM

  • PLATFORM

  • REGION

  • SERVICE

  • TAG

  • TENANCY

GetReservationCoverage uses the same Expression object as the other operations, but only AND is supported among each dimension. You can nest only one level deep. If there are multiple values for a dimension, they are OR\'d together.

If you don\'t provide a SERVICE filter, Cost Explorer defaults to EC2.

Cost category is also supported.

', 'GetReservationPurchaseRecommendationRequest$Filter' => NULL, 'GetReservationUtilizationRequest$Filter' => '

Filters utilization data by dimensions. You can filter by the following dimensions:

  • AZ

  • CACHE_ENGINE

  • DEPLOYMENT_OPTION

  • INSTANCE_TYPE

  • LINKED_ACCOUNT

  • OPERATING_SYSTEM

  • PLATFORM

  • REGION

  • SERVICE

  • SCOPE

  • TENANCY

GetReservationUtilization uses the same Expression object as the other operations, but only AND is supported among each dimension, and nesting is supported up to only one level deep. If there are multiple values for a dimension, they are OR\'d together.

', 'GetRightsizingRecommendationRequest$Filter' => NULL, 'GetSavingsPlansCoverageRequest$Filter' => '

Filters Savings Plans coverage data by dimensions. You can filter data for Savings Plans usage with the following dimensions:

  • LINKED_ACCOUNT

  • REGION

  • SERVICE

  • INSTANCE_FAMILY

GetSavingsPlansCoverage uses the same Expression object as the other operations, but only AND is supported among each dimension. If there are multiple values for a dimension, they are OR\'d together.

Cost category is also supported.

', 'GetSavingsPlansPurchaseRecommendationRequest$Filter' => '

You can filter your recommendations by Account ID with the LINKED_ACCOUNT dimension. To filter your recommendations by Account ID, specify Key as LINKED_ACCOUNT and Value as the comma-separated Acount ID(s) that you want to see Savings Plans purchase recommendations for.

For GetSavingsPlansPurchaseRecommendation, the Filter doesn\'t include CostCategories or Tags. It only includes Dimensions. With Dimensions, Key must be LINKED_ACCOUNT and Value can be a single Account ID or multiple comma-separated Account IDs that you want to see Savings Plans Purchase Recommendations for. AND and OR operators are not supported.

', 'GetSavingsPlansUtilizationDetailsRequest$Filter' => '

Filters Savings Plans utilization coverage data for active Savings Plans dimensions. You can filter data with the following dimensions:

  • LINKED_ACCOUNT

  • SAVINGS_PLAN_ARN

  • REGION

  • PAYMENT_OPTION

  • INSTANCE_TYPE_FAMILY

GetSavingsPlansUtilizationDetails uses the same Expression object as the other operations, but only AND is supported among each dimension.

', 'GetSavingsPlansUtilizationRequest$Filter' => '

Filters Savings Plans utilization coverage data for active Savings Plans dimensions. You can filter data with the following dimensions:

  • LINKED_ACCOUNT

  • SAVINGS_PLAN_ARN

  • SAVINGS_PLANS_TYPE

  • REGION

  • PAYMENT_OPTION

  • INSTANCE_TYPE_FAMILY

GetSavingsPlansUtilization uses the same Expression object as the other operations, but only AND is supported among each dimension.

', 'GetTagsRequest$Filter' => NULL, 'GetUsageForecastRequest$Filter' => '

The filters that you want to use to filter your forecast. The GetUsageForecast API supports filtering by the following dimensions:

  • AZ

  • INSTANCE_TYPE

  • LINKED_ACCOUNT

  • LINKED_ACCOUNT_NAME

  • OPERATION

  • PURCHASE_TYPE

  • REGION

  • SERVICE

  • USAGE_TYPE

  • USAGE_TYPE_GROUP

  • RECORD_TYPE

  • OPERATING_SYSTEM

  • TENANCY

  • SCOPE

  • PLATFORM

  • SUBSCRIPTION_ID

  • LEGAL_ENTITY_NAME

  • DEPLOYMENT_OPTION

  • DATABASE_ENGINE

  • INSTANCE_TYPE_FAMILY

  • BILLING_ENTITY

  • RESERVATION_ID

  • SAVINGS_PLAN_ARN

', 'UpdateAnomalySubscriptionRequest$ThresholdExpression' => '

The update to the Expression object used to specify the anomalies that you want to generate alerts for. This supports dimensions and nested expressions. The supported dimensions are ANOMALY_TOTAL_IMPACT_ABSOLUTE and ANOMALY_TOTAL_IMPACT_PERCENTAGE, corresponding to an anomaly’s TotalImpact and TotalImpactPercentage, respectively (see Impact for more details). The supported nested expression types are AND and OR. The match option GREATER_THAN_OR_EQUAL is required. Values must be numbers between 0 and 10,000,000,000 in string format.

You can specify either Threshold or ThresholdExpression, but not both.

The following are examples of valid ThresholdExpressions:

  • Absolute threshold: { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }

  • Percentage threshold: { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_PERCENTAGE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }

  • AND two thresholds together: { "And": [ { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }, { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_PERCENTAGE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } } ] }

  • OR two thresholds together: { "Or": [ { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }, { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_PERCENTAGE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } } ] }

', ], ], 'Expressions' => [ 'base' => NULL, 'refs' => [ 'Expression$Or' => '

Return results that match either Dimension object.

', 'Expression$And' => '

Return results that match both Dimension objects.

', ], ], 'FindingReasonCode' => [ 'base' => NULL, 'refs' => [ 'FindingReasonCodes$member' => NULL, ], ], 'FindingReasonCodes' => [ 'base' => NULL, 'refs' => [ 'RightsizingRecommendation$FindingReasonCodes' => '

The list of possible reasons why the recommendation is generated, such as under- or over-utilization of specific metrics (for example, CPU, Memory, Network).

', ], ], 'ForecastResult' => [ 'base' => '

The forecast that\'s created for your query.

', 'refs' => [ 'ForecastResultsByTime$member' => NULL, ], ], 'ForecastResultsByTime' => [ 'base' => NULL, 'refs' => [ 'GetCostForecastResponse$ForecastResultsByTime' => '

The forecasts for your query, in order. For DAILY forecasts, this is a list of days. For MONTHLY forecasts, this is a list of months.

', 'GetUsageForecastResponse$ForecastResultsByTime' => '

The forecasts for your query, in order. For DAILY forecasts, this is a list of days. For MONTHLY forecasts, this is a list of months.

', ], ], 'GenerationExistsException' => [ 'base' => '

A request to generate a recommendation is already in progress.

', 'refs' => [], ], 'GenerationStatus' => [ 'base' => NULL, 'refs' => [ 'GenerationSummary$GenerationStatus' => '

Indicates whether the recommendation generation succeeded, is processing, or failed.

', 'ListSavingsPlansPurchaseRecommendationGenerationRequest$GenerationStatus' => '

The status of the recommendation generation.

', ], ], 'GenerationSummary' => [ 'base' => '

The summary of the Savings Plans recommendation generation.

', 'refs' => [ 'GenerationSummaryList$member' => NULL, ], ], 'GenerationSummaryList' => [ 'base' => NULL, 'refs' => [ 'ListSavingsPlansPurchaseRecommendationGenerationResponse$GenerationSummaryList' => '

The list of historical recommendation generations.

', ], ], 'GenericBoolean' => [ 'base' => NULL, 'refs' => [ 'EC2InstanceDetails$CurrentGeneration' => '

Determines whether the recommendation is for a current-generation instance.

', 'EC2InstanceDetails$SizeFlexEligible' => '

Determines whether the recommended reservation is size flexible.

', 'ESInstanceDetails$CurrentGeneration' => '

Determines whether the recommendation is for a current-generation instance.

', 'ESInstanceDetails$SizeFlexEligible' => '

Determines whether the recommended reservation is size flexible.

', 'ElastiCacheInstanceDetails$CurrentGeneration' => '

Determines whether the recommendation is for a current generation instance.

', 'ElastiCacheInstanceDetails$SizeFlexEligible' => '

Determines whether the recommended reservation is size flexible.

', 'MemoryDBInstanceDetails$CurrentGeneration' => '

Determines whether the recommendation is for a current generation instance.

', 'MemoryDBInstanceDetails$SizeFlexEligible' => '

Determines whether the recommended reservation is size flexible.

', 'RDSInstanceDetails$CurrentGeneration' => '

Determines whether the recommendation is for a current-generation instance.

', 'RDSInstanceDetails$SizeFlexEligible' => '

Determines whether the recommended reservation is size flexible.

', 'RedshiftInstanceDetails$CurrentGeneration' => '

Determines whether the recommendation is for a current-generation instance.

', 'RedshiftInstanceDetails$SizeFlexEligible' => '

Determines whether the recommended reservation is size flexible.

', 'RightsizingRecommendationConfiguration$BenefitsConsidered' => '

The option to consider RI or Savings Plans discount benefits in your savings calculation. The default value is TRUE.

', 'TargetInstance$DefaultTargetInstance' => '

Determines whether this recommendation is the defaulted Amazon Web Services recommendation.

', ], ], 'GenericDouble' => [ 'base' => NULL, 'refs' => [ 'AnomalyScore$MaxScore' => '

The maximum score that\'s observed during the AnomalyDateInterval.

', 'AnomalyScore$CurrentScore' => '

The last observed score.

', 'Impact$MaxImpact' => '

The maximum dollar value that\'s observed for an anomaly.

', 'Impact$TotalImpact' => '

The cumulative dollar difference between the total actual spend and total expected spend. It is calculated as TotalActualSpend - TotalExpectedSpend.

', 'TotalImpactFilter$StartValue' => '

The lower bound dollar value that\'s used in the filter.

', 'TotalImpactFilter$EndValue' => '

The upper bound dollar value that\'s used in the filter.

', ], ], 'GenericString' => [ 'base' => NULL, 'refs' => [ 'Anomaly$AnomalyId' => '

The unique identifier for the anomaly.

', 'Anomaly$DimensionValue' => '

The dimension for the anomaly (for example, an Amazon Web Service in a service monitor).

', 'Anomaly$MonitorArn' => '

The Amazon Resource Name (ARN) for the cost monitor that generated this anomaly.

', 'AnomalyMonitor$MonitorArn' => '

The Amazon Resource Name (ARN) value.

', 'AnomalyMonitor$MonitorName' => '

The name of the monitor.

', 'AnomalySubscription$SubscriptionArn' => '

The AnomalySubscription Amazon Resource Name (ARN).

', 'AnomalySubscription$AccountId' => '

Your unique account identifier.

', 'AnomalySubscription$SubscriptionName' => '

The name for the subscription.

', 'CostCategoryInheritedValueDimension$DimensionKey' => '

The key to extract cost category values.

', 'CostCategorySplitChargeRule$Source' => '

The Cost Category value that you want to split. That value can\'t be used as a source or a target in other split charge rules. To indicate uncategorized costs, you can use an empty string as the source.

', 'CostCategorySplitChargeRuleParameterValuesList$member' => NULL, 'CostCategorySplitChargeRuleTargetsList$member' => NULL, 'CreateAnomalyMonitorResponse$MonitorArn' => '

The unique identifier of your newly created cost anomaly detection monitor.

', 'CreateAnomalySubscriptionResponse$SubscriptionArn' => '

The unique identifier of your newly created cost anomaly subscription.

', 'CurrentInstance$ResourceId' => '

Resource ID of the current instance.

', 'CurrentInstance$InstanceName' => '

The name that you given an instance. This field shows as blank if you haven\'t given the instance a name.

', 'CurrentInstance$ReservationCoveredHoursInLookbackPeriod' => '

The number of hours during the lookback period that\'s covered by reservations.

', 'CurrentInstance$SavingsPlansCoveredHoursInLookbackPeriod' => '

The number of hours during the lookback period that\'s covered by Savings Plans.

', 'CurrentInstance$OnDemandHoursInLookbackPeriod' => '

The number of hours during the lookback period that\'s billed at On-Demand rates.

', 'CurrentInstance$TotalRunningHoursInLookbackPeriod' => '

The total number of hours that the instance ran during the lookback period.

', 'CurrentInstance$MonthlyCost' => '

The current On-Demand cost of operating this instance on a monthly basis.

', 'CurrentInstance$CurrencyCode' => '

The currency code that Amazon Web Services used to calculate the costs for this instance.

', 'DeleteAnomalyMonitorRequest$MonitorArn' => '

The unique identifier of the cost anomaly monitor that you want to delete.

', 'DeleteAnomalySubscriptionRequest$SubscriptionArn' => '

The unique identifier of the cost anomaly subscription that you want to delete.

', 'DiskResourceUtilization$DiskReadOpsPerSecond' => '

The maximum number of read operations per second.

', 'DiskResourceUtilization$DiskWriteOpsPerSecond' => '

The maximum number of write operations per second.

', 'DiskResourceUtilization$DiskReadBytesPerSecond' => '

The maximum read throughput operations per second.

', 'DiskResourceUtilization$DiskWriteBytesPerSecond' => '

The maximum write throughput operations per second.

', 'EBSResourceUtilization$EbsReadOpsPerSecond' => '

The maximum number of read operations per second.

', 'EBSResourceUtilization$EbsWriteOpsPerSecond' => '

The maximum number of write operations per second.

', 'EBSResourceUtilization$EbsReadBytesPerSecond' => '

The maximum size of read operations per second

', 'EBSResourceUtilization$EbsWriteBytesPerSecond' => '

The maximum size of write operations per second.

', 'EC2InstanceDetails$Family' => '

The instance family of the recommended reservation.

', 'EC2InstanceDetails$InstanceType' => '

The type of instance that Amazon Web Services recommends.

', 'EC2InstanceDetails$Region' => '

The Amazon Web Services Region of the recommended reservation.

', 'EC2InstanceDetails$AvailabilityZone' => '

The Availability Zone of the recommended reservation.

', 'EC2InstanceDetails$Platform' => '

The platform of the recommended reservation. The platform is the specific combination of operating system, license model, and software on an instance.

', 'EC2InstanceDetails$Tenancy' => '

Determines whether the recommended reservation is dedicated or shared.

', 'EC2ResourceDetails$HourlyOnDemandRate' => '

The hourly public On-Demand rate for the instance type.

', 'EC2ResourceDetails$InstanceType' => '

The type of Amazon Web Services instance.

', 'EC2ResourceDetails$Platform' => '

The platform of the Amazon Web Services instance. The platform is the specific combination of operating system, license model, and software on an instance.

', 'EC2ResourceDetails$Region' => '

The Amazon Web Services Region of the instance.

', 'EC2ResourceDetails$Sku' => '

The SKU of the product.

', 'EC2ResourceDetails$Memory' => '

The memory capacity of the Amazon Web Services instance.

', 'EC2ResourceDetails$NetworkPerformance' => '

The network performance capacity of the Amazon Web Services instance.

', 'EC2ResourceDetails$Storage' => '

The disk storage of the Amazon Web Services instance. This doesn\'t include EBS storage.

', 'EC2ResourceDetails$Vcpu' => '

The number of VCPU cores in the Amazon Web Services instance type.

', 'EC2ResourceUtilization$MaxCpuUtilizationPercentage' => '

The maximum observed or expected CPU utilization of the instance.

', 'EC2ResourceUtilization$MaxMemoryUtilizationPercentage' => '

The maximum observed or expected memory utilization of the instance.

', 'EC2ResourceUtilization$MaxStorageUtilizationPercentage' => '

The maximum observed or expected storage utilization of the instance. This doesn\'t include EBS storage.

', 'ESInstanceDetails$InstanceClass' => '

The class of instance that Amazon Web Services recommends.

', 'ESInstanceDetails$InstanceSize' => '

The size of instance that Amazon Web Services recommends.

', 'ESInstanceDetails$Region' => '

The Amazon Web Services Region of the recommended reservation.

', 'ElastiCacheInstanceDetails$Family' => '

The instance family of the recommended reservation.

', 'ElastiCacheInstanceDetails$NodeType' => '

The type of node that Amazon Web Services recommends.

', 'ElastiCacheInstanceDetails$Region' => '

The Amazon Web Services Region of the recommended reservation.

', 'ElastiCacheInstanceDetails$ProductDescription' => '

The description of the recommended reservation.

', 'ForecastResult$MeanValue' => '

The mean value of the forecast.

', 'ForecastResult$PredictionIntervalLowerBound' => '

The lower limit for the prediction interval.

', 'ForecastResult$PredictionIntervalUpperBound' => '

The upper limit for the prediction interval.

', 'GetAnomaliesRequest$MonitorArn' => '

Retrieves all of the cost anomalies detected for a specific cost anomaly monitor Amazon Resource Name (ARN).

', 'GetAnomalySubscriptionsRequest$MonitorArn' => '

Cost anomaly monitor ARNs.

', 'GetReservationPurchaseRecommendationRequest$AccountId' => '

The account ID that\'s associated with the recommendation.

', 'GetReservationPurchaseRecommendationRequest$Service' => '

The specific service that you want recommendations for.

', 'GetRightsizingRecommendationRequest$Service' => '

The specific service that you want recommendations for. The only valid value for GetRightsizingRecommendation is "AmazonEC2".

', 'MemoryDBInstanceDetails$Family' => '

The instance family of the recommended reservation.

', 'MemoryDBInstanceDetails$NodeType' => '

The node type of the recommended reservation.

', 'MemoryDBInstanceDetails$Region' => '

The Amazon Web Services Region of the recommended reservation.

', 'NetworkResourceUtilization$NetworkInBytesPerSecond' => '

The network inbound throughput utilization measured in Bytes per second (Bps).

', 'NetworkResourceUtilization$NetworkOutBytesPerSecond' => '

The network outbound throughput utilization measured in Bytes per second (Bps).

', 'NetworkResourceUtilization$NetworkPacketsInPerSecond' => '

The network inbound packets that are measured in packets per second.

', 'NetworkResourceUtilization$NetworkPacketsOutPerSecond' => '

The network outbound packets that are measured in packets per second.

', 'ProvideAnomalyFeedbackRequest$AnomalyId' => '

A cost anomaly ID.

', 'ProvideAnomalyFeedbackResponse$AnomalyId' => '

The ID of the modified cost anomaly.

', 'RDSInstanceDetails$Family' => '

The instance family of the recommended reservation.

', 'RDSInstanceDetails$InstanceType' => '

The type of instance that Amazon Web Services recommends.

', 'RDSInstanceDetails$Region' => '

The Amazon Web Services Region of the recommended reservation.

', 'RDSInstanceDetails$DatabaseEngine' => '

The database engine that the recommended reservation supports.

', 'RDSInstanceDetails$DatabaseEdition' => '

The database edition that the recommended reservation supports.

', 'RDSInstanceDetails$DeploymentOption' => '

Determines whether the recommendation is for a reservation in a single Availability Zone or a reservation with a backup in a second Availability Zone.

', 'RDSInstanceDetails$LicenseModel' => '

The license model that the recommended reservation supports.

', 'RecommendationDetailData$AccountId' => '

The AccountID that the recommendation is generated for.

', 'RecommendationDetailData$CurrencyCode' => '

The currency code that Amazon Web Services used to generate the recommendation and present potential savings.

', 'RecommendationDetailData$InstanceFamily' => '

The instance family of the recommended Savings Plan.

', 'RecommendationDetailData$Region' => '

The region the recommendation is generated for.

', 'RecommendationDetailData$OfferingId' => '

The unique ID that\'s used to distinguish Savings Plans from one another.

', 'RecommendationDetailData$CurrentAverageHourlyOnDemandSpend' => '

The average value of hourly On-Demand spend over the lookback period of the applicable usage type.

', 'RecommendationDetailData$CurrentMaximumHourlyOnDemandSpend' => '

The highest value of hourly On-Demand spend over the lookback period of the applicable usage type.

', 'RecommendationDetailData$CurrentMinimumHourlyOnDemandSpend' => '

The lowest value of hourly On-Demand spend over the lookback period of the applicable usage type.

', 'RecommendationDetailData$EstimatedAverageUtilization' => '

The estimated utilization of the recommended Savings Plan.

', 'RecommendationDetailData$EstimatedMonthlySavingsAmount' => '

The estimated monthly savings amount based on the recommended Savings Plan.

', 'RecommendationDetailData$EstimatedOnDemandCost' => '

The remaining On-Demand cost estimated to not be covered by the recommended Savings Plan, over the length of the lookback period.

', 'RecommendationDetailData$EstimatedOnDemandCostWithCurrentCommitment' => '

The estimated On-Demand costs you expect with no additional commitment, based on your usage of the selected time period and the Savings Plan you own.

', 'RecommendationDetailData$EstimatedROI' => '

The estimated return on investment that\'s based on the recommended Savings Plan that you purchased. This is calculated as estimatedSavingsAmount/estimatedSPCost*100.

', 'RecommendationDetailData$EstimatedSPCost' => '

The cost of the recommended Savings Plan over the length of the lookback period.

', 'RecommendationDetailData$EstimatedSavingsAmount' => '

The estimated savings amount that\'s based on the recommended Savings Plan over the length of the lookback period.

', 'RecommendationDetailData$EstimatedSavingsPercentage' => '

The estimated savings percentage relative to the total cost of applicable On-Demand usage over the lookback period.

', 'RecommendationDetailData$ExistingHourlyCommitment' => '

The existing hourly commitment for the Savings Plan type.

', 'RecommendationDetailData$HourlyCommitmentToPurchase' => '

The recommended hourly commitment level for the Savings Plan type and the configuration that\'s based on the usage during the lookback period.

', 'RecommendationDetailData$UpfrontCost' => '

The upfront cost of the recommended Savings Plan, based on the selected payment option.

', 'RecommendationDetailData$CurrentAverageCoverage' => '

The average value of hourly coverage over the lookback period.

', 'RecommendationDetailData$EstimatedAverageCoverage' => '

The estimated coverage of the recommended Savings Plan.

', 'RecommendationDetailHourlyMetrics$EstimatedOnDemandCost' => '

The remaining On-Demand cost estimated to not be covered by the recommended Savings Plan, over the length of the lookback period.

', 'RecommendationDetailHourlyMetrics$CurrentCoverage' => '

The current amount of Savings Plans eligible usage that the Savings Plan covered.

', 'RecommendationDetailHourlyMetrics$EstimatedCoverage' => '

The estimated coverage amount based on the recommended Savings Plan.

', 'RecommendationDetailHourlyMetrics$EstimatedNewCommitmentUtilization' => '

The estimated utilization for the recommended Savings Plan.

', 'RedshiftInstanceDetails$Family' => '

The instance family of the recommended reservation.

', 'RedshiftInstanceDetails$NodeType' => '

The type of node that Amazon Web Services recommends.

', 'RedshiftInstanceDetails$Region' => '

The Amazon Web Services Region of the recommended reservation.

', 'ReservationPurchaseRecommendationDetail$AccountId' => '

The account that this Reserved Instance (RI) recommendation is for.

', 'ReservationPurchaseRecommendationDetail$RecommendedNumberOfInstancesToPurchase' => '

The number of instances that Amazon Web Services recommends that you purchase.

', 'ReservationPurchaseRecommendationDetail$RecommendedNormalizedUnitsToPurchase' => '

The number of normalized units that Amazon Web Services recommends that you purchase.

', 'ReservationPurchaseRecommendationDetail$MinimumNumberOfInstancesUsedPerHour' => '

The minimum number of instances that you used in an hour during the historical period. Amazon Web Services uses this to calculate your recommended reservation purchases.

', 'ReservationPurchaseRecommendationDetail$MinimumNormalizedUnitsUsedPerHour' => '

The minimum number of normalized units that you used in an hour during the historical period. Amazon Web Services uses this to calculate your recommended reservation purchases.

', 'ReservationPurchaseRecommendationDetail$MaximumNumberOfInstancesUsedPerHour' => '

The maximum number of instances that you used in an hour during the historical period. Amazon Web Services uses this to calculate your recommended reservation purchases.

', 'ReservationPurchaseRecommendationDetail$MaximumNormalizedUnitsUsedPerHour' => '

The maximum number of normalized units that you used in an hour during the historical period. Amazon Web Services uses this to calculate your recommended reservation purchases.

', 'ReservationPurchaseRecommendationDetail$AverageNumberOfInstancesUsedPerHour' => '

The average number of instances that you used in an hour during the historical period. Amazon Web Services uses this to calculate your recommended reservation purchases.

', 'ReservationPurchaseRecommendationDetail$AverageNormalizedUnitsUsedPerHour' => '

The average number of normalized units that you used in an hour during the historical period. Amazon Web Services uses this to calculate your recommended reservation purchases.

', 'ReservationPurchaseRecommendationDetail$AverageUtilization' => '

The average utilization of your instances. Amazon Web Services uses this to calculate your recommended reservation purchases.

', 'ReservationPurchaseRecommendationDetail$EstimatedBreakEvenInMonths' => '

How long Amazon Web Services estimates that it takes for this instance to start saving you money, in months.

', 'ReservationPurchaseRecommendationDetail$CurrencyCode' => '

The currency code that Amazon Web Services used to calculate the costs for this instance.

', 'ReservationPurchaseRecommendationDetail$EstimatedMonthlySavingsAmount' => '

How much Amazon Web Services estimates that this specific recommendation might save you in a month.

', 'ReservationPurchaseRecommendationDetail$EstimatedMonthlySavingsPercentage' => '

How much Amazon Web Services estimates that this specific recommendation might save you in a month, as a percentage of your overall costs.

', 'ReservationPurchaseRecommendationDetail$EstimatedMonthlyOnDemandCost' => '

How much Amazon Web Services estimates that you spend on On-Demand Instances in a month.

', 'ReservationPurchaseRecommendationDetail$EstimatedReservationCostForLookbackPeriod' => '

How much Amazon Web Services estimates that you might spend for all usage during the specified historical period if you had a reservation.

', 'ReservationPurchaseRecommendationDetail$UpfrontCost' => '

How much purchasing this instance costs you upfront.

', 'ReservationPurchaseRecommendationDetail$RecurringStandardMonthlyCost' => '

How much purchasing this instance costs you on a monthly basis.

', 'ReservationPurchaseRecommendationMetadata$RecommendationId' => '

The ID for this specific recommendation.

', 'ReservationPurchaseRecommendationMetadata$GenerationTimestamp' => '

The timestamp for when Amazon Web Services made this recommendation.

', 'ReservationPurchaseRecommendationSummary$TotalEstimatedMonthlySavingsAmount' => '

The total amount that Amazon Web Services estimates that this recommendation could save you in a month.

', 'ReservationPurchaseRecommendationSummary$TotalEstimatedMonthlySavingsPercentage' => '

The total amount that Amazon Web Services estimates that this recommendation could save you in a month, as a percentage of your costs.

', 'ReservationPurchaseRecommendationSummary$CurrencyCode' => '

The currency code used for this recommendation.

', 'RightsizingRecommendation$AccountId' => '

The account that this recommendation is for.

', 'RightsizingRecommendationMetadata$RecommendationId' => '

The ID for this specific recommendation.

', 'RightsizingRecommendationMetadata$GenerationTimestamp' => '

The timestamp for when Amazon Web Services made this recommendation.

', 'RightsizingRecommendationMetadata$AdditionalMetadata' => '

Additional metadata that might be applicable to the recommendation.

', 'RightsizingRecommendationSummary$TotalRecommendationCount' => '

The total number of instance recommendations.

', 'RightsizingRecommendationSummary$EstimatedTotalMonthlySavingsAmount' => '

The estimated total savings resulting from modifications, on a monthly basis.

', 'RightsizingRecommendationSummary$SavingsCurrencyCode' => '

The currency code that Amazon Web Services used to calculate the savings.

', 'RightsizingRecommendationSummary$SavingsPercentage' => '

The savings percentage based on the recommended modifications. It\'s relative to the total On-Demand costs that are associated with these instances.

', 'RootCause$Service' => '

The Amazon Web Service name that\'s associated with the cost anomaly.

', 'RootCause$Region' => '

The Amazon Web Services Region that\'s associated with the cost anomaly.

', 'RootCause$LinkedAccount' => '

The member account value that\'s associated with the cost anomaly.

', 'RootCause$UsageType' => '

The UsageType value that\'s associated with the cost anomaly.

', 'RootCause$LinkedAccountName' => '

The member account name value that\'s associated with the cost anomaly.

', 'SavingsPlansAmortizedCommitment$AmortizedRecurringCommitment' => '

The amortized amount of your Savings Plans commitment that was purchased with either a Partial or a NoUpfront.

', 'SavingsPlansAmortizedCommitment$AmortizedUpfrontCommitment' => '

The amortized amount of your Savings Plans commitment that was purchased with an Upfront or PartialUpfront Savings Plans.

', 'SavingsPlansAmortizedCommitment$TotalAmortizedCommitment' => '

The total amortized amount of your Savings Plans commitment, regardless of your Savings Plans purchase method.

', 'SavingsPlansCoverageData$SpendCoveredBySavingsPlans' => '

The amount of your Amazon Web Services usage that\'s covered by a Savings Plans.

', 'SavingsPlansCoverageData$OnDemandCost' => '

The cost of your Amazon Web Services usage at the public On-Demand rate.

', 'SavingsPlansCoverageData$TotalCost' => '

The total cost of your Amazon Web Services usage, regardless of your purchase option.

', 'SavingsPlansCoverageData$CoveragePercentage' => '

The percentage of your existing Savings Plans covered usage, divided by all of your eligible Savings Plans usage in an account (or set of accounts).

', 'SavingsPlansDetails$Region' => '

A collection of Amazon Web Services resources in a geographic area. Each Amazon Web Services Region is isolated and independent of the other Regions.

', 'SavingsPlansDetails$InstanceFamily' => '

A group of instance types that Savings Plans applies to.

', 'SavingsPlansDetails$OfferingId' => '

The unique ID that\'s used to distinguish Savings Plans from one another.

', 'SavingsPlansPurchaseRecommendationDetail$AccountId' => '

The AccountID the recommendation is generated for.

', 'SavingsPlansPurchaseRecommendationDetail$UpfrontCost' => '

The upfront cost of the recommended Savings Plans, based on the selected payment option.

', 'SavingsPlansPurchaseRecommendationDetail$EstimatedROI' => '

The estimated return on investment that\'s based on the recommended Savings Plans that you purchased. This is calculated as estimatedSavingsAmount/ estimatedSPCost*100.

', 'SavingsPlansPurchaseRecommendationDetail$CurrencyCode' => '

The currency code that Amazon Web Services used to generate the recommendations and present potential savings.

', 'SavingsPlansPurchaseRecommendationDetail$EstimatedSPCost' => '

The cost of the recommended Savings Plans over the length of the lookback period.

', 'SavingsPlansPurchaseRecommendationDetail$EstimatedOnDemandCost' => '

The remaining On-Demand cost estimated to not be covered by the recommended Savings Plans, over the length of the lookback period.

', 'SavingsPlansPurchaseRecommendationDetail$EstimatedOnDemandCostWithCurrentCommitment' => '

The estimated On-Demand costs you expect with no additional commitment, based on your usage of the selected time period and the Savings Plans you own.

', 'SavingsPlansPurchaseRecommendationDetail$EstimatedSavingsAmount' => '

The estimated savings amount that\'s based on the recommended Savings Plans over the length of the lookback period.

', 'SavingsPlansPurchaseRecommendationDetail$EstimatedSavingsPercentage' => '

The estimated savings percentage relative to the total cost of applicable On-Demand usage over the lookback period.

', 'SavingsPlansPurchaseRecommendationDetail$HourlyCommitmentToPurchase' => '

The recommended hourly commitment level for the Savings Plans type and the configuration that\'s based on the usage during the lookback period.

', 'SavingsPlansPurchaseRecommendationDetail$EstimatedAverageUtilization' => '

The estimated utilization of the recommended Savings Plans.

', 'SavingsPlansPurchaseRecommendationDetail$EstimatedMonthlySavingsAmount' => '

The estimated monthly savings amount based on the recommended Savings Plans.

', 'SavingsPlansPurchaseRecommendationDetail$CurrentMinimumHourlyOnDemandSpend' => '

The lowest value of hourly On-Demand spend over the lookback period of the applicable usage type.

', 'SavingsPlansPurchaseRecommendationDetail$CurrentMaximumHourlyOnDemandSpend' => '

The highest value of hourly On-Demand spend over the lookback period of the applicable usage type.

', 'SavingsPlansPurchaseRecommendationDetail$CurrentAverageHourlyOnDemandSpend' => '

The average value of hourly On-Demand spend over the lookback period of the applicable usage type.

', 'SavingsPlansPurchaseRecommendationMetadata$RecommendationId' => '

The unique identifier for the recommendation set.

', 'SavingsPlansPurchaseRecommendationMetadata$GenerationTimestamp' => '

The timestamp that shows when the recommendations were generated.

', 'SavingsPlansPurchaseRecommendationMetadata$AdditionalMetadata' => '

Additional metadata that might be applicable to the recommendation.

', 'SavingsPlansPurchaseRecommendationSummary$EstimatedROI' => '

The estimated return on investment that\'s based on the recommended Savings Plans and estimated savings.

', 'SavingsPlansPurchaseRecommendationSummary$CurrencyCode' => '

The currency code that Amazon Web Services used to generate the recommendations and present potential savings.

', 'SavingsPlansPurchaseRecommendationSummary$EstimatedTotalCost' => '

The estimated total cost of the usage after purchasing the recommended Savings Plans. This is a sum of the cost of Savings Plans during this term, and the remaining On-Demand usage.

', 'SavingsPlansPurchaseRecommendationSummary$CurrentOnDemandSpend' => '

The current total on demand spend of the applicable usage types over the lookback period.

', 'SavingsPlansPurchaseRecommendationSummary$EstimatedSavingsAmount' => '

The estimated total savings over the lookback period, based on the purchase of the recommended Savings Plans.

', 'SavingsPlansPurchaseRecommendationSummary$TotalRecommendationCount' => '

The aggregate number of Savings Plans recommendations that exist for your account.

', 'SavingsPlansPurchaseRecommendationSummary$DailyCommitmentToPurchase' => '

The recommended Savings Plans cost on a daily (24 hourly) basis.

', 'SavingsPlansPurchaseRecommendationSummary$HourlyCommitmentToPurchase' => '

The recommended hourly commitment that\'s based on the recommendation parameters.

', 'SavingsPlansPurchaseRecommendationSummary$EstimatedSavingsPercentage' => '

The estimated savings relative to the total cost of On-Demand usage, over the lookback period. This is calculated as estimatedSavingsAmount/ CurrentOnDemandSpend*100.

', 'SavingsPlansPurchaseRecommendationSummary$EstimatedMonthlySavingsAmount' => '

The estimated monthly savings amount that\'s based on the recommended Savings Plans purchase.

', 'SavingsPlansPurchaseRecommendationSummary$EstimatedOnDemandCostWithCurrentCommitment' => '

The estimated On-Demand costs you expect with no additional commitment. It\'s based on your usage of the selected time period and the Savings Plans you own.

', 'SavingsPlansSavings$NetSavings' => '

The savings amount that you\'re accumulating for the usage that\'s covered by a Savings Plans, when compared to the On-Demand equivalent of the same usage.

', 'SavingsPlansSavings$OnDemandCostEquivalent' => '

How much the amount that the usage would have cost if it was accrued at the On-Demand rate.

', 'SavingsPlansUtilization$TotalCommitment' => '

The total amount of Savings Plans commitment that\'s been purchased in an account (or set of accounts).

', 'SavingsPlansUtilization$UsedCommitment' => '

The amount of your Savings Plans commitment that was consumed from Savings Plans eligible usage in a specific period.

', 'SavingsPlansUtilization$UnusedCommitment' => '

The amount of your Savings Plans commitment that wasn\'t consumed from Savings Plans eligible usage in a specific period.

', 'SavingsPlansUtilization$UtilizationPercentage' => '

The amount of UsedCommitment divided by the TotalCommitment for your Savings Plans.

', 'TargetInstance$EstimatedMonthlyCost' => '

The expected cost to operate this instance type on a monthly basis.

', 'TargetInstance$EstimatedMonthlySavings' => '

The estimated savings that result from modification, on a monthly basis.

', 'TargetInstance$CurrencyCode' => '

The currency code that Amazon Web Services used to calculate the costs for this instance.

', 'TerminateRecommendationDetail$EstimatedMonthlySavings' => '

The estimated savings that result from modification, on a monthly basis.

', 'TerminateRecommendationDetail$CurrencyCode' => '

The currency code that Amazon Web Services used to calculate the costs for this instance.

', 'UpdateAnomalyMonitorRequest$MonitorArn' => '

Cost anomaly monitor Amazon Resource Names (ARNs).

', 'UpdateAnomalyMonitorRequest$MonitorName' => '

The new name for the cost anomaly monitor.

', 'UpdateAnomalyMonitorResponse$MonitorArn' => '

A cost anomaly monitor ARN.

', 'UpdateAnomalySubscriptionRequest$SubscriptionArn' => '

A cost anomaly subscription Amazon Resource Name (ARN).

', 'UpdateAnomalySubscriptionRequest$SubscriptionName' => '

The new name of the subscription.

', 'UpdateAnomalySubscriptionResponse$SubscriptionArn' => '

A cost anomaly subscription ARN.

', 'UpdateCostAllocationTagsStatusError$Code' => '

An error code representing why the action failed on this entry.

', ], ], 'GetAnomaliesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetAnomaliesResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetAnomalyMonitorsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetAnomalyMonitorsResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetAnomalySubscriptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetAnomalySubscriptionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetCostAndUsageRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetCostAndUsageResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetCostAndUsageWithResourcesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetCostAndUsageWithResourcesResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetCostCategoriesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetCostCategoriesResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetCostForecastRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetCostForecastResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetDimensionValuesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetDimensionValuesResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetReservationCoverageRequest' => [ 'base' => '

You can use the following request parameters to query for how much of your instance usage a reservation covered.

', 'refs' => [], ], 'GetReservationCoverageResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetReservationPurchaseRecommendationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetReservationPurchaseRecommendationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetReservationUtilizationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetReservationUtilizationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetRightsizingRecommendationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetRightsizingRecommendationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlanPurchaseRecommendationDetailsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlanPurchaseRecommendationDetailsResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlansCoverageRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlansCoverageResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlansPurchaseRecommendationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlansPurchaseRecommendationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlansUtilizationDetailsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlansUtilizationDetailsResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlansUtilizationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlansUtilizationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetTagsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTagsResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetUsageForecastRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetUsageForecastResponse' => [ 'base' => NULL, 'refs' => [], ], 'Granularity' => [ 'base' => NULL, 'refs' => [ 'GetCostAndUsageRequest$Granularity' => '

Sets the Amazon Web Services cost granularity to MONTHLY or DAILY, or HOURLY. If Granularity isn\'t set, the response object doesn\'t include the Granularity, either MONTHLY or DAILY, or HOURLY.

', 'GetCostAndUsageWithResourcesRequest$Granularity' => '

Sets the Amazon Web Services cost granularity to MONTHLY, DAILY, or HOURLY. If Granularity isn\'t set, the response object doesn\'t include the Granularity, MONTHLY, DAILY, or HOURLY.

', 'GetCostForecastRequest$Granularity' => '

How granular you want the forecast to be. You can get 3 months of DAILY forecasts or 12 months of MONTHLY forecasts.

The GetCostForecast operation supports only DAILY and MONTHLY granularities.

', 'GetReservationCoverageRequest$Granularity' => '

The granularity of the Amazon Web Services cost data for the reservation. Valid values are MONTHLY and DAILY.

If GroupBy is set, Granularity can\'t be set. If Granularity isn\'t set, the response object doesn\'t include Granularity, either MONTHLY or DAILY.

The GetReservationCoverage operation supports only DAILY and MONTHLY granularities.

', 'GetReservationUtilizationRequest$Granularity' => '

If GroupBy is set, Granularity can\'t be set. If Granularity isn\'t set, the response object doesn\'t include Granularity, either MONTHLY or DAILY. If both GroupBy and Granularity aren\'t set, GetReservationUtilization defaults to DAILY.

The GetReservationUtilization operation supports only DAILY and MONTHLY granularities.

', 'GetSavingsPlansCoverageRequest$Granularity' => '

The granularity of the Amazon Web Services cost data for your Savings Plans. Granularity can\'t be set if GroupBy is set.

The GetSavingsPlansCoverage operation supports only DAILY and MONTHLY granularities.

', 'GetSavingsPlansUtilizationRequest$Granularity' => '

The granularity of the Amazon Web Services utillization data for your Savings Plans.

The GetSavingsPlansUtilization operation supports only DAILY and MONTHLY granularities.

', 'GetUsageForecastRequest$Granularity' => '

How granular you want the forecast to be. You can get 3 months of DAILY forecasts or 12 months of MONTHLY forecasts.

The GetUsageForecast operation supports only DAILY and MONTHLY granularities.

', ], ], 'Group' => [ 'base' => '

One level of grouped data in the results.

', 'refs' => [ 'Groups$member' => NULL, ], ], 'GroupDefinition' => [ 'base' => '

Represents a group when you specify a group by criteria or in the response to a query with a specific grouping.

', 'refs' => [ 'GroupDefinitions$member' => NULL, ], ], 'GroupDefinitionKey' => [ 'base' => NULL, 'refs' => [ 'GroupDefinition$Key' => '

The string that represents a key for a specified group.

', ], ], 'GroupDefinitionType' => [ 'base' => NULL, 'refs' => [ 'GroupDefinition$Type' => '

The string that represents the type of group.

', ], ], 'GroupDefinitions' => [ 'base' => NULL, 'refs' => [ 'GetCostAndUsageRequest$GroupBy' => '

You can group Amazon Web Services costs using up to two different groups, either dimensions, tag keys, cost categories, or any two group by types.

Valid values for the DIMENSION type are AZ, INSTANCE_TYPE, LEGAL_ENTITY_NAME, INVOICING_ENTITY, LINKED_ACCOUNT, OPERATION, PLATFORM, PURCHASE_TYPE, SERVICE, TENANCY, RECORD_TYPE, and USAGE_TYPE.

When you group by the TAG type and include a valid tag key, you get all tag values, including empty strings.

', 'GetCostAndUsageResponse$GroupDefinitions' => '

The groups that are specified by the Filter or GroupBy parameters in the request.

', 'GetCostAndUsageWithResourcesRequest$GroupBy' => '

You can group Amazon Web Services costs using up to two different groups: DIMENSION, TAG, COST_CATEGORY.

', 'GetCostAndUsageWithResourcesResponse$GroupDefinitions' => '

The groups that are specified by the Filter or GroupBy parameters in the request.

', 'GetReservationCoverageRequest$GroupBy' => '

You can group the data by the following attributes:

  • AZ

  • CACHE_ENGINE

  • DATABASE_ENGINE

  • DEPLOYMENT_OPTION

  • INSTANCE_TYPE

  • INVOICING_ENTITY

  • LINKED_ACCOUNT

  • OPERATING_SYSTEM

  • PLATFORM

  • REGION

  • TENANCY

', 'GetReservationUtilizationRequest$GroupBy' => '

Groups only by SUBSCRIPTION_ID. Metadata is included.

', 'GetSavingsPlansCoverageRequest$GroupBy' => '

You can group the data using the attributes INSTANCE_FAMILY, REGION, or SERVICE.

', ], ], 'Groups' => [ 'base' => NULL, 'refs' => [ 'ResultByTime$Groups' => '

The groups that this time period includes.

', ], ], 'Impact' => [ 'base' => '

The dollar value of the anomaly.

', 'refs' => [ 'Anomaly$Impact' => '

The dollar impact for the anomaly.

', ], ], 'InstanceDetails' => [ 'base' => '

Details about the reservations that Amazon Web Services recommends that you purchase.

', 'refs' => [ 'ReservationPurchaseRecommendationDetail$InstanceDetails' => '

Details about the reservations that Amazon Web Services recommends that you purchase.

', ], ], 'InvalidNextTokenException' => [ 'base' => '

The pagination token is invalid. Try again without a pagination token.

', 'refs' => [], ], 'Key' => [ 'base' => NULL, 'refs' => [ 'Keys$member' => NULL, ], ], 'Keys' => [ 'base' => NULL, 'refs' => [ 'Group$Keys' => '

The keys that are included in this group.

', ], ], 'LimitExceededException' => [ 'base' => '

You made too many calls in a short period of time. Try again later.

', 'refs' => [], ], 'ListCostAllocationTagsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListCostAllocationTagsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListCostCategoryDefinitionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListCostCategoryDefinitionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListSavingsPlansPurchaseRecommendationGenerationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListSavingsPlansPurchaseRecommendationGenerationResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListTagsForResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListTagsForResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'LookbackPeriodInDays' => [ 'base' => NULL, 'refs' => [ 'GetReservationPurchaseRecommendationRequest$LookbackPeriodInDays' => '

The number of previous days that you want Amazon Web Services to consider when it calculates your recommendations.

', 'GetSavingsPlansPurchaseRecommendationRequest$LookbackPeriodInDays' => '

The lookback period that\'s used to generate the recommendation.

', 'RecommendationDetailData$LookbackPeriodInDays' => '

How many days of previous usage that Amazon Web Services considers when making this recommendation.

', 'ReservationPurchaseRecommendation$LookbackPeriodInDays' => '

How many days of previous usage that Amazon Web Services considers when making this recommendation.

', 'RightsizingRecommendationMetadata$LookbackPeriodInDays' => '

The number of days of previous usage that Amazon Web Services considers when making this recommendation.

', 'SavingsPlansPurchaseRecommendation$LookbackPeriodInDays' => '

The lookback period in days that\'s used to generate the recommendation.

', ], ], 'MatchOption' => [ 'base' => NULL, 'refs' => [ 'MatchOptions$member' => NULL, ], ], 'MatchOptions' => [ 'base' => NULL, 'refs' => [ 'CostCategoryValues$MatchOptions' => '

The match options that you can use to filter your results. MatchOptions is only applicable for actions related to cost category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE.

', 'DimensionValues$MatchOptions' => '

The match options that you can use to filter your results.

MatchOptions is only applicable for actions related to Cost Category and Anomaly Subscriptions. Refer to the documentation for each specific API to see what is supported.

The default values for MatchOptions are EQUALS and CASE_SENSITIVE.

', 'TagValues$MatchOptions' => '

The match options that you can use to filter your results. MatchOptions is only applicable for actions related to Cost Category. The default values for MatchOptions are EQUALS and CASE_SENSITIVE.

', ], ], 'MaxResults' => [ 'base' => NULL, 'refs' => [ 'GetCostCategoriesRequest$MaxResults' => '

This field is only used when the SortBy value is provided in the request.

The maximum number of objects that are returned for this request. If MaxResults isn\'t specified with the SortBy value, the request returns 1000 results as the default value for this parameter.

For GetCostCategories, MaxResults has an upper quota of 1000.

', 'GetDimensionValuesRequest$MaxResults' => '

This field is only used when SortBy is provided in the request. The maximum number of objects that are returned for this request. If MaxResults isn\'t specified with SortBy, the request returns 1000 results as the default value for this parameter.

For GetDimensionValues, MaxResults has an upper limit of 1000.

', 'GetReservationCoverageRequest$MaxResults' => '

The maximum number of objects that you returned for this request. If more objects are available, in the response, Amazon Web Services provides a NextPageToken value that you can use in a subsequent call to get the next batch of objects.

', 'GetReservationUtilizationRequest$MaxResults' => '

The maximum number of objects that you returned for this request. If more objects are available, in the response, Amazon Web Services provides a NextPageToken value that you can use in a subsequent call to get the next batch of objects.

', 'GetSavingsPlansCoverageRequest$MaxResults' => '

The number of items to be returned in a response. The default is 20, with a minimum value of 1.

', 'GetSavingsPlansUtilizationDetailsRequest$MaxResults' => '

The number of items to be returned in a response. The default is 20, with a minimum value of 1.

', 'GetTagsRequest$MaxResults' => '

This field is only used when SortBy is provided in the request. The maximum number of objects that are returned for this request. If MaxResults isn\'t specified with SortBy, the request returns 1000 results as the default value for this parameter.

For GetTags, MaxResults has an upper quota of 1000.

', ], ], 'MemoryDBInstanceDetails' => [ 'base' => '

Details about the MemoryDB reservations that Amazon Web Services recommends that you purchase.

', 'refs' => [ 'InstanceDetails$MemoryDBInstanceDetails' => '

The MemoryDB reservations that Amazon Web Services recommends that you purchase.

', ], ], 'Metric' => [ 'base' => NULL, 'refs' => [ 'GetCostForecastRequest$Metric' => '

Which metric Cost Explorer uses to create your forecast. For more information about blended and unblended rates, see Why does the "blended" annotation appear on some line items in my bill?.

Valid values for a GetCostForecast call are the following:

  • AMORTIZED_COST

  • BLENDED_COST

  • NET_AMORTIZED_COST

  • NET_UNBLENDED_COST

  • UNBLENDED_COST

', 'GetUsageForecastRequest$Metric' => '

Which metric Cost Explorer uses to create your forecast.

Valid values for a GetUsageForecast call are the following:

  • USAGE_QUANTITY

  • NORMALIZED_USAGE_AMOUNT

', ], ], 'MetricAmount' => [ 'base' => NULL, 'refs' => [ 'MetricValue$Amount' => '

The actual number that represents the metric.

', ], ], 'MetricName' => [ 'base' => NULL, 'refs' => [ 'MetricNames$member' => NULL, 'Metrics$key' => NULL, ], ], 'MetricNames' => [ 'base' => NULL, 'refs' => [ 'GetCostAndUsageRequest$Metrics' => '

Which metrics are returned in the query. For more information about blended and unblended rates, see Why does the "blended" annotation appear on some line items in my bill?.

Valid values are AmortizedCost, BlendedCost, NetAmortizedCost, NetUnblendedCost, NormalizedUsageAmount, UnblendedCost, and UsageQuantity.

If you return the UsageQuantity metric, the service aggregates all usage numbers without taking into account the units. For example, if you aggregate usageQuantity across all of Amazon EC2, the results aren\'t meaningful because Amazon EC2 compute hours and data transfer are measured in different units (for example, hours and GB). To get more meaningful UsageQuantity metrics, filter by UsageType or UsageTypeGroups.

Metrics is required for GetCostAndUsage requests.

', 'GetCostAndUsageWithResourcesRequest$Metrics' => '

Which metrics are returned in the query. For more information about blended and unblended rates, see Why does the "blended" annotation appear on some line items in my bill?.

Valid values are AmortizedCost, BlendedCost, NetAmortizedCost, NetUnblendedCost, NormalizedUsageAmount, UnblendedCost, and UsageQuantity.

If you return the UsageQuantity metric, the service aggregates all usage numbers without taking the units into account. For example, if you aggregate usageQuantity across all of Amazon EC2, the results aren\'t meaningful because Amazon EC2 compute hours and data transfer are measured in different units (for example, hour or GB). To get more meaningful UsageQuantity metrics, filter by UsageType or UsageTypeGroups.

Metrics is required for GetCostAndUsageWithResources requests.

', 'GetReservationCoverageRequest$Metrics' => '

The measurement that you want your reservation coverage reported in.

Valid values are Hour, Unit, and Cost. You can use multiple values in a request.

', 'GetSavingsPlansCoverageRequest$Metrics' => '

The measurement that you want your Savings Plans coverage reported in. The only valid value is SpendCoveredBySavingsPlans.

', ], ], 'MetricUnit' => [ 'base' => NULL, 'refs' => [ 'MetricValue$Unit' => '

The unit that the metric is given in.

', ], ], 'MetricValue' => [ 'base' => '

The aggregated value for a metric.

', 'refs' => [ 'GetCostForecastResponse$Total' => '

How much you are forecasted to spend over the forecast period, in USD.

', 'GetUsageForecastResponse$Total' => '

How much you\'re forecasted to use over the forecast period.

', 'Metrics$value' => NULL, ], ], 'Metrics' => [ 'base' => NULL, 'refs' => [ 'Group$Metrics' => '

The metrics that are included in this group.

', 'ResultByTime$Total' => '

The total amount of cost or usage accrued during the time period.

', ], ], 'MetricsOverLookbackPeriod' => [ 'base' => NULL, 'refs' => [ 'RecommendationDetailData$MetricsOverLookbackPeriod' => '

The related hourly cost, coverage, and utilization metrics over the lookback period.

', ], ], 'ModifyRecommendationDetail' => [ 'base' => '

Details for the modification recommendation.

', 'refs' => [ 'RightsizingRecommendation$ModifyRecommendationDetail' => '

The details for the modification recommendations.

', ], ], 'MonitorArnList' => [ 'base' => NULL, 'refs' => [ 'AnomalySubscription$MonitorArnList' => '

A list of cost anomaly monitors.

', 'UpdateAnomalySubscriptionRequest$MonitorArnList' => '

A list of cost anomaly monitor ARNs.

', ], ], 'MonitorDimension' => [ 'base' => NULL, 'refs' => [ 'AnomalyMonitor$MonitorDimension' => '

The dimensions to evaluate.

', ], ], 'MonitorType' => [ 'base' => NULL, 'refs' => [ 'AnomalyMonitor$MonitorType' => '

The possible type values.

', ], ], 'NetRISavings' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$NetRISavings' => '

How much you saved due to purchasing and utilizing reservation. Amazon Web Services calculates this by subtracting TotalAmortizedFee from OnDemandCostOfRIHoursUsed.

', ], ], 'NetworkResourceUtilization' => [ 'base' => '

The network field that contains a list of network metrics that are associated with the current instance.

', 'refs' => [ 'EC2ResourceUtilization$NetworkResourceUtilization' => '

The network field that contains a list of network metrics that are associated with the current instance.

', ], ], 'NextPageToken' => [ 'base' => NULL, 'refs' => [ 'GetAnomaliesRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetAnomaliesResponse$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetAnomalyMonitorsRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetAnomalyMonitorsResponse$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetAnomalySubscriptionsRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetAnomalySubscriptionsResponse$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetCostAndUsageRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetCostAndUsageResponse$NextPageToken' => '

The token for the next set of retrievable results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetCostAndUsageWithResourcesRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetCostAndUsageWithResourcesResponse$NextPageToken' => '

The token for the next set of retrievable results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetCostCategoriesRequest$NextPageToken' => '

If the number of objects that are still available for retrieval exceeds the quota, Amazon Web Services returns a NextPageToken value in the response. To retrieve the next batch of objects, provide the NextPageToken from the previous call in your next request.

', 'GetCostCategoriesResponse$NextPageToken' => '

If the number of objects that are still available for retrieval exceeds the quota, Amazon Web Services returns a NextPageToken value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'GetDimensionValuesRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetDimensionValuesResponse$NextPageToken' => '

The token for the next set of retrievable results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetReservationCoverageRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetReservationCoverageResponse$NextPageToken' => '

The token for the next set of retrievable results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetReservationPurchaseRecommendationRequest$NextPageToken' => '

The pagination token that indicates the next set of results that you want to retrieve.

', 'GetReservationPurchaseRecommendationResponse$NextPageToken' => '

The pagination token for the next set of retrievable results.

', 'GetReservationUtilizationRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetReservationUtilizationResponse$NextPageToken' => '

The token for the next set of retrievable results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetRightsizingRecommendationRequest$NextPageToken' => '

The pagination token that indicates the next set of results that you want to retrieve.

', 'GetRightsizingRecommendationResponse$NextPageToken' => '

The token to retrieve the next set of results.

', 'GetSavingsPlansCoverageRequest$NextToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetSavingsPlansCoverageResponse$NextToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetSavingsPlansPurchaseRecommendationRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetSavingsPlansPurchaseRecommendationResponse$NextPageToken' => '

The token for the next set of retrievable results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetSavingsPlansUtilizationDetailsRequest$NextToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetSavingsPlansUtilizationDetailsResponse$NextToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetTagsRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetTagsResponse$NextPageToken' => '

The token for the next set of retrievable results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'ListCostAllocationTagsRequest$NextToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'ListCostAllocationTagsResponse$NextToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'ListCostCategoryDefinitionsRequest$NextToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'ListCostCategoryDefinitionsResponse$NextToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'ListSavingsPlansPurchaseRecommendationGenerationRequest$NextPageToken' => '

The token to retrieve the next set of results.

', 'ListSavingsPlansPurchaseRecommendationGenerationResponse$NextPageToken' => '

The token to retrieve the next set of results.

', ], ], 'NonNegativeInteger' => [ 'base' => NULL, 'refs' => [ 'AnomalyMonitor$DimensionalValueCount' => '

The value for evaluated dimensions.

', 'CostCategoryReference$NumberOfRules' => '

The number of rules that are associated with a specific Cost Category.

', 'GetReservationPurchaseRecommendationRequest$PageSize' => '

The number of recommendations that you want returned in a single response object.

', 'GetRightsizingRecommendationRequest$PageSize' => '

The number of recommendations that you want returned in a single response object.

', 'GetSavingsPlansPurchaseRecommendationRequest$PageSize' => '

The number of recommendations that you want returned in a single response object.

', 'ListSavingsPlansPurchaseRecommendationGenerationRequest$PageSize' => '

The number of recommendations that you want returned in a single response object.

', ], ], 'NullableNonNegativeDouble' => [ 'base' => NULL, 'refs' => [ 'AnomalySubscription$Threshold' => '

(deprecated)

An absolute dollar value that must be exceeded by the anomaly\'s total impact (see Impact for more details) for an anomaly notification to be generated.

This field has been deprecated. To specify a threshold, use ThresholdExpression. Continued use of Threshold will be treated as shorthand syntax for a ThresholdExpression.

One of Threshold or ThresholdExpression is required for this resource. You cannot specify both.

', 'Impact$TotalActualSpend' => '

The cumulative dollar amount that was actually spent during the anomaly.

', 'Impact$TotalExpectedSpend' => '

The cumulative dollar amount that was expected to be spent during the anomaly. It is calculated using advanced machine learning models to determine the typical spending pattern based on historical data for a customer.

', 'Impact$TotalImpactPercentage' => '

The cumulative percentage difference between the total actual spend and total expected spend. It is calculated as (TotalImpact / TotalExpectedSpend) * 100. When TotalExpectedSpend is zero, this field is omitted. Expected spend can be zero in situations such as when you start to use a service for the first time.

', 'UpdateAnomalySubscriptionRequest$Threshold' => '

(deprecated)

The update to the threshold value for receiving notifications.

This field has been deprecated. To update a threshold, use ThresholdExpression. Continued use of Threshold will be treated as shorthand syntax for a ThresholdExpression.

You can specify either Threshold or ThresholdExpression, but not both.

', ], ], 'NumericOperator' => [ 'base' => NULL, 'refs' => [ 'TotalImpactFilter$NumericOperator' => '

The comparing value that\'s used in the filter.

', ], ], 'OfferingClass' => [ 'base' => NULL, 'refs' => [ 'EC2Specification$OfferingClass' => '

Indicates whether you want a recommendation for standard or convertible reservations.

', ], ], 'OnDemandCost' => [ 'base' => NULL, 'refs' => [ 'CoverageCost$OnDemandCost' => '

How much an On-Demand Instance costs.

', ], ], 'OnDemandCostOfRIHoursUsed' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$OnDemandCostOfRIHoursUsed' => '

How much your reservation costs if charged On-Demand rates.

', ], ], 'OnDemandHours' => [ 'base' => NULL, 'refs' => [ 'CoverageHours$OnDemandHours' => '

The number of instance running hours that On-Demand Instances covered.

', ], ], 'OnDemandNormalizedUnits' => [ 'base' => NULL, 'refs' => [ 'CoverageNormalizedUnits$OnDemandNormalizedUnits' => '

The number of normalized units that are covered by On-Demand Instances instead of a reservation.

', ], ], 'PageSize' => [ 'base' => NULL, 'refs' => [ 'GetAnomaliesRequest$MaxResults' => '

The number of entries a paginated response contains.

', 'GetAnomalyMonitorsRequest$MaxResults' => '

The number of entries that a paginated response contains.

', 'GetAnomalySubscriptionsRequest$MaxResults' => '

The number of entries a paginated response contains.

', 'GetCostCategoriesResponse$ReturnSize' => '

The number of objects that are returned.

', 'GetCostCategoriesResponse$TotalSize' => '

The total number of objects.

', 'GetDimensionValuesResponse$ReturnSize' => '

The number of results that Amazon Web Services returned at one time.

', 'GetDimensionValuesResponse$TotalSize' => '

The total number of search results.

', 'GetTagsResponse$ReturnSize' => '

The number of query results that Amazon Web Services returns at a time.

', 'GetTagsResponse$TotalSize' => '

The total number of query results.

', ], ], 'PaymentOption' => [ 'base' => NULL, 'refs' => [ 'GetReservationPurchaseRecommendationRequest$PaymentOption' => '

The reservation purchase option that you want recommendations for.

', 'GetSavingsPlansPurchaseRecommendationRequest$PaymentOption' => '

The payment option that\'s used to generate these recommendations.

', 'RecommendationDetailData$PaymentOption' => '

The payment option for the commitment (for example, All Upfront or No Upfront).

', 'ReservationPurchaseRecommendation$PaymentOption' => '

The payment option for the reservation (for example, AllUpfront or NoUpfront).

', 'SavingsPlansPurchaseRecommendation$PaymentOption' => '

The payment option that\'s used to generate the recommendation.

', ], ], 'PlatformDifference' => [ 'base' => NULL, 'refs' => [ 'PlatformDifferences$member' => NULL, ], ], 'PlatformDifferences' => [ 'base' => NULL, 'refs' => [ 'TargetInstance$PlatformDifferences' => '

Explains the actions that you might need to take to successfully migrate your workloads from the current instance type to the recommended instance type.

', ], ], 'PredictionIntervalLevel' => [ 'base' => NULL, 'refs' => [ 'GetCostForecastRequest$PredictionIntervalLevel' => '

Cost Explorer always returns the mean forecast as a single point. You can request a prediction interval around the mean by specifying a confidence level. The higher the confidence level, the more confident Cost Explorer is about the actual value falling in the prediction interval. Higher confidence levels result in wider prediction intervals.

', 'GetUsageForecastRequest$PredictionIntervalLevel' => '

Amazon Web Services Cost Explorer always returns the mean forecast as a single point. You can request a prediction interval around the mean by specifying a confidence level. The higher the confidence level, the more confident Cost Explorer is about the actual value falling in the prediction interval. Higher confidence levels result in wider prediction intervals.

', ], ], 'ProvideAnomalyFeedbackRequest' => [ 'base' => NULL, 'refs' => [], ], 'ProvideAnomalyFeedbackResponse' => [ 'base' => NULL, 'refs' => [], ], 'PurchasedHours' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$PurchasedHours' => '

How many reservation hours that you purchased.

', ], ], 'PurchasedUnits' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$PurchasedUnits' => '

The number of Amazon EC2 reservation hours that you purchased. It\'s converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

', ], ], 'RDSInstanceDetails' => [ 'base' => '

Details about the Amazon RDS reservations that Amazon Web Services recommends that you purchase.

', 'refs' => [ 'InstanceDetails$RDSInstanceDetails' => '

The Amazon RDS reservations that Amazon Web Services recommends that you purchase.

', ], ], 'RICostForUnusedHours' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$RICostForUnusedHours' => '

The cost of unused hours for your reservation.

', ], ], 'RealizedSavings' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$RealizedSavings' => '

The realized savings because of purchasing and using a reservation.

', ], ], 'RecommendationDetailData' => [ 'base' => '

The details and metrics for the given recommendation.

', 'refs' => [ 'GetSavingsPlanPurchaseRecommendationDetailsResponse$RecommendationDetailData' => '

Contains detailed information about a specific Savings Plan recommendation.

', ], ], 'RecommendationDetailHourlyMetrics' => [ 'base' => '

Contains the hourly metrics for the given recommendation over the lookback period.

', 'refs' => [ 'MetricsOverLookbackPeriod$member' => NULL, ], ], 'RecommendationDetailId' => [ 'base' => NULL, 'refs' => [ 'GetSavingsPlanPurchaseRecommendationDetailsRequest$RecommendationDetailId' => '

The ID that is associated with the Savings Plan recommendation.

', 'GetSavingsPlanPurchaseRecommendationDetailsResponse$RecommendationDetailId' => '

The ID that is associated with the Savings Plan recommendation.

', 'SavingsPlansPurchaseRecommendationDetail$RecommendationDetailId' => '

Contains detailed information about a specific Savings Plan recommendation.

', ], ], 'RecommendationId' => [ 'base' => NULL, 'refs' => [ 'GenerationSummary$RecommendationId' => '

Indicates the ID for this specific recommendation.

', 'RecommendationIdList$member' => NULL, 'StartSavingsPlansPurchaseRecommendationGenerationResponse$RecommendationId' => '

The ID for this specific recommendation.

', ], ], 'RecommendationIdList' => [ 'base' => NULL, 'refs' => [ 'ListSavingsPlansPurchaseRecommendationGenerationRequest$RecommendationIds' => '

The IDs for each specific recommendation.

', ], ], 'RecommendationTarget' => [ 'base' => NULL, 'refs' => [ 'RightsizingRecommendationConfiguration$RecommendationTarget' => '

The option to see recommendations within the same instance family or recommendations for instances across other families. The default value is SAME_INSTANCE_FAMILY.

', ], ], 'RedshiftInstanceDetails' => [ 'base' => '

Details about the Amazon Redshift reservations that Amazon Web Services recommends that you purchase.

', 'refs' => [ 'InstanceDetails$RedshiftInstanceDetails' => '

The Amazon Redshift reservations that Amazon Web Services recommends that you purchase.

', ], ], 'RequestChangedException' => [ 'base' => '

Your request parameters changed between pages. Try again with the old parameters or without a pagination token.

', 'refs' => [], ], 'ReservationAggregates' => [ 'base' => '

The aggregated numbers for your reservation usage.

', 'refs' => [ 'GetReservationUtilizationResponse$Total' => '

The total amount of time that you used your Reserved Instances (RIs).

', 'ReservationUtilizationGroup$Utilization' => '

How much you used this group of reservations.

', 'UtilizationByTime$Total' => '

The total number of reservation hours that were used.

', ], ], 'ReservationCoverageGroup' => [ 'base' => '

A group of reservations that share a set of attributes.

', 'refs' => [ 'ReservationCoverageGroups$member' => NULL, ], ], 'ReservationCoverageGroups' => [ 'base' => NULL, 'refs' => [ 'CoverageByTime$Groups' => '

The groups of instances that the reservation covered.

', ], ], 'ReservationGroupKey' => [ 'base' => NULL, 'refs' => [ 'ReservationUtilizationGroup$Key' => '

The key for a specific reservation attribute.

', ], ], 'ReservationGroupValue' => [ 'base' => NULL, 'refs' => [ 'ReservationUtilizationGroup$Value' => '

The value of a specific reservation attribute.

', ], ], 'ReservationPurchaseRecommendation' => [ 'base' => '

A specific reservation that Amazon Web Services recommends for purchase.

', 'refs' => [ 'ReservationPurchaseRecommendations$member' => NULL, ], ], 'ReservationPurchaseRecommendationDetail' => [ 'base' => '

Details about your recommended reservation purchase.

', 'refs' => [ 'ReservationPurchaseRecommendationDetails$member' => NULL, ], ], 'ReservationPurchaseRecommendationDetails' => [ 'base' => NULL, 'refs' => [ 'ReservationPurchaseRecommendation$RecommendationDetails' => '

Details about the recommended purchases.

', ], ], 'ReservationPurchaseRecommendationMetadata' => [ 'base' => '

Information about this specific recommendation, such as the timestamp for when Amazon Web Services made a specific recommendation.

', 'refs' => [ 'GetReservationPurchaseRecommendationResponse$Metadata' => '

Information about this specific recommendation call, such as the time stamp for when Cost Explorer generated this recommendation.

', ], ], 'ReservationPurchaseRecommendationSummary' => [ 'base' => '

A summary about this recommendation, such as the currency code, the amount that Amazon Web Services estimates that you could save, and the total amount of reservation to purchase.

', 'refs' => [ 'ReservationPurchaseRecommendation$RecommendationSummary' => '

A summary about the recommended purchase.

', ], ], 'ReservationPurchaseRecommendations' => [ 'base' => NULL, 'refs' => [ 'GetReservationPurchaseRecommendationResponse$Recommendations' => '

Recommendations for reservations to purchase.

', ], ], 'ReservationUtilizationGroup' => [ 'base' => '

A group of reservations that share a set of attributes.

', 'refs' => [ 'ReservationUtilizationGroups$member' => NULL, ], ], 'ReservationUtilizationGroups' => [ 'base' => NULL, 'refs' => [ 'UtilizationByTime$Groups' => '

The groups that this utilization result uses.

', ], ], 'ReservedHours' => [ 'base' => NULL, 'refs' => [ 'CoverageHours$ReservedHours' => '

The number of instance running hours that reservations covered.

', ], ], 'ReservedNormalizedUnits' => [ 'base' => NULL, 'refs' => [ 'CoverageNormalizedUnits$ReservedNormalizedUnits' => '

The number of normalized units that a reservation covers.

', ], ], 'ResourceDetails' => [ 'base' => '

Details for the resource.

', 'refs' => [ 'CurrentInstance$ResourceDetails' => '

Details about the resource and utilization.

', 'TargetInstance$ResourceDetails' => '

Details on the target instance type.

', ], ], 'ResourceNotFoundException' => [ 'base' => '

The specified ARN in the request doesn\'t exist.

', 'refs' => [], ], 'ResourceTag' => [ 'base' => '

The tag structure that contains a tag key and value.

Tagging is supported only for the following Cost Explorer resource types: AnomalyMonitor , AnomalySubscription , CostCategory .

', 'refs' => [ 'ResourceTagList$member' => NULL, ], ], 'ResourceTagKey' => [ 'base' => NULL, 'refs' => [ 'ResourceTag$Key' => '

The key that\'s associated with the tag.

', 'ResourceTagKeyList$member' => NULL, ], ], 'ResourceTagKeyList' => [ 'base' => NULL, 'refs' => [ 'UntagResourceRequest$ResourceTagKeys' => '

A list of tag keys associated with tags that need to be removed from the resource. If you specify a tag key that doesn\'t exist, it\'s ignored. Although the maximum number of array members is 200, user-tag maximum is 50. The remaining are reserved for Amazon Web Services use.

', ], ], 'ResourceTagList' => [ 'base' => NULL, 'refs' => [ 'CreateAnomalyMonitorRequest$ResourceTags' => '

An optional list of tags to associate with the specified AnomalyMonitor . You can use resource tags to control access to your monitor using IAM policies.

Each tag consists of a key and a value, and each key must be unique for the resource. The following restrictions apply to resource tags:

  • Although the maximum number of array members is 200, you can assign a maximum of 50 user-tags to one resource. The remaining are reserved for Amazon Web Services use

  • The maximum length of a key is 128 characters

  • The maximum length of a value is 256 characters

  • Keys and values can only contain alphanumeric characters, spaces, and any of the following: _.:/=+@-

  • Keys and values are case sensitive

  • Keys and values are trimmed for any leading or trailing whitespaces

  • Don’t use aws: as a prefix for your keys. This prefix is reserved for Amazon Web Services use

', 'CreateAnomalySubscriptionRequest$ResourceTags' => '

An optional list of tags to associate with the specified AnomalySubscription . You can use resource tags to control access to your subscription using IAM policies.

Each tag consists of a key and a value, and each key must be unique for the resource. The following restrictions apply to resource tags:

  • Although the maximum number of array members is 200, you can assign a maximum of 50 user-tags to one resource. The remaining are reserved for Amazon Web Services use

  • The maximum length of a key is 128 characters

  • The maximum length of a value is 256 characters

  • Keys and values can only contain alphanumeric characters, spaces, and any of the following: _.:/=+@-

  • Keys and values are case sensitive

  • Keys and values are trimmed for any leading or trailing whitespaces

  • Don’t use aws: as a prefix for your keys. This prefix is reserved for Amazon Web Services use

', 'CreateCostCategoryDefinitionRequest$ResourceTags' => '

An optional list of tags to associate with the specified CostCategory . You can use resource tags to control access to your cost category using IAM policies.

Each tag consists of a key and a value, and each key must be unique for the resource. The following restrictions apply to resource tags:

  • Although the maximum number of array members is 200, you can assign a maximum of 50 user-tags to one resource. The remaining are reserved for Amazon Web Services use

  • The maximum length of a key is 128 characters

  • The maximum length of a value is 256 characters

  • Keys and values can only contain alphanumeric characters, spaces, and any of the following: _.:/=+@-

  • Keys and values are case sensitive

  • Keys and values are trimmed for any leading or trailing whitespaces

  • Don’t use aws: as a prefix for your keys. This prefix is reserved for Amazon Web Services use

', 'ListTagsForResourceResponse$ResourceTags' => '

A list of tag key value pairs that are associated with the resource.

', 'TagResourceRequest$ResourceTags' => '

A list of tag key-value pairs to be added to the resource.

Each tag consists of a key and a value, and each key must be unique for the resource. The following restrictions apply to resource tags:

  • Although the maximum number of array members is 200, you can assign a maximum of 50 user-tags to one resource. The remaining are reserved for Amazon Web Services use

  • The maximum length of a key is 128 characters

  • The maximum length of a value is 256 characters

  • Keys and values can only contain alphanumeric characters, spaces, and any of the following: _.:/=+@-

  • Keys and values are case sensitive

  • Keys and values are trimmed for any leading or trailing whitespaces

  • Don’t use aws: as a prefix for your keys. This prefix is reserved for Amazon Web Services use

', ], ], 'ResourceTagValue' => [ 'base' => NULL, 'refs' => [ 'ResourceTag$Value' => '

The value that\'s associated with the tag.

', ], ], 'ResourceUtilization' => [ 'base' => '

Resource utilization of current resource.

', 'refs' => [ 'CurrentInstance$ResourceUtilization' => '

Utilization information of the current instance during the lookback period.

', 'TargetInstance$ExpectedResourceUtilization' => '

The expected utilization metrics for target instance type.

', ], ], 'ResultByTime' => [ 'base' => '

The result that\'s associated with a time period.

', 'refs' => [ 'ResultsByTime$member' => NULL, ], ], 'ResultsByTime' => [ 'base' => NULL, 'refs' => [ 'GetCostAndUsageResponse$ResultsByTime' => '

The time period that\'s covered by the results in the response.

', 'GetCostAndUsageWithResourcesResponse$ResultsByTime' => '

The time period that\'s covered by the results in the response.

', ], ], 'RightsizingRecommendation' => [ 'base' => '

Recommendations to rightsize resources.

', 'refs' => [ 'RightsizingRecommendationList$member' => NULL, ], ], 'RightsizingRecommendationConfiguration' => [ 'base' => '

You can use RightsizingRecommendationConfiguration to customize recommendations across two attributes. You can choose to view recommendations for instances within the same instance families or across different instance families. You can also choose to view your estimated savings that are associated with recommendations with consideration of existing Savings Plans or Reserved Instance (RI) benefits, or neither.

', 'refs' => [ 'GetRightsizingRecommendationRequest$Configuration' => '

You can use Configuration to customize recommendations across two attributes. You can choose to view recommendations for instances within the same instance families or across different instance families. You can also choose to view your estimated savings that are associated with recommendations with consideration of existing Savings Plans or RI benefits, or neither.

', 'GetRightsizingRecommendationResponse$Configuration' => '

You can use Configuration to customize recommendations across two attributes. You can choose to view recommendations for instances within the same instance families or across different instance families. You can also choose to view your estimated savings that are associated with recommendations with consideration of existing Savings Plans or RI benefits, or neither.

', ], ], 'RightsizingRecommendationList' => [ 'base' => NULL, 'refs' => [ 'GetRightsizingRecommendationResponse$RightsizingRecommendations' => '

Recommendations to rightsize resources.

', ], ], 'RightsizingRecommendationMetadata' => [ 'base' => '

Metadata for this recommendation set.

', 'refs' => [ 'GetRightsizingRecommendationResponse$Metadata' => '

Information regarding this specific recommendation set.

', ], ], 'RightsizingRecommendationSummary' => [ 'base' => '

The summary of rightsizing recommendations

', 'refs' => [ 'GetRightsizingRecommendationResponse$Summary' => '

Summary of this recommendation set.

', ], ], 'RightsizingType' => [ 'base' => NULL, 'refs' => [ 'RightsizingRecommendation$RightsizingType' => '

A recommendation to either terminate or modify the resource.

', ], ], 'RootCause' => [ 'base' => '

The combination of Amazon Web Service, linked account, linked account name, Region, and usage type where a cost anomaly is observed. The linked account name will only be available when the account name can be identified.

', 'refs' => [ 'RootCauses$member' => NULL, ], ], 'RootCauses' => [ 'base' => NULL, 'refs' => [ 'Anomaly$RootCauses' => '

The list of identified root causes for the anomaly.

', ], ], 'SavingsPlanArn' => [ 'base' => NULL, 'refs' => [ 'SavingsPlansUtilizationDetail$SavingsPlanArn' => '

The unique Amazon Resource Name (ARN) for a particular Savings Plan.

', ], ], 'SavingsPlansAmortizedCommitment' => [ 'base' => '

The amortized amount of Savings Plans purchased in a specific account during a specific time interval.

', 'refs' => [ 'SavingsPlansUtilizationAggregates$AmortizedCommitment' => '

The total amortized commitment for a Savings Plans. This includes the sum of the upfront and recurring Savings Plans fees.

', 'SavingsPlansUtilizationByTime$AmortizedCommitment' => '

The total amortized commitment for a Savings Plans. This includes the sum of the upfront and recurring Savings Plans fees.

', 'SavingsPlansUtilizationDetail$AmortizedCommitment' => '

The total amortized commitment for a Savings Plans. Includes the sum of the upfront and recurring Savings Plans fees.

', ], ], 'SavingsPlansCoverage' => [ 'base' => '

The amount of Savings Plans eligible usage that\'s covered by Savings Plans. All calculations consider the On-Demand equivalent of your Savings Plans usage.

', 'refs' => [ 'SavingsPlansCoverages$member' => NULL, ], ], 'SavingsPlansCoverageData' => [ 'base' => '

Specific coverage percentage, On-Demand costs, and spend covered by Savings Plans, and total Savings Plans costs for an account.

', 'refs' => [ 'SavingsPlansCoverage$Coverage' => '

The amount of Savings Plans eligible usage that the Savings Plans covered.

', ], ], 'SavingsPlansCoverages' => [ 'base' => NULL, 'refs' => [ 'GetSavingsPlansCoverageResponse$SavingsPlansCoverages' => '

The amount of spend that your Savings Plans covered.

', ], ], 'SavingsPlansDataType' => [ 'base' => NULL, 'refs' => [ 'SavingsPlansDataTypes$member' => NULL, ], ], 'SavingsPlansDataTypes' => [ 'base' => NULL, 'refs' => [ 'GetSavingsPlansUtilizationDetailsRequest$DataType' => '

The data type.

', ], ], 'SavingsPlansDetails' => [ 'base' => '

The attribute details on a specific Savings Plan.

', 'refs' => [ 'SavingsPlansPurchaseRecommendationDetail$SavingsPlansDetails' => '

Details for your recommended Savings Plans.

', ], ], 'SavingsPlansPurchaseRecommendation' => [ 'base' => '

Contains your request parameters, Savings Plan Recommendations Summary, and Details.

', 'refs' => [ 'GetSavingsPlansPurchaseRecommendationResponse$SavingsPlansPurchaseRecommendation' => '

Contains your request parameters, Savings Plan Recommendations Summary, and Details.

', ], ], 'SavingsPlansPurchaseRecommendationDetail' => [ 'base' => '

Details for your recommended Savings Plans.

', 'refs' => [ 'SavingsPlansPurchaseRecommendationDetailList$member' => NULL, ], ], 'SavingsPlansPurchaseRecommendationDetailList' => [ 'base' => NULL, 'refs' => [ 'SavingsPlansPurchaseRecommendation$SavingsPlansPurchaseRecommendationDetails' => '

Details for the Savings Plans that we recommend that you purchase to cover existing Savings Plans eligible workloads.

', ], ], 'SavingsPlansPurchaseRecommendationMetadata' => [ 'base' => '

Metadata about your Savings Plans Purchase Recommendations.

', 'refs' => [ 'GetSavingsPlansPurchaseRecommendationResponse$Metadata' => '

Information that regards this specific recommendation set.

', ], ], 'SavingsPlansPurchaseRecommendationSummary' => [ 'base' => '

Summary metrics for your Savings Plans Purchase Recommendations.

', 'refs' => [ 'SavingsPlansPurchaseRecommendation$SavingsPlansPurchaseRecommendationSummary' => '

Summary metrics for your Savings Plans Recommendations.

', ], ], 'SavingsPlansSavings' => [ 'base' => '

The amount of savings that you\'re accumulating, against the public On-Demand rate of the usage accrued in an account.

', 'refs' => [ 'SavingsPlansUtilizationAggregates$Savings' => '

The amount that\'s saved by using existing Savings Plans. Savings returns both net savings from Savings Plans and also the onDemandCostEquivalent of the Savings Plans when considering the utilization rate.

', 'SavingsPlansUtilizationByTime$Savings' => '

The amount that\'s saved by using existing Savings Plans. Savings returns both net savings from Savings Plans and also the onDemandCostEquivalent of the Savings Plans when considering the utilization rate.

', 'SavingsPlansUtilizationDetail$Savings' => '

The amount saved by using existing Savings Plans. Savings returns both net savings from savings plans and also the onDemandCostEquivalent of the Savings Plans when considering the utilization rate.

', ], ], 'SavingsPlansUtilization' => [ 'base' => '

The measurement of how well you\'re using your existing Savings Plans.

', 'refs' => [ 'SavingsPlansUtilizationAggregates$Utilization' => '

A ratio of your effectiveness of using existing Savings Plans to apply to workloads that are Savings Plans eligible.

', 'SavingsPlansUtilizationByTime$Utilization' => '

A ratio of your effectiveness of using existing Savings Plans to apply to workloads that are Savings Plans eligible.

', 'SavingsPlansUtilizationDetail$Utilization' => '

A ratio of your effectiveness of using existing Savings Plans to apply to workloads that are Savings Plans eligible.

', ], ], 'SavingsPlansUtilizationAggregates' => [ 'base' => '

The aggregated utilization metrics for your Savings Plans usage.

', 'refs' => [ 'GetSavingsPlansUtilizationDetailsResponse$Total' => '

The total Savings Plans utilization, regardless of time period.

', 'GetSavingsPlansUtilizationResponse$Total' => '

The total amount of cost/commitment that you used your Savings Plans, regardless of date ranges.

', ], ], 'SavingsPlansUtilizationByTime' => [ 'base' => '

The amount of Savings Plans utilization (in hours).

', 'refs' => [ 'SavingsPlansUtilizationsByTime$member' => NULL, ], ], 'SavingsPlansUtilizationDetail' => [ 'base' => '

A single daily or monthly Savings Plans utilization rate and details for your account. A management account in an organization have access to member accounts. You can use GetDimensionValues to determine the possible dimension values.

', 'refs' => [ 'SavingsPlansUtilizationDetails$member' => NULL, ], ], 'SavingsPlansUtilizationDetails' => [ 'base' => NULL, 'refs' => [ 'GetSavingsPlansUtilizationDetailsResponse$SavingsPlansUtilizationDetails' => '

Retrieves a single daily or monthly Savings Plans utilization rate and details for your account.

', ], ], 'SavingsPlansUtilizationsByTime' => [ 'base' => NULL, 'refs' => [ 'GetSavingsPlansUtilizationResponse$SavingsPlansUtilizationsByTime' => '

The amount of cost/commitment that you used your Savings Plans. You can use it to specify date ranges.

', ], ], 'SearchString' => [ 'base' => NULL, 'refs' => [ 'GetCostCategoriesRequest$SearchString' => '

The value that you want to search the filter values for.

If you don\'t specify a CostCategoryName, SearchString is used to filter Cost Category names that match the SearchString pattern. If you specify a CostCategoryName, SearchString is used to filter Cost Category values that match the SearchString pattern.

', 'GetDimensionValuesRequest$SearchString' => '

The value that you want to search the filter values for.

', 'GetTagsRequest$SearchString' => '

The value that you want to search for.

', ], ], 'ServiceQuotaExceededException' => [ 'base' => '

You\'ve reached the limit on the number of resources you can create, or exceeded the size of an individual resource.

', 'refs' => [], ], 'ServiceSpecification' => [ 'base' => '

Hardware specifications for the service that you want recommendations for.

', 'refs' => [ 'GetReservationPurchaseRecommendationRequest$ServiceSpecification' => '

The hardware specifications for the service instances that you want recommendations for, such as standard or convertible Amazon EC2 instances.

', 'ReservationPurchaseRecommendation$ServiceSpecification' => '

Hardware specifications for the service that you want recommendations for.

', ], ], 'SortDefinition' => [ 'base' => '

The details for how to sort the data.

', 'refs' => [ 'GetReservationCoverageRequest$SortBy' => '

The value by which you want to sort the data.

The following values are supported for Key:

  • OnDemandCost

  • CoverageHoursPercentage

  • OnDemandHours

  • ReservedHours

  • TotalRunningHours

  • CoverageNormalizedUnitsPercentage

  • OnDemandNormalizedUnits

  • ReservedNormalizedUnits

  • TotalRunningNormalizedUnits

  • Time

Supported values for SortOrder are ASCENDING or DESCENDING.

', 'GetReservationUtilizationRequest$SortBy' => '

The value that you want to sort the data by.

The following values are supported for Key:

  • UtilizationPercentage

  • UtilizationPercentageInUnits

  • PurchasedHours

  • PurchasedUnits

  • TotalActualHours

  • TotalActualUnits

  • UnusedHours

  • UnusedUnits

  • OnDemandCostOfRIHoursUsed

  • NetRISavings

  • TotalPotentialRISavings

  • AmortizedUpfrontFee

  • AmortizedRecurringFee

  • TotalAmortizedFee

  • RICostForUnusedHours

  • RealizedSavings

  • UnrealizedSavings

The supported values for SortOrder are ASCENDING and DESCENDING.

', 'GetSavingsPlansCoverageRequest$SortBy' => '

The value that you want to sort the data by.

The following values are supported for Key:

  • SpendCoveredBySavingsPlan

  • OnDemandCost

  • CoveragePercentage

  • TotalCost

  • InstanceFamily

  • Region

  • Service

The supported values for SortOrder are ASCENDING and DESCENDING.

', 'GetSavingsPlansUtilizationDetailsRequest$SortBy' => '

The value that you want to sort the data by.

The following values are supported for Key:

  • UtilizationPercentage

  • TotalCommitment

  • UsedCommitment

  • UnusedCommitment

  • NetSavings

  • AmortizedRecurringCommitment

  • AmortizedUpfrontCommitment

The supported values for SortOrder are ASCENDING and DESCENDING.

', 'GetSavingsPlansUtilizationRequest$SortBy' => '

The value that you want to sort the data by.

The following values are supported for Key:

  • UtilizationPercentage

  • TotalCommitment

  • UsedCommitment

  • UnusedCommitment

  • NetSavings

The supported values for SortOrder are ASCENDING and DESCENDING.

', 'SortDefinitions$member' => NULL, ], ], 'SortDefinitionKey' => [ 'base' => NULL, 'refs' => [ 'SortDefinition$Key' => '

The key that\'s used to sort the data.

', ], ], 'SortDefinitions' => [ 'base' => NULL, 'refs' => [ 'GetCostCategoriesRequest$SortBy' => '

The value that you sort the data by.

The key represents the cost and usage metrics. The following values are supported:

  • BlendedCost

  • UnblendedCost

  • AmortizedCost

  • NetAmortizedCost

  • NetUnblendedCost

  • UsageQuantity

  • NormalizedUsageAmount

The supported key values for the SortOrder value are ASCENDING and DESCENDING.

When you use the SortBy value, the NextPageToken and SearchString key values aren\'t supported.

', 'GetDimensionValuesRequest$SortBy' => '

The value that you want to sort the data by.

The key represents cost and usage metrics. The following values are supported:

  • BlendedCost

  • UnblendedCost

  • AmortizedCost

  • NetAmortizedCost

  • NetUnblendedCost

  • UsageQuantity

  • NormalizedUsageAmount

The supported values for the SortOrder key are ASCENDING or DESCENDING.

When you specify a SortBy paramater, the context must be COST_AND_USAGE. Further, when using SortBy, NextPageToken and SearchString aren\'t supported.

', 'GetTagsRequest$SortBy' => '

The value that you want to sort the data by.

The key represents cost and usage metrics. The following values are supported:

  • BlendedCost

  • UnblendedCost

  • AmortizedCost

  • NetAmortizedCost

  • NetUnblendedCost

  • UsageQuantity

  • NormalizedUsageAmount

The supported values for SortOrder are ASCENDING and DESCENDING.

When you use SortBy, NextPageToken and SearchString aren\'t supported.

', ], ], 'SortOrder' => [ 'base' => NULL, 'refs' => [ 'SortDefinition$SortOrder' => '

The order that\'s used to sort the data.

', ], ], 'StartSavingsPlansPurchaseRecommendationGenerationRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartSavingsPlansPurchaseRecommendationGenerationResponse' => [ 'base' => NULL, 'refs' => [], ], 'Subscriber' => [ 'base' => '

The recipient of AnomalySubscription notifications.

', 'refs' => [ 'Subscribers$member' => NULL, ], ], 'SubscriberAddress' => [ 'base' => NULL, 'refs' => [ 'Subscriber$Address' => '

The email address or SNS Amazon Resource Name (ARN). This depends on the Type.

', ], ], 'SubscriberStatus' => [ 'base' => NULL, 'refs' => [ 'Subscriber$Status' => '

Indicates if the subscriber accepts the notifications.

', ], ], 'SubscriberType' => [ 'base' => NULL, 'refs' => [ 'Subscriber$Type' => '

The notification delivery channel.

', ], ], 'Subscribers' => [ 'base' => NULL, 'refs' => [ 'AnomalySubscription$Subscribers' => '

A list of subscribers to notify.

', 'UpdateAnomalySubscriptionRequest$Subscribers' => '

The update to the subscriber list.

', ], ], 'SupportedSavingsPlansType' => [ 'base' => NULL, 'refs' => [ 'GetSavingsPlansPurchaseRecommendationRequest$SavingsPlansType' => '

The Savings Plans recommendation type that\'s requested.

', 'RecommendationDetailData$SavingsPlansType' => '

The requested Savings Plan recommendation type.

', 'SavingsPlansPurchaseRecommendation$SavingsPlansType' => '

The requested Savings Plans recommendation type.

', ], ], 'TagKey' => [ 'base' => NULL, 'refs' => [ 'CostAllocationTag$TagKey' => '

The key for the cost allocation tag.

', 'CostAllocationTagKeyList$member' => NULL, 'CostAllocationTagStatusEntry$TagKey' => '

The key for the cost allocation tag.

', 'GetTagsRequest$TagKey' => '

The key of the tag that you want to return values for.

', 'TagValues$Key' => '

The key for the tag.

', 'UpdateCostAllocationTagsStatusError$TagKey' => '

The key for the cost allocation tag.

', ], ], 'TagList' => [ 'base' => NULL, 'refs' => [ 'GetTagsResponse$Tags' => '

The tags that match your request.

', ], ], 'TagResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'TagResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'TagValues' => [ 'base' => '

The values that are available for a tag.

If Values and Key aren\'t specified, the ABSENT MatchOption is applied to all tags. That is, it\'s filtered on resources with no tags.

If Key is provided and Values isn\'t specified, the ABSENT MatchOption is applied to the tag Key only. That is, it\'s filtered on resources without the given tag key.

', 'refs' => [ 'Expression$Tags' => '

The specific Tag to use for Expression.

', 'TagValuesList$member' => NULL, ], ], 'TagValuesList' => [ 'base' => NULL, 'refs' => [ 'CurrentInstance$Tags' => '

Cost allocation resource tags that are applied to the instance.

', ], ], 'TargetInstance' => [ 'base' => '

Details on recommended instance.

', 'refs' => [ 'TargetInstancesList$member' => NULL, ], ], 'TargetInstancesList' => [ 'base' => NULL, 'refs' => [ 'ModifyRecommendationDetail$TargetInstances' => '

Determines whether this instance type is the Amazon Web Services default recommendation.

', ], ], 'TermInYears' => [ 'base' => NULL, 'refs' => [ 'GetReservationPurchaseRecommendationRequest$TermInYears' => '

The reservation term that you want recommendations for.

', 'GetSavingsPlansPurchaseRecommendationRequest$TermInYears' => '

The savings plan recommendation term that\'s used to generate these recommendations.

', 'RecommendationDetailData$TermInYears' => '

The term of the commitment in years.

', 'ReservationPurchaseRecommendation$TermInYears' => '

The term of the reservation that you want recommendations for, in years.

', 'SavingsPlansPurchaseRecommendation$TermInYears' => '

The Savings Plans recommendation term in years. It\'s used to generate the recommendation.

', ], ], 'TerminateRecommendationDetail' => [ 'base' => '

Details on termination recommendation.

', 'refs' => [ 'RightsizingRecommendation$TerminateRecommendationDetail' => '

The details for termination recommendations.

', ], ], 'TooManyTagsException' => [ 'base' => '

Can occur if you specify a number of tags for a resource greater than the maximum 50 user tags per resource.

', 'refs' => [], ], 'TotalActualHours' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$TotalActualHours' => '

The total number of reservation hours that you used.

', ], ], 'TotalActualUnits' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$TotalActualUnits' => '

The total number of Amazon EC2 reservation hours that you used. It\'s converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

', ], ], 'TotalAmortizedFee' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$TotalAmortizedFee' => '

The total cost of your reservation. It\'s amortized over the reservation period.

', ], ], 'TotalImpactFilter' => [ 'base' => '

Filters cost anomalies based on the total impact.

', 'refs' => [ 'GetAnomaliesRequest$TotalImpact' => '

Filters anomaly results by the total impact field on the anomaly object. For example, you can filter anomalies GREATER_THAN 200.00 to retrieve anomalies, with an estimated dollar impact greater than 200.

', ], ], 'TotalPotentialRISavings' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$TotalPotentialRISavings' => '

How much you might save if you use your entire reservation.

', ], ], 'TotalRunningHours' => [ 'base' => NULL, 'refs' => [ 'CoverageHours$TotalRunningHours' => '

The total instance usage, in hours.

', ], ], 'TotalRunningNormalizedUnits' => [ 'base' => NULL, 'refs' => [ 'CoverageNormalizedUnits$TotalRunningNormalizedUnits' => '

The total number of normalized units that you used.

', ], ], 'UnknownMonitorException' => [ 'base' => '

The cost anomaly monitor does not exist for the account.

', 'refs' => [], ], 'UnknownSubscriptionException' => [ 'base' => '

The cost anomaly subscription does not exist for the account.

', 'refs' => [], ], 'UnrealizedSavings' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$UnrealizedSavings' => '

The unrealized savings because of purchasing and using a reservation.

', ], ], 'UnresolvableUsageUnitException' => [ 'base' => '

Cost Explorer was unable to identify the usage unit. Provide UsageType/UsageTypeGroup filter selections that contain matching units, for example: hours.

', 'refs' => [], ], 'UntagResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'UntagResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'UnusedHours' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$UnusedHours' => '

The number of reservation hours that you didn\'t use.

', ], ], 'UnusedUnits' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$UnusedUnits' => '

The number of Amazon EC2 reservation hours that you didn\'t use. It\'s converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

', ], ], 'UpdateAnomalyMonitorRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAnomalyMonitorResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAnomalySubscriptionRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAnomalySubscriptionResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateCostAllocationTagsStatusError' => [ 'base' => '

Gives a detailed description of the result of an action. It\'s on each cost allocation tag entry in the request.

', 'refs' => [ 'UpdateCostAllocationTagsStatusErrors$member' => NULL, ], ], 'UpdateCostAllocationTagsStatusErrors' => [ 'base' => NULL, 'refs' => [ 'UpdateCostAllocationTagsStatusResponse$Errors' => '

A list of UpdateCostAllocationTagsStatusError objects with error details about each cost allocation tag that can\'t be updated. If there\'s no failure, an empty array returns.

', ], ], 'UpdateCostAllocationTagsStatusRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateCostAllocationTagsStatusResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateCostCategoryDefinitionRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateCostCategoryDefinitionResponse' => [ 'base' => NULL, 'refs' => [], ], 'UtilizationByTime' => [ 'base' => '

The amount of utilization, in hours.

', 'refs' => [ 'UtilizationsByTime$member' => NULL, ], ], 'UtilizationPercentage' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$UtilizationPercentage' => '

The percentage of reservation time that you used.

', ], ], 'UtilizationPercentageInUnits' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$UtilizationPercentageInUnits' => '

The percentage of Amazon EC2 reservation time that you used. It\'s converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

', ], ], 'UtilizationsByTime' => [ 'base' => NULL, 'refs' => [ 'GetReservationUtilizationResponse$UtilizationsByTime' => '

The amount of time that you used your Reserved Instances (RIs).

', ], ], 'Value' => [ 'base' => NULL, 'refs' => [ 'DimensionValuesWithAttributes$Value' => '

The value of a dimension with a specific attribute.

', 'Values$member' => NULL, ], ], 'Values' => [ 'base' => NULL, 'refs' => [ 'CostCategoryValues$Values' => '

The specific value of the Cost Category.

', 'DimensionValues$Values' => '

The metadata values that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

', 'GetAnomalyMonitorsRequest$MonitorArnList' => '

A list of cost anomaly monitor ARNs.

', 'GetAnomalySubscriptionsRequest$SubscriptionArnList' => '

A list of cost anomaly subscription ARNs.

', 'TagValues$Values' => '

The specific value of the tag.

', ], ], 'YearMonthDay' => [ 'base' => NULL, 'refs' => [ 'Anomaly$AnomalyStartDate' => '

The first day the anomaly is detected.

', 'Anomaly$AnomalyEndDate' => '

The last day the anomaly is detected.

', 'AnomalyDateInterval$StartDate' => '

The first date an anomaly was observed.

', 'AnomalyDateInterval$EndDate' => '

The last date an anomaly was observed.

', 'AnomalyMonitor$CreationDate' => '

The date when the monitor was created.

', 'AnomalyMonitor$LastUpdatedDate' => '

The date when the monitor was last updated.

', 'AnomalyMonitor$LastEvaluatedDate' => '

The date when the monitor last evaluated for anomalies.

', 'DateInterval$Start' => '

The beginning of the time period. The start date is inclusive. For example, if start is 2017-01-01, Amazon Web Services retrieves cost and usage data starting at 2017-01-01 up to the end date. The start date must be equal to or no later than the current date to avoid a validation error.

', 'DateInterval$End' => '

The end of the time period. The end date is exclusive. For example, if end is 2017-05-01, Amazon Web Services retrieves cost and usage data from the start date up to, but not including, 2017-05-01.

', ], ], 'ZonedDateTime' => [ 'base' => '

The period of time that you want the usage and costs for.

', 'refs' => [ 'CostAllocationTag$LastUpdatedDate' => '

The last date that the tag was either activated or deactivated.

', 'CostAllocationTag$LastUsedDate' => '

The last month that the tag was used on an Amazon Web Services resource.

', 'CostCategory$EffectiveStart' => '

The effective start date of your Cost Category.

', 'CostCategory$EffectiveEnd' => '

The effective end date of your Cost Category.

', 'CostCategoryReference$EffectiveStart' => '

The Cost Category\'s effective start date.

', 'CostCategoryReference$EffectiveEnd' => '

The Cost Category\'s effective end date.

', 'CreateCostCategoryDefinitionRequest$EffectiveStart' => '

The Cost Category\'s effective start date. It can only be a billing start date (first day of the month). If the date isn\'t provided, it\'s the first day of the current month. Dates can\'t be before the previous twelve months, or in the future.

', 'CreateCostCategoryDefinitionResponse$EffectiveStart' => '

The Cost Category\'s effective start date. It can only be a billing start date (first day of the month).

', 'DeleteCostCategoryDefinitionResponse$EffectiveEnd' => '

The effective end date of the Cost Category as a result of deleting it. No costs after this date is categorized by the deleted Cost Category.

', 'DescribeCostCategoryDefinitionRequest$EffectiveOn' => '

The date when the Cost Category was effective.

', 'GenerationSummary$GenerationStartedTime' => '

Indicates the start time of the recommendation generation.

', 'GenerationSummary$GenerationCompletionTime' => '

Indicates the completion time of the recommendation generation.

', 'GenerationSummary$EstimatedCompletionTime' => '

Indicates the estimated time for when the recommendation generation will complete.

', 'ListCostCategoryDefinitionsRequest$EffectiveOn' => '

The date when the Cost Category was effective.

', 'RecommendationDetailData$GenerationTimestamp' => NULL, 'RecommendationDetailData$LatestUsageTimestamp' => NULL, 'RecommendationDetailHourlyMetrics$StartTime' => NULL, 'StartSavingsPlansPurchaseRecommendationGenerationResponse$GenerationStartedTime' => '

The start time of the recommendation generation.

', 'StartSavingsPlansPurchaseRecommendationGenerationResponse$EstimatedCompletionTime' => '

The estimated time for when the recommendation generation will complete.

', 'UpdateCostCategoryDefinitionRequest$EffectiveStart' => '

The Cost Category\'s effective start date. It can only be a billing start date (first day of the month). If the date isn\'t provided, it\'s the first day of the current month. Dates can\'t be before the previous twelve months, or in the future.

', 'UpdateCostCategoryDefinitionResponse$EffectiveStart' => '

The Cost Category\'s effective start date. It can only be a billing start date (first day of the month).

', ], ], ],]; +return [ 'version' => '2.0', 'service' => '

You can use the Cost Explorer API to programmatically query your cost and usage data. You can query for aggregated data such as total monthly costs or total daily usage. You can also query for granular data. This might include the number of daily write operations for Amazon DynamoDB database tables in your production environment.

Service Endpoint

The Cost Explorer API provides the following endpoint:

  • https://ce.us-east-1.amazonaws.com

For information about the costs that are associated with the Cost Explorer API, see Amazon Web Services Cost Management Pricing.

', 'operations' => [ 'CreateAnomalyMonitor' => '

Creates a new cost anomaly detection monitor with the requested type and monitor specification.

', 'CreateAnomalySubscription' => '

Adds an alert subscription to a cost anomaly detection monitor. You can use each subscription to define subscribers with email or SNS notifications. Email subscribers can set an absolute or percentage threshold and a time frequency for receiving notifications.

', 'CreateCostCategoryDefinition' => '

Creates a new Cost Category with the requested name and rules.

', 'DeleteAnomalyMonitor' => '

Deletes a cost anomaly monitor.

', 'DeleteAnomalySubscription' => '

Deletes a cost anomaly subscription.

', 'DeleteCostCategoryDefinition' => '

Deletes a Cost Category. Expenses from this month going forward will no longer be categorized with this Cost Category.

', 'DescribeCostCategoryDefinition' => '

Returns the name, Amazon Resource Name (ARN), rules, definition, and effective dates of a Cost Category that\'s defined in the account.

You have the option to use EffectiveOn to return a Cost Category that\'s active on a specific date. If there\'s no EffectiveOn specified, you see a Cost Category that\'s effective on the current date. If Cost Category is still effective, EffectiveEnd is omitted in the response.

', 'GetAnomalies' => '

Retrieves all of the cost anomalies detected on your account during the time period that\'s specified by the DateInterval object. Anomalies are available for up to 90 days.

', 'GetAnomalyMonitors' => '

Retrieves the cost anomaly monitor definitions for your account. You can filter using a list of cost anomaly monitor Amazon Resource Names (ARNs).

', 'GetAnomalySubscriptions' => '

Retrieves the cost anomaly subscription objects for your account. You can filter using a list of cost anomaly monitor Amazon Resource Names (ARNs).

', 'GetApproximateUsageRecords' => '

Retrieves estimated usage records for hourly granularity or resource-level data at daily granularity.

', 'GetCostAndUsage' => '

Retrieves cost and usage metrics for your account. You can specify which cost and usage-related metric that you want the request to return. For example, you can specify BlendedCosts or UsageQuantity. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Management account in an organization in Organizations have access to all member accounts.

For information about filter limitations, see Quotas and restrictions in the Billing and Cost Management User Guide.

', 'GetCostAndUsageWithResources' => '

Retrieves cost and usage metrics with resources for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Management account in an organization in Organizations have access to all member accounts. This API is currently available for the Amazon Elastic Compute Cloud – Compute service only.

This is an opt-in only feature. You can enable this feature from the Cost Explorer Settings page. For information about how to access the Settings page, see Controlling Access for Cost Explorer in the Billing and Cost Management User Guide.

', 'GetCostCategories' => '

Retrieves an array of Cost Category names and values incurred cost.

If some Cost Category names and values are not associated with any cost, they will not be returned by this API.

', 'GetCostForecast' => '

Retrieves a forecast for how much Amazon Web Services predicts that you will spend over the forecast time period that you select, based on your past costs.

', 'GetDimensionValues' => '

Retrieves all available filter values for a specified filter over a period of time. You can search the dimension values for an arbitrary string.

', 'GetReservationCoverage' => '

Retrieves the reservation coverage for your account, which you can use to see how much of your Amazon Elastic Compute Cloud, Amazon ElastiCache, Amazon Relational Database Service, or Amazon Redshift usage is covered by a reservation. An organization\'s management account can see the coverage of the associated member accounts. This supports dimensions, Cost Categories, and nested expressions. For any time period, you can filter data about reservation usage by the following dimensions:

  • AZ

  • CACHE_ENGINE

  • DATABASE_ENGINE

  • DEPLOYMENT_OPTION

  • INSTANCE_TYPE

  • LINKED_ACCOUNT

  • OPERATING_SYSTEM

  • PLATFORM

  • REGION

  • SERVICE

  • TAG

  • TENANCY

To determine valid values for a dimension, use the GetDimensionValues operation.

', 'GetReservationPurchaseRecommendation' => '

Gets recommendations for reservation purchases. These recommendations might help you to reduce your costs. Reservations provide a discounted hourly rate (up to 75%) compared to On-Demand pricing.

Amazon Web Services generates your recommendations by identifying your On-Demand usage during a specific time period and collecting your usage into categories that are eligible for a reservation. After Amazon Web Services has these categories, it simulates every combination of reservations in each category of usage to identify the best number of each type of Reserved Instance (RI) to purchase to maximize your estimated savings.

For example, Amazon Web Services automatically aggregates your Amazon EC2 Linux, shared tenancy, and c4 family usage in the US West (Oregon) Region and recommends that you buy size-flexible regional reservations to apply to the c4 family usage. Amazon Web Services recommends the smallest size instance in an instance family. This makes it easier to purchase a size-flexible Reserved Instance (RI). Amazon Web Services also shows the equal number of normalized units. This way, you can purchase any instance size that you want. For this example, your RI recommendation is for c4.large because that is the smallest size instance in the c4 instance family.

', 'GetReservationUtilization' => '

Retrieves the reservation utilization for your account. Management account in an organization have access to member accounts. You can filter data by dimensions in a time period. You can use GetDimensionValues to determine the possible dimension values. Currently, you can group only by SUBSCRIPTION_ID.

', 'GetRightsizingRecommendation' => '

Creates recommendations that help you save cost by identifying idle and underutilized Amazon EC2 instances.

Recommendations are generated to either downsize or terminate instances, along with providing savings detail and metrics. For more information about calculation and function, see Optimizing Your Cost with Rightsizing Recommendations in the Billing and Cost Management User Guide.

', 'GetSavingsPlanPurchaseRecommendationDetails' => '

Retrieves the details for a Savings Plan recommendation. These details include the hourly data-points that construct the cost, coverage, and utilization charts.

', 'GetSavingsPlansCoverage' => '

Retrieves the Savings Plans covered for your account. This enables you to see how much of your cost is covered by a Savings Plan. An organization’s management account can see the coverage of the associated member accounts. This supports dimensions, Cost Categories, and nested expressions. For any time period, you can filter data for Savings Plans usage with the following dimensions:

  • LINKED_ACCOUNT

  • REGION

  • SERVICE

  • INSTANCE_FAMILY

To determine valid values for a dimension, use the GetDimensionValues operation.

', 'GetSavingsPlansPurchaseRecommendation' => '

Retrieves the Savings Plans recommendations for your account. First use StartSavingsPlansPurchaseRecommendationGeneration to generate a new set of recommendations, and then use GetSavingsPlansPurchaseRecommendation to retrieve them.

', 'GetSavingsPlansUtilization' => '

Retrieves the Savings Plans utilization for your account across date ranges with daily or monthly granularity. Management account in an organization have access to member accounts. You can use GetDimensionValues in SAVINGS_PLANS to determine the possible dimension values.

You can\'t group by any dimension values for GetSavingsPlansUtilization.

', 'GetSavingsPlansUtilizationDetails' => '

Retrieves attribute data along with aggregate utilization and savings data for a given time period. This doesn\'t support granular or grouped data (daily/monthly) in response. You can\'t retrieve data by dates in a single response similar to GetSavingsPlanUtilization, but you have the option to make multiple calls to GetSavingsPlanUtilizationDetails by providing individual dates. You can use GetDimensionValues in SAVINGS_PLANS to determine the possible dimension values.

GetSavingsPlanUtilizationDetails internally groups data by SavingsPlansArn.

', 'GetTags' => '

Queries for available tag keys and tag values for a specified period. You can search the tag values for an arbitrary string.

', 'GetUsageForecast' => '

Retrieves a forecast for how much Amazon Web Services predicts that you will use over the forecast time period that you select, based on your past usage.

', 'ListCostAllocationTags' => '

Get a list of cost allocation tags. All inputs in the API are optional and serve as filters. By default, all cost allocation tags are returned.

', 'ListCostCategoryDefinitions' => '

Returns the name, Amazon Resource Name (ARN), NumberOfRules and effective dates of all Cost Categories defined in the account. You have the option to use EffectiveOn to return a list of Cost Categories that were active on a specific date. If there is no EffectiveOn specified, you’ll see Cost Categories that are effective on the current date. If Cost Category is still effective, EffectiveEnd is omitted in the response. ListCostCategoryDefinitions supports pagination. The request can have a MaxResults range up to 100.

', 'ListSavingsPlansPurchaseRecommendationGeneration' => '

Retrieves a list of your historical recommendation generations within the past 30 days.

', 'ListTagsForResource' => '

Returns a list of resource tags associated with the resource specified by the Amazon Resource Name (ARN).

', 'ProvideAnomalyFeedback' => '

Modifies the feedback property of a given cost anomaly.

', 'StartSavingsPlansPurchaseRecommendationGeneration' => '

Requests a Savings Plans recommendation generation. This enables you to calculate a fresh set of Savings Plans recommendations that takes your latest usage data and current Savings Plans inventory into account. You can refresh Savings Plans recommendations up to three times daily for a consolidated billing family.

StartSavingsPlansPurchaseRecommendationGeneration has no request syntax because no input parameters are needed to support this operation.

', 'TagResource' => '

An API operation for adding one or more tags (key-value pairs) to a resource.

You can use the TagResource operation with a resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value you specify replaces the previous value for that tag.

Although the maximum number of array members is 200, user-tag maximum is 50. The remaining are reserved for Amazon Web Services use.

', 'UntagResource' => '

Removes one or more tags from a resource. Specify only tag keys in your request. Don\'t specify the value.

', 'UpdateAnomalyMonitor' => '

Updates an existing cost anomaly monitor. The changes made are applied going forward, and doesn\'t change anomalies detected in the past.

', 'UpdateAnomalySubscription' => '

Updates an existing cost anomaly subscription. Specify the fields that you want to update. Omitted fields are unchanged.

The JSON below describes the generic construct for each type. See Request Parameters for possible values as they apply to AnomalySubscription.

', 'UpdateCostAllocationTagsStatus' => '

Updates status for cost allocation tags in bulk, with maximum batch size of 20. If the tag status that\'s updated is the same as the existing tag status, the request doesn\'t fail. Instead, it doesn\'t have any effect on the tag status (for example, activating the active tag).

', 'UpdateCostCategoryDefinition' => '

Updates an existing Cost Category. Changes made to the Cost Category rules will be used to categorize the current month’s expenses and future expenses. This won’t change categorization for the previous months.

', ], 'shapes' => [ 'AccountScope' => [ 'base' => NULL, 'refs' => [ 'GetReservationPurchaseRecommendationRequest$AccountScope' => '

The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the management account and member accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual member accounts only.

', 'GetSavingsPlansPurchaseRecommendationRequest$AccountScope' => '

The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the management account and member accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual member accounts only.

', 'RecommendationDetailData$AccountScope' => '

The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the management account and member accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual member accounts only.

', 'ReservationPurchaseRecommendation$AccountScope' => '

The account scope that Amazon Web Services recommends that you purchase this instance for. For example, you can purchase this reservation for an entire organization in Amazon Web Services Organizations.

', 'SavingsPlansPurchaseRecommendation$AccountScope' => '

The account scope that you want your recommendations for. Amazon Web Services calculates recommendations that include the management account and member accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual member accounts only.

', ], ], 'AmortizedRecurringFee' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$AmortizedRecurringFee' => '

The monthly cost of your reservation. It\'s amortized over the reservation period.

', ], ], 'AmortizedUpfrontFee' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$AmortizedUpfrontFee' => '

The upfront cost of your reservation. It\'s amortized over the reservation period.

', ], ], 'Anomalies' => [ 'base' => NULL, 'refs' => [ 'GetAnomaliesResponse$Anomalies' => '

A list of cost anomalies.

', ], ], 'Anomaly' => [ 'base' => '

An unusual cost pattern. This consists of the detailed metadata and the current status of the anomaly object.

', 'refs' => [ 'Anomalies$member' => NULL, ], ], 'AnomalyDateInterval' => [ 'base' => '

The time period for an anomaly.

', 'refs' => [ 'GetAnomaliesRequest$DateInterval' => '

Assigns the start and end dates for retrieving cost anomalies. The returned anomaly object will have an AnomalyEndDate in the specified time range.

', ], ], 'AnomalyFeedbackType' => [ 'base' => NULL, 'refs' => [ 'Anomaly$Feedback' => '

The feedback value.

', 'GetAnomaliesRequest$Feedback' => '

Filters anomaly results by the feedback field on the anomaly object.

', 'ProvideAnomalyFeedbackRequest$Feedback' => '

Describes whether the cost anomaly was a planned activity or you considered it an anomaly.

', ], ], 'AnomalyMonitor' => [ 'base' => '

This object continuously inspects your account\'s cost data for anomalies. It\'s based on MonitorType and MonitorSpecification. The content consists of detailed metadata and the current status of the monitor object.

', 'refs' => [ 'AnomalyMonitors$member' => NULL, 'CreateAnomalyMonitorRequest$AnomalyMonitor' => '

The cost anomaly detection monitor object that you want to create.

', ], ], 'AnomalyMonitors' => [ 'base' => NULL, 'refs' => [ 'GetAnomalyMonitorsResponse$AnomalyMonitors' => '

A list of cost anomaly monitors that includes the detailed metadata for each monitor.

', ], ], 'AnomalyScore' => [ 'base' => '

Quantifies the anomaly. The higher score means that it\'s more anomalous.

', 'refs' => [ 'Anomaly$AnomalyScore' => '

The latest and maximum score for the anomaly.

', ], ], 'AnomalySubscription' => [ 'base' => '

An AnomalySubscription resource (also referred to as an alert subscription) sends notifications about specific anomalies that meet an alerting criteria defined by you.

You can specify the frequency of the alerts and the subscribers to notify.

Anomaly subscriptions can be associated with one or more AnomalyMonitor resources, and they only send notifications about anomalies detected by those associated monitors. You can also configure a threshold to further control which anomalies are included in the notifications.

Anomalies that don’t exceed the chosen threshold and therefore don’t trigger notifications from an anomaly subscription will still be available on the console and from the GetAnomalies API.

', 'refs' => [ 'AnomalySubscriptions$member' => NULL, 'CreateAnomalySubscriptionRequest$AnomalySubscription' => '

The cost anomaly subscription object that you want to create.

', ], ], 'AnomalySubscriptionFrequency' => [ 'base' => NULL, 'refs' => [ 'AnomalySubscription$Frequency' => '

The frequency that anomaly notifications are sent. Notifications are sent either over email (for DAILY and WEEKLY frequencies) or SNS (for IMMEDIATE frequency). For more information, see Creating an Amazon SNS topic for anomaly notifications.

', 'UpdateAnomalySubscriptionRequest$Frequency' => '

The update to the frequency value that subscribers receive notifications.

', ], ], 'AnomalySubscriptions' => [ 'base' => NULL, 'refs' => [ 'GetAnomalySubscriptionsResponse$AnomalySubscriptions' => '

A list of cost anomaly subscriptions that includes the detailed metadata for each one.

', ], ], 'ApproximateUsageRecordsPerService' => [ 'base' => NULL, 'refs' => [ 'GetApproximateUsageRecordsResponse$Services' => '

The service metadata for the service or services in the response.

', ], ], 'ApproximationDimension' => [ 'base' => NULL, 'refs' => [ 'GetApproximateUsageRecordsRequest$ApproximationDimension' => '

The service to evaluate for the usage records. You can choose resource-level data at daily granularity, or hourly granularity with or without resource-level data.

', ], ], 'Arn' => [ 'base' => NULL, 'refs' => [ 'CostCategory$CostCategoryArn' => '

The unique identifier for your Cost Category.

', 'CostCategoryReference$CostCategoryArn' => '

The unique identifier for your Cost Category.

', 'CreateCostCategoryDefinitionResponse$CostCategoryArn' => '

The unique identifier for your newly created Cost Category.

', 'DeleteCostCategoryDefinitionRequest$CostCategoryArn' => '

The unique identifier for your Cost Category.

', 'DeleteCostCategoryDefinitionResponse$CostCategoryArn' => '

The unique identifier for your Cost Category.

', 'DescribeCostCategoryDefinitionRequest$CostCategoryArn' => '

The unique identifier for your Cost Category.

', 'ListTagsForResourceRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the resource. For a list of supported resources, see ResourceTag.

', 'MonitorArnList$member' => NULL, 'ResourceNotFoundException$ResourceName' => NULL, 'TagResourceRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the resource. For a list of supported resources, see ResourceTag.

', 'TooManyTagsException$ResourceName' => NULL, 'UntagResourceRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the resource. For a list of supported resources, see ResourceTag.

', 'UpdateCostCategoryDefinitionRequest$CostCategoryArn' => '

The unique identifier for your Cost Category.

', 'UpdateCostCategoryDefinitionResponse$CostCategoryArn' => '

The unique identifier for your Cost Category.

', ], ], 'AttributeType' => [ 'base' => NULL, 'refs' => [ 'Attributes$key' => NULL, ], ], 'AttributeValue' => [ 'base' => NULL, 'refs' => [ 'Attributes$value' => NULL, ], ], 'Attributes' => [ 'base' => NULL, 'refs' => [ 'DimensionValuesWithAttributes$Attributes' => '

The attribute that applies to a specific Dimension.

', 'ReservationCoverageGroup$Attributes' => '

The attributes for this group of reservations.

', 'ReservationUtilizationGroup$Attributes' => '

The attributes for this group of reservations.

', 'SavingsPlansCoverage$Attributes' => '

The attribute that applies to a specific Dimension.

', 'SavingsPlansUtilizationDetail$Attributes' => '

The attribute that applies to a specific Dimension.

', ], ], 'BillExpirationException' => [ 'base' => '

The requested report expired. Update the date interval and try again.

', 'refs' => [], ], 'Context' => [ 'base' => NULL, 'refs' => [ 'GetDimensionValuesRequest$Context' => '

The context for the call to GetDimensionValues. This can be RESERVATIONS or COST_AND_USAGE. The default value is COST_AND_USAGE. If the context is set to RESERVATIONS, the resulting dimension values can be used in the GetReservationUtilization operation. If the context is set to COST_AND_USAGE, the resulting dimension values can be used in the GetCostAndUsage operation.

If you set the context to COST_AND_USAGE, you can use the following dimensions for searching:

  • AZ - The Availability Zone. An example is us-east-1a.

  • BILLING_ENTITY - The Amazon Web Services seller that your account is with. Possible values are the following:

    - Amazon Web Services(Amazon Web Services): The entity that sells Amazon Web Services.

    - AISPL (Amazon Internet Services Pvt. Ltd.): The local Indian entity that\'s an acting reseller for Amazon Web Services in India.

    - Amazon Web Services Marketplace: The entity that supports the sale of solutions that are built on Amazon Web Services by third-party software providers.

  • CACHE_ENGINE - The Amazon ElastiCache operating system. Examples are Windows or Linux.

  • DEPLOYMENT_OPTION - The scope of Amazon Relational Database Service deployments. Valid values are SingleAZ and MultiAZ.

  • DATABASE_ENGINE - The Amazon Relational Database Service database. Examples are Aurora or MySQL.

  • INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge.

  • INSTANCE_TYPE_FAMILY - A family of instance types optimized to fit different use cases. Examples are Compute Optimized (for example, C4, C5, C6g, and C7g), Memory Optimization (for example, R4, R5n, R5b, and R6g).

  • INVOICING_ENTITY - The name of the entity that issues the Amazon Web Services invoice.

  • LEGAL_ENTITY_NAME - The name of the organization that sells you Amazon Web Services services, such as Amazon Web Services.

  • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the Amazon Web Services ID of the member account.

  • OPERATING_SYSTEM - The operating system. Examples are Windows or Linux.

  • OPERATION - The action performed. Examples include RunInstance and CreateBucket.

  • PLATFORM - The Amazon EC2 operating system. Examples are Windows or Linux.

  • PURCHASE_TYPE - The reservation type of the purchase that this usage is related to. Examples include On-Demand Instances and Standard Reserved Instances.

  • RESERVATION_ID - The unique identifier for an Amazon Web Services Reservation Instance.

  • SAVINGS_PLAN_ARN - The unique identifier for your Savings Plans.

  • SAVINGS_PLANS_TYPE - Type of Savings Plans (EC2 Instance or Compute).

  • SERVICE - The Amazon Web Services service such as Amazon DynamoDB.

  • TENANCY - The tenancy of a resource. Examples are shared or dedicated.

  • USAGE_TYPE - The type of usage. An example is DataTransfer-In-Bytes. The response for the GetDimensionValues operation includes a unit attribute. Examples include GB and Hrs.

  • USAGE_TYPE_GROUP - The grouping of common usage types. An example is Amazon EC2: CloudWatch – Alarms. The response for this operation includes a unit attribute.

  • REGION - The Amazon Web Services Region.

  • RECORD_TYPE - The different types of charges such as Reserved Instance (RI) fees, usage costs, tax refunds, and credits.

  • RESOURCE_ID - The unique identifier of the resource. ResourceId is an opt-in feature only available for last 14 days for EC2-Compute Service.

If you set the context to RESERVATIONS, you can use the following dimensions for searching:

  • AZ - The Availability Zone. An example is us-east-1a.

  • CACHE_ENGINE - The Amazon ElastiCache operating system. Examples are Windows or Linux.

  • DEPLOYMENT_OPTION - The scope of Amazon Relational Database Service deployments. Valid values are SingleAZ and MultiAZ.

  • INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge.

  • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the Amazon Web Services ID of the member account.

  • PLATFORM - The Amazon EC2 operating system. Examples are Windows or Linux.

  • REGION - The Amazon Web Services Region.

  • SCOPE (Utilization only) - The scope of a Reserved Instance (RI). Values are regional or a single Availability Zone.

  • TAG (Coverage only) - The tags that are associated with a Reserved Instance (RI).

  • TENANCY - The tenancy of a resource. Examples are shared or dedicated.

If you set the context to SAVINGS_PLANS, you can use the following dimensions for searching:

  • SAVINGS_PLANS_TYPE - Type of Savings Plans (EC2 Instance or Compute)

  • PAYMENT_OPTION - The payment option for the given Savings Plans (for example, All Upfront)

  • REGION - The Amazon Web Services Region.

  • INSTANCE_TYPE_FAMILY - The family of instances (For example, m5)

  • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the Amazon Web Services ID of the member account.

  • SAVINGS_PLAN_ARN - The unique identifier for your Savings Plans.

', ], ], 'CostAllocationTag' => [ 'base' => '

The cost allocation tag structure. This includes detailed metadata for the CostAllocationTag object.

', 'refs' => [ 'CostAllocationTagList$member' => NULL, ], ], 'CostAllocationTagKeyList' => [ 'base' => NULL, 'refs' => [ 'ListCostAllocationTagsRequest$TagKeys' => '

The list of cost allocation tag keys that are returned for this request.

', ], ], 'CostAllocationTagList' => [ 'base' => NULL, 'refs' => [ 'ListCostAllocationTagsResponse$CostAllocationTags' => '

A list of cost allocation tags that includes the detailed metadata for each one.

', ], ], 'CostAllocationTagStatus' => [ 'base' => NULL, 'refs' => [ 'CostAllocationTag$Status' => '

The status of a cost allocation tag.

', 'CostAllocationTagStatusEntry$Status' => '

The status of a cost allocation tag.

', 'ListCostAllocationTagsRequest$Status' => '

The status of cost allocation tag keys that are returned for this request.

', ], ], 'CostAllocationTagStatusEntry' => [ 'base' => '

The cost allocation tag status. The status of a key can either be active or inactive.

', 'refs' => [ 'CostAllocationTagStatusList$member' => NULL, ], ], 'CostAllocationTagStatusList' => [ 'base' => NULL, 'refs' => [ 'UpdateCostAllocationTagsStatusRequest$CostAllocationTagsStatus' => '

The list of CostAllocationTagStatusEntry objects that are used to update cost allocation tags status for this request.

', ], ], 'CostAllocationTagType' => [ 'base' => NULL, 'refs' => [ 'CostAllocationTag$Type' => '

The type of cost allocation tag. You can use AWSGenerated or UserDefined type tags. AWSGenerated type tags are tags that Amazon Web Services defines and applies to support Amazon Web Services resources for cost allocation purposes. UserDefined type tags are tags that you define, create, and apply to resources.

', 'ListCostAllocationTagsRequest$Type' => '

The type of CostAllocationTag object that are returned for this request. The AWSGenerated type tags are tags that Amazon Web Services defines and applies to support Amazon Web Services resources for cost allocation purposes. The UserDefined type tags are tags that you define, create, and apply to resources.

', ], ], 'CostAllocationTagsMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListCostAllocationTagsRequest$MaxResults' => '

The maximum number of objects that are returned for this request. By default, the request returns 100 results.

', ], ], 'CostCategory' => [ 'base' => '

The structure of Cost Categories. This includes detailed metadata and the set of rules for the CostCategory object.

', 'refs' => [ 'DescribeCostCategoryDefinitionResponse$CostCategory' => NULL, ], ], 'CostCategoryInheritedValueDimension' => [ 'base' => '

When you create or update a cost category, you can define the CostCategoryRule rule type as INHERITED_VALUE. This rule type adds the flexibility to define a rule that dynamically inherits the cost category value from the dimension value that\'s defined by CostCategoryInheritedValueDimension. For example, suppose that you want to dynamically group costs that are based on the value of a specific tag key. First, choose an inherited value rule type, and then choose the tag dimension and specify the tag key to use.

', 'refs' => [ 'CostCategoryRule$InheritedValue' => '

The value the line item is categorized as if the line item contains the matched dimension.

', ], ], 'CostCategoryInheritedValueDimensionName' => [ 'base' => NULL, 'refs' => [ 'CostCategoryInheritedValueDimension$DimensionName' => '

The name of the dimension that\'s used to group costs.

If you specify LINKED_ACCOUNT_NAME, the cost category value is based on account name. If you specify TAG, the cost category value is based on the value of the specified tag key.

', ], ], 'CostCategoryMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListCostCategoryDefinitionsRequest$MaxResults' => '

The number of entries a paginated response contains.

', ], ], 'CostCategoryName' => [ 'base' => '

The unique name of the Cost Category.

', 'refs' => [ 'CostCategory$Name' => NULL, 'CostCategoryNamesList$member' => NULL, 'CostCategoryReference$Name' => NULL, 'CostCategoryValues$Key' => NULL, 'CreateCostCategoryDefinitionRequest$Name' => NULL, 'GetCostCategoriesRequest$CostCategoryName' => NULL, ], ], 'CostCategoryNamesList' => [ 'base' => NULL, 'refs' => [ 'GetCostCategoriesResponse$CostCategoryNames' => '

The names of the Cost Categories.

', ], ], 'CostCategoryProcessingStatus' => [ 'base' => '

The list of processing statuses for Cost Management products for a specific cost category.

', 'refs' => [ 'CostCategoryProcessingStatusList$member' => NULL, ], ], 'CostCategoryProcessingStatusList' => [ 'base' => NULL, 'refs' => [ 'CostCategory$ProcessingStatus' => '

The list of processing statuses for Cost Management products for a specific cost category.

', 'CostCategoryReference$ProcessingStatus' => '

The list of processing statuses for Cost Management products for a specific cost category.

', ], ], 'CostCategoryReference' => [ 'base' => '

A reference to a Cost Category containing only enough information to identify the Cost Category.

You can use this information to retrieve the full Cost Category information using DescribeCostCategory.

', 'refs' => [ 'CostCategoryReferencesList$member' => NULL, ], ], 'CostCategoryReferencesList' => [ 'base' => NULL, 'refs' => [ 'ListCostCategoryDefinitionsResponse$CostCategoryReferences' => '

A reference to a Cost Category that contains enough information to identify the Cost Category.

', ], ], 'CostCategoryRule' => [ 'base' => '

Rules are processed in order. If there are multiple rules that match the line item, then the first rule to match is used to determine that Cost Category value.

', 'refs' => [ 'CostCategoryRulesList$member' => NULL, ], ], 'CostCategoryRuleType' => [ 'base' => NULL, 'refs' => [ 'CostCategoryRule$Type' => '

You can define the CostCategoryRule rule type as either REGULAR or INHERITED_VALUE. The INHERITED_VALUE rule type adds the flexibility to define a rule that dynamically inherits the cost category value. This value is from the dimension value that\'s defined by CostCategoryInheritedValueDimension. For example, suppose that you want to costs to be dynamically grouped based on the value of a specific tag key. First, choose an inherited value rule type, and then choose the tag dimension and specify the tag key to use.

', ], ], 'CostCategoryRuleVersion' => [ 'base' => '

The rule schema version in this particular Cost Category.

', 'refs' => [ 'CostCategory$RuleVersion' => NULL, 'CreateCostCategoryDefinitionRequest$RuleVersion' => NULL, 'UpdateCostCategoryDefinitionRequest$RuleVersion' => NULL, ], ], 'CostCategoryRulesList' => [ 'base' => NULL, 'refs' => [ 'CostCategory$Rules' => '

The rules are processed in order. If there are multiple rules that match the line item, then the first rule to match is used to determine that Cost Category value.

', 'CreateCostCategoryDefinitionRequest$Rules' => '

The Cost Category rules used to categorize costs. For more information, see CostCategoryRule.

', 'UpdateCostCategoryDefinitionRequest$Rules' => '

The Expression object used to categorize costs. For more information, see CostCategoryRule .

', ], ], 'CostCategorySplitChargeMethod' => [ 'base' => NULL, 'refs' => [ 'CostCategorySplitChargeRule$Method' => '

The method that\'s used to define how to split your source costs across your targets.

Proportional - Allocates charges across your targets based on the proportional weighted cost of each target.

Fixed - Allocates charges across your targets based on your defined allocation percentage.

>Even - Allocates costs evenly across all targets.

', ], ], 'CostCategorySplitChargeRule' => [ 'base' => '

Use the split charge rule to split the cost of one Cost Category value across several other target values.

', 'refs' => [ 'CostCategorySplitChargeRulesList$member' => NULL, ], ], 'CostCategorySplitChargeRuleParameter' => [ 'base' => '

The parameters for a split charge method.

', 'refs' => [ 'CostCategorySplitChargeRuleParametersList$member' => NULL, ], ], 'CostCategorySplitChargeRuleParameterType' => [ 'base' => NULL, 'refs' => [ 'CostCategorySplitChargeRuleParameter$Type' => '

The parameter type.

', ], ], 'CostCategorySplitChargeRuleParameterValuesList' => [ 'base' => NULL, 'refs' => [ 'CostCategorySplitChargeRuleParameter$Values' => '

The parameter values.

', ], ], 'CostCategorySplitChargeRuleParametersList' => [ 'base' => NULL, 'refs' => [ 'CostCategorySplitChargeRule$Parameters' => '

The parameters for a split charge method. This is only required for the FIXED method.

', ], ], 'CostCategorySplitChargeRuleTargetsList' => [ 'base' => NULL, 'refs' => [ 'CostCategorySplitChargeRule$Targets' => '

The Cost Category values that you want to split costs across. These values can\'t be used as a source in other split charge rules.

', ], ], 'CostCategorySplitChargeRulesList' => [ 'base' => NULL, 'refs' => [ 'CostCategory$SplitChargeRules' => '

The split charge rules that are used to allocate your charges between your Cost Category values.

', 'CreateCostCategoryDefinitionRequest$SplitChargeRules' => '

The split charge rules used to allocate your charges between your Cost Category values.

', 'UpdateCostCategoryDefinitionRequest$SplitChargeRules' => '

The split charge rules used to allocate your charges between your Cost Category values.

', ], ], 'CostCategoryStatus' => [ 'base' => NULL, 'refs' => [ 'CostCategoryProcessingStatus$Status' => '

The process status for a specific cost category.

', ], ], 'CostCategoryStatusComponent' => [ 'base' => NULL, 'refs' => [ 'CostCategoryProcessingStatus$Component' => '

The Cost Management product name of the applied status.

', ], ], 'CostCategoryValue' => [ 'base' => '

The default value for the cost category.

', 'refs' => [ 'CostCategory$DefaultValue' => NULL, 'CostCategoryReference$DefaultValue' => NULL, 'CostCategoryRule$Value' => NULL, 'CostCategoryValuesList$member' => NULL, 'CreateCostCategoryDefinitionRequest$DefaultValue' => NULL, 'UpdateCostCategoryDefinitionRequest$DefaultValue' => NULL, ], ], 'CostCategoryValues' => [ 'base' => '

The Cost Categories values used for filtering the costs.

If Values and Key are not specified, the ABSENT MatchOption is applied to all Cost Categories. That is, it filters on resources that aren\'t mapped to any Cost Categories.

If Values is provided and Key isn\'t specified, the ABSENT MatchOption is applied to the Cost Categories Key only. That is, it filters on resources without the given Cost Categories key.

', 'refs' => [ 'Expression$CostCategories' => '

The filter that\'s based on CostCategory values.

', ], ], 'CostCategoryValuesList' => [ 'base' => NULL, 'refs' => [ 'CostCategoryReference$Values' => '

A list of unique cost category values in a specific cost category.

', 'GetCostCategoriesResponse$CostCategoryValues' => '

The Cost Category values.

If the CostCategoryName key isn\'t specified in the request, the CostCategoryValues fields aren\'t returned.

', ], ], 'Coverage' => [ 'base' => '

The amount of instance usage that a reservation covered.

', 'refs' => [ 'CoverageByTime$Total' => '

The total reservation coverage, in hours.

', 'GetReservationCoverageResponse$Total' => '

The total amount of instance usage that a reservation covered.

', 'ReservationCoverageGroup$Coverage' => '

How much instance usage this group of reservations covered.

', ], ], 'CoverageByTime' => [ 'base' => '

Reservation coverage for a specified period, in hours.

', 'refs' => [ 'CoveragesByTime$member' => NULL, ], ], 'CoverageCost' => [ 'base' => '

How much it costs to run an instance.

', 'refs' => [ 'Coverage$CoverageCost' => '

The amount of cost that the reservation covered.

', ], ], 'CoverageHours' => [ 'base' => '

How long a running instance either used a reservation or was On-Demand.

', 'refs' => [ 'Coverage$CoverageHours' => '

The amount of instance usage that the reservation covered, in hours.

', ], ], 'CoverageHoursPercentage' => [ 'base' => NULL, 'refs' => [ 'CoverageHours$CoverageHoursPercentage' => '

The percentage of instance hours that a reservation covered.

', ], ], 'CoverageNormalizedUnits' => [ 'base' => '

The amount of instance usage, in normalized units. You can use normalized units to see your EC2 usage for multiple sizes of instances in a uniform way. For example, suppose that you run an xlarge instance and a 2xlarge instance. If you run both instances for the same amount of time, the 2xlarge instance uses twice as much of your reservation as the xlarge instance, even though both instances show only one instance-hour. When you use normalized units instead of instance-hours, the xlarge instance used 8 normalized units, and the 2xlarge instance used 16 normalized units.

For more information, see Modifying Reserved Instances in the Amazon Elastic Compute Cloud User Guide for Linux Instances.

', 'refs' => [ 'Coverage$CoverageNormalizedUnits' => '

The amount of instance usage that the reservation covered, in normalized units.

', ], ], 'CoverageNormalizedUnitsPercentage' => [ 'base' => NULL, 'refs' => [ 'CoverageNormalizedUnits$CoverageNormalizedUnitsPercentage' => '

The percentage of your used instance normalized units that a reservation covers.

', ], ], 'CoveragesByTime' => [ 'base' => NULL, 'refs' => [ 'GetReservationCoverageResponse$CoveragesByTime' => '

The amount of time that your reservations covered.

', ], ], 'CreateAnomalyMonitorRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateAnomalyMonitorResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateAnomalySubscriptionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateAnomalySubscriptionResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateCostCategoryDefinitionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateCostCategoryDefinitionResponse' => [ 'base' => NULL, 'refs' => [], ], 'CurrentInstance' => [ 'base' => '

Context about the current instance.

', 'refs' => [ 'RightsizingRecommendation$CurrentInstance' => '

Context regarding the current instance.

', ], ], 'DataUnavailableException' => [ 'base' => '

The requested data is unavailable.

', 'refs' => [], ], 'DateInterval' => [ 'base' => '

The time period of the request.

', 'refs' => [ 'CoverageByTime$TimePeriod' => '

The period that this coverage was used over.

', 'ForecastResult$TimePeriod' => '

The period of time that the forecast covers.

', 'GetApproximateUsageRecordsResponse$LookbackPeriod' => '

The lookback period that\'s used for the estimation.

', 'GetCostAndUsageRequest$TimePeriod' => '

Sets the start date and end date for retrieving Amazon Web Services costs. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.

', 'GetCostAndUsageWithResourcesRequest$TimePeriod' => '

Sets the start and end dates for retrieving Amazon Web Services costs. The range must be within the last 14 days (the start date cannot be earlier than 14 days ago). The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.

', 'GetCostCategoriesRequest$TimePeriod' => NULL, 'GetCostForecastRequest$TimePeriod' => '

The period of time that you want the forecast to cover. The start date must be equal to or no later than the current date to avoid a validation error.

', 'GetDimensionValuesRequest$TimePeriod' => '

The start date and end date for retrieving the dimension values. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.

', 'GetReservationCoverageRequest$TimePeriod' => '

The start and end dates of the period that you want to retrieve data about reservation coverage for. You can retrieve data for a maximum of 13 months: the last 12 months and the current month. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.

', 'GetReservationUtilizationRequest$TimePeriod' => '

Sets the start and end dates for retrieving Reserved Instance (RI) utilization. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.

', 'GetSavingsPlansCoverageRequest$TimePeriod' => '

The time period that you want the usage and costs for. The Start date must be within 13 months. The End date must be after the Start date, and before the current date. Future dates can\'t be used as an End date.

', 'GetSavingsPlansUtilizationDetailsRequest$TimePeriod' => '

The time period that you want the usage and costs for. The Start date must be within 13 months. The End date must be after the Start date, and before the current date. Future dates can\'t be used as an End date.

', 'GetSavingsPlansUtilizationDetailsResponse$TimePeriod' => NULL, 'GetSavingsPlansUtilizationRequest$TimePeriod' => '

The time period that you want the usage and costs for. The Start date must be within 13 months. The End date must be after the Start date, and before the current date. Future dates can\'t be used as an End date.

', 'GetTagsRequest$TimePeriod' => '

The start and end dates for retrieving the dimension values. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.

', 'GetUsageForecastRequest$TimePeriod' => '

The start and end dates of the period that you want to retrieve usage forecast for. The start date is included in the period, but the end date isn\'t included in the period. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01. The start date must be equal to or later than the current date to avoid a validation error.

', 'ResultByTime$TimePeriod' => '

The time period that the result covers.

', 'SavingsPlansCoverage$TimePeriod' => NULL, 'SavingsPlansUtilizationByTime$TimePeriod' => NULL, 'UtilizationByTime$TimePeriod' => '

The period of time that this utilization was used for.

', ], ], 'DeleteAnomalyMonitorRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAnomalyMonitorResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAnomalySubscriptionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAnomalySubscriptionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCostCategoryDefinitionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCostCategoryDefinitionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCostCategoryDefinitionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCostCategoryDefinitionResponse' => [ 'base' => NULL, 'refs' => [], ], 'Dimension' => [ 'base' => NULL, 'refs' => [ 'DimensionValues$Key' => '

The names of the metadata types that you can use to filter and group your results. For example, AZ returns a list of Availability Zones.

Not all dimensions are supported in each API. Refer to the documentation for each specific API to see what is supported.

LINK_ACCOUNT_NAME and SERVICE_CODE can only be used in CostCategoryRule.

ANOMALY_TOTAL_IMPACT_ABSOLUTE and ANOMALY_TOTAL_IMPACT_PERCENTAGE can only be used in AnomalySubscriptions.

', 'GetDimensionValuesRequest$Dimension' => '

The name of the dimension. Each Dimension is available for a different Context. For more information, see Context. LINK_ACCOUNT_NAME and SERVICE_CODE can only be used in CostCategoryRule.

', ], ], 'DimensionValues' => [ 'base' => '

The metadata that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

', 'refs' => [ 'Expression$Dimensions' => '

The specific Dimension to use for Expression.

', ], ], 'DimensionValuesWithAttributes' => [ 'base' => '

The metadata of a specific type that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

', 'refs' => [ 'DimensionValuesWithAttributesList$member' => NULL, ], ], 'DimensionValuesWithAttributesList' => [ 'base' => NULL, 'refs' => [ 'GetCostAndUsageResponse$DimensionValueAttributes' => '

The attributes that apply to a specific dimension value. For example, if the value is a linked account, the attribute is that account name.

', 'GetCostAndUsageWithResourcesResponse$DimensionValueAttributes' => '

The attributes that apply to a specific dimension value. For example, if the value is a linked account, the attribute is that account name.

', 'GetDimensionValuesResponse$DimensionValues' => '

The filters that you used to filter your request. Some dimensions are available only for a specific context.

If you set the context to COST_AND_USAGE, you can use the following dimensions for searching:

  • AZ - The Availability Zone. An example is us-east-1a.

  • DATABASE_ENGINE - The Amazon Relational Database Service database. Examples are Aurora or MySQL.

  • INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge.

  • LEGAL_ENTITY_NAME - The name of the organization that sells you Amazon Web Services services, such as Amazon Web Services.

  • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the Amazon Web Services ID of the member account.

  • OPERATING_SYSTEM - The operating system. Examples are Windows or Linux.

  • OPERATION - The action performed. Examples include RunInstance and CreateBucket.

  • PLATFORM - The Amazon EC2 operating system. Examples are Windows or Linux.

  • PURCHASE_TYPE - The reservation type of the purchase to which this usage is related. Examples include On-Demand Instances and Standard Reserved Instances.

  • SERVICE - The Amazon Web Services service such as Amazon DynamoDB.

  • USAGE_TYPE - The type of usage. An example is DataTransfer-In-Bytes. The response for the GetDimensionValues operation includes a unit attribute. Examples include GB and Hrs.

  • USAGE_TYPE_GROUP - The grouping of common usage types. An example is Amazon EC2: CloudWatch – Alarms. The response for this operation includes a unit attribute.

  • RECORD_TYPE - The different types of charges such as RI fees, usage costs, tax refunds, and credits.

  • RESOURCE_ID - The unique identifier of the resource. ResourceId is an opt-in feature only available for last 14 days for EC2-Compute Service. You can opt-in by enabling Hourly and Resource Level Data in Cost Management Console preferences.

If you set the context to RESERVATIONS, you can use the following dimensions for searching:

  • AZ - The Availability Zone. An example is us-east-1a.

  • CACHE_ENGINE - The Amazon ElastiCache operating system. Examples are Windows or Linux.

  • DEPLOYMENT_OPTION - The scope of Amazon Relational Database Service deployments. Valid values are SingleAZ and MultiAZ.

  • INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge.

  • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the Amazon Web Services ID of the member account.

  • PLATFORM - The Amazon EC2 operating system. Examples are Windows or Linux.

  • REGION - The Amazon Web Services Region.

  • SCOPE (Utilization only) - The scope of a Reserved Instance (RI). Values are regional or a single Availability Zone.

  • TAG (Coverage only) - The tags that are associated with a Reserved Instance (RI).

  • TENANCY - The tenancy of a resource. Examples are shared or dedicated.

If you set the context to SAVINGS_PLANS, you can use the following dimensions for searching:

  • SAVINGS_PLANS_TYPE - Type of Savings Plans (EC2 Instance or Compute)

  • PAYMENT_OPTION - Payment option for the given Savings Plans (for example, All Upfront)

  • REGION - The Amazon Web Services Region.

  • INSTANCE_TYPE_FAMILY - The family of instances (For example, m5)

  • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the Amazon Web Services ID of the member account.

  • SAVINGS_PLAN_ARN - The unique identifier for your Savings Plan

', ], ], 'DiskResourceUtilization' => [ 'base' => '

The field that contains a list of disk (local storage) metrics that are associated with the current instance.

', 'refs' => [ 'EC2ResourceUtilization$DiskResourceUtilization' => '

The field that contains a list of disk (local storage) metrics that are associated with the current instance.

', ], ], 'EBSResourceUtilization' => [ 'base' => '

The EBS field that contains a list of EBS metrics that are associated with the current instance.

', 'refs' => [ 'EC2ResourceUtilization$EBSResourceUtilization' => '

The EBS field that contains a list of EBS metrics that are associated with the current instance.

', ], ], 'EC2InstanceDetails' => [ 'base' => '

Details about the Amazon EC2 reservations that Amazon Web Services recommends that you purchase.

', 'refs' => [ 'InstanceDetails$EC2InstanceDetails' => '

The Amazon EC2 reservations that Amazon Web Services recommends that you purchase.

', ], ], 'EC2ResourceDetails' => [ 'base' => '

Details on the Amazon EC2 Resource.

', 'refs' => [ 'ResourceDetails$EC2ResourceDetails' => '

Details for the Amazon EC2 resource.

', ], ], 'EC2ResourceUtilization' => [ 'base' => '

Utilization metrics for the instance.

', 'refs' => [ 'ResourceUtilization$EC2ResourceUtilization' => '

The utilization of current Amazon EC2 instance.

', ], ], 'EC2Specification' => [ 'base' => '

The Amazon EC2 hardware specifications that you want Amazon Web Services to provide recommendations for.

', 'refs' => [ 'ServiceSpecification$EC2Specification' => '

The Amazon EC2 hardware specifications that you want Amazon Web Services to provide recommendations for.

', ], ], 'ESInstanceDetails' => [ 'base' => '

Details about the Amazon OpenSearch Service reservations that Amazon Web Services recommends that you purchase.

', 'refs' => [ 'InstanceDetails$ESInstanceDetails' => '

The Amazon OpenSearch Service reservations that Amazon Web Services recommends that you purchase.

', ], ], 'ElastiCacheInstanceDetails' => [ 'base' => '

Details about the Amazon ElastiCache reservations that Amazon Web Services recommends that you purchase.

', 'refs' => [ 'InstanceDetails$ElastiCacheInstanceDetails' => '

The ElastiCache reservations that Amazon Web Services recommends that you purchase.

', ], ], 'Entity' => [ 'base' => NULL, 'refs' => [ 'TagList$member' => NULL, ], ], 'ErrorMessage' => [ 'base' => NULL, 'refs' => [ 'BillExpirationException$Message' => NULL, 'DataUnavailableException$Message' => NULL, 'GenerationExistsException$Message' => NULL, 'InvalidNextTokenException$Message' => NULL, 'LimitExceededException$Message' => NULL, 'RequestChangedException$Message' => NULL, 'ResourceNotFoundException$Message' => NULL, 'ServiceQuotaExceededException$Message' => NULL, 'TooManyTagsException$Message' => NULL, 'UnknownMonitorException$Message' => NULL, 'UnknownSubscriptionException$Message' => NULL, 'UnresolvableUsageUnitException$Message' => NULL, 'UpdateCostAllocationTagsStatusError$Message' => '

A message explaining why the action failed on this entry.

', ], ], 'Estimated' => [ 'base' => NULL, 'refs' => [ 'ResultByTime$Estimated' => '

Determines whether the result is estimated.

', ], ], 'Expression' => [ 'base' => '

Use Expression to filter in various Cost Explorer APIs.

Not all Expression types are supported in each API. Refer to the documentation for each specific API to see what is supported.

There are two patterns:

  • Simple dimension values.

    • There are three types of simple dimension values: CostCategories, Tags, and Dimensions.

      • Specify the CostCategories field to define a filter that acts on Cost Categories.

      • Specify the Tags field to define a filter that acts on Cost Allocation Tags.

      • Specify the Dimensions field to define a filter that acts on the DimensionValues .

    • For each filter type, you can set the dimension name and values for the filters that you plan to use.

      • For example, you can filter for REGION==us-east-1 OR REGION==us-west-1. For GetRightsizingRecommendation, the Region is a full name (for example, REGION==US East (N. Virginia).

      • The corresponding Expression for this example is as follows: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] } }

      • As shown in the previous example, lists of dimension values are combined with OR when applying the filter.

    • You can also set different match options to further control how the filter behaves. Not all APIs support match options. Refer to the documentation for each specific API to see what is supported.

      • For example, you can filter for linked account names that start with "a".

      • The corresponding Expression for this example is as follows: { "Dimensions": { "Key": "LINKED_ACCOUNT_NAME", "MatchOptions": [ "STARTS_WITH" ], "Values": [ "a" ] } }

  • Compound Expression types with logical operations.

    • You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. By doing this, you can filter by more advanced options.

    • For example, you can filter by ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer).

    • The corresponding Expression for this example is as follows: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

    Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error: { "And": [ ... ], "Dimensions": { "Key": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

    The following is an example of the corresponding error message: "Expression has more than one roots. Only one root operator is allowed for each expression: And, Or, Not, Dimensions, Tags, CostCategories"

For the GetRightsizingRecommendation action, a combination of OR and NOT isn\'t supported. OR isn\'t supported between different dimensions, or dimensions and tags. NOT operators aren\'t supported. Dimensions are also limited to LINKED_ACCOUNT, REGION, or RIGHTSIZING_TYPE.

For the GetReservationPurchaseRecommendation action, only NOT is supported. AND and OR aren\'t supported. Dimensions are limited to LINKED_ACCOUNT.

', 'refs' => [ 'AnomalyMonitor$MonitorSpecification' => NULL, 'AnomalySubscription$ThresholdExpression' => '

An Expression object used to specify the anomalies that you want to generate alerts for. This supports dimensions and nested expressions. The supported dimensions are ANOMALY_TOTAL_IMPACT_ABSOLUTE and ANOMALY_TOTAL_IMPACT_PERCENTAGE, corresponding to an anomaly’s TotalImpact and TotalImpactPercentage, respectively (see Impact for more details). The supported nested expression types are AND and OR. The match option GREATER_THAN_OR_EQUAL is required. Values must be numbers between 0 and 10,000,000,000 in string format.

One of Threshold or ThresholdExpression is required for this resource. You cannot specify both.

The following are examples of valid ThresholdExpressions:

  • Absolute threshold: { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }

  • Percentage threshold: { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_PERCENTAGE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }

  • AND two thresholds together: { "And": [ { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }, { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_PERCENTAGE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } } ] }

  • OR two thresholds together: { "Or": [ { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }, { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_PERCENTAGE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } } ] }

', 'CostCategoryRule$Rule' => '

An Expression object used to categorize costs. This supports dimensions, tags, and nested expressions. Currently the only dimensions supported are LINKED_ACCOUNT, SERVICE_CODE, RECORD_TYPE, LINKED_ACCOUNT_NAME, REGION, and USAGE_TYPE.

RECORD_TYPE is a dimension used for Cost Explorer APIs, and is also supported for Cost Category expressions. This dimension uses different terms, depending on whether you\'re using the console or API/JSON editor. For a detailed comparison, see Term Comparisons in the Billing and Cost Management User Guide.

', 'Expression$Not' => '

Return results that don\'t match a Dimension object.

', 'Expressions$member' => NULL, 'GetCostAndUsageRequest$Filter' => '

Filters Amazon Web Services costs by different dimensions. For example, you can specify SERVICE and LINKED_ACCOUNT and get the costs that are associated with that account\'s usage of that service. You can nest Expression objects to define any combination of dimension filters. For more information, see Expression.

Valid values for MatchOptions for Dimensions are EQUALS and CASE_SENSITIVE.

Valid values for MatchOptions for CostCategories and Tags are EQUALS, ABSENT, and CASE_SENSITIVE. Default values are EQUALS and CASE_SENSITIVE.

', 'GetCostAndUsageWithResourcesRequest$Filter' => '

Filters Amazon Web Services costs by different dimensions. For example, you can specify SERVICE and LINKED_ACCOUNT and get the costs that are associated with that account\'s usage of that service. You can nest Expression objects to define any combination of dimension filters. For more information, see Expression.

The GetCostAndUsageWithResources operation requires that you either group by or filter by a ResourceId. It requires the Expression "SERVICE = Amazon Elastic Compute Cloud - Compute" in the filter.

Valid values for MatchOptions for Dimensions are EQUALS and CASE_SENSITIVE.

Valid values for MatchOptions for CostCategories and Tags are EQUALS, ABSENT, and CASE_SENSITIVE. Default values are EQUALS and CASE_SENSITIVE.

', 'GetCostCategoriesRequest$Filter' => NULL, 'GetCostForecastRequest$Filter' => '

The filters that you want to use to filter your forecast. The GetCostForecast API supports filtering by the following dimensions:

  • AZ

  • INSTANCE_TYPE

  • LINKED_ACCOUNT

  • LINKED_ACCOUNT_NAME

  • OPERATION

  • PURCHASE_TYPE

  • REGION

  • SERVICE

  • USAGE_TYPE

  • USAGE_TYPE_GROUP

  • RECORD_TYPE

  • OPERATING_SYSTEM

  • TENANCY

  • SCOPE

  • PLATFORM

  • SUBSCRIPTION_ID

  • LEGAL_ENTITY_NAME

  • DEPLOYMENT_OPTION

  • DATABASE_ENGINE

  • INSTANCE_TYPE_FAMILY

  • BILLING_ENTITY

  • RESERVATION_ID

  • SAVINGS_PLAN_ARN

', 'GetDimensionValuesRequest$Filter' => NULL, 'GetReservationCoverageRequest$Filter' => '

Filters utilization data by dimensions. You can filter by the following dimensions:

  • AZ

  • CACHE_ENGINE

  • DATABASE_ENGINE

  • DEPLOYMENT_OPTION

  • INSTANCE_TYPE

  • LINKED_ACCOUNT

  • OPERATING_SYSTEM

  • PLATFORM

  • REGION

  • SERVICE

  • TAG

  • TENANCY

GetReservationCoverage uses the same Expression object as the other operations, but only AND is supported among each dimension. You can nest only one level deep. If there are multiple values for a dimension, they are OR\'d together.

If you don\'t provide a SERVICE filter, Cost Explorer defaults to EC2.

Cost category is also supported.

', 'GetReservationPurchaseRecommendationRequest$Filter' => NULL, 'GetReservationUtilizationRequest$Filter' => '

Filters utilization data by dimensions. You can filter by the following dimensions:

  • AZ

  • CACHE_ENGINE

  • DEPLOYMENT_OPTION

  • INSTANCE_TYPE

  • LINKED_ACCOUNT

  • OPERATING_SYSTEM

  • PLATFORM

  • REGION

  • SERVICE

  • SCOPE

  • TENANCY

GetReservationUtilization uses the same Expression object as the other operations, but only AND is supported among each dimension, and nesting is supported up to only one level deep. If there are multiple values for a dimension, they are OR\'d together.

', 'GetRightsizingRecommendationRequest$Filter' => NULL, 'GetSavingsPlansCoverageRequest$Filter' => '

Filters Savings Plans coverage data by dimensions. You can filter data for Savings Plans usage with the following dimensions:

  • LINKED_ACCOUNT

  • REGION

  • SERVICE

  • INSTANCE_FAMILY

GetSavingsPlansCoverage uses the same Expression object as the other operations, but only AND is supported among each dimension. If there are multiple values for a dimension, they are OR\'d together.

Cost category is also supported.

', 'GetSavingsPlansPurchaseRecommendationRequest$Filter' => '

You can filter your recommendations by Account ID with the LINKED_ACCOUNT dimension. To filter your recommendations by Account ID, specify Key as LINKED_ACCOUNT and Value as the comma-separated Acount ID(s) that you want to see Savings Plans purchase recommendations for.

For GetSavingsPlansPurchaseRecommendation, the Filter doesn\'t include CostCategories or Tags. It only includes Dimensions. With Dimensions, Key must be LINKED_ACCOUNT and Value can be a single Account ID or multiple comma-separated Account IDs that you want to see Savings Plans Purchase Recommendations for. AND and OR operators are not supported.

', 'GetSavingsPlansUtilizationDetailsRequest$Filter' => '

Filters Savings Plans utilization coverage data for active Savings Plans dimensions. You can filter data with the following dimensions:

  • LINKED_ACCOUNT

  • SAVINGS_PLAN_ARN

  • REGION

  • PAYMENT_OPTION

  • INSTANCE_TYPE_FAMILY

GetSavingsPlansUtilizationDetails uses the same Expression object as the other operations, but only AND is supported among each dimension.

', 'GetSavingsPlansUtilizationRequest$Filter' => '

Filters Savings Plans utilization coverage data for active Savings Plans dimensions. You can filter data with the following dimensions:

  • LINKED_ACCOUNT

  • SAVINGS_PLAN_ARN

  • SAVINGS_PLANS_TYPE

  • REGION

  • PAYMENT_OPTION

  • INSTANCE_TYPE_FAMILY

GetSavingsPlansUtilization uses the same Expression object as the other operations, but only AND is supported among each dimension.

', 'GetTagsRequest$Filter' => NULL, 'GetUsageForecastRequest$Filter' => '

The filters that you want to use to filter your forecast. The GetUsageForecast API supports filtering by the following dimensions:

  • AZ

  • INSTANCE_TYPE

  • LINKED_ACCOUNT

  • LINKED_ACCOUNT_NAME

  • OPERATION

  • PURCHASE_TYPE

  • REGION

  • SERVICE

  • USAGE_TYPE

  • USAGE_TYPE_GROUP

  • RECORD_TYPE

  • OPERATING_SYSTEM

  • TENANCY

  • SCOPE

  • PLATFORM

  • SUBSCRIPTION_ID

  • LEGAL_ENTITY_NAME

  • DEPLOYMENT_OPTION

  • DATABASE_ENGINE

  • INSTANCE_TYPE_FAMILY

  • BILLING_ENTITY

  • RESERVATION_ID

  • SAVINGS_PLAN_ARN

', 'UpdateAnomalySubscriptionRequest$ThresholdExpression' => '

The update to the Expression object used to specify the anomalies that you want to generate alerts for. This supports dimensions and nested expressions. The supported dimensions are ANOMALY_TOTAL_IMPACT_ABSOLUTE and ANOMALY_TOTAL_IMPACT_PERCENTAGE, corresponding to an anomaly’s TotalImpact and TotalImpactPercentage, respectively (see Impact for more details). The supported nested expression types are AND and OR. The match option GREATER_THAN_OR_EQUAL is required. Values must be numbers between 0 and 10,000,000,000 in string format.

You can specify either Threshold or ThresholdExpression, but not both.

The following are examples of valid ThresholdExpressions:

  • Absolute threshold: { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }

  • Percentage threshold: { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_PERCENTAGE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }

  • AND two thresholds together: { "And": [ { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }, { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_PERCENTAGE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } } ] }

  • OR two thresholds together: { "Or": [ { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }, { "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_PERCENTAGE", "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } } ] }

', ], ], 'Expressions' => [ 'base' => NULL, 'refs' => [ 'Expression$Or' => '

Return results that match either Dimension object.

', 'Expression$And' => '

Return results that match both Dimension objects.

', ], ], 'FindingReasonCode' => [ 'base' => NULL, 'refs' => [ 'FindingReasonCodes$member' => NULL, ], ], 'FindingReasonCodes' => [ 'base' => NULL, 'refs' => [ 'RightsizingRecommendation$FindingReasonCodes' => '

The list of possible reasons why the recommendation is generated, such as under- or over-utilization of specific metrics (for example, CPU, Memory, Network).

', ], ], 'ForecastResult' => [ 'base' => '

The forecast that\'s created for your query.

', 'refs' => [ 'ForecastResultsByTime$member' => NULL, ], ], 'ForecastResultsByTime' => [ 'base' => NULL, 'refs' => [ 'GetCostForecastResponse$ForecastResultsByTime' => '

The forecasts for your query, in order. For DAILY forecasts, this is a list of days. For MONTHLY forecasts, this is a list of months.

', 'GetUsageForecastResponse$ForecastResultsByTime' => '

The forecasts for your query, in order. For DAILY forecasts, this is a list of days. For MONTHLY forecasts, this is a list of months.

', ], ], 'GenerationExistsException' => [ 'base' => '

A request to generate a recommendation is already in progress.

', 'refs' => [], ], 'GenerationStatus' => [ 'base' => NULL, 'refs' => [ 'GenerationSummary$GenerationStatus' => '

Indicates whether the recommendation generation succeeded, is processing, or failed.

', 'ListSavingsPlansPurchaseRecommendationGenerationRequest$GenerationStatus' => '

The status of the recommendation generation.

', ], ], 'GenerationSummary' => [ 'base' => '

The summary of the Savings Plans recommendation generation.

', 'refs' => [ 'GenerationSummaryList$member' => NULL, ], ], 'GenerationSummaryList' => [ 'base' => NULL, 'refs' => [ 'ListSavingsPlansPurchaseRecommendationGenerationResponse$GenerationSummaryList' => '

The list of historical recommendation generations.

', ], ], 'GenericBoolean' => [ 'base' => NULL, 'refs' => [ 'EC2InstanceDetails$CurrentGeneration' => '

Determines whether the recommendation is for a current-generation instance.

', 'EC2InstanceDetails$SizeFlexEligible' => '

Determines whether the recommended reservation is size flexible.

', 'ESInstanceDetails$CurrentGeneration' => '

Determines whether the recommendation is for a current-generation instance.

', 'ESInstanceDetails$SizeFlexEligible' => '

Determines whether the recommended reservation is size flexible.

', 'ElastiCacheInstanceDetails$CurrentGeneration' => '

Determines whether the recommendation is for a current generation instance.

', 'ElastiCacheInstanceDetails$SizeFlexEligible' => '

Determines whether the recommended reservation is size flexible.

', 'MemoryDBInstanceDetails$CurrentGeneration' => '

Determines whether the recommendation is for a current generation instance.

', 'MemoryDBInstanceDetails$SizeFlexEligible' => '

Determines whether the recommended reservation is size flexible.

', 'RDSInstanceDetails$CurrentGeneration' => '

Determines whether the recommendation is for a current-generation instance.

', 'RDSInstanceDetails$SizeFlexEligible' => '

Determines whether the recommended reservation is size flexible.

', 'RedshiftInstanceDetails$CurrentGeneration' => '

Determines whether the recommendation is for a current-generation instance.

', 'RedshiftInstanceDetails$SizeFlexEligible' => '

Determines whether the recommended reservation is size flexible.

', 'RightsizingRecommendationConfiguration$BenefitsConsidered' => '

The option to consider RI or Savings Plans discount benefits in your savings calculation. The default value is TRUE.

', 'TargetInstance$DefaultTargetInstance' => '

Determines whether this recommendation is the defaulted Amazon Web Services recommendation.

', ], ], 'GenericDouble' => [ 'base' => NULL, 'refs' => [ 'AnomalyScore$MaxScore' => '

The maximum score that\'s observed during the AnomalyDateInterval.

', 'AnomalyScore$CurrentScore' => '

The last observed score.

', 'Impact$MaxImpact' => '

The maximum dollar value that\'s observed for an anomaly.

', 'Impact$TotalImpact' => '

The cumulative dollar difference between the total actual spend and total expected spend. It is calculated as TotalActualSpend - TotalExpectedSpend.

', 'TotalImpactFilter$StartValue' => '

The lower bound dollar value that\'s used in the filter.

', 'TotalImpactFilter$EndValue' => '

The upper bound dollar value that\'s used in the filter.

', ], ], 'GenericString' => [ 'base' => NULL, 'refs' => [ 'Anomaly$AnomalyId' => '

The unique identifier for the anomaly.

', 'Anomaly$DimensionValue' => '

The dimension for the anomaly (for example, an Amazon Web Service in a service monitor).

', 'Anomaly$MonitorArn' => '

The Amazon Resource Name (ARN) for the cost monitor that generated this anomaly.

', 'AnomalyMonitor$MonitorArn' => '

The Amazon Resource Name (ARN) value.

', 'AnomalyMonitor$MonitorName' => '

The name of the monitor.

', 'AnomalySubscription$SubscriptionArn' => '

The AnomalySubscription Amazon Resource Name (ARN).

', 'AnomalySubscription$AccountId' => '

Your unique account identifier.

', 'AnomalySubscription$SubscriptionName' => '

The name for the subscription.

', 'ApproximateUsageRecordsPerService$key' => NULL, 'CostCategoryInheritedValueDimension$DimensionKey' => '

The key to extract cost category values.

', 'CostCategorySplitChargeRule$Source' => '

The Cost Category value that you want to split. That value can\'t be used as a source or a target in other split charge rules. To indicate uncategorized costs, you can use an empty string as the source.

', 'CostCategorySplitChargeRuleParameterValuesList$member' => NULL, 'CostCategorySplitChargeRuleTargetsList$member' => NULL, 'CreateAnomalyMonitorResponse$MonitorArn' => '

The unique identifier of your newly created cost anomaly detection monitor.

', 'CreateAnomalySubscriptionResponse$SubscriptionArn' => '

The unique identifier of your newly created cost anomaly subscription.

', 'CurrentInstance$ResourceId' => '

Resource ID of the current instance.

', 'CurrentInstance$InstanceName' => '

The name that you given an instance. This field shows as blank if you haven\'t given the instance a name.

', 'CurrentInstance$ReservationCoveredHoursInLookbackPeriod' => '

The number of hours during the lookback period that\'s covered by reservations.

', 'CurrentInstance$SavingsPlansCoveredHoursInLookbackPeriod' => '

The number of hours during the lookback period that\'s covered by Savings Plans.

', 'CurrentInstance$OnDemandHoursInLookbackPeriod' => '

The number of hours during the lookback period that\'s billed at On-Demand rates.

', 'CurrentInstance$TotalRunningHoursInLookbackPeriod' => '

The total number of hours that the instance ran during the lookback period.

', 'CurrentInstance$MonthlyCost' => '

The current On-Demand cost of operating this instance on a monthly basis.

', 'CurrentInstance$CurrencyCode' => '

The currency code that Amazon Web Services used to calculate the costs for this instance.

', 'DeleteAnomalyMonitorRequest$MonitorArn' => '

The unique identifier of the cost anomaly monitor that you want to delete.

', 'DeleteAnomalySubscriptionRequest$SubscriptionArn' => '

The unique identifier of the cost anomaly subscription that you want to delete.

', 'DiskResourceUtilization$DiskReadOpsPerSecond' => '

The maximum number of read operations per second.

', 'DiskResourceUtilization$DiskWriteOpsPerSecond' => '

The maximum number of write operations per second.

', 'DiskResourceUtilization$DiskReadBytesPerSecond' => '

The maximum read throughput operations per second.

', 'DiskResourceUtilization$DiskWriteBytesPerSecond' => '

The maximum write throughput operations per second.

', 'EBSResourceUtilization$EbsReadOpsPerSecond' => '

The maximum number of read operations per second.

', 'EBSResourceUtilization$EbsWriteOpsPerSecond' => '

The maximum number of write operations per second.

', 'EBSResourceUtilization$EbsReadBytesPerSecond' => '

The maximum size of read operations per second

', 'EBSResourceUtilization$EbsWriteBytesPerSecond' => '

The maximum size of write operations per second.

', 'EC2InstanceDetails$Family' => '

The instance family of the recommended reservation.

', 'EC2InstanceDetails$InstanceType' => '

The type of instance that Amazon Web Services recommends.

', 'EC2InstanceDetails$Region' => '

The Amazon Web Services Region of the recommended reservation.

', 'EC2InstanceDetails$AvailabilityZone' => '

The Availability Zone of the recommended reservation.

', 'EC2InstanceDetails$Platform' => '

The platform of the recommended reservation. The platform is the specific combination of operating system, license model, and software on an instance.

', 'EC2InstanceDetails$Tenancy' => '

Determines whether the recommended reservation is dedicated or shared.

', 'EC2ResourceDetails$HourlyOnDemandRate' => '

The hourly public On-Demand rate for the instance type.

', 'EC2ResourceDetails$InstanceType' => '

The type of Amazon Web Services instance.

', 'EC2ResourceDetails$Platform' => '

The platform of the Amazon Web Services instance. The platform is the specific combination of operating system, license model, and software on an instance.

', 'EC2ResourceDetails$Region' => '

The Amazon Web Services Region of the instance.

', 'EC2ResourceDetails$Sku' => '

The SKU of the product.

', 'EC2ResourceDetails$Memory' => '

The memory capacity of the Amazon Web Services instance.

', 'EC2ResourceDetails$NetworkPerformance' => '

The network performance capacity of the Amazon Web Services instance.

', 'EC2ResourceDetails$Storage' => '

The disk storage of the Amazon Web Services instance. This doesn\'t include EBS storage.

', 'EC2ResourceDetails$Vcpu' => '

The number of VCPU cores in the Amazon Web Services instance type.

', 'EC2ResourceUtilization$MaxCpuUtilizationPercentage' => '

The maximum observed or expected CPU utilization of the instance.

', 'EC2ResourceUtilization$MaxMemoryUtilizationPercentage' => '

The maximum observed or expected memory utilization of the instance.

', 'EC2ResourceUtilization$MaxStorageUtilizationPercentage' => '

The maximum observed or expected storage utilization of the instance. This doesn\'t include EBS storage.

', 'ESInstanceDetails$InstanceClass' => '

The class of instance that Amazon Web Services recommends.

', 'ESInstanceDetails$InstanceSize' => '

The size of instance that Amazon Web Services recommends.

', 'ESInstanceDetails$Region' => '

The Amazon Web Services Region of the recommended reservation.

', 'ElastiCacheInstanceDetails$Family' => '

The instance family of the recommended reservation.

', 'ElastiCacheInstanceDetails$NodeType' => '

The type of node that Amazon Web Services recommends.

', 'ElastiCacheInstanceDetails$Region' => '

The Amazon Web Services Region of the recommended reservation.

', 'ElastiCacheInstanceDetails$ProductDescription' => '

The description of the recommended reservation.

', 'ForecastResult$MeanValue' => '

The mean value of the forecast.

', 'ForecastResult$PredictionIntervalLowerBound' => '

The lower limit for the prediction interval.

', 'ForecastResult$PredictionIntervalUpperBound' => '

The upper limit for the prediction interval.

', 'GetAnomaliesRequest$MonitorArn' => '

Retrieves all of the cost anomalies detected for a specific cost anomaly monitor Amazon Resource Name (ARN).

', 'GetAnomalySubscriptionsRequest$MonitorArn' => '

Cost anomaly monitor ARNs.

', 'GetReservationPurchaseRecommendationRequest$AccountId' => '

The account ID that\'s associated with the recommendation.

', 'GetReservationPurchaseRecommendationRequest$Service' => '

The specific service that you want recommendations for.

', 'GetRightsizingRecommendationRequest$Service' => '

The specific service that you want recommendations for. The only valid value for GetRightsizingRecommendation is "AmazonEC2".

', 'MemoryDBInstanceDetails$Family' => '

The instance family of the recommended reservation.

', 'MemoryDBInstanceDetails$NodeType' => '

The node type of the recommended reservation.

', 'MemoryDBInstanceDetails$Region' => '

The Amazon Web Services Region of the recommended reservation.

', 'NetworkResourceUtilization$NetworkInBytesPerSecond' => '

The network inbound throughput utilization measured in Bytes per second (Bps).

', 'NetworkResourceUtilization$NetworkOutBytesPerSecond' => '

The network outbound throughput utilization measured in Bytes per second (Bps).

', 'NetworkResourceUtilization$NetworkPacketsInPerSecond' => '

The network inbound packets that are measured in packets per second.

', 'NetworkResourceUtilization$NetworkPacketsOutPerSecond' => '

The network outbound packets that are measured in packets per second.

', 'ProvideAnomalyFeedbackRequest$AnomalyId' => '

A cost anomaly ID.

', 'ProvideAnomalyFeedbackResponse$AnomalyId' => '

The ID of the modified cost anomaly.

', 'RDSInstanceDetails$Family' => '

The instance family of the recommended reservation.

', 'RDSInstanceDetails$InstanceType' => '

The type of instance that Amazon Web Services recommends.

', 'RDSInstanceDetails$Region' => '

The Amazon Web Services Region of the recommended reservation.

', 'RDSInstanceDetails$DatabaseEngine' => '

The database engine that the recommended reservation supports.

', 'RDSInstanceDetails$DatabaseEdition' => '

The database edition that the recommended reservation supports.

', 'RDSInstanceDetails$DeploymentOption' => '

Determines whether the recommendation is for a reservation in a single Availability Zone or a reservation with a backup in a second Availability Zone.

', 'RDSInstanceDetails$LicenseModel' => '

The license model that the recommended reservation supports.

', 'RecommendationDetailData$AccountId' => '

The AccountID that the recommendation is generated for.

', 'RecommendationDetailData$CurrencyCode' => '

The currency code that Amazon Web Services used to generate the recommendation and present potential savings.

', 'RecommendationDetailData$InstanceFamily' => '

The instance family of the recommended Savings Plan.

', 'RecommendationDetailData$Region' => '

The region the recommendation is generated for.

', 'RecommendationDetailData$OfferingId' => '

The unique ID that\'s used to distinguish Savings Plans from one another.

', 'RecommendationDetailData$CurrentAverageHourlyOnDemandSpend' => '

The average value of hourly On-Demand spend over the lookback period of the applicable usage type.

', 'RecommendationDetailData$CurrentMaximumHourlyOnDemandSpend' => '

The highest value of hourly On-Demand spend over the lookback period of the applicable usage type.

', 'RecommendationDetailData$CurrentMinimumHourlyOnDemandSpend' => '

The lowest value of hourly On-Demand spend over the lookback period of the applicable usage type.

', 'RecommendationDetailData$EstimatedAverageUtilization' => '

The estimated utilization of the recommended Savings Plan.

', 'RecommendationDetailData$EstimatedMonthlySavingsAmount' => '

The estimated monthly savings amount based on the recommended Savings Plan.

', 'RecommendationDetailData$EstimatedOnDemandCost' => '

The remaining On-Demand cost estimated to not be covered by the recommended Savings Plan, over the length of the lookback period.

', 'RecommendationDetailData$EstimatedOnDemandCostWithCurrentCommitment' => '

The estimated On-Demand costs you expect with no additional commitment, based on your usage of the selected time period and the Savings Plan you own.

', 'RecommendationDetailData$EstimatedROI' => '

The estimated return on investment that\'s based on the recommended Savings Plan that you purchased. This is calculated as estimatedSavingsAmount/estimatedSPCost*100.

', 'RecommendationDetailData$EstimatedSPCost' => '

The cost of the recommended Savings Plan over the length of the lookback period.

', 'RecommendationDetailData$EstimatedSavingsAmount' => '

The estimated savings amount that\'s based on the recommended Savings Plan over the length of the lookback period.

', 'RecommendationDetailData$EstimatedSavingsPercentage' => '

The estimated savings percentage relative to the total cost of applicable On-Demand usage over the lookback period.

', 'RecommendationDetailData$ExistingHourlyCommitment' => '

The existing hourly commitment for the Savings Plan type.

', 'RecommendationDetailData$HourlyCommitmentToPurchase' => '

The recommended hourly commitment level for the Savings Plan type and the configuration that\'s based on the usage during the lookback period.

', 'RecommendationDetailData$UpfrontCost' => '

The upfront cost of the recommended Savings Plan, based on the selected payment option.

', 'RecommendationDetailData$CurrentAverageCoverage' => '

The average value of hourly coverage over the lookback period.

', 'RecommendationDetailData$EstimatedAverageCoverage' => '

The estimated coverage of the recommended Savings Plan.

', 'RecommendationDetailHourlyMetrics$EstimatedOnDemandCost' => '

The remaining On-Demand cost estimated to not be covered by the recommended Savings Plan, over the length of the lookback period.

', 'RecommendationDetailHourlyMetrics$CurrentCoverage' => '

The current amount of Savings Plans eligible usage that the Savings Plan covered.

', 'RecommendationDetailHourlyMetrics$EstimatedCoverage' => '

The estimated coverage amount based on the recommended Savings Plan.

', 'RecommendationDetailHourlyMetrics$EstimatedNewCommitmentUtilization' => '

The estimated utilization for the recommended Savings Plan.

', 'RedshiftInstanceDetails$Family' => '

The instance family of the recommended reservation.

', 'RedshiftInstanceDetails$NodeType' => '

The type of node that Amazon Web Services recommends.

', 'RedshiftInstanceDetails$Region' => '

The Amazon Web Services Region of the recommended reservation.

', 'ReservationPurchaseRecommendationDetail$AccountId' => '

The account that this Reserved Instance (RI) recommendation is for.

', 'ReservationPurchaseRecommendationDetail$RecommendedNumberOfInstancesToPurchase' => '

The number of instances that Amazon Web Services recommends that you purchase.

', 'ReservationPurchaseRecommendationDetail$RecommendedNormalizedUnitsToPurchase' => '

The number of normalized units that Amazon Web Services recommends that you purchase.

', 'ReservationPurchaseRecommendationDetail$MinimumNumberOfInstancesUsedPerHour' => '

The minimum number of instances that you used in an hour during the historical period. Amazon Web Services uses this to calculate your recommended reservation purchases.

', 'ReservationPurchaseRecommendationDetail$MinimumNormalizedUnitsUsedPerHour' => '

The minimum number of normalized units that you used in an hour during the historical period. Amazon Web Services uses this to calculate your recommended reservation purchases.

', 'ReservationPurchaseRecommendationDetail$MaximumNumberOfInstancesUsedPerHour' => '

The maximum number of instances that you used in an hour during the historical period. Amazon Web Services uses this to calculate your recommended reservation purchases.

', 'ReservationPurchaseRecommendationDetail$MaximumNormalizedUnitsUsedPerHour' => '

The maximum number of normalized units that you used in an hour during the historical period. Amazon Web Services uses this to calculate your recommended reservation purchases.

', 'ReservationPurchaseRecommendationDetail$AverageNumberOfInstancesUsedPerHour' => '

The average number of instances that you used in an hour during the historical period. Amazon Web Services uses this to calculate your recommended reservation purchases.

', 'ReservationPurchaseRecommendationDetail$AverageNormalizedUnitsUsedPerHour' => '

The average number of normalized units that you used in an hour during the historical period. Amazon Web Services uses this to calculate your recommended reservation purchases.

', 'ReservationPurchaseRecommendationDetail$AverageUtilization' => '

The average utilization of your instances. Amazon Web Services uses this to calculate your recommended reservation purchases.

', 'ReservationPurchaseRecommendationDetail$EstimatedBreakEvenInMonths' => '

How long Amazon Web Services estimates that it takes for this instance to start saving you money, in months.

', 'ReservationPurchaseRecommendationDetail$CurrencyCode' => '

The currency code that Amazon Web Services used to calculate the costs for this instance.

', 'ReservationPurchaseRecommendationDetail$EstimatedMonthlySavingsAmount' => '

How much Amazon Web Services estimates that this specific recommendation might save you in a month.

', 'ReservationPurchaseRecommendationDetail$EstimatedMonthlySavingsPercentage' => '

How much Amazon Web Services estimates that this specific recommendation might save you in a month, as a percentage of your overall costs.

', 'ReservationPurchaseRecommendationDetail$EstimatedMonthlyOnDemandCost' => '

How much Amazon Web Services estimates that you spend on On-Demand Instances in a month.

', 'ReservationPurchaseRecommendationDetail$EstimatedReservationCostForLookbackPeriod' => '

How much Amazon Web Services estimates that you might spend for all usage during the specified historical period if you had a reservation.

', 'ReservationPurchaseRecommendationDetail$UpfrontCost' => '

How much purchasing this instance costs you upfront.

', 'ReservationPurchaseRecommendationDetail$RecurringStandardMonthlyCost' => '

How much purchasing this instance costs you on a monthly basis.

', 'ReservationPurchaseRecommendationMetadata$RecommendationId' => '

The ID for this specific recommendation.

', 'ReservationPurchaseRecommendationMetadata$GenerationTimestamp' => '

The timestamp for when Amazon Web Services made this recommendation.

', 'ReservationPurchaseRecommendationSummary$TotalEstimatedMonthlySavingsAmount' => '

The total amount that Amazon Web Services estimates that this recommendation could save you in a month.

', 'ReservationPurchaseRecommendationSummary$TotalEstimatedMonthlySavingsPercentage' => '

The total amount that Amazon Web Services estimates that this recommendation could save you in a month, as a percentage of your costs.

', 'ReservationPurchaseRecommendationSummary$CurrencyCode' => '

The currency code used for this recommendation.

', 'RightsizingRecommendation$AccountId' => '

The account that this recommendation is for.

', 'RightsizingRecommendationMetadata$RecommendationId' => '

The ID for this specific recommendation.

', 'RightsizingRecommendationMetadata$GenerationTimestamp' => '

The timestamp for when Amazon Web Services made this recommendation.

', 'RightsizingRecommendationMetadata$AdditionalMetadata' => '

Additional metadata that might be applicable to the recommendation.

', 'RightsizingRecommendationSummary$TotalRecommendationCount' => '

The total number of instance recommendations.

', 'RightsizingRecommendationSummary$EstimatedTotalMonthlySavingsAmount' => '

The estimated total savings resulting from modifications, on a monthly basis.

', 'RightsizingRecommendationSummary$SavingsCurrencyCode' => '

The currency code that Amazon Web Services used to calculate the savings.

', 'RightsizingRecommendationSummary$SavingsPercentage' => '

The savings percentage based on the recommended modifications. It\'s relative to the total On-Demand costs that are associated with these instances.

', 'RootCause$Service' => '

The Amazon Web Service name that\'s associated with the cost anomaly.

', 'RootCause$Region' => '

The Amazon Web Services Region that\'s associated with the cost anomaly.

', 'RootCause$LinkedAccount' => '

The member account value that\'s associated with the cost anomaly.

', 'RootCause$UsageType' => '

The UsageType value that\'s associated with the cost anomaly.

', 'RootCause$LinkedAccountName' => '

The member account name value that\'s associated with the cost anomaly.

', 'SavingsPlansAmortizedCommitment$AmortizedRecurringCommitment' => '

The amortized amount of your Savings Plans commitment that was purchased with either a Partial or a NoUpfront.

', 'SavingsPlansAmortizedCommitment$AmortizedUpfrontCommitment' => '

The amortized amount of your Savings Plans commitment that was purchased with an Upfront or PartialUpfront Savings Plans.

', 'SavingsPlansAmortizedCommitment$TotalAmortizedCommitment' => '

The total amortized amount of your Savings Plans commitment, regardless of your Savings Plans purchase method.

', 'SavingsPlansCoverageData$SpendCoveredBySavingsPlans' => '

The amount of your Amazon Web Services usage that\'s covered by a Savings Plans.

', 'SavingsPlansCoverageData$OnDemandCost' => '

The cost of your Amazon Web Services usage at the public On-Demand rate.

', 'SavingsPlansCoverageData$TotalCost' => '

The total cost of your Amazon Web Services usage, regardless of your purchase option.

', 'SavingsPlansCoverageData$CoveragePercentage' => '

The percentage of your existing Savings Plans covered usage, divided by all of your eligible Savings Plans usage in an account (or set of accounts).

', 'SavingsPlansDetails$Region' => '

A collection of Amazon Web Services resources in a geographic area. Each Amazon Web Services Region is isolated and independent of the other Regions.

', 'SavingsPlansDetails$InstanceFamily' => '

A group of instance types that Savings Plans applies to.

', 'SavingsPlansDetails$OfferingId' => '

The unique ID that\'s used to distinguish Savings Plans from one another.

', 'SavingsPlansPurchaseRecommendationDetail$AccountId' => '

The AccountID the recommendation is generated for.

', 'SavingsPlansPurchaseRecommendationDetail$UpfrontCost' => '

The upfront cost of the recommended Savings Plans, based on the selected payment option.

', 'SavingsPlansPurchaseRecommendationDetail$EstimatedROI' => '

The estimated return on investment that\'s based on the recommended Savings Plans that you purchased. This is calculated as estimatedSavingsAmount/ estimatedSPCost*100.

', 'SavingsPlansPurchaseRecommendationDetail$CurrencyCode' => '

The currency code that Amazon Web Services used to generate the recommendations and present potential savings.

', 'SavingsPlansPurchaseRecommendationDetail$EstimatedSPCost' => '

The cost of the recommended Savings Plans over the length of the lookback period.

', 'SavingsPlansPurchaseRecommendationDetail$EstimatedOnDemandCost' => '

The remaining On-Demand cost estimated to not be covered by the recommended Savings Plans, over the length of the lookback period.

', 'SavingsPlansPurchaseRecommendationDetail$EstimatedOnDemandCostWithCurrentCommitment' => '

The estimated On-Demand costs you expect with no additional commitment, based on your usage of the selected time period and the Savings Plans you own.

', 'SavingsPlansPurchaseRecommendationDetail$EstimatedSavingsAmount' => '

The estimated savings amount that\'s based on the recommended Savings Plans over the length of the lookback period.

', 'SavingsPlansPurchaseRecommendationDetail$EstimatedSavingsPercentage' => '

The estimated savings percentage relative to the total cost of applicable On-Demand usage over the lookback period.

', 'SavingsPlansPurchaseRecommendationDetail$HourlyCommitmentToPurchase' => '

The recommended hourly commitment level for the Savings Plans type and the configuration that\'s based on the usage during the lookback period.

', 'SavingsPlansPurchaseRecommendationDetail$EstimatedAverageUtilization' => '

The estimated utilization of the recommended Savings Plans.

', 'SavingsPlansPurchaseRecommendationDetail$EstimatedMonthlySavingsAmount' => '

The estimated monthly savings amount based on the recommended Savings Plans.

', 'SavingsPlansPurchaseRecommendationDetail$CurrentMinimumHourlyOnDemandSpend' => '

The lowest value of hourly On-Demand spend over the lookback period of the applicable usage type.

', 'SavingsPlansPurchaseRecommendationDetail$CurrentMaximumHourlyOnDemandSpend' => '

The highest value of hourly On-Demand spend over the lookback period of the applicable usage type.

', 'SavingsPlansPurchaseRecommendationDetail$CurrentAverageHourlyOnDemandSpend' => '

The average value of hourly On-Demand spend over the lookback period of the applicable usage type.

', 'SavingsPlansPurchaseRecommendationMetadata$RecommendationId' => '

The unique identifier for the recommendation set.

', 'SavingsPlansPurchaseRecommendationMetadata$GenerationTimestamp' => '

The timestamp that shows when the recommendations were generated.

', 'SavingsPlansPurchaseRecommendationMetadata$AdditionalMetadata' => '

Additional metadata that might be applicable to the recommendation.

', 'SavingsPlansPurchaseRecommendationSummary$EstimatedROI' => '

The estimated return on investment that\'s based on the recommended Savings Plans and estimated savings.

', 'SavingsPlansPurchaseRecommendationSummary$CurrencyCode' => '

The currency code that Amazon Web Services used to generate the recommendations and present potential savings.

', 'SavingsPlansPurchaseRecommendationSummary$EstimatedTotalCost' => '

The estimated total cost of the usage after purchasing the recommended Savings Plans. This is a sum of the cost of Savings Plans during this term, and the remaining On-Demand usage.

', 'SavingsPlansPurchaseRecommendationSummary$CurrentOnDemandSpend' => '

The current total on demand spend of the applicable usage types over the lookback period.

', 'SavingsPlansPurchaseRecommendationSummary$EstimatedSavingsAmount' => '

The estimated total savings over the lookback period, based on the purchase of the recommended Savings Plans.

', 'SavingsPlansPurchaseRecommendationSummary$TotalRecommendationCount' => '

The aggregate number of Savings Plans recommendations that exist for your account.

', 'SavingsPlansPurchaseRecommendationSummary$DailyCommitmentToPurchase' => '

The recommended Savings Plans cost on a daily (24 hourly) basis.

', 'SavingsPlansPurchaseRecommendationSummary$HourlyCommitmentToPurchase' => '

The recommended hourly commitment that\'s based on the recommendation parameters.

', 'SavingsPlansPurchaseRecommendationSummary$EstimatedSavingsPercentage' => '

The estimated savings relative to the total cost of On-Demand usage, over the lookback period. This is calculated as estimatedSavingsAmount/ CurrentOnDemandSpend*100.

', 'SavingsPlansPurchaseRecommendationSummary$EstimatedMonthlySavingsAmount' => '

The estimated monthly savings amount that\'s based on the recommended Savings Plans purchase.

', 'SavingsPlansPurchaseRecommendationSummary$EstimatedOnDemandCostWithCurrentCommitment' => '

The estimated On-Demand costs you expect with no additional commitment. It\'s based on your usage of the selected time period and the Savings Plans you own.

', 'SavingsPlansSavings$NetSavings' => '

The savings amount that you\'re accumulating for the usage that\'s covered by a Savings Plans, when compared to the On-Demand equivalent of the same usage.

', 'SavingsPlansSavings$OnDemandCostEquivalent' => '

How much the amount that the usage would have cost if it was accrued at the On-Demand rate.

', 'SavingsPlansUtilization$TotalCommitment' => '

The total amount of Savings Plans commitment that\'s been purchased in an account (or set of accounts).

', 'SavingsPlansUtilization$UsedCommitment' => '

The amount of your Savings Plans commitment that was consumed from Savings Plans eligible usage in a specific period.

', 'SavingsPlansUtilization$UnusedCommitment' => '

The amount of your Savings Plans commitment that wasn\'t consumed from Savings Plans eligible usage in a specific period.

', 'SavingsPlansUtilization$UtilizationPercentage' => '

The amount of UsedCommitment divided by the TotalCommitment for your Savings Plans.

', 'TargetInstance$EstimatedMonthlyCost' => '

The expected cost to operate this instance type on a monthly basis.

', 'TargetInstance$EstimatedMonthlySavings' => '

The estimated savings that result from modification, on a monthly basis.

', 'TargetInstance$CurrencyCode' => '

The currency code that Amazon Web Services used to calculate the costs for this instance.

', 'TerminateRecommendationDetail$EstimatedMonthlySavings' => '

The estimated savings that result from modification, on a monthly basis.

', 'TerminateRecommendationDetail$CurrencyCode' => '

The currency code that Amazon Web Services used to calculate the costs for this instance.

', 'UpdateAnomalyMonitorRequest$MonitorArn' => '

Cost anomaly monitor Amazon Resource Names (ARNs).

', 'UpdateAnomalyMonitorRequest$MonitorName' => '

The new name for the cost anomaly monitor.

', 'UpdateAnomalyMonitorResponse$MonitorArn' => '

A cost anomaly monitor ARN.

', 'UpdateAnomalySubscriptionRequest$SubscriptionArn' => '

A cost anomaly subscription Amazon Resource Name (ARN).

', 'UpdateAnomalySubscriptionRequest$SubscriptionName' => '

The new name of the subscription.

', 'UpdateAnomalySubscriptionResponse$SubscriptionArn' => '

A cost anomaly subscription ARN.

', 'UpdateCostAllocationTagsStatusError$Code' => '

An error code representing why the action failed on this entry.

', 'UsageServices$member' => NULL, ], ], 'GetAnomaliesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetAnomaliesResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetAnomalyMonitorsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetAnomalyMonitorsResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetAnomalySubscriptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetAnomalySubscriptionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetApproximateUsageRecordsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetApproximateUsageRecordsResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetCostAndUsageRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetCostAndUsageResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetCostAndUsageWithResourcesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetCostAndUsageWithResourcesResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetCostCategoriesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetCostCategoriesResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetCostForecastRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetCostForecastResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetDimensionValuesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetDimensionValuesResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetReservationCoverageRequest' => [ 'base' => '

You can use the following request parameters to query for how much of your instance usage a reservation covered.

', 'refs' => [], ], 'GetReservationCoverageResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetReservationPurchaseRecommendationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetReservationPurchaseRecommendationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetReservationUtilizationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetReservationUtilizationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetRightsizingRecommendationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetRightsizingRecommendationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlanPurchaseRecommendationDetailsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlanPurchaseRecommendationDetailsResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlansCoverageRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlansCoverageResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlansPurchaseRecommendationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlansPurchaseRecommendationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlansUtilizationDetailsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlansUtilizationDetailsResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlansUtilizationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSavingsPlansUtilizationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetTagsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTagsResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetUsageForecastRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetUsageForecastResponse' => [ 'base' => NULL, 'refs' => [], ], 'Granularity' => [ 'base' => NULL, 'refs' => [ 'GetApproximateUsageRecordsRequest$Granularity' => '

How granular you want the data to be. You can enable data at hourly or daily granularity.

', 'GetCostAndUsageRequest$Granularity' => '

Sets the Amazon Web Services cost granularity to MONTHLY or DAILY, or HOURLY. If Granularity isn\'t set, the response object doesn\'t include the Granularity, either MONTHLY or DAILY, or HOURLY.

', 'GetCostAndUsageWithResourcesRequest$Granularity' => '

Sets the Amazon Web Services cost granularity to MONTHLY, DAILY, or HOURLY. If Granularity isn\'t set, the response object doesn\'t include the Granularity, MONTHLY, DAILY, or HOURLY.

', 'GetCostForecastRequest$Granularity' => '

How granular you want the forecast to be. You can get 3 months of DAILY forecasts or 12 months of MONTHLY forecasts.

The GetCostForecast operation supports only DAILY and MONTHLY granularities.

', 'GetReservationCoverageRequest$Granularity' => '

The granularity of the Amazon Web Services cost data for the reservation. Valid values are MONTHLY and DAILY.

If GroupBy is set, Granularity can\'t be set. If Granularity isn\'t set, the response object doesn\'t include Granularity, either MONTHLY or DAILY.

The GetReservationCoverage operation supports only DAILY and MONTHLY granularities.

', 'GetReservationUtilizationRequest$Granularity' => '

If GroupBy is set, Granularity can\'t be set. If Granularity isn\'t set, the response object doesn\'t include Granularity, either MONTHLY or DAILY. If both GroupBy and Granularity aren\'t set, GetReservationUtilization defaults to DAILY.

The GetReservationUtilization operation supports only DAILY and MONTHLY granularities.

', 'GetSavingsPlansCoverageRequest$Granularity' => '

The granularity of the Amazon Web Services cost data for your Savings Plans. Granularity can\'t be set if GroupBy is set.

The GetSavingsPlansCoverage operation supports only DAILY and MONTHLY granularities.

', 'GetSavingsPlansUtilizationRequest$Granularity' => '

The granularity of the Amazon Web Services utillization data for your Savings Plans.

The GetSavingsPlansUtilization operation supports only DAILY and MONTHLY granularities.

', 'GetUsageForecastRequest$Granularity' => '

How granular you want the forecast to be. You can get 3 months of DAILY forecasts or 12 months of MONTHLY forecasts.

The GetUsageForecast operation supports only DAILY and MONTHLY granularities.

', ], ], 'Group' => [ 'base' => '

One level of grouped data in the results.

', 'refs' => [ 'Groups$member' => NULL, ], ], 'GroupDefinition' => [ 'base' => '

Represents a group when you specify a group by criteria or in the response to a query with a specific grouping.

', 'refs' => [ 'GroupDefinitions$member' => NULL, ], ], 'GroupDefinitionKey' => [ 'base' => NULL, 'refs' => [ 'GroupDefinition$Key' => '

The string that represents a key for a specified group.

', ], ], 'GroupDefinitionType' => [ 'base' => NULL, 'refs' => [ 'GroupDefinition$Type' => '

The string that represents the type of group.

', ], ], 'GroupDefinitions' => [ 'base' => NULL, 'refs' => [ 'GetCostAndUsageRequest$GroupBy' => '

You can group Amazon Web Services costs using up to two different groups, either dimensions, tag keys, cost categories, or any two group by types.

Valid values for the DIMENSION type are AZ, INSTANCE_TYPE, LEGAL_ENTITY_NAME, INVOICING_ENTITY, LINKED_ACCOUNT, OPERATION, PLATFORM, PURCHASE_TYPE, SERVICE, TENANCY, RECORD_TYPE, and USAGE_TYPE.

When you group by the TAG type and include a valid tag key, you get all tag values, including empty strings.

', 'GetCostAndUsageResponse$GroupDefinitions' => '

The groups that are specified by the Filter or GroupBy parameters in the request.

', 'GetCostAndUsageWithResourcesRequest$GroupBy' => '

You can group Amazon Web Services costs using up to two different groups: DIMENSION, TAG, COST_CATEGORY.

', 'GetCostAndUsageWithResourcesResponse$GroupDefinitions' => '

The groups that are specified by the Filter or GroupBy parameters in the request.

', 'GetReservationCoverageRequest$GroupBy' => '

You can group the data by the following attributes:

  • AZ

  • CACHE_ENGINE

  • DATABASE_ENGINE

  • DEPLOYMENT_OPTION

  • INSTANCE_TYPE

  • INVOICING_ENTITY

  • LINKED_ACCOUNT

  • OPERATING_SYSTEM

  • PLATFORM

  • REGION

  • TENANCY

', 'GetReservationUtilizationRequest$GroupBy' => '

Groups only by SUBSCRIPTION_ID. Metadata is included.

', 'GetSavingsPlansCoverageRequest$GroupBy' => '

You can group the data using the attributes INSTANCE_FAMILY, REGION, or SERVICE.

', ], ], 'Groups' => [ 'base' => NULL, 'refs' => [ 'ResultByTime$Groups' => '

The groups that this time period includes.

', ], ], 'Impact' => [ 'base' => '

The dollar value of the anomaly.

', 'refs' => [ 'Anomaly$Impact' => '

The dollar impact for the anomaly.

', ], ], 'InstanceDetails' => [ 'base' => '

Details about the reservations that Amazon Web Services recommends that you purchase.

', 'refs' => [ 'ReservationPurchaseRecommendationDetail$InstanceDetails' => '

Details about the reservations that Amazon Web Services recommends that you purchase.

', ], ], 'InvalidNextTokenException' => [ 'base' => '

The pagination token is invalid. Try again without a pagination token.

', 'refs' => [], ], 'Key' => [ 'base' => NULL, 'refs' => [ 'Keys$member' => NULL, ], ], 'Keys' => [ 'base' => NULL, 'refs' => [ 'Group$Keys' => '

The keys that are included in this group.

', ], ], 'LimitExceededException' => [ 'base' => '

You made too many calls in a short period of time. Try again later.

', 'refs' => [], ], 'ListCostAllocationTagsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListCostAllocationTagsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListCostCategoryDefinitionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListCostCategoryDefinitionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListSavingsPlansPurchaseRecommendationGenerationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListSavingsPlansPurchaseRecommendationGenerationResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListTagsForResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListTagsForResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'LookbackPeriodInDays' => [ 'base' => NULL, 'refs' => [ 'GetReservationPurchaseRecommendationRequest$LookbackPeriodInDays' => '

The number of previous days that you want Amazon Web Services to consider when it calculates your recommendations.

', 'GetSavingsPlansPurchaseRecommendationRequest$LookbackPeriodInDays' => '

The lookback period that\'s used to generate the recommendation.

', 'RecommendationDetailData$LookbackPeriodInDays' => '

How many days of previous usage that Amazon Web Services considers when making this recommendation.

', 'ReservationPurchaseRecommendation$LookbackPeriodInDays' => '

How many days of previous usage that Amazon Web Services considers when making this recommendation.

', 'RightsizingRecommendationMetadata$LookbackPeriodInDays' => '

The number of days of previous usage that Amazon Web Services considers when making this recommendation.

', 'SavingsPlansPurchaseRecommendation$LookbackPeriodInDays' => '

The lookback period in days that\'s used to generate the recommendation.

', ], ], 'MatchOption' => [ 'base' => NULL, 'refs' => [ 'MatchOptions$member' => NULL, ], ], 'MatchOptions' => [ 'base' => NULL, 'refs' => [ 'CostCategoryValues$MatchOptions' => '

The match options that you can use to filter your results. MatchOptions is only applicable for actions related to cost category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE.

', 'DimensionValues$MatchOptions' => '

The match options that you can use to filter your results.

MatchOptions is only applicable for actions related to Cost Category and Anomaly Subscriptions. Refer to the documentation for each specific API to see what is supported.

The default values for MatchOptions are EQUALS and CASE_SENSITIVE.

', 'TagValues$MatchOptions' => '

The match options that you can use to filter your results. MatchOptions is only applicable for actions related to Cost Category. The default values for MatchOptions are EQUALS and CASE_SENSITIVE.

', ], ], 'MaxResults' => [ 'base' => NULL, 'refs' => [ 'GetCostCategoriesRequest$MaxResults' => '

This field is only used when the SortBy value is provided in the request.

The maximum number of objects that are returned for this request. If MaxResults isn\'t specified with the SortBy value, the request returns 1000 results as the default value for this parameter.

For GetCostCategories, MaxResults has an upper quota of 1000.

', 'GetDimensionValuesRequest$MaxResults' => '

This field is only used when SortBy is provided in the request. The maximum number of objects that are returned for this request. If MaxResults isn\'t specified with SortBy, the request returns 1000 results as the default value for this parameter.

For GetDimensionValues, MaxResults has an upper limit of 1000.

', 'GetReservationCoverageRequest$MaxResults' => '

The maximum number of objects that you returned for this request. If more objects are available, in the response, Amazon Web Services provides a NextPageToken value that you can use in a subsequent call to get the next batch of objects.

', 'GetReservationUtilizationRequest$MaxResults' => '

The maximum number of objects that you returned for this request. If more objects are available, in the response, Amazon Web Services provides a NextPageToken value that you can use in a subsequent call to get the next batch of objects.

', 'GetSavingsPlansCoverageRequest$MaxResults' => '

The number of items to be returned in a response. The default is 20, with a minimum value of 1.

', 'GetSavingsPlansUtilizationDetailsRequest$MaxResults' => '

The number of items to be returned in a response. The default is 20, with a minimum value of 1.

', 'GetTagsRequest$MaxResults' => '

This field is only used when SortBy is provided in the request. The maximum number of objects that are returned for this request. If MaxResults isn\'t specified with SortBy, the request returns 1000 results as the default value for this parameter.

For GetTags, MaxResults has an upper quota of 1000.

', ], ], 'MemoryDBInstanceDetails' => [ 'base' => '

Details about the MemoryDB reservations that Amazon Web Services recommends that you purchase.

', 'refs' => [ 'InstanceDetails$MemoryDBInstanceDetails' => '

The MemoryDB reservations that Amazon Web Services recommends that you purchase.

', ], ], 'Metric' => [ 'base' => NULL, 'refs' => [ 'GetCostForecastRequest$Metric' => '

Which metric Cost Explorer uses to create your forecast. For more information about blended and unblended rates, see Why does the "blended" annotation appear on some line items in my bill?.

Valid values for a GetCostForecast call are the following:

  • AMORTIZED_COST

  • BLENDED_COST

  • NET_AMORTIZED_COST

  • NET_UNBLENDED_COST

  • UNBLENDED_COST

', 'GetUsageForecastRequest$Metric' => '

Which metric Cost Explorer uses to create your forecast.

Valid values for a GetUsageForecast call are the following:

  • USAGE_QUANTITY

  • NORMALIZED_USAGE_AMOUNT

', ], ], 'MetricAmount' => [ 'base' => NULL, 'refs' => [ 'MetricValue$Amount' => '

The actual number that represents the metric.

', ], ], 'MetricName' => [ 'base' => NULL, 'refs' => [ 'MetricNames$member' => NULL, 'Metrics$key' => NULL, ], ], 'MetricNames' => [ 'base' => NULL, 'refs' => [ 'GetCostAndUsageRequest$Metrics' => '

Which metrics are returned in the query. For more information about blended and unblended rates, see Why does the "blended" annotation appear on some line items in my bill?.

Valid values are AmortizedCost, BlendedCost, NetAmortizedCost, NetUnblendedCost, NormalizedUsageAmount, UnblendedCost, and UsageQuantity.

If you return the UsageQuantity metric, the service aggregates all usage numbers without taking into account the units. For example, if you aggregate usageQuantity across all of Amazon EC2, the results aren\'t meaningful because Amazon EC2 compute hours and data transfer are measured in different units (for example, hours and GB). To get more meaningful UsageQuantity metrics, filter by UsageType or UsageTypeGroups.

Metrics is required for GetCostAndUsage requests.

', 'GetCostAndUsageWithResourcesRequest$Metrics' => '

Which metrics are returned in the query. For more information about blended and unblended rates, see Why does the "blended" annotation appear on some line items in my bill?.

Valid values are AmortizedCost, BlendedCost, NetAmortizedCost, NetUnblendedCost, NormalizedUsageAmount, UnblendedCost, and UsageQuantity.

If you return the UsageQuantity metric, the service aggregates all usage numbers without taking the units into account. For example, if you aggregate usageQuantity across all of Amazon EC2, the results aren\'t meaningful because Amazon EC2 compute hours and data transfer are measured in different units (for example, hour or GB). To get more meaningful UsageQuantity metrics, filter by UsageType or UsageTypeGroups.

Metrics is required for GetCostAndUsageWithResources requests.

', 'GetReservationCoverageRequest$Metrics' => '

The measurement that you want your reservation coverage reported in.

Valid values are Hour, Unit, and Cost. You can use multiple values in a request.

', 'GetSavingsPlansCoverageRequest$Metrics' => '

The measurement that you want your Savings Plans coverage reported in. The only valid value is SpendCoveredBySavingsPlans.

', ], ], 'MetricUnit' => [ 'base' => NULL, 'refs' => [ 'MetricValue$Unit' => '

The unit that the metric is given in.

', ], ], 'MetricValue' => [ 'base' => '

The aggregated value for a metric.

', 'refs' => [ 'GetCostForecastResponse$Total' => '

How much you are forecasted to spend over the forecast period, in USD.

', 'GetUsageForecastResponse$Total' => '

How much you\'re forecasted to use over the forecast period.

', 'Metrics$value' => NULL, ], ], 'Metrics' => [ 'base' => NULL, 'refs' => [ 'Group$Metrics' => '

The metrics that are included in this group.

', 'ResultByTime$Total' => '

The total amount of cost or usage accrued during the time period.

', ], ], 'MetricsOverLookbackPeriod' => [ 'base' => NULL, 'refs' => [ 'RecommendationDetailData$MetricsOverLookbackPeriod' => '

The related hourly cost, coverage, and utilization metrics over the lookback period.

', ], ], 'ModifyRecommendationDetail' => [ 'base' => '

Details for the modification recommendation.

', 'refs' => [ 'RightsizingRecommendation$ModifyRecommendationDetail' => '

The details for the modification recommendations.

', ], ], 'MonitorArnList' => [ 'base' => NULL, 'refs' => [ 'AnomalySubscription$MonitorArnList' => '

A list of cost anomaly monitors.

', 'UpdateAnomalySubscriptionRequest$MonitorArnList' => '

A list of cost anomaly monitor ARNs.

', ], ], 'MonitorDimension' => [ 'base' => NULL, 'refs' => [ 'AnomalyMonitor$MonitorDimension' => '

The dimensions to evaluate.

', ], ], 'MonitorType' => [ 'base' => NULL, 'refs' => [ 'AnomalyMonitor$MonitorType' => '

The possible type values.

', ], ], 'NetRISavings' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$NetRISavings' => '

How much you saved due to purchasing and utilizing reservation. Amazon Web Services calculates this by subtracting TotalAmortizedFee from OnDemandCostOfRIHoursUsed.

', ], ], 'NetworkResourceUtilization' => [ 'base' => '

The network field that contains a list of network metrics that are associated with the current instance.

', 'refs' => [ 'EC2ResourceUtilization$NetworkResourceUtilization' => '

The network field that contains a list of network metrics that are associated with the current instance.

', ], ], 'NextPageToken' => [ 'base' => NULL, 'refs' => [ 'GetAnomaliesRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetAnomaliesResponse$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetAnomalyMonitorsRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetAnomalyMonitorsResponse$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetAnomalySubscriptionsRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetAnomalySubscriptionsResponse$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetCostAndUsageRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetCostAndUsageResponse$NextPageToken' => '

The token for the next set of retrievable results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetCostAndUsageWithResourcesRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetCostAndUsageWithResourcesResponse$NextPageToken' => '

The token for the next set of retrievable results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetCostCategoriesRequest$NextPageToken' => '

If the number of objects that are still available for retrieval exceeds the quota, Amazon Web Services returns a NextPageToken value in the response. To retrieve the next batch of objects, provide the NextPageToken from the previous call in your next request.

', 'GetCostCategoriesResponse$NextPageToken' => '

If the number of objects that are still available for retrieval exceeds the quota, Amazon Web Services returns a NextPageToken value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'GetDimensionValuesRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetDimensionValuesResponse$NextPageToken' => '

The token for the next set of retrievable results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetReservationCoverageRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetReservationCoverageResponse$NextPageToken' => '

The token for the next set of retrievable results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetReservationPurchaseRecommendationRequest$NextPageToken' => '

The pagination token that indicates the next set of results that you want to retrieve.

', 'GetReservationPurchaseRecommendationResponse$NextPageToken' => '

The pagination token for the next set of retrievable results.

', 'GetReservationUtilizationRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetReservationUtilizationResponse$NextPageToken' => '

The token for the next set of retrievable results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetRightsizingRecommendationRequest$NextPageToken' => '

The pagination token that indicates the next set of results that you want to retrieve.

', 'GetRightsizingRecommendationResponse$NextPageToken' => '

The token to retrieve the next set of results.

', 'GetSavingsPlansCoverageRequest$NextToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetSavingsPlansCoverageResponse$NextToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetSavingsPlansPurchaseRecommendationRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetSavingsPlansPurchaseRecommendationResponse$NextPageToken' => '

The token for the next set of retrievable results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetSavingsPlansUtilizationDetailsRequest$NextToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetSavingsPlansUtilizationDetailsResponse$NextToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetTagsRequest$NextPageToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'GetTagsResponse$NextPageToken' => '

The token for the next set of retrievable results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'ListCostAllocationTagsRequest$NextToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'ListCostAllocationTagsResponse$NextToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'ListCostCategoryDefinitionsRequest$NextToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'ListCostCategoryDefinitionsResponse$NextToken' => '

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

', 'ListSavingsPlansPurchaseRecommendationGenerationRequest$NextPageToken' => '

The token to retrieve the next set of results.

', 'ListSavingsPlansPurchaseRecommendationGenerationResponse$NextPageToken' => '

The token to retrieve the next set of results.

', ], ], 'NonNegativeInteger' => [ 'base' => NULL, 'refs' => [ 'AnomalyMonitor$DimensionalValueCount' => '

The value for evaluated dimensions.

', 'CostCategoryReference$NumberOfRules' => '

The number of rules that are associated with a specific Cost Category.

', 'GetReservationPurchaseRecommendationRequest$PageSize' => '

The number of recommendations that you want returned in a single response object.

', 'GetRightsizingRecommendationRequest$PageSize' => '

The number of recommendations that you want returned in a single response object.

', 'GetSavingsPlansPurchaseRecommendationRequest$PageSize' => '

The number of recommendations that you want returned in a single response object.

', 'ListSavingsPlansPurchaseRecommendationGenerationRequest$PageSize' => '

The number of recommendations that you want returned in a single response object.

', ], ], 'NonNegativeLong' => [ 'base' => NULL, 'refs' => [ 'ApproximateUsageRecordsPerService$value' => NULL, 'GetApproximateUsageRecordsResponse$TotalRecords' => '

The total number of usage records for all services in the services list.

', ], ], 'NullableNonNegativeDouble' => [ 'base' => NULL, 'refs' => [ 'AnomalySubscription$Threshold' => '

(deprecated)

An absolute dollar value that must be exceeded by the anomaly\'s total impact (see Impact for more details) for an anomaly notification to be generated.

This field has been deprecated. To specify a threshold, use ThresholdExpression. Continued use of Threshold will be treated as shorthand syntax for a ThresholdExpression.

One of Threshold or ThresholdExpression is required for this resource. You cannot specify both.

', 'Impact$TotalActualSpend' => '

The cumulative dollar amount that was actually spent during the anomaly.

', 'Impact$TotalExpectedSpend' => '

The cumulative dollar amount that was expected to be spent during the anomaly. It is calculated using advanced machine learning models to determine the typical spending pattern based on historical data for a customer.

', 'Impact$TotalImpactPercentage' => '

The cumulative percentage difference between the total actual spend and total expected spend. It is calculated as (TotalImpact / TotalExpectedSpend) * 100. When TotalExpectedSpend is zero, this field is omitted. Expected spend can be zero in situations such as when you start to use a service for the first time.

', 'UpdateAnomalySubscriptionRequest$Threshold' => '

(deprecated)

The update to the threshold value for receiving notifications.

This field has been deprecated. To update a threshold, use ThresholdExpression. Continued use of Threshold will be treated as shorthand syntax for a ThresholdExpression.

You can specify either Threshold or ThresholdExpression, but not both.

', ], ], 'NumericOperator' => [ 'base' => NULL, 'refs' => [ 'TotalImpactFilter$NumericOperator' => '

The comparing value that\'s used in the filter.

', ], ], 'OfferingClass' => [ 'base' => NULL, 'refs' => [ 'EC2Specification$OfferingClass' => '

Indicates whether you want a recommendation for standard or convertible reservations.

', ], ], 'OnDemandCost' => [ 'base' => NULL, 'refs' => [ 'CoverageCost$OnDemandCost' => '

How much an On-Demand Instance costs.

', ], ], 'OnDemandCostOfRIHoursUsed' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$OnDemandCostOfRIHoursUsed' => '

How much your reservation costs if charged On-Demand rates.

', ], ], 'OnDemandHours' => [ 'base' => NULL, 'refs' => [ 'CoverageHours$OnDemandHours' => '

The number of instance running hours that On-Demand Instances covered.

', ], ], 'OnDemandNormalizedUnits' => [ 'base' => NULL, 'refs' => [ 'CoverageNormalizedUnits$OnDemandNormalizedUnits' => '

The number of normalized units that are covered by On-Demand Instances instead of a reservation.

', ], ], 'PageSize' => [ 'base' => NULL, 'refs' => [ 'GetAnomaliesRequest$MaxResults' => '

The number of entries a paginated response contains.

', 'GetAnomalyMonitorsRequest$MaxResults' => '

The number of entries that a paginated response contains.

', 'GetAnomalySubscriptionsRequest$MaxResults' => '

The number of entries a paginated response contains.

', 'GetCostCategoriesResponse$ReturnSize' => '

The number of objects that are returned.

', 'GetCostCategoriesResponse$TotalSize' => '

The total number of objects.

', 'GetDimensionValuesResponse$ReturnSize' => '

The number of results that Amazon Web Services returned at one time.

', 'GetDimensionValuesResponse$TotalSize' => '

The total number of search results.

', 'GetTagsResponse$ReturnSize' => '

The number of query results that Amazon Web Services returns at a time.

', 'GetTagsResponse$TotalSize' => '

The total number of query results.

', ], ], 'PaymentOption' => [ 'base' => NULL, 'refs' => [ 'GetReservationPurchaseRecommendationRequest$PaymentOption' => '

The reservation purchase option that you want recommendations for.

', 'GetSavingsPlansPurchaseRecommendationRequest$PaymentOption' => '

The payment option that\'s used to generate these recommendations.

', 'RecommendationDetailData$PaymentOption' => '

The payment option for the commitment (for example, All Upfront or No Upfront).

', 'ReservationPurchaseRecommendation$PaymentOption' => '

The payment option for the reservation (for example, AllUpfront or NoUpfront).

', 'SavingsPlansPurchaseRecommendation$PaymentOption' => '

The payment option that\'s used to generate the recommendation.

', ], ], 'PlatformDifference' => [ 'base' => NULL, 'refs' => [ 'PlatformDifferences$member' => NULL, ], ], 'PlatformDifferences' => [ 'base' => NULL, 'refs' => [ 'TargetInstance$PlatformDifferences' => '

Explains the actions that you might need to take to successfully migrate your workloads from the current instance type to the recommended instance type.

', ], ], 'PredictionIntervalLevel' => [ 'base' => NULL, 'refs' => [ 'GetCostForecastRequest$PredictionIntervalLevel' => '

Cost Explorer always returns the mean forecast as a single point. You can request a prediction interval around the mean by specifying a confidence level. The higher the confidence level, the more confident Cost Explorer is about the actual value falling in the prediction interval. Higher confidence levels result in wider prediction intervals.

', 'GetUsageForecastRequest$PredictionIntervalLevel' => '

Amazon Web Services Cost Explorer always returns the mean forecast as a single point. You can request a prediction interval around the mean by specifying a confidence level. The higher the confidence level, the more confident Cost Explorer is about the actual value falling in the prediction interval. Higher confidence levels result in wider prediction intervals.

', ], ], 'ProvideAnomalyFeedbackRequest' => [ 'base' => NULL, 'refs' => [], ], 'ProvideAnomalyFeedbackResponse' => [ 'base' => NULL, 'refs' => [], ], 'PurchasedHours' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$PurchasedHours' => '

How many reservation hours that you purchased.

', ], ], 'PurchasedUnits' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$PurchasedUnits' => '

The number of Amazon EC2 reservation hours that you purchased. It\'s converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

', ], ], 'RDSInstanceDetails' => [ 'base' => '

Details about the Amazon RDS reservations that Amazon Web Services recommends that you purchase.

', 'refs' => [ 'InstanceDetails$RDSInstanceDetails' => '

The Amazon RDS reservations that Amazon Web Services recommends that you purchase.

', ], ], 'RICostForUnusedHours' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$RICostForUnusedHours' => '

The cost of unused hours for your reservation.

', ], ], 'RealizedSavings' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$RealizedSavings' => '

The realized savings because of purchasing and using a reservation.

', ], ], 'RecommendationDetailData' => [ 'base' => '

The details and metrics for the given recommendation.

', 'refs' => [ 'GetSavingsPlanPurchaseRecommendationDetailsResponse$RecommendationDetailData' => '

Contains detailed information about a specific Savings Plan recommendation.

', ], ], 'RecommendationDetailHourlyMetrics' => [ 'base' => '

Contains the hourly metrics for the given recommendation over the lookback period.

', 'refs' => [ 'MetricsOverLookbackPeriod$member' => NULL, ], ], 'RecommendationDetailId' => [ 'base' => NULL, 'refs' => [ 'GetSavingsPlanPurchaseRecommendationDetailsRequest$RecommendationDetailId' => '

The ID that is associated with the Savings Plan recommendation.

', 'GetSavingsPlanPurchaseRecommendationDetailsResponse$RecommendationDetailId' => '

The ID that is associated with the Savings Plan recommendation.

', 'SavingsPlansPurchaseRecommendationDetail$RecommendationDetailId' => '

Contains detailed information about a specific Savings Plan recommendation.

', ], ], 'RecommendationId' => [ 'base' => NULL, 'refs' => [ 'GenerationSummary$RecommendationId' => '

Indicates the ID for this specific recommendation.

', 'RecommendationIdList$member' => NULL, 'StartSavingsPlansPurchaseRecommendationGenerationResponse$RecommendationId' => '

The ID for this specific recommendation.

', ], ], 'RecommendationIdList' => [ 'base' => NULL, 'refs' => [ 'ListSavingsPlansPurchaseRecommendationGenerationRequest$RecommendationIds' => '

The IDs for each specific recommendation.

', ], ], 'RecommendationTarget' => [ 'base' => NULL, 'refs' => [ 'RightsizingRecommendationConfiguration$RecommendationTarget' => '

The option to see recommendations within the same instance family or recommendations for instances across other families. The default value is SAME_INSTANCE_FAMILY.

', ], ], 'RedshiftInstanceDetails' => [ 'base' => '

Details about the Amazon Redshift reservations that Amazon Web Services recommends that you purchase.

', 'refs' => [ 'InstanceDetails$RedshiftInstanceDetails' => '

The Amazon Redshift reservations that Amazon Web Services recommends that you purchase.

', ], ], 'RequestChangedException' => [ 'base' => '

Your request parameters changed between pages. Try again with the old parameters or without a pagination token.

', 'refs' => [], ], 'ReservationAggregates' => [ 'base' => '

The aggregated numbers for your reservation usage.

', 'refs' => [ 'GetReservationUtilizationResponse$Total' => '

The total amount of time that you used your Reserved Instances (RIs).

', 'ReservationUtilizationGroup$Utilization' => '

How much you used this group of reservations.

', 'UtilizationByTime$Total' => '

The total number of reservation hours that were used.

', ], ], 'ReservationCoverageGroup' => [ 'base' => '

A group of reservations that share a set of attributes.

', 'refs' => [ 'ReservationCoverageGroups$member' => NULL, ], ], 'ReservationCoverageGroups' => [ 'base' => NULL, 'refs' => [ 'CoverageByTime$Groups' => '

The groups of instances that the reservation covered.

', ], ], 'ReservationGroupKey' => [ 'base' => NULL, 'refs' => [ 'ReservationUtilizationGroup$Key' => '

The key for a specific reservation attribute.

', ], ], 'ReservationGroupValue' => [ 'base' => NULL, 'refs' => [ 'ReservationUtilizationGroup$Value' => '

The value of a specific reservation attribute.

', ], ], 'ReservationPurchaseRecommendation' => [ 'base' => '

A specific reservation that Amazon Web Services recommends for purchase.

', 'refs' => [ 'ReservationPurchaseRecommendations$member' => NULL, ], ], 'ReservationPurchaseRecommendationDetail' => [ 'base' => '

Details about your recommended reservation purchase.

', 'refs' => [ 'ReservationPurchaseRecommendationDetails$member' => NULL, ], ], 'ReservationPurchaseRecommendationDetails' => [ 'base' => NULL, 'refs' => [ 'ReservationPurchaseRecommendation$RecommendationDetails' => '

Details about the recommended purchases.

', ], ], 'ReservationPurchaseRecommendationMetadata' => [ 'base' => '

Information about this specific recommendation, such as the timestamp for when Amazon Web Services made a specific recommendation.

', 'refs' => [ 'GetReservationPurchaseRecommendationResponse$Metadata' => '

Information about this specific recommendation call, such as the time stamp for when Cost Explorer generated this recommendation.

', ], ], 'ReservationPurchaseRecommendationSummary' => [ 'base' => '

A summary about this recommendation, such as the currency code, the amount that Amazon Web Services estimates that you could save, and the total amount of reservation to purchase.

', 'refs' => [ 'ReservationPurchaseRecommendation$RecommendationSummary' => '

A summary about the recommended purchase.

', ], ], 'ReservationPurchaseRecommendations' => [ 'base' => NULL, 'refs' => [ 'GetReservationPurchaseRecommendationResponse$Recommendations' => '

Recommendations for reservations to purchase.

', ], ], 'ReservationUtilizationGroup' => [ 'base' => '

A group of reservations that share a set of attributes.

', 'refs' => [ 'ReservationUtilizationGroups$member' => NULL, ], ], 'ReservationUtilizationGroups' => [ 'base' => NULL, 'refs' => [ 'UtilizationByTime$Groups' => '

The groups that this utilization result uses.

', ], ], 'ReservedHours' => [ 'base' => NULL, 'refs' => [ 'CoverageHours$ReservedHours' => '

The number of instance running hours that reservations covered.

', ], ], 'ReservedNormalizedUnits' => [ 'base' => NULL, 'refs' => [ 'CoverageNormalizedUnits$ReservedNormalizedUnits' => '

The number of normalized units that a reservation covers.

', ], ], 'ResourceDetails' => [ 'base' => '

Details for the resource.

', 'refs' => [ 'CurrentInstance$ResourceDetails' => '

Details about the resource and utilization.

', 'TargetInstance$ResourceDetails' => '

Details on the target instance type.

', ], ], 'ResourceNotFoundException' => [ 'base' => '

The specified ARN in the request doesn\'t exist.

', 'refs' => [], ], 'ResourceTag' => [ 'base' => '

The tag structure that contains a tag key and value.

Tagging is supported only for the following Cost Explorer resource types: AnomalyMonitor , AnomalySubscription , CostCategory .

', 'refs' => [ 'ResourceTagList$member' => NULL, ], ], 'ResourceTagKey' => [ 'base' => NULL, 'refs' => [ 'ResourceTag$Key' => '

The key that\'s associated with the tag.

', 'ResourceTagKeyList$member' => NULL, ], ], 'ResourceTagKeyList' => [ 'base' => NULL, 'refs' => [ 'UntagResourceRequest$ResourceTagKeys' => '

A list of tag keys associated with tags that need to be removed from the resource. If you specify a tag key that doesn\'t exist, it\'s ignored. Although the maximum number of array members is 200, user-tag maximum is 50. The remaining are reserved for Amazon Web Services use.

', ], ], 'ResourceTagList' => [ 'base' => NULL, 'refs' => [ 'CreateAnomalyMonitorRequest$ResourceTags' => '

An optional list of tags to associate with the specified AnomalyMonitor . You can use resource tags to control access to your monitor using IAM policies.

Each tag consists of a key and a value, and each key must be unique for the resource. The following restrictions apply to resource tags:

  • Although the maximum number of array members is 200, you can assign a maximum of 50 user-tags to one resource. The remaining are reserved for Amazon Web Services use

  • The maximum length of a key is 128 characters

  • The maximum length of a value is 256 characters

  • Keys and values can only contain alphanumeric characters, spaces, and any of the following: _.:/=+@-

  • Keys and values are case sensitive

  • Keys and values are trimmed for any leading or trailing whitespaces

  • Don’t use aws: as a prefix for your keys. This prefix is reserved for Amazon Web Services use

', 'CreateAnomalySubscriptionRequest$ResourceTags' => '

An optional list of tags to associate with the specified AnomalySubscription . You can use resource tags to control access to your subscription using IAM policies.

Each tag consists of a key and a value, and each key must be unique for the resource. The following restrictions apply to resource tags:

  • Although the maximum number of array members is 200, you can assign a maximum of 50 user-tags to one resource. The remaining are reserved for Amazon Web Services use

  • The maximum length of a key is 128 characters

  • The maximum length of a value is 256 characters

  • Keys and values can only contain alphanumeric characters, spaces, and any of the following: _.:/=+@-

  • Keys and values are case sensitive

  • Keys and values are trimmed for any leading or trailing whitespaces

  • Don’t use aws: as a prefix for your keys. This prefix is reserved for Amazon Web Services use

', 'CreateCostCategoryDefinitionRequest$ResourceTags' => '

An optional list of tags to associate with the specified CostCategory . You can use resource tags to control access to your cost category using IAM policies.

Each tag consists of a key and a value, and each key must be unique for the resource. The following restrictions apply to resource tags:

  • Although the maximum number of array members is 200, you can assign a maximum of 50 user-tags to one resource. The remaining are reserved for Amazon Web Services use

  • The maximum length of a key is 128 characters

  • The maximum length of a value is 256 characters

  • Keys and values can only contain alphanumeric characters, spaces, and any of the following: _.:/=+@-

  • Keys and values are case sensitive

  • Keys and values are trimmed for any leading or trailing whitespaces

  • Don’t use aws: as a prefix for your keys. This prefix is reserved for Amazon Web Services use

', 'ListTagsForResourceResponse$ResourceTags' => '

A list of tag key value pairs that are associated with the resource.

', 'TagResourceRequest$ResourceTags' => '

A list of tag key-value pairs to be added to the resource.

Each tag consists of a key and a value, and each key must be unique for the resource. The following restrictions apply to resource tags:

  • Although the maximum number of array members is 200, you can assign a maximum of 50 user-tags to one resource. The remaining are reserved for Amazon Web Services use

  • The maximum length of a key is 128 characters

  • The maximum length of a value is 256 characters

  • Keys and values can only contain alphanumeric characters, spaces, and any of the following: _.:/=+@-

  • Keys and values are case sensitive

  • Keys and values are trimmed for any leading or trailing whitespaces

  • Don’t use aws: as a prefix for your keys. This prefix is reserved for Amazon Web Services use

', ], ], 'ResourceTagValue' => [ 'base' => NULL, 'refs' => [ 'ResourceTag$Value' => '

The value that\'s associated with the tag.

', ], ], 'ResourceUtilization' => [ 'base' => '

Resource utilization of current resource.

', 'refs' => [ 'CurrentInstance$ResourceUtilization' => '

Utilization information of the current instance during the lookback period.

', 'TargetInstance$ExpectedResourceUtilization' => '

The expected utilization metrics for target instance type.

', ], ], 'ResultByTime' => [ 'base' => '

The result that\'s associated with a time period.

', 'refs' => [ 'ResultsByTime$member' => NULL, ], ], 'ResultsByTime' => [ 'base' => NULL, 'refs' => [ 'GetCostAndUsageResponse$ResultsByTime' => '

The time period that\'s covered by the results in the response.

', 'GetCostAndUsageWithResourcesResponse$ResultsByTime' => '

The time period that\'s covered by the results in the response.

', ], ], 'RightsizingRecommendation' => [ 'base' => '

Recommendations to rightsize resources.

', 'refs' => [ 'RightsizingRecommendationList$member' => NULL, ], ], 'RightsizingRecommendationConfiguration' => [ 'base' => '

You can use RightsizingRecommendationConfiguration to customize recommendations across two attributes. You can choose to view recommendations for instances within the same instance families or across different instance families. You can also choose to view your estimated savings that are associated with recommendations with consideration of existing Savings Plans or Reserved Instance (RI) benefits, or neither.

', 'refs' => [ 'GetRightsizingRecommendationRequest$Configuration' => '

You can use Configuration to customize recommendations across two attributes. You can choose to view recommendations for instances within the same instance families or across different instance families. You can also choose to view your estimated savings that are associated with recommendations with consideration of existing Savings Plans or RI benefits, or neither.

', 'GetRightsizingRecommendationResponse$Configuration' => '

You can use Configuration to customize recommendations across two attributes. You can choose to view recommendations for instances within the same instance families or across different instance families. You can also choose to view your estimated savings that are associated with recommendations with consideration of existing Savings Plans or RI benefits, or neither.

', ], ], 'RightsizingRecommendationList' => [ 'base' => NULL, 'refs' => [ 'GetRightsizingRecommendationResponse$RightsizingRecommendations' => '

Recommendations to rightsize resources.

', ], ], 'RightsizingRecommendationMetadata' => [ 'base' => '

Metadata for this recommendation set.

', 'refs' => [ 'GetRightsizingRecommendationResponse$Metadata' => '

Information regarding this specific recommendation set.

', ], ], 'RightsizingRecommendationSummary' => [ 'base' => '

The summary of rightsizing recommendations

', 'refs' => [ 'GetRightsizingRecommendationResponse$Summary' => '

Summary of this recommendation set.

', ], ], 'RightsizingType' => [ 'base' => NULL, 'refs' => [ 'RightsizingRecommendation$RightsizingType' => '

A recommendation to either terminate or modify the resource.

', ], ], 'RootCause' => [ 'base' => '

The combination of Amazon Web Service, linked account, linked account name, Region, and usage type where a cost anomaly is observed. The linked account name will only be available when the account name can be identified.

', 'refs' => [ 'RootCauses$member' => NULL, ], ], 'RootCauses' => [ 'base' => NULL, 'refs' => [ 'Anomaly$RootCauses' => '

The list of identified root causes for the anomaly.

', ], ], 'SavingsPlanArn' => [ 'base' => NULL, 'refs' => [ 'SavingsPlansUtilizationDetail$SavingsPlanArn' => '

The unique Amazon Resource Name (ARN) for a particular Savings Plan.

', ], ], 'SavingsPlansAmortizedCommitment' => [ 'base' => '

The amortized amount of Savings Plans purchased in a specific account during a specific time interval.

', 'refs' => [ 'SavingsPlansUtilizationAggregates$AmortizedCommitment' => '

The total amortized commitment for a Savings Plans. This includes the sum of the upfront and recurring Savings Plans fees.

', 'SavingsPlansUtilizationByTime$AmortizedCommitment' => '

The total amortized commitment for a Savings Plans. This includes the sum of the upfront and recurring Savings Plans fees.

', 'SavingsPlansUtilizationDetail$AmortizedCommitment' => '

The total amortized commitment for a Savings Plans. Includes the sum of the upfront and recurring Savings Plans fees.

', ], ], 'SavingsPlansCoverage' => [ 'base' => '

The amount of Savings Plans eligible usage that\'s covered by Savings Plans. All calculations consider the On-Demand equivalent of your Savings Plans usage.

', 'refs' => [ 'SavingsPlansCoverages$member' => NULL, ], ], 'SavingsPlansCoverageData' => [ 'base' => '

Specific coverage percentage, On-Demand costs, and spend covered by Savings Plans, and total Savings Plans costs for an account.

', 'refs' => [ 'SavingsPlansCoverage$Coverage' => '

The amount of Savings Plans eligible usage that the Savings Plans covered.

', ], ], 'SavingsPlansCoverages' => [ 'base' => NULL, 'refs' => [ 'GetSavingsPlansCoverageResponse$SavingsPlansCoverages' => '

The amount of spend that your Savings Plans covered.

', ], ], 'SavingsPlansDataType' => [ 'base' => NULL, 'refs' => [ 'SavingsPlansDataTypes$member' => NULL, ], ], 'SavingsPlansDataTypes' => [ 'base' => NULL, 'refs' => [ 'GetSavingsPlansUtilizationDetailsRequest$DataType' => '

The data type.

', ], ], 'SavingsPlansDetails' => [ 'base' => '

The attribute details on a specific Savings Plan.

', 'refs' => [ 'SavingsPlansPurchaseRecommendationDetail$SavingsPlansDetails' => '

Details for your recommended Savings Plans.

', ], ], 'SavingsPlansPurchaseRecommendation' => [ 'base' => '

Contains your request parameters, Savings Plan Recommendations Summary, and Details.

', 'refs' => [ 'GetSavingsPlansPurchaseRecommendationResponse$SavingsPlansPurchaseRecommendation' => '

Contains your request parameters, Savings Plan Recommendations Summary, and Details.

', ], ], 'SavingsPlansPurchaseRecommendationDetail' => [ 'base' => '

Details for your recommended Savings Plans.

', 'refs' => [ 'SavingsPlansPurchaseRecommendationDetailList$member' => NULL, ], ], 'SavingsPlansPurchaseRecommendationDetailList' => [ 'base' => NULL, 'refs' => [ 'SavingsPlansPurchaseRecommendation$SavingsPlansPurchaseRecommendationDetails' => '

Details for the Savings Plans that we recommend that you purchase to cover existing Savings Plans eligible workloads.

', ], ], 'SavingsPlansPurchaseRecommendationMetadata' => [ 'base' => '

Metadata about your Savings Plans Purchase Recommendations.

', 'refs' => [ 'GetSavingsPlansPurchaseRecommendationResponse$Metadata' => '

Information that regards this specific recommendation set.

', ], ], 'SavingsPlansPurchaseRecommendationSummary' => [ 'base' => '

Summary metrics for your Savings Plans Purchase Recommendations.

', 'refs' => [ 'SavingsPlansPurchaseRecommendation$SavingsPlansPurchaseRecommendationSummary' => '

Summary metrics for your Savings Plans Recommendations.

', ], ], 'SavingsPlansSavings' => [ 'base' => '

The amount of savings that you\'re accumulating, against the public On-Demand rate of the usage accrued in an account.

', 'refs' => [ 'SavingsPlansUtilizationAggregates$Savings' => '

The amount that\'s saved by using existing Savings Plans. Savings returns both net savings from Savings Plans and also the onDemandCostEquivalent of the Savings Plans when considering the utilization rate.

', 'SavingsPlansUtilizationByTime$Savings' => '

The amount that\'s saved by using existing Savings Plans. Savings returns both net savings from Savings Plans and also the onDemandCostEquivalent of the Savings Plans when considering the utilization rate.

', 'SavingsPlansUtilizationDetail$Savings' => '

The amount saved by using existing Savings Plans. Savings returns both net savings from savings plans and also the onDemandCostEquivalent of the Savings Plans when considering the utilization rate.

', ], ], 'SavingsPlansUtilization' => [ 'base' => '

The measurement of how well you\'re using your existing Savings Plans.

', 'refs' => [ 'SavingsPlansUtilizationAggregates$Utilization' => '

A ratio of your effectiveness of using existing Savings Plans to apply to workloads that are Savings Plans eligible.

', 'SavingsPlansUtilizationByTime$Utilization' => '

A ratio of your effectiveness of using existing Savings Plans to apply to workloads that are Savings Plans eligible.

', 'SavingsPlansUtilizationDetail$Utilization' => '

A ratio of your effectiveness of using existing Savings Plans to apply to workloads that are Savings Plans eligible.

', ], ], 'SavingsPlansUtilizationAggregates' => [ 'base' => '

The aggregated utilization metrics for your Savings Plans usage.

', 'refs' => [ 'GetSavingsPlansUtilizationDetailsResponse$Total' => '

The total Savings Plans utilization, regardless of time period.

', 'GetSavingsPlansUtilizationResponse$Total' => '

The total amount of cost/commitment that you used your Savings Plans, regardless of date ranges.

', ], ], 'SavingsPlansUtilizationByTime' => [ 'base' => '

The amount of Savings Plans utilization (in hours).

', 'refs' => [ 'SavingsPlansUtilizationsByTime$member' => NULL, ], ], 'SavingsPlansUtilizationDetail' => [ 'base' => '

A single daily or monthly Savings Plans utilization rate and details for your account. A management account in an organization have access to member accounts. You can use GetDimensionValues to determine the possible dimension values.

', 'refs' => [ 'SavingsPlansUtilizationDetails$member' => NULL, ], ], 'SavingsPlansUtilizationDetails' => [ 'base' => NULL, 'refs' => [ 'GetSavingsPlansUtilizationDetailsResponse$SavingsPlansUtilizationDetails' => '

Retrieves a single daily or monthly Savings Plans utilization rate and details for your account.

', ], ], 'SavingsPlansUtilizationsByTime' => [ 'base' => NULL, 'refs' => [ 'GetSavingsPlansUtilizationResponse$SavingsPlansUtilizationsByTime' => '

The amount of cost/commitment that you used your Savings Plans. You can use it to specify date ranges.

', ], ], 'SearchString' => [ 'base' => NULL, 'refs' => [ 'GetCostCategoriesRequest$SearchString' => '

The value that you want to search the filter values for.

If you don\'t specify a CostCategoryName, SearchString is used to filter Cost Category names that match the SearchString pattern. If you specify a CostCategoryName, SearchString is used to filter Cost Category values that match the SearchString pattern.

', 'GetDimensionValuesRequest$SearchString' => '

The value that you want to search the filter values for.

', 'GetTagsRequest$SearchString' => '

The value that you want to search for.

', ], ], 'ServiceQuotaExceededException' => [ 'base' => '

You\'ve reached the limit on the number of resources you can create, or exceeded the size of an individual resource.

', 'refs' => [], ], 'ServiceSpecification' => [ 'base' => '

Hardware specifications for the service that you want recommendations for.

', 'refs' => [ 'GetReservationPurchaseRecommendationRequest$ServiceSpecification' => '

The hardware specifications for the service instances that you want recommendations for, such as standard or convertible Amazon EC2 instances.

', 'ReservationPurchaseRecommendation$ServiceSpecification' => '

Hardware specifications for the service that you want recommendations for.

', ], ], 'SortDefinition' => [ 'base' => '

The details for how to sort the data.

', 'refs' => [ 'GetReservationCoverageRequest$SortBy' => '

The value by which you want to sort the data.

The following values are supported for Key:

  • OnDemandCost

  • CoverageHoursPercentage

  • OnDemandHours

  • ReservedHours

  • TotalRunningHours

  • CoverageNormalizedUnitsPercentage

  • OnDemandNormalizedUnits

  • ReservedNormalizedUnits

  • TotalRunningNormalizedUnits

  • Time

Supported values for SortOrder are ASCENDING or DESCENDING.

', 'GetReservationUtilizationRequest$SortBy' => '

The value that you want to sort the data by.

The following values are supported for Key:

  • UtilizationPercentage

  • UtilizationPercentageInUnits

  • PurchasedHours

  • PurchasedUnits

  • TotalActualHours

  • TotalActualUnits

  • UnusedHours

  • UnusedUnits

  • OnDemandCostOfRIHoursUsed

  • NetRISavings

  • TotalPotentialRISavings

  • AmortizedUpfrontFee

  • AmortizedRecurringFee

  • TotalAmortizedFee

  • RICostForUnusedHours

  • RealizedSavings

  • UnrealizedSavings

The supported values for SortOrder are ASCENDING and DESCENDING.

', 'GetSavingsPlansCoverageRequest$SortBy' => '

The value that you want to sort the data by.

The following values are supported for Key:

  • SpendCoveredBySavingsPlan

  • OnDemandCost

  • CoveragePercentage

  • TotalCost

  • InstanceFamily

  • Region

  • Service

The supported values for SortOrder are ASCENDING and DESCENDING.

', 'GetSavingsPlansUtilizationDetailsRequest$SortBy' => '

The value that you want to sort the data by.

The following values are supported for Key:

  • UtilizationPercentage

  • TotalCommitment

  • UsedCommitment

  • UnusedCommitment

  • NetSavings

  • AmortizedRecurringCommitment

  • AmortizedUpfrontCommitment

The supported values for SortOrder are ASCENDING and DESCENDING.

', 'GetSavingsPlansUtilizationRequest$SortBy' => '

The value that you want to sort the data by.

The following values are supported for Key:

  • UtilizationPercentage

  • TotalCommitment

  • UsedCommitment

  • UnusedCommitment

  • NetSavings

The supported values for SortOrder are ASCENDING and DESCENDING.

', 'SortDefinitions$member' => NULL, ], ], 'SortDefinitionKey' => [ 'base' => NULL, 'refs' => [ 'SortDefinition$Key' => '

The key that\'s used to sort the data.

', ], ], 'SortDefinitions' => [ 'base' => NULL, 'refs' => [ 'GetCostCategoriesRequest$SortBy' => '

The value that you sort the data by.

The key represents the cost and usage metrics. The following values are supported:

  • BlendedCost

  • UnblendedCost

  • AmortizedCost

  • NetAmortizedCost

  • NetUnblendedCost

  • UsageQuantity

  • NormalizedUsageAmount

The supported key values for the SortOrder value are ASCENDING and DESCENDING.

When you use the SortBy value, the NextPageToken and SearchString key values aren\'t supported.

', 'GetDimensionValuesRequest$SortBy' => '

The value that you want to sort the data by.

The key represents cost and usage metrics. The following values are supported:

  • BlendedCost

  • UnblendedCost

  • AmortizedCost

  • NetAmortizedCost

  • NetUnblendedCost

  • UsageQuantity

  • NormalizedUsageAmount

The supported values for the SortOrder key are ASCENDING or DESCENDING.

When you specify a SortBy paramater, the context must be COST_AND_USAGE. Further, when using SortBy, NextPageToken and SearchString aren\'t supported.

', 'GetTagsRequest$SortBy' => '

The value that you want to sort the data by.

The key represents cost and usage metrics. The following values are supported:

  • BlendedCost

  • UnblendedCost

  • AmortizedCost

  • NetAmortizedCost

  • NetUnblendedCost

  • UsageQuantity

  • NormalizedUsageAmount

The supported values for SortOrder are ASCENDING and DESCENDING.

When you use SortBy, NextPageToken and SearchString aren\'t supported.

', ], ], 'SortOrder' => [ 'base' => NULL, 'refs' => [ 'SortDefinition$SortOrder' => '

The order that\'s used to sort the data.

', ], ], 'StartSavingsPlansPurchaseRecommendationGenerationRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartSavingsPlansPurchaseRecommendationGenerationResponse' => [ 'base' => NULL, 'refs' => [], ], 'Subscriber' => [ 'base' => '

The recipient of AnomalySubscription notifications.

', 'refs' => [ 'Subscribers$member' => NULL, ], ], 'SubscriberAddress' => [ 'base' => NULL, 'refs' => [ 'Subscriber$Address' => '

The email address or SNS Amazon Resource Name (ARN). This depends on the Type.

', ], ], 'SubscriberStatus' => [ 'base' => NULL, 'refs' => [ 'Subscriber$Status' => '

Indicates if the subscriber accepts the notifications.

', ], ], 'SubscriberType' => [ 'base' => NULL, 'refs' => [ 'Subscriber$Type' => '

The notification delivery channel.

', ], ], 'Subscribers' => [ 'base' => NULL, 'refs' => [ 'AnomalySubscription$Subscribers' => '

A list of subscribers to notify.

', 'UpdateAnomalySubscriptionRequest$Subscribers' => '

The update to the subscriber list.

', ], ], 'SupportedSavingsPlansType' => [ 'base' => NULL, 'refs' => [ 'GetSavingsPlansPurchaseRecommendationRequest$SavingsPlansType' => '

The Savings Plans recommendation type that\'s requested.

', 'RecommendationDetailData$SavingsPlansType' => '

The requested Savings Plan recommendation type.

', 'SavingsPlansPurchaseRecommendation$SavingsPlansType' => '

The requested Savings Plans recommendation type.

', ], ], 'TagKey' => [ 'base' => NULL, 'refs' => [ 'CostAllocationTag$TagKey' => '

The key for the cost allocation tag.

', 'CostAllocationTagKeyList$member' => NULL, 'CostAllocationTagStatusEntry$TagKey' => '

The key for the cost allocation tag.

', 'GetTagsRequest$TagKey' => '

The key of the tag that you want to return values for.

', 'TagValues$Key' => '

The key for the tag.

', 'UpdateCostAllocationTagsStatusError$TagKey' => '

The key for the cost allocation tag.

', ], ], 'TagList' => [ 'base' => NULL, 'refs' => [ 'GetTagsResponse$Tags' => '

The tags that match your request.

', ], ], 'TagResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'TagResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'TagValues' => [ 'base' => '

The values that are available for a tag.

If Values and Key aren\'t specified, the ABSENT MatchOption is applied to all tags. That is, it\'s filtered on resources with no tags.

If Key is provided and Values isn\'t specified, the ABSENT MatchOption is applied to the tag Key only. That is, it\'s filtered on resources without the given tag key.

', 'refs' => [ 'Expression$Tags' => '

The specific Tag to use for Expression.

', 'TagValuesList$member' => NULL, ], ], 'TagValuesList' => [ 'base' => NULL, 'refs' => [ 'CurrentInstance$Tags' => '

Cost allocation resource tags that are applied to the instance.

', ], ], 'TargetInstance' => [ 'base' => '

Details on recommended instance.

', 'refs' => [ 'TargetInstancesList$member' => NULL, ], ], 'TargetInstancesList' => [ 'base' => NULL, 'refs' => [ 'ModifyRecommendationDetail$TargetInstances' => '

Determines whether this instance type is the Amazon Web Services default recommendation.

', ], ], 'TermInYears' => [ 'base' => NULL, 'refs' => [ 'GetReservationPurchaseRecommendationRequest$TermInYears' => '

The reservation term that you want recommendations for.

', 'GetSavingsPlansPurchaseRecommendationRequest$TermInYears' => '

The savings plan recommendation term that\'s used to generate these recommendations.

', 'RecommendationDetailData$TermInYears' => '

The term of the commitment in years.

', 'ReservationPurchaseRecommendation$TermInYears' => '

The term of the reservation that you want recommendations for, in years.

', 'SavingsPlansPurchaseRecommendation$TermInYears' => '

The Savings Plans recommendation term in years. It\'s used to generate the recommendation.

', ], ], 'TerminateRecommendationDetail' => [ 'base' => '

Details on termination recommendation.

', 'refs' => [ 'RightsizingRecommendation$TerminateRecommendationDetail' => '

The details for termination recommendations.

', ], ], 'TooManyTagsException' => [ 'base' => '

Can occur if you specify a number of tags for a resource greater than the maximum 50 user tags per resource.

', 'refs' => [], ], 'TotalActualHours' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$TotalActualHours' => '

The total number of reservation hours that you used.

', ], ], 'TotalActualUnits' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$TotalActualUnits' => '

The total number of Amazon EC2 reservation hours that you used. It\'s converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

', ], ], 'TotalAmortizedFee' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$TotalAmortizedFee' => '

The total cost of your reservation. It\'s amortized over the reservation period.

', ], ], 'TotalImpactFilter' => [ 'base' => '

Filters cost anomalies based on the total impact.

', 'refs' => [ 'GetAnomaliesRequest$TotalImpact' => '

Filters anomaly results by the total impact field on the anomaly object. For example, you can filter anomalies GREATER_THAN 200.00 to retrieve anomalies, with an estimated dollar impact greater than 200.

', ], ], 'TotalPotentialRISavings' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$TotalPotentialRISavings' => '

How much you might save if you use your entire reservation.

', ], ], 'TotalRunningHours' => [ 'base' => NULL, 'refs' => [ 'CoverageHours$TotalRunningHours' => '

The total instance usage, in hours.

', ], ], 'TotalRunningNormalizedUnits' => [ 'base' => NULL, 'refs' => [ 'CoverageNormalizedUnits$TotalRunningNormalizedUnits' => '

The total number of normalized units that you used.

', ], ], 'UnknownMonitorException' => [ 'base' => '

The cost anomaly monitor does not exist for the account.

', 'refs' => [], ], 'UnknownSubscriptionException' => [ 'base' => '

The cost anomaly subscription does not exist for the account.

', 'refs' => [], ], 'UnrealizedSavings' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$UnrealizedSavings' => '

The unrealized savings because of purchasing and using a reservation.

', ], ], 'UnresolvableUsageUnitException' => [ 'base' => '

Cost Explorer was unable to identify the usage unit. Provide UsageType/UsageTypeGroup filter selections that contain matching units, for example: hours.

', 'refs' => [], ], 'UntagResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'UntagResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'UnusedHours' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$UnusedHours' => '

The number of reservation hours that you didn\'t use.

', ], ], 'UnusedUnits' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$UnusedUnits' => '

The number of Amazon EC2 reservation hours that you didn\'t use. It\'s converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

', ], ], 'UpdateAnomalyMonitorRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAnomalyMonitorResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAnomalySubscriptionRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAnomalySubscriptionResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateCostAllocationTagsStatusError' => [ 'base' => '

Gives a detailed description of the result of an action. It\'s on each cost allocation tag entry in the request.

', 'refs' => [ 'UpdateCostAllocationTagsStatusErrors$member' => NULL, ], ], 'UpdateCostAllocationTagsStatusErrors' => [ 'base' => NULL, 'refs' => [ 'UpdateCostAllocationTagsStatusResponse$Errors' => '

A list of UpdateCostAllocationTagsStatusError objects with error details about each cost allocation tag that can\'t be updated. If there\'s no failure, an empty array returns.

', ], ], 'UpdateCostAllocationTagsStatusRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateCostAllocationTagsStatusResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateCostCategoryDefinitionRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateCostCategoryDefinitionResponse' => [ 'base' => NULL, 'refs' => [], ], 'UsageServices' => [ 'base' => NULL, 'refs' => [ 'GetApproximateUsageRecordsRequest$Services' => '

The service metadata for the service or services you want to query. If not specified, all elements are returned.

', ], ], 'UtilizationByTime' => [ 'base' => '

The amount of utilization, in hours.

', 'refs' => [ 'UtilizationsByTime$member' => NULL, ], ], 'UtilizationPercentage' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$UtilizationPercentage' => '

The percentage of reservation time that you used.

', ], ], 'UtilizationPercentageInUnits' => [ 'base' => NULL, 'refs' => [ 'ReservationAggregates$UtilizationPercentageInUnits' => '

The percentage of Amazon EC2 reservation time that you used. It\'s converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

', ], ], 'UtilizationsByTime' => [ 'base' => NULL, 'refs' => [ 'GetReservationUtilizationResponse$UtilizationsByTime' => '

The amount of time that you used your Reserved Instances (RIs).

', ], ], 'Value' => [ 'base' => NULL, 'refs' => [ 'DimensionValuesWithAttributes$Value' => '

The value of a dimension with a specific attribute.

', 'Values$member' => NULL, ], ], 'Values' => [ 'base' => NULL, 'refs' => [ 'CostCategoryValues$Values' => '

The specific value of the Cost Category.

', 'DimensionValues$Values' => '

The metadata values that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

', 'GetAnomalyMonitorsRequest$MonitorArnList' => '

A list of cost anomaly monitor ARNs.

', 'GetAnomalySubscriptionsRequest$SubscriptionArnList' => '

A list of cost anomaly subscription ARNs.

', 'TagValues$Values' => '

The specific value of the tag.

', ], ], 'YearMonthDay' => [ 'base' => NULL, 'refs' => [ 'Anomaly$AnomalyStartDate' => '

The first day the anomaly is detected.

', 'Anomaly$AnomalyEndDate' => '

The last day the anomaly is detected.

', 'AnomalyDateInterval$StartDate' => '

The first date an anomaly was observed.

', 'AnomalyDateInterval$EndDate' => '

The last date an anomaly was observed.

', 'AnomalyMonitor$CreationDate' => '

The date when the monitor was created.

', 'AnomalyMonitor$LastUpdatedDate' => '

The date when the monitor was last updated.

', 'AnomalyMonitor$LastEvaluatedDate' => '

The date when the monitor last evaluated for anomalies.

', 'DateInterval$Start' => '

The beginning of the time period. The start date is inclusive. For example, if start is 2017-01-01, Amazon Web Services retrieves cost and usage data starting at 2017-01-01 up to the end date. The start date must be equal to or no later than the current date to avoid a validation error.

', 'DateInterval$End' => '

The end of the time period. The end date is exclusive. For example, if end is 2017-05-01, Amazon Web Services retrieves cost and usage data from the start date up to, but not including, 2017-05-01.

', ], ], 'ZonedDateTime' => [ 'base' => '

The period of time that you want the usage and costs for.

', 'refs' => [ 'CostAllocationTag$LastUpdatedDate' => '

The last date that the tag was either activated or deactivated.

', 'CostAllocationTag$LastUsedDate' => '

The last month that the tag was used on an Amazon Web Services resource.

', 'CostCategory$EffectiveStart' => '

The effective start date of your Cost Category.

', 'CostCategory$EffectiveEnd' => '

The effective end date of your Cost Category.

', 'CostCategoryReference$EffectiveStart' => '

The Cost Category\'s effective start date.

', 'CostCategoryReference$EffectiveEnd' => '

The Cost Category\'s effective end date.

', 'CreateCostCategoryDefinitionRequest$EffectiveStart' => '

The Cost Category\'s effective start date. It can only be a billing start date (first day of the month). If the date isn\'t provided, it\'s the first day of the current month. Dates can\'t be before the previous twelve months, or in the future.

', 'CreateCostCategoryDefinitionResponse$EffectiveStart' => '

The Cost Category\'s effective start date. It can only be a billing start date (first day of the month).

', 'DeleteCostCategoryDefinitionResponse$EffectiveEnd' => '

The effective end date of the Cost Category as a result of deleting it. No costs after this date is categorized by the deleted Cost Category.

', 'DescribeCostCategoryDefinitionRequest$EffectiveOn' => '

The date when the Cost Category was effective.

', 'GenerationSummary$GenerationStartedTime' => '

Indicates the start time of the recommendation generation.

', 'GenerationSummary$GenerationCompletionTime' => '

Indicates the completion time of the recommendation generation.

', 'GenerationSummary$EstimatedCompletionTime' => '

Indicates the estimated time for when the recommendation generation will complete.

', 'ListCostCategoryDefinitionsRequest$EffectiveOn' => '

The date when the Cost Category was effective.

', 'RecommendationDetailData$GenerationTimestamp' => NULL, 'RecommendationDetailData$LatestUsageTimestamp' => NULL, 'RecommendationDetailHourlyMetrics$StartTime' => NULL, 'StartSavingsPlansPurchaseRecommendationGenerationResponse$GenerationStartedTime' => '

The start time of the recommendation generation.

', 'StartSavingsPlansPurchaseRecommendationGenerationResponse$EstimatedCompletionTime' => '

The estimated time for when the recommendation generation will complete.

', 'UpdateCostCategoryDefinitionRequest$EffectiveStart' => '

The Cost Category\'s effective start date. It can only be a billing start date (first day of the month). If the date isn\'t provided, it\'s the first day of the current month. Dates can\'t be before the previous twelve months, or in the future.

', 'UpdateCostCategoryDefinitionResponse$EffectiveStart' => '

The Cost Category\'s effective start date. It can only be a billing start date (first day of the month).

', ], ], ],]; diff --git a/src/data/ec2/2016-11-15/api-2.json b/src/data/ec2/2016-11-15/api-2.json index 40d1a9f0a6..19097e2afc 100644 --- a/src/data/ec2/2016-11-15/api-2.json +++ b/src/data/ec2/2016-11-15/api-2.json @@ -23897,12 +23897,17 @@ } } }, + "GetNetworkInsightsAccessScopeAnalysisFindingsMaxResults":{ + "type":"integer", + "max":1000, + "min":1 + }, "GetNetworkInsightsAccessScopeAnalysisFindingsRequest":{ "type":"structure", "required":["NetworkInsightsAccessScopeAnalysisId"], "members":{ "NetworkInsightsAccessScopeAnalysisId":{"shape":"NetworkInsightsAccessScopeAnalysisId"}, - "MaxResults":{"shape":"NetworkInsightsMaxResults"}, + "MaxResults":{"shape":"GetNetworkInsightsAccessScopeAnalysisFindingsMaxResults"}, "NextToken":{"shape":"NextToken"}, "DryRun":{"shape":"Boolean"} } diff --git a/src/data/ec2/2016-11-15/api-2.json.php b/src/data/ec2/2016-11-15/api-2.json.php index 1d93d97223..4697aa35da 100644 --- a/src/data/ec2/2016-11-15/api-2.json.php +++ b/src/data/ec2/2016-11-15/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2016-11-15', 'endpointPrefix' => 'ec2', 'protocol' => 'ec2', 'serviceAbbreviation' => 'Amazon EC2', 'serviceFullName' => 'Amazon Elastic Compute Cloud', 'serviceId' => 'EC2', 'signatureVersion' => 'v4', 'uid' => 'ec2-2016-11-15', 'xmlNamespace' => 'http://ec2.amazonaws.com/doc/2016-11-15', ], 'operations' => [ 'AcceptAddressTransfer' => [ 'name' => 'AcceptAddressTransfer', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AcceptAddressTransferRequest', ], 'output' => [ 'shape' => 'AcceptAddressTransferResult', ], ], 'AcceptReservedInstancesExchangeQuote' => [ 'name' => 'AcceptReservedInstancesExchangeQuote', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AcceptReservedInstancesExchangeQuoteRequest', ], 'output' => [ 'shape' => 'AcceptReservedInstancesExchangeQuoteResult', ], ], 'AcceptTransitGatewayMulticastDomainAssociations' => [ 'name' => 'AcceptTransitGatewayMulticastDomainAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AcceptTransitGatewayMulticastDomainAssociationsRequest', ], 'output' => [ 'shape' => 'AcceptTransitGatewayMulticastDomainAssociationsResult', ], ], 'AcceptTransitGatewayPeeringAttachment' => [ 'name' => 'AcceptTransitGatewayPeeringAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AcceptTransitGatewayPeeringAttachmentRequest', ], 'output' => [ 'shape' => 'AcceptTransitGatewayPeeringAttachmentResult', ], ], 'AcceptTransitGatewayVpcAttachment' => [ 'name' => 'AcceptTransitGatewayVpcAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AcceptTransitGatewayVpcAttachmentRequest', ], 'output' => [ 'shape' => 'AcceptTransitGatewayVpcAttachmentResult', ], ], 'AcceptVpcEndpointConnections' => [ 'name' => 'AcceptVpcEndpointConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AcceptVpcEndpointConnectionsRequest', ], 'output' => [ 'shape' => 'AcceptVpcEndpointConnectionsResult', ], ], 'AcceptVpcPeeringConnection' => [ 'name' => 'AcceptVpcPeeringConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AcceptVpcPeeringConnectionRequest', ], 'output' => [ 'shape' => 'AcceptVpcPeeringConnectionResult', ], ], 'AdvertiseByoipCidr' => [ 'name' => 'AdvertiseByoipCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdvertiseByoipCidrRequest', ], 'output' => [ 'shape' => 'AdvertiseByoipCidrResult', ], ], 'AllocateAddress' => [ 'name' => 'AllocateAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AllocateAddressRequest', ], 'output' => [ 'shape' => 'AllocateAddressResult', ], ], 'AllocateHosts' => [ 'name' => 'AllocateHosts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AllocateHostsRequest', ], 'output' => [ 'shape' => 'AllocateHostsResult', ], ], 'AllocateIpamPoolCidr' => [ 'name' => 'AllocateIpamPoolCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AllocateIpamPoolCidrRequest', ], 'output' => [ 'shape' => 'AllocateIpamPoolCidrResult', ], ], 'ApplySecurityGroupsToClientVpnTargetNetwork' => [ 'name' => 'ApplySecurityGroupsToClientVpnTargetNetwork', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ApplySecurityGroupsToClientVpnTargetNetworkRequest', ], 'output' => [ 'shape' => 'ApplySecurityGroupsToClientVpnTargetNetworkResult', ], ], 'AssignIpv6Addresses' => [ 'name' => 'AssignIpv6Addresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssignIpv6AddressesRequest', ], 'output' => [ 'shape' => 'AssignIpv6AddressesResult', ], ], 'AssignPrivateIpAddresses' => [ 'name' => 'AssignPrivateIpAddresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssignPrivateIpAddressesRequest', ], 'output' => [ 'shape' => 'AssignPrivateIpAddressesResult', ], ], 'AssignPrivateNatGatewayAddress' => [ 'name' => 'AssignPrivateNatGatewayAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssignPrivateNatGatewayAddressRequest', ], 'output' => [ 'shape' => 'AssignPrivateNatGatewayAddressResult', ], ], 'AssociateAddress' => [ 'name' => 'AssociateAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateAddressRequest', ], 'output' => [ 'shape' => 'AssociateAddressResult', ], ], 'AssociateClientVpnTargetNetwork' => [ 'name' => 'AssociateClientVpnTargetNetwork', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateClientVpnTargetNetworkRequest', ], 'output' => [ 'shape' => 'AssociateClientVpnTargetNetworkResult', ], ], 'AssociateDhcpOptions' => [ 'name' => 'AssociateDhcpOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateDhcpOptionsRequest', ], ], 'AssociateEnclaveCertificateIamRole' => [ 'name' => 'AssociateEnclaveCertificateIamRole', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateEnclaveCertificateIamRoleRequest', ], 'output' => [ 'shape' => 'AssociateEnclaveCertificateIamRoleResult', ], ], 'AssociateIamInstanceProfile' => [ 'name' => 'AssociateIamInstanceProfile', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateIamInstanceProfileRequest', ], 'output' => [ 'shape' => 'AssociateIamInstanceProfileResult', ], ], 'AssociateInstanceEventWindow' => [ 'name' => 'AssociateInstanceEventWindow', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateInstanceEventWindowRequest', ], 'output' => [ 'shape' => 'AssociateInstanceEventWindowResult', ], ], 'AssociateIpamByoasn' => [ 'name' => 'AssociateIpamByoasn', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateIpamByoasnRequest', ], 'output' => [ 'shape' => 'AssociateIpamByoasnResult', ], ], 'AssociateIpamResourceDiscovery' => [ 'name' => 'AssociateIpamResourceDiscovery', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateIpamResourceDiscoveryRequest', ], 'output' => [ 'shape' => 'AssociateIpamResourceDiscoveryResult', ], ], 'AssociateNatGatewayAddress' => [ 'name' => 'AssociateNatGatewayAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateNatGatewayAddressRequest', ], 'output' => [ 'shape' => 'AssociateNatGatewayAddressResult', ], ], 'AssociateRouteTable' => [ 'name' => 'AssociateRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateRouteTableRequest', ], 'output' => [ 'shape' => 'AssociateRouteTableResult', ], ], 'AssociateSubnetCidrBlock' => [ 'name' => 'AssociateSubnetCidrBlock', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateSubnetCidrBlockRequest', ], 'output' => [ 'shape' => 'AssociateSubnetCidrBlockResult', ], ], 'AssociateTransitGatewayMulticastDomain' => [ 'name' => 'AssociateTransitGatewayMulticastDomain', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateTransitGatewayMulticastDomainRequest', ], 'output' => [ 'shape' => 'AssociateTransitGatewayMulticastDomainResult', ], ], 'AssociateTransitGatewayPolicyTable' => [ 'name' => 'AssociateTransitGatewayPolicyTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateTransitGatewayPolicyTableRequest', ], 'output' => [ 'shape' => 'AssociateTransitGatewayPolicyTableResult', ], ], 'AssociateTransitGatewayRouteTable' => [ 'name' => 'AssociateTransitGatewayRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateTransitGatewayRouteTableRequest', ], 'output' => [ 'shape' => 'AssociateTransitGatewayRouteTableResult', ], ], 'AssociateTrunkInterface' => [ 'name' => 'AssociateTrunkInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateTrunkInterfaceRequest', ], 'output' => [ 'shape' => 'AssociateTrunkInterfaceResult', ], ], 'AssociateVpcCidrBlock' => [ 'name' => 'AssociateVpcCidrBlock', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateVpcCidrBlockRequest', ], 'output' => [ 'shape' => 'AssociateVpcCidrBlockResult', ], ], 'AttachClassicLinkVpc' => [ 'name' => 'AttachClassicLinkVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AttachClassicLinkVpcRequest', ], 'output' => [ 'shape' => 'AttachClassicLinkVpcResult', ], ], 'AttachInternetGateway' => [ 'name' => 'AttachInternetGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AttachInternetGatewayRequest', ], ], 'AttachNetworkInterface' => [ 'name' => 'AttachNetworkInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AttachNetworkInterfaceRequest', ], 'output' => [ 'shape' => 'AttachNetworkInterfaceResult', ], ], 'AttachVerifiedAccessTrustProvider' => [ 'name' => 'AttachVerifiedAccessTrustProvider', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AttachVerifiedAccessTrustProviderRequest', ], 'output' => [ 'shape' => 'AttachVerifiedAccessTrustProviderResult', ], ], 'AttachVolume' => [ 'name' => 'AttachVolume', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AttachVolumeRequest', ], 'output' => [ 'shape' => 'VolumeAttachment', ], ], 'AttachVpnGateway' => [ 'name' => 'AttachVpnGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AttachVpnGatewayRequest', ], 'output' => [ 'shape' => 'AttachVpnGatewayResult', ], ], 'AuthorizeClientVpnIngress' => [ 'name' => 'AuthorizeClientVpnIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeClientVpnIngressRequest', ], 'output' => [ 'shape' => 'AuthorizeClientVpnIngressResult', ], ], 'AuthorizeSecurityGroupEgress' => [ 'name' => 'AuthorizeSecurityGroupEgress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeSecurityGroupEgressRequest', ], 'output' => [ 'shape' => 'AuthorizeSecurityGroupEgressResult', ], ], 'AuthorizeSecurityGroupIngress' => [ 'name' => 'AuthorizeSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeSecurityGroupIngressRequest', ], 'output' => [ 'shape' => 'AuthorizeSecurityGroupIngressResult', ], ], 'BundleInstance' => [ 'name' => 'BundleInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BundleInstanceRequest', ], 'output' => [ 'shape' => 'BundleInstanceResult', ], ], 'CancelBundleTask' => [ 'name' => 'CancelBundleTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelBundleTaskRequest', ], 'output' => [ 'shape' => 'CancelBundleTaskResult', ], ], 'CancelCapacityReservation' => [ 'name' => 'CancelCapacityReservation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelCapacityReservationRequest', ], 'output' => [ 'shape' => 'CancelCapacityReservationResult', ], ], 'CancelCapacityReservationFleets' => [ 'name' => 'CancelCapacityReservationFleets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelCapacityReservationFleetsRequest', ], 'output' => [ 'shape' => 'CancelCapacityReservationFleetsResult', ], ], 'CancelConversionTask' => [ 'name' => 'CancelConversionTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelConversionRequest', ], ], 'CancelExportTask' => [ 'name' => 'CancelExportTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelExportTaskRequest', ], ], 'CancelImageLaunchPermission' => [ 'name' => 'CancelImageLaunchPermission', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelImageLaunchPermissionRequest', ], 'output' => [ 'shape' => 'CancelImageLaunchPermissionResult', ], ], 'CancelImportTask' => [ 'name' => 'CancelImportTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelImportTaskRequest', ], 'output' => [ 'shape' => 'CancelImportTaskResult', ], ], 'CancelReservedInstancesListing' => [ 'name' => 'CancelReservedInstancesListing', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelReservedInstancesListingRequest', ], 'output' => [ 'shape' => 'CancelReservedInstancesListingResult', ], ], 'CancelSpotFleetRequests' => [ 'name' => 'CancelSpotFleetRequests', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelSpotFleetRequestsRequest', ], 'output' => [ 'shape' => 'CancelSpotFleetRequestsResponse', ], ], 'CancelSpotInstanceRequests' => [ 'name' => 'CancelSpotInstanceRequests', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelSpotInstanceRequestsRequest', ], 'output' => [ 'shape' => 'CancelSpotInstanceRequestsResult', ], ], 'ConfirmProductInstance' => [ 'name' => 'ConfirmProductInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ConfirmProductInstanceRequest', ], 'output' => [ 'shape' => 'ConfirmProductInstanceResult', ], ], 'CopyFpgaImage' => [ 'name' => 'CopyFpgaImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyFpgaImageRequest', ], 'output' => [ 'shape' => 'CopyFpgaImageResult', ], ], 'CopyImage' => [ 'name' => 'CopyImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyImageRequest', ], 'output' => [ 'shape' => 'CopyImageResult', ], ], 'CopySnapshot' => [ 'name' => 'CopySnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopySnapshotRequest', ], 'output' => [ 'shape' => 'CopySnapshotResult', ], ], 'CreateCapacityReservation' => [ 'name' => 'CreateCapacityReservation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCapacityReservationRequest', ], 'output' => [ 'shape' => 'CreateCapacityReservationResult', ], ], 'CreateCapacityReservationFleet' => [ 'name' => 'CreateCapacityReservationFleet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCapacityReservationFleetRequest', ], 'output' => [ 'shape' => 'CreateCapacityReservationFleetResult', ], ], 'CreateCarrierGateway' => [ 'name' => 'CreateCarrierGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCarrierGatewayRequest', ], 'output' => [ 'shape' => 'CreateCarrierGatewayResult', ], ], 'CreateClientVpnEndpoint' => [ 'name' => 'CreateClientVpnEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateClientVpnEndpointRequest', ], 'output' => [ 'shape' => 'CreateClientVpnEndpointResult', ], ], 'CreateClientVpnRoute' => [ 'name' => 'CreateClientVpnRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateClientVpnRouteRequest', ], 'output' => [ 'shape' => 'CreateClientVpnRouteResult', ], ], 'CreateCoipCidr' => [ 'name' => 'CreateCoipCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCoipCidrRequest', ], 'output' => [ 'shape' => 'CreateCoipCidrResult', ], ], 'CreateCoipPool' => [ 'name' => 'CreateCoipPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCoipPoolRequest', ], 'output' => [ 'shape' => 'CreateCoipPoolResult', ], ], 'CreateCustomerGateway' => [ 'name' => 'CreateCustomerGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCustomerGatewayRequest', ], 'output' => [ 'shape' => 'CreateCustomerGatewayResult', ], ], 'CreateDefaultSubnet' => [ 'name' => 'CreateDefaultSubnet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDefaultSubnetRequest', ], 'output' => [ 'shape' => 'CreateDefaultSubnetResult', ], ], 'CreateDefaultVpc' => [ 'name' => 'CreateDefaultVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDefaultVpcRequest', ], 'output' => [ 'shape' => 'CreateDefaultVpcResult', ], ], 'CreateDhcpOptions' => [ 'name' => 'CreateDhcpOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDhcpOptionsRequest', ], 'output' => [ 'shape' => 'CreateDhcpOptionsResult', ], ], 'CreateEgressOnlyInternetGateway' => [ 'name' => 'CreateEgressOnlyInternetGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateEgressOnlyInternetGatewayRequest', ], 'output' => [ 'shape' => 'CreateEgressOnlyInternetGatewayResult', ], ], 'CreateFleet' => [ 'name' => 'CreateFleet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateFleetRequest', ], 'output' => [ 'shape' => 'CreateFleetResult', ], ], 'CreateFlowLogs' => [ 'name' => 'CreateFlowLogs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateFlowLogsRequest', ], 'output' => [ 'shape' => 'CreateFlowLogsResult', ], ], 'CreateFpgaImage' => [ 'name' => 'CreateFpgaImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateFpgaImageRequest', ], 'output' => [ 'shape' => 'CreateFpgaImageResult', ], ], 'CreateImage' => [ 'name' => 'CreateImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateImageRequest', ], 'output' => [ 'shape' => 'CreateImageResult', ], ], 'CreateInstanceConnectEndpoint' => [ 'name' => 'CreateInstanceConnectEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateInstanceConnectEndpointRequest', ], 'output' => [ 'shape' => 'CreateInstanceConnectEndpointResult', ], ], 'CreateInstanceEventWindow' => [ 'name' => 'CreateInstanceEventWindow', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateInstanceEventWindowRequest', ], 'output' => [ 'shape' => 'CreateInstanceEventWindowResult', ], ], 'CreateInstanceExportTask' => [ 'name' => 'CreateInstanceExportTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateInstanceExportTaskRequest', ], 'output' => [ 'shape' => 'CreateInstanceExportTaskResult', ], ], 'CreateInternetGateway' => [ 'name' => 'CreateInternetGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateInternetGatewayRequest', ], 'output' => [ 'shape' => 'CreateInternetGatewayResult', ], ], 'CreateIpam' => [ 'name' => 'CreateIpam', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateIpamRequest', ], 'output' => [ 'shape' => 'CreateIpamResult', ], ], 'CreateIpamPool' => [ 'name' => 'CreateIpamPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateIpamPoolRequest', ], 'output' => [ 'shape' => 'CreateIpamPoolResult', ], ], 'CreateIpamResourceDiscovery' => [ 'name' => 'CreateIpamResourceDiscovery', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateIpamResourceDiscoveryRequest', ], 'output' => [ 'shape' => 'CreateIpamResourceDiscoveryResult', ], ], 'CreateIpamScope' => [ 'name' => 'CreateIpamScope', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateIpamScopeRequest', ], 'output' => [ 'shape' => 'CreateIpamScopeResult', ], ], 'CreateKeyPair' => [ 'name' => 'CreateKeyPair', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateKeyPairRequest', ], 'output' => [ 'shape' => 'KeyPair', ], ], 'CreateLaunchTemplate' => [ 'name' => 'CreateLaunchTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateLaunchTemplateRequest', ], 'output' => [ 'shape' => 'CreateLaunchTemplateResult', ], ], 'CreateLaunchTemplateVersion' => [ 'name' => 'CreateLaunchTemplateVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateLaunchTemplateVersionRequest', ], 'output' => [ 'shape' => 'CreateLaunchTemplateVersionResult', ], ], 'CreateLocalGatewayRoute' => [ 'name' => 'CreateLocalGatewayRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateLocalGatewayRouteRequest', ], 'output' => [ 'shape' => 'CreateLocalGatewayRouteResult', ], ], 'CreateLocalGatewayRouteTable' => [ 'name' => 'CreateLocalGatewayRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateLocalGatewayRouteTableRequest', ], 'output' => [ 'shape' => 'CreateLocalGatewayRouteTableResult', ], ], 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation' => [ 'name' => 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest', ], 'output' => [ 'shape' => 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult', ], ], 'CreateLocalGatewayRouteTableVpcAssociation' => [ 'name' => 'CreateLocalGatewayRouteTableVpcAssociation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateLocalGatewayRouteTableVpcAssociationRequest', ], 'output' => [ 'shape' => 'CreateLocalGatewayRouteTableVpcAssociationResult', ], ], 'CreateManagedPrefixList' => [ 'name' => 'CreateManagedPrefixList', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateManagedPrefixListRequest', ], 'output' => [ 'shape' => 'CreateManagedPrefixListResult', ], ], 'CreateNatGateway' => [ 'name' => 'CreateNatGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNatGatewayRequest', ], 'output' => [ 'shape' => 'CreateNatGatewayResult', ], ], 'CreateNetworkAcl' => [ 'name' => 'CreateNetworkAcl', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNetworkAclRequest', ], 'output' => [ 'shape' => 'CreateNetworkAclResult', ], ], 'CreateNetworkAclEntry' => [ 'name' => 'CreateNetworkAclEntry', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNetworkAclEntryRequest', ], ], 'CreateNetworkInsightsAccessScope' => [ 'name' => 'CreateNetworkInsightsAccessScope', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNetworkInsightsAccessScopeRequest', ], 'output' => [ 'shape' => 'CreateNetworkInsightsAccessScopeResult', ], ], 'CreateNetworkInsightsPath' => [ 'name' => 'CreateNetworkInsightsPath', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNetworkInsightsPathRequest', ], 'output' => [ 'shape' => 'CreateNetworkInsightsPathResult', ], ], 'CreateNetworkInterface' => [ 'name' => 'CreateNetworkInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNetworkInterfaceRequest', ], 'output' => [ 'shape' => 'CreateNetworkInterfaceResult', ], ], 'CreateNetworkInterfacePermission' => [ 'name' => 'CreateNetworkInterfacePermission', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNetworkInterfacePermissionRequest', ], 'output' => [ 'shape' => 'CreateNetworkInterfacePermissionResult', ], ], 'CreatePlacementGroup' => [ 'name' => 'CreatePlacementGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreatePlacementGroupRequest', ], 'output' => [ 'shape' => 'CreatePlacementGroupResult', ], ], 'CreatePublicIpv4Pool' => [ 'name' => 'CreatePublicIpv4Pool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreatePublicIpv4PoolRequest', ], 'output' => [ 'shape' => 'CreatePublicIpv4PoolResult', ], ], 'CreateReplaceRootVolumeTask' => [ 'name' => 'CreateReplaceRootVolumeTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateReplaceRootVolumeTaskRequest', ], 'output' => [ 'shape' => 'CreateReplaceRootVolumeTaskResult', ], ], 'CreateReservedInstancesListing' => [ 'name' => 'CreateReservedInstancesListing', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateReservedInstancesListingRequest', ], 'output' => [ 'shape' => 'CreateReservedInstancesListingResult', ], ], 'CreateRestoreImageTask' => [ 'name' => 'CreateRestoreImageTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateRestoreImageTaskRequest', ], 'output' => [ 'shape' => 'CreateRestoreImageTaskResult', ], ], 'CreateRoute' => [ 'name' => 'CreateRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateRouteRequest', ], 'output' => [ 'shape' => 'CreateRouteResult', ], ], 'CreateRouteTable' => [ 'name' => 'CreateRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateRouteTableRequest', ], 'output' => [ 'shape' => 'CreateRouteTableResult', ], ], 'CreateSecurityGroup' => [ 'name' => 'CreateSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSecurityGroupRequest', ], 'output' => [ 'shape' => 'CreateSecurityGroupResult', ], ], 'CreateSnapshot' => [ 'name' => 'CreateSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSnapshotRequest', ], 'output' => [ 'shape' => 'Snapshot', ], ], 'CreateSnapshots' => [ 'name' => 'CreateSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSnapshotsRequest', ], 'output' => [ 'shape' => 'CreateSnapshotsResult', ], ], 'CreateSpotDatafeedSubscription' => [ 'name' => 'CreateSpotDatafeedSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSpotDatafeedSubscriptionRequest', ], 'output' => [ 'shape' => 'CreateSpotDatafeedSubscriptionResult', ], ], 'CreateStoreImageTask' => [ 'name' => 'CreateStoreImageTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateStoreImageTaskRequest', ], 'output' => [ 'shape' => 'CreateStoreImageTaskResult', ], ], 'CreateSubnet' => [ 'name' => 'CreateSubnet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSubnetRequest', ], 'output' => [ 'shape' => 'CreateSubnetResult', ], ], 'CreateSubnetCidrReservation' => [ 'name' => 'CreateSubnetCidrReservation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSubnetCidrReservationRequest', ], 'output' => [ 'shape' => 'CreateSubnetCidrReservationResult', ], ], 'CreateTags' => [ 'name' => 'CreateTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTagsRequest', ], ], 'CreateTrafficMirrorFilter' => [ 'name' => 'CreateTrafficMirrorFilter', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTrafficMirrorFilterRequest', ], 'output' => [ 'shape' => 'CreateTrafficMirrorFilterResult', ], ], 'CreateTrafficMirrorFilterRule' => [ 'name' => 'CreateTrafficMirrorFilterRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTrafficMirrorFilterRuleRequest', ], 'output' => [ 'shape' => 'CreateTrafficMirrorFilterRuleResult', ], ], 'CreateTrafficMirrorSession' => [ 'name' => 'CreateTrafficMirrorSession', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTrafficMirrorSessionRequest', ], 'output' => [ 'shape' => 'CreateTrafficMirrorSessionResult', ], ], 'CreateTrafficMirrorTarget' => [ 'name' => 'CreateTrafficMirrorTarget', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTrafficMirrorTargetRequest', ], 'output' => [ 'shape' => 'CreateTrafficMirrorTargetResult', ], ], 'CreateTransitGateway' => [ 'name' => 'CreateTransitGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayResult', ], ], 'CreateTransitGatewayConnect' => [ 'name' => 'CreateTransitGatewayConnect', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayConnectRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayConnectResult', ], ], 'CreateTransitGatewayConnectPeer' => [ 'name' => 'CreateTransitGatewayConnectPeer', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayConnectPeerRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayConnectPeerResult', ], ], 'CreateTransitGatewayMulticastDomain' => [ 'name' => 'CreateTransitGatewayMulticastDomain', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayMulticastDomainRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayMulticastDomainResult', ], ], 'CreateTransitGatewayPeeringAttachment' => [ 'name' => 'CreateTransitGatewayPeeringAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayPeeringAttachmentRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayPeeringAttachmentResult', ], ], 'CreateTransitGatewayPolicyTable' => [ 'name' => 'CreateTransitGatewayPolicyTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayPolicyTableRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayPolicyTableResult', ], ], 'CreateTransitGatewayPrefixListReference' => [ 'name' => 'CreateTransitGatewayPrefixListReference', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayPrefixListReferenceRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayPrefixListReferenceResult', ], ], 'CreateTransitGatewayRoute' => [ 'name' => 'CreateTransitGatewayRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayRouteRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayRouteResult', ], ], 'CreateTransitGatewayRouteTable' => [ 'name' => 'CreateTransitGatewayRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayRouteTableRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayRouteTableResult', ], ], 'CreateTransitGatewayRouteTableAnnouncement' => [ 'name' => 'CreateTransitGatewayRouteTableAnnouncement', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayRouteTableAnnouncementRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayRouteTableAnnouncementResult', ], ], 'CreateTransitGatewayVpcAttachment' => [ 'name' => 'CreateTransitGatewayVpcAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayVpcAttachmentRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayVpcAttachmentResult', ], ], 'CreateVerifiedAccessEndpoint' => [ 'name' => 'CreateVerifiedAccessEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVerifiedAccessEndpointRequest', ], 'output' => [ 'shape' => 'CreateVerifiedAccessEndpointResult', ], ], 'CreateVerifiedAccessGroup' => [ 'name' => 'CreateVerifiedAccessGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVerifiedAccessGroupRequest', ], 'output' => [ 'shape' => 'CreateVerifiedAccessGroupResult', ], ], 'CreateVerifiedAccessInstance' => [ 'name' => 'CreateVerifiedAccessInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVerifiedAccessInstanceRequest', ], 'output' => [ 'shape' => 'CreateVerifiedAccessInstanceResult', ], ], 'CreateVerifiedAccessTrustProvider' => [ 'name' => 'CreateVerifiedAccessTrustProvider', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVerifiedAccessTrustProviderRequest', ], 'output' => [ 'shape' => 'CreateVerifiedAccessTrustProviderResult', ], ], 'CreateVolume' => [ 'name' => 'CreateVolume', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVolumeRequest', ], 'output' => [ 'shape' => 'Volume', ], ], 'CreateVpc' => [ 'name' => 'CreateVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpcRequest', ], 'output' => [ 'shape' => 'CreateVpcResult', ], ], 'CreateVpcEndpoint' => [ 'name' => 'CreateVpcEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpcEndpointRequest', ], 'output' => [ 'shape' => 'CreateVpcEndpointResult', ], ], 'CreateVpcEndpointConnectionNotification' => [ 'name' => 'CreateVpcEndpointConnectionNotification', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpcEndpointConnectionNotificationRequest', ], 'output' => [ 'shape' => 'CreateVpcEndpointConnectionNotificationResult', ], ], 'CreateVpcEndpointServiceConfiguration' => [ 'name' => 'CreateVpcEndpointServiceConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpcEndpointServiceConfigurationRequest', ], 'output' => [ 'shape' => 'CreateVpcEndpointServiceConfigurationResult', ], ], 'CreateVpcPeeringConnection' => [ 'name' => 'CreateVpcPeeringConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpcPeeringConnectionRequest', ], 'output' => [ 'shape' => 'CreateVpcPeeringConnectionResult', ], ], 'CreateVpnConnection' => [ 'name' => 'CreateVpnConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpnConnectionRequest', ], 'output' => [ 'shape' => 'CreateVpnConnectionResult', ], ], 'CreateVpnConnectionRoute' => [ 'name' => 'CreateVpnConnectionRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpnConnectionRouteRequest', ], ], 'CreateVpnGateway' => [ 'name' => 'CreateVpnGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpnGatewayRequest', ], 'output' => [ 'shape' => 'CreateVpnGatewayResult', ], ], 'DeleteCarrierGateway' => [ 'name' => 'DeleteCarrierGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCarrierGatewayRequest', ], 'output' => [ 'shape' => 'DeleteCarrierGatewayResult', ], ], 'DeleteClientVpnEndpoint' => [ 'name' => 'DeleteClientVpnEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteClientVpnEndpointRequest', ], 'output' => [ 'shape' => 'DeleteClientVpnEndpointResult', ], ], 'DeleteClientVpnRoute' => [ 'name' => 'DeleteClientVpnRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteClientVpnRouteRequest', ], 'output' => [ 'shape' => 'DeleteClientVpnRouteResult', ], ], 'DeleteCoipCidr' => [ 'name' => 'DeleteCoipCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCoipCidrRequest', ], 'output' => [ 'shape' => 'DeleteCoipCidrResult', ], ], 'DeleteCoipPool' => [ 'name' => 'DeleteCoipPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCoipPoolRequest', ], 'output' => [ 'shape' => 'DeleteCoipPoolResult', ], ], 'DeleteCustomerGateway' => [ 'name' => 'DeleteCustomerGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCustomerGatewayRequest', ], ], 'DeleteDhcpOptions' => [ 'name' => 'DeleteDhcpOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDhcpOptionsRequest', ], ], 'DeleteEgressOnlyInternetGateway' => [ 'name' => 'DeleteEgressOnlyInternetGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteEgressOnlyInternetGatewayRequest', ], 'output' => [ 'shape' => 'DeleteEgressOnlyInternetGatewayResult', ], ], 'DeleteFleets' => [ 'name' => 'DeleteFleets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteFleetsRequest', ], 'output' => [ 'shape' => 'DeleteFleetsResult', ], ], 'DeleteFlowLogs' => [ 'name' => 'DeleteFlowLogs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteFlowLogsRequest', ], 'output' => [ 'shape' => 'DeleteFlowLogsResult', ], ], 'DeleteFpgaImage' => [ 'name' => 'DeleteFpgaImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteFpgaImageRequest', ], 'output' => [ 'shape' => 'DeleteFpgaImageResult', ], ], 'DeleteInstanceConnectEndpoint' => [ 'name' => 'DeleteInstanceConnectEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteInstanceConnectEndpointRequest', ], 'output' => [ 'shape' => 'DeleteInstanceConnectEndpointResult', ], ], 'DeleteInstanceEventWindow' => [ 'name' => 'DeleteInstanceEventWindow', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteInstanceEventWindowRequest', ], 'output' => [ 'shape' => 'DeleteInstanceEventWindowResult', ], ], 'DeleteInternetGateway' => [ 'name' => 'DeleteInternetGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteInternetGatewayRequest', ], ], 'DeleteIpam' => [ 'name' => 'DeleteIpam', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteIpamRequest', ], 'output' => [ 'shape' => 'DeleteIpamResult', ], ], 'DeleteIpamPool' => [ 'name' => 'DeleteIpamPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteIpamPoolRequest', ], 'output' => [ 'shape' => 'DeleteIpamPoolResult', ], ], 'DeleteIpamResourceDiscovery' => [ 'name' => 'DeleteIpamResourceDiscovery', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteIpamResourceDiscoveryRequest', ], 'output' => [ 'shape' => 'DeleteIpamResourceDiscoveryResult', ], ], 'DeleteIpamScope' => [ 'name' => 'DeleteIpamScope', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteIpamScopeRequest', ], 'output' => [ 'shape' => 'DeleteIpamScopeResult', ], ], 'DeleteKeyPair' => [ 'name' => 'DeleteKeyPair', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteKeyPairRequest', ], 'output' => [ 'shape' => 'DeleteKeyPairResult', ], ], 'DeleteLaunchTemplate' => [ 'name' => 'DeleteLaunchTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteLaunchTemplateRequest', ], 'output' => [ 'shape' => 'DeleteLaunchTemplateResult', ], ], 'DeleteLaunchTemplateVersions' => [ 'name' => 'DeleteLaunchTemplateVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteLaunchTemplateVersionsRequest', ], 'output' => [ 'shape' => 'DeleteLaunchTemplateVersionsResult', ], ], 'DeleteLocalGatewayRoute' => [ 'name' => 'DeleteLocalGatewayRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteLocalGatewayRouteRequest', ], 'output' => [ 'shape' => 'DeleteLocalGatewayRouteResult', ], ], 'DeleteLocalGatewayRouteTable' => [ 'name' => 'DeleteLocalGatewayRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteLocalGatewayRouteTableRequest', ], 'output' => [ 'shape' => 'DeleteLocalGatewayRouteTableResult', ], ], 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation' => [ 'name' => 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest', ], 'output' => [ 'shape' => 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult', ], ], 'DeleteLocalGatewayRouteTableVpcAssociation' => [ 'name' => 'DeleteLocalGatewayRouteTableVpcAssociation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteLocalGatewayRouteTableVpcAssociationRequest', ], 'output' => [ 'shape' => 'DeleteLocalGatewayRouteTableVpcAssociationResult', ], ], 'DeleteManagedPrefixList' => [ 'name' => 'DeleteManagedPrefixList', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteManagedPrefixListRequest', ], 'output' => [ 'shape' => 'DeleteManagedPrefixListResult', ], ], 'DeleteNatGateway' => [ 'name' => 'DeleteNatGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNatGatewayRequest', ], 'output' => [ 'shape' => 'DeleteNatGatewayResult', ], ], 'DeleteNetworkAcl' => [ 'name' => 'DeleteNetworkAcl', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkAclRequest', ], ], 'DeleteNetworkAclEntry' => [ 'name' => 'DeleteNetworkAclEntry', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkAclEntryRequest', ], ], 'DeleteNetworkInsightsAccessScope' => [ 'name' => 'DeleteNetworkInsightsAccessScope', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkInsightsAccessScopeRequest', ], 'output' => [ 'shape' => 'DeleteNetworkInsightsAccessScopeResult', ], ], 'DeleteNetworkInsightsAccessScopeAnalysis' => [ 'name' => 'DeleteNetworkInsightsAccessScopeAnalysis', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkInsightsAccessScopeAnalysisRequest', ], 'output' => [ 'shape' => 'DeleteNetworkInsightsAccessScopeAnalysisResult', ], ], 'DeleteNetworkInsightsAnalysis' => [ 'name' => 'DeleteNetworkInsightsAnalysis', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkInsightsAnalysisRequest', ], 'output' => [ 'shape' => 'DeleteNetworkInsightsAnalysisResult', ], ], 'DeleteNetworkInsightsPath' => [ 'name' => 'DeleteNetworkInsightsPath', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkInsightsPathRequest', ], 'output' => [ 'shape' => 'DeleteNetworkInsightsPathResult', ], ], 'DeleteNetworkInterface' => [ 'name' => 'DeleteNetworkInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkInterfaceRequest', ], ], 'DeleteNetworkInterfacePermission' => [ 'name' => 'DeleteNetworkInterfacePermission', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkInterfacePermissionRequest', ], 'output' => [ 'shape' => 'DeleteNetworkInterfacePermissionResult', ], ], 'DeletePlacementGroup' => [ 'name' => 'DeletePlacementGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeletePlacementGroupRequest', ], ], 'DeletePublicIpv4Pool' => [ 'name' => 'DeletePublicIpv4Pool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeletePublicIpv4PoolRequest', ], 'output' => [ 'shape' => 'DeletePublicIpv4PoolResult', ], ], 'DeleteQueuedReservedInstances' => [ 'name' => 'DeleteQueuedReservedInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteQueuedReservedInstancesRequest', ], 'output' => [ 'shape' => 'DeleteQueuedReservedInstancesResult', ], ], 'DeleteRoute' => [ 'name' => 'DeleteRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteRouteRequest', ], ], 'DeleteRouteTable' => [ 'name' => 'DeleteRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteRouteTableRequest', ], ], 'DeleteSecurityGroup' => [ 'name' => 'DeleteSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSecurityGroupRequest', ], ], 'DeleteSnapshot' => [ 'name' => 'DeleteSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSnapshotRequest', ], ], 'DeleteSpotDatafeedSubscription' => [ 'name' => 'DeleteSpotDatafeedSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSpotDatafeedSubscriptionRequest', ], ], 'DeleteSubnet' => [ 'name' => 'DeleteSubnet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSubnetRequest', ], ], 'DeleteSubnetCidrReservation' => [ 'name' => 'DeleteSubnetCidrReservation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSubnetCidrReservationRequest', ], 'output' => [ 'shape' => 'DeleteSubnetCidrReservationResult', ], ], 'DeleteTags' => [ 'name' => 'DeleteTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTagsRequest', ], ], 'DeleteTrafficMirrorFilter' => [ 'name' => 'DeleteTrafficMirrorFilter', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTrafficMirrorFilterRequest', ], 'output' => [ 'shape' => 'DeleteTrafficMirrorFilterResult', ], ], 'DeleteTrafficMirrorFilterRule' => [ 'name' => 'DeleteTrafficMirrorFilterRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTrafficMirrorFilterRuleRequest', ], 'output' => [ 'shape' => 'DeleteTrafficMirrorFilterRuleResult', ], ], 'DeleteTrafficMirrorSession' => [ 'name' => 'DeleteTrafficMirrorSession', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTrafficMirrorSessionRequest', ], 'output' => [ 'shape' => 'DeleteTrafficMirrorSessionResult', ], ], 'DeleteTrafficMirrorTarget' => [ 'name' => 'DeleteTrafficMirrorTarget', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTrafficMirrorTargetRequest', ], 'output' => [ 'shape' => 'DeleteTrafficMirrorTargetResult', ], ], 'DeleteTransitGateway' => [ 'name' => 'DeleteTransitGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayResult', ], ], 'DeleteTransitGatewayConnect' => [ 'name' => 'DeleteTransitGatewayConnect', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayConnectRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayConnectResult', ], ], 'DeleteTransitGatewayConnectPeer' => [ 'name' => 'DeleteTransitGatewayConnectPeer', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayConnectPeerRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayConnectPeerResult', ], ], 'DeleteTransitGatewayMulticastDomain' => [ 'name' => 'DeleteTransitGatewayMulticastDomain', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayMulticastDomainRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayMulticastDomainResult', ], ], 'DeleteTransitGatewayPeeringAttachment' => [ 'name' => 'DeleteTransitGatewayPeeringAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayPeeringAttachmentRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayPeeringAttachmentResult', ], ], 'DeleteTransitGatewayPolicyTable' => [ 'name' => 'DeleteTransitGatewayPolicyTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayPolicyTableRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayPolicyTableResult', ], ], 'DeleteTransitGatewayPrefixListReference' => [ 'name' => 'DeleteTransitGatewayPrefixListReference', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayPrefixListReferenceRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayPrefixListReferenceResult', ], ], 'DeleteTransitGatewayRoute' => [ 'name' => 'DeleteTransitGatewayRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayRouteRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayRouteResult', ], ], 'DeleteTransitGatewayRouteTable' => [ 'name' => 'DeleteTransitGatewayRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayRouteTableRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayRouteTableResult', ], ], 'DeleteTransitGatewayRouteTableAnnouncement' => [ 'name' => 'DeleteTransitGatewayRouteTableAnnouncement', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayRouteTableAnnouncementRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayRouteTableAnnouncementResult', ], ], 'DeleteTransitGatewayVpcAttachment' => [ 'name' => 'DeleteTransitGatewayVpcAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayVpcAttachmentRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayVpcAttachmentResult', ], ], 'DeleteVerifiedAccessEndpoint' => [ 'name' => 'DeleteVerifiedAccessEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVerifiedAccessEndpointRequest', ], 'output' => [ 'shape' => 'DeleteVerifiedAccessEndpointResult', ], ], 'DeleteVerifiedAccessGroup' => [ 'name' => 'DeleteVerifiedAccessGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVerifiedAccessGroupRequest', ], 'output' => [ 'shape' => 'DeleteVerifiedAccessGroupResult', ], ], 'DeleteVerifiedAccessInstance' => [ 'name' => 'DeleteVerifiedAccessInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVerifiedAccessInstanceRequest', ], 'output' => [ 'shape' => 'DeleteVerifiedAccessInstanceResult', ], ], 'DeleteVerifiedAccessTrustProvider' => [ 'name' => 'DeleteVerifiedAccessTrustProvider', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVerifiedAccessTrustProviderRequest', ], 'output' => [ 'shape' => 'DeleteVerifiedAccessTrustProviderResult', ], ], 'DeleteVolume' => [ 'name' => 'DeleteVolume', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVolumeRequest', ], ], 'DeleteVpc' => [ 'name' => 'DeleteVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpcRequest', ], ], 'DeleteVpcEndpointConnectionNotifications' => [ 'name' => 'DeleteVpcEndpointConnectionNotifications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpcEndpointConnectionNotificationsRequest', ], 'output' => [ 'shape' => 'DeleteVpcEndpointConnectionNotificationsResult', ], ], 'DeleteVpcEndpointServiceConfigurations' => [ 'name' => 'DeleteVpcEndpointServiceConfigurations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpcEndpointServiceConfigurationsRequest', ], 'output' => [ 'shape' => 'DeleteVpcEndpointServiceConfigurationsResult', ], ], 'DeleteVpcEndpoints' => [ 'name' => 'DeleteVpcEndpoints', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpcEndpointsRequest', ], 'output' => [ 'shape' => 'DeleteVpcEndpointsResult', ], ], 'DeleteVpcPeeringConnection' => [ 'name' => 'DeleteVpcPeeringConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpcPeeringConnectionRequest', ], 'output' => [ 'shape' => 'DeleteVpcPeeringConnectionResult', ], ], 'DeleteVpnConnection' => [ 'name' => 'DeleteVpnConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpnConnectionRequest', ], ], 'DeleteVpnConnectionRoute' => [ 'name' => 'DeleteVpnConnectionRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpnConnectionRouteRequest', ], ], 'DeleteVpnGateway' => [ 'name' => 'DeleteVpnGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpnGatewayRequest', ], ], 'DeprovisionByoipCidr' => [ 'name' => 'DeprovisionByoipCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeprovisionByoipCidrRequest', ], 'output' => [ 'shape' => 'DeprovisionByoipCidrResult', ], ], 'DeprovisionIpamByoasn' => [ 'name' => 'DeprovisionIpamByoasn', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeprovisionIpamByoasnRequest', ], 'output' => [ 'shape' => 'DeprovisionIpamByoasnResult', ], ], 'DeprovisionIpamPoolCidr' => [ 'name' => 'DeprovisionIpamPoolCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeprovisionIpamPoolCidrRequest', ], 'output' => [ 'shape' => 'DeprovisionIpamPoolCidrResult', ], ], 'DeprovisionPublicIpv4PoolCidr' => [ 'name' => 'DeprovisionPublicIpv4PoolCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeprovisionPublicIpv4PoolCidrRequest', ], 'output' => [ 'shape' => 'DeprovisionPublicIpv4PoolCidrResult', ], ], 'DeregisterImage' => [ 'name' => 'DeregisterImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeregisterImageRequest', ], ], 'DeregisterInstanceEventNotificationAttributes' => [ 'name' => 'DeregisterInstanceEventNotificationAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeregisterInstanceEventNotificationAttributesRequest', ], 'output' => [ 'shape' => 'DeregisterInstanceEventNotificationAttributesResult', ], ], 'DeregisterTransitGatewayMulticastGroupMembers' => [ 'name' => 'DeregisterTransitGatewayMulticastGroupMembers', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeregisterTransitGatewayMulticastGroupMembersRequest', ], 'output' => [ 'shape' => 'DeregisterTransitGatewayMulticastGroupMembersResult', ], ], 'DeregisterTransitGatewayMulticastGroupSources' => [ 'name' => 'DeregisterTransitGatewayMulticastGroupSources', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeregisterTransitGatewayMulticastGroupSourcesRequest', ], 'output' => [ 'shape' => 'DeregisterTransitGatewayMulticastGroupSourcesResult', ], ], 'DescribeAccountAttributes' => [ 'name' => 'DescribeAccountAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAccountAttributesRequest', ], 'output' => [ 'shape' => 'DescribeAccountAttributesResult', ], ], 'DescribeAddressTransfers' => [ 'name' => 'DescribeAddressTransfers', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAddressTransfersRequest', ], 'output' => [ 'shape' => 'DescribeAddressTransfersResult', ], ], 'DescribeAddresses' => [ 'name' => 'DescribeAddresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAddressesRequest', ], 'output' => [ 'shape' => 'DescribeAddressesResult', ], ], 'DescribeAddressesAttribute' => [ 'name' => 'DescribeAddressesAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAddressesAttributeRequest', ], 'output' => [ 'shape' => 'DescribeAddressesAttributeResult', ], ], 'DescribeAggregateIdFormat' => [ 'name' => 'DescribeAggregateIdFormat', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAggregateIdFormatRequest', ], 'output' => [ 'shape' => 'DescribeAggregateIdFormatResult', ], ], 'DescribeAvailabilityZones' => [ 'name' => 'DescribeAvailabilityZones', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAvailabilityZonesRequest', ], 'output' => [ 'shape' => 'DescribeAvailabilityZonesResult', ], ], 'DescribeAwsNetworkPerformanceMetricSubscriptions' => [ 'name' => 'DescribeAwsNetworkPerformanceMetricSubscriptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAwsNetworkPerformanceMetricSubscriptionsRequest', ], 'output' => [ 'shape' => 'DescribeAwsNetworkPerformanceMetricSubscriptionsResult', ], ], 'DescribeBundleTasks' => [ 'name' => 'DescribeBundleTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeBundleTasksRequest', ], 'output' => [ 'shape' => 'DescribeBundleTasksResult', ], ], 'DescribeByoipCidrs' => [ 'name' => 'DescribeByoipCidrs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeByoipCidrsRequest', ], 'output' => [ 'shape' => 'DescribeByoipCidrsResult', ], ], 'DescribeCapacityBlockOfferings' => [ 'name' => 'DescribeCapacityBlockOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCapacityBlockOfferingsRequest', ], 'output' => [ 'shape' => 'DescribeCapacityBlockOfferingsResult', ], ], 'DescribeCapacityReservationFleets' => [ 'name' => 'DescribeCapacityReservationFleets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCapacityReservationFleetsRequest', ], 'output' => [ 'shape' => 'DescribeCapacityReservationFleetsResult', ], ], 'DescribeCapacityReservations' => [ 'name' => 'DescribeCapacityReservations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCapacityReservationsRequest', ], 'output' => [ 'shape' => 'DescribeCapacityReservationsResult', ], ], 'DescribeCarrierGateways' => [ 'name' => 'DescribeCarrierGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCarrierGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeCarrierGatewaysResult', ], ], 'DescribeClassicLinkInstances' => [ 'name' => 'DescribeClassicLinkInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClassicLinkInstancesRequest', ], 'output' => [ 'shape' => 'DescribeClassicLinkInstancesResult', ], ], 'DescribeClientVpnAuthorizationRules' => [ 'name' => 'DescribeClientVpnAuthorizationRules', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClientVpnAuthorizationRulesRequest', ], 'output' => [ 'shape' => 'DescribeClientVpnAuthorizationRulesResult', ], ], 'DescribeClientVpnConnections' => [ 'name' => 'DescribeClientVpnConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClientVpnConnectionsRequest', ], 'output' => [ 'shape' => 'DescribeClientVpnConnectionsResult', ], ], 'DescribeClientVpnEndpoints' => [ 'name' => 'DescribeClientVpnEndpoints', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClientVpnEndpointsRequest', ], 'output' => [ 'shape' => 'DescribeClientVpnEndpointsResult', ], ], 'DescribeClientVpnRoutes' => [ 'name' => 'DescribeClientVpnRoutes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClientVpnRoutesRequest', ], 'output' => [ 'shape' => 'DescribeClientVpnRoutesResult', ], ], 'DescribeClientVpnTargetNetworks' => [ 'name' => 'DescribeClientVpnTargetNetworks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClientVpnTargetNetworksRequest', ], 'output' => [ 'shape' => 'DescribeClientVpnTargetNetworksResult', ], ], 'DescribeCoipPools' => [ 'name' => 'DescribeCoipPools', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCoipPoolsRequest', ], 'output' => [ 'shape' => 'DescribeCoipPoolsResult', ], ], 'DescribeConversionTasks' => [ 'name' => 'DescribeConversionTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConversionTasksRequest', ], 'output' => [ 'shape' => 'DescribeConversionTasksResult', ], ], 'DescribeCustomerGateways' => [ 'name' => 'DescribeCustomerGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCustomerGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeCustomerGatewaysResult', ], ], 'DescribeDhcpOptions' => [ 'name' => 'DescribeDhcpOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDhcpOptionsRequest', ], 'output' => [ 'shape' => 'DescribeDhcpOptionsResult', ], ], 'DescribeEgressOnlyInternetGateways' => [ 'name' => 'DescribeEgressOnlyInternetGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEgressOnlyInternetGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeEgressOnlyInternetGatewaysResult', ], ], 'DescribeElasticGpus' => [ 'name' => 'DescribeElasticGpus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeElasticGpusRequest', ], 'output' => [ 'shape' => 'DescribeElasticGpusResult', ], ], 'DescribeExportImageTasks' => [ 'name' => 'DescribeExportImageTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeExportImageTasksRequest', ], 'output' => [ 'shape' => 'DescribeExportImageTasksResult', ], ], 'DescribeExportTasks' => [ 'name' => 'DescribeExportTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeExportTasksRequest', ], 'output' => [ 'shape' => 'DescribeExportTasksResult', ], ], 'DescribeFastLaunchImages' => [ 'name' => 'DescribeFastLaunchImages', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFastLaunchImagesRequest', ], 'output' => [ 'shape' => 'DescribeFastLaunchImagesResult', ], ], 'DescribeFastSnapshotRestores' => [ 'name' => 'DescribeFastSnapshotRestores', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFastSnapshotRestoresRequest', ], 'output' => [ 'shape' => 'DescribeFastSnapshotRestoresResult', ], ], 'DescribeFleetHistory' => [ 'name' => 'DescribeFleetHistory', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFleetHistoryRequest', ], 'output' => [ 'shape' => 'DescribeFleetHistoryResult', ], ], 'DescribeFleetInstances' => [ 'name' => 'DescribeFleetInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFleetInstancesRequest', ], 'output' => [ 'shape' => 'DescribeFleetInstancesResult', ], ], 'DescribeFleets' => [ 'name' => 'DescribeFleets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFleetsRequest', ], 'output' => [ 'shape' => 'DescribeFleetsResult', ], ], 'DescribeFlowLogs' => [ 'name' => 'DescribeFlowLogs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFlowLogsRequest', ], 'output' => [ 'shape' => 'DescribeFlowLogsResult', ], ], 'DescribeFpgaImageAttribute' => [ 'name' => 'DescribeFpgaImageAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFpgaImageAttributeRequest', ], 'output' => [ 'shape' => 'DescribeFpgaImageAttributeResult', ], ], 'DescribeFpgaImages' => [ 'name' => 'DescribeFpgaImages', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFpgaImagesRequest', ], 'output' => [ 'shape' => 'DescribeFpgaImagesResult', ], ], 'DescribeHostReservationOfferings' => [ 'name' => 'DescribeHostReservationOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeHostReservationOfferingsRequest', ], 'output' => [ 'shape' => 'DescribeHostReservationOfferingsResult', ], ], 'DescribeHostReservations' => [ 'name' => 'DescribeHostReservations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeHostReservationsRequest', ], 'output' => [ 'shape' => 'DescribeHostReservationsResult', ], ], 'DescribeHosts' => [ 'name' => 'DescribeHosts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeHostsRequest', ], 'output' => [ 'shape' => 'DescribeHostsResult', ], ], 'DescribeIamInstanceProfileAssociations' => [ 'name' => 'DescribeIamInstanceProfileAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIamInstanceProfileAssociationsRequest', ], 'output' => [ 'shape' => 'DescribeIamInstanceProfileAssociationsResult', ], ], 'DescribeIdFormat' => [ 'name' => 'DescribeIdFormat', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIdFormatRequest', ], 'output' => [ 'shape' => 'DescribeIdFormatResult', ], ], 'DescribeIdentityIdFormat' => [ 'name' => 'DescribeIdentityIdFormat', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIdentityIdFormatRequest', ], 'output' => [ 'shape' => 'DescribeIdentityIdFormatResult', ], ], 'DescribeImageAttribute' => [ 'name' => 'DescribeImageAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeImageAttributeRequest', ], 'output' => [ 'shape' => 'ImageAttribute', ], ], 'DescribeImages' => [ 'name' => 'DescribeImages', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeImagesRequest', ], 'output' => [ 'shape' => 'DescribeImagesResult', ], ], 'DescribeImportImageTasks' => [ 'name' => 'DescribeImportImageTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeImportImageTasksRequest', ], 'output' => [ 'shape' => 'DescribeImportImageTasksResult', ], ], 'DescribeImportSnapshotTasks' => [ 'name' => 'DescribeImportSnapshotTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeImportSnapshotTasksRequest', ], 'output' => [ 'shape' => 'DescribeImportSnapshotTasksResult', ], ], 'DescribeInstanceAttribute' => [ 'name' => 'DescribeInstanceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceAttributeRequest', ], 'output' => [ 'shape' => 'InstanceAttribute', ], ], 'DescribeInstanceConnectEndpoints' => [ 'name' => 'DescribeInstanceConnectEndpoints', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceConnectEndpointsRequest', ], 'output' => [ 'shape' => 'DescribeInstanceConnectEndpointsResult', ], ], 'DescribeInstanceCreditSpecifications' => [ 'name' => 'DescribeInstanceCreditSpecifications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceCreditSpecificationsRequest', ], 'output' => [ 'shape' => 'DescribeInstanceCreditSpecificationsResult', ], ], 'DescribeInstanceEventNotificationAttributes' => [ 'name' => 'DescribeInstanceEventNotificationAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceEventNotificationAttributesRequest', ], 'output' => [ 'shape' => 'DescribeInstanceEventNotificationAttributesResult', ], ], 'DescribeInstanceEventWindows' => [ 'name' => 'DescribeInstanceEventWindows', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceEventWindowsRequest', ], 'output' => [ 'shape' => 'DescribeInstanceEventWindowsResult', ], ], 'DescribeInstanceStatus' => [ 'name' => 'DescribeInstanceStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceStatusRequest', ], 'output' => [ 'shape' => 'DescribeInstanceStatusResult', ], ], 'DescribeInstanceTopology' => [ 'name' => 'DescribeInstanceTopology', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceTopologyRequest', ], 'output' => [ 'shape' => 'DescribeInstanceTopologyResult', ], ], 'DescribeInstanceTypeOfferings' => [ 'name' => 'DescribeInstanceTypeOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceTypeOfferingsRequest', ], 'output' => [ 'shape' => 'DescribeInstanceTypeOfferingsResult', ], ], 'DescribeInstanceTypes' => [ 'name' => 'DescribeInstanceTypes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceTypesRequest', ], 'output' => [ 'shape' => 'DescribeInstanceTypesResult', ], ], 'DescribeInstances' => [ 'name' => 'DescribeInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstancesRequest', ], 'output' => [ 'shape' => 'DescribeInstancesResult', ], ], 'DescribeInternetGateways' => [ 'name' => 'DescribeInternetGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInternetGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeInternetGatewaysResult', ], ], 'DescribeIpamByoasn' => [ 'name' => 'DescribeIpamByoasn', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIpamByoasnRequest', ], 'output' => [ 'shape' => 'DescribeIpamByoasnResult', ], ], 'DescribeIpamPools' => [ 'name' => 'DescribeIpamPools', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIpamPoolsRequest', ], 'output' => [ 'shape' => 'DescribeIpamPoolsResult', ], ], 'DescribeIpamResourceDiscoveries' => [ 'name' => 'DescribeIpamResourceDiscoveries', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIpamResourceDiscoveriesRequest', ], 'output' => [ 'shape' => 'DescribeIpamResourceDiscoveriesResult', ], ], 'DescribeIpamResourceDiscoveryAssociations' => [ 'name' => 'DescribeIpamResourceDiscoveryAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIpamResourceDiscoveryAssociationsRequest', ], 'output' => [ 'shape' => 'DescribeIpamResourceDiscoveryAssociationsResult', ], ], 'DescribeIpamScopes' => [ 'name' => 'DescribeIpamScopes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIpamScopesRequest', ], 'output' => [ 'shape' => 'DescribeIpamScopesResult', ], ], 'DescribeIpams' => [ 'name' => 'DescribeIpams', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIpamsRequest', ], 'output' => [ 'shape' => 'DescribeIpamsResult', ], ], 'DescribeIpv6Pools' => [ 'name' => 'DescribeIpv6Pools', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIpv6PoolsRequest', ], 'output' => [ 'shape' => 'DescribeIpv6PoolsResult', ], ], 'DescribeKeyPairs' => [ 'name' => 'DescribeKeyPairs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeKeyPairsRequest', ], 'output' => [ 'shape' => 'DescribeKeyPairsResult', ], ], 'DescribeLaunchTemplateVersions' => [ 'name' => 'DescribeLaunchTemplateVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLaunchTemplateVersionsRequest', ], 'output' => [ 'shape' => 'DescribeLaunchTemplateVersionsResult', ], ], 'DescribeLaunchTemplates' => [ 'name' => 'DescribeLaunchTemplates', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLaunchTemplatesRequest', ], 'output' => [ 'shape' => 'DescribeLaunchTemplatesResult', ], ], 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations' => [ 'name' => 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest', ], 'output' => [ 'shape' => 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsResult', ], ], 'DescribeLocalGatewayRouteTableVpcAssociations' => [ 'name' => 'DescribeLocalGatewayRouteTableVpcAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLocalGatewayRouteTableVpcAssociationsRequest', ], 'output' => [ 'shape' => 'DescribeLocalGatewayRouteTableVpcAssociationsResult', ], ], 'DescribeLocalGatewayRouteTables' => [ 'name' => 'DescribeLocalGatewayRouteTables', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLocalGatewayRouteTablesRequest', ], 'output' => [ 'shape' => 'DescribeLocalGatewayRouteTablesResult', ], ], 'DescribeLocalGatewayVirtualInterfaceGroups' => [ 'name' => 'DescribeLocalGatewayVirtualInterfaceGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLocalGatewayVirtualInterfaceGroupsRequest', ], 'output' => [ 'shape' => 'DescribeLocalGatewayVirtualInterfaceGroupsResult', ], ], 'DescribeLocalGatewayVirtualInterfaces' => [ 'name' => 'DescribeLocalGatewayVirtualInterfaces', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLocalGatewayVirtualInterfacesRequest', ], 'output' => [ 'shape' => 'DescribeLocalGatewayVirtualInterfacesResult', ], ], 'DescribeLocalGateways' => [ 'name' => 'DescribeLocalGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLocalGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeLocalGatewaysResult', ], ], 'DescribeLockedSnapshots' => [ 'name' => 'DescribeLockedSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLockedSnapshotsRequest', ], 'output' => [ 'shape' => 'DescribeLockedSnapshotsResult', ], ], 'DescribeManagedPrefixLists' => [ 'name' => 'DescribeManagedPrefixLists', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeManagedPrefixListsRequest', ], 'output' => [ 'shape' => 'DescribeManagedPrefixListsResult', ], ], 'DescribeMovingAddresses' => [ 'name' => 'DescribeMovingAddresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeMovingAddressesRequest', ], 'output' => [ 'shape' => 'DescribeMovingAddressesResult', ], ], 'DescribeNatGateways' => [ 'name' => 'DescribeNatGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNatGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeNatGatewaysResult', ], ], 'DescribeNetworkAcls' => [ 'name' => 'DescribeNetworkAcls', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkAclsRequest', ], 'output' => [ 'shape' => 'DescribeNetworkAclsResult', ], ], 'DescribeNetworkInsightsAccessScopeAnalyses' => [ 'name' => 'DescribeNetworkInsightsAccessScopeAnalyses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkInsightsAccessScopeAnalysesRequest', ], 'output' => [ 'shape' => 'DescribeNetworkInsightsAccessScopeAnalysesResult', ], ], 'DescribeNetworkInsightsAccessScopes' => [ 'name' => 'DescribeNetworkInsightsAccessScopes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkInsightsAccessScopesRequest', ], 'output' => [ 'shape' => 'DescribeNetworkInsightsAccessScopesResult', ], ], 'DescribeNetworkInsightsAnalyses' => [ 'name' => 'DescribeNetworkInsightsAnalyses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkInsightsAnalysesRequest', ], 'output' => [ 'shape' => 'DescribeNetworkInsightsAnalysesResult', ], ], 'DescribeNetworkInsightsPaths' => [ 'name' => 'DescribeNetworkInsightsPaths', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkInsightsPathsRequest', ], 'output' => [ 'shape' => 'DescribeNetworkInsightsPathsResult', ], ], 'DescribeNetworkInterfaceAttribute' => [ 'name' => 'DescribeNetworkInterfaceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkInterfaceAttributeRequest', ], 'output' => [ 'shape' => 'DescribeNetworkInterfaceAttributeResult', ], ], 'DescribeNetworkInterfacePermissions' => [ 'name' => 'DescribeNetworkInterfacePermissions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkInterfacePermissionsRequest', ], 'output' => [ 'shape' => 'DescribeNetworkInterfacePermissionsResult', ], ], 'DescribeNetworkInterfaces' => [ 'name' => 'DescribeNetworkInterfaces', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkInterfacesRequest', ], 'output' => [ 'shape' => 'DescribeNetworkInterfacesResult', ], ], 'DescribePlacementGroups' => [ 'name' => 'DescribePlacementGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribePlacementGroupsRequest', ], 'output' => [ 'shape' => 'DescribePlacementGroupsResult', ], ], 'DescribePrefixLists' => [ 'name' => 'DescribePrefixLists', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribePrefixListsRequest', ], 'output' => [ 'shape' => 'DescribePrefixListsResult', ], ], 'DescribePrincipalIdFormat' => [ 'name' => 'DescribePrincipalIdFormat', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribePrincipalIdFormatRequest', ], 'output' => [ 'shape' => 'DescribePrincipalIdFormatResult', ], ], 'DescribePublicIpv4Pools' => [ 'name' => 'DescribePublicIpv4Pools', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribePublicIpv4PoolsRequest', ], 'output' => [ 'shape' => 'DescribePublicIpv4PoolsResult', ], ], 'DescribeRegions' => [ 'name' => 'DescribeRegions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeRegionsRequest', ], 'output' => [ 'shape' => 'DescribeRegionsResult', ], ], 'DescribeReplaceRootVolumeTasks' => [ 'name' => 'DescribeReplaceRootVolumeTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReplaceRootVolumeTasksRequest', ], 'output' => [ 'shape' => 'DescribeReplaceRootVolumeTasksResult', ], ], 'DescribeReservedInstances' => [ 'name' => 'DescribeReservedInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedInstancesRequest', ], 'output' => [ 'shape' => 'DescribeReservedInstancesResult', ], ], 'DescribeReservedInstancesListings' => [ 'name' => 'DescribeReservedInstancesListings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedInstancesListingsRequest', ], 'output' => [ 'shape' => 'DescribeReservedInstancesListingsResult', ], ], 'DescribeReservedInstancesModifications' => [ 'name' => 'DescribeReservedInstancesModifications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedInstancesModificationsRequest', ], 'output' => [ 'shape' => 'DescribeReservedInstancesModificationsResult', ], ], 'DescribeReservedInstancesOfferings' => [ 'name' => 'DescribeReservedInstancesOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedInstancesOfferingsRequest', ], 'output' => [ 'shape' => 'DescribeReservedInstancesOfferingsResult', ], ], 'DescribeRouteTables' => [ 'name' => 'DescribeRouteTables', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeRouteTablesRequest', ], 'output' => [ 'shape' => 'DescribeRouteTablesResult', ], ], 'DescribeScheduledInstanceAvailability' => [ 'name' => 'DescribeScheduledInstanceAvailability', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeScheduledInstanceAvailabilityRequest', ], 'output' => [ 'shape' => 'DescribeScheduledInstanceAvailabilityResult', ], ], 'DescribeScheduledInstances' => [ 'name' => 'DescribeScheduledInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeScheduledInstancesRequest', ], 'output' => [ 'shape' => 'DescribeScheduledInstancesResult', ], ], 'DescribeSecurityGroupReferences' => [ 'name' => 'DescribeSecurityGroupReferences', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSecurityGroupReferencesRequest', ], 'output' => [ 'shape' => 'DescribeSecurityGroupReferencesResult', ], ], 'DescribeSecurityGroupRules' => [ 'name' => 'DescribeSecurityGroupRules', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSecurityGroupRulesRequest', ], 'output' => [ 'shape' => 'DescribeSecurityGroupRulesResult', ], ], 'DescribeSecurityGroups' => [ 'name' => 'DescribeSecurityGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSecurityGroupsRequest', ], 'output' => [ 'shape' => 'DescribeSecurityGroupsResult', ], ], 'DescribeSnapshotAttribute' => [ 'name' => 'DescribeSnapshotAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSnapshotAttributeRequest', ], 'output' => [ 'shape' => 'DescribeSnapshotAttributeResult', ], ], 'DescribeSnapshotTierStatus' => [ 'name' => 'DescribeSnapshotTierStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSnapshotTierStatusRequest', ], 'output' => [ 'shape' => 'DescribeSnapshotTierStatusResult', ], ], 'DescribeSnapshots' => [ 'name' => 'DescribeSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSnapshotsRequest', ], 'output' => [ 'shape' => 'DescribeSnapshotsResult', ], ], 'DescribeSpotDatafeedSubscription' => [ 'name' => 'DescribeSpotDatafeedSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotDatafeedSubscriptionRequest', ], 'output' => [ 'shape' => 'DescribeSpotDatafeedSubscriptionResult', ], ], 'DescribeSpotFleetInstances' => [ 'name' => 'DescribeSpotFleetInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotFleetInstancesRequest', ], 'output' => [ 'shape' => 'DescribeSpotFleetInstancesResponse', ], ], 'DescribeSpotFleetRequestHistory' => [ 'name' => 'DescribeSpotFleetRequestHistory', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotFleetRequestHistoryRequest', ], 'output' => [ 'shape' => 'DescribeSpotFleetRequestHistoryResponse', ], ], 'DescribeSpotFleetRequests' => [ 'name' => 'DescribeSpotFleetRequests', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotFleetRequestsRequest', ], 'output' => [ 'shape' => 'DescribeSpotFleetRequestsResponse', ], ], 'DescribeSpotInstanceRequests' => [ 'name' => 'DescribeSpotInstanceRequests', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotInstanceRequestsRequest', ], 'output' => [ 'shape' => 'DescribeSpotInstanceRequestsResult', ], ], 'DescribeSpotPriceHistory' => [ 'name' => 'DescribeSpotPriceHistory', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotPriceHistoryRequest', ], 'output' => [ 'shape' => 'DescribeSpotPriceHistoryResult', ], ], 'DescribeStaleSecurityGroups' => [ 'name' => 'DescribeStaleSecurityGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeStaleSecurityGroupsRequest', ], 'output' => [ 'shape' => 'DescribeStaleSecurityGroupsResult', ], ], 'DescribeStoreImageTasks' => [ 'name' => 'DescribeStoreImageTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeStoreImageTasksRequest', ], 'output' => [ 'shape' => 'DescribeStoreImageTasksResult', ], ], 'DescribeSubnets' => [ 'name' => 'DescribeSubnets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSubnetsRequest', ], 'output' => [ 'shape' => 'DescribeSubnetsResult', ], ], 'DescribeTags' => [ 'name' => 'DescribeTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTagsRequest', ], 'output' => [ 'shape' => 'DescribeTagsResult', ], ], 'DescribeTrafficMirrorFilters' => [ 'name' => 'DescribeTrafficMirrorFilters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTrafficMirrorFiltersRequest', ], 'output' => [ 'shape' => 'DescribeTrafficMirrorFiltersResult', ], ], 'DescribeTrafficMirrorSessions' => [ 'name' => 'DescribeTrafficMirrorSessions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTrafficMirrorSessionsRequest', ], 'output' => [ 'shape' => 'DescribeTrafficMirrorSessionsResult', ], ], 'DescribeTrafficMirrorTargets' => [ 'name' => 'DescribeTrafficMirrorTargets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTrafficMirrorTargetsRequest', ], 'output' => [ 'shape' => 'DescribeTrafficMirrorTargetsResult', ], ], 'DescribeTransitGatewayAttachments' => [ 'name' => 'DescribeTransitGatewayAttachments', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayAttachmentsRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayAttachmentsResult', ], ], 'DescribeTransitGatewayConnectPeers' => [ 'name' => 'DescribeTransitGatewayConnectPeers', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayConnectPeersRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayConnectPeersResult', ], ], 'DescribeTransitGatewayConnects' => [ 'name' => 'DescribeTransitGatewayConnects', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayConnectsRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayConnectsResult', ], ], 'DescribeTransitGatewayMulticastDomains' => [ 'name' => 'DescribeTransitGatewayMulticastDomains', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayMulticastDomainsRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayMulticastDomainsResult', ], ], 'DescribeTransitGatewayPeeringAttachments' => [ 'name' => 'DescribeTransitGatewayPeeringAttachments', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayPeeringAttachmentsRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayPeeringAttachmentsResult', ], ], 'DescribeTransitGatewayPolicyTables' => [ 'name' => 'DescribeTransitGatewayPolicyTables', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayPolicyTablesRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayPolicyTablesResult', ], ], 'DescribeTransitGatewayRouteTableAnnouncements' => [ 'name' => 'DescribeTransitGatewayRouteTableAnnouncements', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayRouteTableAnnouncementsRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayRouteTableAnnouncementsResult', ], ], 'DescribeTransitGatewayRouteTables' => [ 'name' => 'DescribeTransitGatewayRouteTables', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayRouteTablesRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayRouteTablesResult', ], ], 'DescribeTransitGatewayVpcAttachments' => [ 'name' => 'DescribeTransitGatewayVpcAttachments', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayVpcAttachmentsRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayVpcAttachmentsResult', ], ], 'DescribeTransitGateways' => [ 'name' => 'DescribeTransitGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewaysResult', ], ], 'DescribeTrunkInterfaceAssociations' => [ 'name' => 'DescribeTrunkInterfaceAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTrunkInterfaceAssociationsRequest', ], 'output' => [ 'shape' => 'DescribeTrunkInterfaceAssociationsResult', ], ], 'DescribeVerifiedAccessEndpoints' => [ 'name' => 'DescribeVerifiedAccessEndpoints', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVerifiedAccessEndpointsRequest', ], 'output' => [ 'shape' => 'DescribeVerifiedAccessEndpointsResult', ], ], 'DescribeVerifiedAccessGroups' => [ 'name' => 'DescribeVerifiedAccessGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVerifiedAccessGroupsRequest', ], 'output' => [ 'shape' => 'DescribeVerifiedAccessGroupsResult', ], ], 'DescribeVerifiedAccessInstanceLoggingConfigurations' => [ 'name' => 'DescribeVerifiedAccessInstanceLoggingConfigurations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVerifiedAccessInstanceLoggingConfigurationsRequest', ], 'output' => [ 'shape' => 'DescribeVerifiedAccessInstanceLoggingConfigurationsResult', ], ], 'DescribeVerifiedAccessInstances' => [ 'name' => 'DescribeVerifiedAccessInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVerifiedAccessInstancesRequest', ], 'output' => [ 'shape' => 'DescribeVerifiedAccessInstancesResult', ], ], 'DescribeVerifiedAccessTrustProviders' => [ 'name' => 'DescribeVerifiedAccessTrustProviders', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVerifiedAccessTrustProvidersRequest', ], 'output' => [ 'shape' => 'DescribeVerifiedAccessTrustProvidersResult', ], ], 'DescribeVolumeAttribute' => [ 'name' => 'DescribeVolumeAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVolumeAttributeRequest', ], 'output' => [ 'shape' => 'DescribeVolumeAttributeResult', ], ], 'DescribeVolumeStatus' => [ 'name' => 'DescribeVolumeStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVolumeStatusRequest', ], 'output' => [ 'shape' => 'DescribeVolumeStatusResult', ], ], 'DescribeVolumes' => [ 'name' => 'DescribeVolumes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVolumesRequest', ], 'output' => [ 'shape' => 'DescribeVolumesResult', ], ], 'DescribeVolumesModifications' => [ 'name' => 'DescribeVolumesModifications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVolumesModificationsRequest', ], 'output' => [ 'shape' => 'DescribeVolumesModificationsResult', ], ], 'DescribeVpcAttribute' => [ 'name' => 'DescribeVpcAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcAttributeRequest', ], 'output' => [ 'shape' => 'DescribeVpcAttributeResult', ], ], 'DescribeVpcClassicLink' => [ 'name' => 'DescribeVpcClassicLink', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcClassicLinkRequest', ], 'output' => [ 'shape' => 'DescribeVpcClassicLinkResult', ], ], 'DescribeVpcClassicLinkDnsSupport' => [ 'name' => 'DescribeVpcClassicLinkDnsSupport', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcClassicLinkDnsSupportRequest', ], 'output' => [ 'shape' => 'DescribeVpcClassicLinkDnsSupportResult', ], ], 'DescribeVpcEndpointConnectionNotifications' => [ 'name' => 'DescribeVpcEndpointConnectionNotifications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcEndpointConnectionNotificationsRequest', ], 'output' => [ 'shape' => 'DescribeVpcEndpointConnectionNotificationsResult', ], ], 'DescribeVpcEndpointConnections' => [ 'name' => 'DescribeVpcEndpointConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcEndpointConnectionsRequest', ], 'output' => [ 'shape' => 'DescribeVpcEndpointConnectionsResult', ], ], 'DescribeVpcEndpointServiceConfigurations' => [ 'name' => 'DescribeVpcEndpointServiceConfigurations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcEndpointServiceConfigurationsRequest', ], 'output' => [ 'shape' => 'DescribeVpcEndpointServiceConfigurationsResult', ], ], 'DescribeVpcEndpointServicePermissions' => [ 'name' => 'DescribeVpcEndpointServicePermissions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcEndpointServicePermissionsRequest', ], 'output' => [ 'shape' => 'DescribeVpcEndpointServicePermissionsResult', ], ], 'DescribeVpcEndpointServices' => [ 'name' => 'DescribeVpcEndpointServices', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcEndpointServicesRequest', ], 'output' => [ 'shape' => 'DescribeVpcEndpointServicesResult', ], ], 'DescribeVpcEndpoints' => [ 'name' => 'DescribeVpcEndpoints', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcEndpointsRequest', ], 'output' => [ 'shape' => 'DescribeVpcEndpointsResult', ], ], 'DescribeVpcPeeringConnections' => [ 'name' => 'DescribeVpcPeeringConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcPeeringConnectionsRequest', ], 'output' => [ 'shape' => 'DescribeVpcPeeringConnectionsResult', ], ], 'DescribeVpcs' => [ 'name' => 'DescribeVpcs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcsRequest', ], 'output' => [ 'shape' => 'DescribeVpcsResult', ], ], 'DescribeVpnConnections' => [ 'name' => 'DescribeVpnConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpnConnectionsRequest', ], 'output' => [ 'shape' => 'DescribeVpnConnectionsResult', ], ], 'DescribeVpnGateways' => [ 'name' => 'DescribeVpnGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpnGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeVpnGatewaysResult', ], ], 'DetachClassicLinkVpc' => [ 'name' => 'DetachClassicLinkVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DetachClassicLinkVpcRequest', ], 'output' => [ 'shape' => 'DetachClassicLinkVpcResult', ], ], 'DetachInternetGateway' => [ 'name' => 'DetachInternetGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DetachInternetGatewayRequest', ], ], 'DetachNetworkInterface' => [ 'name' => 'DetachNetworkInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DetachNetworkInterfaceRequest', ], ], 'DetachVerifiedAccessTrustProvider' => [ 'name' => 'DetachVerifiedAccessTrustProvider', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DetachVerifiedAccessTrustProviderRequest', ], 'output' => [ 'shape' => 'DetachVerifiedAccessTrustProviderResult', ], ], 'DetachVolume' => [ 'name' => 'DetachVolume', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DetachVolumeRequest', ], 'output' => [ 'shape' => 'VolumeAttachment', ], ], 'DetachVpnGateway' => [ 'name' => 'DetachVpnGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DetachVpnGatewayRequest', ], ], 'DisableAddressTransfer' => [ 'name' => 'DisableAddressTransfer', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableAddressTransferRequest', ], 'output' => [ 'shape' => 'DisableAddressTransferResult', ], ], 'DisableAwsNetworkPerformanceMetricSubscription' => [ 'name' => 'DisableAwsNetworkPerformanceMetricSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableAwsNetworkPerformanceMetricSubscriptionRequest', ], 'output' => [ 'shape' => 'DisableAwsNetworkPerformanceMetricSubscriptionResult', ], ], 'DisableEbsEncryptionByDefault' => [ 'name' => 'DisableEbsEncryptionByDefault', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableEbsEncryptionByDefaultRequest', ], 'output' => [ 'shape' => 'DisableEbsEncryptionByDefaultResult', ], ], 'DisableFastLaunch' => [ 'name' => 'DisableFastLaunch', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableFastLaunchRequest', ], 'output' => [ 'shape' => 'DisableFastLaunchResult', ], ], 'DisableFastSnapshotRestores' => [ 'name' => 'DisableFastSnapshotRestores', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableFastSnapshotRestoresRequest', ], 'output' => [ 'shape' => 'DisableFastSnapshotRestoresResult', ], ], 'DisableImage' => [ 'name' => 'DisableImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableImageRequest', ], 'output' => [ 'shape' => 'DisableImageResult', ], ], 'DisableImageBlockPublicAccess' => [ 'name' => 'DisableImageBlockPublicAccess', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableImageBlockPublicAccessRequest', ], 'output' => [ 'shape' => 'DisableImageBlockPublicAccessResult', ], ], 'DisableImageDeprecation' => [ 'name' => 'DisableImageDeprecation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableImageDeprecationRequest', ], 'output' => [ 'shape' => 'DisableImageDeprecationResult', ], ], 'DisableIpamOrganizationAdminAccount' => [ 'name' => 'DisableIpamOrganizationAdminAccount', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableIpamOrganizationAdminAccountRequest', ], 'output' => [ 'shape' => 'DisableIpamOrganizationAdminAccountResult', ], ], 'DisableSerialConsoleAccess' => [ 'name' => 'DisableSerialConsoleAccess', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableSerialConsoleAccessRequest', ], 'output' => [ 'shape' => 'DisableSerialConsoleAccessResult', ], ], 'DisableSnapshotBlockPublicAccess' => [ 'name' => 'DisableSnapshotBlockPublicAccess', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableSnapshotBlockPublicAccessRequest', ], 'output' => [ 'shape' => 'DisableSnapshotBlockPublicAccessResult', ], ], 'DisableTransitGatewayRouteTablePropagation' => [ 'name' => 'DisableTransitGatewayRouteTablePropagation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableTransitGatewayRouteTablePropagationRequest', ], 'output' => [ 'shape' => 'DisableTransitGatewayRouteTablePropagationResult', ], ], 'DisableVgwRoutePropagation' => [ 'name' => 'DisableVgwRoutePropagation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableVgwRoutePropagationRequest', ], ], 'DisableVpcClassicLink' => [ 'name' => 'DisableVpcClassicLink', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableVpcClassicLinkRequest', ], 'output' => [ 'shape' => 'DisableVpcClassicLinkResult', ], ], 'DisableVpcClassicLinkDnsSupport' => [ 'name' => 'DisableVpcClassicLinkDnsSupport', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableVpcClassicLinkDnsSupportRequest', ], 'output' => [ 'shape' => 'DisableVpcClassicLinkDnsSupportResult', ], ], 'DisassociateAddress' => [ 'name' => 'DisassociateAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateAddressRequest', ], ], 'DisassociateClientVpnTargetNetwork' => [ 'name' => 'DisassociateClientVpnTargetNetwork', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateClientVpnTargetNetworkRequest', ], 'output' => [ 'shape' => 'DisassociateClientVpnTargetNetworkResult', ], ], 'DisassociateEnclaveCertificateIamRole' => [ 'name' => 'DisassociateEnclaveCertificateIamRole', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateEnclaveCertificateIamRoleRequest', ], 'output' => [ 'shape' => 'DisassociateEnclaveCertificateIamRoleResult', ], ], 'DisassociateIamInstanceProfile' => [ 'name' => 'DisassociateIamInstanceProfile', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateIamInstanceProfileRequest', ], 'output' => [ 'shape' => 'DisassociateIamInstanceProfileResult', ], ], 'DisassociateInstanceEventWindow' => [ 'name' => 'DisassociateInstanceEventWindow', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateInstanceEventWindowRequest', ], 'output' => [ 'shape' => 'DisassociateInstanceEventWindowResult', ], ], 'DisassociateIpamByoasn' => [ 'name' => 'DisassociateIpamByoasn', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateIpamByoasnRequest', ], 'output' => [ 'shape' => 'DisassociateIpamByoasnResult', ], ], 'DisassociateIpamResourceDiscovery' => [ 'name' => 'DisassociateIpamResourceDiscovery', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateIpamResourceDiscoveryRequest', ], 'output' => [ 'shape' => 'DisassociateIpamResourceDiscoveryResult', ], ], 'DisassociateNatGatewayAddress' => [ 'name' => 'DisassociateNatGatewayAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateNatGatewayAddressRequest', ], 'output' => [ 'shape' => 'DisassociateNatGatewayAddressResult', ], ], 'DisassociateRouteTable' => [ 'name' => 'DisassociateRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateRouteTableRequest', ], ], 'DisassociateSubnetCidrBlock' => [ 'name' => 'DisassociateSubnetCidrBlock', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateSubnetCidrBlockRequest', ], 'output' => [ 'shape' => 'DisassociateSubnetCidrBlockResult', ], ], 'DisassociateTransitGatewayMulticastDomain' => [ 'name' => 'DisassociateTransitGatewayMulticastDomain', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateTransitGatewayMulticastDomainRequest', ], 'output' => [ 'shape' => 'DisassociateTransitGatewayMulticastDomainResult', ], ], 'DisassociateTransitGatewayPolicyTable' => [ 'name' => 'DisassociateTransitGatewayPolicyTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateTransitGatewayPolicyTableRequest', ], 'output' => [ 'shape' => 'DisassociateTransitGatewayPolicyTableResult', ], ], 'DisassociateTransitGatewayRouteTable' => [ 'name' => 'DisassociateTransitGatewayRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateTransitGatewayRouteTableRequest', ], 'output' => [ 'shape' => 'DisassociateTransitGatewayRouteTableResult', ], ], 'DisassociateTrunkInterface' => [ 'name' => 'DisassociateTrunkInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateTrunkInterfaceRequest', ], 'output' => [ 'shape' => 'DisassociateTrunkInterfaceResult', ], ], 'DisassociateVpcCidrBlock' => [ 'name' => 'DisassociateVpcCidrBlock', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateVpcCidrBlockRequest', ], 'output' => [ 'shape' => 'DisassociateVpcCidrBlockResult', ], ], 'EnableAddressTransfer' => [ 'name' => 'EnableAddressTransfer', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableAddressTransferRequest', ], 'output' => [ 'shape' => 'EnableAddressTransferResult', ], ], 'EnableAwsNetworkPerformanceMetricSubscription' => [ 'name' => 'EnableAwsNetworkPerformanceMetricSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableAwsNetworkPerformanceMetricSubscriptionRequest', ], 'output' => [ 'shape' => 'EnableAwsNetworkPerformanceMetricSubscriptionResult', ], ], 'EnableEbsEncryptionByDefault' => [ 'name' => 'EnableEbsEncryptionByDefault', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableEbsEncryptionByDefaultRequest', ], 'output' => [ 'shape' => 'EnableEbsEncryptionByDefaultResult', ], ], 'EnableFastLaunch' => [ 'name' => 'EnableFastLaunch', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableFastLaunchRequest', ], 'output' => [ 'shape' => 'EnableFastLaunchResult', ], ], 'EnableFastSnapshotRestores' => [ 'name' => 'EnableFastSnapshotRestores', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableFastSnapshotRestoresRequest', ], 'output' => [ 'shape' => 'EnableFastSnapshotRestoresResult', ], ], 'EnableImage' => [ 'name' => 'EnableImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableImageRequest', ], 'output' => [ 'shape' => 'EnableImageResult', ], ], 'EnableImageBlockPublicAccess' => [ 'name' => 'EnableImageBlockPublicAccess', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableImageBlockPublicAccessRequest', ], 'output' => [ 'shape' => 'EnableImageBlockPublicAccessResult', ], ], 'EnableImageDeprecation' => [ 'name' => 'EnableImageDeprecation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableImageDeprecationRequest', ], 'output' => [ 'shape' => 'EnableImageDeprecationResult', ], ], 'EnableIpamOrganizationAdminAccount' => [ 'name' => 'EnableIpamOrganizationAdminAccount', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableIpamOrganizationAdminAccountRequest', ], 'output' => [ 'shape' => 'EnableIpamOrganizationAdminAccountResult', ], ], 'EnableReachabilityAnalyzerOrganizationSharing' => [ 'name' => 'EnableReachabilityAnalyzerOrganizationSharing', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableReachabilityAnalyzerOrganizationSharingRequest', ], 'output' => [ 'shape' => 'EnableReachabilityAnalyzerOrganizationSharingResult', ], ], 'EnableSerialConsoleAccess' => [ 'name' => 'EnableSerialConsoleAccess', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableSerialConsoleAccessRequest', ], 'output' => [ 'shape' => 'EnableSerialConsoleAccessResult', ], ], 'EnableSnapshotBlockPublicAccess' => [ 'name' => 'EnableSnapshotBlockPublicAccess', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableSnapshotBlockPublicAccessRequest', ], 'output' => [ 'shape' => 'EnableSnapshotBlockPublicAccessResult', ], ], 'EnableTransitGatewayRouteTablePropagation' => [ 'name' => 'EnableTransitGatewayRouteTablePropagation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableTransitGatewayRouteTablePropagationRequest', ], 'output' => [ 'shape' => 'EnableTransitGatewayRouteTablePropagationResult', ], ], 'EnableVgwRoutePropagation' => [ 'name' => 'EnableVgwRoutePropagation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableVgwRoutePropagationRequest', ], ], 'EnableVolumeIO' => [ 'name' => 'EnableVolumeIO', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableVolumeIORequest', ], ], 'EnableVpcClassicLink' => [ 'name' => 'EnableVpcClassicLink', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableVpcClassicLinkRequest', ], 'output' => [ 'shape' => 'EnableVpcClassicLinkResult', ], ], 'EnableVpcClassicLinkDnsSupport' => [ 'name' => 'EnableVpcClassicLinkDnsSupport', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableVpcClassicLinkDnsSupportRequest', ], 'output' => [ 'shape' => 'EnableVpcClassicLinkDnsSupportResult', ], ], 'ExportClientVpnClientCertificateRevocationList' => [ 'name' => 'ExportClientVpnClientCertificateRevocationList', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ExportClientVpnClientCertificateRevocationListRequest', ], 'output' => [ 'shape' => 'ExportClientVpnClientCertificateRevocationListResult', ], ], 'ExportClientVpnClientConfiguration' => [ 'name' => 'ExportClientVpnClientConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ExportClientVpnClientConfigurationRequest', ], 'output' => [ 'shape' => 'ExportClientVpnClientConfigurationResult', ], ], 'ExportImage' => [ 'name' => 'ExportImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ExportImageRequest', ], 'output' => [ 'shape' => 'ExportImageResult', ], ], 'ExportTransitGatewayRoutes' => [ 'name' => 'ExportTransitGatewayRoutes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ExportTransitGatewayRoutesRequest', ], 'output' => [ 'shape' => 'ExportTransitGatewayRoutesResult', ], ], 'GetAssociatedEnclaveCertificateIamRoles' => [ 'name' => 'GetAssociatedEnclaveCertificateIamRoles', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetAssociatedEnclaveCertificateIamRolesRequest', ], 'output' => [ 'shape' => 'GetAssociatedEnclaveCertificateIamRolesResult', ], ], 'GetAssociatedIpv6PoolCidrs' => [ 'name' => 'GetAssociatedIpv6PoolCidrs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetAssociatedIpv6PoolCidrsRequest', ], 'output' => [ 'shape' => 'GetAssociatedIpv6PoolCidrsResult', ], ], 'GetAwsNetworkPerformanceData' => [ 'name' => 'GetAwsNetworkPerformanceData', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetAwsNetworkPerformanceDataRequest', ], 'output' => [ 'shape' => 'GetAwsNetworkPerformanceDataResult', ], ], 'GetCapacityReservationUsage' => [ 'name' => 'GetCapacityReservationUsage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetCapacityReservationUsageRequest', ], 'output' => [ 'shape' => 'GetCapacityReservationUsageResult', ], ], 'GetCoipPoolUsage' => [ 'name' => 'GetCoipPoolUsage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetCoipPoolUsageRequest', ], 'output' => [ 'shape' => 'GetCoipPoolUsageResult', ], ], 'GetConsoleOutput' => [ 'name' => 'GetConsoleOutput', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetConsoleOutputRequest', ], 'output' => [ 'shape' => 'GetConsoleOutputResult', ], ], 'GetConsoleScreenshot' => [ 'name' => 'GetConsoleScreenshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetConsoleScreenshotRequest', ], 'output' => [ 'shape' => 'GetConsoleScreenshotResult', ], ], 'GetDefaultCreditSpecification' => [ 'name' => 'GetDefaultCreditSpecification', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDefaultCreditSpecificationRequest', ], 'output' => [ 'shape' => 'GetDefaultCreditSpecificationResult', ], ], 'GetEbsDefaultKmsKeyId' => [ 'name' => 'GetEbsDefaultKmsKeyId', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetEbsDefaultKmsKeyIdRequest', ], 'output' => [ 'shape' => 'GetEbsDefaultKmsKeyIdResult', ], ], 'GetEbsEncryptionByDefault' => [ 'name' => 'GetEbsEncryptionByDefault', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetEbsEncryptionByDefaultRequest', ], 'output' => [ 'shape' => 'GetEbsEncryptionByDefaultResult', ], ], 'GetFlowLogsIntegrationTemplate' => [ 'name' => 'GetFlowLogsIntegrationTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetFlowLogsIntegrationTemplateRequest', ], 'output' => [ 'shape' => 'GetFlowLogsIntegrationTemplateResult', ], ], 'GetGroupsForCapacityReservation' => [ 'name' => 'GetGroupsForCapacityReservation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetGroupsForCapacityReservationRequest', ], 'output' => [ 'shape' => 'GetGroupsForCapacityReservationResult', ], ], 'GetHostReservationPurchasePreview' => [ 'name' => 'GetHostReservationPurchasePreview', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetHostReservationPurchasePreviewRequest', ], 'output' => [ 'shape' => 'GetHostReservationPurchasePreviewResult', ], ], 'GetImageBlockPublicAccessState' => [ 'name' => 'GetImageBlockPublicAccessState', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetImageBlockPublicAccessStateRequest', ], 'output' => [ 'shape' => 'GetImageBlockPublicAccessStateResult', ], ], 'GetInstanceTypesFromInstanceRequirements' => [ 'name' => 'GetInstanceTypesFromInstanceRequirements', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetInstanceTypesFromInstanceRequirementsRequest', ], 'output' => [ 'shape' => 'GetInstanceTypesFromInstanceRequirementsResult', ], ], 'GetInstanceUefiData' => [ 'name' => 'GetInstanceUefiData', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetInstanceUefiDataRequest', ], 'output' => [ 'shape' => 'GetInstanceUefiDataResult', ], ], 'GetIpamAddressHistory' => [ 'name' => 'GetIpamAddressHistory', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIpamAddressHistoryRequest', ], 'output' => [ 'shape' => 'GetIpamAddressHistoryResult', ], ], 'GetIpamDiscoveredAccounts' => [ 'name' => 'GetIpamDiscoveredAccounts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIpamDiscoveredAccountsRequest', ], 'output' => [ 'shape' => 'GetIpamDiscoveredAccountsResult', ], ], 'GetIpamDiscoveredPublicAddresses' => [ 'name' => 'GetIpamDiscoveredPublicAddresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIpamDiscoveredPublicAddressesRequest', ], 'output' => [ 'shape' => 'GetIpamDiscoveredPublicAddressesResult', ], ], 'GetIpamDiscoveredResourceCidrs' => [ 'name' => 'GetIpamDiscoveredResourceCidrs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIpamDiscoveredResourceCidrsRequest', ], 'output' => [ 'shape' => 'GetIpamDiscoveredResourceCidrsResult', ], ], 'GetIpamPoolAllocations' => [ 'name' => 'GetIpamPoolAllocations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIpamPoolAllocationsRequest', ], 'output' => [ 'shape' => 'GetIpamPoolAllocationsResult', ], ], 'GetIpamPoolCidrs' => [ 'name' => 'GetIpamPoolCidrs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIpamPoolCidrsRequest', ], 'output' => [ 'shape' => 'GetIpamPoolCidrsResult', ], ], 'GetIpamResourceCidrs' => [ 'name' => 'GetIpamResourceCidrs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIpamResourceCidrsRequest', ], 'output' => [ 'shape' => 'GetIpamResourceCidrsResult', ], ], 'GetLaunchTemplateData' => [ 'name' => 'GetLaunchTemplateData', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetLaunchTemplateDataRequest', ], 'output' => [ 'shape' => 'GetLaunchTemplateDataResult', ], ], 'GetManagedPrefixListAssociations' => [ 'name' => 'GetManagedPrefixListAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetManagedPrefixListAssociationsRequest', ], 'output' => [ 'shape' => 'GetManagedPrefixListAssociationsResult', ], ], 'GetManagedPrefixListEntries' => [ 'name' => 'GetManagedPrefixListEntries', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetManagedPrefixListEntriesRequest', ], 'output' => [ 'shape' => 'GetManagedPrefixListEntriesResult', ], ], 'GetNetworkInsightsAccessScopeAnalysisFindings' => [ 'name' => 'GetNetworkInsightsAccessScopeAnalysisFindings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetNetworkInsightsAccessScopeAnalysisFindingsRequest', ], 'output' => [ 'shape' => 'GetNetworkInsightsAccessScopeAnalysisFindingsResult', ], ], 'GetNetworkInsightsAccessScopeContent' => [ 'name' => 'GetNetworkInsightsAccessScopeContent', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetNetworkInsightsAccessScopeContentRequest', ], 'output' => [ 'shape' => 'GetNetworkInsightsAccessScopeContentResult', ], ], 'GetPasswordData' => [ 'name' => 'GetPasswordData', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetPasswordDataRequest', ], 'output' => [ 'shape' => 'GetPasswordDataResult', ], ], 'GetReservedInstancesExchangeQuote' => [ 'name' => 'GetReservedInstancesExchangeQuote', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetReservedInstancesExchangeQuoteRequest', ], 'output' => [ 'shape' => 'GetReservedInstancesExchangeQuoteResult', ], ], 'GetSecurityGroupsForVpc' => [ 'name' => 'GetSecurityGroupsForVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSecurityGroupsForVpcRequest', ], 'output' => [ 'shape' => 'GetSecurityGroupsForVpcResult', ], ], 'GetSerialConsoleAccessStatus' => [ 'name' => 'GetSerialConsoleAccessStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSerialConsoleAccessStatusRequest', ], 'output' => [ 'shape' => 'GetSerialConsoleAccessStatusResult', ], ], 'GetSnapshotBlockPublicAccessState' => [ 'name' => 'GetSnapshotBlockPublicAccessState', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSnapshotBlockPublicAccessStateRequest', ], 'output' => [ 'shape' => 'GetSnapshotBlockPublicAccessStateResult', ], ], 'GetSpotPlacementScores' => [ 'name' => 'GetSpotPlacementScores', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSpotPlacementScoresRequest', ], 'output' => [ 'shape' => 'GetSpotPlacementScoresResult', ], ], 'GetSubnetCidrReservations' => [ 'name' => 'GetSubnetCidrReservations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSubnetCidrReservationsRequest', ], 'output' => [ 'shape' => 'GetSubnetCidrReservationsResult', ], ], 'GetTransitGatewayAttachmentPropagations' => [ 'name' => 'GetTransitGatewayAttachmentPropagations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTransitGatewayAttachmentPropagationsRequest', ], 'output' => [ 'shape' => 'GetTransitGatewayAttachmentPropagationsResult', ], ], 'GetTransitGatewayMulticastDomainAssociations' => [ 'name' => 'GetTransitGatewayMulticastDomainAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTransitGatewayMulticastDomainAssociationsRequest', ], 'output' => [ 'shape' => 'GetTransitGatewayMulticastDomainAssociationsResult', ], ], 'GetTransitGatewayPolicyTableAssociations' => [ 'name' => 'GetTransitGatewayPolicyTableAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTransitGatewayPolicyTableAssociationsRequest', ], 'output' => [ 'shape' => 'GetTransitGatewayPolicyTableAssociationsResult', ], ], 'GetTransitGatewayPolicyTableEntries' => [ 'name' => 'GetTransitGatewayPolicyTableEntries', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTransitGatewayPolicyTableEntriesRequest', ], 'output' => [ 'shape' => 'GetTransitGatewayPolicyTableEntriesResult', ], ], 'GetTransitGatewayPrefixListReferences' => [ 'name' => 'GetTransitGatewayPrefixListReferences', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTransitGatewayPrefixListReferencesRequest', ], 'output' => [ 'shape' => 'GetTransitGatewayPrefixListReferencesResult', ], ], 'GetTransitGatewayRouteTableAssociations' => [ 'name' => 'GetTransitGatewayRouteTableAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTransitGatewayRouteTableAssociationsRequest', ], 'output' => [ 'shape' => 'GetTransitGatewayRouteTableAssociationsResult', ], ], 'GetTransitGatewayRouteTablePropagations' => [ 'name' => 'GetTransitGatewayRouteTablePropagations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTransitGatewayRouteTablePropagationsRequest', ], 'output' => [ 'shape' => 'GetTransitGatewayRouteTablePropagationsResult', ], ], 'GetVerifiedAccessEndpointPolicy' => [ 'name' => 'GetVerifiedAccessEndpointPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetVerifiedAccessEndpointPolicyRequest', ], 'output' => [ 'shape' => 'GetVerifiedAccessEndpointPolicyResult', ], ], 'GetVerifiedAccessGroupPolicy' => [ 'name' => 'GetVerifiedAccessGroupPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetVerifiedAccessGroupPolicyRequest', ], 'output' => [ 'shape' => 'GetVerifiedAccessGroupPolicyResult', ], ], 'GetVpnConnectionDeviceSampleConfiguration' => [ 'name' => 'GetVpnConnectionDeviceSampleConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetVpnConnectionDeviceSampleConfigurationRequest', ], 'output' => [ 'shape' => 'GetVpnConnectionDeviceSampleConfigurationResult', ], ], 'GetVpnConnectionDeviceTypes' => [ 'name' => 'GetVpnConnectionDeviceTypes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetVpnConnectionDeviceTypesRequest', ], 'output' => [ 'shape' => 'GetVpnConnectionDeviceTypesResult', ], ], 'GetVpnTunnelReplacementStatus' => [ 'name' => 'GetVpnTunnelReplacementStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetVpnTunnelReplacementStatusRequest', ], 'output' => [ 'shape' => 'GetVpnTunnelReplacementStatusResult', ], ], 'ImportClientVpnClientCertificateRevocationList' => [ 'name' => 'ImportClientVpnClientCertificateRevocationList', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportClientVpnClientCertificateRevocationListRequest', ], 'output' => [ 'shape' => 'ImportClientVpnClientCertificateRevocationListResult', ], ], 'ImportImage' => [ 'name' => 'ImportImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportImageRequest', ], 'output' => [ 'shape' => 'ImportImageResult', ], ], 'ImportInstance' => [ 'name' => 'ImportInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportInstanceRequest', ], 'output' => [ 'shape' => 'ImportInstanceResult', ], ], 'ImportKeyPair' => [ 'name' => 'ImportKeyPair', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportKeyPairRequest', ], 'output' => [ 'shape' => 'ImportKeyPairResult', ], ], 'ImportSnapshot' => [ 'name' => 'ImportSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportSnapshotRequest', ], 'output' => [ 'shape' => 'ImportSnapshotResult', ], ], 'ImportVolume' => [ 'name' => 'ImportVolume', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportVolumeRequest', ], 'output' => [ 'shape' => 'ImportVolumeResult', ], ], 'ListImagesInRecycleBin' => [ 'name' => 'ListImagesInRecycleBin', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListImagesInRecycleBinRequest', ], 'output' => [ 'shape' => 'ListImagesInRecycleBinResult', ], ], 'ListSnapshotsInRecycleBin' => [ 'name' => 'ListSnapshotsInRecycleBin', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListSnapshotsInRecycleBinRequest', ], 'output' => [ 'shape' => 'ListSnapshotsInRecycleBinResult', ], ], 'LockSnapshot' => [ 'name' => 'LockSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'LockSnapshotRequest', ], 'output' => [ 'shape' => 'LockSnapshotResult', ], ], 'ModifyAddressAttribute' => [ 'name' => 'ModifyAddressAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyAddressAttributeRequest', ], 'output' => [ 'shape' => 'ModifyAddressAttributeResult', ], ], 'ModifyAvailabilityZoneGroup' => [ 'name' => 'ModifyAvailabilityZoneGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyAvailabilityZoneGroupRequest', ], 'output' => [ 'shape' => 'ModifyAvailabilityZoneGroupResult', ], ], 'ModifyCapacityReservation' => [ 'name' => 'ModifyCapacityReservation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyCapacityReservationRequest', ], 'output' => [ 'shape' => 'ModifyCapacityReservationResult', ], ], 'ModifyCapacityReservationFleet' => [ 'name' => 'ModifyCapacityReservationFleet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyCapacityReservationFleetRequest', ], 'output' => [ 'shape' => 'ModifyCapacityReservationFleetResult', ], ], 'ModifyClientVpnEndpoint' => [ 'name' => 'ModifyClientVpnEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyClientVpnEndpointRequest', ], 'output' => [ 'shape' => 'ModifyClientVpnEndpointResult', ], ], 'ModifyDefaultCreditSpecification' => [ 'name' => 'ModifyDefaultCreditSpecification', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDefaultCreditSpecificationRequest', ], 'output' => [ 'shape' => 'ModifyDefaultCreditSpecificationResult', ], ], 'ModifyEbsDefaultKmsKeyId' => [ 'name' => 'ModifyEbsDefaultKmsKeyId', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyEbsDefaultKmsKeyIdRequest', ], 'output' => [ 'shape' => 'ModifyEbsDefaultKmsKeyIdResult', ], ], 'ModifyFleet' => [ 'name' => 'ModifyFleet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyFleetRequest', ], 'output' => [ 'shape' => 'ModifyFleetResult', ], ], 'ModifyFpgaImageAttribute' => [ 'name' => 'ModifyFpgaImageAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyFpgaImageAttributeRequest', ], 'output' => [ 'shape' => 'ModifyFpgaImageAttributeResult', ], ], 'ModifyHosts' => [ 'name' => 'ModifyHosts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyHostsRequest', ], 'output' => [ 'shape' => 'ModifyHostsResult', ], ], 'ModifyIdFormat' => [ 'name' => 'ModifyIdFormat', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyIdFormatRequest', ], ], 'ModifyIdentityIdFormat' => [ 'name' => 'ModifyIdentityIdFormat', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyIdentityIdFormatRequest', ], ], 'ModifyImageAttribute' => [ 'name' => 'ModifyImageAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyImageAttributeRequest', ], ], 'ModifyInstanceAttribute' => [ 'name' => 'ModifyInstanceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstanceAttributeRequest', ], ], 'ModifyInstanceCapacityReservationAttributes' => [ 'name' => 'ModifyInstanceCapacityReservationAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstanceCapacityReservationAttributesRequest', ], 'output' => [ 'shape' => 'ModifyInstanceCapacityReservationAttributesResult', ], ], 'ModifyInstanceCreditSpecification' => [ 'name' => 'ModifyInstanceCreditSpecification', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstanceCreditSpecificationRequest', ], 'output' => [ 'shape' => 'ModifyInstanceCreditSpecificationResult', ], ], 'ModifyInstanceEventStartTime' => [ 'name' => 'ModifyInstanceEventStartTime', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstanceEventStartTimeRequest', ], 'output' => [ 'shape' => 'ModifyInstanceEventStartTimeResult', ], ], 'ModifyInstanceEventWindow' => [ 'name' => 'ModifyInstanceEventWindow', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstanceEventWindowRequest', ], 'output' => [ 'shape' => 'ModifyInstanceEventWindowResult', ], ], 'ModifyInstanceMaintenanceOptions' => [ 'name' => 'ModifyInstanceMaintenanceOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstanceMaintenanceOptionsRequest', ], 'output' => [ 'shape' => 'ModifyInstanceMaintenanceOptionsResult', ], ], 'ModifyInstanceMetadataOptions' => [ 'name' => 'ModifyInstanceMetadataOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstanceMetadataOptionsRequest', ], 'output' => [ 'shape' => 'ModifyInstanceMetadataOptionsResult', ], ], 'ModifyInstancePlacement' => [ 'name' => 'ModifyInstancePlacement', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstancePlacementRequest', ], 'output' => [ 'shape' => 'ModifyInstancePlacementResult', ], ], 'ModifyIpam' => [ 'name' => 'ModifyIpam', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyIpamRequest', ], 'output' => [ 'shape' => 'ModifyIpamResult', ], ], 'ModifyIpamPool' => [ 'name' => 'ModifyIpamPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyIpamPoolRequest', ], 'output' => [ 'shape' => 'ModifyIpamPoolResult', ], ], 'ModifyIpamResourceCidr' => [ 'name' => 'ModifyIpamResourceCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyIpamResourceCidrRequest', ], 'output' => [ 'shape' => 'ModifyIpamResourceCidrResult', ], ], 'ModifyIpamResourceDiscovery' => [ 'name' => 'ModifyIpamResourceDiscovery', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyIpamResourceDiscoveryRequest', ], 'output' => [ 'shape' => 'ModifyIpamResourceDiscoveryResult', ], ], 'ModifyIpamScope' => [ 'name' => 'ModifyIpamScope', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyIpamScopeRequest', ], 'output' => [ 'shape' => 'ModifyIpamScopeResult', ], ], 'ModifyLaunchTemplate' => [ 'name' => 'ModifyLaunchTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyLaunchTemplateRequest', ], 'output' => [ 'shape' => 'ModifyLaunchTemplateResult', ], ], 'ModifyLocalGatewayRoute' => [ 'name' => 'ModifyLocalGatewayRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyLocalGatewayRouteRequest', ], 'output' => [ 'shape' => 'ModifyLocalGatewayRouteResult', ], ], 'ModifyManagedPrefixList' => [ 'name' => 'ModifyManagedPrefixList', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyManagedPrefixListRequest', ], 'output' => [ 'shape' => 'ModifyManagedPrefixListResult', ], ], 'ModifyNetworkInterfaceAttribute' => [ 'name' => 'ModifyNetworkInterfaceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyNetworkInterfaceAttributeRequest', ], ], 'ModifyPrivateDnsNameOptions' => [ 'name' => 'ModifyPrivateDnsNameOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyPrivateDnsNameOptionsRequest', ], 'output' => [ 'shape' => 'ModifyPrivateDnsNameOptionsResult', ], ], 'ModifyReservedInstances' => [ 'name' => 'ModifyReservedInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyReservedInstancesRequest', ], 'output' => [ 'shape' => 'ModifyReservedInstancesResult', ], ], 'ModifySecurityGroupRules' => [ 'name' => 'ModifySecurityGroupRules', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifySecurityGroupRulesRequest', ], 'output' => [ 'shape' => 'ModifySecurityGroupRulesResult', ], ], 'ModifySnapshotAttribute' => [ 'name' => 'ModifySnapshotAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifySnapshotAttributeRequest', ], ], 'ModifySnapshotTier' => [ 'name' => 'ModifySnapshotTier', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifySnapshotTierRequest', ], 'output' => [ 'shape' => 'ModifySnapshotTierResult', ], ], 'ModifySpotFleetRequest' => [ 'name' => 'ModifySpotFleetRequest', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifySpotFleetRequestRequest', ], 'output' => [ 'shape' => 'ModifySpotFleetRequestResponse', ], ], 'ModifySubnetAttribute' => [ 'name' => 'ModifySubnetAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifySubnetAttributeRequest', ], ], 'ModifyTrafficMirrorFilterNetworkServices' => [ 'name' => 'ModifyTrafficMirrorFilterNetworkServices', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyTrafficMirrorFilterNetworkServicesRequest', ], 'output' => [ 'shape' => 'ModifyTrafficMirrorFilterNetworkServicesResult', ], ], 'ModifyTrafficMirrorFilterRule' => [ 'name' => 'ModifyTrafficMirrorFilterRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyTrafficMirrorFilterRuleRequest', ], 'output' => [ 'shape' => 'ModifyTrafficMirrorFilterRuleResult', ], ], 'ModifyTrafficMirrorSession' => [ 'name' => 'ModifyTrafficMirrorSession', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyTrafficMirrorSessionRequest', ], 'output' => [ 'shape' => 'ModifyTrafficMirrorSessionResult', ], ], 'ModifyTransitGateway' => [ 'name' => 'ModifyTransitGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyTransitGatewayRequest', ], 'output' => [ 'shape' => 'ModifyTransitGatewayResult', ], ], 'ModifyTransitGatewayPrefixListReference' => [ 'name' => 'ModifyTransitGatewayPrefixListReference', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyTransitGatewayPrefixListReferenceRequest', ], 'output' => [ 'shape' => 'ModifyTransitGatewayPrefixListReferenceResult', ], ], 'ModifyTransitGatewayVpcAttachment' => [ 'name' => 'ModifyTransitGatewayVpcAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyTransitGatewayVpcAttachmentRequest', ], 'output' => [ 'shape' => 'ModifyTransitGatewayVpcAttachmentResult', ], ], 'ModifyVerifiedAccessEndpoint' => [ 'name' => 'ModifyVerifiedAccessEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVerifiedAccessEndpointRequest', ], 'output' => [ 'shape' => 'ModifyVerifiedAccessEndpointResult', ], ], 'ModifyVerifiedAccessEndpointPolicy' => [ 'name' => 'ModifyVerifiedAccessEndpointPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVerifiedAccessEndpointPolicyRequest', ], 'output' => [ 'shape' => 'ModifyVerifiedAccessEndpointPolicyResult', ], ], 'ModifyVerifiedAccessGroup' => [ 'name' => 'ModifyVerifiedAccessGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVerifiedAccessGroupRequest', ], 'output' => [ 'shape' => 'ModifyVerifiedAccessGroupResult', ], ], 'ModifyVerifiedAccessGroupPolicy' => [ 'name' => 'ModifyVerifiedAccessGroupPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVerifiedAccessGroupPolicyRequest', ], 'output' => [ 'shape' => 'ModifyVerifiedAccessGroupPolicyResult', ], ], 'ModifyVerifiedAccessInstance' => [ 'name' => 'ModifyVerifiedAccessInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVerifiedAccessInstanceRequest', ], 'output' => [ 'shape' => 'ModifyVerifiedAccessInstanceResult', ], ], 'ModifyVerifiedAccessInstanceLoggingConfiguration' => [ 'name' => 'ModifyVerifiedAccessInstanceLoggingConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVerifiedAccessInstanceLoggingConfigurationRequest', ], 'output' => [ 'shape' => 'ModifyVerifiedAccessInstanceLoggingConfigurationResult', ], ], 'ModifyVerifiedAccessTrustProvider' => [ 'name' => 'ModifyVerifiedAccessTrustProvider', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVerifiedAccessTrustProviderRequest', ], 'output' => [ 'shape' => 'ModifyVerifiedAccessTrustProviderResult', ], ], 'ModifyVolume' => [ 'name' => 'ModifyVolume', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVolumeRequest', ], 'output' => [ 'shape' => 'ModifyVolumeResult', ], ], 'ModifyVolumeAttribute' => [ 'name' => 'ModifyVolumeAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVolumeAttributeRequest', ], ], 'ModifyVpcAttribute' => [ 'name' => 'ModifyVpcAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcAttributeRequest', ], ], 'ModifyVpcEndpoint' => [ 'name' => 'ModifyVpcEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcEndpointRequest', ], 'output' => [ 'shape' => 'ModifyVpcEndpointResult', ], ], 'ModifyVpcEndpointConnectionNotification' => [ 'name' => 'ModifyVpcEndpointConnectionNotification', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcEndpointConnectionNotificationRequest', ], 'output' => [ 'shape' => 'ModifyVpcEndpointConnectionNotificationResult', ], ], 'ModifyVpcEndpointServiceConfiguration' => [ 'name' => 'ModifyVpcEndpointServiceConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcEndpointServiceConfigurationRequest', ], 'output' => [ 'shape' => 'ModifyVpcEndpointServiceConfigurationResult', ], ], 'ModifyVpcEndpointServicePayerResponsibility' => [ 'name' => 'ModifyVpcEndpointServicePayerResponsibility', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcEndpointServicePayerResponsibilityRequest', ], 'output' => [ 'shape' => 'ModifyVpcEndpointServicePayerResponsibilityResult', ], ], 'ModifyVpcEndpointServicePermissions' => [ 'name' => 'ModifyVpcEndpointServicePermissions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcEndpointServicePermissionsRequest', ], 'output' => [ 'shape' => 'ModifyVpcEndpointServicePermissionsResult', ], ], 'ModifyVpcPeeringConnectionOptions' => [ 'name' => 'ModifyVpcPeeringConnectionOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcPeeringConnectionOptionsRequest', ], 'output' => [ 'shape' => 'ModifyVpcPeeringConnectionOptionsResult', ], ], 'ModifyVpcTenancy' => [ 'name' => 'ModifyVpcTenancy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcTenancyRequest', ], 'output' => [ 'shape' => 'ModifyVpcTenancyResult', ], ], 'ModifyVpnConnection' => [ 'name' => 'ModifyVpnConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpnConnectionRequest', ], 'output' => [ 'shape' => 'ModifyVpnConnectionResult', ], ], 'ModifyVpnConnectionOptions' => [ 'name' => 'ModifyVpnConnectionOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpnConnectionOptionsRequest', ], 'output' => [ 'shape' => 'ModifyVpnConnectionOptionsResult', ], ], 'ModifyVpnTunnelCertificate' => [ 'name' => 'ModifyVpnTunnelCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpnTunnelCertificateRequest', ], 'output' => [ 'shape' => 'ModifyVpnTunnelCertificateResult', ], ], 'ModifyVpnTunnelOptions' => [ 'name' => 'ModifyVpnTunnelOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpnTunnelOptionsRequest', ], 'output' => [ 'shape' => 'ModifyVpnTunnelOptionsResult', ], ], 'MonitorInstances' => [ 'name' => 'MonitorInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'MonitorInstancesRequest', ], 'output' => [ 'shape' => 'MonitorInstancesResult', ], ], 'MoveAddressToVpc' => [ 'name' => 'MoveAddressToVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'MoveAddressToVpcRequest', ], 'output' => [ 'shape' => 'MoveAddressToVpcResult', ], ], 'MoveByoipCidrToIpam' => [ 'name' => 'MoveByoipCidrToIpam', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'MoveByoipCidrToIpamRequest', ], 'output' => [ 'shape' => 'MoveByoipCidrToIpamResult', ], ], 'ProvisionByoipCidr' => [ 'name' => 'ProvisionByoipCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ProvisionByoipCidrRequest', ], 'output' => [ 'shape' => 'ProvisionByoipCidrResult', ], ], 'ProvisionIpamByoasn' => [ 'name' => 'ProvisionIpamByoasn', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ProvisionIpamByoasnRequest', ], 'output' => [ 'shape' => 'ProvisionIpamByoasnResult', ], ], 'ProvisionIpamPoolCidr' => [ 'name' => 'ProvisionIpamPoolCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ProvisionIpamPoolCidrRequest', ], 'output' => [ 'shape' => 'ProvisionIpamPoolCidrResult', ], ], 'ProvisionPublicIpv4PoolCidr' => [ 'name' => 'ProvisionPublicIpv4PoolCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ProvisionPublicIpv4PoolCidrRequest', ], 'output' => [ 'shape' => 'ProvisionPublicIpv4PoolCidrResult', ], ], 'PurchaseCapacityBlock' => [ 'name' => 'PurchaseCapacityBlock', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseCapacityBlockRequest', ], 'output' => [ 'shape' => 'PurchaseCapacityBlockResult', ], ], 'PurchaseHostReservation' => [ 'name' => 'PurchaseHostReservation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseHostReservationRequest', ], 'output' => [ 'shape' => 'PurchaseHostReservationResult', ], ], 'PurchaseReservedInstancesOffering' => [ 'name' => 'PurchaseReservedInstancesOffering', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseReservedInstancesOfferingRequest', ], 'output' => [ 'shape' => 'PurchaseReservedInstancesOfferingResult', ], ], 'PurchaseScheduledInstances' => [ 'name' => 'PurchaseScheduledInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseScheduledInstancesRequest', ], 'output' => [ 'shape' => 'PurchaseScheduledInstancesResult', ], ], 'RebootInstances' => [ 'name' => 'RebootInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RebootInstancesRequest', ], ], 'RegisterImage' => [ 'name' => 'RegisterImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RegisterImageRequest', ], 'output' => [ 'shape' => 'RegisterImageResult', ], ], 'RegisterInstanceEventNotificationAttributes' => [ 'name' => 'RegisterInstanceEventNotificationAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RegisterInstanceEventNotificationAttributesRequest', ], 'output' => [ 'shape' => 'RegisterInstanceEventNotificationAttributesResult', ], ], 'RegisterTransitGatewayMulticastGroupMembers' => [ 'name' => 'RegisterTransitGatewayMulticastGroupMembers', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RegisterTransitGatewayMulticastGroupMembersRequest', ], 'output' => [ 'shape' => 'RegisterTransitGatewayMulticastGroupMembersResult', ], ], 'RegisterTransitGatewayMulticastGroupSources' => [ 'name' => 'RegisterTransitGatewayMulticastGroupSources', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RegisterTransitGatewayMulticastGroupSourcesRequest', ], 'output' => [ 'shape' => 'RegisterTransitGatewayMulticastGroupSourcesResult', ], ], 'RejectTransitGatewayMulticastDomainAssociations' => [ 'name' => 'RejectTransitGatewayMulticastDomainAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RejectTransitGatewayMulticastDomainAssociationsRequest', ], 'output' => [ 'shape' => 'RejectTransitGatewayMulticastDomainAssociationsResult', ], ], 'RejectTransitGatewayPeeringAttachment' => [ 'name' => 'RejectTransitGatewayPeeringAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RejectTransitGatewayPeeringAttachmentRequest', ], 'output' => [ 'shape' => 'RejectTransitGatewayPeeringAttachmentResult', ], ], 'RejectTransitGatewayVpcAttachment' => [ 'name' => 'RejectTransitGatewayVpcAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RejectTransitGatewayVpcAttachmentRequest', ], 'output' => [ 'shape' => 'RejectTransitGatewayVpcAttachmentResult', ], ], 'RejectVpcEndpointConnections' => [ 'name' => 'RejectVpcEndpointConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RejectVpcEndpointConnectionsRequest', ], 'output' => [ 'shape' => 'RejectVpcEndpointConnectionsResult', ], ], 'RejectVpcPeeringConnection' => [ 'name' => 'RejectVpcPeeringConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RejectVpcPeeringConnectionRequest', ], 'output' => [ 'shape' => 'RejectVpcPeeringConnectionResult', ], ], 'ReleaseAddress' => [ 'name' => 'ReleaseAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReleaseAddressRequest', ], ], 'ReleaseHosts' => [ 'name' => 'ReleaseHosts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReleaseHostsRequest', ], 'output' => [ 'shape' => 'ReleaseHostsResult', ], ], 'ReleaseIpamPoolAllocation' => [ 'name' => 'ReleaseIpamPoolAllocation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReleaseIpamPoolAllocationRequest', ], 'output' => [ 'shape' => 'ReleaseIpamPoolAllocationResult', ], ], 'ReplaceIamInstanceProfileAssociation' => [ 'name' => 'ReplaceIamInstanceProfileAssociation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceIamInstanceProfileAssociationRequest', ], 'output' => [ 'shape' => 'ReplaceIamInstanceProfileAssociationResult', ], ], 'ReplaceNetworkAclAssociation' => [ 'name' => 'ReplaceNetworkAclAssociation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceNetworkAclAssociationRequest', ], 'output' => [ 'shape' => 'ReplaceNetworkAclAssociationResult', ], ], 'ReplaceNetworkAclEntry' => [ 'name' => 'ReplaceNetworkAclEntry', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceNetworkAclEntryRequest', ], ], 'ReplaceRoute' => [ 'name' => 'ReplaceRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceRouteRequest', ], ], 'ReplaceRouteTableAssociation' => [ 'name' => 'ReplaceRouteTableAssociation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceRouteTableAssociationRequest', ], 'output' => [ 'shape' => 'ReplaceRouteTableAssociationResult', ], ], 'ReplaceTransitGatewayRoute' => [ 'name' => 'ReplaceTransitGatewayRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceTransitGatewayRouteRequest', ], 'output' => [ 'shape' => 'ReplaceTransitGatewayRouteResult', ], ], 'ReplaceVpnTunnel' => [ 'name' => 'ReplaceVpnTunnel', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceVpnTunnelRequest', ], 'output' => [ 'shape' => 'ReplaceVpnTunnelResult', ], ], 'ReportInstanceStatus' => [ 'name' => 'ReportInstanceStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReportInstanceStatusRequest', ], ], 'RequestSpotFleet' => [ 'name' => 'RequestSpotFleet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RequestSpotFleetRequest', ], 'output' => [ 'shape' => 'RequestSpotFleetResponse', ], ], 'RequestSpotInstances' => [ 'name' => 'RequestSpotInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RequestSpotInstancesRequest', ], 'output' => [ 'shape' => 'RequestSpotInstancesResult', ], ], 'ResetAddressAttribute' => [ 'name' => 'ResetAddressAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetAddressAttributeRequest', ], 'output' => [ 'shape' => 'ResetAddressAttributeResult', ], ], 'ResetEbsDefaultKmsKeyId' => [ 'name' => 'ResetEbsDefaultKmsKeyId', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetEbsDefaultKmsKeyIdRequest', ], 'output' => [ 'shape' => 'ResetEbsDefaultKmsKeyIdResult', ], ], 'ResetFpgaImageAttribute' => [ 'name' => 'ResetFpgaImageAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetFpgaImageAttributeRequest', ], 'output' => [ 'shape' => 'ResetFpgaImageAttributeResult', ], ], 'ResetImageAttribute' => [ 'name' => 'ResetImageAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetImageAttributeRequest', ], ], 'ResetInstanceAttribute' => [ 'name' => 'ResetInstanceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetInstanceAttributeRequest', ], ], 'ResetNetworkInterfaceAttribute' => [ 'name' => 'ResetNetworkInterfaceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetNetworkInterfaceAttributeRequest', ], ], 'ResetSnapshotAttribute' => [ 'name' => 'ResetSnapshotAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetSnapshotAttributeRequest', ], ], 'RestoreAddressToClassic' => [ 'name' => 'RestoreAddressToClassic', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreAddressToClassicRequest', ], 'output' => [ 'shape' => 'RestoreAddressToClassicResult', ], ], 'RestoreImageFromRecycleBin' => [ 'name' => 'RestoreImageFromRecycleBin', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreImageFromRecycleBinRequest', ], 'output' => [ 'shape' => 'RestoreImageFromRecycleBinResult', ], ], 'RestoreManagedPrefixListVersion' => [ 'name' => 'RestoreManagedPrefixListVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreManagedPrefixListVersionRequest', ], 'output' => [ 'shape' => 'RestoreManagedPrefixListVersionResult', ], ], 'RestoreSnapshotFromRecycleBin' => [ 'name' => 'RestoreSnapshotFromRecycleBin', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreSnapshotFromRecycleBinRequest', ], 'output' => [ 'shape' => 'RestoreSnapshotFromRecycleBinResult', ], ], 'RestoreSnapshotTier' => [ 'name' => 'RestoreSnapshotTier', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreSnapshotTierRequest', ], 'output' => [ 'shape' => 'RestoreSnapshotTierResult', ], ], 'RevokeClientVpnIngress' => [ 'name' => 'RevokeClientVpnIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeClientVpnIngressRequest', ], 'output' => [ 'shape' => 'RevokeClientVpnIngressResult', ], ], 'RevokeSecurityGroupEgress' => [ 'name' => 'RevokeSecurityGroupEgress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeSecurityGroupEgressRequest', ], 'output' => [ 'shape' => 'RevokeSecurityGroupEgressResult', ], ], 'RevokeSecurityGroupIngress' => [ 'name' => 'RevokeSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeSecurityGroupIngressRequest', ], 'output' => [ 'shape' => 'RevokeSecurityGroupIngressResult', ], ], 'RunInstances' => [ 'name' => 'RunInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RunInstancesRequest', ], 'output' => [ 'shape' => 'Reservation', ], ], 'RunScheduledInstances' => [ 'name' => 'RunScheduledInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RunScheduledInstancesRequest', ], 'output' => [ 'shape' => 'RunScheduledInstancesResult', ], ], 'SearchLocalGatewayRoutes' => [ 'name' => 'SearchLocalGatewayRoutes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SearchLocalGatewayRoutesRequest', ], 'output' => [ 'shape' => 'SearchLocalGatewayRoutesResult', ], ], 'SearchTransitGatewayMulticastGroups' => [ 'name' => 'SearchTransitGatewayMulticastGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SearchTransitGatewayMulticastGroupsRequest', ], 'output' => [ 'shape' => 'SearchTransitGatewayMulticastGroupsResult', ], ], 'SearchTransitGatewayRoutes' => [ 'name' => 'SearchTransitGatewayRoutes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SearchTransitGatewayRoutesRequest', ], 'output' => [ 'shape' => 'SearchTransitGatewayRoutesResult', ], ], 'SendDiagnosticInterrupt' => [ 'name' => 'SendDiagnosticInterrupt', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SendDiagnosticInterruptRequest', ], ], 'StartInstances' => [ 'name' => 'StartInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartInstancesRequest', ], 'output' => [ 'shape' => 'StartInstancesResult', ], ], 'StartNetworkInsightsAccessScopeAnalysis' => [ 'name' => 'StartNetworkInsightsAccessScopeAnalysis', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartNetworkInsightsAccessScopeAnalysisRequest', ], 'output' => [ 'shape' => 'StartNetworkInsightsAccessScopeAnalysisResult', ], ], 'StartNetworkInsightsAnalysis' => [ 'name' => 'StartNetworkInsightsAnalysis', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartNetworkInsightsAnalysisRequest', ], 'output' => [ 'shape' => 'StartNetworkInsightsAnalysisResult', ], ], 'StartVpcEndpointServicePrivateDnsVerification' => [ 'name' => 'StartVpcEndpointServicePrivateDnsVerification', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartVpcEndpointServicePrivateDnsVerificationRequest', ], 'output' => [ 'shape' => 'StartVpcEndpointServicePrivateDnsVerificationResult', ], ], 'StopInstances' => [ 'name' => 'StopInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StopInstancesRequest', ], 'output' => [ 'shape' => 'StopInstancesResult', ], ], 'TerminateClientVpnConnections' => [ 'name' => 'TerminateClientVpnConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'TerminateClientVpnConnectionsRequest', ], 'output' => [ 'shape' => 'TerminateClientVpnConnectionsResult', ], ], 'TerminateInstances' => [ 'name' => 'TerminateInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'TerminateInstancesRequest', ], 'output' => [ 'shape' => 'TerminateInstancesResult', ], ], 'UnassignIpv6Addresses' => [ 'name' => 'UnassignIpv6Addresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UnassignIpv6AddressesRequest', ], 'output' => [ 'shape' => 'UnassignIpv6AddressesResult', ], ], 'UnassignPrivateIpAddresses' => [ 'name' => 'UnassignPrivateIpAddresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UnassignPrivateIpAddressesRequest', ], ], 'UnassignPrivateNatGatewayAddress' => [ 'name' => 'UnassignPrivateNatGatewayAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UnassignPrivateNatGatewayAddressRequest', ], 'output' => [ 'shape' => 'UnassignPrivateNatGatewayAddressResult', ], ], 'UnlockSnapshot' => [ 'name' => 'UnlockSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UnlockSnapshotRequest', ], 'output' => [ 'shape' => 'UnlockSnapshotResult', ], ], 'UnmonitorInstances' => [ 'name' => 'UnmonitorInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UnmonitorInstancesRequest', ], 'output' => [ 'shape' => 'UnmonitorInstancesResult', ], ], 'UpdateSecurityGroupRuleDescriptionsEgress' => [ 'name' => 'UpdateSecurityGroupRuleDescriptionsEgress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateSecurityGroupRuleDescriptionsEgressRequest', ], 'output' => [ 'shape' => 'UpdateSecurityGroupRuleDescriptionsEgressResult', ], ], 'UpdateSecurityGroupRuleDescriptionsIngress' => [ 'name' => 'UpdateSecurityGroupRuleDescriptionsIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateSecurityGroupRuleDescriptionsIngressRequest', ], 'output' => [ 'shape' => 'UpdateSecurityGroupRuleDescriptionsIngressResult', ], ], 'WithdrawByoipCidr' => [ 'name' => 'WithdrawByoipCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'WithdrawByoipCidrRequest', ], 'output' => [ 'shape' => 'WithdrawByoipCidrResult', ], ], ], 'shapes' => [ 'AcceleratorCount' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Integer', 'locationName' => 'max', ], ], ], 'AcceleratorCountRequest' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', ], 'Max' => [ 'shape' => 'Integer', ], ], ], 'AcceleratorManufacturer' => [ 'type' => 'string', 'enum' => [ 'amazon-web-services', 'amd', 'nvidia', 'xilinx', 'habana', ], ], 'AcceleratorManufacturerSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AcceleratorManufacturer', 'locationName' => 'item', ], ], 'AcceleratorName' => [ 'type' => 'string', 'enum' => [ 'a100', 'inferentia', 'k520', 'k80', 'm60', 'radeon-pro-v520', 't4', 'vu9p', 'v100', 'a10g', 'h100', 't4g', ], ], 'AcceleratorNameSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AcceleratorName', 'locationName' => 'item', ], ], 'AcceleratorTotalMemoryMiB' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Integer', 'locationName' => 'max', ], ], ], 'AcceleratorTotalMemoryMiBRequest' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', ], 'Max' => [ 'shape' => 'Integer', ], ], ], 'AcceleratorType' => [ 'type' => 'string', 'enum' => [ 'gpu', 'fpga', 'inference', ], ], 'AcceleratorTypeSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AcceleratorType', 'locationName' => 'item', ], ], 'AcceptAddressTransferRequest' => [ 'type' => 'structure', 'required' => [ 'Address', ], 'members' => [ 'Address' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AcceptAddressTransferResult' => [ 'type' => 'structure', 'members' => [ 'AddressTransfer' => [ 'shape' => 'AddressTransfer', 'locationName' => 'addressTransfer', ], ], ], 'AcceptReservedInstancesExchangeQuoteRequest' => [ 'type' => 'structure', 'required' => [ 'ReservedInstanceIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ReservedInstanceIds' => [ 'shape' => 'ReservedInstanceIdSet', 'locationName' => 'ReservedInstanceId', ], 'TargetConfigurations' => [ 'shape' => 'TargetConfigurationRequestSet', 'locationName' => 'TargetConfiguration', ], ], ], 'AcceptReservedInstancesExchangeQuoteResult' => [ 'type' => 'structure', 'members' => [ 'ExchangeId' => [ 'shape' => 'String', 'locationName' => 'exchangeId', ], ], ], 'AcceptTransitGatewayMulticastDomainAssociationsRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'SubnetIds' => [ 'shape' => 'ValueStringList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AcceptTransitGatewayMulticastDomainAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'Associations' => [ 'shape' => 'TransitGatewayMulticastDomainAssociations', 'locationName' => 'associations', ], ], ], 'AcceptTransitGatewayPeeringAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AcceptTransitGatewayPeeringAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPeeringAttachment' => [ 'shape' => 'TransitGatewayPeeringAttachment', 'locationName' => 'transitGatewayPeeringAttachment', ], ], ], 'AcceptTransitGatewayVpcAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AcceptTransitGatewayVpcAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayVpcAttachment' => [ 'shape' => 'TransitGatewayVpcAttachment', 'locationName' => 'transitGatewayVpcAttachment', ], ], ], 'AcceptVpcEndpointConnectionsRequest' => [ 'type' => 'structure', 'required' => [ 'ServiceId', 'VpcEndpointIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceId' => [ 'shape' => 'VpcEndpointServiceId', ], 'VpcEndpointIds' => [ 'shape' => 'VpcEndpointIdList', 'locationName' => 'VpcEndpointId', ], ], ], 'AcceptVpcEndpointConnectionsResult' => [ 'type' => 'structure', 'members' => [ 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemSet', 'locationName' => 'unsuccessful', ], ], ], 'AcceptVpcPeeringConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'VpcPeeringConnectionId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcPeeringConnectionId' => [ 'shape' => 'VpcPeeringConnectionIdWithResolver', 'locationName' => 'vpcPeeringConnectionId', ], ], ], 'AcceptVpcPeeringConnectionResult' => [ 'type' => 'structure', 'members' => [ 'VpcPeeringConnection' => [ 'shape' => 'VpcPeeringConnection', 'locationName' => 'vpcPeeringConnection', ], ], ], 'AccessScopeAnalysisFinding' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeAnalysisId' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisId', 'locationName' => 'networkInsightsAccessScopeAnalysisId', ], 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', 'locationName' => 'networkInsightsAccessScopeId', ], 'FindingId' => [ 'shape' => 'String', 'locationName' => 'findingId', ], 'FindingComponents' => [ 'shape' => 'PathComponentList', 'locationName' => 'findingComponentSet', ], ], ], 'AccessScopeAnalysisFindingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccessScopeAnalysisFinding', 'locationName' => 'item', ], ], 'AccessScopePath' => [ 'type' => 'structure', 'members' => [ 'Source' => [ 'shape' => 'PathStatement', 'locationName' => 'source', ], 'Destination' => [ 'shape' => 'PathStatement', 'locationName' => 'destination', ], 'ThroughResources' => [ 'shape' => 'ThroughResourcesStatementList', 'locationName' => 'throughResourceSet', ], ], ], 'AccessScopePathList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccessScopePath', 'locationName' => 'item', ], ], 'AccessScopePathListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccessScopePathRequest', 'locationName' => 'item', ], ], 'AccessScopePathRequest' => [ 'type' => 'structure', 'members' => [ 'Source' => [ 'shape' => 'PathStatementRequest', ], 'Destination' => [ 'shape' => 'PathStatementRequest', ], 'ThroughResources' => [ 'shape' => 'ThroughResourcesStatementRequestList', 'locationName' => 'ThroughResource', ], ], ], 'AccountAttribute' => [ 'type' => 'structure', 'members' => [ 'AttributeName' => [ 'shape' => 'String', 'locationName' => 'attributeName', ], 'AttributeValues' => [ 'shape' => 'AccountAttributeValueList', 'locationName' => 'attributeValueSet', ], ], ], 'AccountAttributeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccountAttribute', 'locationName' => 'item', ], ], 'AccountAttributeName' => [ 'type' => 'string', 'enum' => [ 'supported-platforms', 'default-vpc', ], ], 'AccountAttributeNameStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccountAttributeName', 'locationName' => 'attributeName', ], ], 'AccountAttributeValue' => [ 'type' => 'structure', 'members' => [ 'AttributeValue' => [ 'shape' => 'String', 'locationName' => 'attributeValue', ], ], ], 'AccountAttributeValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccountAttributeValue', 'locationName' => 'item', ], ], 'ActiveInstance' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'SpotInstanceRequestId' => [ 'shape' => 'String', 'locationName' => 'spotInstanceRequestId', ], 'InstanceHealth' => [ 'shape' => 'InstanceHealthStatus', 'locationName' => 'instanceHealth', ], ], ], 'ActiveInstanceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ActiveInstance', 'locationName' => 'item', ], ], 'ActivityStatus' => [ 'type' => 'string', 'enum' => [ 'error', 'pending_fulfillment', 'pending_termination', 'fulfilled', ], ], 'AddIpamOperatingRegion' => [ 'type' => 'structure', 'members' => [ 'RegionName' => [ 'shape' => 'String', ], ], ], 'AddIpamOperatingRegionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AddIpamOperatingRegion', ], 'max' => 50, 'min' => 0, ], 'AddPrefixListEntries' => [ 'type' => 'list', 'member' => [ 'shape' => 'AddPrefixListEntry', ], 'max' => 100, 'min' => 0, ], 'AddPrefixListEntry' => [ 'type' => 'structure', 'required' => [ 'Cidr', ], 'members' => [ 'Cidr' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], ], ], 'AddedPrincipal' => [ 'type' => 'structure', 'members' => [ 'PrincipalType' => [ 'shape' => 'PrincipalType', 'locationName' => 'principalType', ], 'Principal' => [ 'shape' => 'String', 'locationName' => 'principal', ], 'ServicePermissionId' => [ 'shape' => 'String', 'locationName' => 'servicePermissionId', ], 'ServiceId' => [ 'shape' => 'String', 'locationName' => 'serviceId', ], ], ], 'AddedPrincipalSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AddedPrincipal', 'locationName' => 'item', ], ], 'AdditionalDetail' => [ 'type' => 'structure', 'members' => [ 'AdditionalDetailType' => [ 'shape' => 'String', 'locationName' => 'additionalDetailType', ], 'Component' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'component', ], 'VpcEndpointService' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'vpcEndpointService', ], 'RuleOptions' => [ 'shape' => 'RuleOptionList', 'locationName' => 'ruleOptionSet', ], 'RuleGroupTypePairs' => [ 'shape' => 'RuleGroupTypePairList', 'locationName' => 'ruleGroupTypePairSet', ], 'RuleGroupRuleOptionsPairs' => [ 'shape' => 'RuleGroupRuleOptionsPairList', 'locationName' => 'ruleGroupRuleOptionsPairSet', ], 'ServiceName' => [ 'shape' => 'String', 'locationName' => 'serviceName', ], 'LoadBalancers' => [ 'shape' => 'AnalysisComponentList', 'locationName' => 'loadBalancerSet', ], ], ], 'AdditionalDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AdditionalDetail', 'locationName' => 'item', ], ], 'Address' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'Domain' => [ 'shape' => 'DomainType', 'locationName' => 'domain', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'NetworkInterfaceOwnerId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceOwnerId', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'PublicIpv4Pool' => [ 'shape' => 'String', 'locationName' => 'publicIpv4Pool', ], 'NetworkBorderGroup' => [ 'shape' => 'String', 'locationName' => 'networkBorderGroup', ], 'CustomerOwnedIp' => [ 'shape' => 'String', 'locationName' => 'customerOwnedIp', ], 'CustomerOwnedIpv4Pool' => [ 'shape' => 'String', 'locationName' => 'customerOwnedIpv4Pool', ], 'CarrierIp' => [ 'shape' => 'String', 'locationName' => 'carrierIp', ], ], ], 'AddressAttribute' => [ 'type' => 'structure', 'members' => [ 'PublicIp' => [ 'shape' => 'PublicIpAddress', 'locationName' => 'publicIp', ], 'AllocationId' => [ 'shape' => 'AllocationId', 'locationName' => 'allocationId', ], 'PtrRecord' => [ 'shape' => 'String', 'locationName' => 'ptrRecord', ], 'PtrRecordUpdate' => [ 'shape' => 'PtrUpdateStatus', 'locationName' => 'ptrRecordUpdate', ], ], ], 'AddressAttributeName' => [ 'type' => 'string', 'enum' => [ 'domain-name', ], ], 'AddressFamily' => [ 'type' => 'string', 'enum' => [ 'ipv4', 'ipv6', ], ], 'AddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Address', 'locationName' => 'item', ], ], 'AddressMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'AddressSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AddressAttribute', 'locationName' => 'item', ], ], 'AddressTransfer' => [ 'type' => 'structure', 'members' => [ 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'TransferAccountId' => [ 'shape' => 'String', 'locationName' => 'transferAccountId', ], 'TransferOfferExpirationTimestamp' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'transferOfferExpirationTimestamp', ], 'TransferOfferAcceptedTimestamp' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'transferOfferAcceptedTimestamp', ], 'AddressTransferStatus' => [ 'shape' => 'AddressTransferStatus', 'locationName' => 'addressTransferStatus', ], ], ], 'AddressTransferList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AddressTransfer', 'locationName' => 'item', ], ], 'AddressTransferStatus' => [ 'type' => 'string', 'enum' => [ 'pending', 'disabled', 'accepted', ], ], 'AdvertiseByoipCidrRequest' => [ 'type' => 'structure', 'required' => [ 'Cidr', ], 'members' => [ 'Cidr' => [ 'shape' => 'String', ], 'Asn' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NetworkBorderGroup' => [ 'shape' => 'String', ], ], ], 'AdvertiseByoipCidrResult' => [ 'type' => 'structure', 'members' => [ 'ByoipCidr' => [ 'shape' => 'ByoipCidr', 'locationName' => 'byoipCidr', ], ], ], 'Affinity' => [ 'type' => 'string', 'enum' => [ 'default', 'host', ], ], 'AllocateAddressRequest' => [ 'type' => 'structure', 'members' => [ 'Domain' => [ 'shape' => 'DomainType', ], 'Address' => [ 'shape' => 'PublicIpAddress', ], 'PublicIpv4Pool' => [ 'shape' => 'Ipv4PoolEc2Id', ], 'NetworkBorderGroup' => [ 'shape' => 'String', ], 'CustomerOwnedIpv4Pool' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'AllocateAddressResult' => [ 'type' => 'structure', 'members' => [ 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'PublicIpv4Pool' => [ 'shape' => 'String', 'locationName' => 'publicIpv4Pool', ], 'NetworkBorderGroup' => [ 'shape' => 'String', 'locationName' => 'networkBorderGroup', ], 'Domain' => [ 'shape' => 'DomainType', 'locationName' => 'domain', ], 'CustomerOwnedIp' => [ 'shape' => 'String', 'locationName' => 'customerOwnedIp', ], 'CustomerOwnedIpv4Pool' => [ 'shape' => 'String', 'locationName' => 'customerOwnedIpv4Pool', ], 'CarrierIp' => [ 'shape' => 'String', 'locationName' => 'carrierIp', ], ], ], 'AllocateHostsRequest' => [ 'type' => 'structure', 'required' => [ 'AvailabilityZone', ], 'members' => [ 'AutoPlacement' => [ 'shape' => 'AutoPlacement', 'locationName' => 'autoPlacement', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'InstanceFamily' => [ 'shape' => 'String', ], 'Quantity' => [ 'shape' => 'Integer', 'locationName' => 'quantity', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'HostRecovery' => [ 'shape' => 'HostRecovery', ], 'OutpostArn' => [ 'shape' => 'String', ], 'HostMaintenance' => [ 'shape' => 'HostMaintenance', ], 'AssetIds' => [ 'shape' => 'AssetIdList', 'locationName' => 'AssetId', ], ], ], 'AllocateHostsResult' => [ 'type' => 'structure', 'members' => [ 'HostIds' => [ 'shape' => 'ResponseHostIdList', 'locationName' => 'hostIdSet', ], ], ], 'AllocateIpamPoolCidrRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Cidr' => [ 'shape' => 'String', ], 'NetmaskLength' => [ 'shape' => 'Integer', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'Description' => [ 'shape' => 'String', ], 'PreviewNextCidr' => [ 'shape' => 'Boolean', ], 'AllowedCidrs' => [ 'shape' => 'IpamPoolAllocationAllowedCidrs', 'locationName' => 'AllowedCidr', ], 'DisallowedCidrs' => [ 'shape' => 'IpamPoolAllocationDisallowedCidrs', 'locationName' => 'DisallowedCidr', ], ], ], 'AllocateIpamPoolCidrResult' => [ 'type' => 'structure', 'members' => [ 'IpamPoolAllocation' => [ 'shape' => 'IpamPoolAllocation', 'locationName' => 'ipamPoolAllocation', ], ], ], 'AllocationId' => [ 'type' => 'string', ], 'AllocationIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllocationId', 'locationName' => 'AllocationId', ], ], 'AllocationIds' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllocationId', 'locationName' => 'item', ], ], 'AllocationState' => [ 'type' => 'string', 'enum' => [ 'available', 'under-assessment', 'permanent-failure', 'released', 'released-permanent-failure', 'pending', ], ], 'AllocationStrategy' => [ 'type' => 'string', 'enum' => [ 'lowestPrice', 'diversified', 'capacityOptimized', 'capacityOptimizedPrioritized', 'priceCapacityOptimized', ], ], 'AllocationType' => [ 'type' => 'string', 'enum' => [ 'used', ], ], 'AllowedInstanceType' => [ 'type' => 'string', 'max' => 30, 'min' => 1, 'pattern' => '[a-zA-Z0-9\\.\\*\\-]+', ], 'AllowedInstanceTypeSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllowedInstanceType', 'locationName' => 'item', ], 'max' => 400, 'min' => 0, ], 'AllowedPrincipal' => [ 'type' => 'structure', 'members' => [ 'PrincipalType' => [ 'shape' => 'PrincipalType', 'locationName' => 'principalType', ], 'Principal' => [ 'shape' => 'String', 'locationName' => 'principal', ], 'ServicePermissionId' => [ 'shape' => 'String', 'locationName' => 'servicePermissionId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'ServiceId' => [ 'shape' => 'String', 'locationName' => 'serviceId', ], ], ], 'AllowedPrincipalSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllowedPrincipal', 'locationName' => 'item', ], ], 'AllowsMultipleInstanceTypes' => [ 'type' => 'string', 'enum' => [ 'on', 'off', ], ], 'AlternatePathHint' => [ 'type' => 'structure', 'members' => [ 'ComponentId' => [ 'shape' => 'String', 'locationName' => 'componentId', ], 'ComponentArn' => [ 'shape' => 'String', 'locationName' => 'componentArn', ], ], ], 'AlternatePathHintList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AlternatePathHint', 'locationName' => 'item', ], ], 'AmdSevSnpSpecification' => [ 'type' => 'string', 'enum' => [ 'enabled', 'disabled', ], ], 'AnalysisAclRule' => [ 'type' => 'structure', 'members' => [ 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'Egress' => [ 'shape' => 'Boolean', 'locationName' => 'egress', ], 'PortRange' => [ 'shape' => 'PortRange', 'locationName' => 'portRange', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], 'RuleAction' => [ 'shape' => 'String', 'locationName' => 'ruleAction', ], 'RuleNumber' => [ 'shape' => 'Integer', 'locationName' => 'ruleNumber', ], ], ], 'AnalysisComponent' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'String', 'locationName' => 'id', ], 'Arn' => [ 'shape' => 'String', 'locationName' => 'arn', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], ], ], 'AnalysisComponentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'item', ], ], 'AnalysisLoadBalancerListener' => [ 'type' => 'structure', 'members' => [ 'LoadBalancerPort' => [ 'shape' => 'Port', 'locationName' => 'loadBalancerPort', ], 'InstancePort' => [ 'shape' => 'Port', 'locationName' => 'instancePort', ], ], ], 'AnalysisLoadBalancerTarget' => [ 'type' => 'structure', 'members' => [ 'Address' => [ 'shape' => 'IpAddress', 'locationName' => 'address', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Instance' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'instance', ], 'Port' => [ 'shape' => 'Port', 'locationName' => 'port', ], ], ], 'AnalysisPacketHeader' => [ 'type' => 'structure', 'members' => [ 'DestinationAddresses' => [ 'shape' => 'IpAddressList', 'locationName' => 'destinationAddressSet', ], 'DestinationPortRanges' => [ 'shape' => 'PortRangeList', 'locationName' => 'destinationPortRangeSet', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], 'SourceAddresses' => [ 'shape' => 'IpAddressList', 'locationName' => 'sourceAddressSet', ], 'SourcePortRanges' => [ 'shape' => 'PortRangeList', 'locationName' => 'sourcePortRangeSet', ], ], ], 'AnalysisRouteTableRoute' => [ 'type' => 'structure', 'members' => [ 'DestinationCidr' => [ 'shape' => 'String', 'locationName' => 'destinationCidr', ], 'DestinationPrefixListId' => [ 'shape' => 'String', 'locationName' => 'destinationPrefixListId', ], 'EgressOnlyInternetGatewayId' => [ 'shape' => 'String', 'locationName' => 'egressOnlyInternetGatewayId', ], 'GatewayId' => [ 'shape' => 'String', 'locationName' => 'gatewayId', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'NatGatewayId' => [ 'shape' => 'String', 'locationName' => 'natGatewayId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'Origin' => [ 'shape' => 'String', 'locationName' => 'origin', ], 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'CarrierGatewayId' => [ 'shape' => 'String', 'locationName' => 'carrierGatewayId', ], 'CoreNetworkArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'coreNetworkArn', ], 'LocalGatewayId' => [ 'shape' => 'String', 'locationName' => 'localGatewayId', ], ], ], 'AnalysisSecurityGroupRule' => [ 'type' => 'structure', 'members' => [ 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'Direction' => [ 'shape' => 'String', 'locationName' => 'direction', ], 'SecurityGroupId' => [ 'shape' => 'String', 'locationName' => 'securityGroupId', ], 'PortRange' => [ 'shape' => 'PortRange', 'locationName' => 'portRange', ], 'PrefixListId' => [ 'shape' => 'String', 'locationName' => 'prefixListId', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], ], ], 'AnalysisStatus' => [ 'type' => 'string', 'enum' => [ 'running', 'succeeded', 'failed', ], ], 'ApplianceModeSupportValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'ApplySecurityGroupsToClientVpnTargetNetworkRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', 'VpcId', 'SecurityGroupIds', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'SecurityGroupIds' => [ 'shape' => 'ClientVpnSecurityGroupIdSet', 'locationName' => 'SecurityGroupId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ApplySecurityGroupsToClientVpnTargetNetworkResult' => [ 'type' => 'structure', 'members' => [ 'SecurityGroupIds' => [ 'shape' => 'ClientVpnSecurityGroupIdSet', 'locationName' => 'securityGroupIds', ], ], ], 'ArchitectureType' => [ 'type' => 'string', 'enum' => [ 'i386', 'x86_64', 'arm64', 'x86_64_mac', 'arm64_mac', ], ], 'ArchitectureTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ArchitectureType', 'locationName' => 'item', ], ], 'ArchitectureTypeSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ArchitectureType', 'locationName' => 'item', ], 'max' => 3, 'min' => 0, ], 'ArchitectureValues' => [ 'type' => 'string', 'enum' => [ 'i386', 'x86_64', 'arm64', 'x86_64_mac', 'arm64_mac', ], ], 'ArnList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceArn', 'locationName' => 'item', ], ], 'AsnAssociation' => [ 'type' => 'structure', 'members' => [ 'Asn' => [ 'shape' => 'String', 'locationName' => 'asn', ], 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'State' => [ 'shape' => 'AsnAssociationState', 'locationName' => 'state', ], ], ], 'AsnAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AsnAssociation', 'locationName' => 'item', ], ], 'AsnAssociationState' => [ 'type' => 'string', 'enum' => [ 'disassociated', 'failed-disassociation', 'failed-association', 'pending-disassociation', 'pending-association', 'associated', ], ], 'AsnAuthorizationContext' => [ 'type' => 'structure', 'required' => [ 'Message', 'Signature', ], 'members' => [ 'Message' => [ 'shape' => 'String', ], 'Signature' => [ 'shape' => 'String', ], ], ], 'AsnState' => [ 'type' => 'string', 'enum' => [ 'deprovisioned', 'failed-deprovision', 'failed-provision', 'pending-deprovision', 'pending-provision', 'provisioned', ], ], 'AssetId' => [ 'type' => 'string', ], 'AssetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AssetId', ], ], 'AssignIpv6AddressesRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'Ipv6AddressCount' => [ 'shape' => 'Integer', 'locationName' => 'ipv6AddressCount', ], 'Ipv6Addresses' => [ 'shape' => 'Ipv6AddressList', 'locationName' => 'ipv6Addresses', ], 'Ipv6PrefixCount' => [ 'shape' => 'Integer', ], 'Ipv6Prefixes' => [ 'shape' => 'IpPrefixList', 'locationName' => 'Ipv6Prefix', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], ], ], 'AssignIpv6AddressesResult' => [ 'type' => 'structure', 'members' => [ 'AssignedIpv6Addresses' => [ 'shape' => 'Ipv6AddressList', 'locationName' => 'assignedIpv6Addresses', ], 'AssignedIpv6Prefixes' => [ 'shape' => 'IpPrefixList', 'locationName' => 'assignedIpv6PrefixSet', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], ], ], 'AssignPrivateIpAddressesRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'AllowReassignment' => [ 'shape' => 'Boolean', 'locationName' => 'allowReassignment', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'PrivateIpAddresses' => [ 'shape' => 'PrivateIpAddressStringList', 'locationName' => 'privateIpAddress', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'secondaryPrivateIpAddressCount', ], 'Ipv4Prefixes' => [ 'shape' => 'IpPrefixList', 'locationName' => 'Ipv4Prefix', ], 'Ipv4PrefixCount' => [ 'shape' => 'Integer', ], ], ], 'AssignPrivateIpAddressesResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'AssignedPrivateIpAddresses' => [ 'shape' => 'AssignedPrivateIpAddressList', 'locationName' => 'assignedPrivateIpAddressesSet', ], 'AssignedIpv4Prefixes' => [ 'shape' => 'Ipv4PrefixesList', 'locationName' => 'assignedIpv4PrefixSet', ], ], ], 'AssignPrivateNatGatewayAddressRequest' => [ 'type' => 'structure', 'required' => [ 'NatGatewayId', ], 'members' => [ 'NatGatewayId' => [ 'shape' => 'NatGatewayId', ], 'PrivateIpAddresses' => [ 'shape' => 'IpList', 'locationName' => 'PrivateIpAddress', ], 'PrivateIpAddressCount' => [ 'shape' => 'PrivateIpAddressCount', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AssignPrivateNatGatewayAddressResult' => [ 'type' => 'structure', 'members' => [ 'NatGatewayId' => [ 'shape' => 'NatGatewayId', 'locationName' => 'natGatewayId', ], 'NatGatewayAddresses' => [ 'shape' => 'NatGatewayAddressList', 'locationName' => 'natGatewayAddressSet', ], ], ], 'AssignedPrivateIpAddress' => [ 'type' => 'structure', 'members' => [ 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], ], ], 'AssignedPrivateIpAddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AssignedPrivateIpAddress', 'locationName' => 'item', ], ], 'AssociateAddressRequest' => [ 'type' => 'structure', 'members' => [ 'AllocationId' => [ 'shape' => 'AllocationId', ], 'InstanceId' => [ 'shape' => 'InstanceId', ], 'PublicIp' => [ 'shape' => 'EipAllocationPublicIp', ], 'AllowReassociation' => [ 'shape' => 'Boolean', 'locationName' => 'allowReassociation', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], ], ], 'AssociateAddressResult' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], ], ], 'AssociateClientVpnTargetNetworkRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', 'SubnetId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AssociateClientVpnTargetNetworkResult' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'Status' => [ 'shape' => 'AssociationStatus', 'locationName' => 'status', ], ], ], 'AssociateDhcpOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'DhcpOptionsId', 'VpcId', ], 'members' => [ 'DhcpOptionsId' => [ 'shape' => 'DefaultingDhcpOptionsId', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'AssociateEnclaveCertificateIamRoleRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', 'RoleArn', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'CertificateId', ], 'RoleArn' => [ 'shape' => 'RoleId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AssociateEnclaveCertificateIamRoleResult' => [ 'type' => 'structure', 'members' => [ 'CertificateS3BucketName' => [ 'shape' => 'String', 'locationName' => 'certificateS3BucketName', ], 'CertificateS3ObjectKey' => [ 'shape' => 'String', 'locationName' => 'certificateS3ObjectKey', ], 'EncryptionKmsKeyId' => [ 'shape' => 'String', 'locationName' => 'encryptionKmsKeyId', ], ], ], 'AssociateIamInstanceProfileRequest' => [ 'type' => 'structure', 'required' => [ 'IamInstanceProfile', 'InstanceId', ], 'members' => [ 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfileSpecification', ], 'InstanceId' => [ 'shape' => 'InstanceId', ], ], ], 'AssociateIamInstanceProfileResult' => [ 'type' => 'structure', 'members' => [ 'IamInstanceProfileAssociation' => [ 'shape' => 'IamInstanceProfileAssociation', 'locationName' => 'iamInstanceProfileAssociation', ], ], ], 'AssociateInstanceEventWindowRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceEventWindowId', 'AssociationTarget', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceEventWindowId' => [ 'shape' => 'InstanceEventWindowId', ], 'AssociationTarget' => [ 'shape' => 'InstanceEventWindowAssociationRequest', ], ], ], 'AssociateInstanceEventWindowResult' => [ 'type' => 'structure', 'members' => [ 'InstanceEventWindow' => [ 'shape' => 'InstanceEventWindow', 'locationName' => 'instanceEventWindow', ], ], ], 'AssociateIpamByoasnRequest' => [ 'type' => 'structure', 'required' => [ 'Asn', 'Cidr', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Asn' => [ 'shape' => 'String', ], 'Cidr' => [ 'shape' => 'String', ], ], ], 'AssociateIpamByoasnResult' => [ 'type' => 'structure', 'members' => [ 'AsnAssociation' => [ 'shape' => 'AsnAssociation', 'locationName' => 'asnAssociation', ], ], ], 'AssociateIpamResourceDiscoveryRequest' => [ 'type' => 'structure', 'required' => [ 'IpamId', 'IpamResourceDiscoveryId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamId' => [ 'shape' => 'IpamId', ], 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'AssociateIpamResourceDiscoveryResult' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscoveryAssociation' => [ 'shape' => 'IpamResourceDiscoveryAssociation', 'locationName' => 'ipamResourceDiscoveryAssociation', ], ], ], 'AssociateNatGatewayAddressRequest' => [ 'type' => 'structure', 'required' => [ 'NatGatewayId', 'AllocationIds', ], 'members' => [ 'NatGatewayId' => [ 'shape' => 'NatGatewayId', ], 'AllocationIds' => [ 'shape' => 'AllocationIdList', 'locationName' => 'AllocationId', ], 'PrivateIpAddresses' => [ 'shape' => 'IpList', 'locationName' => 'PrivateIpAddress', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AssociateNatGatewayAddressResult' => [ 'type' => 'structure', 'members' => [ 'NatGatewayId' => [ 'shape' => 'NatGatewayId', 'locationName' => 'natGatewayId', ], 'NatGatewayAddresses' => [ 'shape' => 'NatGatewayAddressList', 'locationName' => 'natGatewayAddressSet', ], ], ], 'AssociateRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'RouteTableId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'RouteTableId' => [ 'shape' => 'RouteTableId', 'locationName' => 'routeTableId', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'GatewayId' => [ 'shape' => 'RouteGatewayId', ], ], ], 'AssociateRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'AssociationState' => [ 'shape' => 'RouteTableAssociationState', 'locationName' => 'associationState', ], ], ], 'AssociateSubnetCidrBlockRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', ], 'members' => [ 'Ipv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'ipv6CidrBlock', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'Ipv6IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Ipv6NetmaskLength' => [ 'shape' => 'NetmaskLength', ], ], ], 'AssociateSubnetCidrBlockResult' => [ 'type' => 'structure', 'members' => [ 'Ipv6CidrBlockAssociation' => [ 'shape' => 'SubnetIpv6CidrBlockAssociation', 'locationName' => 'ipv6CidrBlockAssociation', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], ], ], 'AssociateTransitGatewayMulticastDomainRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayMulticastDomainId', 'TransitGatewayAttachmentId', 'SubnetIds', ], 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'SubnetIds' => [ 'shape' => 'TransitGatewaySubnetIdList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AssociateTransitGatewayMulticastDomainResult' => [ 'type' => 'structure', 'members' => [ 'Associations' => [ 'shape' => 'TransitGatewayMulticastDomainAssociations', 'locationName' => 'associations', ], ], ], 'AssociateTransitGatewayPolicyTableRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayPolicyTableId', 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayPolicyTableId' => [ 'shape' => 'TransitGatewayPolicyTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AssociateTransitGatewayPolicyTableResult' => [ 'type' => 'structure', 'members' => [ 'Association' => [ 'shape' => 'TransitGatewayPolicyTableAssociation', 'locationName' => 'association', ], ], ], 'AssociateTransitGatewayRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AssociateTransitGatewayRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'Association' => [ 'shape' => 'TransitGatewayAssociation', 'locationName' => 'association', ], ], ], 'AssociateTrunkInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'BranchInterfaceId', 'TrunkInterfaceId', ], 'members' => [ 'BranchInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'TrunkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'VlanId' => [ 'shape' => 'Integer', ], 'GreKey' => [ 'shape' => 'Integer', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AssociateTrunkInterfaceResult' => [ 'type' => 'structure', 'members' => [ 'InterfaceAssociation' => [ 'shape' => 'TrunkInterfaceAssociation', 'locationName' => 'interfaceAssociation', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'AssociateVpcCidrBlockRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'AmazonProvidedIpv6CidrBlock' => [ 'shape' => 'Boolean', 'locationName' => 'amazonProvidedIpv6CidrBlock', ], 'CidrBlock' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], 'Ipv6CidrBlockNetworkBorderGroup' => [ 'shape' => 'String', ], 'Ipv6Pool' => [ 'shape' => 'Ipv6PoolEc2Id', ], 'Ipv6CidrBlock' => [ 'shape' => 'String', ], 'Ipv4IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Ipv4NetmaskLength' => [ 'shape' => 'NetmaskLength', ], 'Ipv6IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Ipv6NetmaskLength' => [ 'shape' => 'NetmaskLength', ], ], ], 'AssociateVpcCidrBlockResult' => [ 'type' => 'structure', 'members' => [ 'Ipv6CidrBlockAssociation' => [ 'shape' => 'VpcIpv6CidrBlockAssociation', 'locationName' => 'ipv6CidrBlockAssociation', ], 'CidrBlockAssociation' => [ 'shape' => 'VpcCidrBlockAssociation', 'locationName' => 'cidrBlockAssociation', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'AssociatedNetworkType' => [ 'type' => 'string', 'enum' => [ 'vpc', ], ], 'AssociatedRole' => [ 'type' => 'structure', 'members' => [ 'AssociatedRoleArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'associatedRoleArn', ], 'CertificateS3BucketName' => [ 'shape' => 'String', 'locationName' => 'certificateS3BucketName', ], 'CertificateS3ObjectKey' => [ 'shape' => 'String', 'locationName' => 'certificateS3ObjectKey', ], 'EncryptionKmsKeyId' => [ 'shape' => 'String', 'locationName' => 'encryptionKmsKeyId', ], ], ], 'AssociatedRolesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AssociatedRole', 'locationName' => 'item', ], ], 'AssociatedTargetNetwork' => [ 'type' => 'structure', 'members' => [ 'NetworkId' => [ 'shape' => 'String', 'locationName' => 'networkId', ], 'NetworkType' => [ 'shape' => 'AssociatedNetworkType', 'locationName' => 'networkType', ], ], ], 'AssociatedTargetNetworkSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AssociatedTargetNetwork', 'locationName' => 'item', ], ], 'AssociationIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IamInstanceProfileAssociationId', 'locationName' => 'AssociationId', ], ], 'AssociationStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'AssociationStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'AssociationStatusCode' => [ 'type' => 'string', 'enum' => [ 'associating', 'associated', 'association-failed', 'disassociating', 'disassociated', ], ], 'AthenaIntegration' => [ 'type' => 'structure', 'required' => [ 'IntegrationResultS3DestinationArn', 'PartitionLoadFrequency', ], 'members' => [ 'IntegrationResultS3DestinationArn' => [ 'shape' => 'String', ], 'PartitionLoadFrequency' => [ 'shape' => 'PartitionLoadFrequency', ], 'PartitionStartDate' => [ 'shape' => 'MillisecondDateTime', ], 'PartitionEndDate' => [ 'shape' => 'MillisecondDateTime', ], ], ], 'AthenaIntegrationsSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AthenaIntegration', 'locationName' => 'item', ], 'max' => 10, 'min' => 1, ], 'AttachClassicLinkVpcRequest' => [ 'type' => 'structure', 'required' => [ 'Groups', 'InstanceId', 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Groups' => [ 'shape' => 'GroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], ], ], 'AttachClassicLinkVpcResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'AttachInternetGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'InternetGatewayId', 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InternetGatewayId' => [ 'shape' => 'InternetGatewayId', 'locationName' => 'internetGatewayId', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], ], ], 'AttachNetworkInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'DeviceIndex', 'InstanceId', 'NetworkInterfaceId', ], 'members' => [ 'DeviceIndex' => [ 'shape' => 'Integer', 'locationName' => 'deviceIndex', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'NetworkCardIndex' => [ 'shape' => 'Integer', ], 'EnaSrdSpecification' => [ 'shape' => 'EnaSrdSpecification', ], ], ], 'AttachNetworkInterfaceResult' => [ 'type' => 'structure', 'members' => [ 'AttachmentId' => [ 'shape' => 'String', 'locationName' => 'attachmentId', ], 'NetworkCardIndex' => [ 'shape' => 'Integer', 'locationName' => 'networkCardIndex', ], ], ], 'AttachVerifiedAccessTrustProviderRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessInstanceId', 'VerifiedAccessTrustProviderId', ], 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'VerifiedAccessTrustProviderId' => [ 'shape' => 'VerifiedAccessTrustProviderId', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AttachVerifiedAccessTrustProviderResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProvider' => [ 'shape' => 'VerifiedAccessTrustProvider', 'locationName' => 'verifiedAccessTrustProvider', ], 'VerifiedAccessInstance' => [ 'shape' => 'VerifiedAccessInstance', 'locationName' => 'verifiedAccessInstance', ], ], ], 'AttachVolumeRequest' => [ 'type' => 'structure', 'required' => [ 'Device', 'InstanceId', 'VolumeId', ], 'members' => [ 'Device' => [ 'shape' => 'String', ], 'InstanceId' => [ 'shape' => 'InstanceId', ], 'VolumeId' => [ 'shape' => 'VolumeId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'AttachVpnGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', 'VpnGatewayId', ], 'members' => [ 'VpcId' => [ 'shape' => 'VpcId', ], 'VpnGatewayId' => [ 'shape' => 'VpnGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'AttachVpnGatewayResult' => [ 'type' => 'structure', 'members' => [ 'VpcAttachment' => [ 'shape' => 'VpcAttachment', 'locationName' => 'attachment', ], ], ], 'AttachmentEnaSrdSpecification' => [ 'type' => 'structure', 'members' => [ 'EnaSrdEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'enaSrdEnabled', ], 'EnaSrdUdpSpecification' => [ 'shape' => 'AttachmentEnaSrdUdpSpecification', 'locationName' => 'enaSrdUdpSpecification', ], ], ], 'AttachmentEnaSrdUdpSpecification' => [ 'type' => 'structure', 'members' => [ 'EnaSrdUdpEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'enaSrdUdpEnabled', ], ], ], 'AttachmentStatus' => [ 'type' => 'string', 'enum' => [ 'attaching', 'attached', 'detaching', 'detached', ], ], 'AttributeBooleanValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'Boolean', 'locationName' => 'value', ], ], ], 'AttributeValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'AuthorizationRule' => [ 'type' => 'structure', 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'String', 'locationName' => 'clientVpnEndpointId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'AccessAll' => [ 'shape' => 'Boolean', 'locationName' => 'accessAll', ], 'DestinationCidr' => [ 'shape' => 'String', 'locationName' => 'destinationCidr', ], 'Status' => [ 'shape' => 'ClientVpnAuthorizationRuleStatus', 'locationName' => 'status', ], ], ], 'AuthorizationRuleSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuthorizationRule', 'locationName' => 'item', ], ], 'AuthorizeClientVpnIngressRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', 'TargetNetworkCidr', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'TargetNetworkCidr' => [ 'shape' => 'String', ], 'AccessGroupId' => [ 'shape' => 'String', ], 'AuthorizeAllGroups' => [ 'shape' => 'Boolean', ], 'Description' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AuthorizeClientVpnIngressResult' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'ClientVpnAuthorizationRuleStatus', 'locationName' => 'status', ], ], ], 'AuthorizeSecurityGroupEgressRequest' => [ 'type' => 'structure', 'required' => [ 'GroupId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupId' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'groupId', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', 'locationName' => 'ipPermissions', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'CidrIp' => [ 'shape' => 'String', 'locationName' => 'cidrIp', ], 'FromPort' => [ 'shape' => 'Integer', 'locationName' => 'fromPort', ], 'IpProtocol' => [ 'shape' => 'String', 'locationName' => 'ipProtocol', ], 'ToPort' => [ 'shape' => 'Integer', 'locationName' => 'toPort', ], 'SourceSecurityGroupName' => [ 'shape' => 'String', 'locationName' => 'sourceSecurityGroupName', ], 'SourceSecurityGroupOwnerId' => [ 'shape' => 'String', 'locationName' => 'sourceSecurityGroupOwnerId', ], ], ], 'AuthorizeSecurityGroupEgressResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], 'SecurityGroupRules' => [ 'shape' => 'SecurityGroupRuleList', 'locationName' => 'securityGroupRuleSet', ], ], ], 'AuthorizeSecurityGroupIngressRequest' => [ 'type' => 'structure', 'members' => [ 'CidrIp' => [ 'shape' => 'String', ], 'FromPort' => [ 'shape' => 'Integer', ], 'GroupId' => [ 'shape' => 'SecurityGroupId', ], 'GroupName' => [ 'shape' => 'SecurityGroupName', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', ], 'IpProtocol' => [ 'shape' => 'String', ], 'SourceSecurityGroupName' => [ 'shape' => 'String', ], 'SourceSecurityGroupOwnerId' => [ 'shape' => 'String', ], 'ToPort' => [ 'shape' => 'Integer', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'AuthorizeSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], 'SecurityGroupRules' => [ 'shape' => 'SecurityGroupRuleList', 'locationName' => 'securityGroupRuleSet', ], ], ], 'AutoAcceptSharedAssociationsValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'AutoAcceptSharedAttachmentsValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'AutoPlacement' => [ 'type' => 'string', 'enum' => [ 'on', 'off', ], ], 'AutoRecoveryFlag' => [ 'type' => 'boolean', ], 'AvailabilityZone' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'AvailabilityZoneState', 'locationName' => 'zoneState', ], 'OptInStatus' => [ 'shape' => 'AvailabilityZoneOptInStatus', 'locationName' => 'optInStatus', ], 'Messages' => [ 'shape' => 'AvailabilityZoneMessageList', 'locationName' => 'messageSet', ], 'RegionName' => [ 'shape' => 'String', 'locationName' => 'regionName', ], 'ZoneName' => [ 'shape' => 'String', 'locationName' => 'zoneName', ], 'ZoneId' => [ 'shape' => 'String', 'locationName' => 'zoneId', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'NetworkBorderGroup' => [ 'shape' => 'String', 'locationName' => 'networkBorderGroup', ], 'ZoneType' => [ 'shape' => 'String', 'locationName' => 'zoneType', ], 'ParentZoneName' => [ 'shape' => 'String', 'locationName' => 'parentZoneName', ], 'ParentZoneId' => [ 'shape' => 'String', 'locationName' => 'parentZoneId', ], ], ], 'AvailabilityZoneId' => [ 'type' => 'string', ], 'AvailabilityZoneList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AvailabilityZone', 'locationName' => 'item', ], ], 'AvailabilityZoneMessage' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'AvailabilityZoneMessageList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AvailabilityZoneMessage', 'locationName' => 'item', ], ], 'AvailabilityZoneName' => [ 'type' => 'string', ], 'AvailabilityZoneOptInStatus' => [ 'type' => 'string', 'enum' => [ 'opt-in-not-required', 'opted-in', 'not-opted-in', ], ], 'AvailabilityZoneState' => [ 'type' => 'string', 'enum' => [ 'available', 'information', 'impaired', 'unavailable', 'constrained', ], ], 'AvailabilityZoneStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'AvailabilityZone', ], ], 'AvailableCapacity' => [ 'type' => 'structure', 'members' => [ 'AvailableInstanceCapacity' => [ 'shape' => 'AvailableInstanceCapacityList', 'locationName' => 'availableInstanceCapacity', ], 'AvailableVCpus' => [ 'shape' => 'Integer', 'locationName' => 'availableVCpus', ], ], ], 'AvailableInstanceCapacityList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceCapacity', 'locationName' => 'item', ], ], 'BareMetal' => [ 'type' => 'string', 'enum' => [ 'included', 'required', 'excluded', ], ], 'BareMetalFlag' => [ 'type' => 'boolean', ], 'BaselineBandwidthInGbps' => [ 'type' => 'double', ], 'BaselineBandwidthInMbps' => [ 'type' => 'integer', ], 'BaselineEbsBandwidthMbps' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Integer', 'locationName' => 'max', ], ], ], 'BaselineEbsBandwidthMbpsRequest' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', ], 'Max' => [ 'shape' => 'Integer', ], ], ], 'BaselineIops' => [ 'type' => 'integer', ], 'BaselineThroughputInMBps' => [ 'type' => 'double', ], 'BatchState' => [ 'type' => 'string', 'enum' => [ 'submitted', 'active', 'cancelled', 'failed', 'cancelled_running', 'cancelled_terminating', 'modifying', ], ], 'BgpStatus' => [ 'type' => 'string', 'enum' => [ 'up', 'down', ], ], 'BillingProductList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'Blob' => [ 'type' => 'blob', ], 'BlobAttributeValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'Blob', 'locationName' => 'value', ], ], ], 'BlockDeviceMapping' => [ 'type' => 'structure', 'members' => [ 'DeviceName' => [ 'shape' => 'String', 'locationName' => 'deviceName', ], 'VirtualName' => [ 'shape' => 'String', 'locationName' => 'virtualName', ], 'Ebs' => [ 'shape' => 'EbsBlockDevice', 'locationName' => 'ebs', ], 'NoDevice' => [ 'shape' => 'String', 'locationName' => 'noDevice', ], ], ], 'BlockDeviceMappingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BlockDeviceMapping', 'locationName' => 'item', ], ], 'BlockDeviceMappingRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BlockDeviceMapping', 'locationName' => 'BlockDeviceMapping', ], ], 'Boolean' => [ 'type' => 'boolean', ], 'BootModeType' => [ 'type' => 'string', 'enum' => [ 'legacy-bios', 'uefi', ], ], 'BootModeTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BootModeType', 'locationName' => 'item', ], ], 'BootModeValues' => [ 'type' => 'string', 'enum' => [ 'legacy-bios', 'uefi', 'uefi-preferred', ], ], 'BoxedDouble' => [ 'type' => 'double', ], 'BundleId' => [ 'type' => 'string', ], 'BundleIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BundleId', 'locationName' => 'BundleId', ], ], 'BundleInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'Storage', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'Storage' => [ 'shape' => 'Storage', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'BundleInstanceResult' => [ 'type' => 'structure', 'members' => [ 'BundleTask' => [ 'shape' => 'BundleTask', 'locationName' => 'bundleInstanceTask', ], ], ], 'BundleTask' => [ 'type' => 'structure', 'members' => [ 'BundleId' => [ 'shape' => 'String', 'locationName' => 'bundleId', ], 'BundleTaskError' => [ 'shape' => 'BundleTaskError', 'locationName' => 'error', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], 'State' => [ 'shape' => 'BundleTaskState', 'locationName' => 'state', ], 'Storage' => [ 'shape' => 'Storage', 'locationName' => 'storage', ], 'UpdateTime' => [ 'shape' => 'DateTime', 'locationName' => 'updateTime', ], ], ], 'BundleTaskError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'BundleTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BundleTask', 'locationName' => 'item', ], ], 'BundleTaskState' => [ 'type' => 'string', 'enum' => [ 'pending', 'waiting-for-shutdown', 'bundling', 'storing', 'cancelling', 'complete', 'failed', ], ], 'BurstablePerformance' => [ 'type' => 'string', 'enum' => [ 'included', 'required', 'excluded', ], ], 'BurstablePerformanceFlag' => [ 'type' => 'boolean', ], 'Byoasn' => [ 'type' => 'structure', 'members' => [ 'Asn' => [ 'shape' => 'String', 'locationName' => 'asn', ], 'IpamId' => [ 'shape' => 'IpamId', 'locationName' => 'ipamId', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'State' => [ 'shape' => 'AsnState', 'locationName' => 'state', ], ], ], 'ByoasnSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Byoasn', 'locationName' => 'item', ], ], 'ByoipCidr' => [ 'type' => 'structure', 'members' => [ 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'AsnAssociations' => [ 'shape' => 'AsnAssociationSet', 'locationName' => 'asnAssociationSet', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'State' => [ 'shape' => 'ByoipCidrState', 'locationName' => 'state', ], 'NetworkBorderGroup' => [ 'shape' => 'String', 'locationName' => 'networkBorderGroup', ], ], ], 'ByoipCidrSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ByoipCidr', 'locationName' => 'item', ], ], 'ByoipCidrState' => [ 'type' => 'string', 'enum' => [ 'advertised', 'deprovisioned', 'failed-deprovision', 'failed-provision', 'pending-deprovision', 'pending-provision', 'provisioned', 'provisioned-not-publicly-advertisable', ], ], 'CancelBatchErrorCode' => [ 'type' => 'string', 'enum' => [ 'fleetRequestIdDoesNotExist', 'fleetRequestIdMalformed', 'fleetRequestNotInCancellableState', 'unexpectedError', ], ], 'CancelBundleTaskRequest' => [ 'type' => 'structure', 'required' => [ 'BundleId', ], 'members' => [ 'BundleId' => [ 'shape' => 'BundleId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CancelBundleTaskResult' => [ 'type' => 'structure', 'members' => [ 'BundleTask' => [ 'shape' => 'BundleTask', 'locationName' => 'bundleInstanceTask', ], ], ], 'CancelCapacityReservationFleetError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'CancelCapacityReservationFleetErrorCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'CancelCapacityReservationFleetErrorMessage', 'locationName' => 'message', ], ], ], 'CancelCapacityReservationFleetErrorCode' => [ 'type' => 'string', ], 'CancelCapacityReservationFleetErrorMessage' => [ 'type' => 'string', ], 'CancelCapacityReservationFleetsRequest' => [ 'type' => 'structure', 'required' => [ 'CapacityReservationFleetIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'CapacityReservationFleetIds' => [ 'shape' => 'CapacityReservationFleetIdSet', 'locationName' => 'CapacityReservationFleetId', ], ], ], 'CancelCapacityReservationFleetsResult' => [ 'type' => 'structure', 'members' => [ 'SuccessfulFleetCancellations' => [ 'shape' => 'CapacityReservationFleetCancellationStateSet', 'locationName' => 'successfulFleetCancellationSet', ], 'FailedFleetCancellations' => [ 'shape' => 'FailedCapacityReservationFleetCancellationResultSet', 'locationName' => 'failedFleetCancellationSet', ], ], ], 'CancelCapacityReservationRequest' => [ 'type' => 'structure', 'required' => [ 'CapacityReservationId', ], 'members' => [ 'CapacityReservationId' => [ 'shape' => 'CapacityReservationId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CancelCapacityReservationResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'CancelConversionRequest' => [ 'type' => 'structure', 'required' => [ 'ConversionTaskId', ], 'members' => [ 'ConversionTaskId' => [ 'shape' => 'ConversionTaskId', 'locationName' => 'conversionTaskId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'ReasonMessage' => [ 'shape' => 'String', 'locationName' => 'reasonMessage', ], ], ], 'CancelExportTaskRequest' => [ 'type' => 'structure', 'required' => [ 'ExportTaskId', ], 'members' => [ 'ExportTaskId' => [ 'shape' => 'ExportVmTaskId', 'locationName' => 'exportTaskId', ], ], ], 'CancelImageLaunchPermissionRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CancelImageLaunchPermissionResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'CancelImportTaskRequest' => [ 'type' => 'structure', 'members' => [ 'CancelReason' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ImportTaskId' => [ 'shape' => 'ImportTaskId', ], ], ], 'CancelImportTaskResult' => [ 'type' => 'structure', 'members' => [ 'ImportTaskId' => [ 'shape' => 'String', 'locationName' => 'importTaskId', ], 'PreviousState' => [ 'shape' => 'String', 'locationName' => 'previousState', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], ], ], 'CancelReservedInstancesListingRequest' => [ 'type' => 'structure', 'required' => [ 'ReservedInstancesListingId', ], 'members' => [ 'ReservedInstancesListingId' => [ 'shape' => 'ReservedInstancesListingId', 'locationName' => 'reservedInstancesListingId', ], ], ], 'CancelReservedInstancesListingResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesListings' => [ 'shape' => 'ReservedInstancesListingList', 'locationName' => 'reservedInstancesListingsSet', ], ], ], 'CancelSpotFleetRequestsError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'CancelBatchErrorCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'CancelSpotFleetRequestsErrorItem' => [ 'type' => 'structure', 'members' => [ 'Error' => [ 'shape' => 'CancelSpotFleetRequestsError', 'locationName' => 'error', ], 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], ], ], 'CancelSpotFleetRequestsErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CancelSpotFleetRequestsErrorItem', 'locationName' => 'item', ], ], 'CancelSpotFleetRequestsRequest' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestIds', 'TerminateInstances', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SpotFleetRequestIds' => [ 'shape' => 'SpotFleetRequestIdList', 'locationName' => 'spotFleetRequestId', ], 'TerminateInstances' => [ 'shape' => 'Boolean', 'locationName' => 'terminateInstances', ], ], ], 'CancelSpotFleetRequestsResponse' => [ 'type' => 'structure', 'members' => [ 'SuccessfulFleetRequests' => [ 'shape' => 'CancelSpotFleetRequestsSuccessSet', 'locationName' => 'successfulFleetRequestSet', ], 'UnsuccessfulFleetRequests' => [ 'shape' => 'CancelSpotFleetRequestsErrorSet', 'locationName' => 'unsuccessfulFleetRequestSet', ], ], ], 'CancelSpotFleetRequestsSuccessItem' => [ 'type' => 'structure', 'members' => [ 'CurrentSpotFleetRequestState' => [ 'shape' => 'BatchState', 'locationName' => 'currentSpotFleetRequestState', ], 'PreviousSpotFleetRequestState' => [ 'shape' => 'BatchState', 'locationName' => 'previousSpotFleetRequestState', ], 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], ], ], 'CancelSpotFleetRequestsSuccessSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CancelSpotFleetRequestsSuccessItem', 'locationName' => 'item', ], ], 'CancelSpotInstanceRequestState' => [ 'type' => 'string', 'enum' => [ 'active', 'open', 'closed', 'cancelled', 'completed', ], ], 'CancelSpotInstanceRequestsRequest' => [ 'type' => 'structure', 'required' => [ 'SpotInstanceRequestIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SpotInstanceRequestIds' => [ 'shape' => 'SpotInstanceRequestIdList', 'locationName' => 'SpotInstanceRequestId', ], ], ], 'CancelSpotInstanceRequestsResult' => [ 'type' => 'structure', 'members' => [ 'CancelledSpotInstanceRequests' => [ 'shape' => 'CancelledSpotInstanceRequestList', 'locationName' => 'spotInstanceRequestSet', ], ], ], 'CancelledSpotInstanceRequest' => [ 'type' => 'structure', 'members' => [ 'SpotInstanceRequestId' => [ 'shape' => 'String', 'locationName' => 'spotInstanceRequestId', ], 'State' => [ 'shape' => 'CancelSpotInstanceRequestState', 'locationName' => 'state', ], ], ], 'CancelledSpotInstanceRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CancelledSpotInstanceRequest', 'locationName' => 'item', ], ], 'CapacityAllocation' => [ 'type' => 'structure', 'members' => [ 'AllocationType' => [ 'shape' => 'AllocationType', 'locationName' => 'allocationType', ], 'Count' => [ 'shape' => 'Integer', 'locationName' => 'count', ], ], ], 'CapacityAllocations' => [ 'type' => 'list', 'member' => [ 'shape' => 'CapacityAllocation', 'locationName' => 'item', ], ], 'CapacityBlockOffering' => [ 'type' => 'structure', 'members' => [ 'CapacityBlockOfferingId' => [ 'shape' => 'OfferingId', 'locationName' => 'capacityBlockOfferingId', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'StartDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'startDate', ], 'EndDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'endDate', ], 'CapacityBlockDurationHours' => [ 'shape' => 'Integer', 'locationName' => 'capacityBlockDurationHours', ], 'UpfrontFee' => [ 'shape' => 'String', 'locationName' => 'upfrontFee', ], 'CurrencyCode' => [ 'shape' => 'String', 'locationName' => 'currencyCode', ], 'Tenancy' => [ 'shape' => 'CapacityReservationTenancy', 'locationName' => 'tenancy', ], ], ], 'CapacityBlockOfferingSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CapacityBlockOffering', 'locationName' => 'item', ], ], 'CapacityReservation' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationId' => [ 'shape' => 'String', 'locationName' => 'capacityReservationId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'CapacityReservationArn' => [ 'shape' => 'String', 'locationName' => 'capacityReservationArn', ], 'AvailabilityZoneId' => [ 'shape' => 'String', 'locationName' => 'availabilityZoneId', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'InstancePlatform' => [ 'shape' => 'CapacityReservationInstancePlatform', 'locationName' => 'instancePlatform', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Tenancy' => [ 'shape' => 'CapacityReservationTenancy', 'locationName' => 'tenancy', ], 'TotalInstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'totalInstanceCount', ], 'AvailableInstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'availableInstanceCount', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'EphemeralStorage' => [ 'shape' => 'Boolean', 'locationName' => 'ephemeralStorage', ], 'State' => [ 'shape' => 'CapacityReservationState', 'locationName' => 'state', ], 'StartDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'startDate', ], 'EndDate' => [ 'shape' => 'DateTime', 'locationName' => 'endDate', ], 'EndDateType' => [ 'shape' => 'EndDateType', 'locationName' => 'endDateType', ], 'InstanceMatchCriteria' => [ 'shape' => 'InstanceMatchCriteria', 'locationName' => 'instanceMatchCriteria', ], 'CreateDate' => [ 'shape' => 'DateTime', 'locationName' => 'createDate', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'OutpostArn' => [ 'shape' => 'OutpostArn', 'locationName' => 'outpostArn', ], 'CapacityReservationFleetId' => [ 'shape' => 'String', 'locationName' => 'capacityReservationFleetId', ], 'PlacementGroupArn' => [ 'shape' => 'PlacementGroupArn', 'locationName' => 'placementGroupArn', ], 'CapacityAllocations' => [ 'shape' => 'CapacityAllocations', 'locationName' => 'capacityAllocationSet', ], 'ReservationType' => [ 'shape' => 'CapacityReservationType', 'locationName' => 'reservationType', ], ], ], 'CapacityReservationFleet' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationFleetId' => [ 'shape' => 'CapacityReservationFleetId', 'locationName' => 'capacityReservationFleetId', ], 'CapacityReservationFleetArn' => [ 'shape' => 'String', 'locationName' => 'capacityReservationFleetArn', ], 'State' => [ 'shape' => 'CapacityReservationFleetState', 'locationName' => 'state', ], 'TotalTargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'totalTargetCapacity', ], 'TotalFulfilledCapacity' => [ 'shape' => 'Double', 'locationName' => 'totalFulfilledCapacity', ], 'Tenancy' => [ 'shape' => 'FleetCapacityReservationTenancy', 'locationName' => 'tenancy', ], 'EndDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'endDate', ], 'CreateTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'createTime', ], 'InstanceMatchCriteria' => [ 'shape' => 'FleetInstanceMatchCriteria', 'locationName' => 'instanceMatchCriteria', ], 'AllocationStrategy' => [ 'shape' => 'String', 'locationName' => 'allocationStrategy', ], 'InstanceTypeSpecifications' => [ 'shape' => 'FleetCapacityReservationSet', 'locationName' => 'instanceTypeSpecificationSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'CapacityReservationFleetCancellationState' => [ 'type' => 'structure', 'members' => [ 'CurrentFleetState' => [ 'shape' => 'CapacityReservationFleetState', 'locationName' => 'currentFleetState', ], 'PreviousFleetState' => [ 'shape' => 'CapacityReservationFleetState', 'locationName' => 'previousFleetState', ], 'CapacityReservationFleetId' => [ 'shape' => 'CapacityReservationFleetId', 'locationName' => 'capacityReservationFleetId', ], ], ], 'CapacityReservationFleetCancellationStateSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CapacityReservationFleetCancellationState', 'locationName' => 'item', ], ], 'CapacityReservationFleetId' => [ 'type' => 'string', ], 'CapacityReservationFleetIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CapacityReservationFleetId', 'locationName' => 'item', ], ], 'CapacityReservationFleetSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CapacityReservationFleet', 'locationName' => 'item', ], ], 'CapacityReservationFleetState' => [ 'type' => 'string', 'enum' => [ 'submitted', 'modifying', 'active', 'partially_fulfilled', 'expiring', 'expired', 'cancelling', 'cancelled', 'failed', ], ], 'CapacityReservationGroup' => [ 'type' => 'structure', 'members' => [ 'GroupArn' => [ 'shape' => 'String', 'locationName' => 'groupArn', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], ], ], 'CapacityReservationGroupSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CapacityReservationGroup', 'locationName' => 'item', ], ], 'CapacityReservationId' => [ 'type' => 'string', ], 'CapacityReservationIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CapacityReservationId', 'locationName' => 'item', ], ], 'CapacityReservationInstancePlatform' => [ 'type' => 'string', 'enum' => [ 'Linux/UNIX', 'Red Hat Enterprise Linux', 'SUSE Linux', 'Windows', 'Windows with SQL Server', 'Windows with SQL Server Enterprise', 'Windows with SQL Server Standard', 'Windows with SQL Server Web', 'Linux with SQL Server Standard', 'Linux with SQL Server Web', 'Linux with SQL Server Enterprise', 'RHEL with SQL Server Standard', 'RHEL with SQL Server Enterprise', 'RHEL with SQL Server Web', 'RHEL with HA', 'RHEL with HA and SQL Server Standard', 'RHEL with HA and SQL Server Enterprise', 'Ubuntu Pro', ], ], 'CapacityReservationOptions' => [ 'type' => 'structure', 'members' => [ 'UsageStrategy' => [ 'shape' => 'FleetCapacityReservationUsageStrategy', 'locationName' => 'usageStrategy', ], ], ], 'CapacityReservationOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'UsageStrategy' => [ 'shape' => 'FleetCapacityReservationUsageStrategy', ], ], ], 'CapacityReservationPreference' => [ 'type' => 'string', 'enum' => [ 'open', 'none', ], ], 'CapacityReservationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CapacityReservation', 'locationName' => 'item', ], ], 'CapacityReservationSpecification' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationPreference' => [ 'shape' => 'CapacityReservationPreference', ], 'CapacityReservationTarget' => [ 'shape' => 'CapacityReservationTarget', ], ], ], 'CapacityReservationSpecificationResponse' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationPreference' => [ 'shape' => 'CapacityReservationPreference', 'locationName' => 'capacityReservationPreference', ], 'CapacityReservationTarget' => [ 'shape' => 'CapacityReservationTargetResponse', 'locationName' => 'capacityReservationTarget', ], ], ], 'CapacityReservationState' => [ 'type' => 'string', 'enum' => [ 'active', 'expired', 'cancelled', 'pending', 'failed', 'scheduled', 'payment-pending', 'payment-failed', ], ], 'CapacityReservationTarget' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationId' => [ 'shape' => 'CapacityReservationId', ], 'CapacityReservationResourceGroupArn' => [ 'shape' => 'String', ], ], ], 'CapacityReservationTargetResponse' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationId' => [ 'shape' => 'String', 'locationName' => 'capacityReservationId', ], 'CapacityReservationResourceGroupArn' => [ 'shape' => 'String', 'locationName' => 'capacityReservationResourceGroupArn', ], ], ], 'CapacityReservationTenancy' => [ 'type' => 'string', 'enum' => [ 'default', 'dedicated', ], ], 'CapacityReservationType' => [ 'type' => 'string', 'enum' => [ 'default', 'capacity-block', ], ], 'CarrierGateway' => [ 'type' => 'structure', 'members' => [ 'CarrierGatewayId' => [ 'shape' => 'CarrierGatewayId', 'locationName' => 'carrierGatewayId', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], 'State' => [ 'shape' => 'CarrierGatewayState', 'locationName' => 'state', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'CarrierGatewayId' => [ 'type' => 'string', ], 'CarrierGatewayIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CarrierGatewayId', ], ], 'CarrierGatewayMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'CarrierGatewaySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CarrierGateway', 'locationName' => 'item', ], ], 'CarrierGatewayState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'deleting', 'deleted', ], ], 'CertificateArn' => [ 'type' => 'string', ], 'CertificateAuthentication' => [ 'type' => 'structure', 'members' => [ 'ClientRootCertificateChain' => [ 'shape' => 'String', 'locationName' => 'clientRootCertificateChain', ], ], ], 'CertificateAuthenticationRequest' => [ 'type' => 'structure', 'members' => [ 'ClientRootCertificateChainArn' => [ 'shape' => 'String', ], ], ], 'CertificateId' => [ 'type' => 'string', ], 'CidrAuthorizationContext' => [ 'type' => 'structure', 'required' => [ 'Message', 'Signature', ], 'members' => [ 'Message' => [ 'shape' => 'String', ], 'Signature' => [ 'shape' => 'String', ], ], ], 'CidrBlock' => [ 'type' => 'structure', 'members' => [ 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], ], ], 'CidrBlockSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CidrBlock', 'locationName' => 'item', ], ], 'ClassicLinkDnsSupport' => [ 'type' => 'structure', 'members' => [ 'ClassicLinkDnsSupported' => [ 'shape' => 'Boolean', 'locationName' => 'classicLinkDnsSupported', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'ClassicLinkDnsSupportList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClassicLinkDnsSupport', 'locationName' => 'item', ], ], 'ClassicLinkInstance' => [ 'type' => 'structure', 'members' => [ 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'ClassicLinkInstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClassicLinkInstance', 'locationName' => 'item', ], ], 'ClassicLoadBalancer' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], ], ], 'ClassicLoadBalancers' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClassicLoadBalancer', 'locationName' => 'item', ], 'max' => 5, 'min' => 1, ], 'ClassicLoadBalancersConfig' => [ 'type' => 'structure', 'members' => [ 'ClassicLoadBalancers' => [ 'shape' => 'ClassicLoadBalancers', 'locationName' => 'classicLoadBalancers', ], ], ], 'ClientCertificateRevocationListStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'ClientCertificateRevocationListStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'ClientCertificateRevocationListStatusCode' => [ 'type' => 'string', 'enum' => [ 'pending', 'active', ], ], 'ClientConnectOptions' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], 'LambdaFunctionArn' => [ 'shape' => 'String', ], ], ], 'ClientConnectResponseOptions' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], 'LambdaFunctionArn' => [ 'shape' => 'String', 'locationName' => 'lambdaFunctionArn', ], 'Status' => [ 'shape' => 'ClientVpnEndpointAttributeStatus', 'locationName' => 'status', ], ], ], 'ClientData' => [ 'type' => 'structure', 'members' => [ 'Comment' => [ 'shape' => 'String', ], 'UploadEnd' => [ 'shape' => 'DateTime', ], 'UploadSize' => [ 'shape' => 'Double', ], 'UploadStart' => [ 'shape' => 'DateTime', ], ], ], 'ClientLoginBannerOptions' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], 'BannerText' => [ 'shape' => 'String', ], ], ], 'ClientLoginBannerResponseOptions' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], 'BannerText' => [ 'shape' => 'String', 'locationName' => 'bannerText', ], ], ], 'ClientSecretType' => [ 'type' => 'string', 'sensitive' => true, ], 'ClientVpnAuthentication' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'ClientVpnAuthenticationType', 'locationName' => 'type', ], 'ActiveDirectory' => [ 'shape' => 'DirectoryServiceAuthentication', 'locationName' => 'activeDirectory', ], 'MutualAuthentication' => [ 'shape' => 'CertificateAuthentication', 'locationName' => 'mutualAuthentication', ], 'FederatedAuthentication' => [ 'shape' => 'FederatedAuthentication', 'locationName' => 'federatedAuthentication', ], ], ], 'ClientVpnAuthenticationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClientVpnAuthentication', 'locationName' => 'item', ], ], 'ClientVpnAuthenticationRequest' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'ClientVpnAuthenticationType', ], 'ActiveDirectory' => [ 'shape' => 'DirectoryServiceAuthenticationRequest', ], 'MutualAuthentication' => [ 'shape' => 'CertificateAuthenticationRequest', ], 'FederatedAuthentication' => [ 'shape' => 'FederatedAuthenticationRequest', ], ], ], 'ClientVpnAuthenticationRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClientVpnAuthenticationRequest', ], ], 'ClientVpnAuthenticationType' => [ 'type' => 'string', 'enum' => [ 'certificate-authentication', 'directory-service-authentication', 'federated-authentication', ], ], 'ClientVpnAuthorizationRuleStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'ClientVpnAuthorizationRuleStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'ClientVpnAuthorizationRuleStatusCode' => [ 'type' => 'string', 'enum' => [ 'authorizing', 'active', 'failed', 'revoking', ], ], 'ClientVpnConnection' => [ 'type' => 'structure', 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'String', 'locationName' => 'clientVpnEndpointId', ], 'Timestamp' => [ 'shape' => 'String', 'locationName' => 'timestamp', ], 'ConnectionId' => [ 'shape' => 'String', 'locationName' => 'connectionId', ], 'Username' => [ 'shape' => 'String', 'locationName' => 'username', ], 'ConnectionEstablishedTime' => [ 'shape' => 'String', 'locationName' => 'connectionEstablishedTime', ], 'IngressBytes' => [ 'shape' => 'String', 'locationName' => 'ingressBytes', ], 'EgressBytes' => [ 'shape' => 'String', 'locationName' => 'egressBytes', ], 'IngressPackets' => [ 'shape' => 'String', 'locationName' => 'ingressPackets', ], 'EgressPackets' => [ 'shape' => 'String', 'locationName' => 'egressPackets', ], 'ClientIp' => [ 'shape' => 'String', 'locationName' => 'clientIp', ], 'CommonName' => [ 'shape' => 'String', 'locationName' => 'commonName', ], 'Status' => [ 'shape' => 'ClientVpnConnectionStatus', 'locationName' => 'status', ], 'ConnectionEndTime' => [ 'shape' => 'String', 'locationName' => 'connectionEndTime', ], 'PostureComplianceStatuses' => [ 'shape' => 'ValueStringList', 'locationName' => 'postureComplianceStatusSet', ], ], ], 'ClientVpnConnectionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClientVpnConnection', 'locationName' => 'item', ], ], 'ClientVpnConnectionStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'ClientVpnConnectionStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'ClientVpnConnectionStatusCode' => [ 'type' => 'string', 'enum' => [ 'active', 'failed-to-terminate', 'terminating', 'terminated', ], ], 'ClientVpnEndpoint' => [ 'type' => 'structure', 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'String', 'locationName' => 'clientVpnEndpointId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Status' => [ 'shape' => 'ClientVpnEndpointStatus', 'locationName' => 'status', ], 'CreationTime' => [ 'shape' => 'String', 'locationName' => 'creationTime', ], 'DeletionTime' => [ 'shape' => 'String', 'locationName' => 'deletionTime', ], 'DnsName' => [ 'shape' => 'String', 'locationName' => 'dnsName', ], 'ClientCidrBlock' => [ 'shape' => 'String', 'locationName' => 'clientCidrBlock', ], 'DnsServers' => [ 'shape' => 'ValueStringList', 'locationName' => 'dnsServer', ], 'SplitTunnel' => [ 'shape' => 'Boolean', 'locationName' => 'splitTunnel', ], 'VpnProtocol' => [ 'shape' => 'VpnProtocol', 'locationName' => 'vpnProtocol', ], 'TransportProtocol' => [ 'shape' => 'TransportProtocol', 'locationName' => 'transportProtocol', ], 'VpnPort' => [ 'shape' => 'Integer', 'locationName' => 'vpnPort', ], 'AssociatedTargetNetworks' => [ 'shape' => 'AssociatedTargetNetworkSet', 'deprecated' => true, 'deprecatedMessage' => 'This property is deprecated. To view the target networks associated with a Client VPN endpoint, call DescribeClientVpnTargetNetworks and inspect the clientVpnTargetNetworks response element.', 'locationName' => 'associatedTargetNetwork', ], 'ServerCertificateArn' => [ 'shape' => 'String', 'locationName' => 'serverCertificateArn', ], 'AuthenticationOptions' => [ 'shape' => 'ClientVpnAuthenticationList', 'locationName' => 'authenticationOptions', ], 'ConnectionLogOptions' => [ 'shape' => 'ConnectionLogResponseOptions', 'locationName' => 'connectionLogOptions', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'SecurityGroupIds' => [ 'shape' => 'ClientVpnSecurityGroupIdSet', 'locationName' => 'securityGroupIdSet', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], 'SelfServicePortalUrl' => [ 'shape' => 'String', 'locationName' => 'selfServicePortalUrl', ], 'ClientConnectOptions' => [ 'shape' => 'ClientConnectResponseOptions', 'locationName' => 'clientConnectOptions', ], 'SessionTimeoutHours' => [ 'shape' => 'Integer', 'locationName' => 'sessionTimeoutHours', ], 'ClientLoginBannerOptions' => [ 'shape' => 'ClientLoginBannerResponseOptions', 'locationName' => 'clientLoginBannerOptions', ], ], ], 'ClientVpnEndpointAttributeStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'ClientVpnEndpointAttributeStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'ClientVpnEndpointAttributeStatusCode' => [ 'type' => 'string', 'enum' => [ 'applying', 'applied', ], ], 'ClientVpnEndpointId' => [ 'type' => 'string', ], 'ClientVpnEndpointIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClientVpnEndpointId', 'locationName' => 'item', ], ], 'ClientVpnEndpointStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'ClientVpnEndpointStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'ClientVpnEndpointStatusCode' => [ 'type' => 'string', 'enum' => [ 'pending-associate', 'available', 'deleting', 'deleted', ], ], 'ClientVpnRoute' => [ 'type' => 'structure', 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'String', 'locationName' => 'clientVpnEndpointId', ], 'DestinationCidr' => [ 'shape' => 'String', 'locationName' => 'destinationCidr', ], 'TargetSubnet' => [ 'shape' => 'String', 'locationName' => 'targetSubnet', ], 'Type' => [ 'shape' => 'String', 'locationName' => 'type', ], 'Origin' => [ 'shape' => 'String', 'locationName' => 'origin', ], 'Status' => [ 'shape' => 'ClientVpnRouteStatus', 'locationName' => 'status', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], ], ], 'ClientVpnRouteSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClientVpnRoute', 'locationName' => 'item', ], ], 'ClientVpnRouteStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'ClientVpnRouteStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'ClientVpnRouteStatusCode' => [ 'type' => 'string', 'enum' => [ 'creating', 'active', 'failed', 'deleting', ], ], 'ClientVpnSecurityGroupIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'item', ], ], 'CloudWatchLogGroupArn' => [ 'type' => 'string', ], 'CloudWatchLogOptions' => [ 'type' => 'structure', 'members' => [ 'LogEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'logEnabled', ], 'LogGroupArn' => [ 'shape' => 'String', 'locationName' => 'logGroupArn', ], 'LogOutputFormat' => [ 'shape' => 'String', 'locationName' => 'logOutputFormat', ], ], ], 'CloudWatchLogOptionsSpecification' => [ 'type' => 'structure', 'members' => [ 'LogEnabled' => [ 'shape' => 'Boolean', ], 'LogGroupArn' => [ 'shape' => 'CloudWatchLogGroupArn', ], 'LogOutputFormat' => [ 'shape' => 'String', ], ], ], 'CoipAddressUsage' => [ 'type' => 'structure', 'members' => [ 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'AwsAccountId' => [ 'shape' => 'String', 'locationName' => 'awsAccountId', ], 'AwsService' => [ 'shape' => 'String', 'locationName' => 'awsService', ], 'CoIp' => [ 'shape' => 'String', 'locationName' => 'coIp', ], ], ], 'CoipAddressUsageSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CoipAddressUsage', 'locationName' => 'item', ], ], 'CoipCidr' => [ 'type' => 'structure', 'members' => [ 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'CoipPoolId' => [ 'shape' => 'Ipv4PoolCoipId', 'locationName' => 'coipPoolId', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'String', 'locationName' => 'localGatewayRouteTableId', ], ], ], 'CoipPool' => [ 'type' => 'structure', 'members' => [ 'PoolId' => [ 'shape' => 'Ipv4PoolCoipId', 'locationName' => 'poolId', ], 'PoolCidrs' => [ 'shape' => 'ValueStringList', 'locationName' => 'poolCidrSet', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', 'locationName' => 'localGatewayRouteTableId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'PoolArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'poolArn', ], ], ], 'CoipPoolId' => [ 'type' => 'string', ], 'CoipPoolIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv4PoolCoipId', 'locationName' => 'item', ], ], 'CoipPoolMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'CoipPoolSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CoipPool', 'locationName' => 'item', ], ], 'ComponentAccount' => [ 'type' => 'string', 'pattern' => '\\d{12}', ], 'ComponentRegion' => [ 'type' => 'string', 'pattern' => '[a-z]{2}-[a-z]+-[1-9]+', ], 'ConfirmProductInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'ProductCode', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'ProductCode' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'ConfirmProductInstanceResult' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ConnectionLogOptions' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], 'CloudwatchLogGroup' => [ 'shape' => 'String', ], 'CloudwatchLogStream' => [ 'shape' => 'String', ], ], ], 'ConnectionLogResponseOptions' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], 'CloudwatchLogGroup' => [ 'shape' => 'String', ], 'CloudwatchLogStream' => [ 'shape' => 'String', ], ], ], 'ConnectionNotification' => [ 'type' => 'structure', 'members' => [ 'ConnectionNotificationId' => [ 'shape' => 'String', 'locationName' => 'connectionNotificationId', ], 'ServiceId' => [ 'shape' => 'String', 'locationName' => 'serviceId', ], 'VpcEndpointId' => [ 'shape' => 'String', 'locationName' => 'vpcEndpointId', ], 'ConnectionNotificationType' => [ 'shape' => 'ConnectionNotificationType', 'locationName' => 'connectionNotificationType', ], 'ConnectionNotificationArn' => [ 'shape' => 'String', 'locationName' => 'connectionNotificationArn', ], 'ConnectionEvents' => [ 'shape' => 'ValueStringList', 'locationName' => 'connectionEvents', ], 'ConnectionNotificationState' => [ 'shape' => 'ConnectionNotificationState', 'locationName' => 'connectionNotificationState', ], ], ], 'ConnectionNotificationId' => [ 'type' => 'string', ], 'ConnectionNotificationIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConnectionNotificationId', 'locationName' => 'item', ], ], 'ConnectionNotificationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConnectionNotification', 'locationName' => 'item', ], ], 'ConnectionNotificationState' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Disabled', ], ], 'ConnectionNotificationType' => [ 'type' => 'string', 'enum' => [ 'Topic', ], ], 'ConnectionTrackingConfiguration' => [ 'type' => 'structure', 'members' => [ 'TcpEstablishedTimeout' => [ 'shape' => 'Integer', 'locationName' => 'tcpEstablishedTimeout', ], 'UdpStreamTimeout' => [ 'shape' => 'Integer', 'locationName' => 'udpStreamTimeout', ], 'UdpTimeout' => [ 'shape' => 'Integer', 'locationName' => 'udpTimeout', ], ], ], 'ConnectionTrackingSpecification' => [ 'type' => 'structure', 'members' => [ 'TcpEstablishedTimeout' => [ 'shape' => 'Integer', 'locationName' => 'tcpEstablishedTimeout', ], 'UdpTimeout' => [ 'shape' => 'Integer', 'locationName' => 'udpTimeout', ], 'UdpStreamTimeout' => [ 'shape' => 'Integer', 'locationName' => 'udpStreamTimeout', ], ], ], 'ConnectionTrackingSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'TcpEstablishedTimeout' => [ 'shape' => 'Integer', ], 'UdpStreamTimeout' => [ 'shape' => 'Integer', ], 'UdpTimeout' => [ 'shape' => 'Integer', ], ], ], 'ConnectionTrackingSpecificationResponse' => [ 'type' => 'structure', 'members' => [ 'TcpEstablishedTimeout' => [ 'shape' => 'Integer', 'locationName' => 'tcpEstablishedTimeout', ], 'UdpStreamTimeout' => [ 'shape' => 'Integer', 'locationName' => 'udpStreamTimeout', ], 'UdpTimeout' => [ 'shape' => 'Integer', 'locationName' => 'udpTimeout', ], ], ], 'ConnectivityType' => [ 'type' => 'string', 'enum' => [ 'private', 'public', ], ], 'ContainerFormat' => [ 'type' => 'string', 'enum' => [ 'ova', ], ], 'ConversionIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConversionTaskId', 'locationName' => 'item', ], ], 'ConversionTask' => [ 'type' => 'structure', 'members' => [ 'ConversionTaskId' => [ 'shape' => 'String', 'locationName' => 'conversionTaskId', ], 'ExpirationTime' => [ 'shape' => 'String', 'locationName' => 'expirationTime', ], 'ImportInstance' => [ 'shape' => 'ImportInstanceTaskDetails', 'locationName' => 'importInstance', ], 'ImportVolume' => [ 'shape' => 'ImportVolumeTaskDetails', 'locationName' => 'importVolume', ], 'State' => [ 'shape' => 'ConversionTaskState', 'locationName' => 'state', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ConversionTaskId' => [ 'type' => 'string', ], 'ConversionTaskState' => [ 'type' => 'string', 'enum' => [ 'active', 'cancelling', 'cancelled', 'completed', ], ], 'CoolOffPeriodRequestHours' => [ 'type' => 'integer', 'max' => 72, 'min' => 1, ], 'CoolOffPeriodResponseHours' => [ 'type' => 'integer', ], 'CopyFpgaImageRequest' => [ 'type' => 'structure', 'required' => [ 'SourceFpgaImageId', 'SourceRegion', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'SourceFpgaImageId' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Name' => [ 'shape' => 'String', ], 'SourceRegion' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', ], ], ], 'CopyFpgaImageResult' => [ 'type' => 'structure', 'members' => [ 'FpgaImageId' => [ 'shape' => 'String', 'locationName' => 'fpgaImageId', ], ], ], 'CopyImageRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'SourceImageId', 'SourceRegion', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'KmsKeyId' => [ 'shape' => 'KmsKeyId', 'locationName' => 'kmsKeyId', ], 'Name' => [ 'shape' => 'String', ], 'SourceImageId' => [ 'shape' => 'String', ], 'SourceRegion' => [ 'shape' => 'String', ], 'DestinationOutpostArn' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'CopyImageTags' => [ 'shape' => 'Boolean', ], ], ], 'CopyImageResult' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], ], ], 'CopySnapshotRequest' => [ 'type' => 'structure', 'required' => [ 'SourceRegion', 'SourceSnapshotId', ], 'members' => [ 'Description' => [ 'shape' => 'String', ], 'DestinationOutpostArn' => [ 'shape' => 'String', ], 'DestinationRegion' => [ 'shape' => 'String', 'locationName' => 'destinationRegion', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'KmsKeyId' => [ 'shape' => 'KmsKeyId', 'locationName' => 'kmsKeyId', ], 'PresignedUrl' => [ 'shape' => 'CopySnapshotRequestPSU', 'locationName' => 'presignedUrl', ], 'SourceRegion' => [ 'shape' => 'String', ], 'SourceSnapshotId' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CopySnapshotRequestPSU' => [ 'type' => 'string', 'sensitive' => true, ], 'CopySnapshotResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'CopyTagsFromSource' => [ 'type' => 'string', 'enum' => [ 'volume', ], ], 'CoreCount' => [ 'type' => 'integer', ], 'CoreCountList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CoreCount', 'locationName' => 'item', ], ], 'CoreNetworkArn' => [ 'type' => 'string', ], 'CpuManufacturer' => [ 'type' => 'string', 'enum' => [ 'intel', 'amd', 'amazon-web-services', ], ], 'CpuManufacturerName' => [ 'type' => 'string', ], 'CpuManufacturerSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CpuManufacturer', 'locationName' => 'item', ], ], 'CpuOptions' => [ 'type' => 'structure', 'members' => [ 'CoreCount' => [ 'shape' => 'Integer', 'locationName' => 'coreCount', ], 'ThreadsPerCore' => [ 'shape' => 'Integer', 'locationName' => 'threadsPerCore', ], 'AmdSevSnp' => [ 'shape' => 'AmdSevSnpSpecification', 'locationName' => 'amdSevSnp', ], ], ], 'CpuOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'CoreCount' => [ 'shape' => 'Integer', ], 'ThreadsPerCore' => [ 'shape' => 'Integer', ], 'AmdSevSnp' => [ 'shape' => 'AmdSevSnpSpecification', ], ], ], 'CreateCapacityReservationFleetRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceTypeSpecifications', 'TotalTargetCapacity', ], 'members' => [ 'AllocationStrategy' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'InstanceTypeSpecifications' => [ 'shape' => 'ReservationFleetInstanceSpecificationList', 'locationName' => 'InstanceTypeSpecification', ], 'Tenancy' => [ 'shape' => 'FleetCapacityReservationTenancy', ], 'TotalTargetCapacity' => [ 'shape' => 'Integer', ], 'EndDate' => [ 'shape' => 'MillisecondDateTime', ], 'InstanceMatchCriteria' => [ 'shape' => 'FleetInstanceMatchCriteria', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateCapacityReservationFleetResult' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationFleetId' => [ 'shape' => 'CapacityReservationFleetId', 'locationName' => 'capacityReservationFleetId', ], 'State' => [ 'shape' => 'CapacityReservationFleetState', 'locationName' => 'state', ], 'TotalTargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'totalTargetCapacity', ], 'TotalFulfilledCapacity' => [ 'shape' => 'Double', 'locationName' => 'totalFulfilledCapacity', ], 'InstanceMatchCriteria' => [ 'shape' => 'FleetInstanceMatchCriteria', 'locationName' => 'instanceMatchCriteria', ], 'AllocationStrategy' => [ 'shape' => 'String', 'locationName' => 'allocationStrategy', ], 'CreateTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'createTime', ], 'EndDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'endDate', ], 'Tenancy' => [ 'shape' => 'FleetCapacityReservationTenancy', 'locationName' => 'tenancy', ], 'FleetCapacityReservations' => [ 'shape' => 'FleetCapacityReservationSet', 'locationName' => 'fleetCapacityReservationSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'CreateCapacityReservationRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceType', 'InstancePlatform', 'InstanceCount', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', ], 'InstanceType' => [ 'shape' => 'String', ], 'InstancePlatform' => [ 'shape' => 'CapacityReservationInstancePlatform', ], 'AvailabilityZone' => [ 'shape' => 'AvailabilityZoneName', ], 'AvailabilityZoneId' => [ 'shape' => 'AvailabilityZoneId', ], 'Tenancy' => [ 'shape' => 'CapacityReservationTenancy', ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'EbsOptimized' => [ 'shape' => 'Boolean', ], 'EphemeralStorage' => [ 'shape' => 'Boolean', ], 'EndDate' => [ 'shape' => 'DateTime', ], 'EndDateType' => [ 'shape' => 'EndDateType', ], 'InstanceMatchCriteria' => [ 'shape' => 'InstanceMatchCriteria', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'OutpostArn' => [ 'shape' => 'OutpostArn', ], 'PlacementGroupArn' => [ 'shape' => 'PlacementGroupArn', ], ], ], 'CreateCapacityReservationResult' => [ 'type' => 'structure', 'members' => [ 'CapacityReservation' => [ 'shape' => 'CapacityReservation', 'locationName' => 'capacityReservation', ], ], ], 'CreateCarrierGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'VpcId' => [ 'shape' => 'VpcId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateCarrierGatewayResult' => [ 'type' => 'structure', 'members' => [ 'CarrierGateway' => [ 'shape' => 'CarrierGateway', 'locationName' => 'carrierGateway', ], ], ], 'CreateClientVpnEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'ClientCidrBlock', 'ServerCertificateArn', 'AuthenticationOptions', 'ConnectionLogOptions', ], 'members' => [ 'ClientCidrBlock' => [ 'shape' => 'String', ], 'ServerCertificateArn' => [ 'shape' => 'String', ], 'AuthenticationOptions' => [ 'shape' => 'ClientVpnAuthenticationRequestList', 'locationName' => 'Authentication', ], 'ConnectionLogOptions' => [ 'shape' => 'ConnectionLogOptions', ], 'DnsServers' => [ 'shape' => 'ValueStringList', ], 'TransportProtocol' => [ 'shape' => 'TransportProtocol', ], 'VpnPort' => [ 'shape' => 'Integer', ], 'Description' => [ 'shape' => 'String', ], 'SplitTunnel' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'SecurityGroupIds' => [ 'shape' => 'ClientVpnSecurityGroupIdSet', 'locationName' => 'SecurityGroupId', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'SelfServicePortal' => [ 'shape' => 'SelfServicePortal', ], 'ClientConnectOptions' => [ 'shape' => 'ClientConnectOptions', ], 'SessionTimeoutHours' => [ 'shape' => 'Integer', ], 'ClientLoginBannerOptions' => [ 'shape' => 'ClientLoginBannerOptions', ], ], ], 'CreateClientVpnEndpointResult' => [ 'type' => 'structure', 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'String', 'locationName' => 'clientVpnEndpointId', ], 'Status' => [ 'shape' => 'ClientVpnEndpointStatus', 'locationName' => 'status', ], 'DnsName' => [ 'shape' => 'String', 'locationName' => 'dnsName', ], ], ], 'CreateClientVpnRouteRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', 'DestinationCidrBlock', 'TargetVpcSubnetId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'TargetVpcSubnetId' => [ 'shape' => 'SubnetId', ], 'Description' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateClientVpnRouteResult' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'ClientVpnRouteStatus', 'locationName' => 'status', ], ], ], 'CreateCoipCidrRequest' => [ 'type' => 'structure', 'required' => [ 'Cidr', 'CoipPoolId', ], 'members' => [ 'Cidr' => [ 'shape' => 'String', ], 'CoipPoolId' => [ 'shape' => 'Ipv4PoolCoipId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateCoipCidrResult' => [ 'type' => 'structure', 'members' => [ 'CoipCidr' => [ 'shape' => 'CoipCidr', 'locationName' => 'coipCidr', ], ], ], 'CreateCoipPoolRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableId', ], 'members' => [ 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateCoipPoolResult' => [ 'type' => 'structure', 'members' => [ 'CoipPool' => [ 'shape' => 'CoipPool', 'locationName' => 'coipPool', ], ], ], 'CreateCustomerGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'BgpAsn' => [ 'shape' => 'Integer', ], 'PublicIp' => [ 'shape' => 'String', ], 'CertificateArn' => [ 'shape' => 'String', ], 'Type' => [ 'shape' => 'GatewayType', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DeviceName' => [ 'shape' => 'String', ], 'IpAddress' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CreateCustomerGatewayResult' => [ 'type' => 'structure', 'members' => [ 'CustomerGateway' => [ 'shape' => 'CustomerGateway', 'locationName' => 'customerGateway', ], ], ], 'CreateDefaultSubnetRequest' => [ 'type' => 'structure', 'required' => [ 'AvailabilityZone', ], 'members' => [ 'AvailabilityZone' => [ 'shape' => 'AvailabilityZoneName', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Ipv6Native' => [ 'shape' => 'Boolean', ], ], ], 'CreateDefaultSubnetResult' => [ 'type' => 'structure', 'members' => [ 'Subnet' => [ 'shape' => 'Subnet', 'locationName' => 'subnet', ], ], ], 'CreateDefaultVpcRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateDefaultVpcResult' => [ 'type' => 'structure', 'members' => [ 'Vpc' => [ 'shape' => 'Vpc', 'locationName' => 'vpc', ], ], ], 'CreateDhcpOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'DhcpConfigurations', ], 'members' => [ 'DhcpConfigurations' => [ 'shape' => 'NewDhcpConfigurationList', 'locationName' => 'dhcpConfiguration', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CreateDhcpOptionsResult' => [ 'type' => 'structure', 'members' => [ 'DhcpOptions' => [ 'shape' => 'DhcpOptions', 'locationName' => 'dhcpOptions', ], ], ], 'CreateEgressOnlyInternetGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateEgressOnlyInternetGatewayResult' => [ 'type' => 'structure', 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'EgressOnlyInternetGateway' => [ 'shape' => 'EgressOnlyInternetGateway', 'locationName' => 'egressOnlyInternetGateway', ], ], ], 'CreateFleetError' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateAndOverrides' => [ 'shape' => 'LaunchTemplateAndOverridesResponse', 'locationName' => 'launchTemplateAndOverrides', ], 'Lifecycle' => [ 'shape' => 'InstanceLifecycle', 'locationName' => 'lifecycle', ], 'ErrorCode' => [ 'shape' => 'String', 'locationName' => 'errorCode', ], 'ErrorMessage' => [ 'shape' => 'String', 'locationName' => 'errorMessage', ], ], ], 'CreateFleetErrorsSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CreateFleetError', 'locationName' => 'item', ], ], 'CreateFleetInstance' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateAndOverrides' => [ 'shape' => 'LaunchTemplateAndOverridesResponse', 'locationName' => 'launchTemplateAndOverrides', ], 'Lifecycle' => [ 'shape' => 'InstanceLifecycle', 'locationName' => 'lifecycle', ], 'InstanceIds' => [ 'shape' => 'InstanceIdsSet', 'locationName' => 'instanceIds', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'Platform' => [ 'shape' => 'PlatformValues', 'locationName' => 'platform', ], ], ], 'CreateFleetInstancesSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CreateFleetInstance', 'locationName' => 'item', ], ], 'CreateFleetRequest' => [ 'type' => 'structure', 'required' => [ 'LaunchTemplateConfigs', 'TargetCapacitySpecification', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', ], 'SpotOptions' => [ 'shape' => 'SpotOptionsRequest', ], 'OnDemandOptions' => [ 'shape' => 'OnDemandOptionsRequest', ], 'ExcessCapacityTerminationPolicy' => [ 'shape' => 'FleetExcessCapacityTerminationPolicy', ], 'LaunchTemplateConfigs' => [ 'shape' => 'FleetLaunchTemplateConfigListRequest', ], 'TargetCapacitySpecification' => [ 'shape' => 'TargetCapacitySpecificationRequest', ], 'TerminateInstancesWithExpiration' => [ 'shape' => 'Boolean', ], 'Type' => [ 'shape' => 'FleetType', ], 'ValidFrom' => [ 'shape' => 'DateTime', ], 'ValidUntil' => [ 'shape' => 'DateTime', ], 'ReplaceUnhealthyInstances' => [ 'shape' => 'Boolean', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'Context' => [ 'shape' => 'String', ], ], ], 'CreateFleetResult' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', 'locationName' => 'fleetId', ], 'Errors' => [ 'shape' => 'CreateFleetErrorsSet', 'locationName' => 'errorSet', ], 'Instances' => [ 'shape' => 'CreateFleetInstancesSet', 'locationName' => 'fleetInstanceSet', ], ], ], 'CreateFlowLogsRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceIds', 'ResourceType', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', ], 'DeliverLogsPermissionArn' => [ 'shape' => 'String', ], 'DeliverCrossAccountRole' => [ 'shape' => 'String', ], 'LogGroupName' => [ 'shape' => 'String', ], 'ResourceIds' => [ 'shape' => 'FlowLogResourceIds', 'locationName' => 'ResourceId', ], 'ResourceType' => [ 'shape' => 'FlowLogsResourceType', ], 'TrafficType' => [ 'shape' => 'TrafficType', ], 'LogDestinationType' => [ 'shape' => 'LogDestinationType', ], 'LogDestination' => [ 'shape' => 'String', ], 'LogFormat' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'MaxAggregationInterval' => [ 'shape' => 'Integer', ], 'DestinationOptions' => [ 'shape' => 'DestinationOptionsRequest', ], ], ], 'CreateFlowLogsResult' => [ 'type' => 'structure', 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'FlowLogIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'flowLogIdSet', ], 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemSet', 'locationName' => 'unsuccessful', ], ], ], 'CreateFpgaImageRequest' => [ 'type' => 'structure', 'required' => [ 'InputStorageLocation', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InputStorageLocation' => [ 'shape' => 'StorageLocation', ], 'LogsStorageLocation' => [ 'shape' => 'StorageLocation', ], 'Description' => [ 'shape' => 'String', ], 'Name' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateFpgaImageResult' => [ 'type' => 'structure', 'members' => [ 'FpgaImageId' => [ 'shape' => 'String', 'locationName' => 'fpgaImageId', ], 'FpgaImageGlobalId' => [ 'shape' => 'String', 'locationName' => 'fpgaImageGlobalId', ], ], ], 'CreateImageRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'Name', ], 'members' => [ 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingRequestList', 'locationName' => 'blockDeviceMapping', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], 'NoReboot' => [ 'shape' => 'Boolean', 'locationName' => 'noReboot', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateImageResult' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], ], ], 'CreateInstanceConnectEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdStringListRequest', 'locationName' => 'SecurityGroupId', ], 'PreserveClientIp' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateInstanceConnectEndpointResult' => [ 'type' => 'structure', 'members' => [ 'InstanceConnectEndpoint' => [ 'shape' => 'Ec2InstanceConnectEndpoint', 'locationName' => 'instanceConnectEndpoint', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateInstanceEventWindowRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Name' => [ 'shape' => 'String', ], 'TimeRanges' => [ 'shape' => 'InstanceEventWindowTimeRangeRequestSet', 'locationName' => 'TimeRange', ], 'CronExpression' => [ 'shape' => 'InstanceEventWindowCronExpression', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateInstanceEventWindowResult' => [ 'type' => 'structure', 'members' => [ 'InstanceEventWindow' => [ 'shape' => 'InstanceEventWindow', 'locationName' => 'instanceEventWindow', ], ], ], 'CreateInstanceExportTaskRequest' => [ 'type' => 'structure', 'required' => [ 'ExportToS3Task', 'InstanceId', 'TargetEnvironment', ], 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'ExportToS3Task' => [ 'shape' => 'ExportToS3TaskSpecification', 'locationName' => 'exportToS3', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'TargetEnvironment' => [ 'shape' => 'ExportEnvironment', 'locationName' => 'targetEnvironment', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateInstanceExportTaskResult' => [ 'type' => 'structure', 'members' => [ 'ExportTask' => [ 'shape' => 'ExportTask', 'locationName' => 'exportTask', ], ], ], 'CreateInternetGatewayRequest' => [ 'type' => 'structure', 'members' => [ 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CreateInternetGatewayResult' => [ 'type' => 'structure', 'members' => [ 'InternetGateway' => [ 'shape' => 'InternetGateway', 'locationName' => 'internetGateway', ], ], ], 'CreateIpamPoolRequest' => [ 'type' => 'structure', 'required' => [ 'IpamScopeId', 'AddressFamily', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamScopeId' => [ 'shape' => 'IpamScopeId', ], 'Locale' => [ 'shape' => 'String', ], 'SourceIpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Description' => [ 'shape' => 'String', ], 'AddressFamily' => [ 'shape' => 'AddressFamily', ], 'AutoImport' => [ 'shape' => 'Boolean', ], 'PubliclyAdvertisable' => [ 'shape' => 'Boolean', ], 'AllocationMinNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', ], 'AllocationMaxNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', ], 'AllocationDefaultNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', ], 'AllocationResourceTags' => [ 'shape' => 'RequestIpamResourceTagList', 'locationName' => 'AllocationResourceTag', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'AwsService' => [ 'shape' => 'IpamPoolAwsService', ], 'PublicIpSource' => [ 'shape' => 'IpamPoolPublicIpSource', ], 'SourceResource' => [ 'shape' => 'IpamPoolSourceResourceRequest', ], ], ], 'CreateIpamPoolResult' => [ 'type' => 'structure', 'members' => [ 'IpamPool' => [ 'shape' => 'IpamPool', 'locationName' => 'ipamPool', ], ], ], 'CreateIpamRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Description' => [ 'shape' => 'String', ], 'OperatingRegions' => [ 'shape' => 'AddIpamOperatingRegionSet', 'locationName' => 'OperatingRegion', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'Tier' => [ 'shape' => 'IpamTier', ], ], ], 'CreateIpamResourceDiscoveryRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Description' => [ 'shape' => 'String', ], 'OperatingRegions' => [ 'shape' => 'AddIpamOperatingRegionSet', 'locationName' => 'OperatingRegion', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateIpamResourceDiscoveryResult' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscovery' => [ 'shape' => 'IpamResourceDiscovery', 'locationName' => 'ipamResourceDiscovery', ], ], ], 'CreateIpamResult' => [ 'type' => 'structure', 'members' => [ 'Ipam' => [ 'shape' => 'Ipam', 'locationName' => 'ipam', ], ], ], 'CreateIpamScopeRequest' => [ 'type' => 'structure', 'required' => [ 'IpamId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamId' => [ 'shape' => 'IpamId', ], 'Description' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateIpamScopeResult' => [ 'type' => 'structure', 'members' => [ 'IpamScope' => [ 'shape' => 'IpamScope', 'locationName' => 'ipamScope', ], ], ], 'CreateKeyPairRequest' => [ 'type' => 'structure', 'required' => [ 'KeyName', ], 'members' => [ 'KeyName' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'KeyType' => [ 'shape' => 'KeyType', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'KeyFormat' => [ 'shape' => 'KeyFormat', ], ], ], 'CreateLaunchTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'LaunchTemplateName', 'LaunchTemplateData', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', ], 'VersionDescription' => [ 'shape' => 'VersionDescription', ], 'LaunchTemplateData' => [ 'shape' => 'RequestLaunchTemplateData', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateLaunchTemplateResult' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplate' => [ 'shape' => 'LaunchTemplate', 'locationName' => 'launchTemplate', ], 'Warning' => [ 'shape' => 'ValidationWarning', 'locationName' => 'warning', ], ], ], 'CreateLaunchTemplateVersionRequest' => [ 'type' => 'structure', 'required' => [ 'LaunchTemplateData', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', ], 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', ], 'SourceVersion' => [ 'shape' => 'String', ], 'VersionDescription' => [ 'shape' => 'VersionDescription', ], 'LaunchTemplateData' => [ 'shape' => 'RequestLaunchTemplateData', ], 'ResolveAlias' => [ 'shape' => 'Boolean', ], ], ], 'CreateLaunchTemplateVersionResult' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateVersion' => [ 'shape' => 'LaunchTemplateVersion', 'locationName' => 'launchTemplateVersion', ], 'Warning' => [ 'shape' => 'ValidationWarning', 'locationName' => 'warning', ], ], ], 'CreateLocalGatewayRouteRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', ], 'LocalGatewayVirtualInterfaceGroupId' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'DestinationPrefixListId' => [ 'shape' => 'PrefixListResourceId', ], ], ], 'CreateLocalGatewayRouteResult' => [ 'type' => 'structure', 'members' => [ 'Route' => [ 'shape' => 'LocalGatewayRoute', 'locationName' => 'route', ], ], ], 'CreateLocalGatewayRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayId', ], 'members' => [ 'LocalGatewayId' => [ 'shape' => 'LocalGatewayId', ], 'Mode' => [ 'shape' => 'LocalGatewayRouteTableMode', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateLocalGatewayRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTable' => [ 'shape' => 'LocalGatewayRouteTable', 'locationName' => 'localGatewayRouteTable', ], ], ], 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableId', 'LocalGatewayVirtualInterfaceGroupId', ], 'members' => [ 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', ], 'LocalGatewayVirtualInterfaceGroupId' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation' => [ 'shape' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation', 'locationName' => 'localGatewayRouteTableVirtualInterfaceGroupAssociation', ], ], ], 'CreateLocalGatewayRouteTableVpcAssociationRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableId', 'VpcId', ], 'members' => [ 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateLocalGatewayRouteTableVpcAssociationResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVpcAssociation' => [ 'shape' => 'LocalGatewayRouteTableVpcAssociation', 'locationName' => 'localGatewayRouteTableVpcAssociation', ], ], ], 'CreateManagedPrefixListRequest' => [ 'type' => 'structure', 'required' => [ 'PrefixListName', 'MaxEntries', 'AddressFamily', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'PrefixListName' => [ 'shape' => 'String', ], 'Entries' => [ 'shape' => 'AddPrefixListEntries', 'locationName' => 'Entry', ], 'MaxEntries' => [ 'shape' => 'Integer', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'AddressFamily' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateManagedPrefixListResult' => [ 'type' => 'structure', 'members' => [ 'PrefixList' => [ 'shape' => 'ManagedPrefixList', 'locationName' => 'prefixList', ], ], ], 'CreateNatGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', ], 'members' => [ 'AllocationId' => [ 'shape' => 'AllocationId', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ConnectivityType' => [ 'shape' => 'ConnectivityType', ], 'PrivateIpAddress' => [ 'shape' => 'String', ], 'SecondaryAllocationIds' => [ 'shape' => 'AllocationIdList', 'locationName' => 'SecondaryAllocationId', ], 'SecondaryPrivateIpAddresses' => [ 'shape' => 'IpList', 'locationName' => 'SecondaryPrivateIpAddress', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'PrivateIpAddressCount', ], ], ], 'CreateNatGatewayResult' => [ 'type' => 'structure', 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'NatGateway' => [ 'shape' => 'NatGateway', 'locationName' => 'natGateway', ], ], ], 'CreateNetworkAclEntryRequest' => [ 'type' => 'structure', 'required' => [ 'Egress', 'NetworkAclId', 'Protocol', 'RuleAction', 'RuleNumber', ], 'members' => [ 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Egress' => [ 'shape' => 'Boolean', 'locationName' => 'egress', ], 'IcmpTypeCode' => [ 'shape' => 'IcmpTypeCode', 'locationName' => 'Icmp', ], 'Ipv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'ipv6CidrBlock', ], 'NetworkAclId' => [ 'shape' => 'NetworkAclId', 'locationName' => 'networkAclId', ], 'PortRange' => [ 'shape' => 'PortRange', 'locationName' => 'portRange', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], 'RuleAction' => [ 'shape' => 'RuleAction', 'locationName' => 'ruleAction', ], 'RuleNumber' => [ 'shape' => 'Integer', 'locationName' => 'ruleNumber', ], ], ], 'CreateNetworkAclRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateNetworkAclResult' => [ 'type' => 'structure', 'members' => [ 'NetworkAcl' => [ 'shape' => 'NetworkAcl', 'locationName' => 'networkAcl', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateNetworkInsightsAccessScopeRequest' => [ 'type' => 'structure', 'required' => [ 'ClientToken', ], 'members' => [ 'MatchPaths' => [ 'shape' => 'AccessScopePathListRequest', 'locationName' => 'MatchPath', ], 'ExcludePaths' => [ 'shape' => 'AccessScopePathListRequest', 'locationName' => 'ExcludePath', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateNetworkInsightsAccessScopeResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScope' => [ 'shape' => 'NetworkInsightsAccessScope', 'locationName' => 'networkInsightsAccessScope', ], 'NetworkInsightsAccessScopeContent' => [ 'shape' => 'NetworkInsightsAccessScopeContent', 'locationName' => 'networkInsightsAccessScopeContent', ], ], ], 'CreateNetworkInsightsPathRequest' => [ 'type' => 'structure', 'required' => [ 'Source', 'Protocol', 'ClientToken', ], 'members' => [ 'SourceIp' => [ 'shape' => 'IpAddress', ], 'DestinationIp' => [ 'shape' => 'IpAddress', ], 'Source' => [ 'shape' => 'NetworkInsightsResourceId', ], 'Destination' => [ 'shape' => 'NetworkInsightsResourceId', ], 'Protocol' => [ 'shape' => 'Protocol', ], 'DestinationPort' => [ 'shape' => 'Port', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'FilterAtSource' => [ 'shape' => 'PathRequestFilter', ], 'FilterAtDestination' => [ 'shape' => 'PathRequestFilter', ], ], ], 'CreateNetworkInsightsPathResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsPath' => [ 'shape' => 'NetworkInsightsPath', 'locationName' => 'networkInsightsPath', ], ], ], 'CreateNetworkInterfacePermissionRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', 'Permission', ], 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'AwsAccountId' => [ 'shape' => 'String', ], 'AwsService' => [ 'shape' => 'String', ], 'Permission' => [ 'shape' => 'InterfacePermissionType', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateNetworkInterfacePermissionResult' => [ 'type' => 'structure', 'members' => [ 'InterfacePermission' => [ 'shape' => 'NetworkInterfacePermission', 'locationName' => 'interfacePermission', ], ], ], 'CreateNetworkInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', ], 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Groups' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'Ipv6AddressCount' => [ 'shape' => 'Integer', 'locationName' => 'ipv6AddressCount', ], 'Ipv6Addresses' => [ 'shape' => 'InstanceIpv6AddressList', 'locationName' => 'ipv6Addresses', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'PrivateIpAddresses' => [ 'shape' => 'PrivateIpAddressSpecificationList', 'locationName' => 'privateIpAddresses', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'secondaryPrivateIpAddressCount', ], 'Ipv4Prefixes' => [ 'shape' => 'Ipv4PrefixList', 'locationName' => 'Ipv4Prefix', ], 'Ipv4PrefixCount' => [ 'shape' => 'Integer', ], 'Ipv6Prefixes' => [ 'shape' => 'Ipv6PrefixList', 'locationName' => 'Ipv6Prefix', ], 'Ipv6PrefixCount' => [ 'shape' => 'Integer', ], 'InterfaceType' => [ 'shape' => 'NetworkInterfaceCreationType', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'EnablePrimaryIpv6' => [ 'shape' => 'Boolean', ], 'ConnectionTrackingSpecification' => [ 'shape' => 'ConnectionTrackingSpecificationRequest', ], ], ], 'CreateNetworkInterfaceResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInterface' => [ 'shape' => 'NetworkInterface', 'locationName' => 'networkInterface', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreatePlacementGroupRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'Strategy' => [ 'shape' => 'PlacementStrategy', 'locationName' => 'strategy', ], 'PartitionCount' => [ 'shape' => 'Integer', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'SpreadLevel' => [ 'shape' => 'SpreadLevel', ], ], ], 'CreatePlacementGroupResult' => [ 'type' => 'structure', 'members' => [ 'PlacementGroup' => [ 'shape' => 'PlacementGroup', 'locationName' => 'placementGroup', ], ], ], 'CreatePublicIpv4PoolRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreatePublicIpv4PoolResult' => [ 'type' => 'structure', 'members' => [ 'PoolId' => [ 'shape' => 'Ipv4PoolEc2Id', 'locationName' => 'poolId', ], ], ], 'CreateReplaceRootVolumeTaskRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ImageId' => [ 'shape' => 'ImageId', ], 'DeleteReplacedRootVolume' => [ 'shape' => 'Boolean', ], ], ], 'CreateReplaceRootVolumeTaskResult' => [ 'type' => 'structure', 'members' => [ 'ReplaceRootVolumeTask' => [ 'shape' => 'ReplaceRootVolumeTask', 'locationName' => 'replaceRootVolumeTask', ], ], ], 'CreateReservedInstancesListingRequest' => [ 'type' => 'structure', 'required' => [ 'ClientToken', 'InstanceCount', 'PriceSchedules', 'ReservedInstancesId', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'PriceSchedules' => [ 'shape' => 'PriceScheduleSpecificationList', 'locationName' => 'priceSchedules', ], 'ReservedInstancesId' => [ 'shape' => 'ReservationId', 'locationName' => 'reservedInstancesId', ], ], ], 'CreateReservedInstancesListingResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesListings' => [ 'shape' => 'ReservedInstancesListingList', 'locationName' => 'reservedInstancesListingsSet', ], ], ], 'CreateRestoreImageTaskRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'ObjectKey', ], 'members' => [ 'Bucket' => [ 'shape' => 'String', ], 'ObjectKey' => [ 'shape' => 'String', ], 'Name' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateRestoreImageTaskResult' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], ], ], 'CreateRouteRequest' => [ 'type' => 'structure', 'required' => [ 'RouteTableId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'DestinationIpv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationIpv6CidrBlock', ], 'DestinationPrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcEndpointId' => [ 'shape' => 'VpcEndpointId', ], 'EgressOnlyInternetGatewayId' => [ 'shape' => 'EgressOnlyInternetGatewayId', 'locationName' => 'egressOnlyInternetGatewayId', ], 'GatewayId' => [ 'shape' => 'RouteGatewayId', 'locationName' => 'gatewayId', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'NatGatewayId' => [ 'shape' => 'NatGatewayId', 'locationName' => 'natGatewayId', ], 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'LocalGatewayId' => [ 'shape' => 'LocalGatewayId', ], 'CarrierGatewayId' => [ 'shape' => 'CarrierGatewayId', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'RouteTableId' => [ 'shape' => 'RouteTableId', 'locationName' => 'routeTableId', ], 'VpcPeeringConnectionId' => [ 'shape' => 'VpcPeeringConnectionId', 'locationName' => 'vpcPeeringConnectionId', ], 'CoreNetworkArn' => [ 'shape' => 'CoreNetworkArn', ], ], ], 'CreateRouteResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'CreateRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'RouteTable' => [ 'shape' => 'RouteTable', 'locationName' => 'routeTable', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateSecurityGroupRequest' => [ 'type' => 'structure', 'required' => [ 'Description', 'GroupName', ], 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'GroupDescription', ], 'GroupName' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CreateSecurityGroupResult' => [ 'type' => 'structure', 'members' => [ 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'CreateSnapshotRequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'Description' => [ 'shape' => 'String', ], 'OutpostArn' => [ 'shape' => 'String', ], 'VolumeId' => [ 'shape' => 'VolumeId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CreateSnapshotsRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceSpecification', ], 'members' => [ 'Description' => [ 'shape' => 'String', ], 'InstanceSpecification' => [ 'shape' => 'InstanceSpecification', ], 'OutpostArn' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'CopyTagsFromSource' => [ 'shape' => 'CopyTagsFromSource', ], ], ], 'CreateSnapshotsResult' => [ 'type' => 'structure', 'members' => [ 'Snapshots' => [ 'shape' => 'SnapshotSet', 'locationName' => 'snapshotSet', ], ], ], 'CreateSpotDatafeedSubscriptionRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'String', 'locationName' => 'bucket', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Prefix' => [ 'shape' => 'String', 'locationName' => 'prefix', ], ], ], 'CreateSpotDatafeedSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'SpotDatafeedSubscription' => [ 'shape' => 'SpotDatafeedSubscription', 'locationName' => 'spotDatafeedSubscription', ], ], ], 'CreateStoreImageTaskRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', 'Bucket', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'Bucket' => [ 'shape' => 'String', ], 'S3ObjectTags' => [ 'shape' => 'S3ObjectTagList', 'locationName' => 'S3ObjectTag', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateStoreImageTaskResult' => [ 'type' => 'structure', 'members' => [ 'ObjectKey' => [ 'shape' => 'String', 'locationName' => 'objectKey', ], ], ], 'CreateSubnetCidrReservationRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', 'Cidr', 'ReservationType', ], 'members' => [ 'SubnetId' => [ 'shape' => 'SubnetId', ], 'Cidr' => [ 'shape' => 'String', ], 'ReservationType' => [ 'shape' => 'SubnetCidrReservationType', ], 'Description' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateSubnetCidrReservationResult' => [ 'type' => 'structure', 'members' => [ 'SubnetCidrReservation' => [ 'shape' => 'SubnetCidrReservation', 'locationName' => 'subnetCidrReservation', ], ], ], 'CreateSubnetRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'AvailabilityZoneId' => [ 'shape' => 'String', ], 'CidrBlock' => [ 'shape' => 'String', ], 'Ipv6CidrBlock' => [ 'shape' => 'String', ], 'OutpostArn' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Ipv6Native' => [ 'shape' => 'Boolean', ], 'Ipv4IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Ipv4NetmaskLength' => [ 'shape' => 'NetmaskLength', ], 'Ipv6IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Ipv6NetmaskLength' => [ 'shape' => 'NetmaskLength', ], ], ], 'CreateSubnetResult' => [ 'type' => 'structure', 'members' => [ 'Subnet' => [ 'shape' => 'Subnet', 'locationName' => 'subnet', ], ], ], 'CreateTagsRequest' => [ 'type' => 'structure', 'required' => [ 'Resources', 'Tags', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Resources' => [ 'shape' => 'ResourceIdList', 'locationName' => 'ResourceId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'Tag', ], ], ], 'CreateTrafficMirrorFilterRequest' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateTrafficMirrorFilterResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilter' => [ 'shape' => 'TrafficMirrorFilter', 'locationName' => 'trafficMirrorFilter', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateTrafficMirrorFilterRuleRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficMirrorFilterId', 'TrafficDirection', 'RuleNumber', 'RuleAction', 'DestinationCidrBlock', 'SourceCidrBlock', ], 'members' => [ 'TrafficMirrorFilterId' => [ 'shape' => 'TrafficMirrorFilterId', ], 'TrafficDirection' => [ 'shape' => 'TrafficDirection', ], 'RuleNumber' => [ 'shape' => 'Integer', ], 'RuleAction' => [ 'shape' => 'TrafficMirrorRuleAction', ], 'DestinationPortRange' => [ 'shape' => 'TrafficMirrorPortRangeRequest', ], 'SourcePortRange' => [ 'shape' => 'TrafficMirrorPortRangeRequest', ], 'Protocol' => [ 'shape' => 'Integer', ], 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'SourceCidrBlock' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateTrafficMirrorFilterRuleResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilterRule' => [ 'shape' => 'TrafficMirrorFilterRule', 'locationName' => 'trafficMirrorFilterRule', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateTrafficMirrorSessionRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', 'TrafficMirrorTargetId', 'TrafficMirrorFilterId', 'SessionNumber', ], 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'TrafficMirrorTargetId' => [ 'shape' => 'TrafficMirrorTargetId', ], 'TrafficMirrorFilterId' => [ 'shape' => 'TrafficMirrorFilterId', ], 'PacketLength' => [ 'shape' => 'Integer', ], 'SessionNumber' => [ 'shape' => 'Integer', ], 'VirtualNetworkId' => [ 'shape' => 'Integer', ], 'Description' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateTrafficMirrorSessionResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorSession' => [ 'shape' => 'TrafficMirrorSession', 'locationName' => 'trafficMirrorSession', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateTrafficMirrorTargetRequest' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'NetworkLoadBalancerArn' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'GatewayLoadBalancerEndpointId' => [ 'shape' => 'VpcEndpointId', ], ], ], 'CreateTrafficMirrorTargetResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorTarget' => [ 'shape' => 'TrafficMirrorTarget', 'locationName' => 'trafficMirrorTarget', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateTransitGatewayConnectPeerRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', 'PeerAddress', 'InsideCidrBlocks', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'TransitGatewayAddress' => [ 'shape' => 'String', ], 'PeerAddress' => [ 'shape' => 'String', ], 'BgpOptions' => [ 'shape' => 'TransitGatewayConnectRequestBgpOptions', ], 'InsideCidrBlocks' => [ 'shape' => 'InsideCidrBlocksStringList', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayConnectPeerResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayConnectPeer' => [ 'shape' => 'TransitGatewayConnectPeer', 'locationName' => 'transitGatewayConnectPeer', ], ], ], 'CreateTransitGatewayConnectRequest' => [ 'type' => 'structure', 'required' => [ 'TransportTransitGatewayAttachmentId', 'Options', ], 'members' => [ 'TransportTransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'Options' => [ 'shape' => 'CreateTransitGatewayConnectRequestOptions', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayConnectRequestOptions' => [ 'type' => 'structure', 'required' => [ 'Protocol', ], 'members' => [ 'Protocol' => [ 'shape' => 'ProtocolValue', ], ], ], 'CreateTransitGatewayConnectResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayConnect' => [ 'shape' => 'TransitGatewayConnect', 'locationName' => 'transitGatewayConnect', ], ], ], 'CreateTransitGatewayMulticastDomainRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayId', ], 'members' => [ 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'Options' => [ 'shape' => 'CreateTransitGatewayMulticastDomainRequestOptions', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayMulticastDomainRequestOptions' => [ 'type' => 'structure', 'members' => [ 'Igmpv2Support' => [ 'shape' => 'Igmpv2SupportValue', ], 'StaticSourcesSupport' => [ 'shape' => 'StaticSourcesSupportValue', ], 'AutoAcceptSharedAssociations' => [ 'shape' => 'AutoAcceptSharedAssociationsValue', ], ], ], 'CreateTransitGatewayMulticastDomainResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomain' => [ 'shape' => 'TransitGatewayMulticastDomain', 'locationName' => 'transitGatewayMulticastDomain', ], ], ], 'CreateTransitGatewayPeeringAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayId', 'PeerTransitGatewayId', 'PeerAccountId', 'PeerRegion', ], 'members' => [ 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'PeerTransitGatewayId' => [ 'shape' => 'TransitAssociationGatewayId', ], 'PeerAccountId' => [ 'shape' => 'String', ], 'PeerRegion' => [ 'shape' => 'String', ], 'Options' => [ 'shape' => 'CreateTransitGatewayPeeringAttachmentRequestOptions', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayPeeringAttachmentRequestOptions' => [ 'type' => 'structure', 'members' => [ 'DynamicRouting' => [ 'shape' => 'DynamicRoutingValue', ], ], ], 'CreateTransitGatewayPeeringAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPeeringAttachment' => [ 'shape' => 'TransitGatewayPeeringAttachment', 'locationName' => 'transitGatewayPeeringAttachment', ], ], ], 'CreateTransitGatewayPolicyTableRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayId', ], 'members' => [ 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayPolicyTableResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPolicyTable' => [ 'shape' => 'TransitGatewayPolicyTable', 'locationName' => 'transitGatewayPolicyTable', ], ], ], 'CreateTransitGatewayPrefixListReferenceRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'PrefixListId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'Blackhole' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayPrefixListReferenceResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPrefixListReference' => [ 'shape' => 'TransitGatewayPrefixListReference', 'locationName' => 'transitGatewayPrefixListReference', ], ], ], 'CreateTransitGatewayRequest' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', ], 'Options' => [ 'shape' => 'TransitGatewayRequestOptions', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayResult' => [ 'type' => 'structure', 'members' => [ 'TransitGateway' => [ 'shape' => 'TransitGateway', 'locationName' => 'transitGateway', ], ], ], 'CreateTransitGatewayRouteRequest' => [ 'type' => 'structure', 'required' => [ 'DestinationCidrBlock', 'TransitGatewayRouteTableId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'Blackhole' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayRouteResult' => [ 'type' => 'structure', 'members' => [ 'Route' => [ 'shape' => 'TransitGatewayRoute', 'locationName' => 'route', ], ], ], 'CreateTransitGatewayRouteTableAnnouncementRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'PeeringAttachmentId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'PeeringAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayRouteTableAnnouncementResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableAnnouncement' => [ 'shape' => 'TransitGatewayRouteTableAnnouncement', 'locationName' => 'transitGatewayRouteTableAnnouncement', ], ], ], 'CreateTransitGatewayRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayId', ], 'members' => [ 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTable' => [ 'shape' => 'TransitGatewayRouteTable', 'locationName' => 'transitGatewayRouteTable', ], ], ], 'CreateTransitGatewayVpcAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayId', 'VpcId', 'SubnetIds', ], 'members' => [ 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'SubnetIds' => [ 'shape' => 'TransitGatewaySubnetIdList', ], 'Options' => [ 'shape' => 'CreateTransitGatewayVpcAttachmentRequestOptions', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayVpcAttachmentRequestOptions' => [ 'type' => 'structure', 'members' => [ 'DnsSupport' => [ 'shape' => 'DnsSupportValue', ], 'SecurityGroupReferencingSupport' => [ 'shape' => 'SecurityGroupReferencingSupportValue', ], 'Ipv6Support' => [ 'shape' => 'Ipv6SupportValue', ], 'ApplianceModeSupport' => [ 'shape' => 'ApplianceModeSupportValue', ], ], ], 'CreateTransitGatewayVpcAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayVpcAttachment' => [ 'shape' => 'TransitGatewayVpcAttachment', 'locationName' => 'transitGatewayVpcAttachment', ], ], ], 'CreateVerifiedAccessEndpointEniOptions' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'Protocol' => [ 'shape' => 'VerifiedAccessEndpointProtocol', ], 'Port' => [ 'shape' => 'VerifiedAccessEndpointPortNumber', ], ], ], 'CreateVerifiedAccessEndpointLoadBalancerOptions' => [ 'type' => 'structure', 'members' => [ 'Protocol' => [ 'shape' => 'VerifiedAccessEndpointProtocol', ], 'Port' => [ 'shape' => 'VerifiedAccessEndpointPortNumber', ], 'LoadBalancerArn' => [ 'shape' => 'LoadBalancerArn', ], 'SubnetIds' => [ 'shape' => 'CreateVerifiedAccessEndpointSubnetIdList', 'locationName' => 'SubnetId', ], ], ], 'CreateVerifiedAccessEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessGroupId', 'EndpointType', 'AttachmentType', 'DomainCertificateArn', 'ApplicationDomain', 'EndpointDomainPrefix', ], 'members' => [ 'VerifiedAccessGroupId' => [ 'shape' => 'VerifiedAccessGroupId', ], 'EndpointType' => [ 'shape' => 'VerifiedAccessEndpointType', ], 'AttachmentType' => [ 'shape' => 'VerifiedAccessEndpointAttachmentType', ], 'DomainCertificateArn' => [ 'shape' => 'CertificateArn', ], 'ApplicationDomain' => [ 'shape' => 'String', ], 'EndpointDomainPrefix' => [ 'shape' => 'String', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdList', 'locationName' => 'SecurityGroupId', ], 'LoadBalancerOptions' => [ 'shape' => 'CreateVerifiedAccessEndpointLoadBalancerOptions', ], 'NetworkInterfaceOptions' => [ 'shape' => 'CreateVerifiedAccessEndpointEniOptions', ], 'Description' => [ 'shape' => 'String', ], 'PolicyDocument' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationRequest', ], ], ], 'CreateVerifiedAccessEndpointResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessEndpoint' => [ 'shape' => 'VerifiedAccessEndpoint', 'locationName' => 'verifiedAccessEndpoint', ], ], ], 'CreateVerifiedAccessEndpointSubnetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetId', 'locationName' => 'item', ], ], 'CreateVerifiedAccessGroupRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessInstanceId', ], 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'Description' => [ 'shape' => 'String', ], 'PolicyDocument' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationRequest', ], ], ], 'CreateVerifiedAccessGroupResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessGroup' => [ 'shape' => 'VerifiedAccessGroup', 'locationName' => 'verifiedAccessGroup', ], ], ], 'CreateVerifiedAccessInstanceRequest' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'FIPSEnabled' => [ 'shape' => 'Boolean', ], ], ], 'CreateVerifiedAccessInstanceResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstance' => [ 'shape' => 'VerifiedAccessInstance', 'locationName' => 'verifiedAccessInstance', ], ], ], 'CreateVerifiedAccessTrustProviderDeviceOptions' => [ 'type' => 'structure', 'members' => [ 'TenantId' => [ 'shape' => 'String', ], 'PublicSigningKeyUrl' => [ 'shape' => 'String', ], ], ], 'CreateVerifiedAccessTrustProviderOidcOptions' => [ 'type' => 'structure', 'members' => [ 'Issuer' => [ 'shape' => 'String', ], 'AuthorizationEndpoint' => [ 'shape' => 'String', ], 'TokenEndpoint' => [ 'shape' => 'String', ], 'UserInfoEndpoint' => [ 'shape' => 'String', ], 'ClientId' => [ 'shape' => 'String', ], 'ClientSecret' => [ 'shape' => 'ClientSecretType', ], 'Scope' => [ 'shape' => 'String', ], ], ], 'CreateVerifiedAccessTrustProviderRequest' => [ 'type' => 'structure', 'required' => [ 'TrustProviderType', 'PolicyReferenceName', ], 'members' => [ 'TrustProviderType' => [ 'shape' => 'TrustProviderType', ], 'UserTrustProviderType' => [ 'shape' => 'UserTrustProviderType', ], 'DeviceTrustProviderType' => [ 'shape' => 'DeviceTrustProviderType', ], 'OidcOptions' => [ 'shape' => 'CreateVerifiedAccessTrustProviderOidcOptions', ], 'DeviceOptions' => [ 'shape' => 'CreateVerifiedAccessTrustProviderDeviceOptions', ], 'PolicyReferenceName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationRequest', ], ], ], 'CreateVerifiedAccessTrustProviderResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProvider' => [ 'shape' => 'VerifiedAccessTrustProvider', 'locationName' => 'verifiedAccessTrustProvider', ], ], ], 'CreateVolumePermission' => [ 'type' => 'structure', 'members' => [ 'Group' => [ 'shape' => 'PermissionGroup', 'locationName' => 'group', ], 'UserId' => [ 'shape' => 'String', 'locationName' => 'userId', ], ], ], 'CreateVolumePermissionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CreateVolumePermission', 'locationName' => 'item', ], ], 'CreateVolumePermissionModifications' => [ 'type' => 'structure', 'members' => [ 'Add' => [ 'shape' => 'CreateVolumePermissionList', ], 'Remove' => [ 'shape' => 'CreateVolumePermissionList', ], ], ], 'CreateVolumeRequest' => [ 'type' => 'structure', 'required' => [ 'AvailabilityZone', ], 'members' => [ 'AvailabilityZone' => [ 'shape' => 'AvailabilityZoneName', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'Iops' => [ 'shape' => 'Integer', ], 'KmsKeyId' => [ 'shape' => 'KmsKeyId', ], 'OutpostArn' => [ 'shape' => 'String', ], 'Size' => [ 'shape' => 'Integer', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'VolumeType' => [ 'shape' => 'VolumeType', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'MultiAttachEnabled' => [ 'shape' => 'Boolean', ], 'Throughput' => [ 'shape' => 'Integer', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateVpcEndpointConnectionNotificationRequest' => [ 'type' => 'structure', 'required' => [ 'ConnectionNotificationArn', 'ConnectionEvents', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceId' => [ 'shape' => 'VpcEndpointServiceId', ], 'VpcEndpointId' => [ 'shape' => 'VpcEndpointId', ], 'ConnectionNotificationArn' => [ 'shape' => 'String', ], 'ConnectionEvents' => [ 'shape' => 'ValueStringList', ], 'ClientToken' => [ 'shape' => 'String', ], ], ], 'CreateVpcEndpointConnectionNotificationResult' => [ 'type' => 'structure', 'members' => [ 'ConnectionNotification' => [ 'shape' => 'ConnectionNotification', 'locationName' => 'connectionNotification', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateVpcEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', 'ServiceName', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VpcEndpointType' => [ 'shape' => 'VpcEndpointType', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'ServiceName' => [ 'shape' => 'String', ], 'PolicyDocument' => [ 'shape' => 'String', ], 'RouteTableIds' => [ 'shape' => 'VpcEndpointRouteTableIdList', 'locationName' => 'RouteTableId', ], 'SubnetIds' => [ 'shape' => 'VpcEndpointSubnetIdList', 'locationName' => 'SubnetId', ], 'SecurityGroupIds' => [ 'shape' => 'VpcEndpointSecurityGroupIdList', 'locationName' => 'SecurityGroupId', ], 'IpAddressType' => [ 'shape' => 'IpAddressType', ], 'DnsOptions' => [ 'shape' => 'DnsOptionsSpecification', ], 'ClientToken' => [ 'shape' => 'String', ], 'PrivateDnsEnabled' => [ 'shape' => 'Boolean', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'SubnetConfigurations' => [ 'shape' => 'SubnetConfigurationsList', 'locationName' => 'SubnetConfiguration', ], ], ], 'CreateVpcEndpointResult' => [ 'type' => 'structure', 'members' => [ 'VpcEndpoint' => [ 'shape' => 'VpcEndpoint', 'locationName' => 'vpcEndpoint', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateVpcEndpointServiceConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'AcceptanceRequired' => [ 'shape' => 'Boolean', ], 'PrivateDnsName' => [ 'shape' => 'String', ], 'NetworkLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'NetworkLoadBalancerArn', ], 'GatewayLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'GatewayLoadBalancerArn', ], 'SupportedIpAddressTypes' => [ 'shape' => 'ValueStringList', 'locationName' => 'SupportedIpAddressType', ], 'ClientToken' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateVpcEndpointServiceConfigurationResult' => [ 'type' => 'structure', 'members' => [ 'ServiceConfiguration' => [ 'shape' => 'ServiceConfiguration', 'locationName' => 'serviceConfiguration', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateVpcPeeringConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'PeerOwnerId' => [ 'shape' => 'String', 'locationName' => 'peerOwnerId', ], 'PeerVpcId' => [ 'shape' => 'String', 'locationName' => 'peerVpcId', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], 'PeerRegion' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateVpcPeeringConnectionResult' => [ 'type' => 'structure', 'members' => [ 'VpcPeeringConnection' => [ 'shape' => 'VpcPeeringConnection', 'locationName' => 'vpcPeeringConnection', ], ], ], 'CreateVpcRequest' => [ 'type' => 'structure', 'members' => [ 'CidrBlock' => [ 'shape' => 'String', ], 'AmazonProvidedIpv6CidrBlock' => [ 'shape' => 'Boolean', 'locationName' => 'amazonProvidedIpv6CidrBlock', ], 'Ipv6Pool' => [ 'shape' => 'Ipv6PoolEc2Id', ], 'Ipv6CidrBlock' => [ 'shape' => 'String', ], 'Ipv4IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Ipv4NetmaskLength' => [ 'shape' => 'NetmaskLength', ], 'Ipv6IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Ipv6NetmaskLength' => [ 'shape' => 'NetmaskLength', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceTenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'instanceTenancy', ], 'Ipv6CidrBlockNetworkBorderGroup' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateVpcResult' => [ 'type' => 'structure', 'members' => [ 'Vpc' => [ 'shape' => 'Vpc', 'locationName' => 'vpc', ], ], ], 'CreateVpnConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'CustomerGatewayId', 'Type', ], 'members' => [ 'CustomerGatewayId' => [ 'shape' => 'CustomerGatewayId', ], 'Type' => [ 'shape' => 'String', ], 'VpnGatewayId' => [ 'shape' => 'VpnGatewayId', ], 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Options' => [ 'shape' => 'VpnConnectionOptionsSpecification', 'locationName' => 'options', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateVpnConnectionResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnection' => [ 'shape' => 'VpnConnection', 'locationName' => 'vpnConnection', ], ], ], 'CreateVpnConnectionRouteRequest' => [ 'type' => 'structure', 'required' => [ 'DestinationCidrBlock', 'VpnConnectionId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], ], ], 'CreateVpnGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', ], 'Type' => [ 'shape' => 'GatewayType', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'AmazonSideAsn' => [ 'shape' => 'Long', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CreateVpnGatewayResult' => [ 'type' => 'structure', 'members' => [ 'VpnGateway' => [ 'shape' => 'VpnGateway', 'locationName' => 'vpnGateway', ], ], ], 'CreditSpecification' => [ 'type' => 'structure', 'members' => [ 'CpuCredits' => [ 'shape' => 'String', 'locationName' => 'cpuCredits', ], ], ], 'CreditSpecificationRequest' => [ 'type' => 'structure', 'required' => [ 'CpuCredits', ], 'members' => [ 'CpuCredits' => [ 'shape' => 'String', ], ], ], 'CurrencyCodeValues' => [ 'type' => 'string', 'enum' => [ 'USD', ], ], 'CurrentGenerationFlag' => [ 'type' => 'boolean', ], 'CustomerGateway' => [ 'type' => 'structure', 'members' => [ 'BgpAsn' => [ 'shape' => 'String', 'locationName' => 'bgpAsn', ], 'CustomerGatewayId' => [ 'shape' => 'String', 'locationName' => 'customerGatewayId', ], 'IpAddress' => [ 'shape' => 'String', 'locationName' => 'ipAddress', ], 'CertificateArn' => [ 'shape' => 'String', 'locationName' => 'certificateArn', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'Type' => [ 'shape' => 'String', 'locationName' => 'type', ], 'DeviceName' => [ 'shape' => 'String', 'locationName' => 'deviceName', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'CustomerGatewayId' => [ 'type' => 'string', ], 'CustomerGatewayIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CustomerGatewayId', 'locationName' => 'CustomerGatewayId', ], ], 'CustomerGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CustomerGateway', 'locationName' => 'item', ], ], 'DITMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 5, ], 'DITOMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DataQueries' => [ 'type' => 'list', 'member' => [ 'shape' => 'DataQuery', ], ], 'DataQuery' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'Destination' => [ 'shape' => 'String', ], 'Metric' => [ 'shape' => 'MetricType', ], 'Statistic' => [ 'shape' => 'StatisticType', ], 'Period' => [ 'shape' => 'PeriodType', ], ], ], 'DataResponse' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'String', 'locationName' => 'id', ], 'Source' => [ 'shape' => 'String', 'locationName' => 'source', ], 'Destination' => [ 'shape' => 'String', 'locationName' => 'destination', ], 'Metric' => [ 'shape' => 'MetricType', 'locationName' => 'metric', ], 'Statistic' => [ 'shape' => 'StatisticType', 'locationName' => 'statistic', ], 'Period' => [ 'shape' => 'PeriodType', 'locationName' => 'period', ], 'MetricPoints' => [ 'shape' => 'MetricPoints', 'locationName' => 'metricPointSet', ], ], ], 'DataResponses' => [ 'type' => 'list', 'member' => [ 'shape' => 'DataResponse', 'locationName' => 'item', ], ], 'DatafeedSubscriptionState' => [ 'type' => 'string', 'enum' => [ 'Active', 'Inactive', ], ], 'DateTime' => [ 'type' => 'timestamp', ], 'DedicatedHostFlag' => [ 'type' => 'boolean', ], 'DedicatedHostId' => [ 'type' => 'string', ], 'DedicatedHostIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DedicatedHostId', 'locationName' => 'item', ], ], 'DefaultNetworkCardIndex' => [ 'type' => 'integer', ], 'DefaultRouteTableAssociationValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'DefaultRouteTablePropagationValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'DefaultTargetCapacityType' => [ 'type' => 'string', 'enum' => [ 'spot', 'on-demand', 'capacity-block', ], ], 'DefaultingDhcpOptionsId' => [ 'type' => 'string', ], 'DeleteCarrierGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'CarrierGatewayId', ], 'members' => [ 'CarrierGatewayId' => [ 'shape' => 'CarrierGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteCarrierGatewayResult' => [ 'type' => 'structure', 'members' => [ 'CarrierGateway' => [ 'shape' => 'CarrierGateway', 'locationName' => 'carrierGateway', ], ], ], 'DeleteClientVpnEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteClientVpnEndpointResult' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'ClientVpnEndpointStatus', 'locationName' => 'status', ], ], ], 'DeleteClientVpnRouteRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', 'DestinationCidrBlock', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'TargetVpcSubnetId' => [ 'shape' => 'SubnetId', ], 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteClientVpnRouteResult' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'ClientVpnRouteStatus', 'locationName' => 'status', ], ], ], 'DeleteCoipCidrRequest' => [ 'type' => 'structure', 'required' => [ 'Cidr', 'CoipPoolId', ], 'members' => [ 'Cidr' => [ 'shape' => 'String', ], 'CoipPoolId' => [ 'shape' => 'Ipv4PoolCoipId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteCoipCidrResult' => [ 'type' => 'structure', 'members' => [ 'CoipCidr' => [ 'shape' => 'CoipCidr', 'locationName' => 'coipCidr', ], ], ], 'DeleteCoipPoolRequest' => [ 'type' => 'structure', 'required' => [ 'CoipPoolId', ], 'members' => [ 'CoipPoolId' => [ 'shape' => 'Ipv4PoolCoipId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteCoipPoolResult' => [ 'type' => 'structure', 'members' => [ 'CoipPool' => [ 'shape' => 'CoipPool', 'locationName' => 'coipPool', ], ], ], 'DeleteCustomerGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'CustomerGatewayId', ], 'members' => [ 'CustomerGatewayId' => [ 'shape' => 'CustomerGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteDhcpOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'DhcpOptionsId', ], 'members' => [ 'DhcpOptionsId' => [ 'shape' => 'DhcpOptionsId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteEgressOnlyInternetGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'EgressOnlyInternetGatewayId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'EgressOnlyInternetGatewayId' => [ 'shape' => 'EgressOnlyInternetGatewayId', ], ], ], 'DeleteEgressOnlyInternetGatewayResult' => [ 'type' => 'structure', 'members' => [ 'ReturnCode' => [ 'shape' => 'Boolean', 'locationName' => 'returnCode', ], ], ], 'DeleteFleetError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'DeleteFleetErrorCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'DeleteFleetErrorCode' => [ 'type' => 'string', 'enum' => [ 'fleetIdDoesNotExist', 'fleetIdMalformed', 'fleetNotInDeletableState', 'unexpectedError', ], ], 'DeleteFleetErrorItem' => [ 'type' => 'structure', 'members' => [ 'Error' => [ 'shape' => 'DeleteFleetError', 'locationName' => 'error', ], 'FleetId' => [ 'shape' => 'FleetId', 'locationName' => 'fleetId', ], ], ], 'DeleteFleetErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeleteFleetErrorItem', 'locationName' => 'item', ], ], 'DeleteFleetSuccessItem' => [ 'type' => 'structure', 'members' => [ 'CurrentFleetState' => [ 'shape' => 'FleetStateCode', 'locationName' => 'currentFleetState', ], 'PreviousFleetState' => [ 'shape' => 'FleetStateCode', 'locationName' => 'previousFleetState', ], 'FleetId' => [ 'shape' => 'FleetId', 'locationName' => 'fleetId', ], ], ], 'DeleteFleetSuccessSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeleteFleetSuccessItem', 'locationName' => 'item', ], ], 'DeleteFleetsRequest' => [ 'type' => 'structure', 'required' => [ 'FleetIds', 'TerminateInstances', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'FleetIds' => [ 'shape' => 'FleetIdSet', 'locationName' => 'FleetId', ], 'TerminateInstances' => [ 'shape' => 'Boolean', ], ], ], 'DeleteFleetsResult' => [ 'type' => 'structure', 'members' => [ 'SuccessfulFleetDeletions' => [ 'shape' => 'DeleteFleetSuccessSet', 'locationName' => 'successfulFleetDeletionSet', ], 'UnsuccessfulFleetDeletions' => [ 'shape' => 'DeleteFleetErrorSet', 'locationName' => 'unsuccessfulFleetDeletionSet', ], ], ], 'DeleteFlowLogsRequest' => [ 'type' => 'structure', 'required' => [ 'FlowLogIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'FlowLogIds' => [ 'shape' => 'FlowLogIdList', 'locationName' => 'FlowLogId', ], ], ], 'DeleteFlowLogsResult' => [ 'type' => 'structure', 'members' => [ 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemSet', 'locationName' => 'unsuccessful', ], ], ], 'DeleteFpgaImageRequest' => [ 'type' => 'structure', 'required' => [ 'FpgaImageId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'FpgaImageId' => [ 'shape' => 'FpgaImageId', ], ], ], 'DeleteFpgaImageResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DeleteInstanceConnectEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceConnectEndpointId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceConnectEndpointId' => [ 'shape' => 'InstanceConnectEndpointId', ], ], ], 'DeleteInstanceConnectEndpointResult' => [ 'type' => 'structure', 'members' => [ 'InstanceConnectEndpoint' => [ 'shape' => 'Ec2InstanceConnectEndpoint', 'locationName' => 'instanceConnectEndpoint', ], ], ], 'DeleteInstanceEventWindowRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceEventWindowId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ForceDelete' => [ 'shape' => 'Boolean', ], 'InstanceEventWindowId' => [ 'shape' => 'InstanceEventWindowId', ], ], ], 'DeleteInstanceEventWindowResult' => [ 'type' => 'structure', 'members' => [ 'InstanceEventWindowState' => [ 'shape' => 'InstanceEventWindowStateChange', 'locationName' => 'instanceEventWindowState', ], ], ], 'DeleteInternetGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'InternetGatewayId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InternetGatewayId' => [ 'shape' => 'InternetGatewayId', 'locationName' => 'internetGatewayId', ], ], ], 'DeleteIpamPoolRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Cascade' => [ 'shape' => 'Boolean', ], ], ], 'DeleteIpamPoolResult' => [ 'type' => 'structure', 'members' => [ 'IpamPool' => [ 'shape' => 'IpamPool', 'locationName' => 'ipamPool', ], ], ], 'DeleteIpamRequest' => [ 'type' => 'structure', 'required' => [ 'IpamId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamId' => [ 'shape' => 'IpamId', ], 'Cascade' => [ 'shape' => 'Boolean', ], ], ], 'DeleteIpamResourceDiscoveryRequest' => [ 'type' => 'structure', 'required' => [ 'IpamResourceDiscoveryId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', ], ], ], 'DeleteIpamResourceDiscoveryResult' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscovery' => [ 'shape' => 'IpamResourceDiscovery', 'locationName' => 'ipamResourceDiscovery', ], ], ], 'DeleteIpamResult' => [ 'type' => 'structure', 'members' => [ 'Ipam' => [ 'shape' => 'Ipam', 'locationName' => 'ipam', ], ], ], 'DeleteIpamScopeRequest' => [ 'type' => 'structure', 'required' => [ 'IpamScopeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamScopeId' => [ 'shape' => 'IpamScopeId', ], ], ], 'DeleteIpamScopeResult' => [ 'type' => 'structure', 'members' => [ 'IpamScope' => [ 'shape' => 'IpamScope', 'locationName' => 'ipamScope', ], ], ], 'DeleteKeyPairRequest' => [ 'type' => 'structure', 'members' => [ 'KeyName' => [ 'shape' => 'KeyPairName', ], 'KeyPairId' => [ 'shape' => 'KeyPairId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteKeyPairResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], 'KeyPairId' => [ 'shape' => 'String', 'locationName' => 'keyPairId', ], ], ], 'DeleteLaunchTemplateRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', ], ], ], 'DeleteLaunchTemplateResult' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplate' => [ 'shape' => 'LaunchTemplate', 'locationName' => 'launchTemplate', ], ], ], 'DeleteLaunchTemplateVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'Versions', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', ], 'Versions' => [ 'shape' => 'VersionStringList', 'locationName' => 'LaunchTemplateVersion', ], ], ], 'DeleteLaunchTemplateVersionsResponseErrorItem' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'String', 'locationName' => 'launchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'String', 'locationName' => 'launchTemplateName', ], 'VersionNumber' => [ 'shape' => 'Long', 'locationName' => 'versionNumber', ], 'ResponseError' => [ 'shape' => 'ResponseError', 'locationName' => 'responseError', ], ], ], 'DeleteLaunchTemplateVersionsResponseErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeleteLaunchTemplateVersionsResponseErrorItem', 'locationName' => 'item', ], ], 'DeleteLaunchTemplateVersionsResponseSuccessItem' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'String', 'locationName' => 'launchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'String', 'locationName' => 'launchTemplateName', ], 'VersionNumber' => [ 'shape' => 'Long', 'locationName' => 'versionNumber', ], ], ], 'DeleteLaunchTemplateVersionsResponseSuccessSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeleteLaunchTemplateVersionsResponseSuccessItem', 'locationName' => 'item', ], ], 'DeleteLaunchTemplateVersionsResult' => [ 'type' => 'structure', 'members' => [ 'SuccessfullyDeletedLaunchTemplateVersions' => [ 'shape' => 'DeleteLaunchTemplateVersionsResponseSuccessSet', 'locationName' => 'successfullyDeletedLaunchTemplateVersionSet', ], 'UnsuccessfullyDeletedLaunchTemplateVersions' => [ 'shape' => 'DeleteLaunchTemplateVersionsResponseErrorSet', 'locationName' => 'unsuccessfullyDeletedLaunchTemplateVersionSet', ], ], ], 'DeleteLocalGatewayRouteRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'DestinationPrefixListId' => [ 'shape' => 'PrefixListResourceId', ], ], ], 'DeleteLocalGatewayRouteResult' => [ 'type' => 'structure', 'members' => [ 'Route' => [ 'shape' => 'LocalGatewayRoute', 'locationName' => 'route', ], ], ], 'DeleteLocalGatewayRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableId', ], 'members' => [ 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteLocalGatewayRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTable' => [ 'shape' => 'LocalGatewayRouteTable', 'locationName' => 'localGatewayRouteTable', ], ], ], 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId', ], 'members' => [ 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId' => [ 'shape' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation' => [ 'shape' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation', 'locationName' => 'localGatewayRouteTableVirtualInterfaceGroupAssociation', ], ], ], 'DeleteLocalGatewayRouteTableVpcAssociationRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableVpcAssociationId', ], 'members' => [ 'LocalGatewayRouteTableVpcAssociationId' => [ 'shape' => 'LocalGatewayRouteTableVpcAssociationId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteLocalGatewayRouteTableVpcAssociationResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVpcAssociation' => [ 'shape' => 'LocalGatewayRouteTableVpcAssociation', 'locationName' => 'localGatewayRouteTableVpcAssociation', ], ], ], 'DeleteManagedPrefixListRequest' => [ 'type' => 'structure', 'required' => [ 'PrefixListId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], ], ], 'DeleteManagedPrefixListResult' => [ 'type' => 'structure', 'members' => [ 'PrefixList' => [ 'shape' => 'ManagedPrefixList', 'locationName' => 'prefixList', ], ], ], 'DeleteNatGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'NatGatewayId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'NatGatewayId' => [ 'shape' => 'NatGatewayId', ], ], ], 'DeleteNatGatewayResult' => [ 'type' => 'structure', 'members' => [ 'NatGatewayId' => [ 'shape' => 'String', 'locationName' => 'natGatewayId', ], ], ], 'DeleteNetworkAclEntryRequest' => [ 'type' => 'structure', 'required' => [ 'Egress', 'NetworkAclId', 'RuleNumber', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Egress' => [ 'shape' => 'Boolean', 'locationName' => 'egress', ], 'NetworkAclId' => [ 'shape' => 'NetworkAclId', 'locationName' => 'networkAclId', ], 'RuleNumber' => [ 'shape' => 'Integer', 'locationName' => 'ruleNumber', ], ], ], 'DeleteNetworkAclRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkAclId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkAclId' => [ 'shape' => 'NetworkAclId', 'locationName' => 'networkAclId', ], ], ], 'DeleteNetworkInsightsAccessScopeAnalysisRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInsightsAccessScopeAnalysisId', ], 'members' => [ 'NetworkInsightsAccessScopeAnalysisId' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteNetworkInsightsAccessScopeAnalysisResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeAnalysisId' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisId', 'locationName' => 'networkInsightsAccessScopeAnalysisId', ], ], ], 'DeleteNetworkInsightsAccessScopeRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInsightsAccessScopeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', ], ], ], 'DeleteNetworkInsightsAccessScopeResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', 'locationName' => 'networkInsightsAccessScopeId', ], ], ], 'DeleteNetworkInsightsAnalysisRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInsightsAnalysisId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'NetworkInsightsAnalysisId' => [ 'shape' => 'NetworkInsightsAnalysisId', ], ], ], 'DeleteNetworkInsightsAnalysisResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAnalysisId' => [ 'shape' => 'NetworkInsightsAnalysisId', 'locationName' => 'networkInsightsAnalysisId', ], ], ], 'DeleteNetworkInsightsPathRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInsightsPathId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'NetworkInsightsPathId' => [ 'shape' => 'NetworkInsightsPathId', ], ], ], 'DeleteNetworkInsightsPathResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsPathId' => [ 'shape' => 'NetworkInsightsPathId', 'locationName' => 'networkInsightsPathId', ], ], ], 'DeleteNetworkInterfacePermissionRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfacePermissionId', ], 'members' => [ 'NetworkInterfacePermissionId' => [ 'shape' => 'NetworkInterfacePermissionId', ], 'Force' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteNetworkInterfacePermissionResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DeleteNetworkInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], ], ], 'DeletePlacementGroupRequest' => [ 'type' => 'structure', 'required' => [ 'GroupName', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupName' => [ 'shape' => 'PlacementGroupName', 'locationName' => 'groupName', ], ], ], 'DeletePublicIpv4PoolRequest' => [ 'type' => 'structure', 'required' => [ 'PoolId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'PoolId' => [ 'shape' => 'Ipv4PoolEc2Id', ], ], ], 'DeletePublicIpv4PoolResult' => [ 'type' => 'structure', 'members' => [ 'ReturnValue' => [ 'shape' => 'Boolean', 'locationName' => 'returnValue', ], ], ], 'DeleteQueuedReservedInstancesError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'DeleteQueuedReservedInstancesErrorCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'DeleteQueuedReservedInstancesErrorCode' => [ 'type' => 'string', 'enum' => [ 'reserved-instances-id-invalid', 'reserved-instances-not-in-queued-state', 'unexpected-error', ], ], 'DeleteQueuedReservedInstancesIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservationId', 'locationName' => 'item', ], 'max' => 100, 'min' => 1, ], 'DeleteQueuedReservedInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'ReservedInstancesIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ReservedInstancesIds' => [ 'shape' => 'DeleteQueuedReservedInstancesIdList', 'locationName' => 'ReservedInstancesId', ], ], ], 'DeleteQueuedReservedInstancesResult' => [ 'type' => 'structure', 'members' => [ 'SuccessfulQueuedPurchaseDeletions' => [ 'shape' => 'SuccessfulQueuedPurchaseDeletionSet', 'locationName' => 'successfulQueuedPurchaseDeletionSet', ], 'FailedQueuedPurchaseDeletions' => [ 'shape' => 'FailedQueuedPurchaseDeletionSet', 'locationName' => 'failedQueuedPurchaseDeletionSet', ], ], ], 'DeleteRouteRequest' => [ 'type' => 'structure', 'required' => [ 'RouteTableId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'DestinationIpv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationIpv6CidrBlock', ], 'DestinationPrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'RouteTableId' => [ 'shape' => 'RouteTableId', 'locationName' => 'routeTableId', ], ], ], 'DeleteRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'RouteTableId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'RouteTableId' => [ 'shape' => 'RouteTableId', 'locationName' => 'routeTableId', ], ], ], 'DeleteSecurityGroupRequest' => [ 'type' => 'structure', 'members' => [ 'GroupId' => [ 'shape' => 'SecurityGroupId', ], 'GroupName' => [ 'shape' => 'SecurityGroupName', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteSnapshotRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', ], 'members' => [ 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteSpotDatafeedSubscriptionRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteSubnetCidrReservationRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetCidrReservationId', ], 'members' => [ 'SubnetCidrReservationId' => [ 'shape' => 'SubnetCidrReservationId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteSubnetCidrReservationResult' => [ 'type' => 'structure', 'members' => [ 'DeletedSubnetCidrReservation' => [ 'shape' => 'SubnetCidrReservation', 'locationName' => 'deletedSubnetCidrReservation', ], ], ], 'DeleteSubnetRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', ], 'members' => [ 'SubnetId' => [ 'shape' => 'SubnetId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteTagsRequest' => [ 'type' => 'structure', 'required' => [ 'Resources', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Resources' => [ 'shape' => 'ResourceIdList', 'locationName' => 'resourceId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tag', ], ], ], 'DeleteTrafficMirrorFilterRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficMirrorFilterId', ], 'members' => [ 'TrafficMirrorFilterId' => [ 'shape' => 'TrafficMirrorFilterId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTrafficMirrorFilterResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilterId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorFilterId', ], ], ], 'DeleteTrafficMirrorFilterRuleRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficMirrorFilterRuleId', ], 'members' => [ 'TrafficMirrorFilterRuleId' => [ 'shape' => 'TrafficMirrorFilterRuleIdWithResolver', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTrafficMirrorFilterRuleResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilterRuleId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorFilterRuleId', ], ], ], 'DeleteTrafficMirrorSessionRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficMirrorSessionId', ], 'members' => [ 'TrafficMirrorSessionId' => [ 'shape' => 'TrafficMirrorSessionId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTrafficMirrorSessionResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorSessionId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorSessionId', ], ], ], 'DeleteTrafficMirrorTargetRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficMirrorTargetId', ], 'members' => [ 'TrafficMirrorTargetId' => [ 'shape' => 'TrafficMirrorTargetId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTrafficMirrorTargetResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorTargetId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorTargetId', ], ], ], 'DeleteTransitGatewayConnectPeerRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayConnectPeerId', ], 'members' => [ 'TransitGatewayConnectPeerId' => [ 'shape' => 'TransitGatewayConnectPeerId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayConnectPeerResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayConnectPeer' => [ 'shape' => 'TransitGatewayConnectPeer', 'locationName' => 'transitGatewayConnectPeer', ], ], ], 'DeleteTransitGatewayConnectRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayConnectResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayConnect' => [ 'shape' => 'TransitGatewayConnect', 'locationName' => 'transitGatewayConnect', ], ], ], 'DeleteTransitGatewayMulticastDomainRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayMulticastDomainId', ], 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayMulticastDomainResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomain' => [ 'shape' => 'TransitGatewayMulticastDomain', 'locationName' => 'transitGatewayMulticastDomain', ], ], ], 'DeleteTransitGatewayPeeringAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayPeeringAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPeeringAttachment' => [ 'shape' => 'TransitGatewayPeeringAttachment', 'locationName' => 'transitGatewayPeeringAttachment', ], ], ], 'DeleteTransitGatewayPolicyTableRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayPolicyTableId', ], 'members' => [ 'TransitGatewayPolicyTableId' => [ 'shape' => 'TransitGatewayPolicyTableId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayPolicyTableResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPolicyTable' => [ 'shape' => 'TransitGatewayPolicyTable', 'locationName' => 'transitGatewayPolicyTable', ], ], ], 'DeleteTransitGatewayPrefixListReferenceRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'PrefixListId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayPrefixListReferenceResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPrefixListReference' => [ 'shape' => 'TransitGatewayPrefixListReference', 'locationName' => 'transitGatewayPrefixListReference', ], ], ], 'DeleteTransitGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayId', ], 'members' => [ 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayResult' => [ 'type' => 'structure', 'members' => [ 'TransitGateway' => [ 'shape' => 'TransitGateway', 'locationName' => 'transitGateway', ], ], ], 'DeleteTransitGatewayRouteRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'DestinationCidrBlock', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayRouteResult' => [ 'type' => 'structure', 'members' => [ 'Route' => [ 'shape' => 'TransitGatewayRoute', 'locationName' => 'route', ], ], ], 'DeleteTransitGatewayRouteTableAnnouncementRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableAnnouncementId', ], 'members' => [ 'TransitGatewayRouteTableAnnouncementId' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayRouteTableAnnouncementResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableAnnouncement' => [ 'shape' => 'TransitGatewayRouteTableAnnouncement', 'locationName' => 'transitGatewayRouteTableAnnouncement', ], ], ], 'DeleteTransitGatewayRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTable' => [ 'shape' => 'TransitGatewayRouteTable', 'locationName' => 'transitGatewayRouteTable', ], ], ], 'DeleteTransitGatewayVpcAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayVpcAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayVpcAttachment' => [ 'shape' => 'TransitGatewayVpcAttachment', 'locationName' => 'transitGatewayVpcAttachment', ], ], ], 'DeleteVerifiedAccessEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessEndpointId', ], 'members' => [ 'VerifiedAccessEndpointId' => [ 'shape' => 'VerifiedAccessEndpointId', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteVerifiedAccessEndpointResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessEndpoint' => [ 'shape' => 'VerifiedAccessEndpoint', 'locationName' => 'verifiedAccessEndpoint', ], ], ], 'DeleteVerifiedAccessGroupRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessGroupId', ], 'members' => [ 'VerifiedAccessGroupId' => [ 'shape' => 'VerifiedAccessGroupId', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteVerifiedAccessGroupResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessGroup' => [ 'shape' => 'VerifiedAccessGroup', 'locationName' => 'verifiedAccessGroup', ], ], ], 'DeleteVerifiedAccessInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessInstanceId', ], 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'DeleteVerifiedAccessInstanceResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstance' => [ 'shape' => 'VerifiedAccessInstance', 'locationName' => 'verifiedAccessInstance', ], ], ], 'DeleteVerifiedAccessTrustProviderRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessTrustProviderId', ], 'members' => [ 'VerifiedAccessTrustProviderId' => [ 'shape' => 'VerifiedAccessTrustProviderId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'DeleteVerifiedAccessTrustProviderResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProvider' => [ 'shape' => 'VerifiedAccessTrustProvider', 'locationName' => 'verifiedAccessTrustProvider', ], ], ], 'DeleteVolumeRequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'VolumeId' => [ 'shape' => 'VolumeId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteVpcEndpointConnectionNotificationsRequest' => [ 'type' => 'structure', 'required' => [ 'ConnectionNotificationIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ConnectionNotificationIds' => [ 'shape' => 'ConnectionNotificationIdsList', 'locationName' => 'ConnectionNotificationId', ], ], ], 'DeleteVpcEndpointConnectionNotificationsResult' => [ 'type' => 'structure', 'members' => [ 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemSet', 'locationName' => 'unsuccessful', ], ], ], 'DeleteVpcEndpointServiceConfigurationsRequest' => [ 'type' => 'structure', 'required' => [ 'ServiceIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceIds' => [ 'shape' => 'VpcEndpointServiceIdList', 'locationName' => 'ServiceId', ], ], ], 'DeleteVpcEndpointServiceConfigurationsResult' => [ 'type' => 'structure', 'members' => [ 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemSet', 'locationName' => 'unsuccessful', ], ], ], 'DeleteVpcEndpointsRequest' => [ 'type' => 'structure', 'required' => [ 'VpcEndpointIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VpcEndpointIds' => [ 'shape' => 'VpcEndpointIdList', 'locationName' => 'VpcEndpointId', ], ], ], 'DeleteVpcEndpointsResult' => [ 'type' => 'structure', 'members' => [ 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemSet', 'locationName' => 'unsuccessful', ], ], ], 'DeleteVpcPeeringConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'VpcPeeringConnectionId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcPeeringConnectionId' => [ 'shape' => 'VpcPeeringConnectionId', 'locationName' => 'vpcPeeringConnectionId', ], ], ], 'DeleteVpcPeeringConnectionResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DeleteVpcRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'VpcId' => [ 'shape' => 'VpcId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteVpnConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteVpnConnectionRouteRequest' => [ 'type' => 'structure', 'required' => [ 'DestinationCidrBlock', 'VpnConnectionId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], ], ], 'DeleteVpnGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'VpnGatewayId', ], 'members' => [ 'VpnGatewayId' => [ 'shape' => 'VpnGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeprovisionByoipCidrRequest' => [ 'type' => 'structure', 'required' => [ 'Cidr', ], 'members' => [ 'Cidr' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeprovisionByoipCidrResult' => [ 'type' => 'structure', 'members' => [ 'ByoipCidr' => [ 'shape' => 'ByoipCidr', 'locationName' => 'byoipCidr', ], ], ], 'DeprovisionIpamByoasnRequest' => [ 'type' => 'structure', 'required' => [ 'IpamId', 'Asn', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamId' => [ 'shape' => 'IpamId', ], 'Asn' => [ 'shape' => 'String', ], ], ], 'DeprovisionIpamByoasnResult' => [ 'type' => 'structure', 'members' => [ 'Byoasn' => [ 'shape' => 'Byoasn', 'locationName' => 'byoasn', ], ], ], 'DeprovisionIpamPoolCidrRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Cidr' => [ 'shape' => 'String', ], ], ], 'DeprovisionIpamPoolCidrResult' => [ 'type' => 'structure', 'members' => [ 'IpamPoolCidr' => [ 'shape' => 'IpamPoolCidr', 'locationName' => 'ipamPoolCidr', ], ], ], 'DeprovisionPublicIpv4PoolCidrRequest' => [ 'type' => 'structure', 'required' => [ 'PoolId', 'Cidr', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'PoolId' => [ 'shape' => 'Ipv4PoolEc2Id', ], 'Cidr' => [ 'shape' => 'String', ], ], ], 'DeprovisionPublicIpv4PoolCidrResult' => [ 'type' => 'structure', 'members' => [ 'PoolId' => [ 'shape' => 'Ipv4PoolEc2Id', 'locationName' => 'poolId', ], 'DeprovisionedAddresses' => [ 'shape' => 'DeprovisionedAddressSet', 'locationName' => 'deprovisionedAddressSet', ], ], ], 'DeprovisionedAddressSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'DeregisterImageRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeregisterInstanceEventNotificationAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceTagAttribute', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceTagAttribute' => [ 'shape' => 'DeregisterInstanceTagAttributeRequest', ], ], ], 'DeregisterInstanceEventNotificationAttributesResult' => [ 'type' => 'structure', 'members' => [ 'InstanceTagAttribute' => [ 'shape' => 'InstanceTagNotificationAttribute', 'locationName' => 'instanceTagAttribute', ], ], ], 'DeregisterInstanceTagAttributeRequest' => [ 'type' => 'structure', 'members' => [ 'IncludeAllTagsOfInstance' => [ 'shape' => 'Boolean', ], 'InstanceTagKeys' => [ 'shape' => 'InstanceTagKeySet', 'locationName' => 'InstanceTagKey', ], ], ], 'DeregisterTransitGatewayMulticastGroupMembersRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'GroupIpAddress' => [ 'shape' => 'String', ], 'NetworkInterfaceIds' => [ 'shape' => 'TransitGatewayNetworkInterfaceIdList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeregisterTransitGatewayMulticastGroupMembersResult' => [ 'type' => 'structure', 'members' => [ 'DeregisteredMulticastGroupMembers' => [ 'shape' => 'TransitGatewayMulticastDeregisteredGroupMembers', 'locationName' => 'deregisteredMulticastGroupMembers', ], ], ], 'DeregisterTransitGatewayMulticastGroupSourcesRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'GroupIpAddress' => [ 'shape' => 'String', ], 'NetworkInterfaceIds' => [ 'shape' => 'TransitGatewayNetworkInterfaceIdList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeregisterTransitGatewayMulticastGroupSourcesResult' => [ 'type' => 'structure', 'members' => [ 'DeregisteredMulticastGroupSources' => [ 'shape' => 'TransitGatewayMulticastDeregisteredGroupSources', 'locationName' => 'deregisteredMulticastGroupSources', ], ], ], 'DescribeAccountAttributesRequest' => [ 'type' => 'structure', 'members' => [ 'AttributeNames' => [ 'shape' => 'AccountAttributeNameStringList', 'locationName' => 'attributeName', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeAccountAttributesResult' => [ 'type' => 'structure', 'members' => [ 'AccountAttributes' => [ 'shape' => 'AccountAttributeList', 'locationName' => 'accountAttributeSet', ], ], ], 'DescribeAddressTransfersMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeAddressTransfersRequest' => [ 'type' => 'structure', 'members' => [ 'AllocationIds' => [ 'shape' => 'AllocationIdList', 'locationName' => 'AllocationId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeAddressTransfersMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeAddressTransfersResult' => [ 'type' => 'structure', 'members' => [ 'AddressTransfers' => [ 'shape' => 'AddressTransferList', 'locationName' => 'addressTransferSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeAddressesAttributeRequest' => [ 'type' => 'structure', 'members' => [ 'AllocationIds' => [ 'shape' => 'AllocationIds', 'locationName' => 'AllocationId', ], 'Attribute' => [ 'shape' => 'AddressAttributeName', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'AddressMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeAddressesAttributeResult' => [ 'type' => 'structure', 'members' => [ 'Addresses' => [ 'shape' => 'AddressSet', 'locationName' => 'addressSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeAddressesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'PublicIps' => [ 'shape' => 'PublicIpStringList', 'locationName' => 'PublicIp', ], 'AllocationIds' => [ 'shape' => 'AllocationIdList', 'locationName' => 'AllocationId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeAddressesResult' => [ 'type' => 'structure', 'members' => [ 'Addresses' => [ 'shape' => 'AddressList', 'locationName' => 'addressesSet', ], ], ], 'DescribeAggregateIdFormatRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeAggregateIdFormatResult' => [ 'type' => 'structure', 'members' => [ 'UseLongIdsAggregated' => [ 'shape' => 'Boolean', 'locationName' => 'useLongIdsAggregated', ], 'Statuses' => [ 'shape' => 'IdFormatList', 'locationName' => 'statusSet', ], ], ], 'DescribeAvailabilityZonesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'ZoneNames' => [ 'shape' => 'ZoneNameStringList', 'locationName' => 'ZoneName', ], 'ZoneIds' => [ 'shape' => 'ZoneIdStringList', 'locationName' => 'ZoneId', ], 'AllAvailabilityZones' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeAvailabilityZonesResult' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZoneList', 'locationName' => 'availabilityZoneInfo', ], ], ], 'DescribeAwsNetworkPerformanceMetricSubscriptionsRequest' => [ 'type' => 'structure', 'members' => [ 'MaxResults' => [ 'shape' => 'MaxResultsParam', ], 'NextToken' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeAwsNetworkPerformanceMetricSubscriptionsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'Subscriptions' => [ 'shape' => 'SubscriptionList', 'locationName' => 'subscriptionSet', ], ], ], 'DescribeBundleTasksRequest' => [ 'type' => 'structure', 'members' => [ 'BundleIds' => [ 'shape' => 'BundleIdStringList', 'locationName' => 'BundleId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeBundleTasksResult' => [ 'type' => 'structure', 'members' => [ 'BundleTasks' => [ 'shape' => 'BundleTaskList', 'locationName' => 'bundleInstanceTasksSet', ], ], ], 'DescribeByoipCidrsMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'DescribeByoipCidrsRequest' => [ 'type' => 'structure', 'required' => [ 'MaxResults', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'MaxResults' => [ 'shape' => 'DescribeByoipCidrsMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeByoipCidrsResult' => [ 'type' => 'structure', 'members' => [ 'ByoipCidrs' => [ 'shape' => 'ByoipCidrSet', 'locationName' => 'byoipCidrSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeCapacityBlockOfferingsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'DescribeCapacityBlockOfferingsRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceType', 'InstanceCount', 'CapacityDurationHours', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceType' => [ 'shape' => 'String', ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'StartDateRange' => [ 'shape' => 'MillisecondDateTime', ], 'EndDateRange' => [ 'shape' => 'MillisecondDateTime', ], 'CapacityDurationHours' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeCapacityBlockOfferingsMaxResults', ], ], ], 'DescribeCapacityBlockOfferingsResult' => [ 'type' => 'structure', 'members' => [ 'CapacityBlockOfferings' => [ 'shape' => 'CapacityBlockOfferingSet', 'locationName' => 'capacityBlockOfferingSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeCapacityReservationFleetsMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'DescribeCapacityReservationFleetsRequest' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationFleetIds' => [ 'shape' => 'CapacityReservationFleetIdSet', 'locationName' => 'CapacityReservationFleetId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeCapacityReservationFleetsMaxResults', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeCapacityReservationFleetsResult' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationFleets' => [ 'shape' => 'CapacityReservationFleetSet', 'locationName' => 'capacityReservationFleetSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeCapacityReservationsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'DescribeCapacityReservationsRequest' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationIds' => [ 'shape' => 'CapacityReservationIdSet', 'locationName' => 'CapacityReservationId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeCapacityReservationsMaxResults', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeCapacityReservationsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'CapacityReservations' => [ 'shape' => 'CapacityReservationSet', 'locationName' => 'capacityReservationSet', ], ], ], 'DescribeCarrierGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'CarrierGatewayIds' => [ 'shape' => 'CarrierGatewayIdSet', 'locationName' => 'CarrierGatewayId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'CarrierGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeCarrierGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'CarrierGateways' => [ 'shape' => 'CarrierGatewaySet', 'locationName' => 'carrierGatewaySet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeClassicLinkInstancesMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeClassicLinkInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'MaxResults' => [ 'shape' => 'DescribeClassicLinkInstancesMaxResults', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeClassicLinkInstancesResult' => [ 'type' => 'structure', 'members' => [ 'Instances' => [ 'shape' => 'ClassicLinkInstanceList', 'locationName' => 'instancesSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeClientVpnAuthorizationRulesMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeClientVpnAuthorizationRulesRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DescribeClientVpnAuthorizationRulesMaxResults', ], ], ], 'DescribeClientVpnAuthorizationRulesResult' => [ 'type' => 'structure', 'members' => [ 'AuthorizationRules' => [ 'shape' => 'AuthorizationRuleSet', 'locationName' => 'authorizationRule', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeClientVpnConnectionsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeClientVpnConnectionsRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'DescribeClientVpnConnectionsMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeClientVpnConnectionsResult' => [ 'type' => 'structure', 'members' => [ 'Connections' => [ 'shape' => 'ClientVpnConnectionSet', 'locationName' => 'connections', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeClientVpnEndpointMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeClientVpnEndpointsRequest' => [ 'type' => 'structure', 'members' => [ 'ClientVpnEndpointIds' => [ 'shape' => 'ClientVpnEndpointIdList', 'locationName' => 'ClientVpnEndpointId', ], 'MaxResults' => [ 'shape' => 'DescribeClientVpnEndpointMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeClientVpnEndpointsResult' => [ 'type' => 'structure', 'members' => [ 'ClientVpnEndpoints' => [ 'shape' => 'EndpointSet', 'locationName' => 'clientVpnEndpoint', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeClientVpnRoutesMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeClientVpnRoutesRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DescribeClientVpnRoutesMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeClientVpnRoutesResult' => [ 'type' => 'structure', 'members' => [ 'Routes' => [ 'shape' => 'ClientVpnRouteSet', 'locationName' => 'routes', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeClientVpnTargetNetworksMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeClientVpnTargetNetworksRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'AssociationIds' => [ 'shape' => 'ValueStringList', ], 'MaxResults' => [ 'shape' => 'DescribeClientVpnTargetNetworksMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeClientVpnTargetNetworksResult' => [ 'type' => 'structure', 'members' => [ 'ClientVpnTargetNetworks' => [ 'shape' => 'TargetNetworkSet', 'locationName' => 'clientVpnTargetNetworks', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeCoipPoolsRequest' => [ 'type' => 'structure', 'members' => [ 'PoolIds' => [ 'shape' => 'CoipPoolIdSet', 'locationName' => 'PoolId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'CoipPoolMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeCoipPoolsResult' => [ 'type' => 'structure', 'members' => [ 'CoipPools' => [ 'shape' => 'CoipPoolSet', 'locationName' => 'coipPoolSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeConversionTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConversionTask', 'locationName' => 'item', ], ], 'DescribeConversionTasksRequest' => [ 'type' => 'structure', 'members' => [ 'ConversionTaskIds' => [ 'shape' => 'ConversionIdStringList', 'locationName' => 'conversionTaskId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeConversionTasksResult' => [ 'type' => 'structure', 'members' => [ 'ConversionTasks' => [ 'shape' => 'DescribeConversionTaskList', 'locationName' => 'conversionTasks', ], ], ], 'DescribeCustomerGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'CustomerGatewayIds' => [ 'shape' => 'CustomerGatewayIdStringList', 'locationName' => 'CustomerGatewayId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeCustomerGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'CustomerGateways' => [ 'shape' => 'CustomerGatewayList', 'locationName' => 'customerGatewaySet', ], ], ], 'DescribeDhcpOptionsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeDhcpOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'DhcpOptionsIds' => [ 'shape' => 'DhcpOptionsIdStringList', 'locationName' => 'DhcpOptionsId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeDhcpOptionsMaxResults', ], ], ], 'DescribeDhcpOptionsResult' => [ 'type' => 'structure', 'members' => [ 'DhcpOptions' => [ 'shape' => 'DhcpOptionsList', 'locationName' => 'dhcpOptionsSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeEgressOnlyInternetGatewaysMaxResults' => [ 'type' => 'integer', 'max' => 255, 'min' => 5, ], 'DescribeEgressOnlyInternetGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'EgressOnlyInternetGatewayIds' => [ 'shape' => 'EgressOnlyInternetGatewayIdList', 'locationName' => 'EgressOnlyInternetGatewayId', ], 'MaxResults' => [ 'shape' => 'DescribeEgressOnlyInternetGatewaysMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeEgressOnlyInternetGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'EgressOnlyInternetGateways' => [ 'shape' => 'EgressOnlyInternetGatewayList', 'locationName' => 'egressOnlyInternetGatewaySet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeElasticGpusMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 10, ], 'DescribeElasticGpusRequest' => [ 'type' => 'structure', 'members' => [ 'ElasticGpuIds' => [ 'shape' => 'ElasticGpuIdSet', 'locationName' => 'ElasticGpuId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DescribeElasticGpusMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeElasticGpusResult' => [ 'type' => 'structure', 'members' => [ 'ElasticGpuSet' => [ 'shape' => 'ElasticGpuSet', 'locationName' => 'elasticGpuSet', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeExportImageTasksMaxResults' => [ 'type' => 'integer', 'max' => 500, 'min' => 1, ], 'DescribeExportImageTasksRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'ExportImageTaskIds' => [ 'shape' => 'ExportImageTaskIdList', 'locationName' => 'ExportImageTaskId', ], 'MaxResults' => [ 'shape' => 'DescribeExportImageTasksMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeExportImageTasksResult' => [ 'type' => 'structure', 'members' => [ 'ExportImageTasks' => [ 'shape' => 'ExportImageTaskList', 'locationName' => 'exportImageTaskSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeExportTasksRequest' => [ 'type' => 'structure', 'members' => [ 'ExportTaskIds' => [ 'shape' => 'ExportTaskIdStringList', 'locationName' => 'exportTaskId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeExportTasksResult' => [ 'type' => 'structure', 'members' => [ 'ExportTasks' => [ 'shape' => 'ExportTaskList', 'locationName' => 'exportTaskSet', ], ], ], 'DescribeFastLaunchImagesRequest' => [ 'type' => 'structure', 'members' => [ 'ImageIds' => [ 'shape' => 'FastLaunchImageIdList', 'locationName' => 'ImageId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DescribeFastLaunchImagesRequestMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeFastLaunchImagesRequestMaxResults' => [ 'type' => 'integer', 'max' => 200, 'min' => 0, ], 'DescribeFastLaunchImagesResult' => [ 'type' => 'structure', 'members' => [ 'FastLaunchImages' => [ 'shape' => 'DescribeFastLaunchImagesSuccessSet', 'locationName' => 'fastLaunchImageSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeFastLaunchImagesSuccessItem' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', 'locationName' => 'imageId', ], 'ResourceType' => [ 'shape' => 'FastLaunchResourceType', 'locationName' => 'resourceType', ], 'SnapshotConfiguration' => [ 'shape' => 'FastLaunchSnapshotConfigurationResponse', 'locationName' => 'snapshotConfiguration', ], 'LaunchTemplate' => [ 'shape' => 'FastLaunchLaunchTemplateSpecificationResponse', 'locationName' => 'launchTemplate', ], 'MaxParallelLaunches' => [ 'shape' => 'Integer', 'locationName' => 'maxParallelLaunches', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'State' => [ 'shape' => 'FastLaunchStateCode', 'locationName' => 'state', ], 'StateTransitionReason' => [ 'shape' => 'String', 'locationName' => 'stateTransitionReason', ], 'StateTransitionTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'stateTransitionTime', ], ], ], 'DescribeFastLaunchImagesSuccessSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DescribeFastLaunchImagesSuccessItem', 'locationName' => 'item', ], ], 'DescribeFastSnapshotRestoreSuccessItem' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'State' => [ 'shape' => 'FastSnapshotRestoreStateCode', 'locationName' => 'state', ], 'StateTransitionReason' => [ 'shape' => 'String', 'locationName' => 'stateTransitionReason', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'OwnerAlias' => [ 'shape' => 'String', 'locationName' => 'ownerAlias', ], 'EnablingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'enablingTime', ], 'OptimizingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'optimizingTime', ], 'EnabledTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'enabledTime', ], 'DisablingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'disablingTime', ], 'DisabledTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'disabledTime', ], ], ], 'DescribeFastSnapshotRestoreSuccessSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DescribeFastSnapshotRestoreSuccessItem', 'locationName' => 'item', ], ], 'DescribeFastSnapshotRestoresMaxResults' => [ 'type' => 'integer', 'max' => 200, 'min' => 0, ], 'DescribeFastSnapshotRestoresRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DescribeFastSnapshotRestoresMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeFastSnapshotRestoresResult' => [ 'type' => 'structure', 'members' => [ 'FastSnapshotRestores' => [ 'shape' => 'DescribeFastSnapshotRestoreSuccessSet', 'locationName' => 'fastSnapshotRestoreSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeFleetError' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateAndOverrides' => [ 'shape' => 'LaunchTemplateAndOverridesResponse', 'locationName' => 'launchTemplateAndOverrides', ], 'Lifecycle' => [ 'shape' => 'InstanceLifecycle', 'locationName' => 'lifecycle', ], 'ErrorCode' => [ 'shape' => 'String', 'locationName' => 'errorCode', ], 'ErrorMessage' => [ 'shape' => 'String', 'locationName' => 'errorMessage', ], ], ], 'DescribeFleetHistoryRequest' => [ 'type' => 'structure', 'required' => [ 'FleetId', 'StartTime', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'EventType' => [ 'shape' => 'FleetEventType', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'FleetId' => [ 'shape' => 'FleetId', ], 'StartTime' => [ 'shape' => 'DateTime', ], ], ], 'DescribeFleetHistoryResult' => [ 'type' => 'structure', 'members' => [ 'HistoryRecords' => [ 'shape' => 'HistoryRecordSet', 'locationName' => 'historyRecordSet', ], 'LastEvaluatedTime' => [ 'shape' => 'DateTime', 'locationName' => 'lastEvaluatedTime', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'FleetId' => [ 'shape' => 'FleetId', 'locationName' => 'fleetId', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], ], ], 'DescribeFleetInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'FleetId' => [ 'shape' => 'FleetId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeFleetInstancesResult' => [ 'type' => 'structure', 'members' => [ 'ActiveInstances' => [ 'shape' => 'ActiveInstanceSet', 'locationName' => 'activeInstanceSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'FleetId' => [ 'shape' => 'FleetId', 'locationName' => 'fleetId', ], ], ], 'DescribeFleetsErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DescribeFleetError', 'locationName' => 'item', ], ], 'DescribeFleetsInstances' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateAndOverrides' => [ 'shape' => 'LaunchTemplateAndOverridesResponse', 'locationName' => 'launchTemplateAndOverrides', ], 'Lifecycle' => [ 'shape' => 'InstanceLifecycle', 'locationName' => 'lifecycle', ], 'InstanceIds' => [ 'shape' => 'InstanceIdsSet', 'locationName' => 'instanceIds', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'Platform' => [ 'shape' => 'PlatformValues', 'locationName' => 'platform', ], ], ], 'DescribeFleetsInstancesSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DescribeFleetsInstances', 'locationName' => 'item', ], ], 'DescribeFleetsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'FleetIds' => [ 'shape' => 'FleetIdSet', 'locationName' => 'FleetId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeFleetsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'Fleets' => [ 'shape' => 'FleetSet', 'locationName' => 'fleetSet', ], ], ], 'DescribeFlowLogsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filter' => [ 'shape' => 'FilterList', ], 'FlowLogIds' => [ 'shape' => 'FlowLogIdList', 'locationName' => 'FlowLogId', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeFlowLogsResult' => [ 'type' => 'structure', 'members' => [ 'FlowLogs' => [ 'shape' => 'FlowLogSet', 'locationName' => 'flowLogSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeFpgaImageAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'FpgaImageId', 'Attribute', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'FpgaImageId' => [ 'shape' => 'FpgaImageId', ], 'Attribute' => [ 'shape' => 'FpgaImageAttributeName', ], ], ], 'DescribeFpgaImageAttributeResult' => [ 'type' => 'structure', 'members' => [ 'FpgaImageAttribute' => [ 'shape' => 'FpgaImageAttribute', 'locationName' => 'fpgaImageAttribute', ], ], ], 'DescribeFpgaImagesMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeFpgaImagesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'FpgaImageIds' => [ 'shape' => 'FpgaImageIdList', 'locationName' => 'FpgaImageId', ], 'Owners' => [ 'shape' => 'OwnerStringList', 'locationName' => 'Owner', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'DescribeFpgaImagesMaxResults', ], ], ], 'DescribeFpgaImagesResult' => [ 'type' => 'structure', 'members' => [ 'FpgaImages' => [ 'shape' => 'FpgaImageList', 'locationName' => 'fpgaImageSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeHostReservationOfferingsRequest' => [ 'type' => 'structure', 'members' => [ 'Filter' => [ 'shape' => 'FilterList', ], 'MaxDuration' => [ 'shape' => 'Integer', ], 'MaxResults' => [ 'shape' => 'DescribeHostReservationsMaxResults', ], 'MinDuration' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'OfferingId' => [ 'shape' => 'OfferingId', ], ], ], 'DescribeHostReservationOfferingsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'OfferingSet' => [ 'shape' => 'HostOfferingSet', 'locationName' => 'offeringSet', ], ], ], 'DescribeHostReservationsMaxResults' => [ 'type' => 'integer', 'max' => 500, 'min' => 5, ], 'DescribeHostReservationsRequest' => [ 'type' => 'structure', 'members' => [ 'Filter' => [ 'shape' => 'FilterList', ], 'HostReservationIdSet' => [ 'shape' => 'HostReservationIdSet', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeHostReservationsResult' => [ 'type' => 'structure', 'members' => [ 'HostReservationSet' => [ 'shape' => 'HostReservationSet', 'locationName' => 'hostReservationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeHostsRequest' => [ 'type' => 'structure', 'members' => [ 'Filter' => [ 'shape' => 'FilterList', 'locationName' => 'filter', ], 'HostIds' => [ 'shape' => 'RequestHostIdList', 'locationName' => 'hostId', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeHostsResult' => [ 'type' => 'structure', 'members' => [ 'Hosts' => [ 'shape' => 'HostList', 'locationName' => 'hostSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeIamInstanceProfileAssociationsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeIamInstanceProfileAssociationsRequest' => [ 'type' => 'structure', 'members' => [ 'AssociationIds' => [ 'shape' => 'AssociationIdList', 'locationName' => 'AssociationId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DescribeIamInstanceProfileAssociationsMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeIamInstanceProfileAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'IamInstanceProfileAssociations' => [ 'shape' => 'IamInstanceProfileAssociationSet', 'locationName' => 'iamInstanceProfileAssociationSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeIdFormatRequest' => [ 'type' => 'structure', 'members' => [ 'Resource' => [ 'shape' => 'String', ], ], ], 'DescribeIdFormatResult' => [ 'type' => 'structure', 'members' => [ 'Statuses' => [ 'shape' => 'IdFormatList', 'locationName' => 'statusSet', ], ], ], 'DescribeIdentityIdFormatRequest' => [ 'type' => 'structure', 'required' => [ 'PrincipalArn', ], 'members' => [ 'PrincipalArn' => [ 'shape' => 'String', 'locationName' => 'principalArn', ], 'Resource' => [ 'shape' => 'String', 'locationName' => 'resource', ], ], ], 'DescribeIdentityIdFormatResult' => [ 'type' => 'structure', 'members' => [ 'Statuses' => [ 'shape' => 'IdFormatList', 'locationName' => 'statusSet', ], ], ], 'DescribeImageAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'Attribute', 'ImageId', ], 'members' => [ 'Attribute' => [ 'shape' => 'ImageAttributeName', ], 'ImageId' => [ 'shape' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeImagesRequest' => [ 'type' => 'structure', 'members' => [ 'ExecutableUsers' => [ 'shape' => 'ExecutableByStringList', 'locationName' => 'ExecutableBy', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'ImageIds' => [ 'shape' => 'ImageIdStringList', 'locationName' => 'ImageId', ], 'Owners' => [ 'shape' => 'OwnerStringList', 'locationName' => 'Owner', ], 'IncludeDeprecated' => [ 'shape' => 'Boolean', ], 'IncludeDisabled' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeImagesResult' => [ 'type' => 'structure', 'members' => [ 'Images' => [ 'shape' => 'ImageList', 'locationName' => 'imagesSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeImportImageTasksRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', ], 'ImportTaskIds' => [ 'shape' => 'ImportTaskIdList', 'locationName' => 'ImportTaskId', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeImportImageTasksResult' => [ 'type' => 'structure', 'members' => [ 'ImportImageTasks' => [ 'shape' => 'ImportImageTaskList', 'locationName' => 'importImageTaskSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeImportSnapshotTasksRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', ], 'ImportTaskIds' => [ 'shape' => 'ImportSnapshotTaskIdList', 'locationName' => 'ImportTaskId', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeImportSnapshotTasksResult' => [ 'type' => 'structure', 'members' => [ 'ImportSnapshotTasks' => [ 'shape' => 'ImportSnapshotTaskList', 'locationName' => 'importSnapshotTaskSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeInstanceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'Attribute', 'InstanceId', ], 'members' => [ 'Attribute' => [ 'shape' => 'InstanceAttributeName', 'locationName' => 'attribute', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], ], ], 'DescribeInstanceConnectEndpointsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'MaxResults' => [ 'shape' => 'InstanceConnectEndpointMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'InstanceConnectEndpointIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'InstanceConnectEndpointId', ], ], ], 'DescribeInstanceConnectEndpointsResult' => [ 'type' => 'structure', 'members' => [ 'InstanceConnectEndpoints' => [ 'shape' => 'InstanceConnectEndpointSet', 'locationName' => 'instanceConnectEndpointSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeInstanceCreditSpecificationsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeInstanceCreditSpecificationsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'MaxResults' => [ 'shape' => 'DescribeInstanceCreditSpecificationsMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeInstanceCreditSpecificationsResult' => [ 'type' => 'structure', 'members' => [ 'InstanceCreditSpecifications' => [ 'shape' => 'InstanceCreditSpecificationList', 'locationName' => 'instanceCreditSpecificationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeInstanceEventNotificationAttributesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeInstanceEventNotificationAttributesResult' => [ 'type' => 'structure', 'members' => [ 'InstanceTagAttribute' => [ 'shape' => 'InstanceTagNotificationAttribute', 'locationName' => 'instanceTagAttribute', ], ], ], 'DescribeInstanceEventWindowsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceEventWindowIds' => [ 'shape' => 'InstanceEventWindowIdSet', 'locationName' => 'InstanceEventWindowId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'ResultRange', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeInstanceEventWindowsResult' => [ 'type' => 'structure', 'members' => [ 'InstanceEventWindows' => [ 'shape' => 'InstanceEventWindowSet', 'locationName' => 'instanceEventWindowSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeInstanceStatusRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'IncludeAllInstances' => [ 'shape' => 'Boolean', 'locationName' => 'includeAllInstances', ], ], ], 'DescribeInstanceStatusResult' => [ 'type' => 'structure', 'members' => [ 'InstanceStatuses' => [ 'shape' => 'InstanceStatusList', 'locationName' => 'instanceStatusSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeInstanceTopologyGroupNameSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PlacementGroupName', ], ], 'DescribeInstanceTopologyInstanceIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceId', ], ], 'DescribeInstanceTopologyMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'DescribeInstanceTopologyRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeInstanceTopologyMaxResults', ], 'InstanceIds' => [ 'shape' => 'DescribeInstanceTopologyInstanceIdSet', 'locationName' => 'InstanceId', ], 'GroupNames' => [ 'shape' => 'DescribeInstanceTopologyGroupNameSet', 'locationName' => 'GroupName', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeInstanceTopologyResult' => [ 'type' => 'structure', 'members' => [ 'Instances' => [ 'shape' => 'InstanceSet', 'locationName' => 'instanceSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeInstanceTypeOfferingsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'LocationType' => [ 'shape' => 'LocationType', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DITOMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeInstanceTypeOfferingsResult' => [ 'type' => 'structure', 'members' => [ 'InstanceTypeOfferings' => [ 'shape' => 'InstanceTypeOfferingsList', 'locationName' => 'instanceTypeOfferingSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeInstanceTypesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceTypes' => [ 'shape' => 'RequestInstanceTypeList', 'locationName' => 'InstanceType', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DITMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeInstanceTypesResult' => [ 'type' => 'structure', 'members' => [ 'InstanceTypes' => [ 'shape' => 'InstanceTypeInfoList', 'locationName' => 'instanceTypeSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeInstancesResult' => [ 'type' => 'structure', 'members' => [ 'Reservations' => [ 'shape' => 'ReservationList', 'locationName' => 'reservationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeInternetGatewaysMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeInternetGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InternetGatewayIds' => [ 'shape' => 'InternetGatewayIdList', 'locationName' => 'internetGatewayId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeInternetGatewaysMaxResults', ], ], ], 'DescribeInternetGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'InternetGateways' => [ 'shape' => 'InternetGatewayList', 'locationName' => 'internetGatewaySet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeIpamByoasnMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'DescribeIpamByoasnRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'MaxResults' => [ 'shape' => 'DescribeIpamByoasnMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeIpamByoasnResult' => [ 'type' => 'structure', 'members' => [ 'Byoasns' => [ 'shape' => 'ByoasnSet', 'locationName' => 'byoasnSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeIpamPoolsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'IpamPoolIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'IpamPoolId', ], ], ], 'DescribeIpamPoolsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], 'IpamPools' => [ 'shape' => 'IpamPoolSet', 'locationName' => 'ipamPoolSet', ], ], ], 'DescribeIpamResourceDiscoveriesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamResourceDiscoveryIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'IpamResourceDiscoveryId', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeIpamResourceDiscoveriesResult' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscoveries' => [ 'shape' => 'IpamResourceDiscoverySet', 'locationName' => 'ipamResourceDiscoverySet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeIpamResourceDiscoveryAssociationsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamResourceDiscoveryAssociationIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'IpamResourceDiscoveryAssociationId', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeIpamResourceDiscoveryAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscoveryAssociations' => [ 'shape' => 'IpamResourceDiscoveryAssociationSet', 'locationName' => 'ipamResourceDiscoveryAssociationSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeIpamScopesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'IpamScopeIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'IpamScopeId', ], ], ], 'DescribeIpamScopesResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], 'IpamScopes' => [ 'shape' => 'IpamScopeSet', 'locationName' => 'ipamScopeSet', ], ], ], 'DescribeIpamsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'IpamIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'IpamId', ], ], ], 'DescribeIpamsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], 'Ipams' => [ 'shape' => 'IpamSet', 'locationName' => 'ipamSet', ], ], ], 'DescribeIpv6PoolsRequest' => [ 'type' => 'structure', 'members' => [ 'PoolIds' => [ 'shape' => 'Ipv6PoolIdList', 'locationName' => 'PoolId', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'Ipv6PoolMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeIpv6PoolsResult' => [ 'type' => 'structure', 'members' => [ 'Ipv6Pools' => [ 'shape' => 'Ipv6PoolSet', 'locationName' => 'ipv6PoolSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeKeyPairsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'KeyNames' => [ 'shape' => 'KeyNameStringList', 'locationName' => 'KeyName', ], 'KeyPairIds' => [ 'shape' => 'KeyPairIdStringList', 'locationName' => 'KeyPairId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'IncludePublicKey' => [ 'shape' => 'Boolean', ], ], ], 'DescribeKeyPairsResult' => [ 'type' => 'structure', 'members' => [ 'KeyPairs' => [ 'shape' => 'KeyPairList', 'locationName' => 'keySet', ], ], ], 'DescribeLaunchTemplateVersionsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', ], 'Versions' => [ 'shape' => 'VersionStringList', 'locationName' => 'LaunchTemplateVersion', ], 'MinVersion' => [ 'shape' => 'String', ], 'MaxVersion' => [ 'shape' => 'String', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'ResolveAlias' => [ 'shape' => 'Boolean', ], ], ], 'DescribeLaunchTemplateVersionsResult' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateVersions' => [ 'shape' => 'LaunchTemplateVersionSet', 'locationName' => 'launchTemplateVersionSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeLaunchTemplatesMaxResults' => [ 'type' => 'integer', 'max' => 200, 'min' => 1, ], 'DescribeLaunchTemplatesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'LaunchTemplateIds' => [ 'shape' => 'LaunchTemplateIdStringList', 'locationName' => 'LaunchTemplateId', ], 'LaunchTemplateNames' => [ 'shape' => 'LaunchTemplateNameStringList', 'locationName' => 'LaunchTemplateName', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeLaunchTemplatesMaxResults', ], ], ], 'DescribeLaunchTemplatesResult' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplates' => [ 'shape' => 'LaunchTemplateSet', 'locationName' => 'launchTemplates', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationIds' => [ 'shape' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationIdSet', 'locationName' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'LocalGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVirtualInterfaceGroupAssociations' => [ 'shape' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationSet', 'locationName' => 'localGatewayRouteTableVirtualInterfaceGroupAssociationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeLocalGatewayRouteTableVpcAssociationsRequest' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVpcAssociationIds' => [ 'shape' => 'LocalGatewayRouteTableVpcAssociationIdSet', 'locationName' => 'LocalGatewayRouteTableVpcAssociationId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'LocalGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeLocalGatewayRouteTableVpcAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVpcAssociations' => [ 'shape' => 'LocalGatewayRouteTableVpcAssociationSet', 'locationName' => 'localGatewayRouteTableVpcAssociationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeLocalGatewayRouteTablesRequest' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableIds' => [ 'shape' => 'LocalGatewayRouteTableIdSet', 'locationName' => 'LocalGatewayRouteTableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'LocalGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeLocalGatewayRouteTablesResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTables' => [ 'shape' => 'LocalGatewayRouteTableSet', 'locationName' => 'localGatewayRouteTableSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeLocalGatewayVirtualInterfaceGroupsRequest' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayVirtualInterfaceGroupIds' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupIdSet', 'locationName' => 'LocalGatewayVirtualInterfaceGroupId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'LocalGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeLocalGatewayVirtualInterfaceGroupsResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayVirtualInterfaceGroups' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupSet', 'locationName' => 'localGatewayVirtualInterfaceGroupSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeLocalGatewayVirtualInterfacesRequest' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayVirtualInterfaceIds' => [ 'shape' => 'LocalGatewayVirtualInterfaceIdSet', 'locationName' => 'LocalGatewayVirtualInterfaceId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'LocalGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeLocalGatewayVirtualInterfacesResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayVirtualInterfaces' => [ 'shape' => 'LocalGatewayVirtualInterfaceSet', 'locationName' => 'localGatewayVirtualInterfaceSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeLocalGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayIds' => [ 'shape' => 'LocalGatewayIdSet', 'locationName' => 'LocalGatewayId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'LocalGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeLocalGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'LocalGateways' => [ 'shape' => 'LocalGatewaySet', 'locationName' => 'localGatewaySet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeLockedSnapshotsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeLockedSnapshotsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DescribeLockedSnapshotsMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'SnapshotIds' => [ 'shape' => 'SnapshotIdStringList', 'locationName' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeLockedSnapshotsResult' => [ 'type' => 'structure', 'members' => [ 'Snapshots' => [ 'shape' => 'LockedSnapshotsInfoList', 'locationName' => 'snapshotSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeManagedPrefixListsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'PrefixListMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'PrefixListIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'PrefixListId', ], ], ], 'DescribeManagedPrefixListsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], 'PrefixLists' => [ 'shape' => 'ManagedPrefixListSet', 'locationName' => 'prefixListSet', ], ], ], 'DescribeMovingAddressesMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeMovingAddressesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'MaxResults' => [ 'shape' => 'DescribeMovingAddressesMaxResults', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'PublicIps' => [ 'shape' => 'ValueStringList', 'locationName' => 'publicIp', ], ], ], 'DescribeMovingAddressesResult' => [ 'type' => 'structure', 'members' => [ 'MovingAddressStatuses' => [ 'shape' => 'MovingAddressStatusSet', 'locationName' => 'movingAddressStatusSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNatGatewaysMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeNatGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filter' => [ 'shape' => 'FilterList', ], 'MaxResults' => [ 'shape' => 'DescribeNatGatewaysMaxResults', ], 'NatGatewayIds' => [ 'shape' => 'NatGatewayIdStringList', 'locationName' => 'NatGatewayId', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeNatGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'NatGateways' => [ 'shape' => 'NatGatewayList', 'locationName' => 'natGatewaySet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNetworkAclsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeNetworkAclsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkAclIds' => [ 'shape' => 'NetworkAclIdStringList', 'locationName' => 'NetworkAclId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeNetworkAclsMaxResults', ], ], ], 'DescribeNetworkAclsResult' => [ 'type' => 'structure', 'members' => [ 'NetworkAcls' => [ 'shape' => 'NetworkAclList', 'locationName' => 'networkAclSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNetworkInsightsAccessScopeAnalysesRequest' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeAnalysisIds' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisIdList', 'locationName' => 'NetworkInsightsAccessScopeAnalysisId', ], 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', ], 'AnalysisStartTimeBegin' => [ 'shape' => 'MillisecondDateTime', ], 'AnalysisStartTimeEnd' => [ 'shape' => 'MillisecondDateTime', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'NetworkInsightsMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeNetworkInsightsAccessScopeAnalysesResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeAnalyses' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisList', 'locationName' => 'networkInsightsAccessScopeAnalysisSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNetworkInsightsAccessScopesRequest' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeIds' => [ 'shape' => 'NetworkInsightsAccessScopeIdList', 'locationName' => 'NetworkInsightsAccessScopeId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'NetworkInsightsMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeNetworkInsightsAccessScopesResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopes' => [ 'shape' => 'NetworkInsightsAccessScopeList', 'locationName' => 'networkInsightsAccessScopeSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNetworkInsightsAnalysesRequest' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAnalysisIds' => [ 'shape' => 'NetworkInsightsAnalysisIdList', 'locationName' => 'NetworkInsightsAnalysisId', ], 'NetworkInsightsPathId' => [ 'shape' => 'NetworkInsightsPathId', ], 'AnalysisStartTime' => [ 'shape' => 'MillisecondDateTime', ], 'AnalysisEndTime' => [ 'shape' => 'MillisecondDateTime', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'NetworkInsightsMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeNetworkInsightsAnalysesResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAnalyses' => [ 'shape' => 'NetworkInsightsAnalysisList', 'locationName' => 'networkInsightsAnalysisSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNetworkInsightsPathsRequest' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsPathIds' => [ 'shape' => 'NetworkInsightsPathIdList', 'locationName' => 'NetworkInsightsPathId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'NetworkInsightsMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeNetworkInsightsPathsResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsPaths' => [ 'shape' => 'NetworkInsightsPathList', 'locationName' => 'networkInsightsPathSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNetworkInterfaceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'Attribute' => [ 'shape' => 'NetworkInterfaceAttribute', 'locationName' => 'attribute', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], ], ], 'DescribeNetworkInterfaceAttributeResult' => [ 'type' => 'structure', 'members' => [ 'Attachment' => [ 'shape' => 'NetworkInterfaceAttachment', 'locationName' => 'attachment', ], 'Description' => [ 'shape' => 'AttributeValue', 'locationName' => 'description', ], 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'SourceDestCheck' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'sourceDestCheck', ], ], ], 'DescribeNetworkInterfacePermissionsMaxResults' => [ 'type' => 'integer', 'max' => 255, 'min' => 5, ], 'DescribeNetworkInterfacePermissionsRequest' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfacePermissionIds' => [ 'shape' => 'NetworkInterfacePermissionIdList', 'locationName' => 'NetworkInterfacePermissionId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeNetworkInterfacePermissionsMaxResults', ], ], ], 'DescribeNetworkInterfacePermissionsResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfacePermissions' => [ 'shape' => 'NetworkInterfacePermissionList', 'locationName' => 'networkInterfacePermissions', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNetworkInterfacesMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeNetworkInterfacesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkInterfaceIds' => [ 'shape' => 'NetworkInterfaceIdList', 'locationName' => 'NetworkInterfaceId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeNetworkInterfacesMaxResults', ], ], ], 'DescribeNetworkInterfacesResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaces' => [ 'shape' => 'NetworkInterfaceList', 'locationName' => 'networkInterfaceSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribePlacementGroupsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupNames' => [ 'shape' => 'PlacementGroupStringList', 'locationName' => 'groupName', ], 'GroupIds' => [ 'shape' => 'PlacementGroupIdStringList', 'locationName' => 'GroupId', ], ], ], 'DescribePlacementGroupsResult' => [ 'type' => 'structure', 'members' => [ 'PlacementGroups' => [ 'shape' => 'PlacementGroupList', 'locationName' => 'placementGroupSet', ], ], ], 'DescribePrefixListsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'PrefixListIds' => [ 'shape' => 'PrefixListResourceIdStringList', 'locationName' => 'PrefixListId', ], ], ], 'DescribePrefixListsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'PrefixLists' => [ 'shape' => 'PrefixListSet', 'locationName' => 'prefixListSet', ], ], ], 'DescribePrincipalIdFormatMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'DescribePrincipalIdFormatRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Resources' => [ 'shape' => 'ResourceList', 'locationName' => 'Resource', ], 'MaxResults' => [ 'shape' => 'DescribePrincipalIdFormatMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribePrincipalIdFormatResult' => [ 'type' => 'structure', 'members' => [ 'Principals' => [ 'shape' => 'PrincipalIdFormatList', 'locationName' => 'principalSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribePublicIpv4PoolsRequest' => [ 'type' => 'structure', 'members' => [ 'PoolIds' => [ 'shape' => 'PublicIpv4PoolIdStringList', 'locationName' => 'PoolId', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'PoolMaxResults', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribePublicIpv4PoolsResult' => [ 'type' => 'structure', 'members' => [ 'PublicIpv4Pools' => [ 'shape' => 'PublicIpv4PoolSet', 'locationName' => 'publicIpv4PoolSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeRegionsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'RegionNames' => [ 'shape' => 'RegionNameStringList', 'locationName' => 'RegionName', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'AllRegions' => [ 'shape' => 'Boolean', ], ], ], 'DescribeRegionsResult' => [ 'type' => 'structure', 'members' => [ 'Regions' => [ 'shape' => 'RegionList', 'locationName' => 'regionInfo', ], ], ], 'DescribeReplaceRootVolumeTasksMaxResults' => [ 'type' => 'integer', 'max' => 50, 'min' => 1, ], 'DescribeReplaceRootVolumeTasksRequest' => [ 'type' => 'structure', 'members' => [ 'ReplaceRootVolumeTaskIds' => [ 'shape' => 'ReplaceRootVolumeTaskIds', 'locationName' => 'ReplaceRootVolumeTaskId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DescribeReplaceRootVolumeTasksMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeReplaceRootVolumeTasksResult' => [ 'type' => 'structure', 'members' => [ 'ReplaceRootVolumeTasks' => [ 'shape' => 'ReplaceRootVolumeTasks', 'locationName' => 'replaceRootVolumeTaskSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeReservedInstancesListingsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'ReservedInstancesId' => [ 'shape' => 'ReservationId', 'locationName' => 'reservedInstancesId', ], 'ReservedInstancesListingId' => [ 'shape' => 'ReservedInstancesListingId', 'locationName' => 'reservedInstancesListingId', ], ], ], 'DescribeReservedInstancesListingsResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesListings' => [ 'shape' => 'ReservedInstancesListingList', 'locationName' => 'reservedInstancesListingsSet', ], ], ], 'DescribeReservedInstancesModificationsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'ReservedInstancesModificationIds' => [ 'shape' => 'ReservedInstancesModificationIdStringList', 'locationName' => 'ReservedInstancesModificationId', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeReservedInstancesModificationsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'ReservedInstancesModifications' => [ 'shape' => 'ReservedInstancesModificationList', 'locationName' => 'reservedInstancesModificationsSet', ], ], ], 'DescribeReservedInstancesOfferingsRequest' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'IncludeMarketplace' => [ 'shape' => 'Boolean', ], 'InstanceType' => [ 'shape' => 'InstanceType', ], 'MaxDuration' => [ 'shape' => 'Long', ], 'MaxInstanceCount' => [ 'shape' => 'Integer', ], 'MinDuration' => [ 'shape' => 'Long', ], 'OfferingClass' => [ 'shape' => 'OfferingClassType', ], 'ProductDescription' => [ 'shape' => 'RIProductDescription', ], 'ReservedInstancesOfferingIds' => [ 'shape' => 'ReservedInstancesOfferingIdStringList', 'locationName' => 'ReservedInstancesOfferingId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceTenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'instanceTenancy', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'OfferingType' => [ 'shape' => 'OfferingTypeValues', 'locationName' => 'offeringType', ], ], ], 'DescribeReservedInstancesOfferingsResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesOfferings' => [ 'shape' => 'ReservedInstancesOfferingList', 'locationName' => 'reservedInstancesOfferingsSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeReservedInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'OfferingClass' => [ 'shape' => 'OfferingClassType', ], 'ReservedInstancesIds' => [ 'shape' => 'ReservedInstancesIdStringList', 'locationName' => 'ReservedInstancesId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'OfferingType' => [ 'shape' => 'OfferingTypeValues', 'locationName' => 'offeringType', ], ], ], 'DescribeReservedInstancesResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstances' => [ 'shape' => 'ReservedInstancesList', 'locationName' => 'reservedInstancesSet', ], ], ], 'DescribeRouteTablesMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 5, ], 'DescribeRouteTablesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'RouteTableIds' => [ 'shape' => 'RouteTableIdStringList', 'locationName' => 'RouteTableId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeRouteTablesMaxResults', ], ], ], 'DescribeRouteTablesResult' => [ 'type' => 'structure', 'members' => [ 'RouteTables' => [ 'shape' => 'RouteTableList', 'locationName' => 'routeTableSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeScheduledInstanceAvailabilityMaxResults' => [ 'type' => 'integer', 'max' => 300, 'min' => 5, ], 'DescribeScheduledInstanceAvailabilityRequest' => [ 'type' => 'structure', 'required' => [ 'FirstSlotStartTimeRange', 'Recurrence', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'FirstSlotStartTimeRange' => [ 'shape' => 'SlotDateTimeRangeRequest', ], 'MaxResults' => [ 'shape' => 'DescribeScheduledInstanceAvailabilityMaxResults', ], 'MaxSlotDurationInHours' => [ 'shape' => 'Integer', ], 'MinSlotDurationInHours' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'Recurrence' => [ 'shape' => 'ScheduledInstanceRecurrenceRequest', ], ], ], 'DescribeScheduledInstanceAvailabilityResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'ScheduledInstanceAvailabilitySet' => [ 'shape' => 'ScheduledInstanceAvailabilitySet', 'locationName' => 'scheduledInstanceAvailabilitySet', ], ], ], 'DescribeScheduledInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'ScheduledInstanceIds' => [ 'shape' => 'ScheduledInstanceIdRequestSet', 'locationName' => 'ScheduledInstanceId', ], 'SlotStartTimeRange' => [ 'shape' => 'SlotStartTimeRangeRequest', ], ], ], 'DescribeScheduledInstancesResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'ScheduledInstanceSet' => [ 'shape' => 'ScheduledInstanceSet', 'locationName' => 'scheduledInstanceSet', ], ], ], 'DescribeSecurityGroupReferencesRequest' => [ 'type' => 'structure', 'required' => [ 'GroupId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'GroupId' => [ 'shape' => 'GroupIds', ], ], ], 'DescribeSecurityGroupReferencesResult' => [ 'type' => 'structure', 'members' => [ 'SecurityGroupReferenceSet' => [ 'shape' => 'SecurityGroupReferences', 'locationName' => 'securityGroupReferenceSet', ], ], ], 'DescribeSecurityGroupRulesMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeSecurityGroupRulesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'SecurityGroupRuleIds' => [ 'shape' => 'SecurityGroupRuleIdList', 'locationName' => 'SecurityGroupRuleId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeSecurityGroupRulesMaxResults', ], ], ], 'DescribeSecurityGroupRulesResult' => [ 'type' => 'structure', 'members' => [ 'SecurityGroupRules' => [ 'shape' => 'SecurityGroupRuleList', 'locationName' => 'securityGroupRuleSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSecurityGroupsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeSecurityGroupsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'GroupIds' => [ 'shape' => 'GroupIdStringList', 'locationName' => 'GroupId', ], 'GroupNames' => [ 'shape' => 'GroupNameStringList', 'locationName' => 'GroupName', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeSecurityGroupsMaxResults', ], ], ], 'DescribeSecurityGroupsResult' => [ 'type' => 'structure', 'members' => [ 'SecurityGroups' => [ 'shape' => 'SecurityGroupList', 'locationName' => 'securityGroupInfo', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSnapshotAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'Attribute', 'SnapshotId', ], 'members' => [ 'Attribute' => [ 'shape' => 'SnapshotAttributeName', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeSnapshotAttributeResult' => [ 'type' => 'structure', 'members' => [ 'CreateVolumePermissions' => [ 'shape' => 'CreateVolumePermissionList', 'locationName' => 'createVolumePermission', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], ], ], 'DescribeSnapshotTierStatusMaxResults' => [ 'type' => 'integer', ], 'DescribeSnapshotTierStatusRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeSnapshotTierStatusMaxResults', ], ], ], 'DescribeSnapshotTierStatusResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotTierStatuses' => [ 'shape' => 'snapshotTierStatusSet', 'locationName' => 'snapshotTierStatusSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSnapshotsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'OwnerIds' => [ 'shape' => 'OwnerStringList', 'locationName' => 'Owner', ], 'RestorableByUserIds' => [ 'shape' => 'RestorableByStringList', 'locationName' => 'RestorableBy', ], 'SnapshotIds' => [ 'shape' => 'SnapshotIdStringList', 'locationName' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeSnapshotsResult' => [ 'type' => 'structure', 'members' => [ 'Snapshots' => [ 'shape' => 'SnapshotList', 'locationName' => 'snapshotSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSpotDatafeedSubscriptionRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeSpotDatafeedSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'SpotDatafeedSubscription' => [ 'shape' => 'SpotDatafeedSubscription', 'locationName' => 'spotDatafeedSubscription', ], ], ], 'DescribeSpotFleetInstancesMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'DescribeSpotFleetInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'MaxResults' => [ 'shape' => 'DescribeSpotFleetInstancesMaxResults', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'SpotFleetRequestId' => [ 'shape' => 'SpotFleetRequestId', 'locationName' => 'spotFleetRequestId', ], ], ], 'DescribeSpotFleetInstancesResponse' => [ 'type' => 'structure', 'members' => [ 'ActiveInstances' => [ 'shape' => 'ActiveInstanceSet', 'locationName' => 'activeInstanceSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], ], ], 'DescribeSpotFleetRequestHistoryMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'DescribeSpotFleetRequestHistoryRequest' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestId', 'StartTime', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'EventType' => [ 'shape' => 'EventType', 'locationName' => 'eventType', ], 'MaxResults' => [ 'shape' => 'DescribeSpotFleetRequestHistoryMaxResults', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'SpotFleetRequestId' => [ 'shape' => 'SpotFleetRequestId', 'locationName' => 'spotFleetRequestId', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], ], ], 'DescribeSpotFleetRequestHistoryResponse' => [ 'type' => 'structure', 'members' => [ 'HistoryRecords' => [ 'shape' => 'HistoryRecords', 'locationName' => 'historyRecordSet', ], 'LastEvaluatedTime' => [ 'shape' => 'DateTime', 'locationName' => 'lastEvaluatedTime', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], ], ], 'DescribeSpotFleetRequestsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'SpotFleetRequestIds' => [ 'shape' => 'SpotFleetRequestIdList', 'locationName' => 'spotFleetRequestId', ], ], ], 'DescribeSpotFleetRequestsResponse' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'SpotFleetRequestConfigs' => [ 'shape' => 'SpotFleetRequestConfigSet', 'locationName' => 'spotFleetRequestConfigSet', ], ], ], 'DescribeSpotInstanceRequestsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SpotInstanceRequestIds' => [ 'shape' => 'SpotInstanceRequestIdList', 'locationName' => 'SpotInstanceRequestId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'Integer', ], ], ], 'DescribeSpotInstanceRequestsResult' => [ 'type' => 'structure', 'members' => [ 'SpotInstanceRequests' => [ 'shape' => 'SpotInstanceRequestList', 'locationName' => 'spotInstanceRequestSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSpotPriceHistoryRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'EndTime' => [ 'shape' => 'DateTime', 'locationName' => 'endTime', ], 'InstanceTypes' => [ 'shape' => 'InstanceTypeList', 'locationName' => 'InstanceType', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'ProductDescriptions' => [ 'shape' => 'ProductDescriptionList', 'locationName' => 'ProductDescription', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], ], ], 'DescribeSpotPriceHistoryResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'SpotPriceHistory' => [ 'shape' => 'SpotPriceHistoryList', 'locationName' => 'spotPriceHistorySet', ], ], ], 'DescribeStaleSecurityGroupsMaxResults' => [ 'type' => 'integer', 'max' => 255, 'min' => 5, ], 'DescribeStaleSecurityGroupsNextToken' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, ], 'DescribeStaleSecurityGroupsRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'MaxResults' => [ 'shape' => 'DescribeStaleSecurityGroupsMaxResults', ], 'NextToken' => [ 'shape' => 'DescribeStaleSecurityGroupsNextToken', ], 'VpcId' => [ 'shape' => 'VpcId', ], ], ], 'DescribeStaleSecurityGroupsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'StaleSecurityGroupSet' => [ 'shape' => 'StaleSecurityGroupSet', 'locationName' => 'staleSecurityGroupSet', ], ], ], 'DescribeStoreImageTasksRequest' => [ 'type' => 'structure', 'members' => [ 'ImageIds' => [ 'shape' => 'ImageIdList', 'locationName' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeStoreImageTasksRequestMaxResults', ], ], ], 'DescribeStoreImageTasksRequestMaxResults' => [ 'type' => 'integer', 'max' => 200, 'min' => 1, ], 'DescribeStoreImageTasksResult' => [ 'type' => 'structure', 'members' => [ 'StoreImageTaskResults' => [ 'shape' => 'StoreImageTaskResultSet', 'locationName' => 'storeImageTaskResultSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSubnetsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeSubnetsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'SubnetIds' => [ 'shape' => 'SubnetIdStringList', 'locationName' => 'SubnetId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeSubnetsMaxResults', ], ], ], 'DescribeSubnetsResult' => [ 'type' => 'structure', 'members' => [ 'Subnets' => [ 'shape' => 'SubnetList', 'locationName' => 'subnetSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTagsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTagsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'Tags' => [ 'shape' => 'TagDescriptionList', 'locationName' => 'tagSet', ], ], ], 'DescribeTrafficMirrorFiltersRequest' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilterIds' => [ 'shape' => 'TrafficMirrorFilterIdList', 'locationName' => 'TrafficMirrorFilterId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TrafficMirroringMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeTrafficMirrorFiltersResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilters' => [ 'shape' => 'TrafficMirrorFilterSet', 'locationName' => 'trafficMirrorFilterSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTrafficMirrorSessionsRequest' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorSessionIds' => [ 'shape' => 'TrafficMirrorSessionIdList', 'locationName' => 'TrafficMirrorSessionId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TrafficMirroringMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeTrafficMirrorSessionsResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorSessions' => [ 'shape' => 'TrafficMirrorSessionSet', 'locationName' => 'trafficMirrorSessionSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTrafficMirrorTargetsRequest' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorTargetIds' => [ 'shape' => 'TrafficMirrorTargetIdList', 'locationName' => 'TrafficMirrorTargetId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TrafficMirroringMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeTrafficMirrorTargetsResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorTargets' => [ 'shape' => 'TrafficMirrorTargetSet', 'locationName' => 'trafficMirrorTargetSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayAttachmentsRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentIds' => [ 'shape' => 'TransitGatewayAttachmentIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayAttachmentsResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachments' => [ 'shape' => 'TransitGatewayAttachmentList', 'locationName' => 'transitGatewayAttachments', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayConnectPeersRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayConnectPeerIds' => [ 'shape' => 'TransitGatewayConnectPeerIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayConnectPeersResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayConnectPeers' => [ 'shape' => 'TransitGatewayConnectPeerList', 'locationName' => 'transitGatewayConnectPeerSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayConnectsRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentIds' => [ 'shape' => 'TransitGatewayAttachmentIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayConnectsResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayConnects' => [ 'shape' => 'TransitGatewayConnectList', 'locationName' => 'transitGatewayConnectSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayMulticastDomainsRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainIds' => [ 'shape' => 'TransitGatewayMulticastDomainIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayMulticastDomainsResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomains' => [ 'shape' => 'TransitGatewayMulticastDomainList', 'locationName' => 'transitGatewayMulticastDomains', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayPeeringAttachmentsRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentIds' => [ 'shape' => 'TransitGatewayAttachmentIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayPeeringAttachmentsResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPeeringAttachments' => [ 'shape' => 'TransitGatewayPeeringAttachmentList', 'locationName' => 'transitGatewayPeeringAttachments', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayPolicyTablesRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPolicyTableIds' => [ 'shape' => 'TransitGatewayPolicyTableIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayPolicyTablesResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPolicyTables' => [ 'shape' => 'TransitGatewayPolicyTableList', 'locationName' => 'transitGatewayPolicyTables', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayRouteTableAnnouncementsRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableAnnouncementIds' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayRouteTableAnnouncementsResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableAnnouncements' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementList', 'locationName' => 'transitGatewayRouteTableAnnouncements', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayRouteTablesRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableIds' => [ 'shape' => 'TransitGatewayRouteTableIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayRouteTablesResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTables' => [ 'shape' => 'TransitGatewayRouteTableList', 'locationName' => 'transitGatewayRouteTables', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayVpcAttachmentsRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentIds' => [ 'shape' => 'TransitGatewayAttachmentIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayVpcAttachmentsResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayVpcAttachments' => [ 'shape' => 'TransitGatewayVpcAttachmentList', 'locationName' => 'transitGatewayVpcAttachments', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayIds' => [ 'shape' => 'TransitGatewayIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'TransitGateways' => [ 'shape' => 'TransitGatewayList', 'locationName' => 'transitGatewaySet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTrunkInterfaceAssociationsMaxResults' => [ 'type' => 'integer', 'max' => 255, 'min' => 5, ], 'DescribeTrunkInterfaceAssociationsRequest' => [ 'type' => 'structure', 'members' => [ 'AssociationIds' => [ 'shape' => 'TrunkInterfaceAssociationIdList', 'locationName' => 'AssociationId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeTrunkInterfaceAssociationsMaxResults', ], ], ], 'DescribeTrunkInterfaceAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'InterfaceAssociations' => [ 'shape' => 'TrunkInterfaceAssociationList', 'locationName' => 'interfaceAssociationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVerifiedAccessEndpointsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeVerifiedAccessEndpointsRequest' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessEndpointIds' => [ 'shape' => 'VerifiedAccessEndpointIdList', 'locationName' => 'VerifiedAccessEndpointId', ], 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'VerifiedAccessGroupId' => [ 'shape' => 'VerifiedAccessGroupId', ], 'MaxResults' => [ 'shape' => 'DescribeVerifiedAccessEndpointsMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeVerifiedAccessEndpointsResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessEndpoints' => [ 'shape' => 'VerifiedAccessEndpointList', 'locationName' => 'verifiedAccessEndpointSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeVerifiedAccessGroupMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeVerifiedAccessGroupsRequest' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessGroupIds' => [ 'shape' => 'VerifiedAccessGroupIdList', 'locationName' => 'VerifiedAccessGroupId', ], 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'MaxResults' => [ 'shape' => 'DescribeVerifiedAccessGroupMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeVerifiedAccessGroupsResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessGroups' => [ 'shape' => 'VerifiedAccessGroupList', 'locationName' => 'verifiedAccessGroupSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeVerifiedAccessInstanceLoggingConfigurationsMaxResults' => [ 'type' => 'integer', 'max' => 10, 'min' => 1, ], 'DescribeVerifiedAccessInstanceLoggingConfigurationsRequest' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstanceIds' => [ 'shape' => 'VerifiedAccessInstanceIdList', 'locationName' => 'VerifiedAccessInstanceId', ], 'MaxResults' => [ 'shape' => 'DescribeVerifiedAccessInstanceLoggingConfigurationsMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeVerifiedAccessInstanceLoggingConfigurationsResult' => [ 'type' => 'structure', 'members' => [ 'LoggingConfigurations' => [ 'shape' => 'VerifiedAccessInstanceLoggingConfigurationList', 'locationName' => 'loggingConfigurationSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeVerifiedAccessInstancesMaxResults' => [ 'type' => 'integer', 'max' => 200, 'min' => 5, ], 'DescribeVerifiedAccessInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstanceIds' => [ 'shape' => 'VerifiedAccessInstanceIdList', 'locationName' => 'VerifiedAccessInstanceId', ], 'MaxResults' => [ 'shape' => 'DescribeVerifiedAccessInstancesMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeVerifiedAccessInstancesResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstances' => [ 'shape' => 'VerifiedAccessInstanceList', 'locationName' => 'verifiedAccessInstanceSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeVerifiedAccessTrustProvidersMaxResults' => [ 'type' => 'integer', 'max' => 200, 'min' => 5, ], 'DescribeVerifiedAccessTrustProvidersRequest' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProviderIds' => [ 'shape' => 'VerifiedAccessTrustProviderIdList', 'locationName' => 'VerifiedAccessTrustProviderId', ], 'MaxResults' => [ 'shape' => 'DescribeVerifiedAccessTrustProvidersMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeVerifiedAccessTrustProvidersResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProviders' => [ 'shape' => 'VerifiedAccessTrustProviderList', 'locationName' => 'verifiedAccessTrustProviderSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeVolumeAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'Attribute', 'VolumeId', ], 'members' => [ 'Attribute' => [ 'shape' => 'VolumeAttributeName', ], 'VolumeId' => [ 'shape' => 'VolumeId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeVolumeAttributeResult' => [ 'type' => 'structure', 'members' => [ 'AutoEnableIO' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'autoEnableIO', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], ], ], 'DescribeVolumeStatusRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'VolumeIds' => [ 'shape' => 'VolumeIdStringList', 'locationName' => 'VolumeId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeVolumeStatusResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'VolumeStatuses' => [ 'shape' => 'VolumeStatusList', 'locationName' => 'volumeStatusSet', ], ], ], 'DescribeVolumesModificationsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VolumeIds' => [ 'shape' => 'VolumeIdStringList', 'locationName' => 'VolumeId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'Integer', ], ], ], 'DescribeVolumesModificationsResult' => [ 'type' => 'structure', 'members' => [ 'VolumesModifications' => [ 'shape' => 'VolumeModificationList', 'locationName' => 'volumeModificationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVolumesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'VolumeIds' => [ 'shape' => 'VolumeIdStringList', 'locationName' => 'VolumeId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVolumesResult' => [ 'type' => 'structure', 'members' => [ 'Volumes' => [ 'shape' => 'VolumeList', 'locationName' => 'volumeSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'Attribute', 'VpcId', ], 'members' => [ 'Attribute' => [ 'shape' => 'VpcAttributeName', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeVpcAttributeResult' => [ 'type' => 'structure', 'members' => [ 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'EnableDnsHostnames' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'enableDnsHostnames', ], 'EnableDnsSupport' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'enableDnsSupport', ], 'EnableNetworkAddressUsageMetrics' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'enableNetworkAddressUsageMetrics', ], ], ], 'DescribeVpcClassicLinkDnsSupportMaxResults' => [ 'type' => 'integer', 'max' => 255, 'min' => 5, ], 'DescribeVpcClassicLinkDnsSupportNextToken' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, ], 'DescribeVpcClassicLinkDnsSupportRequest' => [ 'type' => 'structure', 'members' => [ 'MaxResults' => [ 'shape' => 'DescribeVpcClassicLinkDnsSupportMaxResults', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'DescribeVpcClassicLinkDnsSupportNextToken', 'locationName' => 'nextToken', ], 'VpcIds' => [ 'shape' => 'VpcClassicLinkIdList', ], ], ], 'DescribeVpcClassicLinkDnsSupportResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'DescribeVpcClassicLinkDnsSupportNextToken', 'locationName' => 'nextToken', ], 'Vpcs' => [ 'shape' => 'ClassicLinkDnsSupportList', 'locationName' => 'vpcs', ], ], ], 'DescribeVpcClassicLinkRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcIds' => [ 'shape' => 'VpcClassicLinkIdList', 'locationName' => 'VpcId', ], ], ], 'DescribeVpcClassicLinkResult' => [ 'type' => 'structure', 'members' => [ 'Vpcs' => [ 'shape' => 'VpcClassicLinkList', 'locationName' => 'vpcSet', ], ], ], 'DescribeVpcEndpointConnectionNotificationsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ConnectionNotificationId' => [ 'shape' => 'ConnectionNotificationId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeVpcEndpointConnectionNotificationsResult' => [ 'type' => 'structure', 'members' => [ 'ConnectionNotificationSet' => [ 'shape' => 'ConnectionNotificationSet', 'locationName' => 'connectionNotificationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcEndpointConnectionsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeVpcEndpointConnectionsResult' => [ 'type' => 'structure', 'members' => [ 'VpcEndpointConnections' => [ 'shape' => 'VpcEndpointConnectionSet', 'locationName' => 'vpcEndpointConnectionSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcEndpointServiceConfigurationsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceIds' => [ 'shape' => 'VpcEndpointServiceIdList', 'locationName' => 'ServiceId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeVpcEndpointServiceConfigurationsResult' => [ 'type' => 'structure', 'members' => [ 'ServiceConfigurations' => [ 'shape' => 'ServiceConfigurationSet', 'locationName' => 'serviceConfigurationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcEndpointServicePermissionsRequest' => [ 'type' => 'structure', 'required' => [ 'ServiceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceId' => [ 'shape' => 'VpcEndpointServiceId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeVpcEndpointServicePermissionsResult' => [ 'type' => 'structure', 'members' => [ 'AllowedPrincipals' => [ 'shape' => 'AllowedPrincipalSet', 'locationName' => 'allowedPrincipals', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcEndpointServicesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceNames' => [ 'shape' => 'ValueStringList', 'locationName' => 'ServiceName', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeVpcEndpointServicesResult' => [ 'type' => 'structure', 'members' => [ 'ServiceNames' => [ 'shape' => 'ValueStringList', 'locationName' => 'serviceNameSet', ], 'ServiceDetails' => [ 'shape' => 'ServiceDetailSet', 'locationName' => 'serviceDetailSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcEndpointsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VpcEndpointIds' => [ 'shape' => 'VpcEndpointIdList', 'locationName' => 'VpcEndpointId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeVpcEndpointsResult' => [ 'type' => 'structure', 'members' => [ 'VpcEndpoints' => [ 'shape' => 'VpcEndpointSet', 'locationName' => 'vpcEndpointSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcPeeringConnectionsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeVpcPeeringConnectionsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcPeeringConnectionIds' => [ 'shape' => 'VpcPeeringConnectionIdList', 'locationName' => 'VpcPeeringConnectionId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeVpcPeeringConnectionsMaxResults', ], ], ], 'DescribeVpcPeeringConnectionsResult' => [ 'type' => 'structure', 'members' => [ 'VpcPeeringConnections' => [ 'shape' => 'VpcPeeringConnectionList', 'locationName' => 'vpcPeeringConnectionSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeVpcsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'VpcIds' => [ 'shape' => 'VpcIdStringList', 'locationName' => 'VpcId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeVpcsMaxResults', ], ], ], 'DescribeVpcsResult' => [ 'type' => 'structure', 'members' => [ 'Vpcs' => [ 'shape' => 'VpcList', 'locationName' => 'vpcSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpnConnectionsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'VpnConnectionIds' => [ 'shape' => 'VpnConnectionIdStringList', 'locationName' => 'VpnConnectionId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeVpnConnectionsResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnections' => [ 'shape' => 'VpnConnectionList', 'locationName' => 'vpnConnectionSet', ], ], ], 'DescribeVpnGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'VpnGatewayIds' => [ 'shape' => 'VpnGatewayIdStringList', 'locationName' => 'VpnGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeVpnGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'VpnGateways' => [ 'shape' => 'VpnGatewayList', 'locationName' => 'vpnGatewaySet', ], ], ], 'DestinationFileFormat' => [ 'type' => 'string', 'enum' => [ 'plain-text', 'parquet', ], ], 'DestinationOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'FileFormat' => [ 'shape' => 'DestinationFileFormat', ], 'HiveCompatiblePartitions' => [ 'shape' => 'Boolean', ], 'PerHourPartition' => [ 'shape' => 'Boolean', ], ], ], 'DestinationOptionsResponse' => [ 'type' => 'structure', 'members' => [ 'FileFormat' => [ 'shape' => 'DestinationFileFormat', 'locationName' => 'fileFormat', ], 'HiveCompatiblePartitions' => [ 'shape' => 'Boolean', 'locationName' => 'hiveCompatiblePartitions', ], 'PerHourPartition' => [ 'shape' => 'Boolean', 'locationName' => 'perHourPartition', ], ], ], 'DetachClassicLinkVpcRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], ], ], 'DetachClassicLinkVpcResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DetachInternetGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'InternetGatewayId', 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InternetGatewayId' => [ 'shape' => 'InternetGatewayId', 'locationName' => 'internetGatewayId', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], ], ], 'DetachNetworkInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'AttachmentId', ], 'members' => [ 'AttachmentId' => [ 'shape' => 'NetworkInterfaceAttachmentId', 'locationName' => 'attachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Force' => [ 'shape' => 'Boolean', 'locationName' => 'force', ], ], ], 'DetachVerifiedAccessTrustProviderRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessInstanceId', 'VerifiedAccessTrustProviderId', ], 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'VerifiedAccessTrustProviderId' => [ 'shape' => 'VerifiedAccessTrustProviderId', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DetachVerifiedAccessTrustProviderResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProvider' => [ 'shape' => 'VerifiedAccessTrustProvider', 'locationName' => 'verifiedAccessTrustProvider', ], 'VerifiedAccessInstance' => [ 'shape' => 'VerifiedAccessInstance', 'locationName' => 'verifiedAccessInstance', ], ], ], 'DetachVolumeRequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'Device' => [ 'shape' => 'String', ], 'Force' => [ 'shape' => 'Boolean', ], 'InstanceId' => [ 'shape' => 'InstanceIdForResolver', ], 'VolumeId' => [ 'shape' => 'VolumeIdWithResolver', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DetachVpnGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', 'VpnGatewayId', ], 'members' => [ 'VpcId' => [ 'shape' => 'VpcId', ], 'VpnGatewayId' => [ 'shape' => 'VpnGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeviceOptions' => [ 'type' => 'structure', 'members' => [ 'TenantId' => [ 'shape' => 'String', 'locationName' => 'tenantId', ], 'PublicSigningKeyUrl' => [ 'shape' => 'String', 'locationName' => 'publicSigningKeyUrl', ], ], ], 'DeviceTrustProviderType' => [ 'type' => 'string', 'enum' => [ 'jamf', 'crowdstrike', 'jumpcloud', ], ], 'DeviceType' => [ 'type' => 'string', 'enum' => [ 'ebs', 'instance-store', ], ], 'DhcpConfiguration' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', 'locationName' => 'key', ], 'Values' => [ 'shape' => 'DhcpConfigurationValueList', 'locationName' => 'valueSet', ], ], ], 'DhcpConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DhcpConfiguration', 'locationName' => 'item', ], ], 'DhcpConfigurationValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AttributeValue', 'locationName' => 'item', ], ], 'DhcpOptions' => [ 'type' => 'structure', 'members' => [ 'DhcpConfigurations' => [ 'shape' => 'DhcpConfigurationList', 'locationName' => 'dhcpConfigurationSet', ], 'DhcpOptionsId' => [ 'shape' => 'String', 'locationName' => 'dhcpOptionsId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'DhcpOptionsId' => [ 'type' => 'string', ], 'DhcpOptionsIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DhcpOptionsId', 'locationName' => 'DhcpOptionsId', ], ], 'DhcpOptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DhcpOptions', 'locationName' => 'item', ], ], 'DirectoryServiceAuthentication' => [ 'type' => 'structure', 'members' => [ 'DirectoryId' => [ 'shape' => 'String', 'locationName' => 'directoryId', ], ], ], 'DirectoryServiceAuthenticationRequest' => [ 'type' => 'structure', 'members' => [ 'DirectoryId' => [ 'shape' => 'String', ], ], ], 'DisableAddressTransferRequest' => [ 'type' => 'structure', 'required' => [ 'AllocationId', ], 'members' => [ 'AllocationId' => [ 'shape' => 'AllocationId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableAddressTransferResult' => [ 'type' => 'structure', 'members' => [ 'AddressTransfer' => [ 'shape' => 'AddressTransfer', 'locationName' => 'addressTransfer', ], ], ], 'DisableAwsNetworkPerformanceMetricSubscriptionRequest' => [ 'type' => 'structure', 'members' => [ 'Source' => [ 'shape' => 'String', ], 'Destination' => [ 'shape' => 'String', ], 'Metric' => [ 'shape' => 'MetricType', ], 'Statistic' => [ 'shape' => 'StatisticType', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableAwsNetworkPerformanceMetricSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'Output' => [ 'shape' => 'Boolean', 'locationName' => 'output', ], ], ], 'DisableEbsEncryptionByDefaultRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableEbsEncryptionByDefaultResult' => [ 'type' => 'structure', 'members' => [ 'EbsEncryptionByDefault' => [ 'shape' => 'Boolean', 'locationName' => 'ebsEncryptionByDefault', ], ], ], 'DisableFastLaunchRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'Force' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableFastLaunchResult' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', 'locationName' => 'imageId', ], 'ResourceType' => [ 'shape' => 'FastLaunchResourceType', 'locationName' => 'resourceType', ], 'SnapshotConfiguration' => [ 'shape' => 'FastLaunchSnapshotConfigurationResponse', 'locationName' => 'snapshotConfiguration', ], 'LaunchTemplate' => [ 'shape' => 'FastLaunchLaunchTemplateSpecificationResponse', 'locationName' => 'launchTemplate', ], 'MaxParallelLaunches' => [ 'shape' => 'Integer', 'locationName' => 'maxParallelLaunches', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'State' => [ 'shape' => 'FastLaunchStateCode', 'locationName' => 'state', ], 'StateTransitionReason' => [ 'shape' => 'String', 'locationName' => 'stateTransitionReason', ], 'StateTransitionTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'stateTransitionTime', ], ], ], 'DisableFastSnapshotRestoreErrorItem' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'FastSnapshotRestoreStateErrors' => [ 'shape' => 'DisableFastSnapshotRestoreStateErrorSet', 'locationName' => 'fastSnapshotRestoreStateErrorSet', ], ], ], 'DisableFastSnapshotRestoreErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DisableFastSnapshotRestoreErrorItem', 'locationName' => 'item', ], ], 'DisableFastSnapshotRestoreStateError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'DisableFastSnapshotRestoreStateErrorItem' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Error' => [ 'shape' => 'DisableFastSnapshotRestoreStateError', 'locationName' => 'error', ], ], ], 'DisableFastSnapshotRestoreStateErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DisableFastSnapshotRestoreStateErrorItem', 'locationName' => 'item', ], ], 'DisableFastSnapshotRestoreSuccessItem' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'State' => [ 'shape' => 'FastSnapshotRestoreStateCode', 'locationName' => 'state', ], 'StateTransitionReason' => [ 'shape' => 'String', 'locationName' => 'stateTransitionReason', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'OwnerAlias' => [ 'shape' => 'String', 'locationName' => 'ownerAlias', ], 'EnablingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'enablingTime', ], 'OptimizingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'optimizingTime', ], 'EnabledTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'enabledTime', ], 'DisablingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'disablingTime', ], 'DisabledTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'disabledTime', ], ], ], 'DisableFastSnapshotRestoreSuccessSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DisableFastSnapshotRestoreSuccessItem', 'locationName' => 'item', ], ], 'DisableFastSnapshotRestoresRequest' => [ 'type' => 'structure', 'required' => [ 'AvailabilityZones', 'SourceSnapshotIds', ], 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZoneStringList', 'locationName' => 'AvailabilityZone', ], 'SourceSnapshotIds' => [ 'shape' => 'SnapshotIdStringList', 'locationName' => 'SourceSnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableFastSnapshotRestoresResult' => [ 'type' => 'structure', 'members' => [ 'Successful' => [ 'shape' => 'DisableFastSnapshotRestoreSuccessSet', 'locationName' => 'successful', ], 'Unsuccessful' => [ 'shape' => 'DisableFastSnapshotRestoreErrorSet', 'locationName' => 'unsuccessful', ], ], ], 'DisableImageBlockPublicAccessRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableImageBlockPublicAccessResult' => [ 'type' => 'structure', 'members' => [ 'ImageBlockPublicAccessState' => [ 'shape' => 'ImageBlockPublicAccessDisabledState', 'locationName' => 'imageBlockPublicAccessState', ], ], ], 'DisableImageDeprecationRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableImageDeprecationResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DisableImageRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableImageResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DisableIpamOrganizationAdminAccountRequest' => [ 'type' => 'structure', 'required' => [ 'DelegatedAdminAccountId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'DelegatedAdminAccountId' => [ 'shape' => 'String', ], ], ], 'DisableIpamOrganizationAdminAccountResult' => [ 'type' => 'structure', 'members' => [ 'Success' => [ 'shape' => 'Boolean', 'locationName' => 'success', ], ], ], 'DisableSerialConsoleAccessRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableSerialConsoleAccessResult' => [ 'type' => 'structure', 'members' => [ 'SerialConsoleAccessEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'serialConsoleAccessEnabled', ], ], ], 'DisableSnapshotBlockPublicAccessRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableSnapshotBlockPublicAccessResult' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'SnapshotBlockPublicAccessState', 'locationName' => 'state', ], ], ], 'DisableTransitGatewayRouteTablePropagationRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'TransitGatewayRouteTableAnnouncementId' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementId', ], ], ], 'DisableTransitGatewayRouteTablePropagationResult' => [ 'type' => 'structure', 'members' => [ 'Propagation' => [ 'shape' => 'TransitGatewayPropagation', 'locationName' => 'propagation', ], ], ], 'DisableVgwRoutePropagationRequest' => [ 'type' => 'structure', 'required' => [ 'GatewayId', 'RouteTableId', ], 'members' => [ 'GatewayId' => [ 'shape' => 'VpnGatewayId', ], 'RouteTableId' => [ 'shape' => 'RouteTableId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableVpcClassicLinkDnsSupportRequest' => [ 'type' => 'structure', 'members' => [ 'VpcId' => [ 'shape' => 'VpcId', ], ], ], 'DisableVpcClassicLinkDnsSupportResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DisableVpcClassicLinkRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], ], ], 'DisableVpcClassicLinkResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DisassociateAddressRequest' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'ElasticIpAssociationId', ], 'PublicIp' => [ 'shape' => 'EipAllocationPublicIp', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DisassociateClientVpnTargetNetworkRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', 'AssociationId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'AssociationId' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisassociateClientVpnTargetNetworkResult' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'Status' => [ 'shape' => 'AssociationStatus', 'locationName' => 'status', ], ], ], 'DisassociateEnclaveCertificateIamRoleRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', 'RoleArn', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'CertificateId', ], 'RoleArn' => [ 'shape' => 'RoleId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisassociateEnclaveCertificateIamRoleResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DisassociateIamInstanceProfileRequest' => [ 'type' => 'structure', 'required' => [ 'AssociationId', ], 'members' => [ 'AssociationId' => [ 'shape' => 'IamInstanceProfileAssociationId', ], ], ], 'DisassociateIamInstanceProfileResult' => [ 'type' => 'structure', 'members' => [ 'IamInstanceProfileAssociation' => [ 'shape' => 'IamInstanceProfileAssociation', 'locationName' => 'iamInstanceProfileAssociation', ], ], ], 'DisassociateInstanceEventWindowRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceEventWindowId', 'AssociationTarget', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceEventWindowId' => [ 'shape' => 'InstanceEventWindowId', ], 'AssociationTarget' => [ 'shape' => 'InstanceEventWindowDisassociationRequest', ], ], ], 'DisassociateInstanceEventWindowResult' => [ 'type' => 'structure', 'members' => [ 'InstanceEventWindow' => [ 'shape' => 'InstanceEventWindow', 'locationName' => 'instanceEventWindow', ], ], ], 'DisassociateIpamByoasnRequest' => [ 'type' => 'structure', 'required' => [ 'Asn', 'Cidr', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Asn' => [ 'shape' => 'String', ], 'Cidr' => [ 'shape' => 'String', ], ], ], 'DisassociateIpamByoasnResult' => [ 'type' => 'structure', 'members' => [ 'AsnAssociation' => [ 'shape' => 'AsnAssociation', 'locationName' => 'asnAssociation', ], ], ], 'DisassociateIpamResourceDiscoveryRequest' => [ 'type' => 'structure', 'required' => [ 'IpamResourceDiscoveryAssociationId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamResourceDiscoveryAssociationId' => [ 'shape' => 'IpamResourceDiscoveryAssociationId', ], ], ], 'DisassociateIpamResourceDiscoveryResult' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscoveryAssociation' => [ 'shape' => 'IpamResourceDiscoveryAssociation', 'locationName' => 'ipamResourceDiscoveryAssociation', ], ], ], 'DisassociateNatGatewayAddressRequest' => [ 'type' => 'structure', 'required' => [ 'NatGatewayId', 'AssociationIds', ], 'members' => [ 'NatGatewayId' => [ 'shape' => 'NatGatewayId', ], 'AssociationIds' => [ 'shape' => 'EipAssociationIdList', 'locationName' => 'AssociationId', ], 'MaxDrainDurationSeconds' => [ 'shape' => 'DrainSeconds', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisassociateNatGatewayAddressResult' => [ 'type' => 'structure', 'members' => [ 'NatGatewayId' => [ 'shape' => 'NatGatewayId', 'locationName' => 'natGatewayId', ], 'NatGatewayAddresses' => [ 'shape' => 'NatGatewayAddressList', 'locationName' => 'natGatewayAddressSet', ], ], ], 'DisassociateRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'AssociationId', ], 'members' => [ 'AssociationId' => [ 'shape' => 'RouteTableAssociationId', 'locationName' => 'associationId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DisassociateSubnetCidrBlockRequest' => [ 'type' => 'structure', 'required' => [ 'AssociationId', ], 'members' => [ 'AssociationId' => [ 'shape' => 'SubnetCidrAssociationId', 'locationName' => 'associationId', ], ], ], 'DisassociateSubnetCidrBlockResult' => [ 'type' => 'structure', 'members' => [ 'Ipv6CidrBlockAssociation' => [ 'shape' => 'SubnetIpv6CidrBlockAssociation', 'locationName' => 'ipv6CidrBlockAssociation', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], ], ], 'DisassociateTransitGatewayMulticastDomainRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayMulticastDomainId', 'TransitGatewayAttachmentId', 'SubnetIds', ], 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'SubnetIds' => [ 'shape' => 'TransitGatewaySubnetIdList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisassociateTransitGatewayMulticastDomainResult' => [ 'type' => 'structure', 'members' => [ 'Associations' => [ 'shape' => 'TransitGatewayMulticastDomainAssociations', 'locationName' => 'associations', ], ], ], 'DisassociateTransitGatewayPolicyTableRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayPolicyTableId', 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayPolicyTableId' => [ 'shape' => 'TransitGatewayPolicyTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisassociateTransitGatewayPolicyTableResult' => [ 'type' => 'structure', 'members' => [ 'Association' => [ 'shape' => 'TransitGatewayPolicyTableAssociation', 'locationName' => 'association', ], ], ], 'DisassociateTransitGatewayRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisassociateTransitGatewayRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'Association' => [ 'shape' => 'TransitGatewayAssociation', 'locationName' => 'association', ], ], ], 'DisassociateTrunkInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'AssociationId', ], 'members' => [ 'AssociationId' => [ 'shape' => 'TrunkInterfaceAssociationId', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisassociateTrunkInterfaceResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'DisassociateVpcCidrBlockRequest' => [ 'type' => 'structure', 'required' => [ 'AssociationId', ], 'members' => [ 'AssociationId' => [ 'shape' => 'VpcCidrAssociationId', 'locationName' => 'associationId', ], ], ], 'DisassociateVpcCidrBlockResult' => [ 'type' => 'structure', 'members' => [ 'Ipv6CidrBlockAssociation' => [ 'shape' => 'VpcIpv6CidrBlockAssociation', 'locationName' => 'ipv6CidrBlockAssociation', ], 'CidrBlockAssociation' => [ 'shape' => 'VpcCidrBlockAssociation', 'locationName' => 'cidrBlockAssociation', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'DiskCount' => [ 'type' => 'integer', ], 'DiskImage' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', ], 'Image' => [ 'shape' => 'DiskImageDetail', ], 'Volume' => [ 'shape' => 'VolumeDetail', ], ], ], 'DiskImageDescription' => [ 'type' => 'structure', 'members' => [ 'Checksum' => [ 'shape' => 'String', 'locationName' => 'checksum', ], 'Format' => [ 'shape' => 'DiskImageFormat', 'locationName' => 'format', ], 'ImportManifestUrl' => [ 'shape' => 'ImportManifestUrl', 'locationName' => 'importManifestUrl', ], 'Size' => [ 'shape' => 'Long', 'locationName' => 'size', ], ], ], 'DiskImageDetail' => [ 'type' => 'structure', 'required' => [ 'Bytes', 'Format', 'ImportManifestUrl', ], 'members' => [ 'Bytes' => [ 'shape' => 'Long', 'locationName' => 'bytes', ], 'Format' => [ 'shape' => 'DiskImageFormat', 'locationName' => 'format', ], 'ImportManifestUrl' => [ 'shape' => 'ImportManifestUrl', 'locationName' => 'importManifestUrl', ], ], ], 'DiskImageFormat' => [ 'type' => 'string', 'enum' => [ 'VMDK', 'RAW', 'VHD', ], ], 'DiskImageList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DiskImage', ], ], 'DiskImageVolumeDescription' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'String', 'locationName' => 'id', ], 'Size' => [ 'shape' => 'Long', 'locationName' => 'size', ], ], ], 'DiskInfo' => [ 'type' => 'structure', 'members' => [ 'SizeInGB' => [ 'shape' => 'DiskSize', 'locationName' => 'sizeInGB', ], 'Count' => [ 'shape' => 'DiskCount', 'locationName' => 'count', ], 'Type' => [ 'shape' => 'DiskType', 'locationName' => 'type', ], ], ], 'DiskInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DiskInfo', 'locationName' => 'item', ], ], 'DiskSize' => [ 'type' => 'long', ], 'DiskType' => [ 'type' => 'string', 'enum' => [ 'hdd', 'ssd', ], ], 'DnsEntry' => [ 'type' => 'structure', 'members' => [ 'DnsName' => [ 'shape' => 'String', 'locationName' => 'dnsName', ], 'HostedZoneId' => [ 'shape' => 'String', 'locationName' => 'hostedZoneId', ], ], ], 'DnsEntrySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DnsEntry', 'locationName' => 'item', ], ], 'DnsNameState' => [ 'type' => 'string', 'enum' => [ 'pendingVerification', 'verified', 'failed', ], ], 'DnsOptions' => [ 'type' => 'structure', 'members' => [ 'DnsRecordIpType' => [ 'shape' => 'DnsRecordIpType', 'locationName' => 'dnsRecordIpType', ], 'PrivateDnsOnlyForInboundResolverEndpoint' => [ 'shape' => 'Boolean', 'locationName' => 'privateDnsOnlyForInboundResolverEndpoint', ], ], ], 'DnsOptionsSpecification' => [ 'type' => 'structure', 'members' => [ 'DnsRecordIpType' => [ 'shape' => 'DnsRecordIpType', ], 'PrivateDnsOnlyForInboundResolverEndpoint' => [ 'shape' => 'Boolean', ], ], ], 'DnsRecordIpType' => [ 'type' => 'string', 'enum' => [ 'ipv4', 'dualstack', 'ipv6', 'service-defined', ], ], 'DnsServersOptionsModifyStructure' => [ 'type' => 'structure', 'members' => [ 'CustomDnsServers' => [ 'shape' => 'ValueStringList', ], 'Enabled' => [ 'shape' => 'Boolean', ], ], ], 'DnsSupportValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'DomainType' => [ 'type' => 'string', 'enum' => [ 'vpc', 'standard', ], ], 'Double' => [ 'type' => 'double', ], 'DoubleWithConstraints' => [ 'type' => 'double', 'max' => 99.999, 'min' => 0.001, ], 'DrainSeconds' => [ 'type' => 'integer', 'max' => 4000, 'min' => 1, ], 'DynamicRoutingValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'EbsBlockDevice' => [ 'type' => 'structure', 'members' => [ 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'Iops' => [ 'shape' => 'Integer', 'locationName' => 'iops', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', 'locationName' => 'snapshotId', ], 'VolumeSize' => [ 'shape' => 'Integer', 'locationName' => 'volumeSize', ], 'VolumeType' => [ 'shape' => 'VolumeType', 'locationName' => 'volumeType', ], 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], 'Throughput' => [ 'shape' => 'Integer', 'locationName' => 'throughput', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], ], ], 'EbsEncryptionSupport' => [ 'type' => 'string', 'enum' => [ 'unsupported', 'supported', ], ], 'EbsInfo' => [ 'type' => 'structure', 'members' => [ 'EbsOptimizedSupport' => [ 'shape' => 'EbsOptimizedSupport', 'locationName' => 'ebsOptimizedSupport', ], 'EncryptionSupport' => [ 'shape' => 'EbsEncryptionSupport', 'locationName' => 'encryptionSupport', ], 'EbsOptimizedInfo' => [ 'shape' => 'EbsOptimizedInfo', 'locationName' => 'ebsOptimizedInfo', ], 'NvmeSupport' => [ 'shape' => 'EbsNvmeSupport', 'locationName' => 'nvmeSupport', ], ], ], 'EbsInstanceBlockDevice' => [ 'type' => 'structure', 'members' => [ 'AttachTime' => [ 'shape' => 'DateTime', 'locationName' => 'attachTime', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'Status' => [ 'shape' => 'AttachmentStatus', 'locationName' => 'status', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'AssociatedResource' => [ 'shape' => 'String', 'locationName' => 'associatedResource', ], 'VolumeOwnerId' => [ 'shape' => 'String', 'locationName' => 'volumeOwnerId', ], ], ], 'EbsInstanceBlockDeviceSpecification' => [ 'type' => 'structure', 'members' => [ 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'VolumeId' => [ 'shape' => 'VolumeId', 'locationName' => 'volumeId', ], ], ], 'EbsNvmeSupport' => [ 'type' => 'string', 'enum' => [ 'unsupported', 'supported', 'required', ], ], 'EbsOptimizedInfo' => [ 'type' => 'structure', 'members' => [ 'BaselineBandwidthInMbps' => [ 'shape' => 'BaselineBandwidthInMbps', 'locationName' => 'baselineBandwidthInMbps', ], 'BaselineThroughputInMBps' => [ 'shape' => 'BaselineThroughputInMBps', 'locationName' => 'baselineThroughputInMBps', ], 'BaselineIops' => [ 'shape' => 'BaselineIops', 'locationName' => 'baselineIops', ], 'MaximumBandwidthInMbps' => [ 'shape' => 'MaximumBandwidthInMbps', 'locationName' => 'maximumBandwidthInMbps', ], 'MaximumThroughputInMBps' => [ 'shape' => 'MaximumThroughputInMBps', 'locationName' => 'maximumThroughputInMBps', ], 'MaximumIops' => [ 'shape' => 'MaximumIops', 'locationName' => 'maximumIops', ], ], ], 'EbsOptimizedSupport' => [ 'type' => 'string', 'enum' => [ 'unsupported', 'supported', 'default', ], ], 'Ec2InstanceConnectEndpoint' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'InstanceConnectEndpointId' => [ 'shape' => 'InstanceConnectEndpointId', 'locationName' => 'instanceConnectEndpointId', ], 'InstanceConnectEndpointArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'instanceConnectEndpointArn', ], 'State' => [ 'shape' => 'Ec2InstanceConnectEndpointState', 'locationName' => 'state', ], 'StateMessage' => [ 'shape' => 'String', 'locationName' => 'stateMessage', ], 'DnsName' => [ 'shape' => 'String', 'locationName' => 'dnsName', ], 'FipsDnsName' => [ 'shape' => 'String', 'locationName' => 'fipsDnsName', ], 'NetworkInterfaceIds' => [ 'shape' => 'NetworkInterfaceIdSet', 'locationName' => 'networkInterfaceIdSet', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'CreatedAt' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'createdAt', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'PreserveClientIp' => [ 'shape' => 'Boolean', 'locationName' => 'preserveClientIp', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdSet', 'locationName' => 'securityGroupIdSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'Ec2InstanceConnectEndpointState' => [ 'type' => 'string', 'enum' => [ 'create-in-progress', 'create-complete', 'create-failed', 'delete-in-progress', 'delete-complete', 'delete-failed', ], ], 'EfaInfo' => [ 'type' => 'structure', 'members' => [ 'MaximumEfaInterfaces' => [ 'shape' => 'MaximumEfaInterfaces', 'locationName' => 'maximumEfaInterfaces', ], ], ], 'EfaSupportedFlag' => [ 'type' => 'boolean', ], 'EgressOnlyInternetGateway' => [ 'type' => 'structure', 'members' => [ 'Attachments' => [ 'shape' => 'InternetGatewayAttachmentList', 'locationName' => 'attachmentSet', ], 'EgressOnlyInternetGatewayId' => [ 'shape' => 'EgressOnlyInternetGatewayId', 'locationName' => 'egressOnlyInternetGatewayId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'EgressOnlyInternetGatewayId' => [ 'type' => 'string', ], 'EgressOnlyInternetGatewayIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EgressOnlyInternetGatewayId', 'locationName' => 'item', ], ], 'EgressOnlyInternetGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EgressOnlyInternetGateway', 'locationName' => 'item', ], ], 'EipAllocationPublicIp' => [ 'type' => 'string', ], 'EipAssociationIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticIpAssociationId', 'locationName' => 'item', ], ], 'ElasticGpuAssociation' => [ 'type' => 'structure', 'members' => [ 'ElasticGpuId' => [ 'shape' => 'ElasticGpuId', 'locationName' => 'elasticGpuId', ], 'ElasticGpuAssociationId' => [ 'shape' => 'String', 'locationName' => 'elasticGpuAssociationId', ], 'ElasticGpuAssociationState' => [ 'shape' => 'String', 'locationName' => 'elasticGpuAssociationState', ], 'ElasticGpuAssociationTime' => [ 'shape' => 'String', 'locationName' => 'elasticGpuAssociationTime', ], ], ], 'ElasticGpuAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticGpuAssociation', 'locationName' => 'item', ], ], 'ElasticGpuHealth' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'ElasticGpuStatus', 'locationName' => 'status', ], ], ], 'ElasticGpuId' => [ 'type' => 'string', ], 'ElasticGpuIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticGpuId', 'locationName' => 'item', ], ], 'ElasticGpuSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticGpus', 'locationName' => 'item', ], ], 'ElasticGpuSpecification' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'Type' => [ 'shape' => 'String', ], ], ], 'ElasticGpuSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticGpuSpecification', 'locationName' => 'ElasticGpuSpecification', ], ], 'ElasticGpuSpecificationResponse' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'String', 'locationName' => 'type', ], ], ], 'ElasticGpuSpecificationResponseList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticGpuSpecificationResponse', 'locationName' => 'item', ], ], 'ElasticGpuSpecifications' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticGpuSpecification', 'locationName' => 'item', ], ], 'ElasticGpuState' => [ 'type' => 'string', 'enum' => [ 'ATTACHED', ], ], 'ElasticGpuStatus' => [ 'type' => 'string', 'enum' => [ 'OK', 'IMPAIRED', ], ], 'ElasticGpus' => [ 'type' => 'structure', 'members' => [ 'ElasticGpuId' => [ 'shape' => 'String', 'locationName' => 'elasticGpuId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'ElasticGpuType' => [ 'shape' => 'String', 'locationName' => 'elasticGpuType', ], 'ElasticGpuHealth' => [ 'shape' => 'ElasticGpuHealth', 'locationName' => 'elasticGpuHealth', ], 'ElasticGpuState' => [ 'shape' => 'ElasticGpuState', 'locationName' => 'elasticGpuState', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ElasticInferenceAccelerator' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'Type' => [ 'shape' => 'String', ], 'Count' => [ 'shape' => 'ElasticInferenceAcceleratorCount', ], ], ], 'ElasticInferenceAcceleratorAssociation' => [ 'type' => 'structure', 'members' => [ 'ElasticInferenceAcceleratorArn' => [ 'shape' => 'String', 'locationName' => 'elasticInferenceAcceleratorArn', ], 'ElasticInferenceAcceleratorAssociationId' => [ 'shape' => 'String', 'locationName' => 'elasticInferenceAcceleratorAssociationId', ], 'ElasticInferenceAcceleratorAssociationState' => [ 'shape' => 'String', 'locationName' => 'elasticInferenceAcceleratorAssociationState', ], 'ElasticInferenceAcceleratorAssociationTime' => [ 'shape' => 'DateTime', 'locationName' => 'elasticInferenceAcceleratorAssociationTime', ], ], ], 'ElasticInferenceAcceleratorAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticInferenceAcceleratorAssociation', 'locationName' => 'item', ], ], 'ElasticInferenceAcceleratorCount' => [ 'type' => 'integer', 'min' => 1, ], 'ElasticInferenceAccelerators' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticInferenceAccelerator', 'locationName' => 'item', ], ], 'ElasticIpAssociationId' => [ 'type' => 'string', ], 'EnaSrdSpecification' => [ 'type' => 'structure', 'members' => [ 'EnaSrdEnabled' => [ 'shape' => 'Boolean', ], 'EnaSrdUdpSpecification' => [ 'shape' => 'EnaSrdUdpSpecification', ], ], ], 'EnaSrdSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'EnaSrdEnabled' => [ 'shape' => 'Boolean', ], 'EnaSrdUdpSpecification' => [ 'shape' => 'EnaSrdUdpSpecificationRequest', ], ], ], 'EnaSrdSupported' => [ 'type' => 'boolean', ], 'EnaSrdUdpSpecification' => [ 'type' => 'structure', 'members' => [ 'EnaSrdUdpEnabled' => [ 'shape' => 'Boolean', ], ], ], 'EnaSrdUdpSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'EnaSrdUdpEnabled' => [ 'shape' => 'Boolean', ], ], ], 'EnaSupport' => [ 'type' => 'string', 'enum' => [ 'unsupported', 'supported', 'required', ], ], 'EnableAddressTransferRequest' => [ 'type' => 'structure', 'required' => [ 'AllocationId', 'TransferAccountId', ], 'members' => [ 'AllocationId' => [ 'shape' => 'AllocationId', ], 'TransferAccountId' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableAddressTransferResult' => [ 'type' => 'structure', 'members' => [ 'AddressTransfer' => [ 'shape' => 'AddressTransfer', 'locationName' => 'addressTransfer', ], ], ], 'EnableAwsNetworkPerformanceMetricSubscriptionRequest' => [ 'type' => 'structure', 'members' => [ 'Source' => [ 'shape' => 'String', ], 'Destination' => [ 'shape' => 'String', ], 'Metric' => [ 'shape' => 'MetricType', ], 'Statistic' => [ 'shape' => 'StatisticType', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableAwsNetworkPerformanceMetricSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'Output' => [ 'shape' => 'Boolean', 'locationName' => 'output', ], ], ], 'EnableEbsEncryptionByDefaultRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableEbsEncryptionByDefaultResult' => [ 'type' => 'structure', 'members' => [ 'EbsEncryptionByDefault' => [ 'shape' => 'Boolean', 'locationName' => 'ebsEncryptionByDefault', ], ], ], 'EnableFastLaunchRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'ResourceType' => [ 'shape' => 'String', ], 'SnapshotConfiguration' => [ 'shape' => 'FastLaunchSnapshotConfigurationRequest', ], 'LaunchTemplate' => [ 'shape' => 'FastLaunchLaunchTemplateSpecificationRequest', ], 'MaxParallelLaunches' => [ 'shape' => 'Integer', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableFastLaunchResult' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', 'locationName' => 'imageId', ], 'ResourceType' => [ 'shape' => 'FastLaunchResourceType', 'locationName' => 'resourceType', ], 'SnapshotConfiguration' => [ 'shape' => 'FastLaunchSnapshotConfigurationResponse', 'locationName' => 'snapshotConfiguration', ], 'LaunchTemplate' => [ 'shape' => 'FastLaunchLaunchTemplateSpecificationResponse', 'locationName' => 'launchTemplate', ], 'MaxParallelLaunches' => [ 'shape' => 'Integer', 'locationName' => 'maxParallelLaunches', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'State' => [ 'shape' => 'FastLaunchStateCode', 'locationName' => 'state', ], 'StateTransitionReason' => [ 'shape' => 'String', 'locationName' => 'stateTransitionReason', ], 'StateTransitionTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'stateTransitionTime', ], ], ], 'EnableFastSnapshotRestoreErrorItem' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'FastSnapshotRestoreStateErrors' => [ 'shape' => 'EnableFastSnapshotRestoreStateErrorSet', 'locationName' => 'fastSnapshotRestoreStateErrorSet', ], ], ], 'EnableFastSnapshotRestoreErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnableFastSnapshotRestoreErrorItem', 'locationName' => 'item', ], ], 'EnableFastSnapshotRestoreStateError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'EnableFastSnapshotRestoreStateErrorItem' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Error' => [ 'shape' => 'EnableFastSnapshotRestoreStateError', 'locationName' => 'error', ], ], ], 'EnableFastSnapshotRestoreStateErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnableFastSnapshotRestoreStateErrorItem', 'locationName' => 'item', ], ], 'EnableFastSnapshotRestoreSuccessItem' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'State' => [ 'shape' => 'FastSnapshotRestoreStateCode', 'locationName' => 'state', ], 'StateTransitionReason' => [ 'shape' => 'String', 'locationName' => 'stateTransitionReason', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'OwnerAlias' => [ 'shape' => 'String', 'locationName' => 'ownerAlias', ], 'EnablingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'enablingTime', ], 'OptimizingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'optimizingTime', ], 'EnabledTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'enabledTime', ], 'DisablingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'disablingTime', ], 'DisabledTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'disabledTime', ], ], ], 'EnableFastSnapshotRestoreSuccessSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnableFastSnapshotRestoreSuccessItem', 'locationName' => 'item', ], ], 'EnableFastSnapshotRestoresRequest' => [ 'type' => 'structure', 'required' => [ 'AvailabilityZones', 'SourceSnapshotIds', ], 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZoneStringList', 'locationName' => 'AvailabilityZone', ], 'SourceSnapshotIds' => [ 'shape' => 'SnapshotIdStringList', 'locationName' => 'SourceSnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableFastSnapshotRestoresResult' => [ 'type' => 'structure', 'members' => [ 'Successful' => [ 'shape' => 'EnableFastSnapshotRestoreSuccessSet', 'locationName' => 'successful', ], 'Unsuccessful' => [ 'shape' => 'EnableFastSnapshotRestoreErrorSet', 'locationName' => 'unsuccessful', ], ], ], 'EnableImageBlockPublicAccessRequest' => [ 'type' => 'structure', 'required' => [ 'ImageBlockPublicAccessState', ], 'members' => [ 'ImageBlockPublicAccessState' => [ 'shape' => 'ImageBlockPublicAccessEnabledState', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableImageBlockPublicAccessResult' => [ 'type' => 'structure', 'members' => [ 'ImageBlockPublicAccessState' => [ 'shape' => 'ImageBlockPublicAccessEnabledState', 'locationName' => 'imageBlockPublicAccessState', ], ], ], 'EnableImageDeprecationRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', 'DeprecateAt', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'DeprecateAt' => [ 'shape' => 'MillisecondDateTime', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableImageDeprecationResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'EnableImageRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableImageResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'EnableIpamOrganizationAdminAccountRequest' => [ 'type' => 'structure', 'required' => [ 'DelegatedAdminAccountId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'DelegatedAdminAccountId' => [ 'shape' => 'String', ], ], ], 'EnableIpamOrganizationAdminAccountResult' => [ 'type' => 'structure', 'members' => [ 'Success' => [ 'shape' => 'Boolean', 'locationName' => 'success', ], ], ], 'EnableReachabilityAnalyzerOrganizationSharingRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableReachabilityAnalyzerOrganizationSharingResult' => [ 'type' => 'structure', 'members' => [ 'ReturnValue' => [ 'shape' => 'Boolean', 'locationName' => 'returnValue', ], ], ], 'EnableSerialConsoleAccessRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableSerialConsoleAccessResult' => [ 'type' => 'structure', 'members' => [ 'SerialConsoleAccessEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'serialConsoleAccessEnabled', ], ], ], 'EnableSnapshotBlockPublicAccessRequest' => [ 'type' => 'structure', 'required' => [ 'State', ], 'members' => [ 'State' => [ 'shape' => 'SnapshotBlockPublicAccessState', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableSnapshotBlockPublicAccessResult' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'SnapshotBlockPublicAccessState', 'locationName' => 'state', ], ], ], 'EnableTransitGatewayRouteTablePropagationRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'TransitGatewayRouteTableAnnouncementId' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementId', ], ], ], 'EnableTransitGatewayRouteTablePropagationResult' => [ 'type' => 'structure', 'members' => [ 'Propagation' => [ 'shape' => 'TransitGatewayPropagation', 'locationName' => 'propagation', ], ], ], 'EnableVgwRoutePropagationRequest' => [ 'type' => 'structure', 'required' => [ 'GatewayId', 'RouteTableId', ], 'members' => [ 'GatewayId' => [ 'shape' => 'VpnGatewayId', ], 'RouteTableId' => [ 'shape' => 'RouteTableId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableVolumeIORequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VolumeId' => [ 'shape' => 'VolumeId', 'locationName' => 'volumeId', ], ], ], 'EnableVpcClassicLinkDnsSupportRequest' => [ 'type' => 'structure', 'members' => [ 'VpcId' => [ 'shape' => 'VpcId', ], ], ], 'EnableVpcClassicLinkDnsSupportResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'EnableVpcClassicLinkRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], ], ], 'EnableVpcClassicLinkResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'EnclaveOptions' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], ], ], 'EnclaveOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], ], ], 'EncryptionInTransitSupported' => [ 'type' => 'boolean', ], 'EndDateType' => [ 'type' => 'string', 'enum' => [ 'unlimited', 'limited', ], ], 'EndpointSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClientVpnEndpoint', 'locationName' => 'item', ], ], 'EphemeralNvmeSupport' => [ 'type' => 'string', 'enum' => [ 'unsupported', 'supported', 'required', ], ], 'ErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ValidationError', 'locationName' => 'item', ], ], 'EventCode' => [ 'type' => 'string', 'enum' => [ 'instance-reboot', 'system-reboot', 'system-maintenance', 'instance-retirement', 'instance-stop', ], ], 'EventInformation' => [ 'type' => 'structure', 'members' => [ 'EventDescription' => [ 'shape' => 'String', 'locationName' => 'eventDescription', ], 'EventSubType' => [ 'shape' => 'String', 'locationName' => 'eventSubType', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], ], ], 'EventType' => [ 'type' => 'string', 'enum' => [ 'instanceChange', 'fleetRequestChange', 'error', 'information', ], ], 'ExcessCapacityTerminationPolicy' => [ 'type' => 'string', 'enum' => [ 'noTermination', 'default', ], ], 'ExcludedInstanceType' => [ 'type' => 'string', 'max' => 30, 'min' => 1, 'pattern' => '[a-zA-Z0-9\\.\\*\\-]+', ], 'ExcludedInstanceTypeSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExcludedInstanceType', 'locationName' => 'item', ], 'max' => 400, 'min' => 0, ], 'ExecutableByStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ExecutableBy', ], ], 'Explanation' => [ 'type' => 'structure', 'members' => [ 'Acl' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'acl', ], 'AclRule' => [ 'shape' => 'AnalysisAclRule', 'locationName' => 'aclRule', ], 'Address' => [ 'shape' => 'IpAddress', 'locationName' => 'address', ], 'Addresses' => [ 'shape' => 'IpAddressList', 'locationName' => 'addressSet', ], 'AttachedTo' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'attachedTo', ], 'AvailabilityZones' => [ 'shape' => 'ValueStringList', 'locationName' => 'availabilityZoneSet', ], 'Cidrs' => [ 'shape' => 'ValueStringList', 'locationName' => 'cidrSet', ], 'Component' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'component', ], 'CustomerGateway' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'customerGateway', ], 'Destination' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'destination', ], 'DestinationVpc' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'destinationVpc', ], 'Direction' => [ 'shape' => 'String', 'locationName' => 'direction', ], 'ExplanationCode' => [ 'shape' => 'String', 'locationName' => 'explanationCode', ], 'IngressRouteTable' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'ingressRouteTable', ], 'InternetGateway' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'internetGateway', ], 'LoadBalancerArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'loadBalancerArn', ], 'ClassicLoadBalancerListener' => [ 'shape' => 'AnalysisLoadBalancerListener', 'locationName' => 'classicLoadBalancerListener', ], 'LoadBalancerListenerPort' => [ 'shape' => 'Port', 'locationName' => 'loadBalancerListenerPort', ], 'LoadBalancerTarget' => [ 'shape' => 'AnalysisLoadBalancerTarget', 'locationName' => 'loadBalancerTarget', ], 'LoadBalancerTargetGroup' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'loadBalancerTargetGroup', ], 'LoadBalancerTargetGroups' => [ 'shape' => 'AnalysisComponentList', 'locationName' => 'loadBalancerTargetGroupSet', ], 'LoadBalancerTargetPort' => [ 'shape' => 'Port', 'locationName' => 'loadBalancerTargetPort', ], 'ElasticLoadBalancerListener' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'elasticLoadBalancerListener', ], 'MissingComponent' => [ 'shape' => 'String', 'locationName' => 'missingComponent', ], 'NatGateway' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'natGateway', ], 'NetworkInterface' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'networkInterface', ], 'PacketField' => [ 'shape' => 'String', 'locationName' => 'packetField', ], 'VpcPeeringConnection' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'vpcPeeringConnection', ], 'Port' => [ 'shape' => 'Port', 'locationName' => 'port', ], 'PortRanges' => [ 'shape' => 'PortRangeList', 'locationName' => 'portRangeSet', ], 'PrefixList' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'prefixList', ], 'Protocols' => [ 'shape' => 'StringList', 'locationName' => 'protocolSet', ], 'RouteTableRoute' => [ 'shape' => 'AnalysisRouteTableRoute', 'locationName' => 'routeTableRoute', ], 'RouteTable' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'routeTable', ], 'SecurityGroup' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'securityGroup', ], 'SecurityGroupRule' => [ 'shape' => 'AnalysisSecurityGroupRule', 'locationName' => 'securityGroupRule', ], 'SecurityGroups' => [ 'shape' => 'AnalysisComponentList', 'locationName' => 'securityGroupSet', ], 'SourceVpc' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'sourceVpc', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'Subnet' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'subnet', ], 'SubnetRouteTable' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'subnetRouteTable', ], 'Vpc' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'vpc', ], 'VpcEndpoint' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'vpcEndpoint', ], 'VpnConnection' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'vpnConnection', ], 'VpnGateway' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'vpnGateway', ], 'TransitGateway' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'transitGateway', ], 'TransitGatewayRouteTable' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'transitGatewayRouteTable', ], 'TransitGatewayRouteTableRoute' => [ 'shape' => 'TransitGatewayRouteTableRoute', 'locationName' => 'transitGatewayRouteTableRoute', ], 'TransitGatewayAttachment' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'transitGatewayAttachment', ], 'ComponentAccount' => [ 'shape' => 'ComponentAccount', 'locationName' => 'componentAccount', ], 'ComponentRegion' => [ 'shape' => 'ComponentRegion', 'locationName' => 'componentRegion', ], 'FirewallStatelessRule' => [ 'shape' => 'FirewallStatelessRule', 'locationName' => 'firewallStatelessRule', ], 'FirewallStatefulRule' => [ 'shape' => 'FirewallStatefulRule', 'locationName' => 'firewallStatefulRule', ], ], ], 'ExplanationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Explanation', 'locationName' => 'item', ], ], 'ExportClientVpnClientCertificateRevocationListRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ExportClientVpnClientCertificateRevocationListResult' => [ 'type' => 'structure', 'members' => [ 'CertificateRevocationList' => [ 'shape' => 'String', 'locationName' => 'certificateRevocationList', ], 'Status' => [ 'shape' => 'ClientCertificateRevocationListStatus', 'locationName' => 'status', ], ], ], 'ExportClientVpnClientConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ExportClientVpnClientConfigurationResult' => [ 'type' => 'structure', 'members' => [ 'ClientConfiguration' => [ 'shape' => 'String', 'locationName' => 'clientConfiguration', ], ], ], 'ExportEnvironment' => [ 'type' => 'string', 'enum' => [ 'citrix', 'vmware', 'microsoft', ], ], 'ExportImageRequest' => [ 'type' => 'structure', 'required' => [ 'DiskImageFormat', 'ImageId', 'S3ExportLocation', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'Description' => [ 'shape' => 'String', ], 'DiskImageFormat' => [ 'shape' => 'DiskImageFormat', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ImageId' => [ 'shape' => 'ImageId', ], 'S3ExportLocation' => [ 'shape' => 'ExportTaskS3LocationRequest', ], 'RoleName' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'ExportImageResult' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DiskImageFormat' => [ 'shape' => 'DiskImageFormat', 'locationName' => 'diskImageFormat', ], 'ExportImageTaskId' => [ 'shape' => 'String', 'locationName' => 'exportImageTaskId', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'RoleName' => [ 'shape' => 'String', 'locationName' => 'roleName', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'S3ExportLocation' => [ 'shape' => 'ExportTaskS3Location', 'locationName' => 's3ExportLocation', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ExportImageTask' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'ExportImageTaskId' => [ 'shape' => 'String', 'locationName' => 'exportImageTaskId', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'S3ExportLocation' => [ 'shape' => 'ExportTaskS3Location', 'locationName' => 's3ExportLocation', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ExportImageTaskId' => [ 'type' => 'string', ], 'ExportImageTaskIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExportImageTaskId', 'locationName' => 'ExportImageTaskId', ], ], 'ExportImageTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExportImageTask', 'locationName' => 'item', ], ], 'ExportTask' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'ExportTaskId' => [ 'shape' => 'String', 'locationName' => 'exportTaskId', ], 'ExportToS3Task' => [ 'shape' => 'ExportToS3Task', 'locationName' => 'exportToS3', ], 'InstanceExportDetails' => [ 'shape' => 'InstanceExportDetails', 'locationName' => 'instanceExport', ], 'State' => [ 'shape' => 'ExportTaskState', 'locationName' => 'state', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ExportTaskId' => [ 'type' => 'string', ], 'ExportTaskIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExportTaskId', 'locationName' => 'ExportTaskId', ], ], 'ExportTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExportTask', 'locationName' => 'item', ], ], 'ExportTaskS3Location' => [ 'type' => 'structure', 'members' => [ 'S3Bucket' => [ 'shape' => 'String', 'locationName' => 's3Bucket', ], 'S3Prefix' => [ 'shape' => 'String', 'locationName' => 's3Prefix', ], ], ], 'ExportTaskS3LocationRequest' => [ 'type' => 'structure', 'required' => [ 'S3Bucket', ], 'members' => [ 'S3Bucket' => [ 'shape' => 'String', ], 'S3Prefix' => [ 'shape' => 'String', ], ], ], 'ExportTaskState' => [ 'type' => 'string', 'enum' => [ 'active', 'cancelling', 'cancelled', 'completed', ], ], 'ExportToS3Task' => [ 'type' => 'structure', 'members' => [ 'ContainerFormat' => [ 'shape' => 'ContainerFormat', 'locationName' => 'containerFormat', ], 'DiskImageFormat' => [ 'shape' => 'DiskImageFormat', 'locationName' => 'diskImageFormat', ], 'S3Bucket' => [ 'shape' => 'String', 'locationName' => 's3Bucket', ], 'S3Key' => [ 'shape' => 'String', 'locationName' => 's3Key', ], ], ], 'ExportToS3TaskSpecification' => [ 'type' => 'structure', 'members' => [ 'ContainerFormat' => [ 'shape' => 'ContainerFormat', 'locationName' => 'containerFormat', ], 'DiskImageFormat' => [ 'shape' => 'DiskImageFormat', 'locationName' => 'diskImageFormat', ], 'S3Bucket' => [ 'shape' => 'String', 'locationName' => 's3Bucket', ], 'S3Prefix' => [ 'shape' => 'String', 'locationName' => 's3Prefix', ], ], ], 'ExportTransitGatewayRoutesRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'S3Bucket', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'S3Bucket' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ExportTransitGatewayRoutesResult' => [ 'type' => 'structure', 'members' => [ 'S3Location' => [ 'shape' => 'String', 'locationName' => 's3Location', ], ], ], 'ExportVmTaskId' => [ 'type' => 'string', ], 'FailedCapacityReservationFleetCancellationResult' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationFleetId' => [ 'shape' => 'CapacityReservationFleetId', 'locationName' => 'capacityReservationFleetId', ], 'CancelCapacityReservationFleetError' => [ 'shape' => 'CancelCapacityReservationFleetError', 'locationName' => 'cancelCapacityReservationFleetError', ], ], ], 'FailedCapacityReservationFleetCancellationResultSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'FailedCapacityReservationFleetCancellationResult', 'locationName' => 'item', ], ], 'FailedQueuedPurchaseDeletion' => [ 'type' => 'structure', 'members' => [ 'Error' => [ 'shape' => 'DeleteQueuedReservedInstancesError', 'locationName' => 'error', ], 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], ], ], 'FailedQueuedPurchaseDeletionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'FailedQueuedPurchaseDeletion', 'locationName' => 'item', ], ], 'FastLaunchImageIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImageId', 'locationName' => 'ImageId', ], ], 'FastLaunchLaunchTemplateSpecificationRequest' => [ 'type' => 'structure', 'required' => [ 'Version', ], 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'String', ], 'Version' => [ 'shape' => 'String', ], ], ], 'FastLaunchLaunchTemplateSpecificationResponse' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', 'locationName' => 'launchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'String', 'locationName' => 'launchTemplateName', ], 'Version' => [ 'shape' => 'String', 'locationName' => 'version', ], ], ], 'FastLaunchResourceType' => [ 'type' => 'string', 'enum' => [ 'snapshot', ], ], 'FastLaunchSnapshotConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'TargetResourceCount' => [ 'shape' => 'Integer', ], ], ], 'FastLaunchSnapshotConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'TargetResourceCount' => [ 'shape' => 'Integer', 'locationName' => 'targetResourceCount', ], ], ], 'FastLaunchStateCode' => [ 'type' => 'string', 'enum' => [ 'enabling', 'enabling-failed', 'enabled', 'enabled-failed', 'disabling', 'disabling-failed', ], ], 'FastSnapshotRestoreStateCode' => [ 'type' => 'string', 'enum' => [ 'enabling', 'optimizing', 'enabled', 'disabling', 'disabled', ], ], 'FederatedAuthentication' => [ 'type' => 'structure', 'members' => [ 'SamlProviderArn' => [ 'shape' => 'String', 'locationName' => 'samlProviderArn', ], 'SelfServiceSamlProviderArn' => [ 'shape' => 'String', 'locationName' => 'selfServiceSamlProviderArn', ], ], ], 'FederatedAuthenticationRequest' => [ 'type' => 'structure', 'members' => [ 'SAMLProviderArn' => [ 'shape' => 'String', ], 'SelfServiceSAMLProviderArn' => [ 'shape' => 'String', ], ], ], 'Filter' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Values' => [ 'shape' => 'ValueStringList', 'locationName' => 'Value', ], ], ], 'FilterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Filter', 'locationName' => 'Filter', ], ], 'FilterPortRange' => [ 'type' => 'structure', 'members' => [ 'FromPort' => [ 'shape' => 'Port', 'locationName' => 'fromPort', ], 'ToPort' => [ 'shape' => 'Port', 'locationName' => 'toPort', ], ], ], 'FindingsFound' => [ 'type' => 'string', 'enum' => [ 'true', 'false', 'unknown', ], ], 'FirewallStatefulRule' => [ 'type' => 'structure', 'members' => [ 'RuleGroupArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ruleGroupArn', ], 'Sources' => [ 'shape' => 'ValueStringList', 'locationName' => 'sourceSet', ], 'Destinations' => [ 'shape' => 'ValueStringList', 'locationName' => 'destinationSet', ], 'SourcePorts' => [ 'shape' => 'PortRangeList', 'locationName' => 'sourcePortSet', ], 'DestinationPorts' => [ 'shape' => 'PortRangeList', 'locationName' => 'destinationPortSet', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], 'RuleAction' => [ 'shape' => 'String', 'locationName' => 'ruleAction', ], 'Direction' => [ 'shape' => 'String', 'locationName' => 'direction', ], ], ], 'FirewallStatelessRule' => [ 'type' => 'structure', 'members' => [ 'RuleGroupArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ruleGroupArn', ], 'Sources' => [ 'shape' => 'ValueStringList', 'locationName' => 'sourceSet', ], 'Destinations' => [ 'shape' => 'ValueStringList', 'locationName' => 'destinationSet', ], 'SourcePorts' => [ 'shape' => 'PortRangeList', 'locationName' => 'sourcePortSet', ], 'DestinationPorts' => [ 'shape' => 'PortRangeList', 'locationName' => 'destinationPortSet', ], 'Protocols' => [ 'shape' => 'ProtocolIntList', 'locationName' => 'protocolSet', ], 'RuleAction' => [ 'shape' => 'String', 'locationName' => 'ruleAction', ], 'Priority' => [ 'shape' => 'Priority', 'locationName' => 'priority', ], ], ], 'FleetActivityStatus' => [ 'type' => 'string', 'enum' => [ 'error', 'pending_fulfillment', 'pending_termination', 'fulfilled', ], ], 'FleetCapacityReservation' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationId' => [ 'shape' => 'CapacityReservationId', 'locationName' => 'capacityReservationId', ], 'AvailabilityZoneId' => [ 'shape' => 'String', 'locationName' => 'availabilityZoneId', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'InstancePlatform' => [ 'shape' => 'CapacityReservationInstancePlatform', 'locationName' => 'instancePlatform', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'TotalInstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'totalInstanceCount', ], 'FulfilledCapacity' => [ 'shape' => 'Double', 'locationName' => 'fulfilledCapacity', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'CreateDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'createDate', ], 'Weight' => [ 'shape' => 'DoubleWithConstraints', 'locationName' => 'weight', ], 'Priority' => [ 'shape' => 'IntegerWithConstraints', 'locationName' => 'priority', ], ], ], 'FleetCapacityReservationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetCapacityReservation', 'locationName' => 'item', ], ], 'FleetCapacityReservationTenancy' => [ 'type' => 'string', 'enum' => [ 'default', ], ], 'FleetCapacityReservationUsageStrategy' => [ 'type' => 'string', 'enum' => [ 'use-capacity-reservations-first', ], ], 'FleetData' => [ 'type' => 'structure', 'members' => [ 'ActivityStatus' => [ 'shape' => 'FleetActivityStatus', 'locationName' => 'activityStatus', ], 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'FleetId' => [ 'shape' => 'FleetId', 'locationName' => 'fleetId', ], 'FleetState' => [ 'shape' => 'FleetStateCode', 'locationName' => 'fleetState', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'ExcessCapacityTerminationPolicy' => [ 'shape' => 'FleetExcessCapacityTerminationPolicy', 'locationName' => 'excessCapacityTerminationPolicy', ], 'FulfilledCapacity' => [ 'shape' => 'Double', 'locationName' => 'fulfilledCapacity', ], 'FulfilledOnDemandCapacity' => [ 'shape' => 'Double', 'locationName' => 'fulfilledOnDemandCapacity', ], 'LaunchTemplateConfigs' => [ 'shape' => 'FleetLaunchTemplateConfigList', 'locationName' => 'launchTemplateConfigs', ], 'TargetCapacitySpecification' => [ 'shape' => 'TargetCapacitySpecification', 'locationName' => 'targetCapacitySpecification', ], 'TerminateInstancesWithExpiration' => [ 'shape' => 'Boolean', 'locationName' => 'terminateInstancesWithExpiration', ], 'Type' => [ 'shape' => 'FleetType', 'locationName' => 'type', ], 'ValidFrom' => [ 'shape' => 'DateTime', 'locationName' => 'validFrom', ], 'ValidUntil' => [ 'shape' => 'DateTime', 'locationName' => 'validUntil', ], 'ReplaceUnhealthyInstances' => [ 'shape' => 'Boolean', 'locationName' => 'replaceUnhealthyInstances', ], 'SpotOptions' => [ 'shape' => 'SpotOptions', 'locationName' => 'spotOptions', ], 'OnDemandOptions' => [ 'shape' => 'OnDemandOptions', 'locationName' => 'onDemandOptions', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'Errors' => [ 'shape' => 'DescribeFleetsErrorSet', 'locationName' => 'errorSet', ], 'Instances' => [ 'shape' => 'DescribeFleetsInstancesSet', 'locationName' => 'fleetInstanceSet', ], 'Context' => [ 'shape' => 'String', 'locationName' => 'context', ], ], ], 'FleetEventType' => [ 'type' => 'string', 'enum' => [ 'instance-change', 'fleet-change', 'service-error', ], ], 'FleetExcessCapacityTerminationPolicy' => [ 'type' => 'string', 'enum' => [ 'no-termination', 'termination', ], ], 'FleetId' => [ 'type' => 'string', ], 'FleetIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetId', ], ], 'FleetInstanceMatchCriteria' => [ 'type' => 'string', 'enum' => [ 'open', ], ], 'FleetLaunchTemplateConfig' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateSpecification' => [ 'shape' => 'FleetLaunchTemplateSpecification', 'locationName' => 'launchTemplateSpecification', ], 'Overrides' => [ 'shape' => 'FleetLaunchTemplateOverridesList', 'locationName' => 'overrides', ], ], ], 'FleetLaunchTemplateConfigList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetLaunchTemplateConfig', 'locationName' => 'item', ], ], 'FleetLaunchTemplateConfigListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetLaunchTemplateConfigRequest', 'locationName' => 'item', ], 'max' => 50, 'min' => 0, ], 'FleetLaunchTemplateConfigRequest' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateSpecification' => [ 'shape' => 'FleetLaunchTemplateSpecificationRequest', ], 'Overrides' => [ 'shape' => 'FleetLaunchTemplateOverridesListRequest', ], ], ], 'FleetLaunchTemplateOverrides' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'MaxPrice' => [ 'shape' => 'String', 'locationName' => 'maxPrice', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'WeightedCapacity' => [ 'shape' => 'Double', 'locationName' => 'weightedCapacity', ], 'Priority' => [ 'shape' => 'Double', 'locationName' => 'priority', ], 'Placement' => [ 'shape' => 'PlacementResponse', 'locationName' => 'placement', ], 'InstanceRequirements' => [ 'shape' => 'InstanceRequirements', 'locationName' => 'instanceRequirements', ], 'ImageId' => [ 'shape' => 'ImageId', 'locationName' => 'imageId', ], ], ], 'FleetLaunchTemplateOverridesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetLaunchTemplateOverrides', 'locationName' => 'item', ], ], 'FleetLaunchTemplateOverridesListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetLaunchTemplateOverridesRequest', 'locationName' => 'item', ], ], 'FleetLaunchTemplateOverridesRequest' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'InstanceType', ], 'MaxPrice' => [ 'shape' => 'String', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'WeightedCapacity' => [ 'shape' => 'Double', ], 'Priority' => [ 'shape' => 'Double', ], 'Placement' => [ 'shape' => 'Placement', ], 'InstanceRequirements' => [ 'shape' => 'InstanceRequirementsRequest', ], 'ImageId' => [ 'shape' => 'ImageId', ], ], ], 'FleetLaunchTemplateSpecification' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'String', 'locationName' => 'launchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', 'locationName' => 'launchTemplateName', ], 'Version' => [ 'shape' => 'String', 'locationName' => 'version', ], ], ], 'FleetLaunchTemplateSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', ], 'Version' => [ 'shape' => 'String', ], ], ], 'FleetOnDemandAllocationStrategy' => [ 'type' => 'string', 'enum' => [ 'lowest-price', 'prioritized', ], ], 'FleetReplacementStrategy' => [ 'type' => 'string', 'enum' => [ 'launch', 'launch-before-terminate', ], ], 'FleetSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetData', 'locationName' => 'item', ], ], 'FleetSpotCapacityRebalance' => [ 'type' => 'structure', 'members' => [ 'ReplacementStrategy' => [ 'shape' => 'FleetReplacementStrategy', 'locationName' => 'replacementStrategy', ], 'TerminationDelay' => [ 'shape' => 'Integer', 'locationName' => 'terminationDelay', ], ], ], 'FleetSpotCapacityRebalanceRequest' => [ 'type' => 'structure', 'members' => [ 'ReplacementStrategy' => [ 'shape' => 'FleetReplacementStrategy', ], 'TerminationDelay' => [ 'shape' => 'Integer', ], ], ], 'FleetSpotMaintenanceStrategies' => [ 'type' => 'structure', 'members' => [ 'CapacityRebalance' => [ 'shape' => 'FleetSpotCapacityRebalance', 'locationName' => 'capacityRebalance', ], ], ], 'FleetSpotMaintenanceStrategiesRequest' => [ 'type' => 'structure', 'members' => [ 'CapacityRebalance' => [ 'shape' => 'FleetSpotCapacityRebalanceRequest', ], ], ], 'FleetStateCode' => [ 'type' => 'string', 'enum' => [ 'submitted', 'active', 'deleted', 'failed', 'deleted_running', 'deleted_terminating', 'modifying', ], ], 'FleetType' => [ 'type' => 'string', 'enum' => [ 'request', 'maintain', 'instant', ], ], 'Float' => [ 'type' => 'float', ], 'FlowLog' => [ 'type' => 'structure', 'members' => [ 'CreationTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'creationTime', ], 'DeliverLogsErrorMessage' => [ 'shape' => 'String', 'locationName' => 'deliverLogsErrorMessage', ], 'DeliverLogsPermissionArn' => [ 'shape' => 'String', 'locationName' => 'deliverLogsPermissionArn', ], 'DeliverCrossAccountRole' => [ 'shape' => 'String', 'locationName' => 'deliverCrossAccountRole', ], 'DeliverLogsStatus' => [ 'shape' => 'String', 'locationName' => 'deliverLogsStatus', ], 'FlowLogId' => [ 'shape' => 'String', 'locationName' => 'flowLogId', ], 'FlowLogStatus' => [ 'shape' => 'String', 'locationName' => 'flowLogStatus', ], 'LogGroupName' => [ 'shape' => 'String', 'locationName' => 'logGroupName', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'TrafficType' => [ 'shape' => 'TrafficType', 'locationName' => 'trafficType', ], 'LogDestinationType' => [ 'shape' => 'LogDestinationType', 'locationName' => 'logDestinationType', ], 'LogDestination' => [ 'shape' => 'String', 'locationName' => 'logDestination', ], 'LogFormat' => [ 'shape' => 'String', 'locationName' => 'logFormat', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'MaxAggregationInterval' => [ 'shape' => 'Integer', 'locationName' => 'maxAggregationInterval', ], 'DestinationOptions' => [ 'shape' => 'DestinationOptionsResponse', 'locationName' => 'destinationOptions', ], ], ], 'FlowLogIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcFlowLogId', 'locationName' => 'item', ], ], 'FlowLogResourceId' => [ 'type' => 'string', ], 'FlowLogResourceIds' => [ 'type' => 'list', 'member' => [ 'shape' => 'FlowLogResourceId', 'locationName' => 'item', ], ], 'FlowLogSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'FlowLog', 'locationName' => 'item', ], ], 'FlowLogsResourceType' => [ 'type' => 'string', 'enum' => [ 'VPC', 'Subnet', 'NetworkInterface', 'TransitGateway', 'TransitGatewayAttachment', ], ], 'FpgaDeviceCount' => [ 'type' => 'integer', ], 'FpgaDeviceInfo' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'FpgaDeviceName', 'locationName' => 'name', ], 'Manufacturer' => [ 'shape' => 'FpgaDeviceManufacturerName', 'locationName' => 'manufacturer', ], 'Count' => [ 'shape' => 'FpgaDeviceCount', 'locationName' => 'count', ], 'MemoryInfo' => [ 'shape' => 'FpgaDeviceMemoryInfo', 'locationName' => 'memoryInfo', ], ], ], 'FpgaDeviceInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FpgaDeviceInfo', 'locationName' => 'item', ], ], 'FpgaDeviceManufacturerName' => [ 'type' => 'string', ], 'FpgaDeviceMemoryInfo' => [ 'type' => 'structure', 'members' => [ 'SizeInMiB' => [ 'shape' => 'FpgaDeviceMemorySize', 'locationName' => 'sizeInMiB', ], ], ], 'FpgaDeviceMemorySize' => [ 'type' => 'integer', ], 'FpgaDeviceName' => [ 'type' => 'string', ], 'FpgaImage' => [ 'type' => 'structure', 'members' => [ 'FpgaImageId' => [ 'shape' => 'String', 'locationName' => 'fpgaImageId', ], 'FpgaImageGlobalId' => [ 'shape' => 'String', 'locationName' => 'fpgaImageGlobalId', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'ShellVersion' => [ 'shape' => 'String', 'locationName' => 'shellVersion', ], 'PciId' => [ 'shape' => 'PciId', 'locationName' => 'pciId', ], 'State' => [ 'shape' => 'FpgaImageState', 'locationName' => 'state', ], 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'UpdateTime' => [ 'shape' => 'DateTime', 'locationName' => 'updateTime', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'OwnerAlias' => [ 'shape' => 'String', 'locationName' => 'ownerAlias', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tags', ], 'Public' => [ 'shape' => 'Boolean', 'locationName' => 'public', ], 'DataRetentionSupport' => [ 'shape' => 'Boolean', 'locationName' => 'dataRetentionSupport', ], 'InstanceTypes' => [ 'shape' => 'InstanceTypesList', 'locationName' => 'instanceTypes', ], ], ], 'FpgaImageAttribute' => [ 'type' => 'structure', 'members' => [ 'FpgaImageId' => [ 'shape' => 'String', 'locationName' => 'fpgaImageId', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'LoadPermissions' => [ 'shape' => 'LoadPermissionList', 'locationName' => 'loadPermissions', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], ], ], 'FpgaImageAttributeName' => [ 'type' => 'string', 'enum' => [ 'description', 'name', 'loadPermission', 'productCodes', ], ], 'FpgaImageId' => [ 'type' => 'string', ], 'FpgaImageIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FpgaImageId', 'locationName' => 'item', ], ], 'FpgaImageList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FpgaImage', 'locationName' => 'item', ], ], 'FpgaImageState' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'FpgaImageStateCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'FpgaImageStateCode' => [ 'type' => 'string', 'enum' => [ 'pending', 'failed', 'available', 'unavailable', ], ], 'FpgaInfo' => [ 'type' => 'structure', 'members' => [ 'Fpgas' => [ 'shape' => 'FpgaDeviceInfoList', 'locationName' => 'fpgas', ], 'TotalFpgaMemoryInMiB' => [ 'shape' => 'totalFpgaMemory', 'locationName' => 'totalFpgaMemoryInMiB', ], ], ], 'FreeTierEligibleFlag' => [ 'type' => 'boolean', ], 'GVCDMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 200, ], 'GatewayAssociationState' => [ 'type' => 'string', 'enum' => [ 'associated', 'not-associated', 'associating', 'disassociating', ], ], 'GatewayType' => [ 'type' => 'string', 'enum' => [ 'ipsec.1', ], ], 'GetAssociatedEnclaveCertificateIamRolesRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'CertificateId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetAssociatedEnclaveCertificateIamRolesResult' => [ 'type' => 'structure', 'members' => [ 'AssociatedRoles' => [ 'shape' => 'AssociatedRolesList', 'locationName' => 'associatedRoleSet', ], ], ], 'GetAssociatedIpv6PoolCidrsRequest' => [ 'type' => 'structure', 'required' => [ 'PoolId', ], 'members' => [ 'PoolId' => [ 'shape' => 'Ipv6PoolEc2Id', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'Ipv6PoolMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetAssociatedIpv6PoolCidrsResult' => [ 'type' => 'structure', 'members' => [ 'Ipv6CidrAssociations' => [ 'shape' => 'Ipv6CidrAssociationSet', 'locationName' => 'ipv6CidrAssociationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetAwsNetworkPerformanceDataRequest' => [ 'type' => 'structure', 'members' => [ 'DataQueries' => [ 'shape' => 'DataQueries', 'locationName' => 'DataQuery', ], 'StartTime' => [ 'shape' => 'MillisecondDateTime', ], 'EndTime' => [ 'shape' => 'MillisecondDateTime', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetAwsNetworkPerformanceDataResult' => [ 'type' => 'structure', 'members' => [ 'DataResponses' => [ 'shape' => 'DataResponses', 'locationName' => 'dataResponseSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetCapacityReservationUsageRequest' => [ 'type' => 'structure', 'required' => [ 'CapacityReservationId', ], 'members' => [ 'CapacityReservationId' => [ 'shape' => 'CapacityReservationId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'GetCapacityReservationUsageRequestMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetCapacityReservationUsageRequestMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'GetCapacityReservationUsageResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'CapacityReservationId' => [ 'shape' => 'String', 'locationName' => 'capacityReservationId', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'TotalInstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'totalInstanceCount', ], 'AvailableInstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'availableInstanceCount', ], 'State' => [ 'shape' => 'CapacityReservationState', 'locationName' => 'state', ], 'InstanceUsages' => [ 'shape' => 'InstanceUsageSet', 'locationName' => 'instanceUsageSet', ], ], ], 'GetCoipPoolUsageRequest' => [ 'type' => 'structure', 'required' => [ 'PoolId', ], 'members' => [ 'PoolId' => [ 'shape' => 'Ipv4PoolCoipId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'CoipPoolMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetCoipPoolUsageResult' => [ 'type' => 'structure', 'members' => [ 'CoipPoolId' => [ 'shape' => 'String', 'locationName' => 'coipPoolId', ], 'CoipAddressUsages' => [ 'shape' => 'CoipAddressUsageSet', 'locationName' => 'coipAddressUsageSet', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'String', 'locationName' => 'localGatewayRouteTableId', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetConsoleOutputRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Latest' => [ 'shape' => 'Boolean', ], ], ], 'GetConsoleOutputResult' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Output' => [ 'shape' => 'String', 'locationName' => 'output', ], 'Timestamp' => [ 'shape' => 'DateTime', 'locationName' => 'timestamp', ], ], ], 'GetConsoleScreenshotRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceId' => [ 'shape' => 'InstanceId', ], 'WakeUp' => [ 'shape' => 'Boolean', ], ], ], 'GetConsoleScreenshotResult' => [ 'type' => 'structure', 'members' => [ 'ImageData' => [ 'shape' => 'String', 'locationName' => 'imageData', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], ], ], 'GetDefaultCreditSpecificationRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceFamily', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceFamily' => [ 'shape' => 'UnlimitedSupportedInstanceFamily', ], ], ], 'GetDefaultCreditSpecificationResult' => [ 'type' => 'structure', 'members' => [ 'InstanceFamilyCreditSpecification' => [ 'shape' => 'InstanceFamilyCreditSpecification', 'locationName' => 'instanceFamilyCreditSpecification', ], ], ], 'GetEbsDefaultKmsKeyIdRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetEbsDefaultKmsKeyIdResult' => [ 'type' => 'structure', 'members' => [ 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], ], ], 'GetEbsEncryptionByDefaultRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetEbsEncryptionByDefaultResult' => [ 'type' => 'structure', 'members' => [ 'EbsEncryptionByDefault' => [ 'shape' => 'Boolean', 'locationName' => 'ebsEncryptionByDefault', ], 'SseType' => [ 'shape' => 'SSEType', 'locationName' => 'sseType', ], ], ], 'GetFlowLogsIntegrationTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'FlowLogId', 'ConfigDeliveryS3DestinationArn', 'IntegrateServices', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'FlowLogId' => [ 'shape' => 'VpcFlowLogId', ], 'ConfigDeliveryS3DestinationArn' => [ 'shape' => 'String', ], 'IntegrateServices' => [ 'shape' => 'IntegrateServices', 'locationName' => 'IntegrateService', ], ], ], 'GetFlowLogsIntegrationTemplateResult' => [ 'type' => 'structure', 'members' => [ 'Result' => [ 'shape' => 'String', 'locationName' => 'result', ], ], ], 'GetGroupsForCapacityReservationRequest' => [ 'type' => 'structure', 'required' => [ 'CapacityReservationId', ], 'members' => [ 'CapacityReservationId' => [ 'shape' => 'CapacityReservationId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'GetGroupsForCapacityReservationRequestMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetGroupsForCapacityReservationRequestMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'GetGroupsForCapacityReservationResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'CapacityReservationGroups' => [ 'shape' => 'CapacityReservationGroupSet', 'locationName' => 'capacityReservationGroupSet', ], ], ], 'GetHostReservationPurchasePreviewRequest' => [ 'type' => 'structure', 'required' => [ 'HostIdSet', 'OfferingId', ], 'members' => [ 'HostIdSet' => [ 'shape' => 'RequestHostIdSet', ], 'OfferingId' => [ 'shape' => 'OfferingId', ], ], ], 'GetHostReservationPurchasePreviewResult' => [ 'type' => 'structure', 'members' => [ 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Purchase' => [ 'shape' => 'PurchaseSet', 'locationName' => 'purchase', ], 'TotalHourlyPrice' => [ 'shape' => 'String', 'locationName' => 'totalHourlyPrice', ], 'TotalUpfrontPrice' => [ 'shape' => 'String', 'locationName' => 'totalUpfrontPrice', ], ], ], 'GetImageBlockPublicAccessStateRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetImageBlockPublicAccessStateResult' => [ 'type' => 'structure', 'members' => [ 'ImageBlockPublicAccessState' => [ 'shape' => 'String', 'locationName' => 'imageBlockPublicAccessState', ], ], ], 'GetInstanceTypesFromInstanceRequirementsRequest' => [ 'type' => 'structure', 'required' => [ 'ArchitectureTypes', 'VirtualizationTypes', 'InstanceRequirements', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ArchitectureTypes' => [ 'shape' => 'ArchitectureTypeSet', 'locationName' => 'ArchitectureType', ], 'VirtualizationTypes' => [ 'shape' => 'VirtualizationTypeSet', 'locationName' => 'VirtualizationType', ], 'InstanceRequirements' => [ 'shape' => 'InstanceRequirementsRequest', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'GetInstanceTypesFromInstanceRequirementsResult' => [ 'type' => 'structure', 'members' => [ 'InstanceTypes' => [ 'shape' => 'InstanceTypeInfoFromInstanceRequirementsSet', 'locationName' => 'instanceTypeSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetInstanceUefiDataRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetInstanceUefiDataResult' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'UefiData' => [ 'shape' => 'String', 'locationName' => 'uefiData', ], ], ], 'GetIpamAddressHistoryRequest' => [ 'type' => 'structure', 'required' => [ 'Cidr', 'IpamScopeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Cidr' => [ 'shape' => 'String', ], 'IpamScopeId' => [ 'shape' => 'IpamScopeId', ], 'VpcId' => [ 'shape' => 'String', ], 'StartTime' => [ 'shape' => 'MillisecondDateTime', ], 'EndTime' => [ 'shape' => 'MillisecondDateTime', ], 'MaxResults' => [ 'shape' => 'IpamAddressHistoryMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetIpamAddressHistoryResult' => [ 'type' => 'structure', 'members' => [ 'HistoryRecords' => [ 'shape' => 'IpamAddressHistoryRecordSet', 'locationName' => 'historyRecordSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'GetIpamDiscoveredAccountsRequest' => [ 'type' => 'structure', 'required' => [ 'IpamResourceDiscoveryId', 'DiscoveryRegion', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', ], 'DiscoveryRegion' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], ], ], 'GetIpamDiscoveredAccountsResult' => [ 'type' => 'structure', 'members' => [ 'IpamDiscoveredAccounts' => [ 'shape' => 'IpamDiscoveredAccountSet', 'locationName' => 'ipamDiscoveredAccountSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'GetIpamDiscoveredPublicAddressesRequest' => [ 'type' => 'structure', 'required' => [ 'IpamResourceDiscoveryId', 'AddressRegion', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', ], 'AddressRegion' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], ], ], 'GetIpamDiscoveredPublicAddressesResult' => [ 'type' => 'structure', 'members' => [ 'IpamDiscoveredPublicAddresses' => [ 'shape' => 'IpamDiscoveredPublicAddressSet', 'locationName' => 'ipamDiscoveredPublicAddressSet', ], 'OldestSampleTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'oldestSampleTime', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'GetIpamDiscoveredResourceCidrsRequest' => [ 'type' => 'structure', 'required' => [ 'IpamResourceDiscoveryId', 'ResourceRegion', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', ], 'ResourceRegion' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], ], ], 'GetIpamDiscoveredResourceCidrsResult' => [ 'type' => 'structure', 'members' => [ 'IpamDiscoveredResourceCidrs' => [ 'shape' => 'IpamDiscoveredResourceCidrSet', 'locationName' => 'ipamDiscoveredResourceCidrSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'GetIpamPoolAllocationsMaxResults' => [ 'type' => 'integer', 'max' => 100000, 'min' => 1000, ], 'GetIpamPoolAllocationsRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'IpamPoolAllocationId' => [ 'shape' => 'IpamPoolAllocationId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'GetIpamPoolAllocationsMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetIpamPoolAllocationsResult' => [ 'type' => 'structure', 'members' => [ 'IpamPoolAllocations' => [ 'shape' => 'IpamPoolAllocationSet', 'locationName' => 'ipamPoolAllocationSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'GetIpamPoolCidrsRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetIpamPoolCidrsResult' => [ 'type' => 'structure', 'members' => [ 'IpamPoolCidrs' => [ 'shape' => 'IpamPoolCidrSet', 'locationName' => 'ipamPoolCidrSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'GetIpamResourceCidrsRequest' => [ 'type' => 'structure', 'required' => [ 'IpamScopeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'IpamScopeId' => [ 'shape' => 'IpamScopeId', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'ResourceId' => [ 'shape' => 'String', ], 'ResourceType' => [ 'shape' => 'IpamResourceType', ], 'ResourceTag' => [ 'shape' => 'RequestIpamResourceTag', ], 'ResourceOwner' => [ 'shape' => 'String', ], ], ], 'GetIpamResourceCidrsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], 'IpamResourceCidrs' => [ 'shape' => 'IpamResourceCidrSet', 'locationName' => 'ipamResourceCidrSet', ], ], ], 'GetLaunchTemplateDataRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceId' => [ 'shape' => 'InstanceId', ], ], ], 'GetLaunchTemplateDataResult' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateData' => [ 'shape' => 'ResponseLaunchTemplateData', 'locationName' => 'launchTemplateData', ], ], ], 'GetManagedPrefixListAssociationsMaxResults' => [ 'type' => 'integer', 'max' => 255, 'min' => 5, ], 'GetManagedPrefixListAssociationsRequest' => [ 'type' => 'structure', 'required' => [ 'PrefixListId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'MaxResults' => [ 'shape' => 'GetManagedPrefixListAssociationsMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetManagedPrefixListAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'PrefixListAssociations' => [ 'shape' => 'PrefixListAssociationSet', 'locationName' => 'prefixListAssociationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetManagedPrefixListEntriesRequest' => [ 'type' => 'structure', 'required' => [ 'PrefixListId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'TargetVersion' => [ 'shape' => 'Long', ], 'MaxResults' => [ 'shape' => 'PrefixListMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetManagedPrefixListEntriesResult' => [ 'type' => 'structure', 'members' => [ 'Entries' => [ 'shape' => 'PrefixListEntrySet', 'locationName' => 'entrySet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'GetNetworkInsightsAccessScopeAnalysisFindingsRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInsightsAccessScopeAnalysisId', ], 'members' => [ 'NetworkInsightsAccessScopeAnalysisId' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisId', ], 'MaxResults' => [ 'shape' => 'NetworkInsightsMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetNetworkInsightsAccessScopeAnalysisFindingsResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeAnalysisId' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisId', 'locationName' => 'networkInsightsAccessScopeAnalysisId', ], 'AnalysisStatus' => [ 'shape' => 'AnalysisStatus', 'locationName' => 'analysisStatus', ], 'AnalysisFindings' => [ 'shape' => 'AccessScopeAnalysisFindingList', 'locationName' => 'analysisFindingSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetNetworkInsightsAccessScopeContentRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInsightsAccessScopeId', ], 'members' => [ 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetNetworkInsightsAccessScopeContentResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeContent' => [ 'shape' => 'NetworkInsightsAccessScopeContent', 'locationName' => 'networkInsightsAccessScopeContent', ], ], ], 'GetPasswordDataRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'GetPasswordDataResult' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'PasswordData' => [ 'shape' => 'PasswordData', 'locationName' => 'passwordData', ], 'Timestamp' => [ 'shape' => 'DateTime', 'locationName' => 'timestamp', ], ], ], 'GetReservedInstancesExchangeQuoteRequest' => [ 'type' => 'structure', 'required' => [ 'ReservedInstanceIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ReservedInstanceIds' => [ 'shape' => 'ReservedInstanceIdSet', 'locationName' => 'ReservedInstanceId', ], 'TargetConfigurations' => [ 'shape' => 'TargetConfigurationRequestSet', 'locationName' => 'TargetConfiguration', ], ], ], 'GetReservedInstancesExchangeQuoteResult' => [ 'type' => 'structure', 'members' => [ 'CurrencyCode' => [ 'shape' => 'String', 'locationName' => 'currencyCode', ], 'IsValidExchange' => [ 'shape' => 'Boolean', 'locationName' => 'isValidExchange', ], 'OutputReservedInstancesWillExpireAt' => [ 'shape' => 'DateTime', 'locationName' => 'outputReservedInstancesWillExpireAt', ], 'PaymentDue' => [ 'shape' => 'String', 'locationName' => 'paymentDue', ], 'ReservedInstanceValueRollup' => [ 'shape' => 'ReservationValue', 'locationName' => 'reservedInstanceValueRollup', ], 'ReservedInstanceValueSet' => [ 'shape' => 'ReservedInstanceReservationValueSet', 'locationName' => 'reservedInstanceValueSet', ], 'TargetConfigurationValueRollup' => [ 'shape' => 'ReservationValue', 'locationName' => 'targetConfigurationValueRollup', ], 'TargetConfigurationValueSet' => [ 'shape' => 'TargetReservationValueSet', 'locationName' => 'targetConfigurationValueSet', ], 'ValidationFailureReason' => [ 'shape' => 'String', 'locationName' => 'validationFailureReason', ], ], ], 'GetSecurityGroupsForVpcRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'VpcId' => [ 'shape' => 'VpcId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'GetSecurityGroupsForVpcRequestMaxResults', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetSecurityGroupsForVpcRequestMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'GetSecurityGroupsForVpcResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'SecurityGroupForVpcs' => [ 'shape' => 'SecurityGroupForVpcList', 'locationName' => 'securityGroupForVpcSet', ], ], ], 'GetSerialConsoleAccessStatusRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetSerialConsoleAccessStatusResult' => [ 'type' => 'structure', 'members' => [ 'SerialConsoleAccessEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'serialConsoleAccessEnabled', ], ], ], 'GetSnapshotBlockPublicAccessStateRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetSnapshotBlockPublicAccessStateResult' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'SnapshotBlockPublicAccessState', 'locationName' => 'state', ], ], ], 'GetSpotPlacementScoresRequest' => [ 'type' => 'structure', 'required' => [ 'TargetCapacity', ], 'members' => [ 'InstanceTypes' => [ 'shape' => 'InstanceTypes', 'locationName' => 'InstanceType', ], 'TargetCapacity' => [ 'shape' => 'SpotPlacementScoresTargetCapacity', ], 'TargetCapacityUnitType' => [ 'shape' => 'TargetCapacityUnitType', ], 'SingleAvailabilityZone' => [ 'shape' => 'Boolean', ], 'RegionNames' => [ 'shape' => 'RegionNames', 'locationName' => 'RegionName', ], 'InstanceRequirementsWithMetadata' => [ 'shape' => 'InstanceRequirementsWithMetadataRequest', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'MaxResults' => [ 'shape' => 'SpotPlacementScoresMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'GetSpotPlacementScoresResult' => [ 'type' => 'structure', 'members' => [ 'SpotPlacementScores' => [ 'shape' => 'SpotPlacementScores', 'locationName' => 'spotPlacementScoreSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetSubnetCidrReservationsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'GetSubnetCidrReservationsRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', ], 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'GetSubnetCidrReservationsMaxResults', ], ], ], 'GetSubnetCidrReservationsResult' => [ 'type' => 'structure', 'members' => [ 'SubnetIpv4CidrReservations' => [ 'shape' => 'SubnetCidrReservationList', 'locationName' => 'subnetIpv4CidrReservationSet', ], 'SubnetIpv6CidrReservations' => [ 'shape' => 'SubnetCidrReservationList', 'locationName' => 'subnetIpv6CidrReservationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetTransitGatewayAttachmentPropagationsRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetTransitGatewayAttachmentPropagationsResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentPropagations' => [ 'shape' => 'TransitGatewayAttachmentPropagationList', 'locationName' => 'transitGatewayAttachmentPropagations', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetTransitGatewayMulticastDomainAssociationsRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayMulticastDomainId', ], 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetTransitGatewayMulticastDomainAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'MulticastDomainAssociations' => [ 'shape' => 'TransitGatewayMulticastDomainAssociationList', 'locationName' => 'multicastDomainAssociations', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetTransitGatewayPolicyTableAssociationsRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayPolicyTableId', ], 'members' => [ 'TransitGatewayPolicyTableId' => [ 'shape' => 'TransitGatewayPolicyTableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetTransitGatewayPolicyTableAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'Associations' => [ 'shape' => 'TransitGatewayPolicyTableAssociationList', 'locationName' => 'associations', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetTransitGatewayPolicyTableEntriesRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayPolicyTableId', ], 'members' => [ 'TransitGatewayPolicyTableId' => [ 'shape' => 'TransitGatewayPolicyTableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetTransitGatewayPolicyTableEntriesResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPolicyTableEntries' => [ 'shape' => 'TransitGatewayPolicyTableEntryList', 'locationName' => 'transitGatewayPolicyTableEntries', ], ], ], 'GetTransitGatewayPrefixListReferencesRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetTransitGatewayPrefixListReferencesResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPrefixListReferences' => [ 'shape' => 'TransitGatewayPrefixListReferenceSet', 'locationName' => 'transitGatewayPrefixListReferenceSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetTransitGatewayRouteTableAssociationsRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetTransitGatewayRouteTableAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'Associations' => [ 'shape' => 'TransitGatewayRouteTableAssociationList', 'locationName' => 'associations', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetTransitGatewayRouteTablePropagationsRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetTransitGatewayRouteTablePropagationsResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTablePropagations' => [ 'shape' => 'TransitGatewayRouteTablePropagationList', 'locationName' => 'transitGatewayRouteTablePropagations', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetVerifiedAccessEndpointPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessEndpointId', ], 'members' => [ 'VerifiedAccessEndpointId' => [ 'shape' => 'VerifiedAccessEndpointId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetVerifiedAccessEndpointPolicyResult' => [ 'type' => 'structure', 'members' => [ 'PolicyEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'policyEnabled', ], 'PolicyDocument' => [ 'shape' => 'String', 'locationName' => 'policyDocument', ], ], ], 'GetVerifiedAccessGroupPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessGroupId', ], 'members' => [ 'VerifiedAccessGroupId' => [ 'shape' => 'VerifiedAccessGroupId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetVerifiedAccessGroupPolicyResult' => [ 'type' => 'structure', 'members' => [ 'PolicyEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'policyEnabled', ], 'PolicyDocument' => [ 'shape' => 'String', 'locationName' => 'policyDocument', ], ], ], 'GetVpnConnectionDeviceSampleConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', 'VpnConnectionDeviceTypeId', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], 'VpnConnectionDeviceTypeId' => [ 'shape' => 'VpnConnectionDeviceTypeId', ], 'InternetKeyExchangeVersion' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetVpnConnectionDeviceSampleConfigurationResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnectionDeviceSampleConfiguration' => [ 'shape' => 'VpnConnectionDeviceSampleConfiguration', 'locationName' => 'vpnConnectionDeviceSampleConfiguration', ], ], ], 'GetVpnConnectionDeviceTypesRequest' => [ 'type' => 'structure', 'members' => [ 'MaxResults' => [ 'shape' => 'GVCDMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetVpnConnectionDeviceTypesResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnectionDeviceTypes' => [ 'shape' => 'VpnConnectionDeviceTypeList', 'locationName' => 'vpnConnectionDeviceTypeSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'GetVpnTunnelReplacementStatusRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', 'VpnTunnelOutsideIpAddress', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], 'VpnTunnelOutsideIpAddress' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetVpnTunnelReplacementStatusResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', 'locationName' => 'vpnConnectionId', ], 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', 'locationName' => 'transitGatewayId', ], 'CustomerGatewayId' => [ 'shape' => 'CustomerGatewayId', 'locationName' => 'customerGatewayId', ], 'VpnGatewayId' => [ 'shape' => 'VpnGatewayId', 'locationName' => 'vpnGatewayId', ], 'VpnTunnelOutsideIpAddress' => [ 'shape' => 'String', 'locationName' => 'vpnTunnelOutsideIpAddress', ], 'MaintenanceDetails' => [ 'shape' => 'MaintenanceDetails', 'locationName' => 'maintenanceDetails', ], ], ], 'GpuDeviceCount' => [ 'type' => 'integer', ], 'GpuDeviceInfo' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'GpuDeviceName', 'locationName' => 'name', ], 'Manufacturer' => [ 'shape' => 'GpuDeviceManufacturerName', 'locationName' => 'manufacturer', ], 'Count' => [ 'shape' => 'GpuDeviceCount', 'locationName' => 'count', ], 'MemoryInfo' => [ 'shape' => 'GpuDeviceMemoryInfo', 'locationName' => 'memoryInfo', ], ], ], 'GpuDeviceInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GpuDeviceInfo', 'locationName' => 'item', ], ], 'GpuDeviceManufacturerName' => [ 'type' => 'string', ], 'GpuDeviceMemoryInfo' => [ 'type' => 'structure', 'members' => [ 'SizeInMiB' => [ 'shape' => 'GpuDeviceMemorySize', 'locationName' => 'sizeInMiB', ], ], ], 'GpuDeviceMemorySize' => [ 'type' => 'integer', ], 'GpuDeviceName' => [ 'type' => 'string', ], 'GpuInfo' => [ 'type' => 'structure', 'members' => [ 'Gpus' => [ 'shape' => 'GpuDeviceInfoList', 'locationName' => 'gpus', ], 'TotalGpuMemoryInMiB' => [ 'shape' => 'totalGpuMemory', 'locationName' => 'totalGpuMemoryInMiB', ], ], ], 'GroupIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'groupId', ], ], 'GroupIdentifier' => [ 'type' => 'structure', 'members' => [ 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], ], ], 'GroupIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GroupIdentifier', 'locationName' => 'item', ], ], 'GroupIdentifierSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupIdentifier', 'locationName' => 'item', ], ], 'GroupIds' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'item', ], ], 'GroupNameStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupName', 'locationName' => 'GroupName', ], ], 'HibernationFlag' => [ 'type' => 'boolean', ], 'HibernationOptions' => [ 'type' => 'structure', 'members' => [ 'Configured' => [ 'shape' => 'Boolean', 'locationName' => 'configured', ], ], ], 'HibernationOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'Configured' => [ 'shape' => 'Boolean', ], ], ], 'HistoryRecord' => [ 'type' => 'structure', 'members' => [ 'EventInformation' => [ 'shape' => 'EventInformation', 'locationName' => 'eventInformation', ], 'EventType' => [ 'shape' => 'EventType', 'locationName' => 'eventType', ], 'Timestamp' => [ 'shape' => 'DateTime', 'locationName' => 'timestamp', ], ], ], 'HistoryRecordEntry' => [ 'type' => 'structure', 'members' => [ 'EventInformation' => [ 'shape' => 'EventInformation', 'locationName' => 'eventInformation', ], 'EventType' => [ 'shape' => 'FleetEventType', 'locationName' => 'eventType', ], 'Timestamp' => [ 'shape' => 'DateTime', 'locationName' => 'timestamp', ], ], ], 'HistoryRecordSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'HistoryRecordEntry', 'locationName' => 'item', ], ], 'HistoryRecords' => [ 'type' => 'list', 'member' => [ 'shape' => 'HistoryRecord', 'locationName' => 'item', ], ], 'Host' => [ 'type' => 'structure', 'members' => [ 'AutoPlacement' => [ 'shape' => 'AutoPlacement', 'locationName' => 'autoPlacement', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'AvailableCapacity' => [ 'shape' => 'AvailableCapacity', 'locationName' => 'availableCapacity', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'HostId' => [ 'shape' => 'String', 'locationName' => 'hostId', ], 'HostProperties' => [ 'shape' => 'HostProperties', 'locationName' => 'hostProperties', ], 'HostReservationId' => [ 'shape' => 'String', 'locationName' => 'hostReservationId', ], 'Instances' => [ 'shape' => 'HostInstanceList', 'locationName' => 'instances', ], 'State' => [ 'shape' => 'AllocationState', 'locationName' => 'state', ], 'AllocationTime' => [ 'shape' => 'DateTime', 'locationName' => 'allocationTime', ], 'ReleaseTime' => [ 'shape' => 'DateTime', 'locationName' => 'releaseTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'HostRecovery' => [ 'shape' => 'HostRecovery', 'locationName' => 'hostRecovery', ], 'AllowsMultipleInstanceTypes' => [ 'shape' => 'AllowsMultipleInstanceTypes', 'locationName' => 'allowsMultipleInstanceTypes', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'AvailabilityZoneId' => [ 'shape' => 'String', 'locationName' => 'availabilityZoneId', ], 'MemberOfServiceLinkedResourceGroup' => [ 'shape' => 'Boolean', 'locationName' => 'memberOfServiceLinkedResourceGroup', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'HostMaintenance' => [ 'shape' => 'HostMaintenance', 'locationName' => 'hostMaintenance', ], 'AssetId' => [ 'shape' => 'AssetId', 'locationName' => 'assetId', ], ], ], 'HostInstance' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], ], ], 'HostInstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'HostInstance', 'locationName' => 'item', ], ], 'HostList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Host', 'locationName' => 'item', ], ], 'HostMaintenance' => [ 'type' => 'string', 'enum' => [ 'on', 'off', ], ], 'HostOffering' => [ 'type' => 'structure', 'members' => [ 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Duration' => [ 'shape' => 'Integer', 'locationName' => 'duration', ], 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], 'InstanceFamily' => [ 'shape' => 'String', 'locationName' => 'instanceFamily', ], 'OfferingId' => [ 'shape' => 'OfferingId', 'locationName' => 'offeringId', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', 'locationName' => 'paymentOption', ], 'UpfrontPrice' => [ 'shape' => 'String', 'locationName' => 'upfrontPrice', ], ], ], 'HostOfferingSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'HostOffering', 'locationName' => 'item', ], ], 'HostProperties' => [ 'type' => 'structure', 'members' => [ 'Cores' => [ 'shape' => 'Integer', 'locationName' => 'cores', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'InstanceFamily' => [ 'shape' => 'String', 'locationName' => 'instanceFamily', ], 'Sockets' => [ 'shape' => 'Integer', 'locationName' => 'sockets', ], 'TotalVCpus' => [ 'shape' => 'Integer', 'locationName' => 'totalVCpus', ], ], ], 'HostRecovery' => [ 'type' => 'string', 'enum' => [ 'on', 'off', ], ], 'HostReservation' => [ 'type' => 'structure', 'members' => [ 'Count' => [ 'shape' => 'Integer', 'locationName' => 'count', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Duration' => [ 'shape' => 'Integer', 'locationName' => 'duration', ], 'End' => [ 'shape' => 'DateTime', 'locationName' => 'end', ], 'HostIdSet' => [ 'shape' => 'ResponseHostIdSet', 'locationName' => 'hostIdSet', ], 'HostReservationId' => [ 'shape' => 'HostReservationId', 'locationName' => 'hostReservationId', ], 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], 'InstanceFamily' => [ 'shape' => 'String', 'locationName' => 'instanceFamily', ], 'OfferingId' => [ 'shape' => 'OfferingId', 'locationName' => 'offeringId', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', 'locationName' => 'paymentOption', ], 'Start' => [ 'shape' => 'DateTime', 'locationName' => 'start', ], 'State' => [ 'shape' => 'ReservationState', 'locationName' => 'state', ], 'UpfrontPrice' => [ 'shape' => 'String', 'locationName' => 'upfrontPrice', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'HostReservationId' => [ 'type' => 'string', ], 'HostReservationIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'HostReservationId', 'locationName' => 'item', ], ], 'HostReservationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'HostReservation', 'locationName' => 'item', ], ], 'HostTenancy' => [ 'type' => 'string', 'enum' => [ 'dedicated', 'host', ], ], 'HostnameType' => [ 'type' => 'string', 'enum' => [ 'ip-name', 'resource-name', ], ], 'Hour' => [ 'type' => 'integer', 'max' => 23, 'min' => 0, ], 'HttpTokensState' => [ 'type' => 'string', 'enum' => [ 'optional', 'required', ], ], 'HypervisorType' => [ 'type' => 'string', 'enum' => [ 'ovm', 'xen', ], ], 'IKEVersionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IKEVersionsListValue', 'locationName' => 'item', ], ], 'IKEVersionsListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'IKEVersionsRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IKEVersionsRequestListValue', 'locationName' => 'item', ], ], 'IKEVersionsRequestListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', ], ], ], 'IamInstanceProfile' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', 'locationName' => 'arn', ], 'Id' => [ 'shape' => 'String', 'locationName' => 'id', ], ], ], 'IamInstanceProfileAssociation' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfile', 'locationName' => 'iamInstanceProfile', ], 'State' => [ 'shape' => 'IamInstanceProfileAssociationState', 'locationName' => 'state', ], 'Timestamp' => [ 'shape' => 'DateTime', 'locationName' => 'timestamp', ], ], ], 'IamInstanceProfileAssociationId' => [ 'type' => 'string', ], 'IamInstanceProfileAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IamInstanceProfileAssociation', 'locationName' => 'item', ], ], 'IamInstanceProfileAssociationState' => [ 'type' => 'string', 'enum' => [ 'associating', 'associated', 'disassociating', 'disassociated', ], ], 'IamInstanceProfileSpecification' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', 'locationName' => 'arn', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], ], ], 'IcmpTypeCode' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'Integer', 'locationName' => 'code', ], 'Type' => [ 'shape' => 'Integer', 'locationName' => 'type', ], ], ], 'IdFormat' => [ 'type' => 'structure', 'members' => [ 'Deadline' => [ 'shape' => 'DateTime', 'locationName' => 'deadline', ], 'Resource' => [ 'shape' => 'String', 'locationName' => 'resource', ], 'UseLongIds' => [ 'shape' => 'Boolean', 'locationName' => 'useLongIds', ], ], ], 'IdFormatList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IdFormat', 'locationName' => 'item', ], ], 'Igmpv2SupportValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'Image' => [ 'type' => 'structure', 'members' => [ 'Architecture' => [ 'shape' => 'ArchitectureValues', 'locationName' => 'architecture', ], 'CreationDate' => [ 'shape' => 'String', 'locationName' => 'creationDate', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'ImageLocation' => [ 'shape' => 'String', 'locationName' => 'imageLocation', ], 'ImageType' => [ 'shape' => 'ImageTypeValues', 'locationName' => 'imageType', ], 'Public' => [ 'shape' => 'Boolean', 'locationName' => 'isPublic', ], 'KernelId' => [ 'shape' => 'String', 'locationName' => 'kernelId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'imageOwnerId', ], 'Platform' => [ 'shape' => 'PlatformValues', 'locationName' => 'platform', ], 'PlatformDetails' => [ 'shape' => 'String', 'locationName' => 'platformDetails', ], 'UsageOperation' => [ 'shape' => 'String', 'locationName' => 'usageOperation', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'RamdiskId' => [ 'shape' => 'String', 'locationName' => 'ramdiskId', ], 'State' => [ 'shape' => 'ImageState', 'locationName' => 'imageState', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'EnaSupport' => [ 'shape' => 'Boolean', 'locationName' => 'enaSupport', ], 'Hypervisor' => [ 'shape' => 'HypervisorType', 'locationName' => 'hypervisor', ], 'ImageOwnerAlias' => [ 'shape' => 'String', 'locationName' => 'imageOwnerAlias', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], 'RootDeviceName' => [ 'shape' => 'String', 'locationName' => 'rootDeviceName', ], 'RootDeviceType' => [ 'shape' => 'DeviceType', 'locationName' => 'rootDeviceType', ], 'SriovNetSupport' => [ 'shape' => 'String', 'locationName' => 'sriovNetSupport', ], 'StateReason' => [ 'shape' => 'StateReason', 'locationName' => 'stateReason', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VirtualizationType' => [ 'shape' => 'VirtualizationType', 'locationName' => 'virtualizationType', ], 'BootMode' => [ 'shape' => 'BootModeValues', 'locationName' => 'bootMode', ], 'TpmSupport' => [ 'shape' => 'TpmSupportValues', 'locationName' => 'tpmSupport', ], 'DeprecationTime' => [ 'shape' => 'String', 'locationName' => 'deprecationTime', ], 'ImdsSupport' => [ 'shape' => 'ImdsSupportValues', 'locationName' => 'imdsSupport', ], 'SourceInstanceId' => [ 'shape' => 'String', 'locationName' => 'sourceInstanceId', ], ], ], 'ImageAttribute' => [ 'type' => 'structure', 'members' => [ 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'LaunchPermissions' => [ 'shape' => 'LaunchPermissionList', 'locationName' => 'launchPermission', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'Description' => [ 'shape' => 'AttributeValue', 'locationName' => 'description', ], 'KernelId' => [ 'shape' => 'AttributeValue', 'locationName' => 'kernel', ], 'RamdiskId' => [ 'shape' => 'AttributeValue', 'locationName' => 'ramdisk', ], 'SriovNetSupport' => [ 'shape' => 'AttributeValue', 'locationName' => 'sriovNetSupport', ], 'BootMode' => [ 'shape' => 'AttributeValue', 'locationName' => 'bootMode', ], 'TpmSupport' => [ 'shape' => 'AttributeValue', 'locationName' => 'tpmSupport', ], 'UefiData' => [ 'shape' => 'AttributeValue', 'locationName' => 'uefiData', ], 'LastLaunchedTime' => [ 'shape' => 'AttributeValue', 'locationName' => 'lastLaunchedTime', ], 'ImdsSupport' => [ 'shape' => 'AttributeValue', 'locationName' => 'imdsSupport', ], ], ], 'ImageAttributeName' => [ 'type' => 'string', 'enum' => [ 'description', 'kernel', 'ramdisk', 'launchPermission', 'productCodes', 'blockDeviceMapping', 'sriovNetSupport', 'bootMode', 'tpmSupport', 'uefiData', 'lastLaunchedTime', 'imdsSupport', ], ], 'ImageBlockPublicAccessDisabledState' => [ 'type' => 'string', 'enum' => [ 'unblocked', ], ], 'ImageBlockPublicAccessEnabledState' => [ 'type' => 'string', 'enum' => [ 'block-new-sharing', ], ], 'ImageDiskContainer' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', ], 'DeviceName' => [ 'shape' => 'String', ], 'Format' => [ 'shape' => 'String', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'Url' => [ 'shape' => 'SensitiveUrl', ], 'UserBucket' => [ 'shape' => 'UserBucket', ], ], ], 'ImageDiskContainerList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImageDiskContainer', 'locationName' => 'item', ], ], 'ImageId' => [ 'type' => 'string', ], 'ImageIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImageId', 'locationName' => 'item', ], ], 'ImageIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImageId', 'locationName' => 'ImageId', ], ], 'ImageList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Image', 'locationName' => 'item', ], ], 'ImageRecycleBinInfo' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'RecycleBinEnterTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'recycleBinEnterTime', ], 'RecycleBinExitTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'recycleBinExitTime', ], ], ], 'ImageRecycleBinInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImageRecycleBinInfo', 'locationName' => 'item', ], ], 'ImageState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'invalid', 'deregistered', 'transient', 'failed', 'error', 'disabled', ], ], 'ImageTypeValues' => [ 'type' => 'string', 'enum' => [ 'machine', 'kernel', 'ramdisk', ], ], 'ImdsSupportValues' => [ 'type' => 'string', 'enum' => [ 'v2.0', ], ], 'ImportClientVpnClientCertificateRevocationListRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', 'CertificateRevocationList', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'CertificateRevocationList' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ImportClientVpnClientCertificateRevocationListResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ImportImageLicenseConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'LicenseConfigurationArn' => [ 'shape' => 'String', ], ], ], 'ImportImageLicenseConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'LicenseConfigurationArn' => [ 'shape' => 'String', 'locationName' => 'licenseConfigurationArn', ], ], ], 'ImportImageLicenseSpecificationListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImportImageLicenseConfigurationRequest', 'locationName' => 'item', ], ], 'ImportImageLicenseSpecificationListResponse' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImportImageLicenseConfigurationResponse', 'locationName' => 'item', ], ], 'ImportImageRequest' => [ 'type' => 'structure', 'members' => [ 'Architecture' => [ 'shape' => 'String', ], 'ClientData' => [ 'shape' => 'ClientData', ], 'ClientToken' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'DiskContainers' => [ 'shape' => 'ImageDiskContainerList', 'locationName' => 'DiskContainer', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Encrypted' => [ 'shape' => 'Boolean', ], 'Hypervisor' => [ 'shape' => 'String', ], 'KmsKeyId' => [ 'shape' => 'KmsKeyId', ], 'LicenseType' => [ 'shape' => 'String', ], 'Platform' => [ 'shape' => 'String', ], 'RoleName' => [ 'shape' => 'String', ], 'LicenseSpecifications' => [ 'shape' => 'ImportImageLicenseSpecificationListRequest', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'UsageOperation' => [ 'shape' => 'String', ], 'BootMode' => [ 'shape' => 'BootModeValues', ], ], ], 'ImportImageResult' => [ 'type' => 'structure', 'members' => [ 'Architecture' => [ 'shape' => 'String', 'locationName' => 'architecture', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'Hypervisor' => [ 'shape' => 'String', 'locationName' => 'hypervisor', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'ImportTaskId' => [ 'shape' => 'ImportImageTaskId', 'locationName' => 'importTaskId', ], 'KmsKeyId' => [ 'shape' => 'KmsKeyId', 'locationName' => 'kmsKeyId', ], 'LicenseType' => [ 'shape' => 'String', 'locationName' => 'licenseType', ], 'Platform' => [ 'shape' => 'String', 'locationName' => 'platform', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'SnapshotDetails' => [ 'shape' => 'SnapshotDetailList', 'locationName' => 'snapshotDetailSet', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'LicenseSpecifications' => [ 'shape' => 'ImportImageLicenseSpecificationListResponse', 'locationName' => 'licenseSpecifications', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'UsageOperation' => [ 'shape' => 'String', 'locationName' => 'usageOperation', ], ], ], 'ImportImageTask' => [ 'type' => 'structure', 'members' => [ 'Architecture' => [ 'shape' => 'String', 'locationName' => 'architecture', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'Hypervisor' => [ 'shape' => 'String', 'locationName' => 'hypervisor', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'ImportTaskId' => [ 'shape' => 'String', 'locationName' => 'importTaskId', ], 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], 'LicenseType' => [ 'shape' => 'String', 'locationName' => 'licenseType', ], 'Platform' => [ 'shape' => 'String', 'locationName' => 'platform', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'SnapshotDetails' => [ 'shape' => 'SnapshotDetailList', 'locationName' => 'snapshotDetailSet', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'LicenseSpecifications' => [ 'shape' => 'ImportImageLicenseSpecificationListResponse', 'locationName' => 'licenseSpecifications', ], 'UsageOperation' => [ 'shape' => 'String', 'locationName' => 'usageOperation', ], 'BootMode' => [ 'shape' => 'BootModeValues', 'locationName' => 'bootMode', ], ], ], 'ImportImageTaskId' => [ 'type' => 'string', ], 'ImportImageTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImportImageTask', 'locationName' => 'item', ], ], 'ImportInstanceLaunchSpecification' => [ 'type' => 'structure', 'members' => [ 'AdditionalInfo' => [ 'shape' => 'String', 'locationName' => 'additionalInfo', ], 'Architecture' => [ 'shape' => 'ArchitectureValues', 'locationName' => 'architecture', ], 'GroupIds' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'GroupId', ], 'GroupNames' => [ 'shape' => 'SecurityGroupStringList', 'locationName' => 'GroupName', ], 'InstanceInitiatedShutdownBehavior' => [ 'shape' => 'ShutdownBehavior', 'locationName' => 'instanceInitiatedShutdownBehavior', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'Monitoring' => [ 'shape' => 'Boolean', 'locationName' => 'monitoring', ], 'Placement' => [ 'shape' => 'Placement', 'locationName' => 'placement', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'UserData' => [ 'shape' => 'UserData', 'locationName' => 'userData', ], ], ], 'ImportInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'Platform', ], 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DiskImages' => [ 'shape' => 'DiskImageList', 'locationName' => 'diskImage', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'LaunchSpecification' => [ 'shape' => 'ImportInstanceLaunchSpecification', 'locationName' => 'launchSpecification', ], 'Platform' => [ 'shape' => 'PlatformValues', 'locationName' => 'platform', ], ], ], 'ImportInstanceResult' => [ 'type' => 'structure', 'members' => [ 'ConversionTask' => [ 'shape' => 'ConversionTask', 'locationName' => 'conversionTask', ], ], ], 'ImportInstanceTaskDetails' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Platform' => [ 'shape' => 'PlatformValues', 'locationName' => 'platform', ], 'Volumes' => [ 'shape' => 'ImportInstanceVolumeDetailSet', 'locationName' => 'volumes', ], ], ], 'ImportInstanceVolumeDetailItem' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'BytesConverted' => [ 'shape' => 'Long', 'locationName' => 'bytesConverted', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Image' => [ 'shape' => 'DiskImageDescription', 'locationName' => 'image', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Volume' => [ 'shape' => 'DiskImageVolumeDescription', 'locationName' => 'volume', ], ], ], 'ImportInstanceVolumeDetailSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImportInstanceVolumeDetailItem', 'locationName' => 'item', ], ], 'ImportKeyPairRequest' => [ 'type' => 'structure', 'required' => [ 'KeyName', 'PublicKeyMaterial', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'PublicKeyMaterial' => [ 'shape' => 'Blob', 'locationName' => 'publicKeyMaterial', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'ImportKeyPairResult' => [ 'type' => 'structure', 'members' => [ 'KeyFingerprint' => [ 'shape' => 'String', 'locationName' => 'keyFingerprint', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'KeyPairId' => [ 'shape' => 'String', 'locationName' => 'keyPairId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ImportManifestUrl' => [ 'type' => 'string', 'sensitive' => true, ], 'ImportSnapshotRequest' => [ 'type' => 'structure', 'members' => [ 'ClientData' => [ 'shape' => 'ClientData', ], 'ClientToken' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'DiskContainer' => [ 'shape' => 'SnapshotDiskContainer', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Encrypted' => [ 'shape' => 'Boolean', ], 'KmsKeyId' => [ 'shape' => 'KmsKeyId', ], 'RoleName' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'ImportSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'ImportTaskId' => [ 'shape' => 'String', 'locationName' => 'importTaskId', ], 'SnapshotTaskDetail' => [ 'shape' => 'SnapshotTaskDetail', 'locationName' => 'snapshotTaskDetail', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ImportSnapshotTask' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'ImportTaskId' => [ 'shape' => 'String', 'locationName' => 'importTaskId', ], 'SnapshotTaskDetail' => [ 'shape' => 'SnapshotTaskDetail', 'locationName' => 'snapshotTaskDetail', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ImportSnapshotTaskId' => [ 'type' => 'string', ], 'ImportSnapshotTaskIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImportSnapshotTaskId', 'locationName' => 'ImportTaskId', ], ], 'ImportSnapshotTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImportSnapshotTask', 'locationName' => 'item', ], ], 'ImportTaskId' => [ 'type' => 'string', ], 'ImportTaskIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImportImageTaskId', 'locationName' => 'ImportTaskId', ], ], 'ImportVolumeRequest' => [ 'type' => 'structure', 'required' => [ 'AvailabilityZone', 'Image', 'Volume', ], 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Image' => [ 'shape' => 'DiskImageDetail', 'locationName' => 'image', ], 'Volume' => [ 'shape' => 'VolumeDetail', 'locationName' => 'volume', ], ], ], 'ImportVolumeResult' => [ 'type' => 'structure', 'members' => [ 'ConversionTask' => [ 'shape' => 'ConversionTask', 'locationName' => 'conversionTask', ], ], ], 'ImportVolumeTaskDetails' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'BytesConverted' => [ 'shape' => 'Long', 'locationName' => 'bytesConverted', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Image' => [ 'shape' => 'DiskImageDescription', 'locationName' => 'image', ], 'Volume' => [ 'shape' => 'DiskImageVolumeDescription', 'locationName' => 'volume', ], ], ], 'InferenceAcceleratorInfo' => [ 'type' => 'structure', 'members' => [ 'Accelerators' => [ 'shape' => 'InferenceDeviceInfoList', 'locationName' => 'accelerators', ], 'TotalInferenceMemoryInMiB' => [ 'shape' => 'totalInferenceMemory', 'locationName' => 'totalInferenceMemoryInMiB', ], ], ], 'InferenceDeviceCount' => [ 'type' => 'integer', ], 'InferenceDeviceInfo' => [ 'type' => 'structure', 'members' => [ 'Count' => [ 'shape' => 'InferenceDeviceCount', 'locationName' => 'count', ], 'Name' => [ 'shape' => 'InferenceDeviceName', 'locationName' => 'name', ], 'Manufacturer' => [ 'shape' => 'InferenceDeviceManufacturerName', 'locationName' => 'manufacturer', ], 'MemoryInfo' => [ 'shape' => 'InferenceDeviceMemoryInfo', 'locationName' => 'memoryInfo', ], ], ], 'InferenceDeviceInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InferenceDeviceInfo', ], 'locationName' => 'item', ], 'InferenceDeviceManufacturerName' => [ 'type' => 'string', ], 'InferenceDeviceMemoryInfo' => [ 'type' => 'structure', 'members' => [ 'SizeInMiB' => [ 'shape' => 'InferenceDeviceMemorySize', 'locationName' => 'sizeInMiB', ], ], ], 'InferenceDeviceMemorySize' => [ 'type' => 'integer', ], 'InferenceDeviceName' => [ 'type' => 'string', ], 'InsideCidrBlocksStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'Instance' => [ 'type' => 'structure', 'members' => [ 'AmiLaunchIndex' => [ 'shape' => 'Integer', 'locationName' => 'amiLaunchIndex', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'KernelId' => [ 'shape' => 'String', 'locationName' => 'kernelId', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'LaunchTime' => [ 'shape' => 'DateTime', 'locationName' => 'launchTime', ], 'Monitoring' => [ 'shape' => 'Monitoring', 'locationName' => 'monitoring', ], 'Placement' => [ 'shape' => 'Placement', 'locationName' => 'placement', ], 'Platform' => [ 'shape' => 'PlatformValues', 'locationName' => 'platform', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'PublicDnsName' => [ 'shape' => 'String', 'locationName' => 'dnsName', ], 'PublicIpAddress' => [ 'shape' => 'String', 'locationName' => 'ipAddress', ], 'RamdiskId' => [ 'shape' => 'String', 'locationName' => 'ramdiskId', ], 'State' => [ 'shape' => 'InstanceState', 'locationName' => 'instanceState', ], 'StateTransitionReason' => [ 'shape' => 'String', 'locationName' => 'reason', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'Architecture' => [ 'shape' => 'ArchitectureValues', 'locationName' => 'architecture', ], 'BlockDeviceMappings' => [ 'shape' => 'InstanceBlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'EnaSupport' => [ 'shape' => 'Boolean', 'locationName' => 'enaSupport', ], 'Hypervisor' => [ 'shape' => 'HypervisorType', 'locationName' => 'hypervisor', ], 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfile', 'locationName' => 'iamInstanceProfile', ], 'InstanceLifecycle' => [ 'shape' => 'InstanceLifecycleType', 'locationName' => 'instanceLifecycle', ], 'ElasticGpuAssociations' => [ 'shape' => 'ElasticGpuAssociationList', 'locationName' => 'elasticGpuAssociationSet', ], 'ElasticInferenceAcceleratorAssociations' => [ 'shape' => 'ElasticInferenceAcceleratorAssociationList', 'locationName' => 'elasticInferenceAcceleratorAssociationSet', ], 'NetworkInterfaces' => [ 'shape' => 'InstanceNetworkInterfaceList', 'locationName' => 'networkInterfaceSet', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'RootDeviceName' => [ 'shape' => 'String', 'locationName' => 'rootDeviceName', ], 'RootDeviceType' => [ 'shape' => 'DeviceType', 'locationName' => 'rootDeviceType', ], 'SecurityGroups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'SourceDestCheck' => [ 'shape' => 'Boolean', 'locationName' => 'sourceDestCheck', ], 'SpotInstanceRequestId' => [ 'shape' => 'String', 'locationName' => 'spotInstanceRequestId', ], 'SriovNetSupport' => [ 'shape' => 'String', 'locationName' => 'sriovNetSupport', ], 'StateReason' => [ 'shape' => 'StateReason', 'locationName' => 'stateReason', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VirtualizationType' => [ 'shape' => 'VirtualizationType', 'locationName' => 'virtualizationType', ], 'CpuOptions' => [ 'shape' => 'CpuOptions', 'locationName' => 'cpuOptions', ], 'CapacityReservationId' => [ 'shape' => 'String', 'locationName' => 'capacityReservationId', ], 'CapacityReservationSpecification' => [ 'shape' => 'CapacityReservationSpecificationResponse', 'locationName' => 'capacityReservationSpecification', ], 'HibernationOptions' => [ 'shape' => 'HibernationOptions', 'locationName' => 'hibernationOptions', ], 'Licenses' => [ 'shape' => 'LicenseList', 'locationName' => 'licenseSet', ], 'MetadataOptions' => [ 'shape' => 'InstanceMetadataOptionsResponse', 'locationName' => 'metadataOptions', ], 'EnclaveOptions' => [ 'shape' => 'EnclaveOptions', 'locationName' => 'enclaveOptions', ], 'BootMode' => [ 'shape' => 'BootModeValues', 'locationName' => 'bootMode', ], 'PlatformDetails' => [ 'shape' => 'String', 'locationName' => 'platformDetails', ], 'UsageOperation' => [ 'shape' => 'String', 'locationName' => 'usageOperation', ], 'UsageOperationUpdateTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'usageOperationUpdateTime', ], 'PrivateDnsNameOptions' => [ 'shape' => 'PrivateDnsNameOptionsResponse', 'locationName' => 'privateDnsNameOptions', ], 'Ipv6Address' => [ 'shape' => 'String', 'locationName' => 'ipv6Address', ], 'TpmSupport' => [ 'shape' => 'String', 'locationName' => 'tpmSupport', ], 'MaintenanceOptions' => [ 'shape' => 'InstanceMaintenanceOptions', 'locationName' => 'maintenanceOptions', ], 'CurrentInstanceBootMode' => [ 'shape' => 'InstanceBootModeValues', 'locationName' => 'currentInstanceBootMode', ], ], ], 'InstanceAttachmentEnaSrdSpecification' => [ 'type' => 'structure', 'members' => [ 'EnaSrdEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'enaSrdEnabled', ], 'EnaSrdUdpSpecification' => [ 'shape' => 'InstanceAttachmentEnaSrdUdpSpecification', 'locationName' => 'enaSrdUdpSpecification', ], ], ], 'InstanceAttachmentEnaSrdUdpSpecification' => [ 'type' => 'structure', 'members' => [ 'EnaSrdUdpEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'enaSrdUdpEnabled', ], ], ], 'InstanceAttribute' => [ 'type' => 'structure', 'members' => [ 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'BlockDeviceMappings' => [ 'shape' => 'InstanceBlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'DisableApiTermination' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'disableApiTermination', ], 'EnaSupport' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'enaSupport', ], 'EnclaveOptions' => [ 'shape' => 'EnclaveOptions', 'locationName' => 'enclaveOptions', ], 'EbsOptimized' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'ebsOptimized', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceInitiatedShutdownBehavior' => [ 'shape' => 'AttributeValue', 'locationName' => 'instanceInitiatedShutdownBehavior', ], 'InstanceType' => [ 'shape' => 'AttributeValue', 'locationName' => 'instanceType', ], 'KernelId' => [ 'shape' => 'AttributeValue', 'locationName' => 'kernel', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'RamdiskId' => [ 'shape' => 'AttributeValue', 'locationName' => 'ramdisk', ], 'RootDeviceName' => [ 'shape' => 'AttributeValue', 'locationName' => 'rootDeviceName', ], 'SourceDestCheck' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'sourceDestCheck', ], 'SriovNetSupport' => [ 'shape' => 'AttributeValue', 'locationName' => 'sriovNetSupport', ], 'UserData' => [ 'shape' => 'AttributeValue', 'locationName' => 'userData', ], 'DisableApiStop' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'disableApiStop', ], ], ], 'InstanceAttributeName' => [ 'type' => 'string', 'enum' => [ 'instanceType', 'kernel', 'ramdisk', 'userData', 'disableApiTermination', 'instanceInitiatedShutdownBehavior', 'rootDeviceName', 'blockDeviceMapping', 'productCodes', 'sourceDestCheck', 'groupSet', 'ebsOptimized', 'sriovNetSupport', 'enaSupport', 'enclaveOptions', 'disableApiStop', ], ], 'InstanceAutoRecoveryState' => [ 'type' => 'string', 'enum' => [ 'disabled', 'default', ], ], 'InstanceBlockDeviceMapping' => [ 'type' => 'structure', 'members' => [ 'DeviceName' => [ 'shape' => 'String', 'locationName' => 'deviceName', ], 'Ebs' => [ 'shape' => 'EbsInstanceBlockDevice', 'locationName' => 'ebs', ], ], ], 'InstanceBlockDeviceMappingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceBlockDeviceMapping', 'locationName' => 'item', ], ], 'InstanceBlockDeviceMappingSpecification' => [ 'type' => 'structure', 'members' => [ 'DeviceName' => [ 'shape' => 'String', 'locationName' => 'deviceName', ], 'Ebs' => [ 'shape' => 'EbsInstanceBlockDeviceSpecification', 'locationName' => 'ebs', ], 'NoDevice' => [ 'shape' => 'String', 'locationName' => 'noDevice', ], 'VirtualName' => [ 'shape' => 'String', 'locationName' => 'virtualName', ], ], ], 'InstanceBlockDeviceMappingSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceBlockDeviceMappingSpecification', 'locationName' => 'item', ], ], 'InstanceBootModeValues' => [ 'type' => 'string', 'enum' => [ 'legacy-bios', 'uefi', ], ], 'InstanceCapacity' => [ 'type' => 'structure', 'members' => [ 'AvailableCapacity' => [ 'shape' => 'Integer', 'locationName' => 'availableCapacity', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'TotalCapacity' => [ 'shape' => 'Integer', 'locationName' => 'totalCapacity', ], ], ], 'InstanceConnectEndpointId' => [ 'type' => 'string', ], 'InstanceConnectEndpointMaxResults' => [ 'type' => 'integer', 'max' => 50, 'min' => 1, ], 'InstanceConnectEndpointSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ec2InstanceConnectEndpoint', 'locationName' => 'item', ], ], 'InstanceCount' => [ 'type' => 'structure', 'members' => [ 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'State' => [ 'shape' => 'ListingState', 'locationName' => 'state', ], ], ], 'InstanceCountList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceCount', 'locationName' => 'item', ], ], 'InstanceCreditSpecification' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'CpuCredits' => [ 'shape' => 'String', 'locationName' => 'cpuCredits', ], ], ], 'InstanceCreditSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceCreditSpecification', 'locationName' => 'item', ], ], 'InstanceCreditSpecificationListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceCreditSpecificationRequest', 'locationName' => 'item', ], ], 'InstanceCreditSpecificationRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'CpuCredits' => [ 'shape' => 'String', ], ], ], 'InstanceEventId' => [ 'type' => 'string', ], 'InstanceEventWindow' => [ 'type' => 'structure', 'members' => [ 'InstanceEventWindowId' => [ 'shape' => 'InstanceEventWindowId', 'locationName' => 'instanceEventWindowId', ], 'TimeRanges' => [ 'shape' => 'InstanceEventWindowTimeRangeList', 'locationName' => 'timeRangeSet', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], 'CronExpression' => [ 'shape' => 'InstanceEventWindowCronExpression', 'locationName' => 'cronExpression', ], 'AssociationTarget' => [ 'shape' => 'InstanceEventWindowAssociationTarget', 'locationName' => 'associationTarget', ], 'State' => [ 'shape' => 'InstanceEventWindowState', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'InstanceEventWindowAssociationRequest' => [ 'type' => 'structure', 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdList', 'locationName' => 'InstanceId', ], 'InstanceTags' => [ 'shape' => 'TagList', 'locationName' => 'InstanceTag', ], 'DedicatedHostIds' => [ 'shape' => 'DedicatedHostIdList', 'locationName' => 'DedicatedHostId', ], ], ], 'InstanceEventWindowAssociationTarget' => [ 'type' => 'structure', 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdList', 'locationName' => 'instanceIdSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'DedicatedHostIds' => [ 'shape' => 'DedicatedHostIdList', 'locationName' => 'dedicatedHostIdSet', ], ], ], 'InstanceEventWindowCronExpression' => [ 'type' => 'string', ], 'InstanceEventWindowDisassociationRequest' => [ 'type' => 'structure', 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdList', 'locationName' => 'InstanceId', ], 'InstanceTags' => [ 'shape' => 'TagList', 'locationName' => 'InstanceTag', ], 'DedicatedHostIds' => [ 'shape' => 'DedicatedHostIdList', 'locationName' => 'DedicatedHostId', ], ], ], 'InstanceEventWindowId' => [ 'type' => 'string', ], 'InstanceEventWindowIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceEventWindowId', 'locationName' => 'InstanceEventWindowId', ], ], 'InstanceEventWindowSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceEventWindow', 'locationName' => 'item', ], ], 'InstanceEventWindowState' => [ 'type' => 'string', 'enum' => [ 'creating', 'deleting', 'active', 'deleted', ], ], 'InstanceEventWindowStateChange' => [ 'type' => 'structure', 'members' => [ 'InstanceEventWindowId' => [ 'shape' => 'InstanceEventWindowId', 'locationName' => 'instanceEventWindowId', ], 'State' => [ 'shape' => 'InstanceEventWindowState', 'locationName' => 'state', ], ], ], 'InstanceEventWindowTimeRange' => [ 'type' => 'structure', 'members' => [ 'StartWeekDay' => [ 'shape' => 'WeekDay', 'locationName' => 'startWeekDay', ], 'StartHour' => [ 'shape' => 'Hour', 'locationName' => 'startHour', ], 'EndWeekDay' => [ 'shape' => 'WeekDay', 'locationName' => 'endWeekDay', ], 'EndHour' => [ 'shape' => 'Hour', 'locationName' => 'endHour', ], ], ], 'InstanceEventWindowTimeRangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceEventWindowTimeRange', 'locationName' => 'item', ], ], 'InstanceEventWindowTimeRangeRequest' => [ 'type' => 'structure', 'members' => [ 'StartWeekDay' => [ 'shape' => 'WeekDay', ], 'StartHour' => [ 'shape' => 'Hour', ], 'EndWeekDay' => [ 'shape' => 'WeekDay', ], 'EndHour' => [ 'shape' => 'Hour', ], ], ], 'InstanceEventWindowTimeRangeRequestSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceEventWindowTimeRangeRequest', ], ], 'InstanceExportDetails' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'TargetEnvironment' => [ 'shape' => 'ExportEnvironment', 'locationName' => 'targetEnvironment', ], ], ], 'InstanceFamilyCreditSpecification' => [ 'type' => 'structure', 'members' => [ 'InstanceFamily' => [ 'shape' => 'UnlimitedSupportedInstanceFamily', 'locationName' => 'instanceFamily', ], 'CpuCredits' => [ 'shape' => 'String', 'locationName' => 'cpuCredits', ], ], ], 'InstanceGeneration' => [ 'type' => 'string', 'enum' => [ 'current', 'previous', ], ], 'InstanceGenerationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceGeneration', 'locationName' => 'item', ], ], 'InstanceHealthStatus' => [ 'type' => 'string', 'enum' => [ 'healthy', 'unhealthy', ], ], 'InstanceId' => [ 'type' => 'string', ], 'InstanceIdForResolver' => [ 'type' => 'string', ], 'InstanceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceId', 'locationName' => 'item', ], ], 'InstanceIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceId', 'locationName' => 'item', ], ], 'InstanceIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceId', 'locationName' => 'InstanceId', ], ], 'InstanceIdWithVolumeResolver' => [ 'type' => 'string', ], 'InstanceIdsSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceId', 'locationName' => 'item', ], ], 'InstanceInterruptionBehavior' => [ 'type' => 'string', 'enum' => [ 'hibernate', 'stop', 'terminate', ], ], 'InstanceIpv4Prefix' => [ 'type' => 'structure', 'members' => [ 'Ipv4Prefix' => [ 'shape' => 'String', 'locationName' => 'ipv4Prefix', ], ], ], 'InstanceIpv4PrefixList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceIpv4Prefix', 'locationName' => 'item', ], ], 'InstanceIpv6Address' => [ 'type' => 'structure', 'members' => [ 'Ipv6Address' => [ 'shape' => 'String', 'locationName' => 'ipv6Address', ], 'IsPrimaryIpv6' => [ 'shape' => 'Boolean', 'locationName' => 'isPrimaryIpv6', ], ], ], 'InstanceIpv6AddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceIpv6Address', 'locationName' => 'item', ], ], 'InstanceIpv6AddressListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceIpv6AddressRequest', 'locationName' => 'InstanceIpv6Address', ], ], 'InstanceIpv6AddressRequest' => [ 'type' => 'structure', 'members' => [ 'Ipv6Address' => [ 'shape' => 'String', ], ], ], 'InstanceIpv6Prefix' => [ 'type' => 'structure', 'members' => [ 'Ipv6Prefix' => [ 'shape' => 'String', 'locationName' => 'ipv6Prefix', ], ], ], 'InstanceIpv6PrefixList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceIpv6Prefix', 'locationName' => 'item', ], ], 'InstanceLifecycle' => [ 'type' => 'string', 'enum' => [ 'spot', 'on-demand', ], ], 'InstanceLifecycleType' => [ 'type' => 'string', 'enum' => [ 'spot', 'scheduled', 'capacity-block', ], ], 'InstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Instance', 'locationName' => 'item', ], ], 'InstanceMaintenanceOptions' => [ 'type' => 'structure', 'members' => [ 'AutoRecovery' => [ 'shape' => 'InstanceAutoRecoveryState', 'locationName' => 'autoRecovery', ], ], ], 'InstanceMaintenanceOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'AutoRecovery' => [ 'shape' => 'InstanceAutoRecoveryState', ], ], ], 'InstanceMarketOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'MarketType' => [ 'shape' => 'MarketType', ], 'SpotOptions' => [ 'shape' => 'SpotMarketOptions', ], ], ], 'InstanceMatchCriteria' => [ 'type' => 'string', 'enum' => [ 'open', 'targeted', ], ], 'InstanceMetadataEndpointState' => [ 'type' => 'string', 'enum' => [ 'disabled', 'enabled', ], ], 'InstanceMetadataOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'HttpTokens' => [ 'shape' => 'HttpTokensState', ], 'HttpPutResponseHopLimit' => [ 'shape' => 'Integer', ], 'HttpEndpoint' => [ 'shape' => 'InstanceMetadataEndpointState', ], 'HttpProtocolIpv6' => [ 'shape' => 'InstanceMetadataProtocolState', ], 'InstanceMetadataTags' => [ 'shape' => 'InstanceMetadataTagsState', ], ], ], 'InstanceMetadataOptionsResponse' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'InstanceMetadataOptionsState', 'locationName' => 'state', ], 'HttpTokens' => [ 'shape' => 'HttpTokensState', 'locationName' => 'httpTokens', ], 'HttpPutResponseHopLimit' => [ 'shape' => 'Integer', 'locationName' => 'httpPutResponseHopLimit', ], 'HttpEndpoint' => [ 'shape' => 'InstanceMetadataEndpointState', 'locationName' => 'httpEndpoint', ], 'HttpProtocolIpv6' => [ 'shape' => 'InstanceMetadataProtocolState', 'locationName' => 'httpProtocolIpv6', ], 'InstanceMetadataTags' => [ 'shape' => 'InstanceMetadataTagsState', 'locationName' => 'instanceMetadataTags', ], ], ], 'InstanceMetadataOptionsState' => [ 'type' => 'string', 'enum' => [ 'pending', 'applied', ], ], 'InstanceMetadataProtocolState' => [ 'type' => 'string', 'enum' => [ 'disabled', 'enabled', ], ], 'InstanceMetadataTagsState' => [ 'type' => 'string', 'enum' => [ 'disabled', 'enabled', ], ], 'InstanceMonitoring' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Monitoring' => [ 'shape' => 'Monitoring', 'locationName' => 'monitoring', ], ], ], 'InstanceMonitoringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceMonitoring', 'locationName' => 'item', ], ], 'InstanceNetworkInterface' => [ 'type' => 'structure', 'members' => [ 'Association' => [ 'shape' => 'InstanceNetworkInterfaceAssociation', 'locationName' => 'association', ], 'Attachment' => [ 'shape' => 'InstanceNetworkInterfaceAttachment', 'locationName' => 'attachment', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'Ipv6Addresses' => [ 'shape' => 'InstanceIpv6AddressList', 'locationName' => 'ipv6AddressesSet', ], 'MacAddress' => [ 'shape' => 'String', 'locationName' => 'macAddress', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'PrivateIpAddresses' => [ 'shape' => 'InstancePrivateIpAddressList', 'locationName' => 'privateIpAddressesSet', ], 'SourceDestCheck' => [ 'shape' => 'Boolean', 'locationName' => 'sourceDestCheck', ], 'Status' => [ 'shape' => 'NetworkInterfaceStatus', 'locationName' => 'status', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'InterfaceType' => [ 'shape' => 'String', 'locationName' => 'interfaceType', ], 'Ipv4Prefixes' => [ 'shape' => 'InstanceIpv4PrefixList', 'locationName' => 'ipv4PrefixSet', ], 'Ipv6Prefixes' => [ 'shape' => 'InstanceIpv6PrefixList', 'locationName' => 'ipv6PrefixSet', ], 'ConnectionTrackingConfiguration' => [ 'shape' => 'ConnectionTrackingSpecificationResponse', 'locationName' => 'connectionTrackingConfiguration', ], ], ], 'InstanceNetworkInterfaceAssociation' => [ 'type' => 'structure', 'members' => [ 'CarrierIp' => [ 'shape' => 'String', 'locationName' => 'carrierIp', ], 'CustomerOwnedIp' => [ 'shape' => 'String', 'locationName' => 'customerOwnedIp', ], 'IpOwnerId' => [ 'shape' => 'String', 'locationName' => 'ipOwnerId', ], 'PublicDnsName' => [ 'shape' => 'String', 'locationName' => 'publicDnsName', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], ], ], 'InstanceNetworkInterfaceAttachment' => [ 'type' => 'structure', 'members' => [ 'AttachTime' => [ 'shape' => 'DateTime', 'locationName' => 'attachTime', ], 'AttachmentId' => [ 'shape' => 'String', 'locationName' => 'attachmentId', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'DeviceIndex' => [ 'shape' => 'Integer', 'locationName' => 'deviceIndex', ], 'Status' => [ 'shape' => 'AttachmentStatus', 'locationName' => 'status', ], 'NetworkCardIndex' => [ 'shape' => 'Integer', 'locationName' => 'networkCardIndex', ], 'EnaSrdSpecification' => [ 'shape' => 'InstanceAttachmentEnaSrdSpecification', 'locationName' => 'enaSrdSpecification', ], ], ], 'InstanceNetworkInterfaceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceNetworkInterface', 'locationName' => 'item', ], ], 'InstanceNetworkInterfaceSpecification' => [ 'type' => 'structure', 'members' => [ 'AssociatePublicIpAddress' => [ 'shape' => 'Boolean', 'locationName' => 'associatePublicIpAddress', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DeviceIndex' => [ 'shape' => 'Integer', 'locationName' => 'deviceIndex', ], 'Groups' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'Ipv6AddressCount' => [ 'shape' => 'Integer', 'locationName' => 'ipv6AddressCount', ], 'Ipv6Addresses' => [ 'shape' => 'InstanceIpv6AddressList', 'locationName' => 'ipv6AddressesSet', 'queryName' => 'Ipv6Addresses', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'PrivateIpAddresses' => [ 'shape' => 'PrivateIpAddressSpecificationList', 'locationName' => 'privateIpAddressesSet', 'queryName' => 'PrivateIpAddresses', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'secondaryPrivateIpAddressCount', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'AssociateCarrierIpAddress' => [ 'shape' => 'Boolean', ], 'InterfaceType' => [ 'shape' => 'String', ], 'NetworkCardIndex' => [ 'shape' => 'Integer', ], 'Ipv4Prefixes' => [ 'shape' => 'Ipv4PrefixList', 'locationName' => 'Ipv4Prefix', ], 'Ipv4PrefixCount' => [ 'shape' => 'Integer', ], 'Ipv6Prefixes' => [ 'shape' => 'Ipv6PrefixList', 'locationName' => 'Ipv6Prefix', ], 'Ipv6PrefixCount' => [ 'shape' => 'Integer', ], 'PrimaryIpv6' => [ 'shape' => 'Boolean', ], 'EnaSrdSpecification' => [ 'shape' => 'EnaSrdSpecificationRequest', ], 'ConnectionTrackingSpecification' => [ 'shape' => 'ConnectionTrackingSpecificationRequest', ], ], ], 'InstanceNetworkInterfaceSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceNetworkInterfaceSpecification', 'locationName' => 'item', ], ], 'InstancePrivateIpAddress' => [ 'type' => 'structure', 'members' => [ 'Association' => [ 'shape' => 'InstanceNetworkInterfaceAssociation', 'locationName' => 'association', ], 'Primary' => [ 'shape' => 'Boolean', 'locationName' => 'primary', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], ], ], 'InstancePrivateIpAddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstancePrivateIpAddress', 'locationName' => 'item', ], ], 'InstanceRequirements' => [ 'type' => 'structure', 'members' => [ 'VCpuCount' => [ 'shape' => 'VCpuCountRange', 'locationName' => 'vCpuCount', ], 'MemoryMiB' => [ 'shape' => 'MemoryMiB', 'locationName' => 'memoryMiB', ], 'CpuManufacturers' => [ 'shape' => 'CpuManufacturerSet', 'locationName' => 'cpuManufacturerSet', ], 'MemoryGiBPerVCpu' => [ 'shape' => 'MemoryGiBPerVCpu', 'locationName' => 'memoryGiBPerVCpu', ], 'ExcludedInstanceTypes' => [ 'shape' => 'ExcludedInstanceTypeSet', 'locationName' => 'excludedInstanceTypeSet', ], 'InstanceGenerations' => [ 'shape' => 'InstanceGenerationSet', 'locationName' => 'instanceGenerationSet', ], 'SpotMaxPricePercentageOverLowestPrice' => [ 'shape' => 'Integer', 'locationName' => 'spotMaxPricePercentageOverLowestPrice', ], 'OnDemandMaxPricePercentageOverLowestPrice' => [ 'shape' => 'Integer', 'locationName' => 'onDemandMaxPricePercentageOverLowestPrice', ], 'BareMetal' => [ 'shape' => 'BareMetal', 'locationName' => 'bareMetal', ], 'BurstablePerformance' => [ 'shape' => 'BurstablePerformance', 'locationName' => 'burstablePerformance', ], 'RequireHibernateSupport' => [ 'shape' => 'Boolean', 'locationName' => 'requireHibernateSupport', ], 'NetworkInterfaceCount' => [ 'shape' => 'NetworkInterfaceCount', 'locationName' => 'networkInterfaceCount', ], 'LocalStorage' => [ 'shape' => 'LocalStorage', 'locationName' => 'localStorage', ], 'LocalStorageTypes' => [ 'shape' => 'LocalStorageTypeSet', 'locationName' => 'localStorageTypeSet', ], 'TotalLocalStorageGB' => [ 'shape' => 'TotalLocalStorageGB', 'locationName' => 'totalLocalStorageGB', ], 'BaselineEbsBandwidthMbps' => [ 'shape' => 'BaselineEbsBandwidthMbps', 'locationName' => 'baselineEbsBandwidthMbps', ], 'AcceleratorTypes' => [ 'shape' => 'AcceleratorTypeSet', 'locationName' => 'acceleratorTypeSet', ], 'AcceleratorCount' => [ 'shape' => 'AcceleratorCount', 'locationName' => 'acceleratorCount', ], 'AcceleratorManufacturers' => [ 'shape' => 'AcceleratorManufacturerSet', 'locationName' => 'acceleratorManufacturerSet', ], 'AcceleratorNames' => [ 'shape' => 'AcceleratorNameSet', 'locationName' => 'acceleratorNameSet', ], 'AcceleratorTotalMemoryMiB' => [ 'shape' => 'AcceleratorTotalMemoryMiB', 'locationName' => 'acceleratorTotalMemoryMiB', ], 'NetworkBandwidthGbps' => [ 'shape' => 'NetworkBandwidthGbps', 'locationName' => 'networkBandwidthGbps', ], 'AllowedInstanceTypes' => [ 'shape' => 'AllowedInstanceTypeSet', 'locationName' => 'allowedInstanceTypeSet', ], 'MaxSpotPriceAsPercentageOfOptimalOnDemandPrice' => [ 'shape' => 'Integer', 'locationName' => 'maxSpotPriceAsPercentageOfOptimalOnDemandPrice', ], ], ], 'InstanceRequirementsRequest' => [ 'type' => 'structure', 'required' => [ 'VCpuCount', 'MemoryMiB', ], 'members' => [ 'VCpuCount' => [ 'shape' => 'VCpuCountRangeRequest', ], 'MemoryMiB' => [ 'shape' => 'MemoryMiBRequest', ], 'CpuManufacturers' => [ 'shape' => 'CpuManufacturerSet', 'locationName' => 'CpuManufacturer', ], 'MemoryGiBPerVCpu' => [ 'shape' => 'MemoryGiBPerVCpuRequest', ], 'ExcludedInstanceTypes' => [ 'shape' => 'ExcludedInstanceTypeSet', 'locationName' => 'ExcludedInstanceType', ], 'InstanceGenerations' => [ 'shape' => 'InstanceGenerationSet', 'locationName' => 'InstanceGeneration', ], 'SpotMaxPricePercentageOverLowestPrice' => [ 'shape' => 'Integer', ], 'OnDemandMaxPricePercentageOverLowestPrice' => [ 'shape' => 'Integer', ], 'BareMetal' => [ 'shape' => 'BareMetal', ], 'BurstablePerformance' => [ 'shape' => 'BurstablePerformance', ], 'RequireHibernateSupport' => [ 'shape' => 'Boolean', ], 'NetworkInterfaceCount' => [ 'shape' => 'NetworkInterfaceCountRequest', ], 'LocalStorage' => [ 'shape' => 'LocalStorage', ], 'LocalStorageTypes' => [ 'shape' => 'LocalStorageTypeSet', 'locationName' => 'LocalStorageType', ], 'TotalLocalStorageGB' => [ 'shape' => 'TotalLocalStorageGBRequest', ], 'BaselineEbsBandwidthMbps' => [ 'shape' => 'BaselineEbsBandwidthMbpsRequest', ], 'AcceleratorTypes' => [ 'shape' => 'AcceleratorTypeSet', 'locationName' => 'AcceleratorType', ], 'AcceleratorCount' => [ 'shape' => 'AcceleratorCountRequest', ], 'AcceleratorManufacturers' => [ 'shape' => 'AcceleratorManufacturerSet', 'locationName' => 'AcceleratorManufacturer', ], 'AcceleratorNames' => [ 'shape' => 'AcceleratorNameSet', 'locationName' => 'AcceleratorName', ], 'AcceleratorTotalMemoryMiB' => [ 'shape' => 'AcceleratorTotalMemoryMiBRequest', ], 'NetworkBandwidthGbps' => [ 'shape' => 'NetworkBandwidthGbpsRequest', ], 'AllowedInstanceTypes' => [ 'shape' => 'AllowedInstanceTypeSet', 'locationName' => 'AllowedInstanceType', ], 'MaxSpotPriceAsPercentageOfOptimalOnDemandPrice' => [ 'shape' => 'Integer', ], ], ], 'InstanceRequirementsWithMetadataRequest' => [ 'type' => 'structure', 'members' => [ 'ArchitectureTypes' => [ 'shape' => 'ArchitectureTypeSet', 'locationName' => 'ArchitectureType', ], 'VirtualizationTypes' => [ 'shape' => 'VirtualizationTypeSet', 'locationName' => 'VirtualizationType', ], 'InstanceRequirements' => [ 'shape' => 'InstanceRequirementsRequest', ], ], ], 'InstanceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceTopology', 'locationName' => 'item', ], ], 'InstanceSpecification' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceIdWithVolumeResolver', ], 'ExcludeBootVolume' => [ 'shape' => 'Boolean', ], 'ExcludeDataVolumeIds' => [ 'shape' => 'VolumeIdStringList', 'locationName' => 'ExcludeDataVolumeId', ], ], ], 'InstanceState' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'Integer', 'locationName' => 'code', ], 'Name' => [ 'shape' => 'InstanceStateName', 'locationName' => 'name', ], ], ], 'InstanceStateChange' => [ 'type' => 'structure', 'members' => [ 'CurrentState' => [ 'shape' => 'InstanceState', 'locationName' => 'currentState', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'PreviousState' => [ 'shape' => 'InstanceState', 'locationName' => 'previousState', ], ], ], 'InstanceStateChangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceStateChange', 'locationName' => 'item', ], ], 'InstanceStateName' => [ 'type' => 'string', 'enum' => [ 'pending', 'running', 'shutting-down', 'terminated', 'stopping', 'stopped', ], ], 'InstanceStatus' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'Events' => [ 'shape' => 'InstanceStatusEventList', 'locationName' => 'eventsSet', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceState' => [ 'shape' => 'InstanceState', 'locationName' => 'instanceState', ], 'InstanceStatus' => [ 'shape' => 'InstanceStatusSummary', 'locationName' => 'instanceStatus', ], 'SystemStatus' => [ 'shape' => 'InstanceStatusSummary', 'locationName' => 'systemStatus', ], ], ], 'InstanceStatusDetails' => [ 'type' => 'structure', 'members' => [ 'ImpairedSince' => [ 'shape' => 'DateTime', 'locationName' => 'impairedSince', ], 'Name' => [ 'shape' => 'StatusName', 'locationName' => 'name', ], 'Status' => [ 'shape' => 'StatusType', 'locationName' => 'status', ], ], ], 'InstanceStatusDetailsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceStatusDetails', 'locationName' => 'item', ], ], 'InstanceStatusEvent' => [ 'type' => 'structure', 'members' => [ 'InstanceEventId' => [ 'shape' => 'InstanceEventId', 'locationName' => 'instanceEventId', ], 'Code' => [ 'shape' => 'EventCode', 'locationName' => 'code', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'NotAfter' => [ 'shape' => 'DateTime', 'locationName' => 'notAfter', ], 'NotBefore' => [ 'shape' => 'DateTime', 'locationName' => 'notBefore', ], 'NotBeforeDeadline' => [ 'shape' => 'DateTime', 'locationName' => 'notBeforeDeadline', ], ], ], 'InstanceStatusEventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceStatusEvent', 'locationName' => 'item', ], ], 'InstanceStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceStatus', 'locationName' => 'item', ], ], 'InstanceStatusSummary' => [ 'type' => 'structure', 'members' => [ 'Details' => [ 'shape' => 'InstanceStatusDetailsList', 'locationName' => 'details', ], 'Status' => [ 'shape' => 'SummaryStatus', 'locationName' => 'status', ], ], ], 'InstanceStorageEncryptionSupport' => [ 'type' => 'string', 'enum' => [ 'unsupported', 'required', ], ], 'InstanceStorageFlag' => [ 'type' => 'boolean', ], 'InstanceStorageInfo' => [ 'type' => 'structure', 'members' => [ 'TotalSizeInGB' => [ 'shape' => 'DiskSize', 'locationName' => 'totalSizeInGB', ], 'Disks' => [ 'shape' => 'DiskInfoList', 'locationName' => 'disks', ], 'NvmeSupport' => [ 'shape' => 'EphemeralNvmeSupport', 'locationName' => 'nvmeSupport', ], 'EncryptionSupport' => [ 'shape' => 'InstanceStorageEncryptionSupport', 'locationName' => 'encryptionSupport', ], ], ], 'InstanceTagKeySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'InstanceTagNotificationAttribute' => [ 'type' => 'structure', 'members' => [ 'InstanceTagKeys' => [ 'shape' => 'InstanceTagKeySet', 'locationName' => 'instanceTagKeySet', ], 'IncludeAllTagsOfInstance' => [ 'shape' => 'Boolean', 'locationName' => 'includeAllTagsOfInstance', ], ], ], 'InstanceTopology' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'NetworkNodes' => [ 'shape' => 'NetworkNodesList', 'locationName' => 'networkNodeSet', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'ZoneId' => [ 'shape' => 'String', 'locationName' => 'zoneId', ], ], ], 'InstanceType' => [ 'type' => 'string', 'enum' => [ 'a1.medium', 'a1.large', 'a1.xlarge', 'a1.2xlarge', 'a1.4xlarge', 'a1.metal', 'c1.medium', 'c1.xlarge', 'c3.large', 'c3.xlarge', 'c3.2xlarge', 'c3.4xlarge', 'c3.8xlarge', 'c4.large', 'c4.xlarge', 'c4.2xlarge', 'c4.4xlarge', 'c4.8xlarge', 'c5.large', 'c5.xlarge', 'c5.2xlarge', 'c5.4xlarge', 'c5.9xlarge', 'c5.12xlarge', 'c5.18xlarge', 'c5.24xlarge', 'c5.metal', 'c5a.large', 'c5a.xlarge', 'c5a.2xlarge', 'c5a.4xlarge', 'c5a.8xlarge', 'c5a.12xlarge', 'c5a.16xlarge', 'c5a.24xlarge', 'c5ad.large', 'c5ad.xlarge', 'c5ad.2xlarge', 'c5ad.4xlarge', 'c5ad.8xlarge', 'c5ad.12xlarge', 'c5ad.16xlarge', 'c5ad.24xlarge', 'c5d.large', 'c5d.xlarge', 'c5d.2xlarge', 'c5d.4xlarge', 'c5d.9xlarge', 'c5d.12xlarge', 'c5d.18xlarge', 'c5d.24xlarge', 'c5d.metal', 'c5n.large', 'c5n.xlarge', 'c5n.2xlarge', 'c5n.4xlarge', 'c5n.9xlarge', 'c5n.18xlarge', 'c5n.metal', 'c6g.medium', 'c6g.large', 'c6g.xlarge', 'c6g.2xlarge', 'c6g.4xlarge', 'c6g.8xlarge', 'c6g.12xlarge', 'c6g.16xlarge', 'c6g.metal', 'c6gd.medium', 'c6gd.large', 'c6gd.xlarge', 'c6gd.2xlarge', 'c6gd.4xlarge', 'c6gd.8xlarge', 'c6gd.12xlarge', 'c6gd.16xlarge', 'c6gd.metal', 'c6gn.medium', 'c6gn.large', 'c6gn.xlarge', 'c6gn.2xlarge', 'c6gn.4xlarge', 'c6gn.8xlarge', 'c6gn.12xlarge', 'c6gn.16xlarge', 'c6i.large', 'c6i.xlarge', 'c6i.2xlarge', 'c6i.4xlarge', 'c6i.8xlarge', 'c6i.12xlarge', 'c6i.16xlarge', 'c6i.24xlarge', 'c6i.32xlarge', 'c6i.metal', 'cc1.4xlarge', 'cc2.8xlarge', 'cg1.4xlarge', 'cr1.8xlarge', 'd2.xlarge', 'd2.2xlarge', 'd2.4xlarge', 'd2.8xlarge', 'd3.xlarge', 'd3.2xlarge', 'd3.4xlarge', 'd3.8xlarge', 'd3en.xlarge', 'd3en.2xlarge', 'd3en.4xlarge', 'd3en.6xlarge', 'd3en.8xlarge', 'd3en.12xlarge', 'dl1.24xlarge', 'f1.2xlarge', 'f1.4xlarge', 'f1.16xlarge', 'g2.2xlarge', 'g2.8xlarge', 'g3.4xlarge', 'g3.8xlarge', 'g3.16xlarge', 'g3s.xlarge', 'g4ad.xlarge', 'g4ad.2xlarge', 'g4ad.4xlarge', 'g4ad.8xlarge', 'g4ad.16xlarge', 'g4dn.xlarge', 'g4dn.2xlarge', 'g4dn.4xlarge', 'g4dn.8xlarge', 'g4dn.12xlarge', 'g4dn.16xlarge', 'g4dn.metal', 'g5.xlarge', 'g5.2xlarge', 'g5.4xlarge', 'g5.8xlarge', 'g5.12xlarge', 'g5.16xlarge', 'g5.24xlarge', 'g5.48xlarge', 'g5g.xlarge', 'g5g.2xlarge', 'g5g.4xlarge', 'g5g.8xlarge', 'g5g.16xlarge', 'g5g.metal', 'hi1.4xlarge', 'hpc6a.48xlarge', 'hs1.8xlarge', 'h1.2xlarge', 'h1.4xlarge', 'h1.8xlarge', 'h1.16xlarge', 'i2.xlarge', 'i2.2xlarge', 'i2.4xlarge', 'i2.8xlarge', 'i3.large', 'i3.xlarge', 'i3.2xlarge', 'i3.4xlarge', 'i3.8xlarge', 'i3.16xlarge', 'i3.metal', 'i3en.large', 'i3en.xlarge', 'i3en.2xlarge', 'i3en.3xlarge', 'i3en.6xlarge', 'i3en.12xlarge', 'i3en.24xlarge', 'i3en.metal', 'im4gn.large', 'im4gn.xlarge', 'im4gn.2xlarge', 'im4gn.4xlarge', 'im4gn.8xlarge', 'im4gn.16xlarge', 'inf1.xlarge', 'inf1.2xlarge', 'inf1.6xlarge', 'inf1.24xlarge', 'is4gen.medium', 'is4gen.large', 'is4gen.xlarge', 'is4gen.2xlarge', 'is4gen.4xlarge', 'is4gen.8xlarge', 'm1.small', 'm1.medium', 'm1.large', 'm1.xlarge', 'm2.xlarge', 'm2.2xlarge', 'm2.4xlarge', 'm3.medium', 'm3.large', 'm3.xlarge', 'm3.2xlarge', 'm4.large', 'm4.xlarge', 'm4.2xlarge', 'm4.4xlarge', 'm4.10xlarge', 'm4.16xlarge', 'm5.large', 'm5.xlarge', 'm5.2xlarge', 'm5.4xlarge', 'm5.8xlarge', 'm5.12xlarge', 'm5.16xlarge', 'm5.24xlarge', 'm5.metal', 'm5a.large', 'm5a.xlarge', 'm5a.2xlarge', 'm5a.4xlarge', 'm5a.8xlarge', 'm5a.12xlarge', 'm5a.16xlarge', 'm5a.24xlarge', 'm5ad.large', 'm5ad.xlarge', 'm5ad.2xlarge', 'm5ad.4xlarge', 'm5ad.8xlarge', 'm5ad.12xlarge', 'm5ad.16xlarge', 'm5ad.24xlarge', 'm5d.large', 'm5d.xlarge', 'm5d.2xlarge', 'm5d.4xlarge', 'm5d.8xlarge', 'm5d.12xlarge', 'm5d.16xlarge', 'm5d.24xlarge', 'm5d.metal', 'm5dn.large', 'm5dn.xlarge', 'm5dn.2xlarge', 'm5dn.4xlarge', 'm5dn.8xlarge', 'm5dn.12xlarge', 'm5dn.16xlarge', 'm5dn.24xlarge', 'm5dn.metal', 'm5n.large', 'm5n.xlarge', 'm5n.2xlarge', 'm5n.4xlarge', 'm5n.8xlarge', 'm5n.12xlarge', 'm5n.16xlarge', 'm5n.24xlarge', 'm5n.metal', 'm5zn.large', 'm5zn.xlarge', 'm5zn.2xlarge', 'm5zn.3xlarge', 'm5zn.6xlarge', 'm5zn.12xlarge', 'm5zn.metal', 'm6a.large', 'm6a.xlarge', 'm6a.2xlarge', 'm6a.4xlarge', 'm6a.8xlarge', 'm6a.12xlarge', 'm6a.16xlarge', 'm6a.24xlarge', 'm6a.32xlarge', 'm6a.48xlarge', 'm6g.metal', 'm6g.medium', 'm6g.large', 'm6g.xlarge', 'm6g.2xlarge', 'm6g.4xlarge', 'm6g.8xlarge', 'm6g.12xlarge', 'm6g.16xlarge', 'm6gd.metal', 'm6gd.medium', 'm6gd.large', 'm6gd.xlarge', 'm6gd.2xlarge', 'm6gd.4xlarge', 'm6gd.8xlarge', 'm6gd.12xlarge', 'm6gd.16xlarge', 'm6i.large', 'm6i.xlarge', 'm6i.2xlarge', 'm6i.4xlarge', 'm6i.8xlarge', 'm6i.12xlarge', 'm6i.16xlarge', 'm6i.24xlarge', 'm6i.32xlarge', 'm6i.metal', 'mac1.metal', 'p2.xlarge', 'p2.8xlarge', 'p2.16xlarge', 'p3.2xlarge', 'p3.8xlarge', 'p3.16xlarge', 'p3dn.24xlarge', 'p4d.24xlarge', 'r3.large', 'r3.xlarge', 'r3.2xlarge', 'r3.4xlarge', 'r3.8xlarge', 'r4.large', 'r4.xlarge', 'r4.2xlarge', 'r4.4xlarge', 'r4.8xlarge', 'r4.16xlarge', 'r5.large', 'r5.xlarge', 'r5.2xlarge', 'r5.4xlarge', 'r5.8xlarge', 'r5.12xlarge', 'r5.16xlarge', 'r5.24xlarge', 'r5.metal', 'r5a.large', 'r5a.xlarge', 'r5a.2xlarge', 'r5a.4xlarge', 'r5a.8xlarge', 'r5a.12xlarge', 'r5a.16xlarge', 'r5a.24xlarge', 'r5ad.large', 'r5ad.xlarge', 'r5ad.2xlarge', 'r5ad.4xlarge', 'r5ad.8xlarge', 'r5ad.12xlarge', 'r5ad.16xlarge', 'r5ad.24xlarge', 'r5b.large', 'r5b.xlarge', 'r5b.2xlarge', 'r5b.4xlarge', 'r5b.8xlarge', 'r5b.12xlarge', 'r5b.16xlarge', 'r5b.24xlarge', 'r5b.metal', 'r5d.large', 'r5d.xlarge', 'r5d.2xlarge', 'r5d.4xlarge', 'r5d.8xlarge', 'r5d.12xlarge', 'r5d.16xlarge', 'r5d.24xlarge', 'r5d.metal', 'r5dn.large', 'r5dn.xlarge', 'r5dn.2xlarge', 'r5dn.4xlarge', 'r5dn.8xlarge', 'r5dn.12xlarge', 'r5dn.16xlarge', 'r5dn.24xlarge', 'r5dn.metal', 'r5n.large', 'r5n.xlarge', 'r5n.2xlarge', 'r5n.4xlarge', 'r5n.8xlarge', 'r5n.12xlarge', 'r5n.16xlarge', 'r5n.24xlarge', 'r5n.metal', 'r6g.medium', 'r6g.large', 'r6g.xlarge', 'r6g.2xlarge', 'r6g.4xlarge', 'r6g.8xlarge', 'r6g.12xlarge', 'r6g.16xlarge', 'r6g.metal', 'r6gd.medium', 'r6gd.large', 'r6gd.xlarge', 'r6gd.2xlarge', 'r6gd.4xlarge', 'r6gd.8xlarge', 'r6gd.12xlarge', 'r6gd.16xlarge', 'r6gd.metal', 'r6i.large', 'r6i.xlarge', 'r6i.2xlarge', 'r6i.4xlarge', 'r6i.8xlarge', 'r6i.12xlarge', 'r6i.16xlarge', 'r6i.24xlarge', 'r6i.32xlarge', 'r6i.metal', 't1.micro', 't2.nano', 't2.micro', 't2.small', 't2.medium', 't2.large', 't2.xlarge', 't2.2xlarge', 't3.nano', 't3.micro', 't3.small', 't3.medium', 't3.large', 't3.xlarge', 't3.2xlarge', 't3a.nano', 't3a.micro', 't3a.small', 't3a.medium', 't3a.large', 't3a.xlarge', 't3a.2xlarge', 't4g.nano', 't4g.micro', 't4g.small', 't4g.medium', 't4g.large', 't4g.xlarge', 't4g.2xlarge', 'u-6tb1.56xlarge', 'u-6tb1.112xlarge', 'u-9tb1.112xlarge', 'u-12tb1.112xlarge', 'u-6tb1.metal', 'u-9tb1.metal', 'u-12tb1.metal', 'u-18tb1.metal', 'u-24tb1.metal', 'vt1.3xlarge', 'vt1.6xlarge', 'vt1.24xlarge', 'x1.16xlarge', 'x1.32xlarge', 'x1e.xlarge', 'x1e.2xlarge', 'x1e.4xlarge', 'x1e.8xlarge', 'x1e.16xlarge', 'x1e.32xlarge', 'x2iezn.2xlarge', 'x2iezn.4xlarge', 'x2iezn.6xlarge', 'x2iezn.8xlarge', 'x2iezn.12xlarge', 'x2iezn.metal', 'x2gd.medium', 'x2gd.large', 'x2gd.xlarge', 'x2gd.2xlarge', 'x2gd.4xlarge', 'x2gd.8xlarge', 'x2gd.12xlarge', 'x2gd.16xlarge', 'x2gd.metal', 'z1d.large', 'z1d.xlarge', 'z1d.2xlarge', 'z1d.3xlarge', 'z1d.6xlarge', 'z1d.12xlarge', 'z1d.metal', 'x2idn.16xlarge', 'x2idn.24xlarge', 'x2idn.32xlarge', 'x2iedn.xlarge', 'x2iedn.2xlarge', 'x2iedn.4xlarge', 'x2iedn.8xlarge', 'x2iedn.16xlarge', 'x2iedn.24xlarge', 'x2iedn.32xlarge', 'c6a.large', 'c6a.xlarge', 'c6a.2xlarge', 'c6a.4xlarge', 'c6a.8xlarge', 'c6a.12xlarge', 'c6a.16xlarge', 'c6a.24xlarge', 'c6a.32xlarge', 'c6a.48xlarge', 'c6a.metal', 'm6a.metal', 'i4i.large', 'i4i.xlarge', 'i4i.2xlarge', 'i4i.4xlarge', 'i4i.8xlarge', 'i4i.16xlarge', 'i4i.32xlarge', 'i4i.metal', 'x2idn.metal', 'x2iedn.metal', 'c7g.medium', 'c7g.large', 'c7g.xlarge', 'c7g.2xlarge', 'c7g.4xlarge', 'c7g.8xlarge', 'c7g.12xlarge', 'c7g.16xlarge', 'mac2.metal', 'c6id.large', 'c6id.xlarge', 'c6id.2xlarge', 'c6id.4xlarge', 'c6id.8xlarge', 'c6id.12xlarge', 'c6id.16xlarge', 'c6id.24xlarge', 'c6id.32xlarge', 'c6id.metal', 'm6id.large', 'm6id.xlarge', 'm6id.2xlarge', 'm6id.4xlarge', 'm6id.8xlarge', 'm6id.12xlarge', 'm6id.16xlarge', 'm6id.24xlarge', 'm6id.32xlarge', 'm6id.metal', 'r6id.large', 'r6id.xlarge', 'r6id.2xlarge', 'r6id.4xlarge', 'r6id.8xlarge', 'r6id.12xlarge', 'r6id.16xlarge', 'r6id.24xlarge', 'r6id.32xlarge', 'r6id.metal', 'r6a.large', 'r6a.xlarge', 'r6a.2xlarge', 'r6a.4xlarge', 'r6a.8xlarge', 'r6a.12xlarge', 'r6a.16xlarge', 'r6a.24xlarge', 'r6a.32xlarge', 'r6a.48xlarge', 'r6a.metal', 'p4de.24xlarge', 'u-3tb1.56xlarge', 'u-18tb1.112xlarge', 'u-24tb1.112xlarge', 'trn1.2xlarge', 'trn1.32xlarge', 'hpc6id.32xlarge', 'c6in.large', 'c6in.xlarge', 'c6in.2xlarge', 'c6in.4xlarge', 'c6in.8xlarge', 'c6in.12xlarge', 'c6in.16xlarge', 'c6in.24xlarge', 'c6in.32xlarge', 'm6in.large', 'm6in.xlarge', 'm6in.2xlarge', 'm6in.4xlarge', 'm6in.8xlarge', 'm6in.12xlarge', 'm6in.16xlarge', 'm6in.24xlarge', 'm6in.32xlarge', 'm6idn.large', 'm6idn.xlarge', 'm6idn.2xlarge', 'm6idn.4xlarge', 'm6idn.8xlarge', 'm6idn.12xlarge', 'm6idn.16xlarge', 'm6idn.24xlarge', 'm6idn.32xlarge', 'r6in.large', 'r6in.xlarge', 'r6in.2xlarge', 'r6in.4xlarge', 'r6in.8xlarge', 'r6in.12xlarge', 'r6in.16xlarge', 'r6in.24xlarge', 'r6in.32xlarge', 'r6idn.large', 'r6idn.xlarge', 'r6idn.2xlarge', 'r6idn.4xlarge', 'r6idn.8xlarge', 'r6idn.12xlarge', 'r6idn.16xlarge', 'r6idn.24xlarge', 'r6idn.32xlarge', 'c7g.metal', 'm7g.medium', 'm7g.large', 'm7g.xlarge', 'm7g.2xlarge', 'm7g.4xlarge', 'm7g.8xlarge', 'm7g.12xlarge', 'm7g.16xlarge', 'm7g.metal', 'r7g.medium', 'r7g.large', 'r7g.xlarge', 'r7g.2xlarge', 'r7g.4xlarge', 'r7g.8xlarge', 'r7g.12xlarge', 'r7g.16xlarge', 'r7g.metal', 'c6in.metal', 'm6in.metal', 'm6idn.metal', 'r6in.metal', 'r6idn.metal', 'inf2.xlarge', 'inf2.8xlarge', 'inf2.24xlarge', 'inf2.48xlarge', 'trn1n.32xlarge', 'i4g.large', 'i4g.xlarge', 'i4g.2xlarge', 'i4g.4xlarge', 'i4g.8xlarge', 'i4g.16xlarge', 'hpc7g.4xlarge', 'hpc7g.8xlarge', 'hpc7g.16xlarge', 'c7gn.medium', 'c7gn.large', 'c7gn.xlarge', 'c7gn.2xlarge', 'c7gn.4xlarge', 'c7gn.8xlarge', 'c7gn.12xlarge', 'c7gn.16xlarge', 'p5.48xlarge', 'm7i.large', 'm7i.xlarge', 'm7i.2xlarge', 'm7i.4xlarge', 'm7i.8xlarge', 'm7i.12xlarge', 'm7i.16xlarge', 'm7i.24xlarge', 'm7i.48xlarge', 'm7i-flex.large', 'm7i-flex.xlarge', 'm7i-flex.2xlarge', 'm7i-flex.4xlarge', 'm7i-flex.8xlarge', 'm7a.medium', 'm7a.large', 'm7a.xlarge', 'm7a.2xlarge', 'm7a.4xlarge', 'm7a.8xlarge', 'm7a.12xlarge', 'm7a.16xlarge', 'm7a.24xlarge', 'm7a.32xlarge', 'm7a.48xlarge', 'm7a.metal-48xl', 'hpc7a.12xlarge', 'hpc7a.24xlarge', 'hpc7a.48xlarge', 'hpc7a.96xlarge', 'c7gd.medium', 'c7gd.large', 'c7gd.xlarge', 'c7gd.2xlarge', 'c7gd.4xlarge', 'c7gd.8xlarge', 'c7gd.12xlarge', 'c7gd.16xlarge', 'm7gd.medium', 'm7gd.large', 'm7gd.xlarge', 'm7gd.2xlarge', 'm7gd.4xlarge', 'm7gd.8xlarge', 'm7gd.12xlarge', 'm7gd.16xlarge', 'r7gd.medium', 'r7gd.large', 'r7gd.xlarge', 'r7gd.2xlarge', 'r7gd.4xlarge', 'r7gd.8xlarge', 'r7gd.12xlarge', 'r7gd.16xlarge', 'r7a.medium', 'r7a.large', 'r7a.xlarge', 'r7a.2xlarge', 'r7a.4xlarge', 'r7a.8xlarge', 'r7a.12xlarge', 'r7a.16xlarge', 'r7a.24xlarge', 'r7a.32xlarge', 'r7a.48xlarge', 'c7i.large', 'c7i.xlarge', 'c7i.2xlarge', 'c7i.4xlarge', 'c7i.8xlarge', 'c7i.12xlarge', 'c7i.16xlarge', 'c7i.24xlarge', 'c7i.48xlarge', 'mac2-m2pro.metal', 'r7iz.large', 'r7iz.xlarge', 'r7iz.2xlarge', 'r7iz.4xlarge', 'r7iz.8xlarge', 'r7iz.12xlarge', 'r7iz.16xlarge', 'r7iz.32xlarge', 'c7a.medium', 'c7a.large', 'c7a.xlarge', 'c7a.2xlarge', 'c7a.4xlarge', 'c7a.8xlarge', 'c7a.12xlarge', 'c7a.16xlarge', 'c7a.24xlarge', 'c7a.32xlarge', 'c7a.48xlarge', 'c7a.metal-48xl', 'r7a.metal-48xl', 'r7i.large', 'r7i.xlarge', 'r7i.2xlarge', 'r7i.4xlarge', 'r7i.8xlarge', 'r7i.12xlarge', 'r7i.16xlarge', 'r7i.24xlarge', 'r7i.48xlarge', 'dl2q.24xlarge', 'mac2-m2.metal', 'i4i.12xlarge', 'i4i.24xlarge', 'c7i.metal-24xl', 'c7i.metal-48xl', 'm7i.metal-24xl', 'm7i.metal-48xl', 'r7i.metal-24xl', 'r7i.metal-48xl', 'r7iz.metal-16xl', 'r7iz.metal-32xl', ], ], 'InstanceTypeHypervisor' => [ 'type' => 'string', 'enum' => [ 'nitro', 'xen', ], ], 'InstanceTypeInfo' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'CurrentGeneration' => [ 'shape' => 'CurrentGenerationFlag', 'locationName' => 'currentGeneration', ], 'FreeTierEligible' => [ 'shape' => 'FreeTierEligibleFlag', 'locationName' => 'freeTierEligible', ], 'SupportedUsageClasses' => [ 'shape' => 'UsageClassTypeList', 'locationName' => 'supportedUsageClasses', ], 'SupportedRootDeviceTypes' => [ 'shape' => 'RootDeviceTypeList', 'locationName' => 'supportedRootDeviceTypes', ], 'SupportedVirtualizationTypes' => [ 'shape' => 'VirtualizationTypeList', 'locationName' => 'supportedVirtualizationTypes', ], 'BareMetal' => [ 'shape' => 'BareMetalFlag', 'locationName' => 'bareMetal', ], 'Hypervisor' => [ 'shape' => 'InstanceTypeHypervisor', 'locationName' => 'hypervisor', ], 'ProcessorInfo' => [ 'shape' => 'ProcessorInfo', 'locationName' => 'processorInfo', ], 'VCpuInfo' => [ 'shape' => 'VCpuInfo', 'locationName' => 'vCpuInfo', ], 'MemoryInfo' => [ 'shape' => 'MemoryInfo', 'locationName' => 'memoryInfo', ], 'InstanceStorageSupported' => [ 'shape' => 'InstanceStorageFlag', 'locationName' => 'instanceStorageSupported', ], 'InstanceStorageInfo' => [ 'shape' => 'InstanceStorageInfo', 'locationName' => 'instanceStorageInfo', ], 'EbsInfo' => [ 'shape' => 'EbsInfo', 'locationName' => 'ebsInfo', ], 'NetworkInfo' => [ 'shape' => 'NetworkInfo', 'locationName' => 'networkInfo', ], 'GpuInfo' => [ 'shape' => 'GpuInfo', 'locationName' => 'gpuInfo', ], 'FpgaInfo' => [ 'shape' => 'FpgaInfo', 'locationName' => 'fpgaInfo', ], 'PlacementGroupInfo' => [ 'shape' => 'PlacementGroupInfo', 'locationName' => 'placementGroupInfo', ], 'InferenceAcceleratorInfo' => [ 'shape' => 'InferenceAcceleratorInfo', 'locationName' => 'inferenceAcceleratorInfo', ], 'HibernationSupported' => [ 'shape' => 'HibernationFlag', 'locationName' => 'hibernationSupported', ], 'BurstablePerformanceSupported' => [ 'shape' => 'BurstablePerformanceFlag', 'locationName' => 'burstablePerformanceSupported', ], 'DedicatedHostsSupported' => [ 'shape' => 'DedicatedHostFlag', 'locationName' => 'dedicatedHostsSupported', ], 'AutoRecoverySupported' => [ 'shape' => 'AutoRecoveryFlag', 'locationName' => 'autoRecoverySupported', ], 'SupportedBootModes' => [ 'shape' => 'BootModeTypeList', 'locationName' => 'supportedBootModes', ], 'NitroEnclavesSupport' => [ 'shape' => 'NitroEnclavesSupport', 'locationName' => 'nitroEnclavesSupport', ], 'NitroTpmSupport' => [ 'shape' => 'NitroTpmSupport', 'locationName' => 'nitroTpmSupport', ], 'NitroTpmInfo' => [ 'shape' => 'NitroTpmInfo', 'locationName' => 'nitroTpmInfo', ], ], ], 'InstanceTypeInfoFromInstanceRequirements' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], ], ], 'InstanceTypeInfoFromInstanceRequirementsSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceTypeInfoFromInstanceRequirements', 'locationName' => 'item', ], ], 'InstanceTypeInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceTypeInfo', 'locationName' => 'item', ], ], 'InstanceTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceType', ], ], 'InstanceTypeOffering' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'LocationType' => [ 'shape' => 'LocationType', 'locationName' => 'locationType', ], 'Location' => [ 'shape' => 'Location', 'locationName' => 'location', ], ], ], 'InstanceTypeOfferingsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceTypeOffering', 'locationName' => 'item', ], ], 'InstanceTypes' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], 'max' => 1000, 'min' => 0, ], 'InstanceTypesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'InstanceUsage' => [ 'type' => 'structure', 'members' => [ 'AccountId' => [ 'shape' => 'String', 'locationName' => 'accountId', ], 'UsedInstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'usedInstanceCount', ], ], ], 'InstanceUsageSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceUsage', 'locationName' => 'item', ], ], 'Integer' => [ 'type' => 'integer', ], 'IntegerWithConstraints' => [ 'type' => 'integer', 'min' => 0, ], 'IntegrateServices' => [ 'type' => 'structure', 'members' => [ 'AthenaIntegrations' => [ 'shape' => 'AthenaIntegrationsSet', 'locationName' => 'AthenaIntegration', ], ], ], 'InterfacePermissionType' => [ 'type' => 'string', 'enum' => [ 'INSTANCE-ATTACH', 'EIP-ASSOCIATE', ], ], 'InterfaceProtocolType' => [ 'type' => 'string', 'enum' => [ 'VLAN', 'GRE', ], ], 'InternetGateway' => [ 'type' => 'structure', 'members' => [ 'Attachments' => [ 'shape' => 'InternetGatewayAttachmentList', 'locationName' => 'attachmentSet', ], 'InternetGatewayId' => [ 'shape' => 'String', 'locationName' => 'internetGatewayId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'InternetGatewayAttachment' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'AttachmentStatus', 'locationName' => 'state', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'InternetGatewayAttachmentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InternetGatewayAttachment', 'locationName' => 'item', ], ], 'InternetGatewayId' => [ 'type' => 'string', ], 'InternetGatewayIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InternetGatewayId', 'locationName' => 'item', ], ], 'InternetGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InternetGateway', 'locationName' => 'item', ], ], 'IpAddress' => [ 'type' => 'string', 'max' => 15, 'min' => 0, 'pattern' => '^([0-9]{1,3}.){3}[0-9]{1,3}$', ], 'IpAddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpAddress', 'locationName' => 'item', ], ], 'IpAddressType' => [ 'type' => 'string', 'enum' => [ 'ipv4', 'dualstack', 'ipv6', ], ], 'IpList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'IpPermission' => [ 'type' => 'structure', 'members' => [ 'FromPort' => [ 'shape' => 'Integer', 'locationName' => 'fromPort', ], 'IpProtocol' => [ 'shape' => 'String', 'locationName' => 'ipProtocol', ], 'IpRanges' => [ 'shape' => 'IpRangeList', 'locationName' => 'ipRanges', ], 'Ipv6Ranges' => [ 'shape' => 'Ipv6RangeList', 'locationName' => 'ipv6Ranges', ], 'PrefixListIds' => [ 'shape' => 'PrefixListIdList', 'locationName' => 'prefixListIds', ], 'ToPort' => [ 'shape' => 'Integer', 'locationName' => 'toPort', ], 'UserIdGroupPairs' => [ 'shape' => 'UserIdGroupPairList', 'locationName' => 'groups', ], ], ], 'IpPermissionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpPermission', 'locationName' => 'item', ], ], 'IpPrefixList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'IpRange' => [ 'type' => 'structure', 'members' => [ 'CidrIp' => [ 'shape' => 'String', 'locationName' => 'cidrIp', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], ], ], 'IpRangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpRange', 'locationName' => 'item', ], ], 'IpRanges' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'Ipam' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'IpamId' => [ 'shape' => 'IpamId', 'locationName' => 'ipamId', ], 'IpamArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ipamArn', ], 'IpamRegion' => [ 'shape' => 'String', 'locationName' => 'ipamRegion', ], 'PublicDefaultScopeId' => [ 'shape' => 'IpamScopeId', 'locationName' => 'publicDefaultScopeId', ], 'PrivateDefaultScopeId' => [ 'shape' => 'IpamScopeId', 'locationName' => 'privateDefaultScopeId', ], 'ScopeCount' => [ 'shape' => 'Integer', 'locationName' => 'scopeCount', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'OperatingRegions' => [ 'shape' => 'IpamOperatingRegionSet', 'locationName' => 'operatingRegionSet', ], 'State' => [ 'shape' => 'IpamState', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'DefaultResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', 'locationName' => 'defaultResourceDiscoveryId', ], 'DefaultResourceDiscoveryAssociationId' => [ 'shape' => 'IpamResourceDiscoveryAssociationId', 'locationName' => 'defaultResourceDiscoveryAssociationId', ], 'ResourceDiscoveryAssociationCount' => [ 'shape' => 'Integer', 'locationName' => 'resourceDiscoveryAssociationCount', ], 'StateMessage' => [ 'shape' => 'String', 'locationName' => 'stateMessage', ], 'Tier' => [ 'shape' => 'IpamTier', 'locationName' => 'tier', ], ], ], 'IpamAddressHistoryMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'IpamAddressHistoryRecord' => [ 'type' => 'structure', 'members' => [ 'ResourceOwnerId' => [ 'shape' => 'String', 'locationName' => 'resourceOwnerId', ], 'ResourceRegion' => [ 'shape' => 'String', 'locationName' => 'resourceRegion', ], 'ResourceType' => [ 'shape' => 'IpamAddressHistoryResourceType', 'locationName' => 'resourceType', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceCidr' => [ 'shape' => 'String', 'locationName' => 'resourceCidr', ], 'ResourceName' => [ 'shape' => 'String', 'locationName' => 'resourceName', ], 'ResourceComplianceStatus' => [ 'shape' => 'IpamComplianceStatus', 'locationName' => 'resourceComplianceStatus', ], 'ResourceOverlapStatus' => [ 'shape' => 'IpamOverlapStatus', 'locationName' => 'resourceOverlapStatus', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'SampledStartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'sampledStartTime', ], 'SampledEndTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'sampledEndTime', ], ], ], 'IpamAddressHistoryRecordSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamAddressHistoryRecord', 'locationName' => 'item', ], ], 'IpamAddressHistoryResourceType' => [ 'type' => 'string', 'enum' => [ 'eip', 'vpc', 'subnet', 'network-interface', 'instance', ], ], 'IpamAssociatedResourceDiscoveryStatus' => [ 'type' => 'string', 'enum' => [ 'active', 'not-found', ], ], 'IpamCidrAuthorizationContext' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'String', ], 'Signature' => [ 'shape' => 'String', ], ], ], 'IpamComplianceStatus' => [ 'type' => 'string', 'enum' => [ 'compliant', 'noncompliant', 'unmanaged', 'ignored', ], ], 'IpamDiscoveredAccount' => [ 'type' => 'structure', 'members' => [ 'AccountId' => [ 'shape' => 'String', 'locationName' => 'accountId', ], 'DiscoveryRegion' => [ 'shape' => 'String', 'locationName' => 'discoveryRegion', ], 'FailureReason' => [ 'shape' => 'IpamDiscoveryFailureReason', 'locationName' => 'failureReason', ], 'LastAttemptedDiscoveryTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lastAttemptedDiscoveryTime', ], 'LastSuccessfulDiscoveryTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lastSuccessfulDiscoveryTime', ], ], ], 'IpamDiscoveredAccountSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamDiscoveredAccount', 'locationName' => 'item', ], ], 'IpamDiscoveredPublicAddress' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', 'locationName' => 'ipamResourceDiscoveryId', ], 'AddressRegion' => [ 'shape' => 'String', 'locationName' => 'addressRegion', ], 'Address' => [ 'shape' => 'String', 'locationName' => 'address', ], 'AddressOwnerId' => [ 'shape' => 'String', 'locationName' => 'addressOwnerId', ], 'AddressAllocationId' => [ 'shape' => 'String', 'locationName' => 'addressAllocationId', ], 'AssociationStatus' => [ 'shape' => 'IpamPublicAddressAssociationStatus', 'locationName' => 'associationStatus', ], 'AddressType' => [ 'shape' => 'IpamPublicAddressType', 'locationName' => 'addressType', ], 'Service' => [ 'shape' => 'IpamPublicAddressAwsService', 'locationName' => 'service', ], 'ServiceResource' => [ 'shape' => 'String', 'locationName' => 'serviceResource', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'PublicIpv4PoolId' => [ 'shape' => 'String', 'locationName' => 'publicIpv4PoolId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'NetworkInterfaceDescription' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceDescription', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Tags' => [ 'shape' => 'IpamPublicAddressTags', 'locationName' => 'tags', ], 'NetworkBorderGroup' => [ 'shape' => 'String', 'locationName' => 'networkBorderGroup', ], 'SecurityGroups' => [ 'shape' => 'IpamPublicAddressSecurityGroupList', 'locationName' => 'securityGroupSet', ], 'SampleTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'sampleTime', ], ], ], 'IpamDiscoveredPublicAddressSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamDiscoveredPublicAddress', 'locationName' => 'item', ], ], 'IpamDiscoveredResourceCidr' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', 'locationName' => 'ipamResourceDiscoveryId', ], 'ResourceRegion' => [ 'shape' => 'String', 'locationName' => 'resourceRegion', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceOwnerId' => [ 'shape' => 'String', 'locationName' => 'resourceOwnerId', ], 'ResourceCidr' => [ 'shape' => 'String', 'locationName' => 'resourceCidr', ], 'ResourceType' => [ 'shape' => 'IpamResourceType', 'locationName' => 'resourceType', ], 'ResourceTags' => [ 'shape' => 'IpamResourceTagList', 'locationName' => 'resourceTagSet', ], 'IpUsage' => [ 'shape' => 'BoxedDouble', 'locationName' => 'ipUsage', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'SampleTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'sampleTime', ], ], ], 'IpamDiscoveredResourceCidrSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamDiscoveredResourceCidr', 'locationName' => 'item', ], ], 'IpamDiscoveryFailureCode' => [ 'type' => 'string', 'enum' => [ 'assume-role-failure', 'throttling-failure', 'unauthorized-failure', ], ], 'IpamDiscoveryFailureReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'IpamDiscoveryFailureCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'IpamId' => [ 'type' => 'string', ], 'IpamManagementState' => [ 'type' => 'string', 'enum' => [ 'managed', 'unmanaged', 'ignored', ], ], 'IpamMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'IpamNetmaskLength' => [ 'type' => 'integer', 'max' => 128, 'min' => 0, ], 'IpamOperatingRegion' => [ 'type' => 'structure', 'members' => [ 'RegionName' => [ 'shape' => 'String', 'locationName' => 'regionName', ], ], ], 'IpamOperatingRegionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamOperatingRegion', 'locationName' => 'item', ], ], 'IpamOverlapStatus' => [ 'type' => 'string', 'enum' => [ 'overlapping', 'nonoverlapping', 'ignored', ], ], 'IpamPool' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', 'locationName' => 'ipamPoolId', ], 'SourceIpamPoolId' => [ 'shape' => 'IpamPoolId', 'locationName' => 'sourceIpamPoolId', ], 'IpamPoolArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ipamPoolArn', ], 'IpamScopeArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ipamScopeArn', ], 'IpamScopeType' => [ 'shape' => 'IpamScopeType', 'locationName' => 'ipamScopeType', ], 'IpamArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ipamArn', ], 'IpamRegion' => [ 'shape' => 'String', 'locationName' => 'ipamRegion', ], 'Locale' => [ 'shape' => 'String', 'locationName' => 'locale', ], 'PoolDepth' => [ 'shape' => 'Integer', 'locationName' => 'poolDepth', ], 'State' => [ 'shape' => 'IpamPoolState', 'locationName' => 'state', ], 'StateMessage' => [ 'shape' => 'String', 'locationName' => 'stateMessage', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'AutoImport' => [ 'shape' => 'Boolean', 'locationName' => 'autoImport', ], 'PubliclyAdvertisable' => [ 'shape' => 'Boolean', 'locationName' => 'publiclyAdvertisable', ], 'AddressFamily' => [ 'shape' => 'AddressFamily', 'locationName' => 'addressFamily', ], 'AllocationMinNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', 'locationName' => 'allocationMinNetmaskLength', ], 'AllocationMaxNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', 'locationName' => 'allocationMaxNetmaskLength', ], 'AllocationDefaultNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', 'locationName' => 'allocationDefaultNetmaskLength', ], 'AllocationResourceTags' => [ 'shape' => 'IpamResourceTagList', 'locationName' => 'allocationResourceTagSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'AwsService' => [ 'shape' => 'IpamPoolAwsService', 'locationName' => 'awsService', ], 'PublicIpSource' => [ 'shape' => 'IpamPoolPublicIpSource', 'locationName' => 'publicIpSource', ], 'SourceResource' => [ 'shape' => 'IpamPoolSourceResource', 'locationName' => 'sourceResource', ], ], ], 'IpamPoolAllocation' => [ 'type' => 'structure', 'members' => [ 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'IpamPoolAllocationId' => [ 'shape' => 'IpamPoolAllocationId', 'locationName' => 'ipamPoolAllocationId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'IpamPoolAllocationResourceType', 'locationName' => 'resourceType', ], 'ResourceRegion' => [ 'shape' => 'String', 'locationName' => 'resourceRegion', ], 'ResourceOwner' => [ 'shape' => 'String', 'locationName' => 'resourceOwner', ], ], ], 'IpamPoolAllocationAllowedCidrs' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'IpamPoolAllocationDisallowedCidrs' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'IpamPoolAllocationId' => [ 'type' => 'string', ], 'IpamPoolAllocationResourceType' => [ 'type' => 'string', 'enum' => [ 'ipam-pool', 'vpc', 'ec2-public-ipv4-pool', 'custom', 'subnet', ], ], 'IpamPoolAllocationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamPoolAllocation', 'locationName' => 'item', ], ], 'IpamPoolAwsService' => [ 'type' => 'string', 'enum' => [ 'ec2', ], ], 'IpamPoolCidr' => [ 'type' => 'structure', 'members' => [ 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'State' => [ 'shape' => 'IpamPoolCidrState', 'locationName' => 'state', ], 'FailureReason' => [ 'shape' => 'IpamPoolCidrFailureReason', 'locationName' => 'failureReason', ], 'IpamPoolCidrId' => [ 'shape' => 'IpamPoolCidrId', 'locationName' => 'ipamPoolCidrId', ], 'NetmaskLength' => [ 'shape' => 'Integer', 'locationName' => 'netmaskLength', ], ], ], 'IpamPoolCidrFailureCode' => [ 'type' => 'string', 'enum' => [ 'cidr-not-available', 'limit-exceeded', ], ], 'IpamPoolCidrFailureReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'IpamPoolCidrFailureCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'IpamPoolCidrId' => [ 'type' => 'string', ], 'IpamPoolCidrSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamPoolCidr', 'locationName' => 'item', ], ], 'IpamPoolCidrState' => [ 'type' => 'string', 'enum' => [ 'pending-provision', 'provisioned', 'failed-provision', 'pending-deprovision', 'deprovisioned', 'failed-deprovision', 'pending-import', 'failed-import', ], ], 'IpamPoolId' => [ 'type' => 'string', ], 'IpamPoolPublicIpSource' => [ 'type' => 'string', 'enum' => [ 'amazon', 'byoip', ], ], 'IpamPoolSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamPool', 'locationName' => 'item', ], ], 'IpamPoolSourceResource' => [ 'type' => 'structure', 'members' => [ 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'IpamPoolSourceResourceType', 'locationName' => 'resourceType', ], 'ResourceRegion' => [ 'shape' => 'String', 'locationName' => 'resourceRegion', ], 'ResourceOwner' => [ 'shape' => 'String', 'locationName' => 'resourceOwner', ], ], ], 'IpamPoolSourceResourceRequest' => [ 'type' => 'structure', 'members' => [ 'ResourceId' => [ 'shape' => 'String', ], 'ResourceType' => [ 'shape' => 'IpamPoolSourceResourceType', ], 'ResourceRegion' => [ 'shape' => 'String', ], 'ResourceOwner' => [ 'shape' => 'String', ], ], ], 'IpamPoolSourceResourceType' => [ 'type' => 'string', 'enum' => [ 'vpc', ], ], 'IpamPoolState' => [ 'type' => 'string', 'enum' => [ 'create-in-progress', 'create-complete', 'create-failed', 'modify-in-progress', 'modify-complete', 'modify-failed', 'delete-in-progress', 'delete-complete', 'delete-failed', 'isolate-in-progress', 'isolate-complete', 'restore-in-progress', ], ], 'IpamPublicAddressAssociationStatus' => [ 'type' => 'string', 'enum' => [ 'associated', 'disassociated', ], ], 'IpamPublicAddressAwsService' => [ 'type' => 'string', 'enum' => [ 'nat-gateway', 'database-migration-service', 'redshift', 'elastic-container-service', 'relational-database-service', 'site-to-site-vpn', 'load-balancer', 'global-accelerator', 'other', ], ], 'IpamPublicAddressSecurityGroup' => [ 'type' => 'structure', 'members' => [ 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], ], ], 'IpamPublicAddressSecurityGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamPublicAddressSecurityGroup', 'locationName' => 'item', ], ], 'IpamPublicAddressTag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', 'locationName' => 'key', ], 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'IpamPublicAddressTagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamPublicAddressTag', 'locationName' => 'item', ], ], 'IpamPublicAddressTags' => [ 'type' => 'structure', 'members' => [ 'EipTags' => [ 'shape' => 'IpamPublicAddressTagList', 'locationName' => 'eipTagSet', ], ], ], 'IpamPublicAddressType' => [ 'type' => 'string', 'enum' => [ 'service-managed-ip', 'service-managed-byoip', 'amazon-owned-eip', 'byoip', 'ec2-public-ip', ], ], 'IpamResourceCidr' => [ 'type' => 'structure', 'members' => [ 'IpamId' => [ 'shape' => 'IpamId', 'locationName' => 'ipamId', ], 'IpamScopeId' => [ 'shape' => 'IpamScopeId', 'locationName' => 'ipamScopeId', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', 'locationName' => 'ipamPoolId', ], 'ResourceRegion' => [ 'shape' => 'String', 'locationName' => 'resourceRegion', ], 'ResourceOwnerId' => [ 'shape' => 'String', 'locationName' => 'resourceOwnerId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceName' => [ 'shape' => 'String', 'locationName' => 'resourceName', ], 'ResourceCidr' => [ 'shape' => 'String', 'locationName' => 'resourceCidr', ], 'ResourceType' => [ 'shape' => 'IpamResourceType', 'locationName' => 'resourceType', ], 'ResourceTags' => [ 'shape' => 'IpamResourceTagList', 'locationName' => 'resourceTagSet', ], 'IpUsage' => [ 'shape' => 'BoxedDouble', 'locationName' => 'ipUsage', ], 'ComplianceStatus' => [ 'shape' => 'IpamComplianceStatus', 'locationName' => 'complianceStatus', ], 'ManagementState' => [ 'shape' => 'IpamManagementState', 'locationName' => 'managementState', ], 'OverlapStatus' => [ 'shape' => 'IpamOverlapStatus', 'locationName' => 'overlapStatus', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'IpamResourceCidrSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamResourceCidr', 'locationName' => 'item', ], ], 'IpamResourceDiscovery' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', 'locationName' => 'ipamResourceDiscoveryId', ], 'IpamResourceDiscoveryArn' => [ 'shape' => 'String', 'locationName' => 'ipamResourceDiscoveryArn', ], 'IpamResourceDiscoveryRegion' => [ 'shape' => 'String', 'locationName' => 'ipamResourceDiscoveryRegion', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'OperatingRegions' => [ 'shape' => 'IpamOperatingRegionSet', 'locationName' => 'operatingRegionSet', ], 'IsDefault' => [ 'shape' => 'Boolean', 'locationName' => 'isDefault', ], 'State' => [ 'shape' => 'IpamResourceDiscoveryState', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'IpamResourceDiscoveryAssociation' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'IpamResourceDiscoveryAssociationId' => [ 'shape' => 'IpamResourceDiscoveryAssociationId', 'locationName' => 'ipamResourceDiscoveryAssociationId', ], 'IpamResourceDiscoveryAssociationArn' => [ 'shape' => 'String', 'locationName' => 'ipamResourceDiscoveryAssociationArn', ], 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', 'locationName' => 'ipamResourceDiscoveryId', ], 'IpamId' => [ 'shape' => 'IpamId', 'locationName' => 'ipamId', ], 'IpamArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ipamArn', ], 'IpamRegion' => [ 'shape' => 'String', 'locationName' => 'ipamRegion', ], 'IsDefault' => [ 'shape' => 'Boolean', 'locationName' => 'isDefault', ], 'ResourceDiscoveryStatus' => [ 'shape' => 'IpamAssociatedResourceDiscoveryStatus', 'locationName' => 'resourceDiscoveryStatus', ], 'State' => [ 'shape' => 'IpamResourceDiscoveryAssociationState', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'IpamResourceDiscoveryAssociationId' => [ 'type' => 'string', ], 'IpamResourceDiscoveryAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamResourceDiscoveryAssociation', 'locationName' => 'item', ], ], 'IpamResourceDiscoveryAssociationState' => [ 'type' => 'string', 'enum' => [ 'associate-in-progress', 'associate-complete', 'associate-failed', 'disassociate-in-progress', 'disassociate-complete', 'disassociate-failed', 'isolate-in-progress', 'isolate-complete', 'restore-in-progress', ], ], 'IpamResourceDiscoveryId' => [ 'type' => 'string', ], 'IpamResourceDiscoverySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamResourceDiscovery', 'locationName' => 'item', ], ], 'IpamResourceDiscoveryState' => [ 'type' => 'string', 'enum' => [ 'create-in-progress', 'create-complete', 'create-failed', 'modify-in-progress', 'modify-complete', 'modify-failed', 'delete-in-progress', 'delete-complete', 'delete-failed', 'isolate-in-progress', 'isolate-complete', 'restore-in-progress', ], ], 'IpamResourceTag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', 'locationName' => 'key', ], 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'IpamResourceTagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamResourceTag', 'locationName' => 'item', ], ], 'IpamResourceType' => [ 'type' => 'string', 'enum' => [ 'vpc', 'subnet', 'eip', 'public-ipv4-pool', 'ipv6-pool', 'eni', ], ], 'IpamScope' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'IpamScopeId' => [ 'shape' => 'IpamScopeId', 'locationName' => 'ipamScopeId', ], 'IpamScopeArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ipamScopeArn', ], 'IpamArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ipamArn', ], 'IpamRegion' => [ 'shape' => 'String', 'locationName' => 'ipamRegion', ], 'IpamScopeType' => [ 'shape' => 'IpamScopeType', 'locationName' => 'ipamScopeType', ], 'IsDefault' => [ 'shape' => 'Boolean', 'locationName' => 'isDefault', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'PoolCount' => [ 'shape' => 'Integer', 'locationName' => 'poolCount', ], 'State' => [ 'shape' => 'IpamScopeState', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'IpamScopeId' => [ 'type' => 'string', ], 'IpamScopeSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamScope', 'locationName' => 'item', ], ], 'IpamScopeState' => [ 'type' => 'string', 'enum' => [ 'create-in-progress', 'create-complete', 'create-failed', 'modify-in-progress', 'modify-complete', 'modify-failed', 'delete-in-progress', 'delete-complete', 'delete-failed', 'isolate-in-progress', 'isolate-complete', 'restore-in-progress', ], ], 'IpamScopeType' => [ 'type' => 'string', 'enum' => [ 'public', 'private', ], ], 'IpamSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipam', 'locationName' => 'item', ], ], 'IpamState' => [ 'type' => 'string', 'enum' => [ 'create-in-progress', 'create-complete', 'create-failed', 'modify-in-progress', 'modify-complete', 'modify-failed', 'delete-in-progress', 'delete-complete', 'delete-failed', 'isolate-in-progress', 'isolate-complete', 'restore-in-progress', ], ], 'IpamTier' => [ 'type' => 'string', 'enum' => [ 'free', 'advanced', ], ], 'Ipv4PoolCoipId' => [ 'type' => 'string', ], 'Ipv4PoolEc2Id' => [ 'type' => 'string', ], 'Ipv4PrefixList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv4PrefixSpecificationRequest', 'locationName' => 'item', ], ], 'Ipv4PrefixListResponse' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv4PrefixSpecificationResponse', 'locationName' => 'item', ], ], 'Ipv4PrefixSpecification' => [ 'type' => 'structure', 'members' => [ 'Ipv4Prefix' => [ 'shape' => 'String', 'locationName' => 'ipv4Prefix', ], ], ], 'Ipv4PrefixSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'Ipv4Prefix' => [ 'shape' => 'String', ], ], ], 'Ipv4PrefixSpecificationResponse' => [ 'type' => 'structure', 'members' => [ 'Ipv4Prefix' => [ 'shape' => 'String', 'locationName' => 'ipv4Prefix', ], ], ], 'Ipv4PrefixesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv4PrefixSpecification', 'locationName' => 'item', ], ], 'Ipv6Address' => [ 'type' => 'string', ], 'Ipv6AddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'Ipv6CidrAssociation' => [ 'type' => 'structure', 'members' => [ 'Ipv6Cidr' => [ 'shape' => 'String', 'locationName' => 'ipv6Cidr', ], 'AssociatedResource' => [ 'shape' => 'String', 'locationName' => 'associatedResource', ], ], ], 'Ipv6CidrAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv6CidrAssociation', 'locationName' => 'item', ], ], 'Ipv6CidrBlock' => [ 'type' => 'structure', 'members' => [ 'Ipv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'ipv6CidrBlock', ], ], ], 'Ipv6CidrBlockSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv6CidrBlock', 'locationName' => 'item', ], ], 'Ipv6Flag' => [ 'type' => 'boolean', ], 'Ipv6Pool' => [ 'type' => 'structure', 'members' => [ 'PoolId' => [ 'shape' => 'String', 'locationName' => 'poolId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'PoolCidrBlocks' => [ 'shape' => 'PoolCidrBlocksSet', 'locationName' => 'poolCidrBlockSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'Ipv6PoolEc2Id' => [ 'type' => 'string', ], 'Ipv6PoolIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv6PoolEc2Id', 'locationName' => 'item', ], ], 'Ipv6PoolMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'Ipv6PoolSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv6Pool', 'locationName' => 'item', ], ], 'Ipv6PrefixList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv6PrefixSpecificationRequest', 'locationName' => 'item', ], ], 'Ipv6PrefixListResponse' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv6PrefixSpecificationResponse', 'locationName' => 'item', ], ], 'Ipv6PrefixSpecification' => [ 'type' => 'structure', 'members' => [ 'Ipv6Prefix' => [ 'shape' => 'String', 'locationName' => 'ipv6Prefix', ], ], ], 'Ipv6PrefixSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'Ipv6Prefix' => [ 'shape' => 'String', ], ], ], 'Ipv6PrefixSpecificationResponse' => [ 'type' => 'structure', 'members' => [ 'Ipv6Prefix' => [ 'shape' => 'String', 'locationName' => 'ipv6Prefix', ], ], ], 'Ipv6PrefixesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv6PrefixSpecification', 'locationName' => 'item', ], ], 'Ipv6Range' => [ 'type' => 'structure', 'members' => [ 'CidrIpv6' => [ 'shape' => 'String', 'locationName' => 'cidrIpv6', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], ], ], 'Ipv6RangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv6Range', 'locationName' => 'item', ], ], 'Ipv6SupportValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'KernelId' => [ 'type' => 'string', ], 'KeyFormat' => [ 'type' => 'string', 'enum' => [ 'pem', 'ppk', ], ], 'KeyNameStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'KeyPairName', 'locationName' => 'KeyName', ], ], 'KeyPair' => [ 'type' => 'structure', 'members' => [ 'KeyFingerprint' => [ 'shape' => 'String', 'locationName' => 'keyFingerprint', ], 'KeyMaterial' => [ 'shape' => 'SensitiveUserData', 'locationName' => 'keyMaterial', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'KeyPairId' => [ 'shape' => 'String', 'locationName' => 'keyPairId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'KeyPairId' => [ 'type' => 'string', ], 'KeyPairIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'KeyPairId', 'locationName' => 'KeyPairId', ], ], 'KeyPairInfo' => [ 'type' => 'structure', 'members' => [ 'KeyPairId' => [ 'shape' => 'String', 'locationName' => 'keyPairId', ], 'KeyFingerprint' => [ 'shape' => 'String', 'locationName' => 'keyFingerprint', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'KeyType' => [ 'shape' => 'KeyType', 'locationName' => 'keyType', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'PublicKey' => [ 'shape' => 'String', 'locationName' => 'publicKey', ], 'CreateTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'createTime', ], ], ], 'KeyPairList' => [ 'type' => 'list', 'member' => [ 'shape' => 'KeyPairInfo', 'locationName' => 'item', ], ], 'KeyPairName' => [ 'type' => 'string', ], 'KeyType' => [ 'type' => 'string', 'enum' => [ 'rsa', 'ed25519', ], ], 'KmsKeyArn' => [ 'type' => 'string', ], 'KmsKeyId' => [ 'type' => 'string', ], 'LastError' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], ], ], 'LaunchPermission' => [ 'type' => 'structure', 'members' => [ 'Group' => [ 'shape' => 'PermissionGroup', 'locationName' => 'group', ], 'UserId' => [ 'shape' => 'String', 'locationName' => 'userId', ], 'OrganizationArn' => [ 'shape' => 'String', 'locationName' => 'organizationArn', ], 'OrganizationalUnitArn' => [ 'shape' => 'String', 'locationName' => 'organizationalUnitArn', ], ], ], 'LaunchPermissionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchPermission', 'locationName' => 'item', ], ], 'LaunchPermissionModifications' => [ 'type' => 'structure', 'members' => [ 'Add' => [ 'shape' => 'LaunchPermissionList', ], 'Remove' => [ 'shape' => 'LaunchPermissionList', ], ], ], 'LaunchSpecification' => [ 'type' => 'structure', 'members' => [ 'UserData' => [ 'shape' => 'SensitiveUserData', 'locationName' => 'userData', ], 'SecurityGroups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'AddressingType' => [ 'shape' => 'String', 'locationName' => 'addressingType', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfileSpecification', 'locationName' => 'iamInstanceProfile', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'KernelId' => [ 'shape' => 'String', 'locationName' => 'kernelId', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'NetworkInterfaces' => [ 'shape' => 'InstanceNetworkInterfaceSpecificationList', 'locationName' => 'networkInterfaceSet', ], 'Placement' => [ 'shape' => 'SpotPlacement', 'locationName' => 'placement', ], 'RamdiskId' => [ 'shape' => 'String', 'locationName' => 'ramdiskId', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'Monitoring' => [ 'shape' => 'RunInstancesMonitoringEnabled', 'locationName' => 'monitoring', ], ], ], 'LaunchSpecsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotFleetLaunchSpecification', 'locationName' => 'item', ], ], 'LaunchTemplate' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'String', 'locationName' => 'launchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', 'locationName' => 'launchTemplateName', ], 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'CreatedBy' => [ 'shape' => 'String', 'locationName' => 'createdBy', ], 'DefaultVersionNumber' => [ 'shape' => 'Long', 'locationName' => 'defaultVersionNumber', ], 'LatestVersionNumber' => [ 'shape' => 'Long', 'locationName' => 'latestVersionNumber', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'LaunchTemplateAndOverridesResponse' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateSpecification' => [ 'shape' => 'FleetLaunchTemplateSpecification', 'locationName' => 'launchTemplateSpecification', ], 'Overrides' => [ 'shape' => 'FleetLaunchTemplateOverrides', 'locationName' => 'overrides', ], ], ], 'LaunchTemplateAutoRecoveryState' => [ 'type' => 'string', 'enum' => [ 'default', 'disabled', ], ], 'LaunchTemplateBlockDeviceMapping' => [ 'type' => 'structure', 'members' => [ 'DeviceName' => [ 'shape' => 'String', 'locationName' => 'deviceName', ], 'VirtualName' => [ 'shape' => 'String', 'locationName' => 'virtualName', ], 'Ebs' => [ 'shape' => 'LaunchTemplateEbsBlockDevice', 'locationName' => 'ebs', ], 'NoDevice' => [ 'shape' => 'String', 'locationName' => 'noDevice', ], ], ], 'LaunchTemplateBlockDeviceMappingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateBlockDeviceMapping', 'locationName' => 'item', ], ], 'LaunchTemplateBlockDeviceMappingRequest' => [ 'type' => 'structure', 'members' => [ 'DeviceName' => [ 'shape' => 'String', ], 'VirtualName' => [ 'shape' => 'String', ], 'Ebs' => [ 'shape' => 'LaunchTemplateEbsBlockDeviceRequest', ], 'NoDevice' => [ 'shape' => 'String', ], ], ], 'LaunchTemplateBlockDeviceMappingRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateBlockDeviceMappingRequest', 'locationName' => 'BlockDeviceMapping', ], ], 'LaunchTemplateCapacityReservationSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationPreference' => [ 'shape' => 'CapacityReservationPreference', ], 'CapacityReservationTarget' => [ 'shape' => 'CapacityReservationTarget', ], ], ], 'LaunchTemplateCapacityReservationSpecificationResponse' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationPreference' => [ 'shape' => 'CapacityReservationPreference', 'locationName' => 'capacityReservationPreference', ], 'CapacityReservationTarget' => [ 'shape' => 'CapacityReservationTargetResponse', 'locationName' => 'capacityReservationTarget', ], ], ], 'LaunchTemplateConfig' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateSpecification' => [ 'shape' => 'FleetLaunchTemplateSpecification', 'locationName' => 'launchTemplateSpecification', ], 'Overrides' => [ 'shape' => 'LaunchTemplateOverridesList', 'locationName' => 'overrides', ], ], ], 'LaunchTemplateConfigList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateConfig', 'locationName' => 'item', ], ], 'LaunchTemplateCpuOptions' => [ 'type' => 'structure', 'members' => [ 'CoreCount' => [ 'shape' => 'Integer', 'locationName' => 'coreCount', ], 'ThreadsPerCore' => [ 'shape' => 'Integer', 'locationName' => 'threadsPerCore', ], 'AmdSevSnp' => [ 'shape' => 'AmdSevSnpSpecification', 'locationName' => 'amdSevSnp', ], ], ], 'LaunchTemplateCpuOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'CoreCount' => [ 'shape' => 'Integer', ], 'ThreadsPerCore' => [ 'shape' => 'Integer', ], 'AmdSevSnp' => [ 'shape' => 'AmdSevSnpSpecification', ], ], ], 'LaunchTemplateEbsBlockDevice' => [ 'type' => 'structure', 'members' => [ 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'Iops' => [ 'shape' => 'Integer', 'locationName' => 'iops', ], 'KmsKeyId' => [ 'shape' => 'KmsKeyId', 'locationName' => 'kmsKeyId', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', 'locationName' => 'snapshotId', ], 'VolumeSize' => [ 'shape' => 'Integer', 'locationName' => 'volumeSize', ], 'VolumeType' => [ 'shape' => 'VolumeType', 'locationName' => 'volumeType', ], 'Throughput' => [ 'shape' => 'Integer', 'locationName' => 'throughput', ], ], ], 'LaunchTemplateEbsBlockDeviceRequest' => [ 'type' => 'structure', 'members' => [ 'Encrypted' => [ 'shape' => 'Boolean', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', ], 'Iops' => [ 'shape' => 'Integer', ], 'KmsKeyId' => [ 'shape' => 'KmsKeyId', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'VolumeSize' => [ 'shape' => 'Integer', ], 'VolumeType' => [ 'shape' => 'VolumeType', ], 'Throughput' => [ 'shape' => 'Integer', ], ], ], 'LaunchTemplateElasticInferenceAccelerator' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'Type' => [ 'shape' => 'String', ], 'Count' => [ 'shape' => 'LaunchTemplateElasticInferenceAcceleratorCount', ], ], ], 'LaunchTemplateElasticInferenceAcceleratorCount' => [ 'type' => 'integer', 'min' => 1, ], 'LaunchTemplateElasticInferenceAcceleratorList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateElasticInferenceAccelerator', 'locationName' => 'item', ], ], 'LaunchTemplateElasticInferenceAcceleratorResponse' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'String', 'locationName' => 'type', ], 'Count' => [ 'shape' => 'Integer', 'locationName' => 'count', ], ], ], 'LaunchTemplateElasticInferenceAcceleratorResponseList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateElasticInferenceAcceleratorResponse', 'locationName' => 'item', ], ], 'LaunchTemplateEnaSrdSpecification' => [ 'type' => 'structure', 'members' => [ 'EnaSrdEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'enaSrdEnabled', ], 'EnaSrdUdpSpecification' => [ 'shape' => 'LaunchTemplateEnaSrdUdpSpecification', 'locationName' => 'enaSrdUdpSpecification', ], ], ], 'LaunchTemplateEnaSrdUdpSpecification' => [ 'type' => 'structure', 'members' => [ 'EnaSrdUdpEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'enaSrdUdpEnabled', ], ], ], 'LaunchTemplateEnclaveOptions' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], ], ], 'LaunchTemplateEnclaveOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], ], ], 'LaunchTemplateErrorCode' => [ 'type' => 'string', 'enum' => [ 'launchTemplateIdDoesNotExist', 'launchTemplateIdMalformed', 'launchTemplateNameDoesNotExist', 'launchTemplateNameMalformed', 'launchTemplateVersionDoesNotExist', 'unexpectedError', ], ], 'LaunchTemplateHibernationOptions' => [ 'type' => 'structure', 'members' => [ 'Configured' => [ 'shape' => 'Boolean', 'locationName' => 'configured', ], ], ], 'LaunchTemplateHibernationOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'Configured' => [ 'shape' => 'Boolean', ], ], ], 'LaunchTemplateHttpTokensState' => [ 'type' => 'string', 'enum' => [ 'optional', 'required', ], ], 'LaunchTemplateIamInstanceProfileSpecification' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', 'locationName' => 'arn', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], ], ], 'LaunchTemplateIamInstanceProfileSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', ], 'Name' => [ 'shape' => 'String', ], ], ], 'LaunchTemplateId' => [ 'type' => 'string', ], 'LaunchTemplateIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateId', 'locationName' => 'item', ], ], 'LaunchTemplateInstanceMaintenanceOptions' => [ 'type' => 'structure', 'members' => [ 'AutoRecovery' => [ 'shape' => 'LaunchTemplateAutoRecoveryState', 'locationName' => 'autoRecovery', ], ], ], 'LaunchTemplateInstanceMaintenanceOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'AutoRecovery' => [ 'shape' => 'LaunchTemplateAutoRecoveryState', ], ], ], 'LaunchTemplateInstanceMarketOptions' => [ 'type' => 'structure', 'members' => [ 'MarketType' => [ 'shape' => 'MarketType', 'locationName' => 'marketType', ], 'SpotOptions' => [ 'shape' => 'LaunchTemplateSpotMarketOptions', 'locationName' => 'spotOptions', ], ], ], 'LaunchTemplateInstanceMarketOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'MarketType' => [ 'shape' => 'MarketType', ], 'SpotOptions' => [ 'shape' => 'LaunchTemplateSpotMarketOptionsRequest', ], ], ], 'LaunchTemplateInstanceMetadataEndpointState' => [ 'type' => 'string', 'enum' => [ 'disabled', 'enabled', ], ], 'LaunchTemplateInstanceMetadataOptions' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'LaunchTemplateInstanceMetadataOptionsState', 'locationName' => 'state', ], 'HttpTokens' => [ 'shape' => 'LaunchTemplateHttpTokensState', 'locationName' => 'httpTokens', ], 'HttpPutResponseHopLimit' => [ 'shape' => 'Integer', 'locationName' => 'httpPutResponseHopLimit', ], 'HttpEndpoint' => [ 'shape' => 'LaunchTemplateInstanceMetadataEndpointState', 'locationName' => 'httpEndpoint', ], 'HttpProtocolIpv6' => [ 'shape' => 'LaunchTemplateInstanceMetadataProtocolIpv6', 'locationName' => 'httpProtocolIpv6', ], 'InstanceMetadataTags' => [ 'shape' => 'LaunchTemplateInstanceMetadataTagsState', 'locationName' => 'instanceMetadataTags', ], ], ], 'LaunchTemplateInstanceMetadataOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'HttpTokens' => [ 'shape' => 'LaunchTemplateHttpTokensState', ], 'HttpPutResponseHopLimit' => [ 'shape' => 'Integer', ], 'HttpEndpoint' => [ 'shape' => 'LaunchTemplateInstanceMetadataEndpointState', ], 'HttpProtocolIpv6' => [ 'shape' => 'LaunchTemplateInstanceMetadataProtocolIpv6', ], 'InstanceMetadataTags' => [ 'shape' => 'LaunchTemplateInstanceMetadataTagsState', ], ], ], 'LaunchTemplateInstanceMetadataOptionsState' => [ 'type' => 'string', 'enum' => [ 'pending', 'applied', ], ], 'LaunchTemplateInstanceMetadataProtocolIpv6' => [ 'type' => 'string', 'enum' => [ 'disabled', 'enabled', ], ], 'LaunchTemplateInstanceMetadataTagsState' => [ 'type' => 'string', 'enum' => [ 'disabled', 'enabled', ], ], 'LaunchTemplateInstanceNetworkInterfaceSpecification' => [ 'type' => 'structure', 'members' => [ 'AssociateCarrierIpAddress' => [ 'shape' => 'Boolean', 'locationName' => 'associateCarrierIpAddress', ], 'AssociatePublicIpAddress' => [ 'shape' => 'Boolean', 'locationName' => 'associatePublicIpAddress', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DeviceIndex' => [ 'shape' => 'Integer', 'locationName' => 'deviceIndex', ], 'Groups' => [ 'shape' => 'GroupIdStringList', 'locationName' => 'groupSet', ], 'InterfaceType' => [ 'shape' => 'String', 'locationName' => 'interfaceType', ], 'Ipv6AddressCount' => [ 'shape' => 'Integer', 'locationName' => 'ipv6AddressCount', ], 'Ipv6Addresses' => [ 'shape' => 'InstanceIpv6AddressList', 'locationName' => 'ipv6AddressesSet', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'PrivateIpAddresses' => [ 'shape' => 'PrivateIpAddressSpecificationList', 'locationName' => 'privateIpAddressesSet', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'secondaryPrivateIpAddressCount', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'NetworkCardIndex' => [ 'shape' => 'Integer', 'locationName' => 'networkCardIndex', ], 'Ipv4Prefixes' => [ 'shape' => 'Ipv4PrefixListResponse', 'locationName' => 'ipv4PrefixSet', ], 'Ipv4PrefixCount' => [ 'shape' => 'Integer', 'locationName' => 'ipv4PrefixCount', ], 'Ipv6Prefixes' => [ 'shape' => 'Ipv6PrefixListResponse', 'locationName' => 'ipv6PrefixSet', ], 'Ipv6PrefixCount' => [ 'shape' => 'Integer', 'locationName' => 'ipv6PrefixCount', ], 'PrimaryIpv6' => [ 'shape' => 'Boolean', 'locationName' => 'primaryIpv6', ], 'EnaSrdSpecification' => [ 'shape' => 'LaunchTemplateEnaSrdSpecification', 'locationName' => 'enaSrdSpecification', ], 'ConnectionTrackingSpecification' => [ 'shape' => 'ConnectionTrackingSpecification', 'locationName' => 'connectionTrackingSpecification', ], ], ], 'LaunchTemplateInstanceNetworkInterfaceSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateInstanceNetworkInterfaceSpecification', 'locationName' => 'item', ], ], 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'AssociateCarrierIpAddress' => [ 'shape' => 'Boolean', ], 'AssociatePublicIpAddress' => [ 'shape' => 'Boolean', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', ], 'Description' => [ 'shape' => 'String', ], 'DeviceIndex' => [ 'shape' => 'Integer', ], 'Groups' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'InterfaceType' => [ 'shape' => 'String', ], 'Ipv6AddressCount' => [ 'shape' => 'Integer', ], 'Ipv6Addresses' => [ 'shape' => 'InstanceIpv6AddressListRequest', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'PrivateIpAddress' => [ 'shape' => 'String', ], 'PrivateIpAddresses' => [ 'shape' => 'PrivateIpAddressSpecificationList', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'Integer', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], 'NetworkCardIndex' => [ 'shape' => 'Integer', ], 'Ipv4Prefixes' => [ 'shape' => 'Ipv4PrefixList', 'locationName' => 'Ipv4Prefix', ], 'Ipv4PrefixCount' => [ 'shape' => 'Integer', ], 'Ipv6Prefixes' => [ 'shape' => 'Ipv6PrefixList', 'locationName' => 'Ipv6Prefix', ], 'Ipv6PrefixCount' => [ 'shape' => 'Integer', ], 'PrimaryIpv6' => [ 'shape' => 'Boolean', ], 'EnaSrdSpecification' => [ 'shape' => 'EnaSrdSpecificationRequest', ], 'ConnectionTrackingSpecification' => [ 'shape' => 'ConnectionTrackingSpecificationRequest', ], ], ], 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest', 'locationName' => 'InstanceNetworkInterfaceSpecification', ], ], 'LaunchTemplateLicenseConfiguration' => [ 'type' => 'structure', 'members' => [ 'LicenseConfigurationArn' => [ 'shape' => 'String', 'locationName' => 'licenseConfigurationArn', ], ], ], 'LaunchTemplateLicenseConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'LicenseConfigurationArn' => [ 'shape' => 'String', ], ], ], 'LaunchTemplateLicenseList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateLicenseConfiguration', 'locationName' => 'item', ], ], 'LaunchTemplateLicenseSpecificationListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateLicenseConfigurationRequest', 'locationName' => 'item', ], ], 'LaunchTemplateName' => [ 'type' => 'string', 'max' => 128, 'min' => 3, 'pattern' => '[a-zA-Z0-9\\(\\)\\.\\-/_]+', ], 'LaunchTemplateNameStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateName', 'locationName' => 'item', ], ], 'LaunchTemplateOverrides' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'SpotPrice' => [ 'shape' => 'String', 'locationName' => 'spotPrice', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'WeightedCapacity' => [ 'shape' => 'Double', 'locationName' => 'weightedCapacity', ], 'Priority' => [ 'shape' => 'Double', 'locationName' => 'priority', ], 'InstanceRequirements' => [ 'shape' => 'InstanceRequirements', 'locationName' => 'instanceRequirements', ], ], ], 'LaunchTemplateOverridesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateOverrides', 'locationName' => 'item', ], ], 'LaunchTemplatePlacement' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Affinity' => [ 'shape' => 'String', 'locationName' => 'affinity', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'HostId' => [ 'shape' => 'String', 'locationName' => 'hostId', ], 'Tenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'tenancy', ], 'SpreadDomain' => [ 'shape' => 'String', 'locationName' => 'spreadDomain', ], 'HostResourceGroupArn' => [ 'shape' => 'String', 'locationName' => 'hostResourceGroupArn', ], 'PartitionNumber' => [ 'shape' => 'Integer', 'locationName' => 'partitionNumber', ], 'GroupId' => [ 'shape' => 'PlacementGroupId', 'locationName' => 'groupId', ], ], ], 'LaunchTemplatePlacementRequest' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', ], 'Affinity' => [ 'shape' => 'String', ], 'GroupName' => [ 'shape' => 'PlacementGroupName', ], 'HostId' => [ 'shape' => 'DedicatedHostId', ], 'Tenancy' => [ 'shape' => 'Tenancy', ], 'SpreadDomain' => [ 'shape' => 'String', ], 'HostResourceGroupArn' => [ 'shape' => 'String', ], 'PartitionNumber' => [ 'shape' => 'Integer', ], 'GroupId' => [ 'shape' => 'PlacementGroupId', ], ], ], 'LaunchTemplatePrivateDnsNameOptions' => [ 'type' => 'structure', 'members' => [ 'HostnameType' => [ 'shape' => 'HostnameType', 'locationName' => 'hostnameType', ], 'EnableResourceNameDnsARecord' => [ 'shape' => 'Boolean', 'locationName' => 'enableResourceNameDnsARecord', ], 'EnableResourceNameDnsAAAARecord' => [ 'shape' => 'Boolean', 'locationName' => 'enableResourceNameDnsAAAARecord', ], ], ], 'LaunchTemplatePrivateDnsNameOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'HostnameType' => [ 'shape' => 'HostnameType', ], 'EnableResourceNameDnsARecord' => [ 'shape' => 'Boolean', ], 'EnableResourceNameDnsAAAARecord' => [ 'shape' => 'Boolean', ], ], ], 'LaunchTemplateSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplate', 'locationName' => 'item', ], ], 'LaunchTemplateSpecification' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'String', ], 'Version' => [ 'shape' => 'String', ], ], ], 'LaunchTemplateSpotMarketOptions' => [ 'type' => 'structure', 'members' => [ 'MaxPrice' => [ 'shape' => 'String', 'locationName' => 'maxPrice', ], 'SpotInstanceType' => [ 'shape' => 'SpotInstanceType', 'locationName' => 'spotInstanceType', ], 'BlockDurationMinutes' => [ 'shape' => 'Integer', 'locationName' => 'blockDurationMinutes', ], 'ValidUntil' => [ 'shape' => 'DateTime', 'locationName' => 'validUntil', ], 'InstanceInterruptionBehavior' => [ 'shape' => 'InstanceInterruptionBehavior', 'locationName' => 'instanceInterruptionBehavior', ], ], ], 'LaunchTemplateSpotMarketOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'MaxPrice' => [ 'shape' => 'String', ], 'SpotInstanceType' => [ 'shape' => 'SpotInstanceType', ], 'BlockDurationMinutes' => [ 'shape' => 'Integer', ], 'ValidUntil' => [ 'shape' => 'DateTime', ], 'InstanceInterruptionBehavior' => [ 'shape' => 'InstanceInterruptionBehavior', ], ], ], 'LaunchTemplateTagSpecification' => [ 'type' => 'structure', 'members' => [ 'ResourceType' => [ 'shape' => 'ResourceType', 'locationName' => 'resourceType', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'LaunchTemplateTagSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateTagSpecification', 'locationName' => 'item', ], ], 'LaunchTemplateTagSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'ResourceType' => [ 'shape' => 'ResourceType', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'Tag', ], ], ], 'LaunchTemplateTagSpecificationRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateTagSpecificationRequest', 'locationName' => 'LaunchTemplateTagSpecificationRequest', ], ], 'LaunchTemplateVersion' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'String', 'locationName' => 'launchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', 'locationName' => 'launchTemplateName', ], 'VersionNumber' => [ 'shape' => 'Long', 'locationName' => 'versionNumber', ], 'VersionDescription' => [ 'shape' => 'VersionDescription', 'locationName' => 'versionDescription', ], 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'CreatedBy' => [ 'shape' => 'String', 'locationName' => 'createdBy', ], 'DefaultVersion' => [ 'shape' => 'Boolean', 'locationName' => 'defaultVersion', ], 'LaunchTemplateData' => [ 'shape' => 'ResponseLaunchTemplateData', 'locationName' => 'launchTemplateData', ], ], ], 'LaunchTemplateVersionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateVersion', 'locationName' => 'item', ], ], 'LaunchTemplatesMonitoring' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], ], ], 'LaunchTemplatesMonitoringRequest' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], ], ], 'LicenseConfiguration' => [ 'type' => 'structure', 'members' => [ 'LicenseConfigurationArn' => [ 'shape' => 'String', 'locationName' => 'licenseConfigurationArn', ], ], ], 'LicenseConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'LicenseConfigurationArn' => [ 'shape' => 'String', ], ], ], 'LicenseList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LicenseConfiguration', 'locationName' => 'item', ], ], 'LicenseSpecificationListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'LicenseConfigurationRequest', 'locationName' => 'item', ], ], 'ListImagesInRecycleBinMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'ListImagesInRecycleBinRequest' => [ 'type' => 'structure', 'members' => [ 'ImageIds' => [ 'shape' => 'ImageIdStringList', 'locationName' => 'ImageId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'ListImagesInRecycleBinMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ListImagesInRecycleBinResult' => [ 'type' => 'structure', 'members' => [ 'Images' => [ 'shape' => 'ImageRecycleBinInfoList', 'locationName' => 'imageSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'ListSnapshotsInRecycleBinMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'ListSnapshotsInRecycleBinRequest' => [ 'type' => 'structure', 'members' => [ 'MaxResults' => [ 'shape' => 'ListSnapshotsInRecycleBinMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'SnapshotIds' => [ 'shape' => 'SnapshotIdStringList', 'locationName' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ListSnapshotsInRecycleBinResult' => [ 'type' => 'structure', 'members' => [ 'Snapshots' => [ 'shape' => 'SnapshotRecycleBinInfoList', 'locationName' => 'snapshotSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'ListingState' => [ 'type' => 'string', 'enum' => [ 'available', 'sold', 'cancelled', 'pending', ], ], 'ListingStatus' => [ 'type' => 'string', 'enum' => [ 'active', 'pending', 'cancelled', 'closed', ], ], 'LoadBalancerArn' => [ 'type' => 'string', ], 'LoadBalancersConfig' => [ 'type' => 'structure', 'members' => [ 'ClassicLoadBalancersConfig' => [ 'shape' => 'ClassicLoadBalancersConfig', 'locationName' => 'classicLoadBalancersConfig', ], 'TargetGroupsConfig' => [ 'shape' => 'TargetGroupsConfig', 'locationName' => 'targetGroupsConfig', ], ], ], 'LoadPermission' => [ 'type' => 'structure', 'members' => [ 'UserId' => [ 'shape' => 'String', 'locationName' => 'userId', ], 'Group' => [ 'shape' => 'PermissionGroup', 'locationName' => 'group', ], ], ], 'LoadPermissionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LoadPermission', 'locationName' => 'item', ], ], 'LoadPermissionListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'LoadPermissionRequest', 'locationName' => 'item', ], ], 'LoadPermissionModifications' => [ 'type' => 'structure', 'members' => [ 'Add' => [ 'shape' => 'LoadPermissionListRequest', ], 'Remove' => [ 'shape' => 'LoadPermissionListRequest', ], ], ], 'LoadPermissionRequest' => [ 'type' => 'structure', 'members' => [ 'Group' => [ 'shape' => 'PermissionGroup', ], 'UserId' => [ 'shape' => 'String', ], ], ], 'LocalGateway' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayId' => [ 'shape' => 'LocalGatewayId', 'locationName' => 'localGatewayId', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'LocalGatewayId' => [ 'type' => 'string', ], 'LocalGatewayIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayId', 'locationName' => 'item', ], ], 'LocalGatewayMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'LocalGatewayRoute' => [ 'type' => 'structure', 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'LocalGatewayVirtualInterfaceGroupId' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupId', 'locationName' => 'localGatewayVirtualInterfaceGroupId', ], 'Type' => [ 'shape' => 'LocalGatewayRouteType', 'locationName' => 'type', ], 'State' => [ 'shape' => 'LocalGatewayRouteState', 'locationName' => 'state', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', 'locationName' => 'localGatewayRouteTableId', ], 'LocalGatewayRouteTableArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'localGatewayRouteTableArn', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'CoipPoolId' => [ 'shape' => 'CoipPoolId', 'locationName' => 'coipPoolId', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'DestinationPrefixListId' => [ 'shape' => 'PrefixListResourceId', 'locationName' => 'destinationPrefixListId', ], ], ], 'LocalGatewayRouteList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayRoute', 'locationName' => 'item', ], ], 'LocalGatewayRouteState' => [ 'type' => 'string', 'enum' => [ 'pending', 'active', 'blackhole', 'deleting', 'deleted', ], ], 'LocalGatewayRouteTable' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableId' => [ 'shape' => 'String', 'locationName' => 'localGatewayRouteTableId', ], 'LocalGatewayRouteTableArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'localGatewayRouteTableArn', ], 'LocalGatewayId' => [ 'shape' => 'LocalGatewayId', 'locationName' => 'localGatewayId', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'Mode' => [ 'shape' => 'LocalGatewayRouteTableMode', 'locationName' => 'mode', ], 'StateReason' => [ 'shape' => 'StateReason', 'locationName' => 'stateReason', ], ], ], 'LocalGatewayRouteTableIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayRoutetableId', 'locationName' => 'item', ], ], 'LocalGatewayRouteTableMode' => [ 'type' => 'string', 'enum' => [ 'direct-vpc-routing', 'coip', ], ], 'LocalGatewayRouteTableSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayRouteTable', 'locationName' => 'item', ], ], 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId' => [ 'shape' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId', 'locationName' => 'localGatewayRouteTableVirtualInterfaceGroupAssociationId', ], 'LocalGatewayVirtualInterfaceGroupId' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupId', 'locationName' => 'localGatewayVirtualInterfaceGroupId', ], 'LocalGatewayId' => [ 'shape' => 'String', 'locationName' => 'localGatewayId', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayId', 'locationName' => 'localGatewayRouteTableId', ], 'LocalGatewayRouteTableArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'localGatewayRouteTableArn', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId' => [ 'type' => 'string', ], 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId', 'locationName' => 'item', ], ], 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation', 'locationName' => 'item', ], ], 'LocalGatewayRouteTableVpcAssociation' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVpcAssociationId' => [ 'shape' => 'LocalGatewayRouteTableVpcAssociationId', 'locationName' => 'localGatewayRouteTableVpcAssociationId', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'String', 'locationName' => 'localGatewayRouteTableId', ], 'LocalGatewayRouteTableArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'localGatewayRouteTableArn', ], 'LocalGatewayId' => [ 'shape' => 'String', 'locationName' => 'localGatewayId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'LocalGatewayRouteTableVpcAssociationId' => [ 'type' => 'string', ], 'LocalGatewayRouteTableVpcAssociationIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayRouteTableVpcAssociationId', 'locationName' => 'item', ], ], 'LocalGatewayRouteTableVpcAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayRouteTableVpcAssociation', 'locationName' => 'item', ], ], 'LocalGatewayRouteType' => [ 'type' => 'string', 'enum' => [ 'static', 'propagated', ], ], 'LocalGatewayRoutetableId' => [ 'type' => 'string', ], 'LocalGatewaySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGateway', 'locationName' => 'item', ], ], 'LocalGatewayVirtualInterface' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayVirtualInterfaceId' => [ 'shape' => 'LocalGatewayVirtualInterfaceId', 'locationName' => 'localGatewayVirtualInterfaceId', ], 'LocalGatewayId' => [ 'shape' => 'String', 'locationName' => 'localGatewayId', ], 'Vlan' => [ 'shape' => 'Integer', 'locationName' => 'vlan', ], 'LocalAddress' => [ 'shape' => 'String', 'locationName' => 'localAddress', ], 'PeerAddress' => [ 'shape' => 'String', 'locationName' => 'peerAddress', ], 'LocalBgpAsn' => [ 'shape' => 'Integer', 'locationName' => 'localBgpAsn', ], 'PeerBgpAsn' => [ 'shape' => 'Integer', 'locationName' => 'peerBgpAsn', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'LocalGatewayVirtualInterfaceGroup' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayVirtualInterfaceGroupId' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupId', 'locationName' => 'localGatewayVirtualInterfaceGroupId', ], 'LocalGatewayVirtualInterfaceIds' => [ 'shape' => 'LocalGatewayVirtualInterfaceIdSet', 'locationName' => 'localGatewayVirtualInterfaceIdSet', ], 'LocalGatewayId' => [ 'shape' => 'String', 'locationName' => 'localGatewayId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'LocalGatewayVirtualInterfaceGroupId' => [ 'type' => 'string', ], 'LocalGatewayVirtualInterfaceGroupIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupId', 'locationName' => 'item', ], ], 'LocalGatewayVirtualInterfaceGroupSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroup', 'locationName' => 'item', ], ], 'LocalGatewayVirtualInterfaceId' => [ 'type' => 'string', ], 'LocalGatewayVirtualInterfaceIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayVirtualInterfaceId', 'locationName' => 'item', ], ], 'LocalGatewayVirtualInterfaceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayVirtualInterface', 'locationName' => 'item', ], ], 'LocalStorage' => [ 'type' => 'string', 'enum' => [ 'included', 'required', 'excluded', ], ], 'LocalStorageType' => [ 'type' => 'string', 'enum' => [ 'hdd', 'ssd', ], ], 'LocalStorageTypeSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalStorageType', 'locationName' => 'item', ], ], 'Location' => [ 'type' => 'string', ], 'LocationType' => [ 'type' => 'string', 'enum' => [ 'region', 'availability-zone', 'availability-zone-id', 'outpost', ], ], 'LockMode' => [ 'type' => 'string', 'enum' => [ 'compliance', 'governance', ], ], 'LockSnapshotRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', 'LockMode', ], 'members' => [ 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'LockMode' => [ 'shape' => 'LockMode', ], 'CoolOffPeriod' => [ 'shape' => 'CoolOffPeriodRequestHours', ], 'LockDuration' => [ 'shape' => 'RetentionPeriodRequestDays', ], 'ExpirationDate' => [ 'shape' => 'MillisecondDateTime', ], ], ], 'LockSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'LockState' => [ 'shape' => 'LockState', 'locationName' => 'lockState', ], 'LockDuration' => [ 'shape' => 'RetentionPeriodResponseDays', 'locationName' => 'lockDuration', ], 'CoolOffPeriod' => [ 'shape' => 'CoolOffPeriodResponseHours', 'locationName' => 'coolOffPeriod', ], 'CoolOffPeriodExpiresOn' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'coolOffPeriodExpiresOn', ], 'LockCreatedOn' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lockCreatedOn', ], 'LockExpiresOn' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lockExpiresOn', ], 'LockDurationStartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lockDurationStartTime', ], ], ], 'LockState' => [ 'type' => 'string', 'enum' => [ 'compliance', 'governance', 'compliance-cooloff', 'expired', ], ], 'LockedSnapshotsInfo' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'LockState' => [ 'shape' => 'LockState', 'locationName' => 'lockState', ], 'LockDuration' => [ 'shape' => 'RetentionPeriodResponseDays', 'locationName' => 'lockDuration', ], 'CoolOffPeriod' => [ 'shape' => 'CoolOffPeriodResponseHours', 'locationName' => 'coolOffPeriod', ], 'CoolOffPeriodExpiresOn' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'coolOffPeriodExpiresOn', ], 'LockCreatedOn' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lockCreatedOn', ], 'LockDurationStartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lockDurationStartTime', ], 'LockExpiresOn' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lockExpiresOn', ], ], ], 'LockedSnapshotsInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LockedSnapshotsInfo', 'locationName' => 'item', ], ], 'LogDestinationType' => [ 'type' => 'string', 'enum' => [ 'cloud-watch-logs', 's3', 'kinesis-data-firehose', ], ], 'Long' => [ 'type' => 'long', ], 'MaintenanceDetails' => [ 'type' => 'structure', 'members' => [ 'PendingMaintenance' => [ 'shape' => 'String', 'locationName' => 'pendingMaintenance', ], 'MaintenanceAutoAppliedAfter' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'maintenanceAutoAppliedAfter', ], 'LastMaintenanceApplied' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lastMaintenanceApplied', ], ], ], 'ManagedPrefixList' => [ 'type' => 'structure', 'members' => [ 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', 'locationName' => 'prefixListId', ], 'AddressFamily' => [ 'shape' => 'String', 'locationName' => 'addressFamily', ], 'State' => [ 'shape' => 'PrefixListState', 'locationName' => 'state', ], 'StateMessage' => [ 'shape' => 'String', 'locationName' => 'stateMessage', ], 'PrefixListArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'prefixListArn', ], 'PrefixListName' => [ 'shape' => 'String', 'locationName' => 'prefixListName', ], 'MaxEntries' => [ 'shape' => 'Integer', 'locationName' => 'maxEntries', ], 'Version' => [ 'shape' => 'Long', 'locationName' => 'version', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], ], ], 'ManagedPrefixListSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedPrefixList', 'locationName' => 'item', ], ], 'MarketType' => [ 'type' => 'string', 'enum' => [ 'spot', 'capacity-block', ], ], 'MaxIpv4AddrPerInterface' => [ 'type' => 'integer', ], 'MaxIpv6AddrPerInterface' => [ 'type' => 'integer', ], 'MaxNetworkInterfaces' => [ 'type' => 'integer', ], 'MaxResults' => [ 'type' => 'integer', ], 'MaxResultsParam' => [ 'type' => 'integer', 'max' => 100, 'min' => 0, ], 'MaximumBandwidthInMbps' => [ 'type' => 'integer', ], 'MaximumEfaInterfaces' => [ 'type' => 'integer', ], 'MaximumIops' => [ 'type' => 'integer', ], 'MaximumNetworkCards' => [ 'type' => 'integer', ], 'MaximumThroughputInMBps' => [ 'type' => 'double', ], 'MembershipType' => [ 'type' => 'string', 'enum' => [ 'static', 'igmp', ], ], 'MemoryGiBPerVCpu' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Double', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Double', 'locationName' => 'max', ], ], ], 'MemoryGiBPerVCpuRequest' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Double', ], 'Max' => [ 'shape' => 'Double', ], ], ], 'MemoryInfo' => [ 'type' => 'structure', 'members' => [ 'SizeInMiB' => [ 'shape' => 'MemorySize', 'locationName' => 'sizeInMiB', ], ], ], 'MemoryMiB' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Integer', 'locationName' => 'max', ], ], ], 'MemoryMiBRequest' => [ 'type' => 'structure', 'required' => [ 'Min', ], 'members' => [ 'Min' => [ 'shape' => 'Integer', ], 'Max' => [ 'shape' => 'Integer', ], ], ], 'MemorySize' => [ 'type' => 'long', ], 'MetricPoint' => [ 'type' => 'structure', 'members' => [ 'StartDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'startDate', ], 'EndDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'endDate', ], 'Value' => [ 'shape' => 'Float', 'locationName' => 'value', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], ], ], 'MetricPoints' => [ 'type' => 'list', 'member' => [ 'shape' => 'MetricPoint', 'locationName' => 'item', ], ], 'MetricType' => [ 'type' => 'string', 'enum' => [ 'aggregate-latency', ], ], 'MillisecondDateTime' => [ 'type' => 'timestamp', ], 'ModifyAddressAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'AllocationId', ], 'members' => [ 'AllocationId' => [ 'shape' => 'AllocationId', ], 'DomainName' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyAddressAttributeResult' => [ 'type' => 'structure', 'members' => [ 'Address' => [ 'shape' => 'AddressAttribute', 'locationName' => 'address', ], ], ], 'ModifyAvailabilityZoneGroupRequest' => [ 'type' => 'structure', 'required' => [ 'GroupName', 'OptInStatus', ], 'members' => [ 'GroupName' => [ 'shape' => 'String', ], 'OptInStatus' => [ 'shape' => 'ModifyAvailabilityZoneOptInStatus', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyAvailabilityZoneGroupResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyAvailabilityZoneOptInStatus' => [ 'type' => 'string', 'enum' => [ 'opted-in', 'not-opted-in', ], ], 'ModifyCapacityReservationFleetRequest' => [ 'type' => 'structure', 'required' => [ 'CapacityReservationFleetId', ], 'members' => [ 'CapacityReservationFleetId' => [ 'shape' => 'CapacityReservationFleetId', ], 'TotalTargetCapacity' => [ 'shape' => 'Integer', ], 'EndDate' => [ 'shape' => 'MillisecondDateTime', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'RemoveEndDate' => [ 'shape' => 'Boolean', ], ], ], 'ModifyCapacityReservationFleetResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyCapacityReservationRequest' => [ 'type' => 'structure', 'required' => [ 'CapacityReservationId', ], 'members' => [ 'CapacityReservationId' => [ 'shape' => 'CapacityReservationId', ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'EndDate' => [ 'shape' => 'DateTime', ], 'EndDateType' => [ 'shape' => 'EndDateType', ], 'Accept' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'AdditionalInfo' => [ 'shape' => 'String', ], ], ], 'ModifyCapacityReservationResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyClientVpnEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'ServerCertificateArn' => [ 'shape' => 'String', ], 'ConnectionLogOptions' => [ 'shape' => 'ConnectionLogOptions', ], 'DnsServers' => [ 'shape' => 'DnsServersOptionsModifyStructure', ], 'VpnPort' => [ 'shape' => 'Integer', ], 'Description' => [ 'shape' => 'String', ], 'SplitTunnel' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'SecurityGroupIds' => [ 'shape' => 'ClientVpnSecurityGroupIdSet', 'locationName' => 'SecurityGroupId', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'SelfServicePortal' => [ 'shape' => 'SelfServicePortal', ], 'ClientConnectOptions' => [ 'shape' => 'ClientConnectOptions', ], 'SessionTimeoutHours' => [ 'shape' => 'Integer', ], 'ClientLoginBannerOptions' => [ 'shape' => 'ClientLoginBannerOptions', ], ], ], 'ModifyClientVpnEndpointResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyDefaultCreditSpecificationRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceFamily', 'CpuCredits', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceFamily' => [ 'shape' => 'UnlimitedSupportedInstanceFamily', ], 'CpuCredits' => [ 'shape' => 'String', ], ], ], 'ModifyDefaultCreditSpecificationResult' => [ 'type' => 'structure', 'members' => [ 'InstanceFamilyCreditSpecification' => [ 'shape' => 'InstanceFamilyCreditSpecification', 'locationName' => 'instanceFamilyCreditSpecification', ], ], ], 'ModifyEbsDefaultKmsKeyIdRequest' => [ 'type' => 'structure', 'required' => [ 'KmsKeyId', ], 'members' => [ 'KmsKeyId' => [ 'shape' => 'KmsKeyId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyEbsDefaultKmsKeyIdResult' => [ 'type' => 'structure', 'members' => [ 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], ], ], 'ModifyFleetRequest' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ExcessCapacityTerminationPolicy' => [ 'shape' => 'FleetExcessCapacityTerminationPolicy', ], 'LaunchTemplateConfigs' => [ 'shape' => 'FleetLaunchTemplateConfigListRequest', 'locationName' => 'LaunchTemplateConfig', ], 'FleetId' => [ 'shape' => 'FleetId', ], 'TargetCapacitySpecification' => [ 'shape' => 'TargetCapacitySpecificationRequest', ], 'Context' => [ 'shape' => 'String', ], ], ], 'ModifyFleetResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyFpgaImageAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'FpgaImageId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'FpgaImageId' => [ 'shape' => 'FpgaImageId', ], 'Attribute' => [ 'shape' => 'FpgaImageAttributeName', ], 'OperationType' => [ 'shape' => 'OperationType', ], 'UserIds' => [ 'shape' => 'UserIdStringList', 'locationName' => 'UserId', ], 'UserGroups' => [ 'shape' => 'UserGroupStringList', 'locationName' => 'UserGroup', ], 'ProductCodes' => [ 'shape' => 'ProductCodeStringList', 'locationName' => 'ProductCode', ], 'LoadPermission' => [ 'shape' => 'LoadPermissionModifications', ], 'Description' => [ 'shape' => 'String', ], 'Name' => [ 'shape' => 'String', ], ], ], 'ModifyFpgaImageAttributeResult' => [ 'type' => 'structure', 'members' => [ 'FpgaImageAttribute' => [ 'shape' => 'FpgaImageAttribute', 'locationName' => 'fpgaImageAttribute', ], ], ], 'ModifyHostsRequest' => [ 'type' => 'structure', 'required' => [ 'HostIds', ], 'members' => [ 'AutoPlacement' => [ 'shape' => 'AutoPlacement', 'locationName' => 'autoPlacement', ], 'HostIds' => [ 'shape' => 'RequestHostIdList', 'locationName' => 'hostId', ], 'HostRecovery' => [ 'shape' => 'HostRecovery', ], 'InstanceType' => [ 'shape' => 'String', ], 'InstanceFamily' => [ 'shape' => 'String', ], 'HostMaintenance' => [ 'shape' => 'HostMaintenance', ], ], ], 'ModifyHostsResult' => [ 'type' => 'structure', 'members' => [ 'Successful' => [ 'shape' => 'ResponseHostIdList', 'locationName' => 'successful', ], 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemList', 'locationName' => 'unsuccessful', ], ], ], 'ModifyIdFormatRequest' => [ 'type' => 'structure', 'required' => [ 'Resource', 'UseLongIds', ], 'members' => [ 'Resource' => [ 'shape' => 'String', ], 'UseLongIds' => [ 'shape' => 'Boolean', ], ], ], 'ModifyIdentityIdFormatRequest' => [ 'type' => 'structure', 'required' => [ 'PrincipalArn', 'Resource', 'UseLongIds', ], 'members' => [ 'PrincipalArn' => [ 'shape' => 'String', 'locationName' => 'principalArn', ], 'Resource' => [ 'shape' => 'String', 'locationName' => 'resource', ], 'UseLongIds' => [ 'shape' => 'Boolean', 'locationName' => 'useLongIds', ], ], ], 'ModifyImageAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'Attribute' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'AttributeValue', ], 'ImageId' => [ 'shape' => 'ImageId', ], 'LaunchPermission' => [ 'shape' => 'LaunchPermissionModifications', ], 'OperationType' => [ 'shape' => 'OperationType', ], 'ProductCodes' => [ 'shape' => 'ProductCodeStringList', 'locationName' => 'ProductCode', ], 'UserGroups' => [ 'shape' => 'UserGroupStringList', 'locationName' => 'UserGroup', ], 'UserIds' => [ 'shape' => 'UserIdStringList', 'locationName' => 'UserId', ], 'Value' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'OrganizationArns' => [ 'shape' => 'OrganizationArnStringList', 'locationName' => 'OrganizationArn', ], 'OrganizationalUnitArns' => [ 'shape' => 'OrganizationalUnitArnStringList', 'locationName' => 'OrganizationalUnitArn', ], 'ImdsSupport' => [ 'shape' => 'AttributeValue', ], ], ], 'ModifyInstanceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'SourceDestCheck' => [ 'shape' => 'AttributeBooleanValue', ], 'Attribute' => [ 'shape' => 'InstanceAttributeName', 'locationName' => 'attribute', ], 'BlockDeviceMappings' => [ 'shape' => 'InstanceBlockDeviceMappingSpecificationList', 'locationName' => 'blockDeviceMapping', ], 'DisableApiTermination' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'disableApiTermination', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'EbsOptimized' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'ebsOptimized', ], 'EnaSupport' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'enaSupport', ], 'Groups' => [ 'shape' => 'GroupIdStringList', 'locationName' => 'GroupId', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'InstanceInitiatedShutdownBehavior' => [ 'shape' => 'AttributeValue', 'locationName' => 'instanceInitiatedShutdownBehavior', ], 'InstanceType' => [ 'shape' => 'AttributeValue', 'locationName' => 'instanceType', ], 'Kernel' => [ 'shape' => 'AttributeValue', 'locationName' => 'kernel', ], 'Ramdisk' => [ 'shape' => 'AttributeValue', 'locationName' => 'ramdisk', ], 'SriovNetSupport' => [ 'shape' => 'AttributeValue', 'locationName' => 'sriovNetSupport', ], 'UserData' => [ 'shape' => 'BlobAttributeValue', 'locationName' => 'userData', ], 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], 'DisableApiStop' => [ 'shape' => 'AttributeBooleanValue', ], ], ], 'ModifyInstanceCapacityReservationAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'CapacityReservationSpecification', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'CapacityReservationSpecification' => [ 'shape' => 'CapacityReservationSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyInstanceCapacityReservationAttributesResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyInstanceCreditSpecificationRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceCreditSpecifications', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', ], 'InstanceCreditSpecifications' => [ 'shape' => 'InstanceCreditSpecificationListRequest', 'locationName' => 'InstanceCreditSpecification', ], ], ], 'ModifyInstanceCreditSpecificationResult' => [ 'type' => 'structure', 'members' => [ 'SuccessfulInstanceCreditSpecifications' => [ 'shape' => 'SuccessfulInstanceCreditSpecificationSet', 'locationName' => 'successfulInstanceCreditSpecificationSet', ], 'UnsuccessfulInstanceCreditSpecifications' => [ 'shape' => 'UnsuccessfulInstanceCreditSpecificationSet', 'locationName' => 'unsuccessfulInstanceCreditSpecificationSet', ], ], ], 'ModifyInstanceEventStartTimeRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'InstanceEventId', 'NotBefore', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceId' => [ 'shape' => 'InstanceId', ], 'InstanceEventId' => [ 'shape' => 'String', ], 'NotBefore' => [ 'shape' => 'DateTime', ], ], ], 'ModifyInstanceEventStartTimeResult' => [ 'type' => 'structure', 'members' => [ 'Event' => [ 'shape' => 'InstanceStatusEvent', 'locationName' => 'event', ], ], ], 'ModifyInstanceEventWindowRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceEventWindowId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Name' => [ 'shape' => 'String', ], 'InstanceEventWindowId' => [ 'shape' => 'InstanceEventWindowId', ], 'TimeRanges' => [ 'shape' => 'InstanceEventWindowTimeRangeRequestSet', 'locationName' => 'TimeRange', ], 'CronExpression' => [ 'shape' => 'InstanceEventWindowCronExpression', ], ], ], 'ModifyInstanceEventWindowResult' => [ 'type' => 'structure', 'members' => [ 'InstanceEventWindow' => [ 'shape' => 'InstanceEventWindow', 'locationName' => 'instanceEventWindow', ], ], ], 'ModifyInstanceMaintenanceOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'AutoRecovery' => [ 'shape' => 'InstanceAutoRecoveryState', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyInstanceMaintenanceOptionsResult' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'AutoRecovery' => [ 'shape' => 'InstanceAutoRecoveryState', 'locationName' => 'autoRecovery', ], ], ], 'ModifyInstanceMetadataOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'HttpTokens' => [ 'shape' => 'HttpTokensState', ], 'HttpPutResponseHopLimit' => [ 'shape' => 'Integer', ], 'HttpEndpoint' => [ 'shape' => 'InstanceMetadataEndpointState', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'HttpProtocolIpv6' => [ 'shape' => 'InstanceMetadataProtocolState', ], 'InstanceMetadataTags' => [ 'shape' => 'InstanceMetadataTagsState', ], ], ], 'ModifyInstanceMetadataOptionsResult' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceMetadataOptions' => [ 'shape' => 'InstanceMetadataOptionsResponse', 'locationName' => 'instanceMetadataOptions', ], ], ], 'ModifyInstancePlacementRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'Affinity' => [ 'shape' => 'Affinity', 'locationName' => 'affinity', ], 'GroupName' => [ 'shape' => 'PlacementGroupName', ], 'HostId' => [ 'shape' => 'DedicatedHostId', 'locationName' => 'hostId', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'Tenancy' => [ 'shape' => 'HostTenancy', 'locationName' => 'tenancy', ], 'PartitionNumber' => [ 'shape' => 'Integer', ], 'HostResourceGroupArn' => [ 'shape' => 'String', ], 'GroupId' => [ 'shape' => 'PlacementGroupId', ], ], ], 'ModifyInstancePlacementResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyIpamPoolRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Description' => [ 'shape' => 'String', ], 'AutoImport' => [ 'shape' => 'Boolean', ], 'AllocationMinNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', ], 'AllocationMaxNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', ], 'AllocationDefaultNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', ], 'ClearAllocationDefaultNetmaskLength' => [ 'shape' => 'Boolean', ], 'AddAllocationResourceTags' => [ 'shape' => 'RequestIpamResourceTagList', 'locationName' => 'AddAllocationResourceTag', ], 'RemoveAllocationResourceTags' => [ 'shape' => 'RequestIpamResourceTagList', 'locationName' => 'RemoveAllocationResourceTag', ], ], ], 'ModifyIpamPoolResult' => [ 'type' => 'structure', 'members' => [ 'IpamPool' => [ 'shape' => 'IpamPool', 'locationName' => 'ipamPool', ], ], ], 'ModifyIpamRequest' => [ 'type' => 'structure', 'required' => [ 'IpamId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamId' => [ 'shape' => 'IpamId', ], 'Description' => [ 'shape' => 'String', ], 'AddOperatingRegions' => [ 'shape' => 'AddIpamOperatingRegionSet', 'locationName' => 'AddOperatingRegion', ], 'RemoveOperatingRegions' => [ 'shape' => 'RemoveIpamOperatingRegionSet', 'locationName' => 'RemoveOperatingRegion', ], 'Tier' => [ 'shape' => 'IpamTier', ], ], ], 'ModifyIpamResourceCidrRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceId', 'ResourceCidr', 'ResourceRegion', 'CurrentIpamScopeId', 'Monitored', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ResourceId' => [ 'shape' => 'String', ], 'ResourceCidr' => [ 'shape' => 'String', ], 'ResourceRegion' => [ 'shape' => 'String', ], 'CurrentIpamScopeId' => [ 'shape' => 'IpamScopeId', ], 'DestinationIpamScopeId' => [ 'shape' => 'IpamScopeId', ], 'Monitored' => [ 'shape' => 'Boolean', ], ], ], 'ModifyIpamResourceCidrResult' => [ 'type' => 'structure', 'members' => [ 'IpamResourceCidr' => [ 'shape' => 'IpamResourceCidr', 'locationName' => 'ipamResourceCidr', ], ], ], 'ModifyIpamResourceDiscoveryRequest' => [ 'type' => 'structure', 'required' => [ 'IpamResourceDiscoveryId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', ], 'Description' => [ 'shape' => 'String', ], 'AddOperatingRegions' => [ 'shape' => 'AddIpamOperatingRegionSet', 'locationName' => 'AddOperatingRegion', ], 'RemoveOperatingRegions' => [ 'shape' => 'RemoveIpamOperatingRegionSet', 'locationName' => 'RemoveOperatingRegion', ], ], ], 'ModifyIpamResourceDiscoveryResult' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscovery' => [ 'shape' => 'IpamResourceDiscovery', 'locationName' => 'ipamResourceDiscovery', ], ], ], 'ModifyIpamResult' => [ 'type' => 'structure', 'members' => [ 'Ipam' => [ 'shape' => 'Ipam', 'locationName' => 'ipam', ], ], ], 'ModifyIpamScopeRequest' => [ 'type' => 'structure', 'required' => [ 'IpamScopeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamScopeId' => [ 'shape' => 'IpamScopeId', ], 'Description' => [ 'shape' => 'String', ], ], ], 'ModifyIpamScopeResult' => [ 'type' => 'structure', 'members' => [ 'IpamScope' => [ 'shape' => 'IpamScope', 'locationName' => 'ipamScope', ], ], ], 'ModifyLaunchTemplateRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', ], 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', ], 'DefaultVersion' => [ 'shape' => 'String', 'locationName' => 'SetDefaultVersion', ], ], ], 'ModifyLaunchTemplateResult' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplate' => [ 'shape' => 'LaunchTemplate', 'locationName' => 'launchTemplate', ], ], ], 'ModifyLocalGatewayRouteRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', ], 'LocalGatewayVirtualInterfaceGroupId' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupId', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'DestinationPrefixListId' => [ 'shape' => 'PrefixListResourceId', ], ], ], 'ModifyLocalGatewayRouteResult' => [ 'type' => 'structure', 'members' => [ 'Route' => [ 'shape' => 'LocalGatewayRoute', 'locationName' => 'route', ], ], ], 'ModifyManagedPrefixListRequest' => [ 'type' => 'structure', 'required' => [ 'PrefixListId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'CurrentVersion' => [ 'shape' => 'Long', ], 'PrefixListName' => [ 'shape' => 'String', ], 'AddEntries' => [ 'shape' => 'AddPrefixListEntries', 'locationName' => 'AddEntry', ], 'RemoveEntries' => [ 'shape' => 'RemovePrefixListEntries', 'locationName' => 'RemoveEntry', ], 'MaxEntries' => [ 'shape' => 'Integer', ], ], ], 'ModifyManagedPrefixListResult' => [ 'type' => 'structure', 'members' => [ 'PrefixList' => [ 'shape' => 'ManagedPrefixList', 'locationName' => 'prefixList', ], ], ], 'ModifyNetworkInterfaceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'Attachment' => [ 'shape' => 'NetworkInterfaceAttachmentChanges', 'locationName' => 'attachment', ], 'Description' => [ 'shape' => 'AttributeValue', 'locationName' => 'description', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Groups' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'SourceDestCheck' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'sourceDestCheck', ], 'EnaSrdSpecification' => [ 'shape' => 'EnaSrdSpecification', ], 'EnablePrimaryIpv6' => [ 'shape' => 'Boolean', ], 'ConnectionTrackingSpecification' => [ 'shape' => 'ConnectionTrackingSpecificationRequest', ], ], ], 'ModifyPrivateDnsNameOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceId' => [ 'shape' => 'InstanceId', ], 'PrivateDnsHostnameType' => [ 'shape' => 'HostnameType', ], 'EnableResourceNameDnsARecord' => [ 'shape' => 'Boolean', ], 'EnableResourceNameDnsAAAARecord' => [ 'shape' => 'Boolean', ], ], ], 'ModifyPrivateDnsNameOptionsResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyReservedInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'ReservedInstancesIds', 'TargetConfigurations', ], 'members' => [ 'ReservedInstancesIds' => [ 'shape' => 'ReservedInstancesIdStringList', 'locationName' => 'ReservedInstancesId', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'TargetConfigurations' => [ 'shape' => 'ReservedInstancesConfigurationList', 'locationName' => 'ReservedInstancesConfigurationSetItemType', ], ], ], 'ModifyReservedInstancesResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesModificationId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesModificationId', ], ], ], 'ModifySecurityGroupRulesRequest' => [ 'type' => 'structure', 'required' => [ 'GroupId', 'SecurityGroupRules', ], 'members' => [ 'GroupId' => [ 'shape' => 'SecurityGroupId', ], 'SecurityGroupRules' => [ 'shape' => 'SecurityGroupRuleUpdateList', 'locationName' => 'SecurityGroupRule', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifySecurityGroupRulesResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifySnapshotAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', ], 'members' => [ 'Attribute' => [ 'shape' => 'SnapshotAttributeName', ], 'CreateVolumePermission' => [ 'shape' => 'CreateVolumePermissionModifications', ], 'GroupNames' => [ 'shape' => 'GroupNameStringList', 'locationName' => 'UserGroup', ], 'OperationType' => [ 'shape' => 'OperationType', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'UserIds' => [ 'shape' => 'UserIdStringList', 'locationName' => 'UserId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'ModifySnapshotTierRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', ], 'members' => [ 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'StorageTier' => [ 'shape' => 'TargetStorageTier', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifySnapshotTierResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'TieringStartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'tieringStartTime', ], ], ], 'ModifySpotFleetRequestRequest' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestId', ], 'members' => [ 'ExcessCapacityTerminationPolicy' => [ 'shape' => 'ExcessCapacityTerminationPolicy', 'locationName' => 'excessCapacityTerminationPolicy', ], 'LaunchTemplateConfigs' => [ 'shape' => 'LaunchTemplateConfigList', 'locationName' => 'LaunchTemplateConfig', ], 'SpotFleetRequestId' => [ 'shape' => 'SpotFleetRequestId', 'locationName' => 'spotFleetRequestId', ], 'TargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'targetCapacity', ], 'OnDemandTargetCapacity' => [ 'shape' => 'Integer', ], 'Context' => [ 'shape' => 'String', ], ], ], 'ModifySpotFleetRequestResponse' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifySubnetAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', ], 'members' => [ 'AssignIpv6AddressOnCreation' => [ 'shape' => 'AttributeBooleanValue', ], 'MapPublicIpOnLaunch' => [ 'shape' => 'AttributeBooleanValue', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'MapCustomerOwnedIpOnLaunch' => [ 'shape' => 'AttributeBooleanValue', ], 'CustomerOwnedIpv4Pool' => [ 'shape' => 'CoipPoolId', ], 'EnableDns64' => [ 'shape' => 'AttributeBooleanValue', ], 'PrivateDnsHostnameTypeOnLaunch' => [ 'shape' => 'HostnameType', ], 'EnableResourceNameDnsARecordOnLaunch' => [ 'shape' => 'AttributeBooleanValue', ], 'EnableResourceNameDnsAAAARecordOnLaunch' => [ 'shape' => 'AttributeBooleanValue', ], 'EnableLniAtDeviceIndex' => [ 'shape' => 'Integer', ], 'DisableLniAtDeviceIndex' => [ 'shape' => 'AttributeBooleanValue', ], ], ], 'ModifyTrafficMirrorFilterNetworkServicesRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficMirrorFilterId', ], 'members' => [ 'TrafficMirrorFilterId' => [ 'shape' => 'TrafficMirrorFilterId', ], 'AddNetworkServices' => [ 'shape' => 'TrafficMirrorNetworkServiceList', 'locationName' => 'AddNetworkService', ], 'RemoveNetworkServices' => [ 'shape' => 'TrafficMirrorNetworkServiceList', 'locationName' => 'RemoveNetworkService', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyTrafficMirrorFilterNetworkServicesResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilter' => [ 'shape' => 'TrafficMirrorFilter', 'locationName' => 'trafficMirrorFilter', ], ], ], 'ModifyTrafficMirrorFilterRuleRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficMirrorFilterRuleId', ], 'members' => [ 'TrafficMirrorFilterRuleId' => [ 'shape' => 'TrafficMirrorFilterRuleIdWithResolver', ], 'TrafficDirection' => [ 'shape' => 'TrafficDirection', ], 'RuleNumber' => [ 'shape' => 'Integer', ], 'RuleAction' => [ 'shape' => 'TrafficMirrorRuleAction', ], 'DestinationPortRange' => [ 'shape' => 'TrafficMirrorPortRangeRequest', ], 'SourcePortRange' => [ 'shape' => 'TrafficMirrorPortRangeRequest', ], 'Protocol' => [ 'shape' => 'Integer', ], 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'SourceCidrBlock' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'RemoveFields' => [ 'shape' => 'TrafficMirrorFilterRuleFieldList', 'locationName' => 'RemoveField', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyTrafficMirrorFilterRuleResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilterRule' => [ 'shape' => 'TrafficMirrorFilterRule', 'locationName' => 'trafficMirrorFilterRule', ], ], ], 'ModifyTrafficMirrorSessionRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficMirrorSessionId', ], 'members' => [ 'TrafficMirrorSessionId' => [ 'shape' => 'TrafficMirrorSessionId', ], 'TrafficMirrorTargetId' => [ 'shape' => 'TrafficMirrorTargetId', ], 'TrafficMirrorFilterId' => [ 'shape' => 'TrafficMirrorFilterId', ], 'PacketLength' => [ 'shape' => 'Integer', ], 'SessionNumber' => [ 'shape' => 'Integer', ], 'VirtualNetworkId' => [ 'shape' => 'Integer', ], 'Description' => [ 'shape' => 'String', ], 'RemoveFields' => [ 'shape' => 'TrafficMirrorSessionFieldList', 'locationName' => 'RemoveField', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyTrafficMirrorSessionResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorSession' => [ 'shape' => 'TrafficMirrorSession', 'locationName' => 'trafficMirrorSession', ], ], ], 'ModifyTransitGatewayOptions' => [ 'type' => 'structure', 'members' => [ 'AddTransitGatewayCidrBlocks' => [ 'shape' => 'TransitGatewayCidrBlockStringList', ], 'RemoveTransitGatewayCidrBlocks' => [ 'shape' => 'TransitGatewayCidrBlockStringList', ], 'VpnEcmpSupport' => [ 'shape' => 'VpnEcmpSupportValue', ], 'DnsSupport' => [ 'shape' => 'DnsSupportValue', ], 'SecurityGroupReferencingSupport' => [ 'shape' => 'SecurityGroupReferencingSupportValue', ], 'AutoAcceptSharedAttachments' => [ 'shape' => 'AutoAcceptSharedAttachmentsValue', ], 'DefaultRouteTableAssociation' => [ 'shape' => 'DefaultRouteTableAssociationValue', ], 'AssociationDefaultRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'DefaultRouteTablePropagation' => [ 'shape' => 'DefaultRouteTablePropagationValue', ], 'PropagationDefaultRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'AmazonSideAsn' => [ 'shape' => 'Long', ], ], ], 'ModifyTransitGatewayPrefixListReferenceRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'PrefixListId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'Blackhole' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyTransitGatewayPrefixListReferenceResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPrefixListReference' => [ 'shape' => 'TransitGatewayPrefixListReference', 'locationName' => 'transitGatewayPrefixListReference', ], ], ], 'ModifyTransitGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayId', ], 'members' => [ 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'Description' => [ 'shape' => 'String', ], 'Options' => [ 'shape' => 'ModifyTransitGatewayOptions', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyTransitGatewayResult' => [ 'type' => 'structure', 'members' => [ 'TransitGateway' => [ 'shape' => 'TransitGateway', 'locationName' => 'transitGateway', ], ], ], 'ModifyTransitGatewayVpcAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'AddSubnetIds' => [ 'shape' => 'TransitGatewaySubnetIdList', ], 'RemoveSubnetIds' => [ 'shape' => 'TransitGatewaySubnetIdList', ], 'Options' => [ 'shape' => 'ModifyTransitGatewayVpcAttachmentRequestOptions', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyTransitGatewayVpcAttachmentRequestOptions' => [ 'type' => 'structure', 'members' => [ 'DnsSupport' => [ 'shape' => 'DnsSupportValue', ], 'SecurityGroupReferencingSupport' => [ 'shape' => 'SecurityGroupReferencingSupportValue', ], 'Ipv6Support' => [ 'shape' => 'Ipv6SupportValue', ], 'ApplianceModeSupport' => [ 'shape' => 'ApplianceModeSupportValue', ], ], ], 'ModifyTransitGatewayVpcAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayVpcAttachment' => [ 'shape' => 'TransitGatewayVpcAttachment', 'locationName' => 'transitGatewayVpcAttachment', ], ], ], 'ModifyVerifiedAccessEndpointEniOptions' => [ 'type' => 'structure', 'members' => [ 'Protocol' => [ 'shape' => 'VerifiedAccessEndpointProtocol', ], 'Port' => [ 'shape' => 'VerifiedAccessEndpointPortNumber', ], ], ], 'ModifyVerifiedAccessEndpointLoadBalancerOptions' => [ 'type' => 'structure', 'members' => [ 'SubnetIds' => [ 'shape' => 'ModifyVerifiedAccessEndpointSubnetIdList', 'locationName' => 'SubnetId', ], 'Protocol' => [ 'shape' => 'VerifiedAccessEndpointProtocol', ], 'Port' => [ 'shape' => 'VerifiedAccessEndpointPortNumber', ], ], ], 'ModifyVerifiedAccessEndpointPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessEndpointId', ], 'members' => [ 'VerifiedAccessEndpointId' => [ 'shape' => 'VerifiedAccessEndpointId', ], 'PolicyEnabled' => [ 'shape' => 'Boolean', ], 'PolicyDocument' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationRequest', ], ], ], 'ModifyVerifiedAccessEndpointPolicyResult' => [ 'type' => 'structure', 'members' => [ 'PolicyEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'policyEnabled', ], 'PolicyDocument' => [ 'shape' => 'String', 'locationName' => 'policyDocument', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationResponse', 'locationName' => 'sseSpecification', ], ], ], 'ModifyVerifiedAccessEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessEndpointId', ], 'members' => [ 'VerifiedAccessEndpointId' => [ 'shape' => 'VerifiedAccessEndpointId', ], 'VerifiedAccessGroupId' => [ 'shape' => 'VerifiedAccessGroupId', ], 'LoadBalancerOptions' => [ 'shape' => 'ModifyVerifiedAccessEndpointLoadBalancerOptions', ], 'NetworkInterfaceOptions' => [ 'shape' => 'ModifyVerifiedAccessEndpointEniOptions', ], 'Description' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyVerifiedAccessEndpointResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessEndpoint' => [ 'shape' => 'VerifiedAccessEndpoint', 'locationName' => 'verifiedAccessEndpoint', ], ], ], 'ModifyVerifiedAccessEndpointSubnetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetId', 'locationName' => 'item', ], ], 'ModifyVerifiedAccessGroupPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessGroupId', ], 'members' => [ 'VerifiedAccessGroupId' => [ 'shape' => 'VerifiedAccessGroupId', ], 'PolicyEnabled' => [ 'shape' => 'Boolean', ], 'PolicyDocument' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationRequest', ], ], ], 'ModifyVerifiedAccessGroupPolicyResult' => [ 'type' => 'structure', 'members' => [ 'PolicyEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'policyEnabled', ], 'PolicyDocument' => [ 'shape' => 'String', 'locationName' => 'policyDocument', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationResponse', 'locationName' => 'sseSpecification', ], ], ], 'ModifyVerifiedAccessGroupRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessGroupId', ], 'members' => [ 'VerifiedAccessGroupId' => [ 'shape' => 'VerifiedAccessGroupId', ], 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'Description' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyVerifiedAccessGroupResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessGroup' => [ 'shape' => 'VerifiedAccessGroup', 'locationName' => 'verifiedAccessGroup', ], ], ], 'ModifyVerifiedAccessInstanceLoggingConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessInstanceId', 'AccessLogs', ], 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'AccessLogs' => [ 'shape' => 'VerifiedAccessLogOptions', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'ModifyVerifiedAccessInstanceLoggingConfigurationResult' => [ 'type' => 'structure', 'members' => [ 'LoggingConfiguration' => [ 'shape' => 'VerifiedAccessInstanceLoggingConfiguration', 'locationName' => 'loggingConfiguration', ], ], ], 'ModifyVerifiedAccessInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessInstanceId', ], 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'Description' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'ModifyVerifiedAccessInstanceResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstance' => [ 'shape' => 'VerifiedAccessInstance', 'locationName' => 'verifiedAccessInstance', ], ], ], 'ModifyVerifiedAccessTrustProviderDeviceOptions' => [ 'type' => 'structure', 'members' => [ 'PublicSigningKeyUrl' => [ 'shape' => 'String', ], ], ], 'ModifyVerifiedAccessTrustProviderOidcOptions' => [ 'type' => 'structure', 'members' => [ 'Issuer' => [ 'shape' => 'String', ], 'AuthorizationEndpoint' => [ 'shape' => 'String', ], 'TokenEndpoint' => [ 'shape' => 'String', ], 'UserInfoEndpoint' => [ 'shape' => 'String', ], 'ClientId' => [ 'shape' => 'String', ], 'ClientSecret' => [ 'shape' => 'ClientSecretType', ], 'Scope' => [ 'shape' => 'String', ], ], ], 'ModifyVerifiedAccessTrustProviderRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessTrustProviderId', ], 'members' => [ 'VerifiedAccessTrustProviderId' => [ 'shape' => 'VerifiedAccessTrustProviderId', ], 'OidcOptions' => [ 'shape' => 'ModifyVerifiedAccessTrustProviderOidcOptions', ], 'DeviceOptions' => [ 'shape' => 'ModifyVerifiedAccessTrustProviderDeviceOptions', ], 'Description' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationRequest', ], ], ], 'ModifyVerifiedAccessTrustProviderResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProvider' => [ 'shape' => 'VerifiedAccessTrustProvider', 'locationName' => 'verifiedAccessTrustProvider', ], ], ], 'ModifyVolumeAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'AutoEnableIO' => [ 'shape' => 'AttributeBooleanValue', ], 'VolumeId' => [ 'shape' => 'VolumeId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'ModifyVolumeRequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VolumeId' => [ 'shape' => 'VolumeId', ], 'Size' => [ 'shape' => 'Integer', ], 'VolumeType' => [ 'shape' => 'VolumeType', ], 'Iops' => [ 'shape' => 'Integer', ], 'Throughput' => [ 'shape' => 'Integer', ], 'MultiAttachEnabled' => [ 'shape' => 'Boolean', ], ], ], 'ModifyVolumeResult' => [ 'type' => 'structure', 'members' => [ 'VolumeModification' => [ 'shape' => 'VolumeModification', 'locationName' => 'volumeModification', ], ], ], 'ModifyVpcAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'EnableDnsHostnames' => [ 'shape' => 'AttributeBooleanValue', ], 'EnableDnsSupport' => [ 'shape' => 'AttributeBooleanValue', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], 'EnableNetworkAddressUsageMetrics' => [ 'shape' => 'AttributeBooleanValue', ], ], ], 'ModifyVpcEndpointConnectionNotificationRequest' => [ 'type' => 'structure', 'required' => [ 'ConnectionNotificationId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ConnectionNotificationId' => [ 'shape' => 'ConnectionNotificationId', ], 'ConnectionNotificationArn' => [ 'shape' => 'String', ], 'ConnectionEvents' => [ 'shape' => 'ValueStringList', ], ], ], 'ModifyVpcEndpointConnectionNotificationResult' => [ 'type' => 'structure', 'members' => [ 'ReturnValue' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyVpcEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'VpcEndpointId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VpcEndpointId' => [ 'shape' => 'VpcEndpointId', ], 'ResetPolicy' => [ 'shape' => 'Boolean', ], 'PolicyDocument' => [ 'shape' => 'String', ], 'AddRouteTableIds' => [ 'shape' => 'VpcEndpointRouteTableIdList', 'locationName' => 'AddRouteTableId', ], 'RemoveRouteTableIds' => [ 'shape' => 'VpcEndpointRouteTableIdList', 'locationName' => 'RemoveRouteTableId', ], 'AddSubnetIds' => [ 'shape' => 'VpcEndpointSubnetIdList', 'locationName' => 'AddSubnetId', ], 'RemoveSubnetIds' => [ 'shape' => 'VpcEndpointSubnetIdList', 'locationName' => 'RemoveSubnetId', ], 'AddSecurityGroupIds' => [ 'shape' => 'VpcEndpointSecurityGroupIdList', 'locationName' => 'AddSecurityGroupId', ], 'RemoveSecurityGroupIds' => [ 'shape' => 'VpcEndpointSecurityGroupIdList', 'locationName' => 'RemoveSecurityGroupId', ], 'IpAddressType' => [ 'shape' => 'IpAddressType', ], 'DnsOptions' => [ 'shape' => 'DnsOptionsSpecification', ], 'PrivateDnsEnabled' => [ 'shape' => 'Boolean', ], 'SubnetConfigurations' => [ 'shape' => 'SubnetConfigurationsList', 'locationName' => 'SubnetConfiguration', ], ], ], 'ModifyVpcEndpointResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyVpcEndpointServiceConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'ServiceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceId' => [ 'shape' => 'VpcEndpointServiceId', ], 'PrivateDnsName' => [ 'shape' => 'String', ], 'RemovePrivateDnsName' => [ 'shape' => 'Boolean', ], 'AcceptanceRequired' => [ 'shape' => 'Boolean', ], 'AddNetworkLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'AddNetworkLoadBalancerArn', ], 'RemoveNetworkLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'RemoveNetworkLoadBalancerArn', ], 'AddGatewayLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'AddGatewayLoadBalancerArn', ], 'RemoveGatewayLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'RemoveGatewayLoadBalancerArn', ], 'AddSupportedIpAddressTypes' => [ 'shape' => 'ValueStringList', 'locationName' => 'AddSupportedIpAddressType', ], 'RemoveSupportedIpAddressTypes' => [ 'shape' => 'ValueStringList', 'locationName' => 'RemoveSupportedIpAddressType', ], ], ], 'ModifyVpcEndpointServiceConfigurationResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyVpcEndpointServicePayerResponsibilityRequest' => [ 'type' => 'structure', 'required' => [ 'ServiceId', 'PayerResponsibility', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceId' => [ 'shape' => 'VpcEndpointServiceId', ], 'PayerResponsibility' => [ 'shape' => 'PayerResponsibility', ], ], ], 'ModifyVpcEndpointServicePayerResponsibilityResult' => [ 'type' => 'structure', 'members' => [ 'ReturnValue' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyVpcEndpointServicePermissionsRequest' => [ 'type' => 'structure', 'required' => [ 'ServiceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceId' => [ 'shape' => 'VpcEndpointServiceId', ], 'AddAllowedPrincipals' => [ 'shape' => 'ValueStringList', ], 'RemoveAllowedPrincipals' => [ 'shape' => 'ValueStringList', ], ], ], 'ModifyVpcEndpointServicePermissionsResult' => [ 'type' => 'structure', 'members' => [ 'AddedPrincipals' => [ 'shape' => 'AddedPrincipalSet', 'locationName' => 'addedPrincipalSet', ], 'ReturnValue' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyVpcPeeringConnectionOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'VpcPeeringConnectionId', ], 'members' => [ 'AccepterPeeringConnectionOptions' => [ 'shape' => 'PeeringConnectionOptionsRequest', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'RequesterPeeringConnectionOptions' => [ 'shape' => 'PeeringConnectionOptionsRequest', ], 'VpcPeeringConnectionId' => [ 'shape' => 'VpcPeeringConnectionId', ], ], ], 'ModifyVpcPeeringConnectionOptionsResult' => [ 'type' => 'structure', 'members' => [ 'AccepterPeeringConnectionOptions' => [ 'shape' => 'PeeringConnectionOptions', 'locationName' => 'accepterPeeringConnectionOptions', ], 'RequesterPeeringConnectionOptions' => [ 'shape' => 'PeeringConnectionOptions', 'locationName' => 'requesterPeeringConnectionOptions', ], ], ], 'ModifyVpcTenancyRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', 'InstanceTenancy', ], 'members' => [ 'VpcId' => [ 'shape' => 'VpcId', ], 'InstanceTenancy' => [ 'shape' => 'VpcTenancy', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyVpcTenancyResult' => [ 'type' => 'structure', 'members' => [ 'ReturnValue' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyVpnConnectionOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], 'LocalIpv4NetworkCidr' => [ 'shape' => 'String', ], 'RemoteIpv4NetworkCidr' => [ 'shape' => 'String', ], 'LocalIpv6NetworkCidr' => [ 'shape' => 'String', ], 'RemoteIpv6NetworkCidr' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyVpnConnectionOptionsResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnection' => [ 'shape' => 'VpnConnection', 'locationName' => 'vpnConnection', ], ], ], 'ModifyVpnConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'CustomerGatewayId' => [ 'shape' => 'CustomerGatewayId', ], 'VpnGatewayId' => [ 'shape' => 'VpnGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyVpnConnectionResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnection' => [ 'shape' => 'VpnConnection', 'locationName' => 'vpnConnection', ], ], ], 'ModifyVpnTunnelCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', 'VpnTunnelOutsideIpAddress', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], 'VpnTunnelOutsideIpAddress' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyVpnTunnelCertificateResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnection' => [ 'shape' => 'VpnConnection', 'locationName' => 'vpnConnection', ], ], ], 'ModifyVpnTunnelOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', 'VpnTunnelOutsideIpAddress', 'TunnelOptions', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], 'VpnTunnelOutsideIpAddress' => [ 'shape' => 'String', ], 'TunnelOptions' => [ 'shape' => 'ModifyVpnTunnelOptionsSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'SkipTunnelReplacement' => [ 'shape' => 'Boolean', ], ], ], 'ModifyVpnTunnelOptionsResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnection' => [ 'shape' => 'VpnConnection', 'locationName' => 'vpnConnection', ], ], ], 'ModifyVpnTunnelOptionsSpecification' => [ 'type' => 'structure', 'members' => [ 'TunnelInsideCidr' => [ 'shape' => 'String', ], 'TunnelInsideIpv6Cidr' => [ 'shape' => 'String', ], 'PreSharedKey' => [ 'shape' => 'preSharedKey', ], 'Phase1LifetimeSeconds' => [ 'shape' => 'Integer', ], 'Phase2LifetimeSeconds' => [ 'shape' => 'Integer', ], 'RekeyMarginTimeSeconds' => [ 'shape' => 'Integer', ], 'RekeyFuzzPercentage' => [ 'shape' => 'Integer', ], 'ReplayWindowSize' => [ 'shape' => 'Integer', ], 'DPDTimeoutSeconds' => [ 'shape' => 'Integer', ], 'DPDTimeoutAction' => [ 'shape' => 'String', ], 'Phase1EncryptionAlgorithms' => [ 'shape' => 'Phase1EncryptionAlgorithmsRequestList', 'locationName' => 'Phase1EncryptionAlgorithm', ], 'Phase2EncryptionAlgorithms' => [ 'shape' => 'Phase2EncryptionAlgorithmsRequestList', 'locationName' => 'Phase2EncryptionAlgorithm', ], 'Phase1IntegrityAlgorithms' => [ 'shape' => 'Phase1IntegrityAlgorithmsRequestList', 'locationName' => 'Phase1IntegrityAlgorithm', ], 'Phase2IntegrityAlgorithms' => [ 'shape' => 'Phase2IntegrityAlgorithmsRequestList', 'locationName' => 'Phase2IntegrityAlgorithm', ], 'Phase1DHGroupNumbers' => [ 'shape' => 'Phase1DHGroupNumbersRequestList', 'locationName' => 'Phase1DHGroupNumber', ], 'Phase2DHGroupNumbers' => [ 'shape' => 'Phase2DHGroupNumbersRequestList', 'locationName' => 'Phase2DHGroupNumber', ], 'IKEVersions' => [ 'shape' => 'IKEVersionsRequestList', 'locationName' => 'IKEVersion', ], 'StartupAction' => [ 'shape' => 'String', ], 'LogOptions' => [ 'shape' => 'VpnTunnelLogOptionsSpecification', ], 'EnableTunnelLifecycleControl' => [ 'shape' => 'Boolean', ], ], 'sensitive' => true, ], 'MonitorInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'MonitorInstancesResult' => [ 'type' => 'structure', 'members' => [ 'InstanceMonitorings' => [ 'shape' => 'InstanceMonitoringList', 'locationName' => 'instancesSet', ], ], ], 'Monitoring' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'MonitoringState', 'locationName' => 'state', ], ], ], 'MonitoringState' => [ 'type' => 'string', 'enum' => [ 'disabled', 'disabling', 'enabled', 'pending', ], ], 'MoveAddressToVpcRequest' => [ 'type' => 'structure', 'required' => [ 'PublicIp', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], ], ], 'MoveAddressToVpcResult' => [ 'type' => 'structure', 'members' => [ 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'Status' => [ 'shape' => 'Status', 'locationName' => 'status', ], ], ], 'MoveByoipCidrToIpamRequest' => [ 'type' => 'structure', 'required' => [ 'Cidr', 'IpamPoolId', 'IpamPoolOwner', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Cidr' => [ 'shape' => 'String', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'IpamPoolOwner' => [ 'shape' => 'String', ], ], ], 'MoveByoipCidrToIpamResult' => [ 'type' => 'structure', 'members' => [ 'ByoipCidr' => [ 'shape' => 'ByoipCidr', 'locationName' => 'byoipCidr', ], ], ], 'MoveStatus' => [ 'type' => 'string', 'enum' => [ 'movingToVpc', 'restoringToClassic', ], ], 'MovingAddressStatus' => [ 'type' => 'structure', 'members' => [ 'MoveStatus' => [ 'shape' => 'MoveStatus', 'locationName' => 'moveStatus', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], ], ], 'MovingAddressStatusSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'MovingAddressStatus', 'locationName' => 'item', ], ], 'MulticastSupportValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'NatGateway' => [ 'type' => 'structure', 'members' => [ 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'DeleteTime' => [ 'shape' => 'DateTime', 'locationName' => 'deleteTime', ], 'FailureCode' => [ 'shape' => 'String', 'locationName' => 'failureCode', ], 'FailureMessage' => [ 'shape' => 'String', 'locationName' => 'failureMessage', ], 'NatGatewayAddresses' => [ 'shape' => 'NatGatewayAddressList', 'locationName' => 'natGatewayAddressSet', ], 'NatGatewayId' => [ 'shape' => 'String', 'locationName' => 'natGatewayId', ], 'ProvisionedBandwidth' => [ 'shape' => 'ProvisionedBandwidth', 'locationName' => 'provisionedBandwidth', ], 'State' => [ 'shape' => 'NatGatewayState', 'locationName' => 'state', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'ConnectivityType' => [ 'shape' => 'ConnectivityType', 'locationName' => 'connectivityType', ], ], ], 'NatGatewayAddress' => [ 'type' => 'structure', 'members' => [ 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'PrivateIp' => [ 'shape' => 'String', 'locationName' => 'privateIp', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'IsPrimary' => [ 'shape' => 'Boolean', 'locationName' => 'isPrimary', ], 'FailureMessage' => [ 'shape' => 'String', 'locationName' => 'failureMessage', ], 'Status' => [ 'shape' => 'NatGatewayAddressStatus', 'locationName' => 'status', ], ], ], 'NatGatewayAddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NatGatewayAddress', 'locationName' => 'item', ], ], 'NatGatewayAddressStatus' => [ 'type' => 'string', 'enum' => [ 'assigning', 'unassigning', 'associating', 'disassociating', 'succeeded', 'failed', ], ], 'NatGatewayId' => [ 'type' => 'string', ], 'NatGatewayIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NatGatewayId', 'locationName' => 'item', ], ], 'NatGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NatGateway', 'locationName' => 'item', ], ], 'NatGatewayState' => [ 'type' => 'string', 'enum' => [ 'pending', 'failed', 'available', 'deleting', 'deleted', ], ], 'NetmaskLength' => [ 'type' => 'integer', ], 'NetworkAcl' => [ 'type' => 'structure', 'members' => [ 'Associations' => [ 'shape' => 'NetworkAclAssociationList', 'locationName' => 'associationSet', ], 'Entries' => [ 'shape' => 'NetworkAclEntryList', 'locationName' => 'entrySet', ], 'IsDefault' => [ 'shape' => 'Boolean', 'locationName' => 'default', ], 'NetworkAclId' => [ 'shape' => 'String', 'locationName' => 'networkAclId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], ], ], 'NetworkAclAssociation' => [ 'type' => 'structure', 'members' => [ 'NetworkAclAssociationId' => [ 'shape' => 'String', 'locationName' => 'networkAclAssociationId', ], 'NetworkAclId' => [ 'shape' => 'String', 'locationName' => 'networkAclId', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], ], ], 'NetworkAclAssociationId' => [ 'type' => 'string', ], 'NetworkAclAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkAclAssociation', 'locationName' => 'item', ], ], 'NetworkAclEntry' => [ 'type' => 'structure', 'members' => [ 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'Egress' => [ 'shape' => 'Boolean', 'locationName' => 'egress', ], 'IcmpTypeCode' => [ 'shape' => 'IcmpTypeCode', 'locationName' => 'icmpTypeCode', ], 'Ipv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'ipv6CidrBlock', ], 'PortRange' => [ 'shape' => 'PortRange', 'locationName' => 'portRange', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], 'RuleAction' => [ 'shape' => 'RuleAction', 'locationName' => 'ruleAction', ], 'RuleNumber' => [ 'shape' => 'Integer', 'locationName' => 'ruleNumber', ], ], ], 'NetworkAclEntryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkAclEntry', 'locationName' => 'item', ], ], 'NetworkAclId' => [ 'type' => 'string', ], 'NetworkAclIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkAclId', 'locationName' => 'item', ], ], 'NetworkAclList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkAcl', 'locationName' => 'item', ], ], 'NetworkBandwidthGbps' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Double', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Double', 'locationName' => 'max', ], ], ], 'NetworkBandwidthGbpsRequest' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Double', ], 'Max' => [ 'shape' => 'Double', ], ], ], 'NetworkCardIndex' => [ 'type' => 'integer', ], 'NetworkCardInfo' => [ 'type' => 'structure', 'members' => [ 'NetworkCardIndex' => [ 'shape' => 'NetworkCardIndex', 'locationName' => 'networkCardIndex', ], 'NetworkPerformance' => [ 'shape' => 'NetworkPerformance', 'locationName' => 'networkPerformance', ], 'MaximumNetworkInterfaces' => [ 'shape' => 'MaxNetworkInterfaces', 'locationName' => 'maximumNetworkInterfaces', ], 'BaselineBandwidthInGbps' => [ 'shape' => 'BaselineBandwidthInGbps', 'locationName' => 'baselineBandwidthInGbps', ], 'PeakBandwidthInGbps' => [ 'shape' => 'PeakBandwidthInGbps', 'locationName' => 'peakBandwidthInGbps', ], ], ], 'NetworkCardInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkCardInfo', 'locationName' => 'item', ], ], 'NetworkInfo' => [ 'type' => 'structure', 'members' => [ 'NetworkPerformance' => [ 'shape' => 'NetworkPerformance', 'locationName' => 'networkPerformance', ], 'MaximumNetworkInterfaces' => [ 'shape' => 'MaxNetworkInterfaces', 'locationName' => 'maximumNetworkInterfaces', ], 'MaximumNetworkCards' => [ 'shape' => 'MaximumNetworkCards', 'locationName' => 'maximumNetworkCards', ], 'DefaultNetworkCardIndex' => [ 'shape' => 'DefaultNetworkCardIndex', 'locationName' => 'defaultNetworkCardIndex', ], 'NetworkCards' => [ 'shape' => 'NetworkCardInfoList', 'locationName' => 'networkCards', ], 'Ipv4AddressesPerInterface' => [ 'shape' => 'MaxIpv4AddrPerInterface', 'locationName' => 'ipv4AddressesPerInterface', ], 'Ipv6AddressesPerInterface' => [ 'shape' => 'MaxIpv6AddrPerInterface', 'locationName' => 'ipv6AddressesPerInterface', ], 'Ipv6Supported' => [ 'shape' => 'Ipv6Flag', 'locationName' => 'ipv6Supported', ], 'EnaSupport' => [ 'shape' => 'EnaSupport', 'locationName' => 'enaSupport', ], 'EfaSupported' => [ 'shape' => 'EfaSupportedFlag', 'locationName' => 'efaSupported', ], 'EfaInfo' => [ 'shape' => 'EfaInfo', 'locationName' => 'efaInfo', ], 'EncryptionInTransitSupported' => [ 'shape' => 'EncryptionInTransitSupported', 'locationName' => 'encryptionInTransitSupported', ], 'EnaSrdSupported' => [ 'shape' => 'EnaSrdSupported', 'locationName' => 'enaSrdSupported', ], ], ], 'NetworkInsightsAccessScope' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', 'locationName' => 'networkInsightsAccessScopeId', ], 'NetworkInsightsAccessScopeArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'networkInsightsAccessScopeArn', ], 'CreatedDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'createdDate', ], 'UpdatedDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'updatedDate', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'NetworkInsightsAccessScopeAnalysis' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeAnalysisId' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisId', 'locationName' => 'networkInsightsAccessScopeAnalysisId', ], 'NetworkInsightsAccessScopeAnalysisArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'networkInsightsAccessScopeAnalysisArn', ], 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', 'locationName' => 'networkInsightsAccessScopeId', ], 'Status' => [ 'shape' => 'AnalysisStatus', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'WarningMessage' => [ 'shape' => 'String', 'locationName' => 'warningMessage', ], 'StartDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'startDate', ], 'EndDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'endDate', ], 'FindingsFound' => [ 'shape' => 'FindingsFound', 'locationName' => 'findingsFound', ], 'AnalyzedEniCount' => [ 'shape' => 'Integer', 'locationName' => 'analyzedEniCount', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'NetworkInsightsAccessScopeAnalysisId' => [ 'type' => 'string', ], 'NetworkInsightsAccessScopeAnalysisIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisId', 'locationName' => 'item', ], ], 'NetworkInsightsAccessScopeAnalysisList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysis', 'locationName' => 'item', ], ], 'NetworkInsightsAccessScopeContent' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', 'locationName' => 'networkInsightsAccessScopeId', ], 'MatchPaths' => [ 'shape' => 'AccessScopePathList', 'locationName' => 'matchPathSet', ], 'ExcludePaths' => [ 'shape' => 'AccessScopePathList', 'locationName' => 'excludePathSet', ], ], ], 'NetworkInsightsAccessScopeId' => [ 'type' => 'string', ], 'NetworkInsightsAccessScopeIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInsightsAccessScopeId', 'locationName' => 'item', ], ], 'NetworkInsightsAccessScopeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInsightsAccessScope', 'locationName' => 'item', ], ], 'NetworkInsightsAnalysis' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAnalysisId' => [ 'shape' => 'NetworkInsightsAnalysisId', 'locationName' => 'networkInsightsAnalysisId', ], 'NetworkInsightsAnalysisArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'networkInsightsAnalysisArn', ], 'NetworkInsightsPathId' => [ 'shape' => 'NetworkInsightsPathId', 'locationName' => 'networkInsightsPathId', ], 'AdditionalAccounts' => [ 'shape' => 'ValueStringList', 'locationName' => 'additionalAccountSet', ], 'FilterInArns' => [ 'shape' => 'ArnList', 'locationName' => 'filterInArnSet', ], 'StartDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'startDate', ], 'Status' => [ 'shape' => 'AnalysisStatus', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'WarningMessage' => [ 'shape' => 'String', 'locationName' => 'warningMessage', ], 'NetworkPathFound' => [ 'shape' => 'Boolean', 'locationName' => 'networkPathFound', ], 'ForwardPathComponents' => [ 'shape' => 'PathComponentList', 'locationName' => 'forwardPathComponentSet', ], 'ReturnPathComponents' => [ 'shape' => 'PathComponentList', 'locationName' => 'returnPathComponentSet', ], 'Explanations' => [ 'shape' => 'ExplanationList', 'locationName' => 'explanationSet', ], 'AlternatePathHints' => [ 'shape' => 'AlternatePathHintList', 'locationName' => 'alternatePathHintSet', ], 'SuggestedAccounts' => [ 'shape' => 'ValueStringList', 'locationName' => 'suggestedAccountSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'NetworkInsightsAnalysisId' => [ 'type' => 'string', ], 'NetworkInsightsAnalysisIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInsightsAnalysisId', 'locationName' => 'item', ], ], 'NetworkInsightsAnalysisList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInsightsAnalysis', 'locationName' => 'item', ], ], 'NetworkInsightsMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'NetworkInsightsPath' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsPathId' => [ 'shape' => 'NetworkInsightsPathId', 'locationName' => 'networkInsightsPathId', ], 'NetworkInsightsPathArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'networkInsightsPathArn', ], 'CreatedDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'createdDate', ], 'Source' => [ 'shape' => 'String', 'locationName' => 'source', ], 'Destination' => [ 'shape' => 'String', 'locationName' => 'destination', ], 'SourceArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'sourceArn', ], 'DestinationArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'destinationArn', ], 'SourceIp' => [ 'shape' => 'IpAddress', 'locationName' => 'sourceIp', ], 'DestinationIp' => [ 'shape' => 'IpAddress', 'locationName' => 'destinationIp', ], 'Protocol' => [ 'shape' => 'Protocol', 'locationName' => 'protocol', ], 'DestinationPort' => [ 'shape' => 'Integer', 'locationName' => 'destinationPort', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'FilterAtSource' => [ 'shape' => 'PathFilter', 'locationName' => 'filterAtSource', ], 'FilterAtDestination' => [ 'shape' => 'PathFilter', 'locationName' => 'filterAtDestination', ], ], ], 'NetworkInsightsPathId' => [ 'type' => 'string', ], 'NetworkInsightsPathIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInsightsPathId', 'locationName' => 'item', ], ], 'NetworkInsightsPathList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInsightsPath', 'locationName' => 'item', ], ], 'NetworkInsightsResourceId' => [ 'type' => 'string', ], 'NetworkInterface' => [ 'type' => 'structure', 'members' => [ 'Association' => [ 'shape' => 'NetworkInterfaceAssociation', 'locationName' => 'association', ], 'Attachment' => [ 'shape' => 'NetworkInterfaceAttachment', 'locationName' => 'attachment', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'ConnectionTrackingConfiguration' => [ 'shape' => 'ConnectionTrackingConfiguration', 'locationName' => 'connectionTrackingConfiguration', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'InterfaceType' => [ 'shape' => 'NetworkInterfaceType', 'locationName' => 'interfaceType', ], 'Ipv6Addresses' => [ 'shape' => 'NetworkInterfaceIpv6AddressesList', 'locationName' => 'ipv6AddressesSet', ], 'MacAddress' => [ 'shape' => 'String', 'locationName' => 'macAddress', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'PrivateIpAddresses' => [ 'shape' => 'NetworkInterfacePrivateIpAddressList', 'locationName' => 'privateIpAddressesSet', ], 'Ipv4Prefixes' => [ 'shape' => 'Ipv4PrefixesList', 'locationName' => 'ipv4PrefixSet', ], 'Ipv6Prefixes' => [ 'shape' => 'Ipv6PrefixesList', 'locationName' => 'ipv6PrefixSet', ], 'RequesterId' => [ 'shape' => 'String', 'locationName' => 'requesterId', ], 'RequesterManaged' => [ 'shape' => 'Boolean', 'locationName' => 'requesterManaged', ], 'SourceDestCheck' => [ 'shape' => 'Boolean', 'locationName' => 'sourceDestCheck', ], 'Status' => [ 'shape' => 'NetworkInterfaceStatus', 'locationName' => 'status', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'TagSet' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'DenyAllIgwTraffic' => [ 'shape' => 'Boolean', 'locationName' => 'denyAllIgwTraffic', ], 'Ipv6Native' => [ 'shape' => 'Boolean', 'locationName' => 'ipv6Native', ], 'Ipv6Address' => [ 'shape' => 'String', 'locationName' => 'ipv6Address', ], ], ], 'NetworkInterfaceAssociation' => [ 'type' => 'structure', 'members' => [ 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'IpOwnerId' => [ 'shape' => 'String', 'locationName' => 'ipOwnerId', ], 'PublicDnsName' => [ 'shape' => 'String', 'locationName' => 'publicDnsName', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'CustomerOwnedIp' => [ 'shape' => 'String', 'locationName' => 'customerOwnedIp', ], 'CarrierIp' => [ 'shape' => 'String', 'locationName' => 'carrierIp', ], ], ], 'NetworkInterfaceAttachment' => [ 'type' => 'structure', 'members' => [ 'AttachTime' => [ 'shape' => 'DateTime', 'locationName' => 'attachTime', ], 'AttachmentId' => [ 'shape' => 'String', 'locationName' => 'attachmentId', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'DeviceIndex' => [ 'shape' => 'Integer', 'locationName' => 'deviceIndex', ], 'NetworkCardIndex' => [ 'shape' => 'Integer', 'locationName' => 'networkCardIndex', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceOwnerId' => [ 'shape' => 'String', 'locationName' => 'instanceOwnerId', ], 'Status' => [ 'shape' => 'AttachmentStatus', 'locationName' => 'status', ], 'EnaSrdSpecification' => [ 'shape' => 'AttachmentEnaSrdSpecification', 'locationName' => 'enaSrdSpecification', ], ], ], 'NetworkInterfaceAttachmentChanges' => [ 'type' => 'structure', 'members' => [ 'AttachmentId' => [ 'shape' => 'NetworkInterfaceAttachmentId', 'locationName' => 'attachmentId', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], ], ], 'NetworkInterfaceAttachmentId' => [ 'type' => 'string', ], 'NetworkInterfaceAttribute' => [ 'type' => 'string', 'enum' => [ 'description', 'groupSet', 'sourceDestCheck', 'attachment', ], ], 'NetworkInterfaceCount' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Integer', 'locationName' => 'max', ], ], ], 'NetworkInterfaceCountRequest' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', ], 'Max' => [ 'shape' => 'Integer', ], ], ], 'NetworkInterfaceCreationType' => [ 'type' => 'string', 'enum' => [ 'efa', 'branch', 'trunk', ], ], 'NetworkInterfaceId' => [ 'type' => 'string', ], 'NetworkInterfaceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'item', ], ], 'NetworkInterfaceIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'NetworkInterfaceIpv6Address' => [ 'type' => 'structure', 'members' => [ 'Ipv6Address' => [ 'shape' => 'String', 'locationName' => 'ipv6Address', ], 'IsPrimaryIpv6' => [ 'shape' => 'Boolean', 'locationName' => 'isPrimaryIpv6', ], ], ], 'NetworkInterfaceIpv6AddressesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterfaceIpv6Address', 'locationName' => 'item', ], ], 'NetworkInterfaceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterface', 'locationName' => 'item', ], ], 'NetworkInterfacePermission' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfacePermissionId' => [ 'shape' => 'String', 'locationName' => 'networkInterfacePermissionId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'AwsAccountId' => [ 'shape' => 'String', 'locationName' => 'awsAccountId', ], 'AwsService' => [ 'shape' => 'String', 'locationName' => 'awsService', ], 'Permission' => [ 'shape' => 'InterfacePermissionType', 'locationName' => 'permission', ], 'PermissionState' => [ 'shape' => 'NetworkInterfacePermissionState', 'locationName' => 'permissionState', ], ], ], 'NetworkInterfacePermissionId' => [ 'type' => 'string', ], 'NetworkInterfacePermissionIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterfacePermissionId', ], ], 'NetworkInterfacePermissionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterfacePermission', 'locationName' => 'item', ], ], 'NetworkInterfacePermissionState' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'NetworkInterfacePermissionStateCode', 'locationName' => 'state', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], ], ], 'NetworkInterfacePermissionStateCode' => [ 'type' => 'string', 'enum' => [ 'pending', 'granted', 'revoking', 'revoked', ], ], 'NetworkInterfacePrivateIpAddress' => [ 'type' => 'structure', 'members' => [ 'Association' => [ 'shape' => 'NetworkInterfaceAssociation', 'locationName' => 'association', ], 'Primary' => [ 'shape' => 'Boolean', 'locationName' => 'primary', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], ], ], 'NetworkInterfacePrivateIpAddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterfacePrivateIpAddress', 'locationName' => 'item', ], ], 'NetworkInterfaceStatus' => [ 'type' => 'string', 'enum' => [ 'available', 'associated', 'attaching', 'in-use', 'detaching', ], ], 'NetworkInterfaceType' => [ 'type' => 'string', 'enum' => [ 'interface', 'natGateway', 'efa', 'trunk', 'load_balancer', 'network_load_balancer', 'vpc_endpoint', 'branch', 'transit_gateway', 'lambda', 'quicksight', 'global_accelerator_managed', 'api_gateway_managed', 'gateway_load_balancer', 'gateway_load_balancer_endpoint', 'iot_rules_managed', 'aws_codestar_connections_managed', ], ], 'NetworkNodesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'NetworkPerformance' => [ 'type' => 'string', ], 'NewDhcpConfiguration' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', 'locationName' => 'key', ], 'Values' => [ 'shape' => 'ValueStringList', 'locationName' => 'Value', ], ], ], 'NewDhcpConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NewDhcpConfiguration', 'locationName' => 'item', ], ], 'NextToken' => [ 'type' => 'string', ], 'NitroEnclavesSupport' => [ 'type' => 'string', 'enum' => [ 'unsupported', 'supported', ], ], 'NitroTpmInfo' => [ 'type' => 'structure', 'members' => [ 'SupportedVersions' => [ 'shape' => 'NitroTpmSupportedVersionsList', 'locationName' => 'supportedVersions', ], ], ], 'NitroTpmSupport' => [ 'type' => 'string', 'enum' => [ 'unsupported', 'supported', ], ], 'NitroTpmSupportedVersionType' => [ 'type' => 'string', ], 'NitroTpmSupportedVersionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NitroTpmSupportedVersionType', 'locationName' => 'item', ], ], 'OccurrenceDayRequestSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Integer', 'locationName' => 'OccurenceDay', ], ], 'OccurrenceDaySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Integer', 'locationName' => 'item', ], ], 'OfferingClassType' => [ 'type' => 'string', 'enum' => [ 'standard', 'convertible', ], ], 'OfferingId' => [ 'type' => 'string', ], 'OfferingTypeValues' => [ 'type' => 'string', 'enum' => [ 'Heavy Utilization', 'Medium Utilization', 'Light Utilization', 'No Upfront', 'Partial Upfront', 'All Upfront', ], ], 'OidcOptions' => [ 'type' => 'structure', 'members' => [ 'Issuer' => [ 'shape' => 'String', 'locationName' => 'issuer', ], 'AuthorizationEndpoint' => [ 'shape' => 'String', 'locationName' => 'authorizationEndpoint', ], 'TokenEndpoint' => [ 'shape' => 'String', 'locationName' => 'tokenEndpoint', ], 'UserInfoEndpoint' => [ 'shape' => 'String', 'locationName' => 'userInfoEndpoint', ], 'ClientId' => [ 'shape' => 'String', 'locationName' => 'clientId', ], 'ClientSecret' => [ 'shape' => 'ClientSecretType', 'locationName' => 'clientSecret', ], 'Scope' => [ 'shape' => 'String', 'locationName' => 'scope', ], ], ], 'OnDemandAllocationStrategy' => [ 'type' => 'string', 'enum' => [ 'lowestPrice', 'prioritized', ], ], 'OnDemandOptions' => [ 'type' => 'structure', 'members' => [ 'AllocationStrategy' => [ 'shape' => 'FleetOnDemandAllocationStrategy', 'locationName' => 'allocationStrategy', ], 'CapacityReservationOptions' => [ 'shape' => 'CapacityReservationOptions', 'locationName' => 'capacityReservationOptions', ], 'SingleInstanceType' => [ 'shape' => 'Boolean', 'locationName' => 'singleInstanceType', ], 'SingleAvailabilityZone' => [ 'shape' => 'Boolean', 'locationName' => 'singleAvailabilityZone', ], 'MinTargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'minTargetCapacity', ], 'MaxTotalPrice' => [ 'shape' => 'String', 'locationName' => 'maxTotalPrice', ], ], ], 'OnDemandOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'AllocationStrategy' => [ 'shape' => 'FleetOnDemandAllocationStrategy', ], 'CapacityReservationOptions' => [ 'shape' => 'CapacityReservationOptionsRequest', ], 'SingleInstanceType' => [ 'shape' => 'Boolean', ], 'SingleAvailabilityZone' => [ 'shape' => 'Boolean', ], 'MinTargetCapacity' => [ 'shape' => 'Integer', ], 'MaxTotalPrice' => [ 'shape' => 'String', ], ], ], 'OperationType' => [ 'type' => 'string', 'enum' => [ 'add', 'remove', ], ], 'OrganizationArnStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'OrganizationArn', ], ], 'OrganizationalUnitArnStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'OrganizationalUnitArn', ], ], 'OutpostArn' => [ 'type' => 'string', 'pattern' => '^arn:aws([a-z-]+)?:outposts:[a-z\\d-]+:\\d{12}:outpost/op-[a-f0-9]{17}$', ], 'OwnerStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'Owner', ], ], 'PacketHeaderStatement' => [ 'type' => 'structure', 'members' => [ 'SourceAddresses' => [ 'shape' => 'ValueStringList', 'locationName' => 'sourceAddressSet', ], 'DestinationAddresses' => [ 'shape' => 'ValueStringList', 'locationName' => 'destinationAddressSet', ], 'SourcePorts' => [ 'shape' => 'ValueStringList', 'locationName' => 'sourcePortSet', ], 'DestinationPorts' => [ 'shape' => 'ValueStringList', 'locationName' => 'destinationPortSet', ], 'SourcePrefixLists' => [ 'shape' => 'ValueStringList', 'locationName' => 'sourcePrefixListSet', ], 'DestinationPrefixLists' => [ 'shape' => 'ValueStringList', 'locationName' => 'destinationPrefixListSet', ], 'Protocols' => [ 'shape' => 'ProtocolList', 'locationName' => 'protocolSet', ], ], ], 'PacketHeaderStatementRequest' => [ 'type' => 'structure', 'members' => [ 'SourceAddresses' => [ 'shape' => 'ValueStringList', 'locationName' => 'SourceAddress', ], 'DestinationAddresses' => [ 'shape' => 'ValueStringList', 'locationName' => 'DestinationAddress', ], 'SourcePorts' => [ 'shape' => 'ValueStringList', 'locationName' => 'SourcePort', ], 'DestinationPorts' => [ 'shape' => 'ValueStringList', 'locationName' => 'DestinationPort', ], 'SourcePrefixLists' => [ 'shape' => 'ValueStringList', 'locationName' => 'SourcePrefixList', ], 'DestinationPrefixLists' => [ 'shape' => 'ValueStringList', 'locationName' => 'DestinationPrefixList', ], 'Protocols' => [ 'shape' => 'ProtocolList', 'locationName' => 'Protocol', ], ], ], 'PartitionLoadFrequency' => [ 'type' => 'string', 'enum' => [ 'none', 'daily', 'weekly', 'monthly', ], ], 'PasswordData' => [ 'type' => 'string', 'sensitive' => true, ], 'PathComponent' => [ 'type' => 'structure', 'members' => [ 'SequenceNumber' => [ 'shape' => 'Integer', 'locationName' => 'sequenceNumber', ], 'AclRule' => [ 'shape' => 'AnalysisAclRule', 'locationName' => 'aclRule', ], 'AttachedTo' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'attachedTo', ], 'Component' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'component', ], 'DestinationVpc' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'destinationVpc', ], 'OutboundHeader' => [ 'shape' => 'AnalysisPacketHeader', 'locationName' => 'outboundHeader', ], 'InboundHeader' => [ 'shape' => 'AnalysisPacketHeader', 'locationName' => 'inboundHeader', ], 'RouteTableRoute' => [ 'shape' => 'AnalysisRouteTableRoute', 'locationName' => 'routeTableRoute', ], 'SecurityGroupRule' => [ 'shape' => 'AnalysisSecurityGroupRule', 'locationName' => 'securityGroupRule', ], 'SourceVpc' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'sourceVpc', ], 'Subnet' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'subnet', ], 'Vpc' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'vpc', ], 'AdditionalDetails' => [ 'shape' => 'AdditionalDetailList', 'locationName' => 'additionalDetailSet', ], 'TransitGateway' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'transitGateway', ], 'TransitGatewayRouteTableRoute' => [ 'shape' => 'TransitGatewayRouteTableRoute', 'locationName' => 'transitGatewayRouteTableRoute', ], 'Explanations' => [ 'shape' => 'ExplanationList', 'locationName' => 'explanationSet', ], 'ElasticLoadBalancerListener' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'elasticLoadBalancerListener', ], 'FirewallStatelessRule' => [ 'shape' => 'FirewallStatelessRule', 'locationName' => 'firewallStatelessRule', ], 'FirewallStatefulRule' => [ 'shape' => 'FirewallStatefulRule', 'locationName' => 'firewallStatefulRule', ], 'ServiceName' => [ 'shape' => 'String', 'locationName' => 'serviceName', ], ], ], 'PathComponentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PathComponent', 'locationName' => 'item', ], ], 'PathFilter' => [ 'type' => 'structure', 'members' => [ 'SourceAddress' => [ 'shape' => 'IpAddress', 'locationName' => 'sourceAddress', ], 'SourcePortRange' => [ 'shape' => 'FilterPortRange', 'locationName' => 'sourcePortRange', ], 'DestinationAddress' => [ 'shape' => 'IpAddress', 'locationName' => 'destinationAddress', ], 'DestinationPortRange' => [ 'shape' => 'FilterPortRange', 'locationName' => 'destinationPortRange', ], ], ], 'PathRequestFilter' => [ 'type' => 'structure', 'members' => [ 'SourceAddress' => [ 'shape' => 'IpAddress', ], 'SourcePortRange' => [ 'shape' => 'RequestFilterPortRange', ], 'DestinationAddress' => [ 'shape' => 'IpAddress', ], 'DestinationPortRange' => [ 'shape' => 'RequestFilterPortRange', ], ], ], 'PathStatement' => [ 'type' => 'structure', 'members' => [ 'PacketHeaderStatement' => [ 'shape' => 'PacketHeaderStatement', 'locationName' => 'packetHeaderStatement', ], 'ResourceStatement' => [ 'shape' => 'ResourceStatement', 'locationName' => 'resourceStatement', ], ], ], 'PathStatementRequest' => [ 'type' => 'structure', 'members' => [ 'PacketHeaderStatement' => [ 'shape' => 'PacketHeaderStatementRequest', ], 'ResourceStatement' => [ 'shape' => 'ResourceStatementRequest', ], ], ], 'PayerResponsibility' => [ 'type' => 'string', 'enum' => [ 'ServiceOwner', ], ], 'PaymentOption' => [ 'type' => 'string', 'enum' => [ 'AllUpfront', 'PartialUpfront', 'NoUpfront', ], ], 'PciId' => [ 'type' => 'structure', 'members' => [ 'DeviceId' => [ 'shape' => 'String', ], 'VendorId' => [ 'shape' => 'String', ], 'SubsystemId' => [ 'shape' => 'String', ], 'SubsystemVendorId' => [ 'shape' => 'String', ], ], ], 'PeakBandwidthInGbps' => [ 'type' => 'double', ], 'PeeringAttachmentStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'PeeringConnectionOptions' => [ 'type' => 'structure', 'members' => [ 'AllowDnsResolutionFromRemoteVpc' => [ 'shape' => 'Boolean', 'locationName' => 'allowDnsResolutionFromRemoteVpc', ], 'AllowEgressFromLocalClassicLinkToRemoteVpc' => [ 'shape' => 'Boolean', 'locationName' => 'allowEgressFromLocalClassicLinkToRemoteVpc', ], 'AllowEgressFromLocalVpcToRemoteClassicLink' => [ 'shape' => 'Boolean', 'locationName' => 'allowEgressFromLocalVpcToRemoteClassicLink', ], ], ], 'PeeringConnectionOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'AllowDnsResolutionFromRemoteVpc' => [ 'shape' => 'Boolean', ], 'AllowEgressFromLocalClassicLinkToRemoteVpc' => [ 'shape' => 'Boolean', ], 'AllowEgressFromLocalVpcToRemoteClassicLink' => [ 'shape' => 'Boolean', ], ], ], 'PeeringTgwInfo' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'CoreNetworkId' => [ 'shape' => 'String', 'locationName' => 'coreNetworkId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Region' => [ 'shape' => 'String', 'locationName' => 'region', ], ], ], 'PeriodType' => [ 'type' => 'string', 'enum' => [ 'five-minutes', 'fifteen-minutes', 'one-hour', 'three-hours', 'one-day', 'one-week', ], ], 'PermissionGroup' => [ 'type' => 'string', 'enum' => [ 'all', ], ], 'Phase1DHGroupNumbersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase1DHGroupNumbersListValue', 'locationName' => 'item', ], ], 'Phase1DHGroupNumbersListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'Integer', 'locationName' => 'value', ], ], ], 'Phase1DHGroupNumbersRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase1DHGroupNumbersRequestListValue', 'locationName' => 'item', ], ], 'Phase1DHGroupNumbersRequestListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'Integer', ], ], ], 'Phase1EncryptionAlgorithmsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase1EncryptionAlgorithmsListValue', 'locationName' => 'item', ], ], 'Phase1EncryptionAlgorithmsListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'Phase1EncryptionAlgorithmsRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase1EncryptionAlgorithmsRequestListValue', 'locationName' => 'item', ], ], 'Phase1EncryptionAlgorithmsRequestListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', ], ], ], 'Phase1IntegrityAlgorithmsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase1IntegrityAlgorithmsListValue', 'locationName' => 'item', ], ], 'Phase1IntegrityAlgorithmsListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'Phase1IntegrityAlgorithmsRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase1IntegrityAlgorithmsRequestListValue', 'locationName' => 'item', ], ], 'Phase1IntegrityAlgorithmsRequestListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', ], ], ], 'Phase2DHGroupNumbersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase2DHGroupNumbersListValue', 'locationName' => 'item', ], ], 'Phase2DHGroupNumbersListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'Integer', 'locationName' => 'value', ], ], ], 'Phase2DHGroupNumbersRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase2DHGroupNumbersRequestListValue', 'locationName' => 'item', ], ], 'Phase2DHGroupNumbersRequestListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'Integer', ], ], ], 'Phase2EncryptionAlgorithmsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase2EncryptionAlgorithmsListValue', 'locationName' => 'item', ], ], 'Phase2EncryptionAlgorithmsListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'Phase2EncryptionAlgorithmsRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase2EncryptionAlgorithmsRequestListValue', 'locationName' => 'item', ], ], 'Phase2EncryptionAlgorithmsRequestListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', ], ], ], 'Phase2IntegrityAlgorithmsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase2IntegrityAlgorithmsListValue', 'locationName' => 'item', ], ], 'Phase2IntegrityAlgorithmsListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'Phase2IntegrityAlgorithmsRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase2IntegrityAlgorithmsRequestListValue', 'locationName' => 'item', ], ], 'Phase2IntegrityAlgorithmsRequestListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', ], ], ], 'Placement' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Affinity' => [ 'shape' => 'String', 'locationName' => 'affinity', ], 'GroupName' => [ 'shape' => 'PlacementGroupName', 'locationName' => 'groupName', ], 'PartitionNumber' => [ 'shape' => 'Integer', 'locationName' => 'partitionNumber', ], 'HostId' => [ 'shape' => 'String', 'locationName' => 'hostId', ], 'Tenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'tenancy', ], 'SpreadDomain' => [ 'shape' => 'String', 'locationName' => 'spreadDomain', ], 'HostResourceGroupArn' => [ 'shape' => 'String', 'locationName' => 'hostResourceGroupArn', ], 'GroupId' => [ 'shape' => 'PlacementGroupId', 'locationName' => 'groupId', ], ], ], 'PlacementGroup' => [ 'type' => 'structure', 'members' => [ 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'State' => [ 'shape' => 'PlacementGroupState', 'locationName' => 'state', ], 'Strategy' => [ 'shape' => 'PlacementStrategy', 'locationName' => 'strategy', ], 'PartitionCount' => [ 'shape' => 'Integer', 'locationName' => 'partitionCount', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'GroupArn' => [ 'shape' => 'String', 'locationName' => 'groupArn', ], 'SpreadLevel' => [ 'shape' => 'SpreadLevel', 'locationName' => 'spreadLevel', ], ], ], 'PlacementGroupArn' => [ 'type' => 'string', 'pattern' => '^arn:aws([a-z-]+)?:ec2:[a-z\\d-]+:\\d{12}:placement-group/^.{1,255}$', ], 'PlacementGroupId' => [ 'type' => 'string', ], 'PlacementGroupIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PlacementGroupId', 'locationName' => 'GroupId', ], ], 'PlacementGroupInfo' => [ 'type' => 'structure', 'members' => [ 'SupportedStrategies' => [ 'shape' => 'PlacementGroupStrategyList', 'locationName' => 'supportedStrategies', ], ], ], 'PlacementGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PlacementGroup', 'locationName' => 'item', ], ], 'PlacementGroupName' => [ 'type' => 'string', ], 'PlacementGroupState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'deleting', 'deleted', ], ], 'PlacementGroupStrategy' => [ 'type' => 'string', 'enum' => [ 'cluster', 'partition', 'spread', ], ], 'PlacementGroupStrategyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PlacementGroupStrategy', 'locationName' => 'item', ], ], 'PlacementGroupStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PlacementGroupName', ], ], 'PlacementResponse' => [ 'type' => 'structure', 'members' => [ 'GroupName' => [ 'shape' => 'PlacementGroupName', 'locationName' => 'groupName', ], ], ], 'PlacementStrategy' => [ 'type' => 'string', 'enum' => [ 'cluster', 'spread', 'partition', ], ], 'PlatformValues' => [ 'type' => 'string', 'enum' => [ 'Windows', ], ], 'PoolCidrBlock' => [ 'type' => 'structure', 'members' => [ 'Cidr' => [ 'shape' => 'String', 'locationName' => 'poolCidrBlock', ], ], ], 'PoolCidrBlocksSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PoolCidrBlock', 'locationName' => 'item', ], ], 'PoolMaxResults' => [ 'type' => 'integer', 'max' => 10, 'min' => 1, ], 'Port' => [ 'type' => 'integer', 'max' => 65535, 'min' => 0, ], 'PortRange' => [ 'type' => 'structure', 'members' => [ 'From' => [ 'shape' => 'Integer', 'locationName' => 'from', ], 'To' => [ 'shape' => 'Integer', 'locationName' => 'to', ], ], ], 'PortRangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PortRange', 'locationName' => 'item', ], ], 'PrefixList' => [ 'type' => 'structure', 'members' => [ 'Cidrs' => [ 'shape' => 'ValueStringList', 'locationName' => 'cidrSet', ], 'PrefixListId' => [ 'shape' => 'String', 'locationName' => 'prefixListId', ], 'PrefixListName' => [ 'shape' => 'String', 'locationName' => 'prefixListName', ], ], ], 'PrefixListAssociation' => [ 'type' => 'structure', 'members' => [ 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceOwner' => [ 'shape' => 'String', 'locationName' => 'resourceOwner', ], ], ], 'PrefixListAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrefixListAssociation', 'locationName' => 'item', ], ], 'PrefixListEntry' => [ 'type' => 'structure', 'members' => [ 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], ], ], 'PrefixListEntrySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrefixListEntry', 'locationName' => 'item', ], ], 'PrefixListId' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'PrefixListId' => [ 'shape' => 'String', 'locationName' => 'prefixListId', ], ], ], 'PrefixListIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrefixListId', 'locationName' => 'item', ], ], 'PrefixListIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'PrefixListMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'PrefixListResourceId' => [ 'type' => 'string', ], 'PrefixListResourceIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrefixListResourceId', 'locationName' => 'item', ], ], 'PrefixListSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrefixList', 'locationName' => 'item', ], ], 'PrefixListState' => [ 'type' => 'string', 'enum' => [ 'create-in-progress', 'create-complete', 'create-failed', 'modify-in-progress', 'modify-complete', 'modify-failed', 'restore-in-progress', 'restore-complete', 'restore-failed', 'delete-in-progress', 'delete-complete', 'delete-failed', ], ], 'PriceSchedule' => [ 'type' => 'structure', 'members' => [ 'Active' => [ 'shape' => 'Boolean', 'locationName' => 'active', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Price' => [ 'shape' => 'Double', 'locationName' => 'price', ], 'Term' => [ 'shape' => 'Long', 'locationName' => 'term', ], ], ], 'PriceScheduleList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PriceSchedule', 'locationName' => 'item', ], ], 'PriceScheduleSpecification' => [ 'type' => 'structure', 'members' => [ 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Price' => [ 'shape' => 'Double', 'locationName' => 'price', ], 'Term' => [ 'shape' => 'Long', 'locationName' => 'term', ], ], ], 'PriceScheduleSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PriceScheduleSpecification', 'locationName' => 'item', ], ], 'PricingDetail' => [ 'type' => 'structure', 'members' => [ 'Count' => [ 'shape' => 'Integer', 'locationName' => 'count', ], 'Price' => [ 'shape' => 'Double', 'locationName' => 'price', ], ], ], 'PricingDetailsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PricingDetail', 'locationName' => 'item', ], ], 'PrincipalIdFormat' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', 'locationName' => 'arn', ], 'Statuses' => [ 'shape' => 'IdFormatList', 'locationName' => 'statusSet', ], ], ], 'PrincipalIdFormatList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrincipalIdFormat', 'locationName' => 'item', ], ], 'PrincipalType' => [ 'type' => 'string', 'enum' => [ 'All', 'Service', 'OrganizationUnit', 'Account', 'User', 'Role', ], ], 'Priority' => [ 'type' => 'integer', 'max' => 65535, 'min' => -1, ], 'PrivateDnsDetails' => [ 'type' => 'structure', 'members' => [ 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], ], ], 'PrivateDnsDetailsSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrivateDnsDetails', 'locationName' => 'item', ], ], 'PrivateDnsNameConfiguration' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'DnsNameState', 'locationName' => 'state', ], 'Type' => [ 'shape' => 'String', 'locationName' => 'type', ], 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], ], ], 'PrivateDnsNameOptionsOnLaunch' => [ 'type' => 'structure', 'members' => [ 'HostnameType' => [ 'shape' => 'HostnameType', 'locationName' => 'hostnameType', ], 'EnableResourceNameDnsARecord' => [ 'shape' => 'Boolean', 'locationName' => 'enableResourceNameDnsARecord', ], 'EnableResourceNameDnsAAAARecord' => [ 'shape' => 'Boolean', 'locationName' => 'enableResourceNameDnsAAAARecord', ], ], ], 'PrivateDnsNameOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'HostnameType' => [ 'shape' => 'HostnameType', ], 'EnableResourceNameDnsARecord' => [ 'shape' => 'Boolean', ], 'EnableResourceNameDnsAAAARecord' => [ 'shape' => 'Boolean', ], ], ], 'PrivateDnsNameOptionsResponse' => [ 'type' => 'structure', 'members' => [ 'HostnameType' => [ 'shape' => 'HostnameType', 'locationName' => 'hostnameType', ], 'EnableResourceNameDnsARecord' => [ 'shape' => 'Boolean', 'locationName' => 'enableResourceNameDnsARecord', ], 'EnableResourceNameDnsAAAARecord' => [ 'shape' => 'Boolean', 'locationName' => 'enableResourceNameDnsAAAARecord', ], ], ], 'PrivateIpAddressConfigSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstancesPrivateIpAddressConfig', 'locationName' => 'PrivateIpAddressConfigSet', ], ], 'PrivateIpAddressCount' => [ 'type' => 'integer', 'max' => 31, 'min' => 1, ], 'PrivateIpAddressSpecification' => [ 'type' => 'structure', 'members' => [ 'Primary' => [ 'shape' => 'Boolean', 'locationName' => 'primary', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], ], ], 'PrivateIpAddressSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrivateIpAddressSpecification', 'locationName' => 'item', ], ], 'PrivateIpAddressStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'PrivateIpAddress', ], ], 'ProcessorInfo' => [ 'type' => 'structure', 'members' => [ 'SupportedArchitectures' => [ 'shape' => 'ArchitectureTypeList', 'locationName' => 'supportedArchitectures', ], 'SustainedClockSpeedInGhz' => [ 'shape' => 'ProcessorSustainedClockSpeed', 'locationName' => 'sustainedClockSpeedInGhz', ], 'SupportedFeatures' => [ 'shape' => 'SupportedAdditionalProcessorFeatureList', 'locationName' => 'supportedFeatures', ], 'Manufacturer' => [ 'shape' => 'CpuManufacturerName', 'locationName' => 'manufacturer', ], ], ], 'ProcessorSustainedClockSpeed' => [ 'type' => 'double', ], 'ProductCode' => [ 'type' => 'structure', 'members' => [ 'ProductCodeId' => [ 'shape' => 'String', 'locationName' => 'productCode', ], 'ProductCodeType' => [ 'shape' => 'ProductCodeValues', 'locationName' => 'type', ], ], ], 'ProductCodeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProductCode', 'locationName' => 'item', ], ], 'ProductCodeStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ProductCode', ], ], 'ProductCodeValues' => [ 'type' => 'string', 'enum' => [ 'devpay', 'marketplace', ], ], 'ProductDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'PropagatingVgw' => [ 'type' => 'structure', 'members' => [ 'GatewayId' => [ 'shape' => 'String', 'locationName' => 'gatewayId', ], ], ], 'PropagatingVgwList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PropagatingVgw', 'locationName' => 'item', ], ], 'Protocol' => [ 'type' => 'string', 'enum' => [ 'tcp', 'udp', ], ], 'ProtocolInt' => [ 'type' => 'integer', 'max' => 255, 'min' => 0, ], 'ProtocolIntList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProtocolInt', 'locationName' => 'item', ], ], 'ProtocolList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Protocol', 'locationName' => 'item', ], ], 'ProtocolValue' => [ 'type' => 'string', 'enum' => [ 'gre', ], ], 'ProvisionByoipCidrRequest' => [ 'type' => 'structure', 'required' => [ 'Cidr', ], 'members' => [ 'Cidr' => [ 'shape' => 'String', ], 'CidrAuthorizationContext' => [ 'shape' => 'CidrAuthorizationContext', ], 'PubliclyAdvertisable' => [ 'shape' => 'Boolean', ], 'Description' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'PoolTagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'PoolTagSpecification', ], 'MultiRegion' => [ 'shape' => 'Boolean', ], 'NetworkBorderGroup' => [ 'shape' => 'String', ], ], ], 'ProvisionByoipCidrResult' => [ 'type' => 'structure', 'members' => [ 'ByoipCidr' => [ 'shape' => 'ByoipCidr', 'locationName' => 'byoipCidr', ], ], ], 'ProvisionIpamByoasnRequest' => [ 'type' => 'structure', 'required' => [ 'IpamId', 'Asn', 'AsnAuthorizationContext', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamId' => [ 'shape' => 'IpamId', ], 'Asn' => [ 'shape' => 'String', ], 'AsnAuthorizationContext' => [ 'shape' => 'AsnAuthorizationContext', ], ], ], 'ProvisionIpamByoasnResult' => [ 'type' => 'structure', 'members' => [ 'Byoasn' => [ 'shape' => 'Byoasn', 'locationName' => 'byoasn', ], ], ], 'ProvisionIpamPoolCidrRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Cidr' => [ 'shape' => 'String', ], 'CidrAuthorizationContext' => [ 'shape' => 'IpamCidrAuthorizationContext', ], 'NetmaskLength' => [ 'shape' => 'Integer', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'ProvisionIpamPoolCidrResult' => [ 'type' => 'structure', 'members' => [ 'IpamPoolCidr' => [ 'shape' => 'IpamPoolCidr', 'locationName' => 'ipamPoolCidr', ], ], ], 'ProvisionPublicIpv4PoolCidrRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', 'PoolId', 'NetmaskLength', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'PoolId' => [ 'shape' => 'Ipv4PoolEc2Id', ], 'NetmaskLength' => [ 'shape' => 'Integer', ], ], ], 'ProvisionPublicIpv4PoolCidrResult' => [ 'type' => 'structure', 'members' => [ 'PoolId' => [ 'shape' => 'Ipv4PoolEc2Id', 'locationName' => 'poolId', ], 'PoolAddressRange' => [ 'shape' => 'PublicIpv4PoolRange', 'locationName' => 'poolAddressRange', ], ], ], 'ProvisionedBandwidth' => [ 'type' => 'structure', 'members' => [ 'ProvisionTime' => [ 'shape' => 'DateTime', 'locationName' => 'provisionTime', ], 'Provisioned' => [ 'shape' => 'String', 'locationName' => 'provisioned', ], 'RequestTime' => [ 'shape' => 'DateTime', 'locationName' => 'requestTime', ], 'Requested' => [ 'shape' => 'String', 'locationName' => 'requested', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], ], ], 'PtrUpdateStatus' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'Reason' => [ 'shape' => 'String', 'locationName' => 'reason', ], ], ], 'PublicIpAddress' => [ 'type' => 'string', ], 'PublicIpStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'PublicIp', ], ], 'PublicIpv4Pool' => [ 'type' => 'structure', 'members' => [ 'PoolId' => [ 'shape' => 'String', 'locationName' => 'poolId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'PoolAddressRanges' => [ 'shape' => 'PublicIpv4PoolRangeSet', 'locationName' => 'poolAddressRangeSet', ], 'TotalAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'totalAddressCount', ], 'TotalAvailableAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'totalAvailableAddressCount', ], 'NetworkBorderGroup' => [ 'shape' => 'String', 'locationName' => 'networkBorderGroup', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'PublicIpv4PoolIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv4PoolEc2Id', 'locationName' => 'item', ], ], 'PublicIpv4PoolRange' => [ 'type' => 'structure', 'members' => [ 'FirstAddress' => [ 'shape' => 'String', 'locationName' => 'firstAddress', ], 'LastAddress' => [ 'shape' => 'String', 'locationName' => 'lastAddress', ], 'AddressCount' => [ 'shape' => 'Integer', 'locationName' => 'addressCount', ], 'AvailableAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'availableAddressCount', ], ], ], 'PublicIpv4PoolRangeSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PublicIpv4PoolRange', 'locationName' => 'item', ], ], 'PublicIpv4PoolSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PublicIpv4Pool', 'locationName' => 'item', ], ], 'Purchase' => [ 'type' => 'structure', 'members' => [ 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Duration' => [ 'shape' => 'Integer', 'locationName' => 'duration', ], 'HostIdSet' => [ 'shape' => 'ResponseHostIdSet', 'locationName' => 'hostIdSet', ], 'HostReservationId' => [ 'shape' => 'HostReservationId', 'locationName' => 'hostReservationId', ], 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], 'InstanceFamily' => [ 'shape' => 'String', 'locationName' => 'instanceFamily', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', 'locationName' => 'paymentOption', ], 'UpfrontPrice' => [ 'shape' => 'String', 'locationName' => 'upfrontPrice', ], ], ], 'PurchaseCapacityBlockRequest' => [ 'type' => 'structure', 'required' => [ 'CapacityBlockOfferingId', 'InstancePlatform', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'CapacityBlockOfferingId' => [ 'shape' => 'OfferingId', ], 'InstancePlatform' => [ 'shape' => 'CapacityReservationInstancePlatform', ], ], ], 'PurchaseCapacityBlockResult' => [ 'type' => 'structure', 'members' => [ 'CapacityReservation' => [ 'shape' => 'CapacityReservation', 'locationName' => 'capacityReservation', ], ], ], 'PurchaseHostReservationRequest' => [ 'type' => 'structure', 'required' => [ 'HostIdSet', 'OfferingId', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', ], 'HostIdSet' => [ 'shape' => 'RequestHostIdSet', ], 'LimitPrice' => [ 'shape' => 'String', ], 'OfferingId' => [ 'shape' => 'OfferingId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'PurchaseHostReservationResult' => [ 'type' => 'structure', 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Purchase' => [ 'shape' => 'PurchaseSet', 'locationName' => 'purchase', ], 'TotalHourlyPrice' => [ 'shape' => 'String', 'locationName' => 'totalHourlyPrice', ], 'TotalUpfrontPrice' => [ 'shape' => 'String', 'locationName' => 'totalUpfrontPrice', ], ], ], 'PurchaseRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceCount', 'PurchaseToken', ], 'members' => [ 'InstanceCount' => [ 'shape' => 'Integer', ], 'PurchaseToken' => [ 'shape' => 'String', ], ], ], 'PurchaseRequestSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PurchaseRequest', 'locationName' => 'PurchaseRequest', ], 'min' => 1, ], 'PurchaseReservedInstancesOfferingRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceCount', 'ReservedInstancesOfferingId', ], 'members' => [ 'InstanceCount' => [ 'shape' => 'Integer', ], 'ReservedInstancesOfferingId' => [ 'shape' => 'ReservedInstancesOfferingId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'LimitPrice' => [ 'shape' => 'ReservedInstanceLimitPrice', 'locationName' => 'limitPrice', ], 'PurchaseTime' => [ 'shape' => 'DateTime', ], ], ], 'PurchaseReservedInstancesOfferingResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], ], ], 'PurchaseScheduledInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'PurchaseRequests', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'PurchaseRequests' => [ 'shape' => 'PurchaseRequestSet', 'locationName' => 'PurchaseRequest', ], ], ], 'PurchaseScheduledInstancesResult' => [ 'type' => 'structure', 'members' => [ 'ScheduledInstanceSet' => [ 'shape' => 'PurchasedScheduledInstanceSet', 'locationName' => 'scheduledInstanceSet', ], ], ], 'PurchaseSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Purchase', 'locationName' => 'item', ], ], 'PurchasedScheduledInstanceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstance', 'locationName' => 'item', ], ], 'RIProductDescription' => [ 'type' => 'string', 'enum' => [ 'Linux/UNIX', 'Linux/UNIX (Amazon VPC)', 'Windows', 'Windows (Amazon VPC)', ], ], 'RamdiskId' => [ 'type' => 'string', ], 'ReasonCodesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReportInstanceReasonCodes', 'locationName' => 'item', ], ], 'RebootInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'RecurringCharge' => [ 'type' => 'structure', 'members' => [ 'Amount' => [ 'shape' => 'Double', 'locationName' => 'amount', ], 'Frequency' => [ 'shape' => 'RecurringChargeFrequency', 'locationName' => 'frequency', ], ], ], 'RecurringChargeFrequency' => [ 'type' => 'string', 'enum' => [ 'Hourly', ], ], 'RecurringChargesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecurringCharge', 'locationName' => 'item', ], ], 'ReferencedSecurityGroup' => [ 'type' => 'structure', 'members' => [ 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'PeeringStatus' => [ 'shape' => 'String', 'locationName' => 'peeringStatus', ], 'UserId' => [ 'shape' => 'String', 'locationName' => 'userId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], ], ], 'Region' => [ 'type' => 'structure', 'members' => [ 'Endpoint' => [ 'shape' => 'String', 'locationName' => 'regionEndpoint', ], 'RegionName' => [ 'shape' => 'String', 'locationName' => 'regionName', ], 'OptInStatus' => [ 'shape' => 'String', 'locationName' => 'optInStatus', ], ], ], 'RegionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Region', 'locationName' => 'item', ], ], 'RegionNameStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'RegionName', ], ], 'RegionNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], 'max' => 10, 'min' => 0, ], 'RegisterImageRequest' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'ImageLocation' => [ 'shape' => 'String', ], 'Architecture' => [ 'shape' => 'ArchitectureValues', 'locationName' => 'architecture', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingRequestList', 'locationName' => 'BlockDeviceMapping', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'EnaSupport' => [ 'shape' => 'Boolean', 'locationName' => 'enaSupport', ], 'KernelId' => [ 'shape' => 'KernelId', 'locationName' => 'kernelId', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], 'BillingProducts' => [ 'shape' => 'BillingProductList', 'locationName' => 'BillingProduct', ], 'RamdiskId' => [ 'shape' => 'RamdiskId', 'locationName' => 'ramdiskId', ], 'RootDeviceName' => [ 'shape' => 'String', 'locationName' => 'rootDeviceName', ], 'SriovNetSupport' => [ 'shape' => 'String', 'locationName' => 'sriovNetSupport', ], 'VirtualizationType' => [ 'shape' => 'String', 'locationName' => 'virtualizationType', ], 'BootMode' => [ 'shape' => 'BootModeValues', ], 'TpmSupport' => [ 'shape' => 'TpmSupportValues', ], 'UefiData' => [ 'shape' => 'StringType', ], 'ImdsSupport' => [ 'shape' => 'ImdsSupportValues', ], ], ], 'RegisterImageResult' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], ], ], 'RegisterInstanceEventNotificationAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceTagAttribute', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceTagAttribute' => [ 'shape' => 'RegisterInstanceTagAttributeRequest', ], ], ], 'RegisterInstanceEventNotificationAttributesResult' => [ 'type' => 'structure', 'members' => [ 'InstanceTagAttribute' => [ 'shape' => 'InstanceTagNotificationAttribute', 'locationName' => 'instanceTagAttribute', ], ], ], 'RegisterInstanceTagAttributeRequest' => [ 'type' => 'structure', 'members' => [ 'IncludeAllTagsOfInstance' => [ 'shape' => 'Boolean', ], 'InstanceTagKeys' => [ 'shape' => 'InstanceTagKeySet', 'locationName' => 'InstanceTagKey', ], ], ], 'RegisterTransitGatewayMulticastGroupMembersRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayMulticastDomainId', 'NetworkInterfaceIds', ], 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'GroupIpAddress' => [ 'shape' => 'String', ], 'NetworkInterfaceIds' => [ 'shape' => 'TransitGatewayNetworkInterfaceIdList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RegisterTransitGatewayMulticastGroupMembersResult' => [ 'type' => 'structure', 'members' => [ 'RegisteredMulticastGroupMembers' => [ 'shape' => 'TransitGatewayMulticastRegisteredGroupMembers', 'locationName' => 'registeredMulticastGroupMembers', ], ], ], 'RegisterTransitGatewayMulticastGroupSourcesRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayMulticastDomainId', 'NetworkInterfaceIds', ], 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'GroupIpAddress' => [ 'shape' => 'String', ], 'NetworkInterfaceIds' => [ 'shape' => 'TransitGatewayNetworkInterfaceIdList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RegisterTransitGatewayMulticastGroupSourcesResult' => [ 'type' => 'structure', 'members' => [ 'RegisteredMulticastGroupSources' => [ 'shape' => 'TransitGatewayMulticastRegisteredGroupSources', 'locationName' => 'registeredMulticastGroupSources', ], ], ], 'RejectTransitGatewayMulticastDomainAssociationsRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'SubnetIds' => [ 'shape' => 'ValueStringList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RejectTransitGatewayMulticastDomainAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'Associations' => [ 'shape' => 'TransitGatewayMulticastDomainAssociations', 'locationName' => 'associations', ], ], ], 'RejectTransitGatewayPeeringAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RejectTransitGatewayPeeringAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPeeringAttachment' => [ 'shape' => 'TransitGatewayPeeringAttachment', 'locationName' => 'transitGatewayPeeringAttachment', ], ], ], 'RejectTransitGatewayVpcAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RejectTransitGatewayVpcAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayVpcAttachment' => [ 'shape' => 'TransitGatewayVpcAttachment', 'locationName' => 'transitGatewayVpcAttachment', ], ], ], 'RejectVpcEndpointConnectionsRequest' => [ 'type' => 'structure', 'required' => [ 'ServiceId', 'VpcEndpointIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceId' => [ 'shape' => 'VpcEndpointServiceId', ], 'VpcEndpointIds' => [ 'shape' => 'VpcEndpointIdList', 'locationName' => 'VpcEndpointId', ], ], ], 'RejectVpcEndpointConnectionsResult' => [ 'type' => 'structure', 'members' => [ 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemSet', 'locationName' => 'unsuccessful', ], ], ], 'RejectVpcPeeringConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'VpcPeeringConnectionId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcPeeringConnectionId' => [ 'shape' => 'VpcPeeringConnectionId', 'locationName' => 'vpcPeeringConnectionId', ], ], ], 'RejectVpcPeeringConnectionResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ReleaseAddressRequest' => [ 'type' => 'structure', 'members' => [ 'AllocationId' => [ 'shape' => 'AllocationId', ], 'PublicIp' => [ 'shape' => 'String', ], 'NetworkBorderGroup' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'ReleaseHostsRequest' => [ 'type' => 'structure', 'required' => [ 'HostIds', ], 'members' => [ 'HostIds' => [ 'shape' => 'RequestHostIdList', 'locationName' => 'hostId', ], ], ], 'ReleaseHostsResult' => [ 'type' => 'structure', 'members' => [ 'Successful' => [ 'shape' => 'ResponseHostIdList', 'locationName' => 'successful', ], 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemList', 'locationName' => 'unsuccessful', ], ], ], 'ReleaseIpamPoolAllocationRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', 'Cidr', 'IpamPoolAllocationId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Cidr' => [ 'shape' => 'String', ], 'IpamPoolAllocationId' => [ 'shape' => 'IpamPoolAllocationId', ], ], ], 'ReleaseIpamPoolAllocationResult' => [ 'type' => 'structure', 'members' => [ 'Success' => [ 'shape' => 'Boolean', 'locationName' => 'success', ], ], ], 'RemoveIpamOperatingRegion' => [ 'type' => 'structure', 'members' => [ 'RegionName' => [ 'shape' => 'String', ], ], ], 'RemoveIpamOperatingRegionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'RemoveIpamOperatingRegion', ], 'max' => 50, 'min' => 0, ], 'RemovePrefixListEntries' => [ 'type' => 'list', 'member' => [ 'shape' => 'RemovePrefixListEntry', ], 'max' => 100, 'min' => 0, ], 'RemovePrefixListEntry' => [ 'type' => 'structure', 'required' => [ 'Cidr', ], 'members' => [ 'Cidr' => [ 'shape' => 'String', ], ], ], 'ReplaceIamInstanceProfileAssociationRequest' => [ 'type' => 'structure', 'required' => [ 'IamInstanceProfile', 'AssociationId', ], 'members' => [ 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfileSpecification', ], 'AssociationId' => [ 'shape' => 'IamInstanceProfileAssociationId', ], ], ], 'ReplaceIamInstanceProfileAssociationResult' => [ 'type' => 'structure', 'members' => [ 'IamInstanceProfileAssociation' => [ 'shape' => 'IamInstanceProfileAssociation', 'locationName' => 'iamInstanceProfileAssociation', ], ], ], 'ReplaceNetworkAclAssociationRequest' => [ 'type' => 'structure', 'required' => [ 'AssociationId', 'NetworkAclId', ], 'members' => [ 'AssociationId' => [ 'shape' => 'NetworkAclAssociationId', 'locationName' => 'associationId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkAclId' => [ 'shape' => 'NetworkAclId', 'locationName' => 'networkAclId', ], ], ], 'ReplaceNetworkAclAssociationResult' => [ 'type' => 'structure', 'members' => [ 'NewAssociationId' => [ 'shape' => 'String', 'locationName' => 'newAssociationId', ], ], ], 'ReplaceNetworkAclEntryRequest' => [ 'type' => 'structure', 'required' => [ 'Egress', 'NetworkAclId', 'Protocol', 'RuleAction', 'RuleNumber', ], 'members' => [ 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Egress' => [ 'shape' => 'Boolean', 'locationName' => 'egress', ], 'IcmpTypeCode' => [ 'shape' => 'IcmpTypeCode', 'locationName' => 'Icmp', ], 'Ipv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'ipv6CidrBlock', ], 'NetworkAclId' => [ 'shape' => 'NetworkAclId', 'locationName' => 'networkAclId', ], 'PortRange' => [ 'shape' => 'PortRange', 'locationName' => 'portRange', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], 'RuleAction' => [ 'shape' => 'RuleAction', 'locationName' => 'ruleAction', ], 'RuleNumber' => [ 'shape' => 'Integer', 'locationName' => 'ruleNumber', ], ], ], 'ReplaceRootVolumeTask' => [ 'type' => 'structure', 'members' => [ 'ReplaceRootVolumeTaskId' => [ 'shape' => 'ReplaceRootVolumeTaskId', 'locationName' => 'replaceRootVolumeTaskId', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'TaskState' => [ 'shape' => 'ReplaceRootVolumeTaskState', 'locationName' => 'taskState', ], 'StartTime' => [ 'shape' => 'String', 'locationName' => 'startTime', ], 'CompleteTime' => [ 'shape' => 'String', 'locationName' => 'completeTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'ImageId' => [ 'shape' => 'ImageId', 'locationName' => 'imageId', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', 'locationName' => 'snapshotId', ], 'DeleteReplacedRootVolume' => [ 'shape' => 'Boolean', 'locationName' => 'deleteReplacedRootVolume', ], ], ], 'ReplaceRootVolumeTaskId' => [ 'type' => 'string', ], 'ReplaceRootVolumeTaskIds' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReplaceRootVolumeTaskId', 'locationName' => 'ReplaceRootVolumeTaskId', ], ], 'ReplaceRootVolumeTaskState' => [ 'type' => 'string', 'enum' => [ 'pending', 'in-progress', 'failing', 'succeeded', 'failed', 'failed-detached', ], ], 'ReplaceRootVolumeTasks' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReplaceRootVolumeTask', 'locationName' => 'item', ], ], 'ReplaceRouteRequest' => [ 'type' => 'structure', 'required' => [ 'RouteTableId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'DestinationIpv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationIpv6CidrBlock', ], 'DestinationPrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcEndpointId' => [ 'shape' => 'VpcEndpointId', ], 'EgressOnlyInternetGatewayId' => [ 'shape' => 'EgressOnlyInternetGatewayId', 'locationName' => 'egressOnlyInternetGatewayId', ], 'GatewayId' => [ 'shape' => 'RouteGatewayId', 'locationName' => 'gatewayId', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'LocalTarget' => [ 'shape' => 'Boolean', ], 'NatGatewayId' => [ 'shape' => 'NatGatewayId', 'locationName' => 'natGatewayId', ], 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'LocalGatewayId' => [ 'shape' => 'LocalGatewayId', ], 'CarrierGatewayId' => [ 'shape' => 'CarrierGatewayId', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'RouteTableId' => [ 'shape' => 'RouteTableId', 'locationName' => 'routeTableId', ], 'VpcPeeringConnectionId' => [ 'shape' => 'VpcPeeringConnectionId', 'locationName' => 'vpcPeeringConnectionId', ], 'CoreNetworkArn' => [ 'shape' => 'CoreNetworkArn', ], ], ], 'ReplaceRouteTableAssociationRequest' => [ 'type' => 'structure', 'required' => [ 'AssociationId', 'RouteTableId', ], 'members' => [ 'AssociationId' => [ 'shape' => 'RouteTableAssociationId', 'locationName' => 'associationId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'RouteTableId' => [ 'shape' => 'RouteTableId', 'locationName' => 'routeTableId', ], ], ], 'ReplaceRouteTableAssociationResult' => [ 'type' => 'structure', 'members' => [ 'NewAssociationId' => [ 'shape' => 'String', 'locationName' => 'newAssociationId', ], 'AssociationState' => [ 'shape' => 'RouteTableAssociationState', 'locationName' => 'associationState', ], ], ], 'ReplaceTransitGatewayRouteRequest' => [ 'type' => 'structure', 'required' => [ 'DestinationCidrBlock', 'TransitGatewayRouteTableId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'Blackhole' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ReplaceTransitGatewayRouteResult' => [ 'type' => 'structure', 'members' => [ 'Route' => [ 'shape' => 'TransitGatewayRoute', 'locationName' => 'route', ], ], ], 'ReplaceVpnTunnelRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', 'VpnTunnelOutsideIpAddress', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], 'VpnTunnelOutsideIpAddress' => [ 'shape' => 'String', ], 'ApplyPendingMaintenance' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ReplaceVpnTunnelResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ReplacementStrategy' => [ 'type' => 'string', 'enum' => [ 'launch', 'launch-before-terminate', ], ], 'ReportInstanceReasonCodes' => [ 'type' => 'string', 'enum' => [ 'instance-stuck-in-state', 'unresponsive', 'not-accepting-credentials', 'password-not-available', 'performance-network', 'performance-instance-store', 'performance-ebs-volume', 'performance-other', 'other', ], ], 'ReportInstanceStatusRequest' => [ 'type' => 'structure', 'required' => [ 'Instances', 'ReasonCodes', 'Status', ], 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'EndTime' => [ 'shape' => 'DateTime', 'locationName' => 'endTime', ], 'Instances' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'instanceId', ], 'ReasonCodes' => [ 'shape' => 'ReasonCodesList', 'locationName' => 'reasonCode', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], 'Status' => [ 'shape' => 'ReportStatusType', 'locationName' => 'status', ], ], ], 'ReportStatusType' => [ 'type' => 'string', 'enum' => [ 'ok', 'impaired', ], ], 'RequestFilterPortRange' => [ 'type' => 'structure', 'members' => [ 'FromPort' => [ 'shape' => 'Port', ], 'ToPort' => [ 'shape' => 'Port', ], ], ], 'RequestHostIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DedicatedHostId', 'locationName' => 'item', ], ], 'RequestHostIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DedicatedHostId', 'locationName' => 'item', ], ], 'RequestInstanceTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceType', ], 'locationName' => 'InstanceType', 'max' => 100, 'min' => 0, ], 'RequestIpamResourceTag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'RequestIpamResourceTagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RequestIpamResourceTag', 'locationName' => 'item', ], ], 'RequestLaunchTemplateData' => [ 'type' => 'structure', 'members' => [ 'KernelId' => [ 'shape' => 'KernelId', ], 'EbsOptimized' => [ 'shape' => 'Boolean', ], 'IamInstanceProfile' => [ 'shape' => 'LaunchTemplateIamInstanceProfileSpecificationRequest', ], 'BlockDeviceMappings' => [ 'shape' => 'LaunchTemplateBlockDeviceMappingRequestList', 'locationName' => 'BlockDeviceMapping', ], 'NetworkInterfaces' => [ 'shape' => 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequestList', 'locationName' => 'NetworkInterface', ], 'ImageId' => [ 'shape' => 'ImageId', ], 'InstanceType' => [ 'shape' => 'InstanceType', ], 'KeyName' => [ 'shape' => 'KeyPairName', ], 'Monitoring' => [ 'shape' => 'LaunchTemplatesMonitoringRequest', ], 'Placement' => [ 'shape' => 'LaunchTemplatePlacementRequest', ], 'RamDiskId' => [ 'shape' => 'RamdiskId', ], 'DisableApiTermination' => [ 'shape' => 'Boolean', ], 'InstanceInitiatedShutdownBehavior' => [ 'shape' => 'ShutdownBehavior', ], 'UserData' => [ 'shape' => 'SensitiveUserData', ], 'TagSpecifications' => [ 'shape' => 'LaunchTemplateTagSpecificationRequestList', 'locationName' => 'TagSpecification', ], 'ElasticGpuSpecifications' => [ 'shape' => 'ElasticGpuSpecificationList', 'locationName' => 'ElasticGpuSpecification', ], 'ElasticInferenceAccelerators' => [ 'shape' => 'LaunchTemplateElasticInferenceAcceleratorList', 'locationName' => 'ElasticInferenceAccelerator', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'SecurityGroups' => [ 'shape' => 'SecurityGroupStringList', 'locationName' => 'SecurityGroup', ], 'InstanceMarketOptions' => [ 'shape' => 'LaunchTemplateInstanceMarketOptionsRequest', ], 'CreditSpecification' => [ 'shape' => 'CreditSpecificationRequest', ], 'CpuOptions' => [ 'shape' => 'LaunchTemplateCpuOptionsRequest', ], 'CapacityReservationSpecification' => [ 'shape' => 'LaunchTemplateCapacityReservationSpecificationRequest', ], 'LicenseSpecifications' => [ 'shape' => 'LaunchTemplateLicenseSpecificationListRequest', 'locationName' => 'LicenseSpecification', ], 'HibernationOptions' => [ 'shape' => 'LaunchTemplateHibernationOptionsRequest', ], 'MetadataOptions' => [ 'shape' => 'LaunchTemplateInstanceMetadataOptionsRequest', ], 'EnclaveOptions' => [ 'shape' => 'LaunchTemplateEnclaveOptionsRequest', ], 'InstanceRequirements' => [ 'shape' => 'InstanceRequirementsRequest', ], 'PrivateDnsNameOptions' => [ 'shape' => 'LaunchTemplatePrivateDnsNameOptionsRequest', ], 'MaintenanceOptions' => [ 'shape' => 'LaunchTemplateInstanceMaintenanceOptionsRequest', ], 'DisableApiStop' => [ 'shape' => 'Boolean', ], ], ], 'RequestSpotFleetRequest' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestConfig', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SpotFleetRequestConfig' => [ 'shape' => 'SpotFleetRequestConfigData', 'locationName' => 'spotFleetRequestConfig', ], ], ], 'RequestSpotFleetResponse' => [ 'type' => 'structure', 'members' => [ 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], ], ], 'RequestSpotInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZoneGroup' => [ 'shape' => 'String', 'locationName' => 'availabilityZoneGroup', ], 'BlockDurationMinutes' => [ 'shape' => 'Integer', 'locationName' => 'blockDurationMinutes', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'LaunchGroup' => [ 'shape' => 'String', 'locationName' => 'launchGroup', ], 'LaunchSpecification' => [ 'shape' => 'RequestSpotLaunchSpecification', ], 'SpotPrice' => [ 'shape' => 'String', 'locationName' => 'spotPrice', ], 'Type' => [ 'shape' => 'SpotInstanceType', 'locationName' => 'type', ], 'ValidFrom' => [ 'shape' => 'DateTime', 'locationName' => 'validFrom', ], 'ValidUntil' => [ 'shape' => 'DateTime', 'locationName' => 'validUntil', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'InstanceInterruptionBehavior' => [ 'shape' => 'InstanceInterruptionBehavior', ], ], ], 'RequestSpotInstancesResult' => [ 'type' => 'structure', 'members' => [ 'SpotInstanceRequests' => [ 'shape' => 'SpotInstanceRequestList', 'locationName' => 'spotInstanceRequestSet', ], ], ], 'RequestSpotLaunchSpecification' => [ 'type' => 'structure', 'members' => [ 'SecurityGroupIds' => [ 'shape' => 'RequestSpotLaunchSpecificationSecurityGroupIdList', 'locationName' => 'SecurityGroupId', ], 'SecurityGroups' => [ 'shape' => 'RequestSpotLaunchSpecificationSecurityGroupList', 'locationName' => 'SecurityGroup', ], 'AddressingType' => [ 'shape' => 'String', 'locationName' => 'addressingType', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfileSpecification', 'locationName' => 'iamInstanceProfile', ], 'ImageId' => [ 'shape' => 'ImageId', 'locationName' => 'imageId', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'KernelId' => [ 'shape' => 'KernelId', 'locationName' => 'kernelId', ], 'KeyName' => [ 'shape' => 'KeyPairName', 'locationName' => 'keyName', ], 'Monitoring' => [ 'shape' => 'RunInstancesMonitoringEnabled', 'locationName' => 'monitoring', ], 'NetworkInterfaces' => [ 'shape' => 'InstanceNetworkInterfaceSpecificationList', 'locationName' => 'NetworkInterface', ], 'Placement' => [ 'shape' => 'SpotPlacement', 'locationName' => 'placement', ], 'RamdiskId' => [ 'shape' => 'RamdiskId', 'locationName' => 'ramdiskId', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'UserData' => [ 'shape' => 'SensitiveUserData', 'locationName' => 'userData', ], ], ], 'RequestSpotLaunchSpecificationSecurityGroupIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'item', ], ], 'RequestSpotLaunchSpecificationSecurityGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'Reservation' => [ 'type' => 'structure', 'members' => [ 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'Instances' => [ 'shape' => 'InstanceList', 'locationName' => 'instancesSet', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'RequesterId' => [ 'shape' => 'String', 'locationName' => 'requesterId', ], 'ReservationId' => [ 'shape' => 'String', 'locationName' => 'reservationId', ], ], ], 'ReservationFleetInstanceSpecification' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'InstanceType', ], 'InstancePlatform' => [ 'shape' => 'CapacityReservationInstancePlatform', ], 'Weight' => [ 'shape' => 'DoubleWithConstraints', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'AvailabilityZoneId' => [ 'shape' => 'String', ], 'EbsOptimized' => [ 'shape' => 'Boolean', ], 'Priority' => [ 'shape' => 'IntegerWithConstraints', ], ], ], 'ReservationFleetInstanceSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservationFleetInstanceSpecification', ], ], 'ReservationId' => [ 'type' => 'string', ], 'ReservationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Reservation', 'locationName' => 'item', ], ], 'ReservationState' => [ 'type' => 'string', 'enum' => [ 'payment-pending', 'payment-failed', 'active', 'retired', ], ], 'ReservationValue' => [ 'type' => 'structure', 'members' => [ 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], 'RemainingTotalValue' => [ 'shape' => 'String', 'locationName' => 'remainingTotalValue', ], 'RemainingUpfrontValue' => [ 'shape' => 'String', 'locationName' => 'remainingUpfrontValue', ], ], ], 'ReservedInstanceIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservationId', 'locationName' => 'ReservedInstanceId', ], ], 'ReservedInstanceLimitPrice' => [ 'type' => 'structure', 'members' => [ 'Amount' => [ 'shape' => 'Double', 'locationName' => 'amount', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], ], ], 'ReservedInstanceReservationValue' => [ 'type' => 'structure', 'members' => [ 'ReservationValue' => [ 'shape' => 'ReservationValue', 'locationName' => 'reservationValue', ], 'ReservedInstanceId' => [ 'shape' => 'String', 'locationName' => 'reservedInstanceId', ], ], ], 'ReservedInstanceReservationValueSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstanceReservationValue', 'locationName' => 'item', ], ], 'ReservedInstanceState' => [ 'type' => 'string', 'enum' => [ 'payment-pending', 'active', 'payment-failed', 'retired', 'queued', 'queued-deleted', ], ], 'ReservedInstances' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Duration' => [ 'shape' => 'Long', 'locationName' => 'duration', ], 'End' => [ 'shape' => 'DateTime', 'locationName' => 'end', ], 'FixedPrice' => [ 'shape' => 'Float', 'locationName' => 'fixedPrice', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'ProductDescription' => [ 'shape' => 'RIProductDescription', 'locationName' => 'productDescription', ], 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], 'Start' => [ 'shape' => 'DateTime', 'locationName' => 'start', ], 'State' => [ 'shape' => 'ReservedInstanceState', 'locationName' => 'state', ], 'UsagePrice' => [ 'shape' => 'Float', 'locationName' => 'usagePrice', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'InstanceTenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'instanceTenancy', ], 'OfferingClass' => [ 'shape' => 'OfferingClassType', 'locationName' => 'offeringClass', ], 'OfferingType' => [ 'shape' => 'OfferingTypeValues', 'locationName' => 'offeringType', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargesList', 'locationName' => 'recurringCharges', ], 'Scope' => [ 'shape' => 'scope', 'locationName' => 'scope', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ReservedInstancesConfiguration' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'Platform' => [ 'shape' => 'String', 'locationName' => 'platform', ], 'Scope' => [ 'shape' => 'scope', 'locationName' => 'scope', ], ], ], 'ReservedInstancesConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesConfiguration', 'locationName' => 'item', ], ], 'ReservedInstancesId' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], ], ], 'ReservedInstancesIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservationId', 'locationName' => 'ReservedInstancesId', ], ], 'ReservedInstancesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstances', 'locationName' => 'item', ], ], 'ReservedInstancesListing' => [ 'type' => 'structure', 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'CreateDate' => [ 'shape' => 'DateTime', 'locationName' => 'createDate', ], 'InstanceCounts' => [ 'shape' => 'InstanceCountList', 'locationName' => 'instanceCounts', ], 'PriceSchedules' => [ 'shape' => 'PriceScheduleList', 'locationName' => 'priceSchedules', ], 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], 'ReservedInstancesListingId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesListingId', ], 'Status' => [ 'shape' => 'ListingStatus', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'UpdateDate' => [ 'shape' => 'DateTime', 'locationName' => 'updateDate', ], ], ], 'ReservedInstancesListingId' => [ 'type' => 'string', ], 'ReservedInstancesListingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesListing', 'locationName' => 'item', ], ], 'ReservedInstancesModification' => [ 'type' => 'structure', 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'CreateDate' => [ 'shape' => 'DateTime', 'locationName' => 'createDate', ], 'EffectiveDate' => [ 'shape' => 'DateTime', 'locationName' => 'effectiveDate', ], 'ModificationResults' => [ 'shape' => 'ReservedInstancesModificationResultList', 'locationName' => 'modificationResultSet', ], 'ReservedInstancesIds' => [ 'shape' => 'ReservedIntancesIds', 'locationName' => 'reservedInstancesSet', ], 'ReservedInstancesModificationId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesModificationId', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'UpdateDate' => [ 'shape' => 'DateTime', 'locationName' => 'updateDate', ], ], ], 'ReservedInstancesModificationId' => [ 'type' => 'string', ], 'ReservedInstancesModificationIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesModificationId', 'locationName' => 'ReservedInstancesModificationId', ], ], 'ReservedInstancesModificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesModification', 'locationName' => 'item', ], ], 'ReservedInstancesModificationResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], 'TargetConfiguration' => [ 'shape' => 'ReservedInstancesConfiguration', 'locationName' => 'targetConfiguration', ], ], ], 'ReservedInstancesModificationResultList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesModificationResult', 'locationName' => 'item', ], ], 'ReservedInstancesOffering' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Duration' => [ 'shape' => 'Long', 'locationName' => 'duration', ], 'FixedPrice' => [ 'shape' => 'Float', 'locationName' => 'fixedPrice', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'ProductDescription' => [ 'shape' => 'RIProductDescription', 'locationName' => 'productDescription', ], 'ReservedInstancesOfferingId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesOfferingId', ], 'UsagePrice' => [ 'shape' => 'Float', 'locationName' => 'usagePrice', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'InstanceTenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'instanceTenancy', ], 'Marketplace' => [ 'shape' => 'Boolean', 'locationName' => 'marketplace', ], 'OfferingClass' => [ 'shape' => 'OfferingClassType', 'locationName' => 'offeringClass', ], 'OfferingType' => [ 'shape' => 'OfferingTypeValues', 'locationName' => 'offeringType', ], 'PricingDetails' => [ 'shape' => 'PricingDetailsList', 'locationName' => 'pricingDetailsSet', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargesList', 'locationName' => 'recurringCharges', ], 'Scope' => [ 'shape' => 'scope', 'locationName' => 'scope', ], ], ], 'ReservedInstancesOfferingId' => [ 'type' => 'string', ], 'ReservedInstancesOfferingIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesOfferingId', ], ], 'ReservedInstancesOfferingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesOffering', 'locationName' => 'item', ], ], 'ReservedIntancesIds' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesId', 'locationName' => 'item', ], ], 'ResetAddressAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'AllocationId', 'Attribute', ], 'members' => [ 'AllocationId' => [ 'shape' => 'AllocationId', ], 'Attribute' => [ 'shape' => 'AddressAttributeName', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ResetAddressAttributeResult' => [ 'type' => 'structure', 'members' => [ 'Address' => [ 'shape' => 'AddressAttribute', 'locationName' => 'address', ], ], ], 'ResetEbsDefaultKmsKeyIdRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ResetEbsDefaultKmsKeyIdResult' => [ 'type' => 'structure', 'members' => [ 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], ], ], 'ResetFpgaImageAttributeName' => [ 'type' => 'string', 'enum' => [ 'loadPermission', ], ], 'ResetFpgaImageAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'FpgaImageId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'FpgaImageId' => [ 'shape' => 'FpgaImageId', ], 'Attribute' => [ 'shape' => 'ResetFpgaImageAttributeName', ], ], ], 'ResetFpgaImageAttributeResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ResetImageAttributeName' => [ 'type' => 'string', 'enum' => [ 'launchPermission', ], ], 'ResetImageAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'Attribute', 'ImageId', ], 'members' => [ 'Attribute' => [ 'shape' => 'ResetImageAttributeName', ], 'ImageId' => [ 'shape' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'ResetInstanceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'Attribute', 'InstanceId', ], 'members' => [ 'Attribute' => [ 'shape' => 'InstanceAttributeName', 'locationName' => 'attribute', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], ], ], 'ResetNetworkInterfaceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'SourceDestCheck' => [ 'shape' => 'String', 'locationName' => 'sourceDestCheck', ], ], ], 'ResetSnapshotAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'Attribute', 'SnapshotId', ], 'members' => [ 'Attribute' => [ 'shape' => 'SnapshotAttributeName', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'ResourceArn' => [ 'type' => 'string', 'max' => 1283, 'min' => 1, ], 'ResourceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TaggableResourceId', ], ], 'ResourceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'ResourceStatement' => [ 'type' => 'structure', 'members' => [ 'Resources' => [ 'shape' => 'ValueStringList', 'locationName' => 'resourceSet', ], 'ResourceTypes' => [ 'shape' => 'ValueStringList', 'locationName' => 'resourceTypeSet', ], ], ], 'ResourceStatementRequest' => [ 'type' => 'structure', 'members' => [ 'Resources' => [ 'shape' => 'ValueStringList', 'locationName' => 'Resource', ], 'ResourceTypes' => [ 'shape' => 'ValueStringList', 'locationName' => 'ResourceType', ], ], ], 'ResourceType' => [ 'type' => 'string', 'enum' => [ 'capacity-reservation', 'client-vpn-endpoint', 'customer-gateway', 'carrier-gateway', 'coip-pool', 'dedicated-host', 'dhcp-options', 'egress-only-internet-gateway', 'elastic-ip', 'elastic-gpu', 'export-image-task', 'export-instance-task', 'fleet', 'fpga-image', 'host-reservation', 'image', 'import-image-task', 'import-snapshot-task', 'instance', 'instance-event-window', 'internet-gateway', 'ipam', 'ipam-pool', 'ipam-scope', 'ipv4pool-ec2', 'ipv6pool-ec2', 'key-pair', 'launch-template', 'local-gateway', 'local-gateway-route-table', 'local-gateway-virtual-interface', 'local-gateway-virtual-interface-group', 'local-gateway-route-table-vpc-association', 'local-gateway-route-table-virtual-interface-group-association', 'natgateway', 'network-acl', 'network-interface', 'network-insights-analysis', 'network-insights-path', 'network-insights-access-scope', 'network-insights-access-scope-analysis', 'placement-group', 'prefix-list', 'replace-root-volume-task', 'reserved-instances', 'route-table', 'security-group', 'security-group-rule', 'snapshot', 'spot-fleet-request', 'spot-instances-request', 'subnet', 'subnet-cidr-reservation', 'traffic-mirror-filter', 'traffic-mirror-session', 'traffic-mirror-target', 'transit-gateway', 'transit-gateway-attachment', 'transit-gateway-connect-peer', 'transit-gateway-multicast-domain', 'transit-gateway-policy-table', 'transit-gateway-route-table', 'transit-gateway-route-table-announcement', 'volume', 'vpc', 'vpc-endpoint', 'vpc-endpoint-connection', 'vpc-endpoint-service', 'vpc-endpoint-service-permission', 'vpc-peering-connection', 'vpn-connection', 'vpn-gateway', 'vpc-flow-log', 'capacity-reservation-fleet', 'traffic-mirror-filter-rule', 'vpc-endpoint-connection-device-type', 'verified-access-instance', 'verified-access-group', 'verified-access-endpoint', 'verified-access-policy', 'verified-access-trust-provider', 'vpn-connection-device-type', 'vpc-block-public-access-exclusion', 'ipam-resource-discovery', 'ipam-resource-discovery-association', 'instance-connect-endpoint', ], ], 'ResponseError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'LaunchTemplateErrorCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'ResponseHostIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'ResponseHostIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'ResponseLaunchTemplateData' => [ 'type' => 'structure', 'members' => [ 'KernelId' => [ 'shape' => 'String', 'locationName' => 'kernelId', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'IamInstanceProfile' => [ 'shape' => 'LaunchTemplateIamInstanceProfileSpecification', 'locationName' => 'iamInstanceProfile', ], 'BlockDeviceMappings' => [ 'shape' => 'LaunchTemplateBlockDeviceMappingList', 'locationName' => 'blockDeviceMappingSet', ], 'NetworkInterfaces' => [ 'shape' => 'LaunchTemplateInstanceNetworkInterfaceSpecificationList', 'locationName' => 'networkInterfaceSet', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'Monitoring' => [ 'shape' => 'LaunchTemplatesMonitoring', 'locationName' => 'monitoring', ], 'Placement' => [ 'shape' => 'LaunchTemplatePlacement', 'locationName' => 'placement', ], 'RamDiskId' => [ 'shape' => 'String', 'locationName' => 'ramDiskId', ], 'DisableApiTermination' => [ 'shape' => 'Boolean', 'locationName' => 'disableApiTermination', ], 'InstanceInitiatedShutdownBehavior' => [ 'shape' => 'ShutdownBehavior', 'locationName' => 'instanceInitiatedShutdownBehavior', ], 'UserData' => [ 'shape' => 'SensitiveUserData', 'locationName' => 'userData', ], 'TagSpecifications' => [ 'shape' => 'LaunchTemplateTagSpecificationList', 'locationName' => 'tagSpecificationSet', ], 'ElasticGpuSpecifications' => [ 'shape' => 'ElasticGpuSpecificationResponseList', 'locationName' => 'elasticGpuSpecificationSet', ], 'ElasticInferenceAccelerators' => [ 'shape' => 'LaunchTemplateElasticInferenceAcceleratorResponseList', 'locationName' => 'elasticInferenceAcceleratorSet', ], 'SecurityGroupIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'securityGroupIdSet', ], 'SecurityGroups' => [ 'shape' => 'ValueStringList', 'locationName' => 'securityGroupSet', ], 'InstanceMarketOptions' => [ 'shape' => 'LaunchTemplateInstanceMarketOptions', 'locationName' => 'instanceMarketOptions', ], 'CreditSpecification' => [ 'shape' => 'CreditSpecification', 'locationName' => 'creditSpecification', ], 'CpuOptions' => [ 'shape' => 'LaunchTemplateCpuOptions', 'locationName' => 'cpuOptions', ], 'CapacityReservationSpecification' => [ 'shape' => 'LaunchTemplateCapacityReservationSpecificationResponse', 'locationName' => 'capacityReservationSpecification', ], 'LicenseSpecifications' => [ 'shape' => 'LaunchTemplateLicenseList', 'locationName' => 'licenseSet', ], 'HibernationOptions' => [ 'shape' => 'LaunchTemplateHibernationOptions', 'locationName' => 'hibernationOptions', ], 'MetadataOptions' => [ 'shape' => 'LaunchTemplateInstanceMetadataOptions', 'locationName' => 'metadataOptions', ], 'EnclaveOptions' => [ 'shape' => 'LaunchTemplateEnclaveOptions', 'locationName' => 'enclaveOptions', ], 'InstanceRequirements' => [ 'shape' => 'InstanceRequirements', 'locationName' => 'instanceRequirements', ], 'PrivateDnsNameOptions' => [ 'shape' => 'LaunchTemplatePrivateDnsNameOptions', 'locationName' => 'privateDnsNameOptions', ], 'MaintenanceOptions' => [ 'shape' => 'LaunchTemplateInstanceMaintenanceOptions', 'locationName' => 'maintenanceOptions', ], 'DisableApiStop' => [ 'shape' => 'Boolean', 'locationName' => 'disableApiStop', ], ], ], 'RestorableByStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'RestoreAddressToClassicRequest' => [ 'type' => 'structure', 'required' => [ 'PublicIp', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], ], ], 'RestoreAddressToClassicResult' => [ 'type' => 'structure', 'members' => [ 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'Status' => [ 'shape' => 'Status', 'locationName' => 'status', ], ], ], 'RestoreImageFromRecycleBinRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RestoreImageFromRecycleBinResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'RestoreManagedPrefixListVersionRequest' => [ 'type' => 'structure', 'required' => [ 'PrefixListId', 'PreviousVersion', 'CurrentVersion', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'PreviousVersion' => [ 'shape' => 'Long', ], 'CurrentVersion' => [ 'shape' => 'Long', ], ], ], 'RestoreManagedPrefixListVersionResult' => [ 'type' => 'structure', 'members' => [ 'PrefixList' => [ 'shape' => 'ManagedPrefixList', 'locationName' => 'prefixList', ], ], ], 'RestoreSnapshotFromRecycleBinRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', ], 'members' => [ 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RestoreSnapshotFromRecycleBinResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'StartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'startTime', ], 'State' => [ 'shape' => 'SnapshotState', 'locationName' => 'status', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'VolumeSize' => [ 'shape' => 'Integer', 'locationName' => 'volumeSize', ], 'SseType' => [ 'shape' => 'SSEType', 'locationName' => 'sseType', ], ], ], 'RestoreSnapshotTierRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', ], 'members' => [ 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'TemporaryRestoreDays' => [ 'shape' => 'RestoreSnapshotTierRequestTemporaryRestoreDays', ], 'PermanentRestore' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RestoreSnapshotTierRequestTemporaryRestoreDays' => [ 'type' => 'integer', ], 'RestoreSnapshotTierResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'RestoreStartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'restoreStartTime', ], 'RestoreDuration' => [ 'shape' => 'Integer', 'locationName' => 'restoreDuration', ], 'IsPermanentRestore' => [ 'shape' => 'Boolean', 'locationName' => 'isPermanentRestore', ], ], ], 'ResultRange' => [ 'type' => 'integer', 'max' => 500, 'min' => 20, ], 'RetentionPeriodRequestDays' => [ 'type' => 'integer', 'max' => 36500, 'min' => 1, ], 'RetentionPeriodResponseDays' => [ 'type' => 'integer', ], 'RevokeClientVpnIngressRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', 'TargetNetworkCidr', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'TargetNetworkCidr' => [ 'shape' => 'String', ], 'AccessGroupId' => [ 'shape' => 'String', ], 'RevokeAllGroups' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RevokeClientVpnIngressResult' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'ClientVpnAuthorizationRuleStatus', 'locationName' => 'status', ], ], ], 'RevokeSecurityGroupEgressRequest' => [ 'type' => 'structure', 'required' => [ 'GroupId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupId' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'groupId', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', 'locationName' => 'ipPermissions', ], 'SecurityGroupRuleIds' => [ 'shape' => 'SecurityGroupRuleIdList', 'locationName' => 'SecurityGroupRuleId', ], 'CidrIp' => [ 'shape' => 'String', 'locationName' => 'cidrIp', ], 'FromPort' => [ 'shape' => 'Integer', 'locationName' => 'fromPort', ], 'IpProtocol' => [ 'shape' => 'String', 'locationName' => 'ipProtocol', ], 'ToPort' => [ 'shape' => 'Integer', 'locationName' => 'toPort', ], 'SourceSecurityGroupName' => [ 'shape' => 'String', 'locationName' => 'sourceSecurityGroupName', ], 'SourceSecurityGroupOwnerId' => [ 'shape' => 'String', 'locationName' => 'sourceSecurityGroupOwnerId', ], ], ], 'RevokeSecurityGroupEgressResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], 'UnknownIpPermissions' => [ 'shape' => 'IpPermissionList', 'locationName' => 'unknownIpPermissionSet', ], ], ], 'RevokeSecurityGroupIngressRequest' => [ 'type' => 'structure', 'members' => [ 'CidrIp' => [ 'shape' => 'String', ], 'FromPort' => [ 'shape' => 'Integer', ], 'GroupId' => [ 'shape' => 'SecurityGroupId', ], 'GroupName' => [ 'shape' => 'SecurityGroupName', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', ], 'IpProtocol' => [ 'shape' => 'String', ], 'SourceSecurityGroupName' => [ 'shape' => 'String', ], 'SourceSecurityGroupOwnerId' => [ 'shape' => 'String', ], 'ToPort' => [ 'shape' => 'Integer', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SecurityGroupRuleIds' => [ 'shape' => 'SecurityGroupRuleIdList', 'locationName' => 'SecurityGroupRuleId', ], ], ], 'RevokeSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], 'UnknownIpPermissions' => [ 'shape' => 'IpPermissionList', 'locationName' => 'unknownIpPermissionSet', ], ], ], 'RoleId' => [ 'type' => 'string', ], 'RootDeviceType' => [ 'type' => 'string', 'enum' => [ 'ebs', 'instance-store', ], ], 'RootDeviceTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RootDeviceType', 'locationName' => 'item', ], ], 'Route' => [ 'type' => 'structure', 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'DestinationIpv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationIpv6CidrBlock', ], 'DestinationPrefixListId' => [ 'shape' => 'String', 'locationName' => 'destinationPrefixListId', ], 'EgressOnlyInternetGatewayId' => [ 'shape' => 'String', 'locationName' => 'egressOnlyInternetGatewayId', ], 'GatewayId' => [ 'shape' => 'String', 'locationName' => 'gatewayId', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceOwnerId' => [ 'shape' => 'String', 'locationName' => 'instanceOwnerId', ], 'NatGatewayId' => [ 'shape' => 'String', 'locationName' => 'natGatewayId', ], 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'LocalGatewayId' => [ 'shape' => 'String', 'locationName' => 'localGatewayId', ], 'CarrierGatewayId' => [ 'shape' => 'CarrierGatewayId', 'locationName' => 'carrierGatewayId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'Origin' => [ 'shape' => 'RouteOrigin', 'locationName' => 'origin', ], 'State' => [ 'shape' => 'RouteState', 'locationName' => 'state', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], 'CoreNetworkArn' => [ 'shape' => 'CoreNetworkArn', 'locationName' => 'coreNetworkArn', ], ], ], 'RouteGatewayId' => [ 'type' => 'string', ], 'RouteList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Route', 'locationName' => 'item', ], ], 'RouteOrigin' => [ 'type' => 'string', 'enum' => [ 'CreateRouteTable', 'CreateRoute', 'EnableVgwRoutePropagation', ], ], 'RouteState' => [ 'type' => 'string', 'enum' => [ 'active', 'blackhole', ], ], 'RouteTable' => [ 'type' => 'structure', 'members' => [ 'Associations' => [ 'shape' => 'RouteTableAssociationList', 'locationName' => 'associationSet', ], 'PropagatingVgws' => [ 'shape' => 'PropagatingVgwList', 'locationName' => 'propagatingVgwSet', ], 'RouteTableId' => [ 'shape' => 'String', 'locationName' => 'routeTableId', ], 'Routes' => [ 'shape' => 'RouteList', 'locationName' => 'routeSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], ], ], 'RouteTableAssociation' => [ 'type' => 'structure', 'members' => [ 'Main' => [ 'shape' => 'Boolean', 'locationName' => 'main', ], 'RouteTableAssociationId' => [ 'shape' => 'String', 'locationName' => 'routeTableAssociationId', ], 'RouteTableId' => [ 'shape' => 'String', 'locationName' => 'routeTableId', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'GatewayId' => [ 'shape' => 'String', 'locationName' => 'gatewayId', ], 'AssociationState' => [ 'shape' => 'RouteTableAssociationState', 'locationName' => 'associationState', ], ], ], 'RouteTableAssociationId' => [ 'type' => 'string', ], 'RouteTableAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RouteTableAssociation', 'locationName' => 'item', ], ], 'RouteTableAssociationState' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'RouteTableAssociationStateCode', 'locationName' => 'state', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], ], ], 'RouteTableAssociationStateCode' => [ 'type' => 'string', 'enum' => [ 'associating', 'associated', 'disassociating', 'disassociated', 'failed', ], ], 'RouteTableId' => [ 'type' => 'string', ], 'RouteTableIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RouteTableId', 'locationName' => 'item', ], ], 'RouteTableList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RouteTable', 'locationName' => 'item', ], ], 'RuleAction' => [ 'type' => 'string', 'enum' => [ 'allow', 'deny', ], ], 'RuleGroupRuleOptionsPair' => [ 'type' => 'structure', 'members' => [ 'RuleGroupArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ruleGroupArn', ], 'RuleOptions' => [ 'shape' => 'RuleOptionList', 'locationName' => 'ruleOptionSet', ], ], ], 'RuleGroupRuleOptionsPairList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RuleGroupRuleOptionsPair', 'locationName' => 'item', ], ], 'RuleGroupTypePair' => [ 'type' => 'structure', 'members' => [ 'RuleGroupArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ruleGroupArn', ], 'RuleGroupType' => [ 'shape' => 'String', 'locationName' => 'ruleGroupType', ], ], ], 'RuleGroupTypePairList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RuleGroupTypePair', 'locationName' => 'item', ], ], 'RuleOption' => [ 'type' => 'structure', 'members' => [ 'Keyword' => [ 'shape' => 'String', 'locationName' => 'keyword', ], 'Settings' => [ 'shape' => 'StringList', 'locationName' => 'settingSet', ], ], ], 'RuleOptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RuleOption', 'locationName' => 'item', ], ], 'RunInstancesMonitoringEnabled' => [ 'type' => 'structure', 'required' => [ 'Enabled', ], 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], ], ], 'RunInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'MaxCount', 'MinCount', ], 'members' => [ 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingRequestList', 'locationName' => 'BlockDeviceMapping', ], 'ImageId' => [ 'shape' => 'ImageId', ], 'InstanceType' => [ 'shape' => 'InstanceType', ], 'Ipv6AddressCount' => [ 'shape' => 'Integer', ], 'Ipv6Addresses' => [ 'shape' => 'InstanceIpv6AddressList', 'locationName' => 'Ipv6Address', ], 'KernelId' => [ 'shape' => 'KernelId', ], 'KeyName' => [ 'shape' => 'KeyPairName', ], 'MaxCount' => [ 'shape' => 'Integer', ], 'MinCount' => [ 'shape' => 'Integer', ], 'Monitoring' => [ 'shape' => 'RunInstancesMonitoringEnabled', ], 'Placement' => [ 'shape' => 'Placement', ], 'RamdiskId' => [ 'shape' => 'RamdiskId', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'SecurityGroups' => [ 'shape' => 'SecurityGroupStringList', 'locationName' => 'SecurityGroup', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], 'UserData' => [ 'shape' => 'RunInstancesUserData', ], 'AdditionalInfo' => [ 'shape' => 'String', 'locationName' => 'additionalInfo', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, 'locationName' => 'clientToken', ], 'DisableApiTermination' => [ 'shape' => 'Boolean', 'locationName' => 'disableApiTermination', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfileSpecification', 'locationName' => 'iamInstanceProfile', ], 'InstanceInitiatedShutdownBehavior' => [ 'shape' => 'ShutdownBehavior', 'locationName' => 'instanceInitiatedShutdownBehavior', ], 'NetworkInterfaces' => [ 'shape' => 'InstanceNetworkInterfaceSpecificationList', 'locationName' => 'networkInterface', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'ElasticGpuSpecification' => [ 'shape' => 'ElasticGpuSpecifications', ], 'ElasticInferenceAccelerators' => [ 'shape' => 'ElasticInferenceAccelerators', 'locationName' => 'ElasticInferenceAccelerator', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'LaunchTemplate' => [ 'shape' => 'LaunchTemplateSpecification', ], 'InstanceMarketOptions' => [ 'shape' => 'InstanceMarketOptionsRequest', ], 'CreditSpecification' => [ 'shape' => 'CreditSpecificationRequest', ], 'CpuOptions' => [ 'shape' => 'CpuOptionsRequest', ], 'CapacityReservationSpecification' => [ 'shape' => 'CapacityReservationSpecification', ], 'HibernationOptions' => [ 'shape' => 'HibernationOptionsRequest', ], 'LicenseSpecifications' => [ 'shape' => 'LicenseSpecificationListRequest', 'locationName' => 'LicenseSpecification', ], 'MetadataOptions' => [ 'shape' => 'InstanceMetadataOptionsRequest', ], 'EnclaveOptions' => [ 'shape' => 'EnclaveOptionsRequest', ], 'PrivateDnsNameOptions' => [ 'shape' => 'PrivateDnsNameOptionsRequest', ], 'MaintenanceOptions' => [ 'shape' => 'InstanceMaintenanceOptionsRequest', ], 'DisableApiStop' => [ 'shape' => 'Boolean', ], 'EnablePrimaryIpv6' => [ 'shape' => 'Boolean', ], ], ], 'RunInstancesUserData' => [ 'type' => 'string', 'sensitive' => true, ], 'RunScheduledInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'LaunchSpecification', 'ScheduledInstanceId', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'LaunchSpecification' => [ 'shape' => 'ScheduledInstancesLaunchSpecification', ], 'ScheduledInstanceId' => [ 'shape' => 'ScheduledInstanceId', ], ], ], 'RunScheduledInstancesResult' => [ 'type' => 'structure', 'members' => [ 'InstanceIdSet' => [ 'shape' => 'InstanceIdSet', 'locationName' => 'instanceIdSet', ], ], ], 'S3ObjectTag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'S3ObjectTagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'S3ObjectTag', 'locationName' => 'item', ], ], 'S3Storage' => [ 'type' => 'structure', 'members' => [ 'AWSAccessKeyId' => [ 'shape' => 'String', ], 'Bucket' => [ 'shape' => 'String', 'locationName' => 'bucket', ], 'Prefix' => [ 'shape' => 'String', 'locationName' => 'prefix', ], 'UploadPolicy' => [ 'shape' => 'Blob', 'locationName' => 'uploadPolicy', ], 'UploadPolicySignature' => [ 'shape' => 'S3StorageUploadPolicySignature', 'locationName' => 'uploadPolicySignature', ], ], ], 'S3StorageUploadPolicy' => [ 'type' => 'string', 'sensitive' => true, ], 'S3StorageUploadPolicySignature' => [ 'type' => 'string', 'sensitive' => true, ], 'SSEType' => [ 'type' => 'string', 'enum' => [ 'sse-ebs', 'sse-kms', 'none', ], ], 'ScheduledInstance' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'CreateDate' => [ 'shape' => 'DateTime', 'locationName' => 'createDate', ], 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'NetworkPlatform' => [ 'shape' => 'String', 'locationName' => 'networkPlatform', ], 'NextSlotStartTime' => [ 'shape' => 'DateTime', 'locationName' => 'nextSlotStartTime', ], 'Platform' => [ 'shape' => 'String', 'locationName' => 'platform', ], 'PreviousSlotEndTime' => [ 'shape' => 'DateTime', 'locationName' => 'previousSlotEndTime', ], 'Recurrence' => [ 'shape' => 'ScheduledInstanceRecurrence', 'locationName' => 'recurrence', ], 'ScheduledInstanceId' => [ 'shape' => 'String', 'locationName' => 'scheduledInstanceId', ], 'SlotDurationInHours' => [ 'shape' => 'Integer', 'locationName' => 'slotDurationInHours', ], 'TermEndDate' => [ 'shape' => 'DateTime', 'locationName' => 'termEndDate', ], 'TermStartDate' => [ 'shape' => 'DateTime', 'locationName' => 'termStartDate', ], 'TotalScheduledInstanceHours' => [ 'shape' => 'Integer', 'locationName' => 'totalScheduledInstanceHours', ], ], ], 'ScheduledInstanceAvailability' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'AvailableInstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'availableInstanceCount', ], 'FirstSlotStartTime' => [ 'shape' => 'DateTime', 'locationName' => 'firstSlotStartTime', ], 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'MaxTermDurationInDays' => [ 'shape' => 'Integer', 'locationName' => 'maxTermDurationInDays', ], 'MinTermDurationInDays' => [ 'shape' => 'Integer', 'locationName' => 'minTermDurationInDays', ], 'NetworkPlatform' => [ 'shape' => 'String', 'locationName' => 'networkPlatform', ], 'Platform' => [ 'shape' => 'String', 'locationName' => 'platform', ], 'PurchaseToken' => [ 'shape' => 'String', 'locationName' => 'purchaseToken', ], 'Recurrence' => [ 'shape' => 'ScheduledInstanceRecurrence', 'locationName' => 'recurrence', ], 'SlotDurationInHours' => [ 'shape' => 'Integer', 'locationName' => 'slotDurationInHours', ], 'TotalScheduledInstanceHours' => [ 'shape' => 'Integer', 'locationName' => 'totalScheduledInstanceHours', ], ], ], 'ScheduledInstanceAvailabilitySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstanceAvailability', 'locationName' => 'item', ], ], 'ScheduledInstanceId' => [ 'type' => 'string', ], 'ScheduledInstanceIdRequestSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstanceId', 'locationName' => 'ScheduledInstanceId', ], ], 'ScheduledInstanceRecurrence' => [ 'type' => 'structure', 'members' => [ 'Frequency' => [ 'shape' => 'String', 'locationName' => 'frequency', ], 'Interval' => [ 'shape' => 'Integer', 'locationName' => 'interval', ], 'OccurrenceDaySet' => [ 'shape' => 'OccurrenceDaySet', 'locationName' => 'occurrenceDaySet', ], 'OccurrenceRelativeToEnd' => [ 'shape' => 'Boolean', 'locationName' => 'occurrenceRelativeToEnd', ], 'OccurrenceUnit' => [ 'shape' => 'String', 'locationName' => 'occurrenceUnit', ], ], ], 'ScheduledInstanceRecurrenceRequest' => [ 'type' => 'structure', 'members' => [ 'Frequency' => [ 'shape' => 'String', ], 'Interval' => [ 'shape' => 'Integer', ], 'OccurrenceDays' => [ 'shape' => 'OccurrenceDayRequestSet', 'locationName' => 'OccurrenceDay', ], 'OccurrenceRelativeToEnd' => [ 'shape' => 'Boolean', ], 'OccurrenceUnit' => [ 'shape' => 'String', ], ], ], 'ScheduledInstanceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstance', 'locationName' => 'item', ], ], 'ScheduledInstancesBlockDeviceMapping' => [ 'type' => 'structure', 'members' => [ 'DeviceName' => [ 'shape' => 'String', ], 'Ebs' => [ 'shape' => 'ScheduledInstancesEbs', ], 'NoDevice' => [ 'shape' => 'String', ], 'VirtualName' => [ 'shape' => 'String', ], ], ], 'ScheduledInstancesBlockDeviceMappingSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstancesBlockDeviceMapping', 'locationName' => 'BlockDeviceMapping', ], ], 'ScheduledInstancesEbs' => [ 'type' => 'structure', 'members' => [ 'DeleteOnTermination' => [ 'shape' => 'Boolean', ], 'Encrypted' => [ 'shape' => 'Boolean', ], 'Iops' => [ 'shape' => 'Integer', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'VolumeSize' => [ 'shape' => 'Integer', ], 'VolumeType' => [ 'shape' => 'String', ], ], ], 'ScheduledInstancesIamInstanceProfile' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', ], 'Name' => [ 'shape' => 'String', ], ], ], 'ScheduledInstancesIpv6Address' => [ 'type' => 'structure', 'members' => [ 'Ipv6Address' => [ 'shape' => 'Ipv6Address', ], ], ], 'ScheduledInstancesIpv6AddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstancesIpv6Address', 'locationName' => 'Ipv6Address', ], ], 'ScheduledInstancesLaunchSpecification' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'BlockDeviceMappings' => [ 'shape' => 'ScheduledInstancesBlockDeviceMappingSet', 'locationName' => 'BlockDeviceMapping', ], 'EbsOptimized' => [ 'shape' => 'Boolean', ], 'IamInstanceProfile' => [ 'shape' => 'ScheduledInstancesIamInstanceProfile', ], 'ImageId' => [ 'shape' => 'ImageId', ], 'InstanceType' => [ 'shape' => 'String', ], 'KernelId' => [ 'shape' => 'KernelId', ], 'KeyName' => [ 'shape' => 'KeyPairName', ], 'Monitoring' => [ 'shape' => 'ScheduledInstancesMonitoring', ], 'NetworkInterfaces' => [ 'shape' => 'ScheduledInstancesNetworkInterfaceSet', 'locationName' => 'NetworkInterface', ], 'Placement' => [ 'shape' => 'ScheduledInstancesPlacement', ], 'RamdiskId' => [ 'shape' => 'RamdiskId', ], 'SecurityGroupIds' => [ 'shape' => 'ScheduledInstancesSecurityGroupIdSet', 'locationName' => 'SecurityGroupId', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], 'UserData' => [ 'shape' => 'String', ], ], 'sensitive' => true, ], 'ScheduledInstancesMonitoring' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], ], ], 'ScheduledInstancesNetworkInterface' => [ 'type' => 'structure', 'members' => [ 'AssociatePublicIpAddress' => [ 'shape' => 'Boolean', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', ], 'Description' => [ 'shape' => 'String', ], 'DeviceIndex' => [ 'shape' => 'Integer', ], 'Groups' => [ 'shape' => 'ScheduledInstancesSecurityGroupIdSet', 'locationName' => 'Group', ], 'Ipv6AddressCount' => [ 'shape' => 'Integer', ], 'Ipv6Addresses' => [ 'shape' => 'ScheduledInstancesIpv6AddressList', 'locationName' => 'Ipv6Address', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'PrivateIpAddress' => [ 'shape' => 'String', ], 'PrivateIpAddressConfigs' => [ 'shape' => 'PrivateIpAddressConfigSet', 'locationName' => 'PrivateIpAddressConfig', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'Integer', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], ], ], 'ScheduledInstancesNetworkInterfaceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstancesNetworkInterface', 'locationName' => 'NetworkInterface', ], ], 'ScheduledInstancesPlacement' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', ], 'GroupName' => [ 'shape' => 'PlacementGroupName', ], ], ], 'ScheduledInstancesPrivateIpAddressConfig' => [ 'type' => 'structure', 'members' => [ 'Primary' => [ 'shape' => 'Boolean', ], 'PrivateIpAddress' => [ 'shape' => 'String', ], ], ], 'ScheduledInstancesSecurityGroupIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'SecurityGroupId', ], ], 'SearchLocalGatewayRoutesRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableId', ], 'members' => [ 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'MaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'SearchLocalGatewayRoutesResult' => [ 'type' => 'structure', 'members' => [ 'Routes' => [ 'shape' => 'LocalGatewayRouteList', 'locationName' => 'routeSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'SearchTransitGatewayMulticastGroupsRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayMulticastDomainId', ], 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'SearchTransitGatewayMulticastGroupsResult' => [ 'type' => 'structure', 'members' => [ 'MulticastGroups' => [ 'shape' => 'TransitGatewayMulticastGroupList', 'locationName' => 'multicastGroups', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'SearchTransitGatewayRoutesRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'Filters', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'SearchTransitGatewayRoutesResult' => [ 'type' => 'structure', 'members' => [ 'Routes' => [ 'shape' => 'TransitGatewayRouteList', 'locationName' => 'routeSet', ], 'AdditionalRoutesAvailable' => [ 'shape' => 'Boolean', 'locationName' => 'additionalRoutesAvailable', ], ], ], 'SecurityGroup' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'groupDescription', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', 'locationName' => 'ipPermissions', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'IpPermissionsEgress' => [ 'shape' => 'IpPermissionList', 'locationName' => 'ipPermissionsEgress', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'SecurityGroupForVpc' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'PrimaryVpcId' => [ 'shape' => 'String', 'locationName' => 'primaryVpcId', ], ], ], 'SecurityGroupForVpcList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupForVpc', 'locationName' => 'item', ], ], 'SecurityGroupId' => [ 'type' => 'string', ], 'SecurityGroupIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'item', ], ], 'SecurityGroupIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'item', ], ], 'SecurityGroupIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'SecurityGroupId', ], ], 'SecurityGroupIdStringListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'SecurityGroupId', ], 'max' => 16, 'min' => 0, ], 'SecurityGroupIdentifier' => [ 'type' => 'structure', 'members' => [ 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], ], ], 'SecurityGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroup', 'locationName' => 'item', ], ], 'SecurityGroupName' => [ 'type' => 'string', ], 'SecurityGroupReference' => [ 'type' => 'structure', 'members' => [ 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'ReferencingVpcId' => [ 'shape' => 'String', 'locationName' => 'referencingVpcId', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], ], ], 'SecurityGroupReferences' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupReference', 'locationName' => 'item', ], ], 'SecurityGroupReferencingSupportValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'SecurityGroupRule' => [ 'type' => 'structure', 'members' => [ 'SecurityGroupRuleId' => [ 'shape' => 'SecurityGroupRuleId', 'locationName' => 'securityGroupRuleId', ], 'GroupId' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'groupId', ], 'GroupOwnerId' => [ 'shape' => 'String', 'locationName' => 'groupOwnerId', ], 'IsEgress' => [ 'shape' => 'Boolean', 'locationName' => 'isEgress', ], 'IpProtocol' => [ 'shape' => 'String', 'locationName' => 'ipProtocol', ], 'FromPort' => [ 'shape' => 'Integer', 'locationName' => 'fromPort', ], 'ToPort' => [ 'shape' => 'Integer', 'locationName' => 'toPort', ], 'CidrIpv4' => [ 'shape' => 'String', 'locationName' => 'cidrIpv4', ], 'CidrIpv6' => [ 'shape' => 'String', 'locationName' => 'cidrIpv6', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', 'locationName' => 'prefixListId', ], 'ReferencedGroupInfo' => [ 'shape' => 'ReferencedSecurityGroup', 'locationName' => 'referencedGroupInfo', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'SecurityGroupRuleDescription' => [ 'type' => 'structure', 'members' => [ 'SecurityGroupRuleId' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], ], ], 'SecurityGroupRuleDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupRuleDescription', 'locationName' => 'item', ], ], 'SecurityGroupRuleId' => [ 'type' => 'string', ], 'SecurityGroupRuleIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'SecurityGroupRuleList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupRule', 'locationName' => 'item', ], ], 'SecurityGroupRuleRequest' => [ 'type' => 'structure', 'members' => [ 'IpProtocol' => [ 'shape' => 'String', ], 'FromPort' => [ 'shape' => 'Integer', ], 'ToPort' => [ 'shape' => 'Integer', ], 'CidrIpv4' => [ 'shape' => 'String', ], 'CidrIpv6' => [ 'shape' => 'String', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'ReferencedGroupId' => [ 'shape' => 'SecurityGroupId', ], 'Description' => [ 'shape' => 'String', ], ], ], 'SecurityGroupRuleUpdate' => [ 'type' => 'structure', 'required' => [ 'SecurityGroupRuleId', ], 'members' => [ 'SecurityGroupRuleId' => [ 'shape' => 'SecurityGroupRuleId', ], 'SecurityGroupRule' => [ 'shape' => 'SecurityGroupRuleRequest', ], ], ], 'SecurityGroupRuleUpdateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupRuleUpdate', 'locationName' => 'item', ], ], 'SecurityGroupStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupName', 'locationName' => 'SecurityGroup', ], ], 'SelfServicePortal' => [ 'type' => 'string', 'enum' => [ 'enabled', 'disabled', ], ], 'SendDiagnosticInterruptRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'SensitiveUrl' => [ 'type' => 'string', 'sensitive' => true, ], 'SensitiveUserData' => [ 'type' => 'string', 'sensitive' => true, ], 'ServiceConfiguration' => [ 'type' => 'structure', 'members' => [ 'ServiceType' => [ 'shape' => 'ServiceTypeDetailSet', 'locationName' => 'serviceType', ], 'ServiceId' => [ 'shape' => 'String', 'locationName' => 'serviceId', ], 'ServiceName' => [ 'shape' => 'String', 'locationName' => 'serviceName', ], 'ServiceState' => [ 'shape' => 'ServiceState', 'locationName' => 'serviceState', ], 'AvailabilityZones' => [ 'shape' => 'ValueStringList', 'locationName' => 'availabilityZoneSet', ], 'AcceptanceRequired' => [ 'shape' => 'Boolean', 'locationName' => 'acceptanceRequired', ], 'ManagesVpcEndpoints' => [ 'shape' => 'Boolean', 'locationName' => 'managesVpcEndpoints', ], 'NetworkLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'networkLoadBalancerArnSet', ], 'GatewayLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'gatewayLoadBalancerArnSet', ], 'SupportedIpAddressTypes' => [ 'shape' => 'SupportedIpAddressTypes', 'locationName' => 'supportedIpAddressTypeSet', ], 'BaseEndpointDnsNames' => [ 'shape' => 'ValueStringList', 'locationName' => 'baseEndpointDnsNameSet', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'PrivateDnsNameConfiguration' => [ 'shape' => 'PrivateDnsNameConfiguration', 'locationName' => 'privateDnsNameConfiguration', ], 'PayerResponsibility' => [ 'shape' => 'PayerResponsibility', 'locationName' => 'payerResponsibility', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ServiceConfigurationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ServiceConfiguration', 'locationName' => 'item', ], ], 'ServiceConnectivityType' => [ 'type' => 'string', 'enum' => [ 'ipv4', 'ipv6', ], ], 'ServiceDetail' => [ 'type' => 'structure', 'members' => [ 'ServiceName' => [ 'shape' => 'String', 'locationName' => 'serviceName', ], 'ServiceId' => [ 'shape' => 'String', 'locationName' => 'serviceId', ], 'ServiceType' => [ 'shape' => 'ServiceTypeDetailSet', 'locationName' => 'serviceType', ], 'AvailabilityZones' => [ 'shape' => 'ValueStringList', 'locationName' => 'availabilityZoneSet', ], 'Owner' => [ 'shape' => 'String', 'locationName' => 'owner', ], 'BaseEndpointDnsNames' => [ 'shape' => 'ValueStringList', 'locationName' => 'baseEndpointDnsNameSet', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'PrivateDnsNames' => [ 'shape' => 'PrivateDnsDetailsSet', 'locationName' => 'privateDnsNameSet', ], 'VpcEndpointPolicySupported' => [ 'shape' => 'Boolean', 'locationName' => 'vpcEndpointPolicySupported', ], 'AcceptanceRequired' => [ 'shape' => 'Boolean', 'locationName' => 'acceptanceRequired', ], 'ManagesVpcEndpoints' => [ 'shape' => 'Boolean', 'locationName' => 'managesVpcEndpoints', ], 'PayerResponsibility' => [ 'shape' => 'PayerResponsibility', 'locationName' => 'payerResponsibility', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'PrivateDnsNameVerificationState' => [ 'shape' => 'DnsNameState', 'locationName' => 'privateDnsNameVerificationState', ], 'SupportedIpAddressTypes' => [ 'shape' => 'SupportedIpAddressTypes', 'locationName' => 'supportedIpAddressTypeSet', ], ], ], 'ServiceDetailSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ServiceDetail', 'locationName' => 'item', ], ], 'ServiceState' => [ 'type' => 'string', 'enum' => [ 'Pending', 'Available', 'Deleting', 'Deleted', 'Failed', ], ], 'ServiceType' => [ 'type' => 'string', 'enum' => [ 'Interface', 'Gateway', 'GatewayLoadBalancer', ], ], 'ServiceTypeDetail' => [ 'type' => 'structure', 'members' => [ 'ServiceType' => [ 'shape' => 'ServiceType', 'locationName' => 'serviceType', ], ], ], 'ServiceTypeDetailSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ServiceTypeDetail', 'locationName' => 'item', ], ], 'ShutdownBehavior' => [ 'type' => 'string', 'enum' => [ 'stop', 'terminate', ], ], 'SlotDateTimeRangeRequest' => [ 'type' => 'structure', 'required' => [ 'EarliestTime', 'LatestTime', ], 'members' => [ 'EarliestTime' => [ 'shape' => 'DateTime', ], 'LatestTime' => [ 'shape' => 'DateTime', ], ], ], 'SlotStartTimeRangeRequest' => [ 'type' => 'structure', 'members' => [ 'EarliestTime' => [ 'shape' => 'DateTime', ], 'LatestTime' => [ 'shape' => 'DateTime', ], ], ], 'Snapshot' => [ 'type' => 'structure', 'members' => [ 'DataEncryptionKeyId' => [ 'shape' => 'String', 'locationName' => 'dataEncryptionKeyId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], 'State' => [ 'shape' => 'SnapshotState', 'locationName' => 'status', ], 'StateMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'VolumeSize' => [ 'shape' => 'Integer', 'locationName' => 'volumeSize', ], 'OwnerAlias' => [ 'shape' => 'String', 'locationName' => 'ownerAlias', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'StorageTier' => [ 'shape' => 'StorageTier', 'locationName' => 'storageTier', ], 'RestoreExpiryTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'restoreExpiryTime', ], 'SseType' => [ 'shape' => 'SSEType', 'locationName' => 'sseType', ], ], ], 'SnapshotAttributeName' => [ 'type' => 'string', 'enum' => [ 'productCodes', 'createVolumePermission', ], ], 'SnapshotBlockPublicAccessState' => [ 'type' => 'string', 'enum' => [ 'block-all-sharing', 'block-new-sharing', 'unblocked', ], ], 'SnapshotDetail' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DeviceName' => [ 'shape' => 'String', 'locationName' => 'deviceName', ], 'DiskImageSize' => [ 'shape' => 'Double', 'locationName' => 'diskImageSize', ], 'Format' => [ 'shape' => 'String', 'locationName' => 'format', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Url' => [ 'shape' => 'SensitiveUrl', 'locationName' => 'url', ], 'UserBucket' => [ 'shape' => 'UserBucketDetails', 'locationName' => 'userBucket', ], ], ], 'SnapshotDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SnapshotDetail', 'locationName' => 'item', ], ], 'SnapshotDiskContainer' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', ], 'Format' => [ 'shape' => 'String', ], 'Url' => [ 'shape' => 'SensitiveUrl', ], 'UserBucket' => [ 'shape' => 'UserBucket', ], ], ], 'SnapshotId' => [ 'type' => 'string', ], 'SnapshotIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SnapshotId', 'locationName' => 'SnapshotId', ], ], 'SnapshotInfo' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'State' => [ 'shape' => 'SnapshotState', 'locationName' => 'state', ], 'VolumeSize' => [ 'shape' => 'Integer', 'locationName' => 'volumeSize', ], 'StartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'startTime', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'SseType' => [ 'shape' => 'SSEType', 'locationName' => 'sseType', ], ], ], 'SnapshotList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Snapshot', 'locationName' => 'item', ], ], 'SnapshotRecycleBinInfo' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'RecycleBinEnterTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'recycleBinEnterTime', ], 'RecycleBinExitTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'recycleBinExitTime', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], ], ], 'SnapshotRecycleBinInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SnapshotRecycleBinInfo', 'locationName' => 'item', ], ], 'SnapshotSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SnapshotInfo', 'locationName' => 'item', ], ], 'SnapshotState' => [ 'type' => 'string', 'enum' => [ 'pending', 'completed', 'error', 'recoverable', 'recovering', ], ], 'SnapshotTaskDetail' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DiskImageSize' => [ 'shape' => 'Double', 'locationName' => 'diskImageSize', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'Format' => [ 'shape' => 'String', 'locationName' => 'format', ], 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Url' => [ 'shape' => 'SensitiveUrl', 'locationName' => 'url', ], 'UserBucket' => [ 'shape' => 'UserBucketDetails', 'locationName' => 'userBucket', ], ], ], 'SnapshotTierStatus' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'SnapshotId', 'locationName' => 'snapshotId', ], 'VolumeId' => [ 'shape' => 'VolumeId', 'locationName' => 'volumeId', ], 'Status' => [ 'shape' => 'SnapshotState', 'locationName' => 'status', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'StorageTier' => [ 'shape' => 'StorageTier', 'locationName' => 'storageTier', ], 'LastTieringStartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lastTieringStartTime', ], 'LastTieringProgress' => [ 'shape' => 'Integer', 'locationName' => 'lastTieringProgress', ], 'LastTieringOperationStatus' => [ 'shape' => 'TieringOperationStatus', 'locationName' => 'lastTieringOperationStatus', ], 'LastTieringOperationStatusDetail' => [ 'shape' => 'String', 'locationName' => 'lastTieringOperationStatusDetail', ], 'ArchivalCompleteTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'archivalCompleteTime', ], 'RestoreExpiryTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'restoreExpiryTime', ], ], ], 'SpotAllocationStrategy' => [ 'type' => 'string', 'enum' => [ 'lowest-price', 'diversified', 'capacity-optimized', 'capacity-optimized-prioritized', 'price-capacity-optimized', ], ], 'SpotCapacityRebalance' => [ 'type' => 'structure', 'members' => [ 'ReplacementStrategy' => [ 'shape' => 'ReplacementStrategy', 'locationName' => 'replacementStrategy', ], 'TerminationDelay' => [ 'shape' => 'Integer', 'locationName' => 'terminationDelay', ], ], ], 'SpotDatafeedSubscription' => [ 'type' => 'structure', 'members' => [ 'Bucket' => [ 'shape' => 'String', 'locationName' => 'bucket', ], 'Fault' => [ 'shape' => 'SpotInstanceStateFault', 'locationName' => 'fault', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Prefix' => [ 'shape' => 'String', 'locationName' => 'prefix', ], 'State' => [ 'shape' => 'DatafeedSubscriptionState', 'locationName' => 'state', ], ], ], 'SpotFleetLaunchSpecification' => [ 'type' => 'structure', 'members' => [ 'SecurityGroups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'AddressingType' => [ 'shape' => 'String', 'locationName' => 'addressingType', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfileSpecification', 'locationName' => 'iamInstanceProfile', ], 'ImageId' => [ 'shape' => 'ImageId', 'locationName' => 'imageId', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'KernelId' => [ 'shape' => 'String', 'locationName' => 'kernelId', ], 'KeyName' => [ 'shape' => 'KeyPairName', 'locationName' => 'keyName', ], 'Monitoring' => [ 'shape' => 'SpotFleetMonitoring', 'locationName' => 'monitoring', ], 'NetworkInterfaces' => [ 'shape' => 'InstanceNetworkInterfaceSpecificationList', 'locationName' => 'networkInterfaceSet', ], 'Placement' => [ 'shape' => 'SpotPlacement', 'locationName' => 'placement', ], 'RamdiskId' => [ 'shape' => 'String', 'locationName' => 'ramdiskId', ], 'SpotPrice' => [ 'shape' => 'String', 'locationName' => 'spotPrice', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'UserData' => [ 'shape' => 'SensitiveUserData', 'locationName' => 'userData', ], 'WeightedCapacity' => [ 'shape' => 'Double', 'locationName' => 'weightedCapacity', ], 'TagSpecifications' => [ 'shape' => 'SpotFleetTagSpecificationList', 'locationName' => 'tagSpecificationSet', ], 'InstanceRequirements' => [ 'shape' => 'InstanceRequirements', 'locationName' => 'instanceRequirements', ], ], ], 'SpotFleetMonitoring' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], ], ], 'SpotFleetRequestConfig' => [ 'type' => 'structure', 'members' => [ 'ActivityStatus' => [ 'shape' => 'ActivityStatus', 'locationName' => 'activityStatus', ], 'CreateTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'createTime', ], 'SpotFleetRequestConfig' => [ 'shape' => 'SpotFleetRequestConfigData', 'locationName' => 'spotFleetRequestConfig', ], 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], 'SpotFleetRequestState' => [ 'shape' => 'BatchState', 'locationName' => 'spotFleetRequestState', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'SpotFleetRequestConfigData' => [ 'type' => 'structure', 'required' => [ 'IamFleetRole', 'TargetCapacity', ], 'members' => [ 'AllocationStrategy' => [ 'shape' => 'AllocationStrategy', 'locationName' => 'allocationStrategy', ], 'OnDemandAllocationStrategy' => [ 'shape' => 'OnDemandAllocationStrategy', 'locationName' => 'onDemandAllocationStrategy', ], 'SpotMaintenanceStrategies' => [ 'shape' => 'SpotMaintenanceStrategies', 'locationName' => 'spotMaintenanceStrategies', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'ExcessCapacityTerminationPolicy' => [ 'shape' => 'ExcessCapacityTerminationPolicy', 'locationName' => 'excessCapacityTerminationPolicy', ], 'FulfilledCapacity' => [ 'shape' => 'Double', 'locationName' => 'fulfilledCapacity', ], 'OnDemandFulfilledCapacity' => [ 'shape' => 'Double', 'locationName' => 'onDemandFulfilledCapacity', ], 'IamFleetRole' => [ 'shape' => 'String', 'locationName' => 'iamFleetRole', ], 'LaunchSpecifications' => [ 'shape' => 'LaunchSpecsList', 'locationName' => 'launchSpecifications', ], 'LaunchTemplateConfigs' => [ 'shape' => 'LaunchTemplateConfigList', 'locationName' => 'launchTemplateConfigs', ], 'SpotPrice' => [ 'shape' => 'String', 'locationName' => 'spotPrice', ], 'TargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'targetCapacity', ], 'OnDemandTargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'onDemandTargetCapacity', ], 'OnDemandMaxTotalPrice' => [ 'shape' => 'String', 'locationName' => 'onDemandMaxTotalPrice', ], 'SpotMaxTotalPrice' => [ 'shape' => 'String', 'locationName' => 'spotMaxTotalPrice', ], 'TerminateInstancesWithExpiration' => [ 'shape' => 'Boolean', 'locationName' => 'terminateInstancesWithExpiration', ], 'Type' => [ 'shape' => 'FleetType', 'locationName' => 'type', ], 'ValidFrom' => [ 'shape' => 'DateTime', 'locationName' => 'validFrom', ], 'ValidUntil' => [ 'shape' => 'DateTime', 'locationName' => 'validUntil', ], 'ReplaceUnhealthyInstances' => [ 'shape' => 'Boolean', 'locationName' => 'replaceUnhealthyInstances', ], 'InstanceInterruptionBehavior' => [ 'shape' => 'InstanceInterruptionBehavior', 'locationName' => 'instanceInterruptionBehavior', ], 'LoadBalancersConfig' => [ 'shape' => 'LoadBalancersConfig', 'locationName' => 'loadBalancersConfig', ], 'InstancePoolsToUseCount' => [ 'shape' => 'Integer', 'locationName' => 'instancePoolsToUseCount', ], 'Context' => [ 'shape' => 'String', 'locationName' => 'context', ], 'TargetCapacityUnitType' => [ 'shape' => 'TargetCapacityUnitType', 'locationName' => 'targetCapacityUnitType', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'SpotFleetRequestConfigSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotFleetRequestConfig', 'locationName' => 'item', ], ], 'SpotFleetRequestId' => [ 'type' => 'string', ], 'SpotFleetRequestIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotFleetRequestId', 'locationName' => 'item', ], ], 'SpotFleetTagSpecification' => [ 'type' => 'structure', 'members' => [ 'ResourceType' => [ 'shape' => 'ResourceType', 'locationName' => 'resourceType', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tag', ], ], ], 'SpotFleetTagSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotFleetTagSpecification', 'locationName' => 'item', ], ], 'SpotInstanceInterruptionBehavior' => [ 'type' => 'string', 'enum' => [ 'hibernate', 'stop', 'terminate', ], ], 'SpotInstanceRequest' => [ 'type' => 'structure', 'members' => [ 'ActualBlockHourlyPrice' => [ 'shape' => 'String', 'locationName' => 'actualBlockHourlyPrice', ], 'AvailabilityZoneGroup' => [ 'shape' => 'String', 'locationName' => 'availabilityZoneGroup', ], 'BlockDurationMinutes' => [ 'shape' => 'Integer', 'locationName' => 'blockDurationMinutes', ], 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'Fault' => [ 'shape' => 'SpotInstanceStateFault', 'locationName' => 'fault', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'LaunchGroup' => [ 'shape' => 'String', 'locationName' => 'launchGroup', ], 'LaunchSpecification' => [ 'shape' => 'LaunchSpecification', 'locationName' => 'launchSpecification', ], 'LaunchedAvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'launchedAvailabilityZone', ], 'ProductDescription' => [ 'shape' => 'RIProductDescription', 'locationName' => 'productDescription', ], 'SpotInstanceRequestId' => [ 'shape' => 'String', 'locationName' => 'spotInstanceRequestId', ], 'SpotPrice' => [ 'shape' => 'String', 'locationName' => 'spotPrice', ], 'State' => [ 'shape' => 'SpotInstanceState', 'locationName' => 'state', ], 'Status' => [ 'shape' => 'SpotInstanceStatus', 'locationName' => 'status', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'Type' => [ 'shape' => 'SpotInstanceType', 'locationName' => 'type', ], 'ValidFrom' => [ 'shape' => 'DateTime', 'locationName' => 'validFrom', ], 'ValidUntil' => [ 'shape' => 'DateTime', 'locationName' => 'validUntil', ], 'InstanceInterruptionBehavior' => [ 'shape' => 'InstanceInterruptionBehavior', 'locationName' => 'instanceInterruptionBehavior', ], ], ], 'SpotInstanceRequestId' => [ 'type' => 'string', ], 'SpotInstanceRequestIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotInstanceRequestId', 'locationName' => 'SpotInstanceRequestId', ], ], 'SpotInstanceRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotInstanceRequest', 'locationName' => 'item', ], ], 'SpotInstanceState' => [ 'type' => 'string', 'enum' => [ 'open', 'active', 'closed', 'cancelled', 'failed', 'disabled', ], ], 'SpotInstanceStateFault' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'SpotInstanceStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], 'UpdateTime' => [ 'shape' => 'DateTime', 'locationName' => 'updateTime', ], ], ], 'SpotInstanceType' => [ 'type' => 'string', 'enum' => [ 'one-time', 'persistent', ], ], 'SpotMaintenanceStrategies' => [ 'type' => 'structure', 'members' => [ 'CapacityRebalance' => [ 'shape' => 'SpotCapacityRebalance', 'locationName' => 'capacityRebalance', ], ], ], 'SpotMarketOptions' => [ 'type' => 'structure', 'members' => [ 'MaxPrice' => [ 'shape' => 'String', ], 'SpotInstanceType' => [ 'shape' => 'SpotInstanceType', ], 'BlockDurationMinutes' => [ 'shape' => 'Integer', ], 'ValidUntil' => [ 'shape' => 'DateTime', ], 'InstanceInterruptionBehavior' => [ 'shape' => 'InstanceInterruptionBehavior', ], ], ], 'SpotOptions' => [ 'type' => 'structure', 'members' => [ 'AllocationStrategy' => [ 'shape' => 'SpotAllocationStrategy', 'locationName' => 'allocationStrategy', ], 'MaintenanceStrategies' => [ 'shape' => 'FleetSpotMaintenanceStrategies', 'locationName' => 'maintenanceStrategies', ], 'InstanceInterruptionBehavior' => [ 'shape' => 'SpotInstanceInterruptionBehavior', 'locationName' => 'instanceInterruptionBehavior', ], 'InstancePoolsToUseCount' => [ 'shape' => 'Integer', 'locationName' => 'instancePoolsToUseCount', ], 'SingleInstanceType' => [ 'shape' => 'Boolean', 'locationName' => 'singleInstanceType', ], 'SingleAvailabilityZone' => [ 'shape' => 'Boolean', 'locationName' => 'singleAvailabilityZone', ], 'MinTargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'minTargetCapacity', ], 'MaxTotalPrice' => [ 'shape' => 'String', 'locationName' => 'maxTotalPrice', ], ], ], 'SpotOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'AllocationStrategy' => [ 'shape' => 'SpotAllocationStrategy', ], 'MaintenanceStrategies' => [ 'shape' => 'FleetSpotMaintenanceStrategiesRequest', ], 'InstanceInterruptionBehavior' => [ 'shape' => 'SpotInstanceInterruptionBehavior', ], 'InstancePoolsToUseCount' => [ 'shape' => 'Integer', ], 'SingleInstanceType' => [ 'shape' => 'Boolean', ], 'SingleAvailabilityZone' => [ 'shape' => 'Boolean', ], 'MinTargetCapacity' => [ 'shape' => 'Integer', ], 'MaxTotalPrice' => [ 'shape' => 'String', ], ], ], 'SpotPlacement' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'GroupName' => [ 'shape' => 'PlacementGroupName', 'locationName' => 'groupName', ], 'Tenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'tenancy', ], ], ], 'SpotPlacementScore' => [ 'type' => 'structure', 'members' => [ 'Region' => [ 'shape' => 'String', 'locationName' => 'region', ], 'AvailabilityZoneId' => [ 'shape' => 'String', 'locationName' => 'availabilityZoneId', ], 'Score' => [ 'shape' => 'Integer', 'locationName' => 'score', ], ], ], 'SpotPlacementScores' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotPlacementScore', 'locationName' => 'item', ], ], 'SpotPlacementScoresMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 10, ], 'SpotPlacementScoresTargetCapacity' => [ 'type' => 'integer', 'max' => 2000000000, 'min' => 1, ], 'SpotPrice' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'ProductDescription' => [ 'shape' => 'RIProductDescription', 'locationName' => 'productDescription', ], 'SpotPrice' => [ 'shape' => 'String', 'locationName' => 'spotPrice', ], 'Timestamp' => [ 'shape' => 'DateTime', 'locationName' => 'timestamp', ], ], ], 'SpotPriceHistoryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotPrice', 'locationName' => 'item', ], ], 'SpreadLevel' => [ 'type' => 'string', 'enum' => [ 'host', 'rack', ], ], 'StaleIpPermission' => [ 'type' => 'structure', 'members' => [ 'FromPort' => [ 'shape' => 'Integer', 'locationName' => 'fromPort', ], 'IpProtocol' => [ 'shape' => 'String', 'locationName' => 'ipProtocol', ], 'IpRanges' => [ 'shape' => 'IpRanges', 'locationName' => 'ipRanges', ], 'PrefixListIds' => [ 'shape' => 'PrefixListIdSet', 'locationName' => 'prefixListIds', ], 'ToPort' => [ 'shape' => 'Integer', 'locationName' => 'toPort', ], 'UserIdGroupPairs' => [ 'shape' => 'UserIdGroupPairSet', 'locationName' => 'groups', ], ], ], 'StaleIpPermissionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'StaleIpPermission', 'locationName' => 'item', ], ], 'StaleSecurityGroup' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'StaleIpPermissions' => [ 'shape' => 'StaleIpPermissionSet', 'locationName' => 'staleIpPermissions', ], 'StaleIpPermissionsEgress' => [ 'shape' => 'StaleIpPermissionSet', 'locationName' => 'staleIpPermissionsEgress', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'StaleSecurityGroupSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'StaleSecurityGroup', 'locationName' => 'item', ], ], 'StartInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'AdditionalInfo' => [ 'shape' => 'String', 'locationName' => 'additionalInfo', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'StartInstancesResult' => [ 'type' => 'structure', 'members' => [ 'StartingInstances' => [ 'shape' => 'InstanceStateChangeList', 'locationName' => 'instancesSet', ], ], ], 'StartNetworkInsightsAccessScopeAnalysisRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInsightsAccessScopeId', 'ClientToken', ], 'members' => [ 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'StartNetworkInsightsAccessScopeAnalysisResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeAnalysis' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysis', 'locationName' => 'networkInsightsAccessScopeAnalysis', ], ], ], 'StartNetworkInsightsAnalysisRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInsightsPathId', 'ClientToken', ], 'members' => [ 'NetworkInsightsPathId' => [ 'shape' => 'NetworkInsightsPathId', ], 'AdditionalAccounts' => [ 'shape' => 'ValueStringList', 'locationName' => 'AdditionalAccount', ], 'FilterInArns' => [ 'shape' => 'ArnList', 'locationName' => 'FilterInArn', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'StartNetworkInsightsAnalysisResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAnalysis' => [ 'shape' => 'NetworkInsightsAnalysis', 'locationName' => 'networkInsightsAnalysis', ], ], ], 'StartVpcEndpointServicePrivateDnsVerificationRequest' => [ 'type' => 'structure', 'required' => [ 'ServiceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceId' => [ 'shape' => 'VpcEndpointServiceId', ], ], ], 'StartVpcEndpointServicePrivateDnsVerificationResult' => [ 'type' => 'structure', 'members' => [ 'ReturnValue' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'State' => [ 'type' => 'string', 'enum' => [ 'PendingAcceptance', 'Pending', 'Available', 'Deleting', 'Deleted', 'Rejected', 'Failed', 'Expired', ], ], 'StateReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'StaticSourcesSupportValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'StatisticType' => [ 'type' => 'string', 'enum' => [ 'p50', ], ], 'Status' => [ 'type' => 'string', 'enum' => [ 'MoveInProgress', 'InVpc', 'InClassic', ], ], 'StatusName' => [ 'type' => 'string', 'enum' => [ 'reachability', ], ], 'StatusType' => [ 'type' => 'string', 'enum' => [ 'passed', 'failed', 'insufficient-data', 'initializing', ], ], 'StopInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'Hibernate' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Force' => [ 'shape' => 'Boolean', 'locationName' => 'force', ], ], ], 'StopInstancesResult' => [ 'type' => 'structure', 'members' => [ 'StoppingInstances' => [ 'shape' => 'InstanceStateChangeList', 'locationName' => 'instancesSet', ], ], ], 'Storage' => [ 'type' => 'structure', 'members' => [ 'S3' => [ 'shape' => 'S3Storage', ], ], ], 'StorageLocation' => [ 'type' => 'structure', 'members' => [ 'Bucket' => [ 'shape' => 'String', ], 'Key' => [ 'shape' => 'String', ], ], ], 'StorageTier' => [ 'type' => 'string', 'enum' => [ 'archive', 'standard', ], ], 'StoreImageTaskResult' => [ 'type' => 'structure', 'members' => [ 'AmiId' => [ 'shape' => 'String', 'locationName' => 'amiId', ], 'TaskStartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'taskStartTime', ], 'Bucket' => [ 'shape' => 'String', 'locationName' => 'bucket', ], 'S3objectKey' => [ 'shape' => 'String', 'locationName' => 's3objectKey', ], 'ProgressPercentage' => [ 'shape' => 'Integer', 'locationName' => 'progressPercentage', ], 'StoreTaskState' => [ 'shape' => 'String', 'locationName' => 'storeTaskState', ], 'StoreTaskFailureReason' => [ 'shape' => 'String', 'locationName' => 'storeTaskFailureReason', ], ], ], 'StoreImageTaskResultSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'StoreImageTaskResult', 'locationName' => 'item', ], ], 'String' => [ 'type' => 'string', ], 'StringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'StringType' => [ 'type' => 'string', 'max' => 64000, 'min' => 0, ], 'Subnet' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'AvailabilityZoneId' => [ 'shape' => 'String', 'locationName' => 'availabilityZoneId', ], 'AvailableIpAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'availableIpAddressCount', ], 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'DefaultForAz' => [ 'shape' => 'Boolean', 'locationName' => 'defaultForAz', ], 'EnableLniAtDeviceIndex' => [ 'shape' => 'Integer', 'locationName' => 'enableLniAtDeviceIndex', ], 'MapPublicIpOnLaunch' => [ 'shape' => 'Boolean', 'locationName' => 'mapPublicIpOnLaunch', ], 'MapCustomerOwnedIpOnLaunch' => [ 'shape' => 'Boolean', 'locationName' => 'mapCustomerOwnedIpOnLaunch', ], 'CustomerOwnedIpv4Pool' => [ 'shape' => 'CoipPoolId', 'locationName' => 'customerOwnedIpv4Pool', ], 'State' => [ 'shape' => 'SubnetState', 'locationName' => 'state', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'AssignIpv6AddressOnCreation' => [ 'shape' => 'Boolean', 'locationName' => 'assignIpv6AddressOnCreation', ], 'Ipv6CidrBlockAssociationSet' => [ 'shape' => 'SubnetIpv6CidrBlockAssociationSet', 'locationName' => 'ipv6CidrBlockAssociationSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'SubnetArn' => [ 'shape' => 'String', 'locationName' => 'subnetArn', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'EnableDns64' => [ 'shape' => 'Boolean', 'locationName' => 'enableDns64', ], 'Ipv6Native' => [ 'shape' => 'Boolean', 'locationName' => 'ipv6Native', ], 'PrivateDnsNameOptionsOnLaunch' => [ 'shape' => 'PrivateDnsNameOptionsOnLaunch', 'locationName' => 'privateDnsNameOptionsOnLaunch', ], ], ], 'SubnetAssociation' => [ 'type' => 'structure', 'members' => [ 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'State' => [ 'shape' => 'TransitGatewayMulitcastDomainAssociationState', 'locationName' => 'state', ], ], ], 'SubnetAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetAssociation', 'locationName' => 'item', ], ], 'SubnetCidrAssociationId' => [ 'type' => 'string', ], 'SubnetCidrBlockState' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'SubnetCidrBlockStateCode', 'locationName' => 'state', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], ], ], 'SubnetCidrBlockStateCode' => [ 'type' => 'string', 'enum' => [ 'associating', 'associated', 'disassociating', 'disassociated', 'failing', 'failed', ], ], 'SubnetCidrReservation' => [ 'type' => 'structure', 'members' => [ 'SubnetCidrReservationId' => [ 'shape' => 'SubnetCidrReservationId', 'locationName' => 'subnetCidrReservationId', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'ReservationType' => [ 'shape' => 'SubnetCidrReservationType', 'locationName' => 'reservationType', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'SubnetCidrReservationId' => [ 'type' => 'string', ], 'SubnetCidrReservationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetCidrReservation', 'locationName' => 'item', ], ], 'SubnetCidrReservationType' => [ 'type' => 'string', 'enum' => [ 'prefix', 'explicit', ], ], 'SubnetConfiguration' => [ 'type' => 'structure', 'members' => [ 'SubnetId' => [ 'shape' => 'SubnetId', ], 'Ipv4' => [ 'shape' => 'String', ], 'Ipv6' => [ 'shape' => 'String', ], ], ], 'SubnetConfigurationsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetConfiguration', 'locationName' => 'item', ], ], 'SubnetId' => [ 'type' => 'string', ], 'SubnetIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetId', 'locationName' => 'SubnetId', ], ], 'SubnetIpv6CidrBlockAssociation' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'SubnetCidrAssociationId', 'locationName' => 'associationId', ], 'Ipv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'ipv6CidrBlock', ], 'Ipv6CidrBlockState' => [ 'shape' => 'SubnetCidrBlockState', 'locationName' => 'ipv6CidrBlockState', ], ], ], 'SubnetIpv6CidrBlockAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetIpv6CidrBlockAssociation', 'locationName' => 'item', ], ], 'SubnetList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Subnet', 'locationName' => 'item', ], ], 'SubnetState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'unavailable', ], ], 'Subscription' => [ 'type' => 'structure', 'members' => [ 'Source' => [ 'shape' => 'String', 'locationName' => 'source', ], 'Destination' => [ 'shape' => 'String', 'locationName' => 'destination', ], 'Metric' => [ 'shape' => 'MetricType', 'locationName' => 'metric', ], 'Statistic' => [ 'shape' => 'StatisticType', 'locationName' => 'statistic', ], 'Period' => [ 'shape' => 'PeriodType', 'locationName' => 'period', ], ], ], 'SubscriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Subscription', 'locationName' => 'item', ], ], 'SuccessfulInstanceCreditSpecificationItem' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], ], ], 'SuccessfulInstanceCreditSpecificationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SuccessfulInstanceCreditSpecificationItem', 'locationName' => 'item', ], ], 'SuccessfulQueuedPurchaseDeletion' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], ], ], 'SuccessfulQueuedPurchaseDeletionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SuccessfulQueuedPurchaseDeletion', 'locationName' => 'item', ], ], 'SummaryStatus' => [ 'type' => 'string', 'enum' => [ 'ok', 'impaired', 'insufficient-data', 'not-applicable', 'initializing', ], ], 'SupportedAdditionalProcessorFeature' => [ 'type' => 'string', 'enum' => [ 'amd-sev-snp', ], ], 'SupportedAdditionalProcessorFeatureList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SupportedAdditionalProcessorFeature', 'locationName' => 'item', ], ], 'SupportedIpAddressTypes' => [ 'type' => 'list', 'member' => [ 'shape' => 'ServiceConnectivityType', 'locationName' => 'item', ], 'max' => 2, 'min' => 0, ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', 'locationName' => 'key', ], 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'TagDescription' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', 'locationName' => 'key', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'ResourceType', 'locationName' => 'resourceType', ], 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'TagDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagDescription', 'locationName' => 'item', ], ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', 'locationName' => 'item', ], ], 'TagSpecification' => [ 'type' => 'structure', 'members' => [ 'ResourceType' => [ 'shape' => 'ResourceType', 'locationName' => 'resourceType', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'Tag', ], ], ], 'TagSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagSpecification', 'locationName' => 'item', ], ], 'TaggableResourceId' => [ 'type' => 'string', ], 'TargetCapacitySpecification' => [ 'type' => 'structure', 'members' => [ 'TotalTargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'totalTargetCapacity', ], 'OnDemandTargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'onDemandTargetCapacity', ], 'SpotTargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'spotTargetCapacity', ], 'DefaultTargetCapacityType' => [ 'shape' => 'DefaultTargetCapacityType', 'locationName' => 'defaultTargetCapacityType', ], 'TargetCapacityUnitType' => [ 'shape' => 'TargetCapacityUnitType', 'locationName' => 'targetCapacityUnitType', ], ], ], 'TargetCapacitySpecificationRequest' => [ 'type' => 'structure', 'required' => [ 'TotalTargetCapacity', ], 'members' => [ 'TotalTargetCapacity' => [ 'shape' => 'Integer', ], 'OnDemandTargetCapacity' => [ 'shape' => 'Integer', ], 'SpotTargetCapacity' => [ 'shape' => 'Integer', ], 'DefaultTargetCapacityType' => [ 'shape' => 'DefaultTargetCapacityType', ], 'TargetCapacityUnitType' => [ 'shape' => 'TargetCapacityUnitType', ], ], ], 'TargetCapacityUnitType' => [ 'type' => 'string', 'enum' => [ 'vcpu', 'memory-mib', 'units', ], ], 'TargetConfiguration' => [ 'type' => 'structure', 'members' => [ 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'OfferingId' => [ 'shape' => 'String', 'locationName' => 'offeringId', ], ], ], 'TargetConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'OfferingId', ], 'members' => [ 'InstanceCount' => [ 'shape' => 'Integer', ], 'OfferingId' => [ 'shape' => 'ReservedInstancesOfferingId', ], ], ], 'TargetConfigurationRequestSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TargetConfigurationRequest', 'locationName' => 'TargetConfigurationRequest', ], ], 'TargetGroup' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', 'locationName' => 'arn', ], ], ], 'TargetGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'TargetGroup', 'locationName' => 'item', ], 'max' => 5, 'min' => 1, ], 'TargetGroupsConfig' => [ 'type' => 'structure', 'members' => [ 'TargetGroups' => [ 'shape' => 'TargetGroups', 'locationName' => 'targetGroups', ], ], ], 'TargetNetwork' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'TargetNetworkId' => [ 'shape' => 'String', 'locationName' => 'targetNetworkId', ], 'ClientVpnEndpointId' => [ 'shape' => 'String', 'locationName' => 'clientVpnEndpointId', ], 'Status' => [ 'shape' => 'AssociationStatus', 'locationName' => 'status', ], 'SecurityGroups' => [ 'shape' => 'ValueStringList', 'locationName' => 'securityGroups', ], ], ], 'TargetNetworkSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TargetNetwork', 'locationName' => 'item', ], ], 'TargetReservationValue' => [ 'type' => 'structure', 'members' => [ 'ReservationValue' => [ 'shape' => 'ReservationValue', 'locationName' => 'reservationValue', ], 'TargetConfiguration' => [ 'shape' => 'TargetConfiguration', 'locationName' => 'targetConfiguration', ], ], ], 'TargetReservationValueSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TargetReservationValue', 'locationName' => 'item', ], ], 'TargetStorageTier' => [ 'type' => 'string', 'enum' => [ 'archive', ], ], 'TelemetryStatus' => [ 'type' => 'string', 'enum' => [ 'UP', 'DOWN', ], ], 'Tenancy' => [ 'type' => 'string', 'enum' => [ 'default', 'dedicated', 'host', ], ], 'TerminateClientVpnConnectionsRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'ConnectionId' => [ 'shape' => 'String', ], 'Username' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'TerminateClientVpnConnectionsResult' => [ 'type' => 'structure', 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'String', 'locationName' => 'clientVpnEndpointId', ], 'Username' => [ 'shape' => 'String', 'locationName' => 'username', ], 'ConnectionStatuses' => [ 'shape' => 'TerminateConnectionStatusSet', 'locationName' => 'connectionStatuses', ], ], ], 'TerminateConnectionStatus' => [ 'type' => 'structure', 'members' => [ 'ConnectionId' => [ 'shape' => 'String', 'locationName' => 'connectionId', ], 'PreviousStatus' => [ 'shape' => 'ClientVpnConnectionStatus', 'locationName' => 'previousStatus', ], 'CurrentStatus' => [ 'shape' => 'ClientVpnConnectionStatus', 'locationName' => 'currentStatus', ], ], ], 'TerminateConnectionStatusSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TerminateConnectionStatus', 'locationName' => 'item', ], ], 'TerminateInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'TerminateInstancesResult' => [ 'type' => 'structure', 'members' => [ 'TerminatingInstances' => [ 'shape' => 'InstanceStateChangeList', 'locationName' => 'instancesSet', ], ], ], 'ThreadsPerCore' => [ 'type' => 'integer', ], 'ThreadsPerCoreList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThreadsPerCore', 'locationName' => 'item', ], ], 'ThroughResourcesStatement' => [ 'type' => 'structure', 'members' => [ 'ResourceStatement' => [ 'shape' => 'ResourceStatement', 'locationName' => 'resourceStatement', ], ], ], 'ThroughResourcesStatementList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThroughResourcesStatement', 'locationName' => 'item', ], ], 'ThroughResourcesStatementRequest' => [ 'type' => 'structure', 'members' => [ 'ResourceStatement' => [ 'shape' => 'ResourceStatementRequest', ], ], ], 'ThroughResourcesStatementRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThroughResourcesStatementRequest', 'locationName' => 'item', ], ], 'TieringOperationStatus' => [ 'type' => 'string', 'enum' => [ 'archival-in-progress', 'archival-completed', 'archival-failed', 'temporary-restore-in-progress', 'temporary-restore-completed', 'temporary-restore-failed', 'permanent-restore-in-progress', 'permanent-restore-completed', 'permanent-restore-failed', ], ], 'TotalLocalStorageGB' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Double', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Double', 'locationName' => 'max', ], ], ], 'TotalLocalStorageGBRequest' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Double', ], 'Max' => [ 'shape' => 'Double', ], ], ], 'TpmSupportValues' => [ 'type' => 'string', 'enum' => [ 'v2.0', ], ], 'TrafficDirection' => [ 'type' => 'string', 'enum' => [ 'ingress', 'egress', ], ], 'TrafficMirrorFilter' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilterId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorFilterId', ], 'IngressFilterRules' => [ 'shape' => 'TrafficMirrorFilterRuleList', 'locationName' => 'ingressFilterRuleSet', ], 'EgressFilterRules' => [ 'shape' => 'TrafficMirrorFilterRuleList', 'locationName' => 'egressFilterRuleSet', ], 'NetworkServices' => [ 'shape' => 'TrafficMirrorNetworkServiceList', 'locationName' => 'networkServiceSet', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TrafficMirrorFilterId' => [ 'type' => 'string', ], 'TrafficMirrorFilterIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorFilterId', 'locationName' => 'item', ], ], 'TrafficMirrorFilterRule' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilterRuleId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorFilterRuleId', ], 'TrafficMirrorFilterId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorFilterId', ], 'TrafficDirection' => [ 'shape' => 'TrafficDirection', 'locationName' => 'trafficDirection', ], 'RuleNumber' => [ 'shape' => 'Integer', 'locationName' => 'ruleNumber', ], 'RuleAction' => [ 'shape' => 'TrafficMirrorRuleAction', 'locationName' => 'ruleAction', ], 'Protocol' => [ 'shape' => 'Integer', 'locationName' => 'protocol', ], 'DestinationPortRange' => [ 'shape' => 'TrafficMirrorPortRange', 'locationName' => 'destinationPortRange', ], 'SourcePortRange' => [ 'shape' => 'TrafficMirrorPortRange', 'locationName' => 'sourcePortRange', ], 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'SourceCidrBlock' => [ 'shape' => 'String', 'locationName' => 'sourceCidrBlock', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], ], ], 'TrafficMirrorFilterRuleField' => [ 'type' => 'string', 'enum' => [ 'destination-port-range', 'source-port-range', 'protocol', 'description', ], ], 'TrafficMirrorFilterRuleFieldList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorFilterRuleField', ], ], 'TrafficMirrorFilterRuleIdWithResolver' => [ 'type' => 'string', ], 'TrafficMirrorFilterRuleList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorFilterRule', 'locationName' => 'item', ], ], 'TrafficMirrorFilterSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorFilter', 'locationName' => 'item', ], ], 'TrafficMirrorNetworkService' => [ 'type' => 'string', 'enum' => [ 'amazon-dns', ], ], 'TrafficMirrorNetworkServiceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorNetworkService', 'locationName' => 'item', ], ], 'TrafficMirrorPortRange' => [ 'type' => 'structure', 'members' => [ 'FromPort' => [ 'shape' => 'Integer', 'locationName' => 'fromPort', ], 'ToPort' => [ 'shape' => 'Integer', 'locationName' => 'toPort', ], ], ], 'TrafficMirrorPortRangeRequest' => [ 'type' => 'structure', 'members' => [ 'FromPort' => [ 'shape' => 'Integer', ], 'ToPort' => [ 'shape' => 'Integer', ], ], ], 'TrafficMirrorRuleAction' => [ 'type' => 'string', 'enum' => [ 'accept', 'reject', ], ], 'TrafficMirrorSession' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorSessionId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorSessionId', ], 'TrafficMirrorTargetId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorTargetId', ], 'TrafficMirrorFilterId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorFilterId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'PacketLength' => [ 'shape' => 'Integer', 'locationName' => 'packetLength', ], 'SessionNumber' => [ 'shape' => 'Integer', 'locationName' => 'sessionNumber', ], 'VirtualNetworkId' => [ 'shape' => 'Integer', 'locationName' => 'virtualNetworkId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TrafficMirrorSessionField' => [ 'type' => 'string', 'enum' => [ 'packet-length', 'description', 'virtual-network-id', ], ], 'TrafficMirrorSessionFieldList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorSessionField', ], ], 'TrafficMirrorSessionId' => [ 'type' => 'string', ], 'TrafficMirrorSessionIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorSessionId', 'locationName' => 'item', ], ], 'TrafficMirrorSessionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorSession', 'locationName' => 'item', ], ], 'TrafficMirrorTarget' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorTargetId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorTargetId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'NetworkLoadBalancerArn' => [ 'shape' => 'String', 'locationName' => 'networkLoadBalancerArn', ], 'Type' => [ 'shape' => 'TrafficMirrorTargetType', 'locationName' => 'type', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'GatewayLoadBalancerEndpointId' => [ 'shape' => 'String', 'locationName' => 'gatewayLoadBalancerEndpointId', ], ], ], 'TrafficMirrorTargetId' => [ 'type' => 'string', ], 'TrafficMirrorTargetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorTargetId', 'locationName' => 'item', ], ], 'TrafficMirrorTargetSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorTarget', 'locationName' => 'item', ], ], 'TrafficMirrorTargetType' => [ 'type' => 'string', 'enum' => [ 'network-interface', 'network-load-balancer', 'gateway-load-balancer-endpoint', ], ], 'TrafficMirroringMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'TrafficType' => [ 'type' => 'string', 'enum' => [ 'ACCEPT', 'REJECT', 'ALL', ], ], 'TransitAssociationGatewayId' => [ 'type' => 'string', ], 'TransitGateway' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'TransitGatewayArn' => [ 'shape' => 'String', 'locationName' => 'transitGatewayArn', ], 'State' => [ 'shape' => 'TransitGatewayState', 'locationName' => 'state', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Options' => [ 'shape' => 'TransitGatewayOptions', 'locationName' => 'options', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayAssociation' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', 'locationName' => 'transitGatewayRouteTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'State' => [ 'shape' => 'TransitGatewayAssociationState', 'locationName' => 'state', ], ], ], 'TransitGatewayAssociationState' => [ 'type' => 'string', 'enum' => [ 'associating', 'associated', 'disassociating', 'disassociated', ], ], 'TransitGatewayAttachment' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'TransitGatewayOwnerId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayOwnerId', ], 'ResourceOwnerId' => [ 'shape' => 'String', 'locationName' => 'resourceOwnerId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'State' => [ 'shape' => 'TransitGatewayAttachmentState', 'locationName' => 'state', ], 'Association' => [ 'shape' => 'TransitGatewayAttachmentAssociation', 'locationName' => 'association', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayAttachmentAssociation' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayRouteTableId', ], 'State' => [ 'shape' => 'TransitGatewayAssociationState', 'locationName' => 'state', ], ], ], 'TransitGatewayAttachmentBgpConfiguration' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAsn' => [ 'shape' => 'Long', 'locationName' => 'transitGatewayAsn', ], 'PeerAsn' => [ 'shape' => 'Long', 'locationName' => 'peerAsn', ], 'TransitGatewayAddress' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAddress', ], 'PeerAddress' => [ 'shape' => 'String', 'locationName' => 'peerAddress', ], 'BgpStatus' => [ 'shape' => 'BgpStatus', 'locationName' => 'bgpStatus', ], ], ], 'TransitGatewayAttachmentBgpConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayAttachmentBgpConfiguration', 'locationName' => 'item', ], ], 'TransitGatewayAttachmentId' => [ 'type' => 'string', ], 'TransitGatewayAttachmentIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayAttachmentId', ], ], 'TransitGatewayAttachmentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayAttachment', 'locationName' => 'item', ], ], 'TransitGatewayAttachmentPropagation' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayRouteTableId', ], 'State' => [ 'shape' => 'TransitGatewayPropagationState', 'locationName' => 'state', ], ], ], 'TransitGatewayAttachmentPropagationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayAttachmentPropagation', 'locationName' => 'item', ], ], 'TransitGatewayAttachmentResourceType' => [ 'type' => 'string', 'enum' => [ 'vpc', 'vpn', 'direct-connect-gateway', 'connect', 'peering', 'tgw-peering', ], ], 'TransitGatewayAttachmentState' => [ 'type' => 'string', 'enum' => [ 'initiating', 'initiatingRequest', 'pendingAcceptance', 'rollingBack', 'pending', 'available', 'modifying', 'deleting', 'deleted', 'failed', 'rejected', 'rejecting', 'failing', ], ], 'TransitGatewayCidrBlockStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'TransitGatewayConnect' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', 'locationName' => 'transitGatewayAttachmentId', ], 'TransportTransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', 'locationName' => 'transportTransitGatewayAttachmentId', ], 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', 'locationName' => 'transitGatewayId', ], 'State' => [ 'shape' => 'TransitGatewayAttachmentState', 'locationName' => 'state', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Options' => [ 'shape' => 'TransitGatewayConnectOptions', 'locationName' => 'options', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayConnectList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayConnect', 'locationName' => 'item', ], ], 'TransitGatewayConnectOptions' => [ 'type' => 'structure', 'members' => [ 'Protocol' => [ 'shape' => 'ProtocolValue', 'locationName' => 'protocol', ], ], ], 'TransitGatewayConnectPeer' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', 'locationName' => 'transitGatewayAttachmentId', ], 'TransitGatewayConnectPeerId' => [ 'shape' => 'TransitGatewayConnectPeerId', 'locationName' => 'transitGatewayConnectPeerId', ], 'State' => [ 'shape' => 'TransitGatewayConnectPeerState', 'locationName' => 'state', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'ConnectPeerConfiguration' => [ 'shape' => 'TransitGatewayConnectPeerConfiguration', 'locationName' => 'connectPeerConfiguration', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayConnectPeerConfiguration' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAddress' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAddress', ], 'PeerAddress' => [ 'shape' => 'String', 'locationName' => 'peerAddress', ], 'InsideCidrBlocks' => [ 'shape' => 'InsideCidrBlocksStringList', 'locationName' => 'insideCidrBlocks', ], 'Protocol' => [ 'shape' => 'ProtocolValue', 'locationName' => 'protocol', ], 'BgpConfigurations' => [ 'shape' => 'TransitGatewayAttachmentBgpConfigurationList', 'locationName' => 'bgpConfigurations', ], ], ], 'TransitGatewayConnectPeerId' => [ 'type' => 'string', ], 'TransitGatewayConnectPeerIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayConnectPeerId', 'locationName' => 'item', ], ], 'TransitGatewayConnectPeerList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayConnectPeer', 'locationName' => 'item', ], ], 'TransitGatewayConnectPeerState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'deleting', 'deleted', ], ], 'TransitGatewayConnectRequestBgpOptions' => [ 'type' => 'structure', 'members' => [ 'PeerAsn' => [ 'shape' => 'Long', ], ], ], 'TransitGatewayId' => [ 'type' => 'string', ], 'TransitGatewayIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayId', 'locationName' => 'item', ], ], 'TransitGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGateway', 'locationName' => 'item', ], ], 'TransitGatewayMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'TransitGatewayMulitcastDomainAssociationState' => [ 'type' => 'string', 'enum' => [ 'pendingAcceptance', 'associating', 'associated', 'disassociating', 'disassociated', 'rejected', 'failed', ], ], 'TransitGatewayMulticastDeregisteredGroupMembers' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayMulticastDomainId', ], 'DeregisteredNetworkInterfaceIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'deregisteredNetworkInterfaceIds', ], 'GroupIpAddress' => [ 'shape' => 'String', 'locationName' => 'groupIpAddress', ], ], ], 'TransitGatewayMulticastDeregisteredGroupSources' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayMulticastDomainId', ], 'DeregisteredNetworkInterfaceIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'deregisteredNetworkInterfaceIds', ], 'GroupIpAddress' => [ 'shape' => 'String', 'locationName' => 'groupIpAddress', ], ], ], 'TransitGatewayMulticastDomain' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayMulticastDomainId', ], 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'TransitGatewayMulticastDomainArn' => [ 'shape' => 'String', 'locationName' => 'transitGatewayMulticastDomainArn', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Options' => [ 'shape' => 'TransitGatewayMulticastDomainOptions', 'locationName' => 'options', ], 'State' => [ 'shape' => 'TransitGatewayMulticastDomainState', 'locationName' => 'state', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayMulticastDomainAssociation' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'ResourceOwnerId' => [ 'shape' => 'String', 'locationName' => 'resourceOwnerId', ], 'Subnet' => [ 'shape' => 'SubnetAssociation', 'locationName' => 'subnet', ], ], ], 'TransitGatewayMulticastDomainAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayMulticastDomainAssociation', 'locationName' => 'item', ], ], 'TransitGatewayMulticastDomainAssociations' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayMulticastDomainId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'ResourceOwnerId' => [ 'shape' => 'String', 'locationName' => 'resourceOwnerId', ], 'Subnets' => [ 'shape' => 'SubnetAssociationList', 'locationName' => 'subnets', ], ], ], 'TransitGatewayMulticastDomainId' => [ 'type' => 'string', ], 'TransitGatewayMulticastDomainIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayMulticastDomainId', 'locationName' => 'item', ], ], 'TransitGatewayMulticastDomainList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayMulticastDomain', 'locationName' => 'item', ], ], 'TransitGatewayMulticastDomainOptions' => [ 'type' => 'structure', 'members' => [ 'Igmpv2Support' => [ 'shape' => 'Igmpv2SupportValue', 'locationName' => 'igmpv2Support', ], 'StaticSourcesSupport' => [ 'shape' => 'StaticSourcesSupportValue', 'locationName' => 'staticSourcesSupport', ], 'AutoAcceptSharedAssociations' => [ 'shape' => 'AutoAcceptSharedAssociationsValue', 'locationName' => 'autoAcceptSharedAssociations', ], ], ], 'TransitGatewayMulticastDomainState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'deleting', 'deleted', ], ], 'TransitGatewayMulticastGroup' => [ 'type' => 'structure', 'members' => [ 'GroupIpAddress' => [ 'shape' => 'String', 'locationName' => 'groupIpAddress', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'ResourceOwnerId' => [ 'shape' => 'String', 'locationName' => 'resourceOwnerId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'GroupMember' => [ 'shape' => 'Boolean', 'locationName' => 'groupMember', ], 'GroupSource' => [ 'shape' => 'Boolean', 'locationName' => 'groupSource', ], 'MemberType' => [ 'shape' => 'MembershipType', 'locationName' => 'memberType', ], 'SourceType' => [ 'shape' => 'MembershipType', 'locationName' => 'sourceType', ], ], ], 'TransitGatewayMulticastGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayMulticastGroup', 'locationName' => 'item', ], ], 'TransitGatewayMulticastRegisteredGroupMembers' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayMulticastDomainId', ], 'RegisteredNetworkInterfaceIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'registeredNetworkInterfaceIds', ], 'GroupIpAddress' => [ 'shape' => 'String', 'locationName' => 'groupIpAddress', ], ], ], 'TransitGatewayMulticastRegisteredGroupSources' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayMulticastDomainId', ], 'RegisteredNetworkInterfaceIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'registeredNetworkInterfaceIds', ], 'GroupIpAddress' => [ 'shape' => 'String', 'locationName' => 'groupIpAddress', ], ], ], 'TransitGatewayNetworkInterfaceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'item', ], ], 'TransitGatewayOptions' => [ 'type' => 'structure', 'members' => [ 'AmazonSideAsn' => [ 'shape' => 'Long', 'locationName' => 'amazonSideAsn', ], 'TransitGatewayCidrBlocks' => [ 'shape' => 'ValueStringList', 'locationName' => 'transitGatewayCidrBlocks', ], 'AutoAcceptSharedAttachments' => [ 'shape' => 'AutoAcceptSharedAttachmentsValue', 'locationName' => 'autoAcceptSharedAttachments', ], 'DefaultRouteTableAssociation' => [ 'shape' => 'DefaultRouteTableAssociationValue', 'locationName' => 'defaultRouteTableAssociation', ], 'AssociationDefaultRouteTableId' => [ 'shape' => 'String', 'locationName' => 'associationDefaultRouteTableId', ], 'DefaultRouteTablePropagation' => [ 'shape' => 'DefaultRouteTablePropagationValue', 'locationName' => 'defaultRouteTablePropagation', ], 'PropagationDefaultRouteTableId' => [ 'shape' => 'String', 'locationName' => 'propagationDefaultRouteTableId', ], 'VpnEcmpSupport' => [ 'shape' => 'VpnEcmpSupportValue', 'locationName' => 'vpnEcmpSupport', ], 'DnsSupport' => [ 'shape' => 'DnsSupportValue', 'locationName' => 'dnsSupport', ], 'SecurityGroupReferencingSupport' => [ 'shape' => 'SecurityGroupReferencingSupportValue', 'locationName' => 'securityGroupReferencingSupport', ], 'MulticastSupport' => [ 'shape' => 'MulticastSupportValue', 'locationName' => 'multicastSupport', ], ], ], 'TransitGatewayPeeringAttachment' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'AccepterTransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'accepterTransitGatewayAttachmentId', ], 'RequesterTgwInfo' => [ 'shape' => 'PeeringTgwInfo', 'locationName' => 'requesterTgwInfo', ], 'AccepterTgwInfo' => [ 'shape' => 'PeeringTgwInfo', 'locationName' => 'accepterTgwInfo', ], 'Options' => [ 'shape' => 'TransitGatewayPeeringAttachmentOptions', 'locationName' => 'options', ], 'Status' => [ 'shape' => 'PeeringAttachmentStatus', 'locationName' => 'status', ], 'State' => [ 'shape' => 'TransitGatewayAttachmentState', 'locationName' => 'state', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayPeeringAttachmentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayPeeringAttachment', 'locationName' => 'item', ], ], 'TransitGatewayPeeringAttachmentOptions' => [ 'type' => 'structure', 'members' => [ 'DynamicRouting' => [ 'shape' => 'DynamicRoutingValue', 'locationName' => 'dynamicRouting', ], ], ], 'TransitGatewayPolicyRule' => [ 'type' => 'structure', 'members' => [ 'SourceCidrBlock' => [ 'shape' => 'String', 'locationName' => 'sourceCidrBlock', ], 'SourcePortRange' => [ 'shape' => 'String', 'locationName' => 'sourcePortRange', ], 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'DestinationPortRange' => [ 'shape' => 'String', 'locationName' => 'destinationPortRange', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], 'MetaData' => [ 'shape' => 'TransitGatewayPolicyRuleMetaData', 'locationName' => 'metaData', ], ], ], 'TransitGatewayPolicyRuleMetaData' => [ 'type' => 'structure', 'members' => [ 'MetaDataKey' => [ 'shape' => 'String', 'locationName' => 'metaDataKey', ], 'MetaDataValue' => [ 'shape' => 'String', 'locationName' => 'metaDataValue', ], ], ], 'TransitGatewayPolicyTable' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPolicyTableId' => [ 'shape' => 'TransitGatewayPolicyTableId', 'locationName' => 'transitGatewayPolicyTableId', ], 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', 'locationName' => 'transitGatewayId', ], 'State' => [ 'shape' => 'TransitGatewayPolicyTableState', 'locationName' => 'state', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayPolicyTableAssociation' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPolicyTableId' => [ 'shape' => 'TransitGatewayPolicyTableId', 'locationName' => 'transitGatewayPolicyTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'State' => [ 'shape' => 'TransitGatewayAssociationState', 'locationName' => 'state', ], ], ], 'TransitGatewayPolicyTableAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayPolicyTableAssociation', 'locationName' => 'item', ], ], 'TransitGatewayPolicyTableEntry' => [ 'type' => 'structure', 'members' => [ 'PolicyRuleNumber' => [ 'shape' => 'String', 'locationName' => 'policyRuleNumber', ], 'PolicyRule' => [ 'shape' => 'TransitGatewayPolicyRule', 'locationName' => 'policyRule', ], 'TargetRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', 'locationName' => 'targetRouteTableId', ], ], ], 'TransitGatewayPolicyTableEntryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayPolicyTableEntry', 'locationName' => 'item', ], ], 'TransitGatewayPolicyTableId' => [ 'type' => 'string', ], 'TransitGatewayPolicyTableIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayPolicyTableId', 'locationName' => 'item', ], ], 'TransitGatewayPolicyTableList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayPolicyTable', 'locationName' => 'item', ], ], 'TransitGatewayPolicyTableState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'deleting', 'deleted', ], ], 'TransitGatewayPrefixListAttachment' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], ], ], 'TransitGatewayPrefixListReference' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', 'locationName' => 'transitGatewayRouteTableId', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', 'locationName' => 'prefixListId', ], 'PrefixListOwnerId' => [ 'shape' => 'String', 'locationName' => 'prefixListOwnerId', ], 'State' => [ 'shape' => 'TransitGatewayPrefixListReferenceState', 'locationName' => 'state', ], 'Blackhole' => [ 'shape' => 'Boolean', 'locationName' => 'blackhole', ], 'TransitGatewayAttachment' => [ 'shape' => 'TransitGatewayPrefixListAttachment', 'locationName' => 'transitGatewayAttachment', ], ], ], 'TransitGatewayPrefixListReferenceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayPrefixListReference', 'locationName' => 'item', ], ], 'TransitGatewayPrefixListReferenceState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'modifying', 'deleting', ], ], 'TransitGatewayPropagation' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'TransitGatewayRouteTableId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayRouteTableId', ], 'State' => [ 'shape' => 'TransitGatewayPropagationState', 'locationName' => 'state', ], 'TransitGatewayRouteTableAnnouncementId' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementId', 'locationName' => 'transitGatewayRouteTableAnnouncementId', ], ], ], 'TransitGatewayPropagationState' => [ 'type' => 'string', 'enum' => [ 'enabling', 'enabled', 'disabling', 'disabled', ], ], 'TransitGatewayRequestOptions' => [ 'type' => 'structure', 'members' => [ 'AmazonSideAsn' => [ 'shape' => 'Long', ], 'AutoAcceptSharedAttachments' => [ 'shape' => 'AutoAcceptSharedAttachmentsValue', ], 'DefaultRouteTableAssociation' => [ 'shape' => 'DefaultRouteTableAssociationValue', ], 'DefaultRouteTablePropagation' => [ 'shape' => 'DefaultRouteTablePropagationValue', ], 'VpnEcmpSupport' => [ 'shape' => 'VpnEcmpSupportValue', ], 'DnsSupport' => [ 'shape' => 'DnsSupportValue', ], 'SecurityGroupReferencingSupport' => [ 'shape' => 'SecurityGroupReferencingSupportValue', ], 'MulticastSupport' => [ 'shape' => 'MulticastSupportValue', ], 'TransitGatewayCidrBlocks' => [ 'shape' => 'TransitGatewayCidrBlockStringList', ], ], ], 'TransitGatewayRoute' => [ 'type' => 'structure', 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', 'locationName' => 'prefixListId', ], 'TransitGatewayRouteTableAnnouncementId' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementId', 'locationName' => 'transitGatewayRouteTableAnnouncementId', ], 'TransitGatewayAttachments' => [ 'shape' => 'TransitGatewayRouteAttachmentList', 'locationName' => 'transitGatewayAttachments', ], 'Type' => [ 'shape' => 'TransitGatewayRouteType', 'locationName' => 'type', ], 'State' => [ 'shape' => 'TransitGatewayRouteState', 'locationName' => 'state', ], ], ], 'TransitGatewayRouteAttachment' => [ 'type' => 'structure', 'members' => [ 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], ], ], 'TransitGatewayRouteAttachmentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayRouteAttachment', 'locationName' => 'item', ], ], 'TransitGatewayRouteList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayRoute', 'locationName' => 'item', ], ], 'TransitGatewayRouteState' => [ 'type' => 'string', 'enum' => [ 'pending', 'active', 'blackhole', 'deleting', 'deleted', ], ], 'TransitGatewayRouteTable' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayRouteTableId', ], 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'State' => [ 'shape' => 'TransitGatewayRouteTableState', 'locationName' => 'state', ], 'DefaultAssociationRouteTable' => [ 'shape' => 'Boolean', 'locationName' => 'defaultAssociationRouteTable', ], 'DefaultPropagationRouteTable' => [ 'shape' => 'Boolean', 'locationName' => 'defaultPropagationRouteTable', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayRouteTableAnnouncement' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableAnnouncementId' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementId', 'locationName' => 'transitGatewayRouteTableAnnouncementId', ], 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', 'locationName' => 'transitGatewayId', ], 'CoreNetworkId' => [ 'shape' => 'String', 'locationName' => 'coreNetworkId', ], 'PeerTransitGatewayId' => [ 'shape' => 'TransitGatewayId', 'locationName' => 'peerTransitGatewayId', ], 'PeerCoreNetworkId' => [ 'shape' => 'String', 'locationName' => 'peerCoreNetworkId', ], 'PeeringAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', 'locationName' => 'peeringAttachmentId', ], 'AnnouncementDirection' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementDirection', 'locationName' => 'announcementDirection', ], 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', 'locationName' => 'transitGatewayRouteTableId', ], 'State' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementState', 'locationName' => 'state', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayRouteTableAnnouncementDirection' => [ 'type' => 'string', 'enum' => [ 'outgoing', 'incoming', ], ], 'TransitGatewayRouteTableAnnouncementId' => [ 'type' => 'string', ], 'TransitGatewayRouteTableAnnouncementIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementId', 'locationName' => 'item', ], ], 'TransitGatewayRouteTableAnnouncementList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayRouteTableAnnouncement', 'locationName' => 'item', ], ], 'TransitGatewayRouteTableAnnouncementState' => [ 'type' => 'string', 'enum' => [ 'available', 'pending', 'failing', 'failed', 'deleting', 'deleted', ], ], 'TransitGatewayRouteTableAssociation' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'State' => [ 'shape' => 'TransitGatewayAssociationState', 'locationName' => 'state', ], ], ], 'TransitGatewayRouteTableAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayRouteTableAssociation', 'locationName' => 'item', ], ], 'TransitGatewayRouteTableId' => [ 'type' => 'string', ], 'TransitGatewayRouteTableIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayRouteTableId', 'locationName' => 'item', ], ], 'TransitGatewayRouteTableList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayRouteTable', 'locationName' => 'item', ], ], 'TransitGatewayRouteTablePropagation' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'State' => [ 'shape' => 'TransitGatewayPropagationState', 'locationName' => 'state', ], 'TransitGatewayRouteTableAnnouncementId' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementId', 'locationName' => 'transitGatewayRouteTableAnnouncementId', ], ], ], 'TransitGatewayRouteTablePropagationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayRouteTablePropagation', 'locationName' => 'item', ], ], 'TransitGatewayRouteTableRoute' => [ 'type' => 'structure', 'members' => [ 'DestinationCidr' => [ 'shape' => 'String', 'locationName' => 'destinationCidr', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'RouteOrigin' => [ 'shape' => 'String', 'locationName' => 'routeOrigin', ], 'PrefixListId' => [ 'shape' => 'String', 'locationName' => 'prefixListId', ], 'AttachmentId' => [ 'shape' => 'String', 'locationName' => 'attachmentId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'String', 'locationName' => 'resourceType', ], ], ], 'TransitGatewayRouteTableState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'deleting', 'deleted', ], ], 'TransitGatewayRouteType' => [ 'type' => 'string', 'enum' => [ 'static', 'propagated', ], ], 'TransitGatewayState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'modifying', 'deleting', 'deleted', ], ], 'TransitGatewaySubnetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetId', 'locationName' => 'item', ], ], 'TransitGatewayVpcAttachment' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'VpcOwnerId' => [ 'shape' => 'String', 'locationName' => 'vpcOwnerId', ], 'State' => [ 'shape' => 'TransitGatewayAttachmentState', 'locationName' => 'state', ], 'SubnetIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'subnetIds', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Options' => [ 'shape' => 'TransitGatewayVpcAttachmentOptions', 'locationName' => 'options', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayVpcAttachmentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayVpcAttachment', 'locationName' => 'item', ], ], 'TransitGatewayVpcAttachmentOptions' => [ 'type' => 'structure', 'members' => [ 'DnsSupport' => [ 'shape' => 'DnsSupportValue', 'locationName' => 'dnsSupport', ], 'SecurityGroupReferencingSupport' => [ 'shape' => 'SecurityGroupReferencingSupportValue', 'locationName' => 'securityGroupReferencingSupport', ], 'Ipv6Support' => [ 'shape' => 'Ipv6SupportValue', 'locationName' => 'ipv6Support', ], 'ApplianceModeSupport' => [ 'shape' => 'ApplianceModeSupportValue', 'locationName' => 'applianceModeSupport', ], ], ], 'TransportProtocol' => [ 'type' => 'string', 'enum' => [ 'tcp', 'udp', ], ], 'TrunkInterfaceAssociation' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'TrunkInterfaceAssociationId', 'locationName' => 'associationId', ], 'BranchInterfaceId' => [ 'shape' => 'String', 'locationName' => 'branchInterfaceId', ], 'TrunkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'trunkInterfaceId', ], 'InterfaceProtocol' => [ 'shape' => 'InterfaceProtocolType', 'locationName' => 'interfaceProtocol', ], 'VlanId' => [ 'shape' => 'Integer', 'locationName' => 'vlanId', ], 'GreKey' => [ 'shape' => 'Integer', 'locationName' => 'greKey', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TrunkInterfaceAssociationId' => [ 'type' => 'string', ], 'TrunkInterfaceAssociationIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrunkInterfaceAssociationId', 'locationName' => 'item', ], ], 'TrunkInterfaceAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrunkInterfaceAssociation', 'locationName' => 'item', ], ], 'TrustProviderType' => [ 'type' => 'string', 'enum' => [ 'user', 'device', ], ], 'TunnelInsideIpVersion' => [ 'type' => 'string', 'enum' => [ 'ipv4', 'ipv6', ], ], 'TunnelOption' => [ 'type' => 'structure', 'members' => [ 'OutsideIpAddress' => [ 'shape' => 'String', 'locationName' => 'outsideIpAddress', ], 'TunnelInsideCidr' => [ 'shape' => 'String', 'locationName' => 'tunnelInsideCidr', ], 'TunnelInsideIpv6Cidr' => [ 'shape' => 'String', 'locationName' => 'tunnelInsideIpv6Cidr', ], 'PreSharedKey' => [ 'shape' => 'preSharedKey', 'locationName' => 'preSharedKey', ], 'Phase1LifetimeSeconds' => [ 'shape' => 'Integer', 'locationName' => 'phase1LifetimeSeconds', ], 'Phase2LifetimeSeconds' => [ 'shape' => 'Integer', 'locationName' => 'phase2LifetimeSeconds', ], 'RekeyMarginTimeSeconds' => [ 'shape' => 'Integer', 'locationName' => 'rekeyMarginTimeSeconds', ], 'RekeyFuzzPercentage' => [ 'shape' => 'Integer', 'locationName' => 'rekeyFuzzPercentage', ], 'ReplayWindowSize' => [ 'shape' => 'Integer', 'locationName' => 'replayWindowSize', ], 'DpdTimeoutSeconds' => [ 'shape' => 'Integer', 'locationName' => 'dpdTimeoutSeconds', ], 'DpdTimeoutAction' => [ 'shape' => 'String', 'locationName' => 'dpdTimeoutAction', ], 'Phase1EncryptionAlgorithms' => [ 'shape' => 'Phase1EncryptionAlgorithmsList', 'locationName' => 'phase1EncryptionAlgorithmSet', ], 'Phase2EncryptionAlgorithms' => [ 'shape' => 'Phase2EncryptionAlgorithmsList', 'locationName' => 'phase2EncryptionAlgorithmSet', ], 'Phase1IntegrityAlgorithms' => [ 'shape' => 'Phase1IntegrityAlgorithmsList', 'locationName' => 'phase1IntegrityAlgorithmSet', ], 'Phase2IntegrityAlgorithms' => [ 'shape' => 'Phase2IntegrityAlgorithmsList', 'locationName' => 'phase2IntegrityAlgorithmSet', ], 'Phase1DHGroupNumbers' => [ 'shape' => 'Phase1DHGroupNumbersList', 'locationName' => 'phase1DHGroupNumberSet', ], 'Phase2DHGroupNumbers' => [ 'shape' => 'Phase2DHGroupNumbersList', 'locationName' => 'phase2DHGroupNumberSet', ], 'IkeVersions' => [ 'shape' => 'IKEVersionsList', 'locationName' => 'ikeVersionSet', ], 'StartupAction' => [ 'shape' => 'String', 'locationName' => 'startupAction', ], 'LogOptions' => [ 'shape' => 'VpnTunnelLogOptions', 'locationName' => 'logOptions', ], 'EnableTunnelLifecycleControl' => [ 'shape' => 'Boolean', 'locationName' => 'enableTunnelLifecycleControl', ], ], ], 'TunnelOptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TunnelOption', 'locationName' => 'item', ], ], 'UnassignIpv6AddressesRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'Ipv6Addresses' => [ 'shape' => 'Ipv6AddressList', 'locationName' => 'ipv6Addresses', ], 'Ipv6Prefixes' => [ 'shape' => 'IpPrefixList', 'locationName' => 'Ipv6Prefix', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], ], ], 'UnassignIpv6AddressesResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'UnassignedIpv6Addresses' => [ 'shape' => 'Ipv6AddressList', 'locationName' => 'unassignedIpv6Addresses', ], 'UnassignedIpv6Prefixes' => [ 'shape' => 'IpPrefixList', 'locationName' => 'unassignedIpv6PrefixSet', ], ], ], 'UnassignPrivateIpAddressesRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'PrivateIpAddresses' => [ 'shape' => 'PrivateIpAddressStringList', 'locationName' => 'privateIpAddress', ], 'Ipv4Prefixes' => [ 'shape' => 'IpPrefixList', 'locationName' => 'Ipv4Prefix', ], ], ], 'UnassignPrivateNatGatewayAddressRequest' => [ 'type' => 'structure', 'required' => [ 'NatGatewayId', 'PrivateIpAddresses', ], 'members' => [ 'NatGatewayId' => [ 'shape' => 'NatGatewayId', ], 'PrivateIpAddresses' => [ 'shape' => 'IpList', 'locationName' => 'PrivateIpAddress', ], 'MaxDrainDurationSeconds' => [ 'shape' => 'DrainSeconds', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'UnassignPrivateNatGatewayAddressResult' => [ 'type' => 'structure', 'members' => [ 'NatGatewayId' => [ 'shape' => 'NatGatewayId', 'locationName' => 'natGatewayId', ], 'NatGatewayAddresses' => [ 'shape' => 'NatGatewayAddressList', 'locationName' => 'natGatewayAddressSet', ], ], ], 'UnlimitedSupportedInstanceFamily' => [ 'type' => 'string', 'enum' => [ 't2', 't3', 't3a', 't4g', ], ], 'UnlockSnapshotRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', ], 'members' => [ 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'UnlockSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], ], ], 'UnmonitorInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'UnmonitorInstancesResult' => [ 'type' => 'structure', 'members' => [ 'InstanceMonitorings' => [ 'shape' => 'InstanceMonitoringList', 'locationName' => 'instancesSet', ], ], ], 'UnsuccessfulInstanceCreditSpecificationErrorCode' => [ 'type' => 'string', 'enum' => [ 'InvalidInstanceID.Malformed', 'InvalidInstanceID.NotFound', 'IncorrectInstanceState', 'InstanceCreditSpecification.NotSupported', ], ], 'UnsuccessfulInstanceCreditSpecificationItem' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Error' => [ 'shape' => 'UnsuccessfulInstanceCreditSpecificationItemError', 'locationName' => 'error', ], ], ], 'UnsuccessfulInstanceCreditSpecificationItemError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'UnsuccessfulInstanceCreditSpecificationErrorCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'UnsuccessfulInstanceCreditSpecificationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'UnsuccessfulInstanceCreditSpecificationItem', 'locationName' => 'item', ], ], 'UnsuccessfulItem' => [ 'type' => 'structure', 'members' => [ 'Error' => [ 'shape' => 'UnsuccessfulItemError', 'locationName' => 'error', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], ], ], 'UnsuccessfulItemError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'UnsuccessfulItemList' => [ 'type' => 'list', 'member' => [ 'shape' => 'UnsuccessfulItem', 'locationName' => 'item', ], ], 'UnsuccessfulItemSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'UnsuccessfulItem', 'locationName' => 'item', ], ], 'UpdateSecurityGroupRuleDescriptionsEgressRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'GroupId' => [ 'shape' => 'SecurityGroupId', ], 'GroupName' => [ 'shape' => 'SecurityGroupName', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', ], 'SecurityGroupRuleDescriptions' => [ 'shape' => 'SecurityGroupRuleDescriptionList', 'locationName' => 'SecurityGroupRuleDescription', ], ], ], 'UpdateSecurityGroupRuleDescriptionsEgressResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'UpdateSecurityGroupRuleDescriptionsIngressRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'GroupId' => [ 'shape' => 'SecurityGroupId', ], 'GroupName' => [ 'shape' => 'SecurityGroupName', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', ], 'SecurityGroupRuleDescriptions' => [ 'shape' => 'SecurityGroupRuleDescriptionList', 'locationName' => 'SecurityGroupRuleDescription', ], ], ], 'UpdateSecurityGroupRuleDescriptionsIngressResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'UsageClassType' => [ 'type' => 'string', 'enum' => [ 'spot', 'on-demand', 'capacity-block', ], ], 'UsageClassTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'UsageClassType', 'locationName' => 'item', ], ], 'UserBucket' => [ 'type' => 'structure', 'members' => [ 'S3Bucket' => [ 'shape' => 'String', ], 'S3Key' => [ 'shape' => 'String', ], ], ], 'UserBucketDetails' => [ 'type' => 'structure', 'members' => [ 'S3Bucket' => [ 'shape' => 'String', 'locationName' => 's3Bucket', ], 'S3Key' => [ 'shape' => 'String', 'locationName' => 's3Key', ], ], ], 'UserData' => [ 'type' => 'structure', 'members' => [ 'Data' => [ 'shape' => 'String', 'locationName' => 'data', ], ], 'sensitive' => true, ], 'UserGroupStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'UserGroup', ], ], 'UserIdGroupPair' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'PeeringStatus' => [ 'shape' => 'String', 'locationName' => 'peeringStatus', ], 'UserId' => [ 'shape' => 'String', 'locationName' => 'userId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], ], ], 'UserIdGroupPairList' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserIdGroupPair', 'locationName' => 'item', ], ], 'UserIdGroupPairSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserIdGroupPair', 'locationName' => 'item', ], ], 'UserIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'UserId', ], ], 'UserTrustProviderType' => [ 'type' => 'string', 'enum' => [ 'iam-identity-center', 'oidc', ], ], 'VCpuCount' => [ 'type' => 'integer', ], 'VCpuCountRange' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Integer', 'locationName' => 'max', ], ], ], 'VCpuCountRangeRequest' => [ 'type' => 'structure', 'required' => [ 'Min', ], 'members' => [ 'Min' => [ 'shape' => 'Integer', ], 'Max' => [ 'shape' => 'Integer', ], ], ], 'VCpuInfo' => [ 'type' => 'structure', 'members' => [ 'DefaultVCpus' => [ 'shape' => 'VCpuCount', 'locationName' => 'defaultVCpus', ], 'DefaultCores' => [ 'shape' => 'CoreCount', 'locationName' => 'defaultCores', ], 'DefaultThreadsPerCore' => [ 'shape' => 'ThreadsPerCore', 'locationName' => 'defaultThreadsPerCore', ], 'ValidCores' => [ 'shape' => 'CoreCountList', 'locationName' => 'validCores', ], 'ValidThreadsPerCore' => [ 'shape' => 'ThreadsPerCoreList', 'locationName' => 'validThreadsPerCore', ], ], ], 'ValidationError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'ValidationWarning' => [ 'type' => 'structure', 'members' => [ 'Errors' => [ 'shape' => 'ErrorSet', 'locationName' => 'errorSet', ], ], ], 'ValueStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'VerifiedAccessEndpoint' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessInstanceId', ], 'VerifiedAccessGroupId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessGroupId', ], 'VerifiedAccessEndpointId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessEndpointId', ], 'ApplicationDomain' => [ 'shape' => 'String', 'locationName' => 'applicationDomain', ], 'EndpointType' => [ 'shape' => 'VerifiedAccessEndpointType', 'locationName' => 'endpointType', ], 'AttachmentType' => [ 'shape' => 'VerifiedAccessEndpointAttachmentType', 'locationName' => 'attachmentType', ], 'DomainCertificateArn' => [ 'shape' => 'String', 'locationName' => 'domainCertificateArn', ], 'EndpointDomain' => [ 'shape' => 'String', 'locationName' => 'endpointDomain', ], 'DeviceValidationDomain' => [ 'shape' => 'String', 'locationName' => 'deviceValidationDomain', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdList', 'locationName' => 'securityGroupIdSet', ], 'LoadBalancerOptions' => [ 'shape' => 'VerifiedAccessEndpointLoadBalancerOptions', 'locationName' => 'loadBalancerOptions', ], 'NetworkInterfaceOptions' => [ 'shape' => 'VerifiedAccessEndpointEniOptions', 'locationName' => 'networkInterfaceOptions', ], 'Status' => [ 'shape' => 'VerifiedAccessEndpointStatus', 'locationName' => 'status', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'CreationTime' => [ 'shape' => 'String', 'locationName' => 'creationTime', ], 'LastUpdatedTime' => [ 'shape' => 'String', 'locationName' => 'lastUpdatedTime', ], 'DeletionTime' => [ 'shape' => 'String', 'locationName' => 'deletionTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationResponse', 'locationName' => 'sseSpecification', ], ], ], 'VerifiedAccessEndpointAttachmentType' => [ 'type' => 'string', 'enum' => [ 'vpc', ], ], 'VerifiedAccessEndpointEniOptions' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'Protocol' => [ 'shape' => 'VerifiedAccessEndpointProtocol', 'locationName' => 'protocol', ], 'Port' => [ 'shape' => 'VerifiedAccessEndpointPortNumber', 'locationName' => 'port', ], ], ], 'VerifiedAccessEndpointId' => [ 'type' => 'string', ], 'VerifiedAccessEndpointIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessEndpointId', 'locationName' => 'item', ], ], 'VerifiedAccessEndpointList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessEndpoint', 'locationName' => 'item', ], ], 'VerifiedAccessEndpointLoadBalancerOptions' => [ 'type' => 'structure', 'members' => [ 'Protocol' => [ 'shape' => 'VerifiedAccessEndpointProtocol', 'locationName' => 'protocol', ], 'Port' => [ 'shape' => 'VerifiedAccessEndpointPortNumber', 'locationName' => 'port', ], 'LoadBalancerArn' => [ 'shape' => 'String', 'locationName' => 'loadBalancerArn', ], 'SubnetIds' => [ 'shape' => 'VerifiedAccessEndpointSubnetIdList', 'locationName' => 'subnetIdSet', ], ], ], 'VerifiedAccessEndpointPortNumber' => [ 'type' => 'integer', 'max' => 65535, 'min' => 1, ], 'VerifiedAccessEndpointProtocol' => [ 'type' => 'string', 'enum' => [ 'http', 'https', ], ], 'VerifiedAccessEndpointStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'VerifiedAccessEndpointStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'VerifiedAccessEndpointStatusCode' => [ 'type' => 'string', 'enum' => [ 'pending', 'active', 'updating', 'deleting', 'deleted', ], ], 'VerifiedAccessEndpointSubnetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetId', 'locationName' => 'item', ], ], 'VerifiedAccessEndpointType' => [ 'type' => 'string', 'enum' => [ 'load-balancer', 'network-interface', ], ], 'VerifiedAccessGroup' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessGroupId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessGroupId', ], 'VerifiedAccessInstanceId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessInstanceId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Owner' => [ 'shape' => 'String', 'locationName' => 'owner', ], 'VerifiedAccessGroupArn' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessGroupArn', ], 'CreationTime' => [ 'shape' => 'String', 'locationName' => 'creationTime', ], 'LastUpdatedTime' => [ 'shape' => 'String', 'locationName' => 'lastUpdatedTime', ], 'DeletionTime' => [ 'shape' => 'String', 'locationName' => 'deletionTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationResponse', 'locationName' => 'sseSpecification', ], ], ], 'VerifiedAccessGroupId' => [ 'type' => 'string', ], 'VerifiedAccessGroupIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessGroupId', 'locationName' => 'item', ], ], 'VerifiedAccessGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessGroup', 'locationName' => 'item', ], ], 'VerifiedAccessInstance' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessInstanceId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'VerifiedAccessTrustProviders' => [ 'shape' => 'VerifiedAccessTrustProviderCondensedList', 'locationName' => 'verifiedAccessTrustProviderSet', ], 'CreationTime' => [ 'shape' => 'String', 'locationName' => 'creationTime', ], 'LastUpdatedTime' => [ 'shape' => 'String', 'locationName' => 'lastUpdatedTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'FipsEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'fipsEnabled', ], ], ], 'VerifiedAccessInstanceId' => [ 'type' => 'string', ], 'VerifiedAccessInstanceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessInstanceId', 'locationName' => 'item', ], ], 'VerifiedAccessInstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessInstance', 'locationName' => 'item', ], ], 'VerifiedAccessInstanceLoggingConfiguration' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessInstanceId', ], 'AccessLogs' => [ 'shape' => 'VerifiedAccessLogs', 'locationName' => 'accessLogs', ], ], ], 'VerifiedAccessInstanceLoggingConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessInstanceLoggingConfiguration', 'locationName' => 'item', ], ], 'VerifiedAccessLogCloudWatchLogsDestination' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], 'DeliveryStatus' => [ 'shape' => 'VerifiedAccessLogDeliveryStatus', 'locationName' => 'deliveryStatus', ], 'LogGroup' => [ 'shape' => 'String', 'locationName' => 'logGroup', ], ], ], 'VerifiedAccessLogCloudWatchLogsDestinationOptions' => [ 'type' => 'structure', 'required' => [ 'Enabled', ], 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], 'LogGroup' => [ 'shape' => 'String', ], ], ], 'VerifiedAccessLogDeliveryStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'VerifiedAccessLogDeliveryStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'VerifiedAccessLogDeliveryStatusCode' => [ 'type' => 'string', 'enum' => [ 'success', 'failed', ], ], 'VerifiedAccessLogKinesisDataFirehoseDestination' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], 'DeliveryStatus' => [ 'shape' => 'VerifiedAccessLogDeliveryStatus', 'locationName' => 'deliveryStatus', ], 'DeliveryStream' => [ 'shape' => 'String', 'locationName' => 'deliveryStream', ], ], ], 'VerifiedAccessLogKinesisDataFirehoseDestinationOptions' => [ 'type' => 'structure', 'required' => [ 'Enabled', ], 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], 'DeliveryStream' => [ 'shape' => 'String', ], ], ], 'VerifiedAccessLogOptions' => [ 'type' => 'structure', 'members' => [ 'S3' => [ 'shape' => 'VerifiedAccessLogS3DestinationOptions', ], 'CloudWatchLogs' => [ 'shape' => 'VerifiedAccessLogCloudWatchLogsDestinationOptions', ], 'KinesisDataFirehose' => [ 'shape' => 'VerifiedAccessLogKinesisDataFirehoseDestinationOptions', ], 'LogVersion' => [ 'shape' => 'String', ], 'IncludeTrustContext' => [ 'shape' => 'Boolean', ], ], ], 'VerifiedAccessLogS3Destination' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], 'DeliveryStatus' => [ 'shape' => 'VerifiedAccessLogDeliveryStatus', 'locationName' => 'deliveryStatus', ], 'BucketName' => [ 'shape' => 'String', 'locationName' => 'bucketName', ], 'Prefix' => [ 'shape' => 'String', 'locationName' => 'prefix', ], 'BucketOwner' => [ 'shape' => 'String', 'locationName' => 'bucketOwner', ], ], ], 'VerifiedAccessLogS3DestinationOptions' => [ 'type' => 'structure', 'required' => [ 'Enabled', ], 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], 'BucketName' => [ 'shape' => 'String', ], 'Prefix' => [ 'shape' => 'String', ], 'BucketOwner' => [ 'shape' => 'String', ], ], ], 'VerifiedAccessLogs' => [ 'type' => 'structure', 'members' => [ 'S3' => [ 'shape' => 'VerifiedAccessLogS3Destination', 'locationName' => 's3', ], 'CloudWatchLogs' => [ 'shape' => 'VerifiedAccessLogCloudWatchLogsDestination', 'locationName' => 'cloudWatchLogs', ], 'KinesisDataFirehose' => [ 'shape' => 'VerifiedAccessLogKinesisDataFirehoseDestination', 'locationName' => 'kinesisDataFirehose', ], 'LogVersion' => [ 'shape' => 'String', 'locationName' => 'logVersion', ], 'IncludeTrustContext' => [ 'shape' => 'Boolean', 'locationName' => 'includeTrustContext', ], ], ], 'VerifiedAccessSseSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'CustomerManagedKeyEnabled' => [ 'shape' => 'Boolean', ], 'KmsKeyArn' => [ 'shape' => 'KmsKeyArn', ], ], ], 'VerifiedAccessSseSpecificationResponse' => [ 'type' => 'structure', 'members' => [ 'CustomerManagedKeyEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'customerManagedKeyEnabled', ], 'KmsKeyArn' => [ 'shape' => 'KmsKeyArn', 'locationName' => 'kmsKeyArn', ], ], ], 'VerifiedAccessTrustProvider' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProviderId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessTrustProviderId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'TrustProviderType' => [ 'shape' => 'TrustProviderType', 'locationName' => 'trustProviderType', ], 'UserTrustProviderType' => [ 'shape' => 'UserTrustProviderType', 'locationName' => 'userTrustProviderType', ], 'DeviceTrustProviderType' => [ 'shape' => 'DeviceTrustProviderType', 'locationName' => 'deviceTrustProviderType', ], 'OidcOptions' => [ 'shape' => 'OidcOptions', 'locationName' => 'oidcOptions', ], 'DeviceOptions' => [ 'shape' => 'DeviceOptions', 'locationName' => 'deviceOptions', ], 'PolicyReferenceName' => [ 'shape' => 'String', 'locationName' => 'policyReferenceName', ], 'CreationTime' => [ 'shape' => 'String', 'locationName' => 'creationTime', ], 'LastUpdatedTime' => [ 'shape' => 'String', 'locationName' => 'lastUpdatedTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationResponse', 'locationName' => 'sseSpecification', ], ], ], 'VerifiedAccessTrustProviderCondensed' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProviderId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessTrustProviderId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'TrustProviderType' => [ 'shape' => 'TrustProviderType', 'locationName' => 'trustProviderType', ], 'UserTrustProviderType' => [ 'shape' => 'UserTrustProviderType', 'locationName' => 'userTrustProviderType', ], 'DeviceTrustProviderType' => [ 'shape' => 'DeviceTrustProviderType', 'locationName' => 'deviceTrustProviderType', ], ], ], 'VerifiedAccessTrustProviderCondensedList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessTrustProviderCondensed', 'locationName' => 'item', ], ], 'VerifiedAccessTrustProviderId' => [ 'type' => 'string', ], 'VerifiedAccessTrustProviderIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessTrustProviderId', 'locationName' => 'item', ], ], 'VerifiedAccessTrustProviderList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessTrustProvider', 'locationName' => 'item', ], ], 'VersionDescription' => [ 'type' => 'string', 'max' => 255, 'min' => 0, ], 'VersionStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'VgwTelemetry' => [ 'type' => 'structure', 'members' => [ 'AcceptedRouteCount' => [ 'shape' => 'Integer', 'locationName' => 'acceptedRouteCount', ], 'LastStatusChange' => [ 'shape' => 'DateTime', 'locationName' => 'lastStatusChange', ], 'OutsideIpAddress' => [ 'shape' => 'String', 'locationName' => 'outsideIpAddress', ], 'Status' => [ 'shape' => 'TelemetryStatus', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'CertificateArn' => [ 'shape' => 'String', 'locationName' => 'certificateArn', ], ], ], 'VgwTelemetryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VgwTelemetry', 'locationName' => 'item', ], ], 'VirtualizationType' => [ 'type' => 'string', 'enum' => [ 'hvm', 'paravirtual', ], ], 'VirtualizationTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VirtualizationType', 'locationName' => 'item', ], ], 'VirtualizationTypeSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'VirtualizationType', 'locationName' => 'item', ], 'max' => 2, 'min' => 0, ], 'Volume' => [ 'type' => 'structure', 'members' => [ 'Attachments' => [ 'shape' => 'VolumeAttachmentList', 'locationName' => 'attachmentSet', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'Size' => [ 'shape' => 'Integer', 'locationName' => 'size', ], 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'State' => [ 'shape' => 'VolumeState', 'locationName' => 'status', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'Iops' => [ 'shape' => 'Integer', 'locationName' => 'iops', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VolumeType' => [ 'shape' => 'VolumeType', 'locationName' => 'volumeType', ], 'FastRestored' => [ 'shape' => 'Boolean', 'locationName' => 'fastRestored', ], 'MultiAttachEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'multiAttachEnabled', ], 'Throughput' => [ 'shape' => 'Integer', 'locationName' => 'throughput', ], 'SseType' => [ 'shape' => 'SSEType', 'locationName' => 'sseType', ], ], ], 'VolumeAttachment' => [ 'type' => 'structure', 'members' => [ 'AttachTime' => [ 'shape' => 'DateTime', 'locationName' => 'attachTime', ], 'Device' => [ 'shape' => 'String', 'locationName' => 'device', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'State' => [ 'shape' => 'VolumeAttachmentState', 'locationName' => 'status', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'AssociatedResource' => [ 'shape' => 'String', 'locationName' => 'associatedResource', ], 'InstanceOwningService' => [ 'shape' => 'String', 'locationName' => 'instanceOwningService', ], ], ], 'VolumeAttachmentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeAttachment', 'locationName' => 'item', ], ], 'VolumeAttachmentState' => [ 'type' => 'string', 'enum' => [ 'attaching', 'attached', 'detaching', 'detached', 'busy', ], ], 'VolumeAttributeName' => [ 'type' => 'string', 'enum' => [ 'autoEnableIO', 'productCodes', ], ], 'VolumeDetail' => [ 'type' => 'structure', 'required' => [ 'Size', ], 'members' => [ 'Size' => [ 'shape' => 'Long', 'locationName' => 'size', ], ], ], 'VolumeId' => [ 'type' => 'string', ], 'VolumeIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeId', 'locationName' => 'VolumeId', ], ], 'VolumeIdWithResolver' => [ 'type' => 'string', ], 'VolumeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Volume', 'locationName' => 'item', ], ], 'VolumeModification' => [ 'type' => 'structure', 'members' => [ 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'ModificationState' => [ 'shape' => 'VolumeModificationState', 'locationName' => 'modificationState', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'TargetSize' => [ 'shape' => 'Integer', 'locationName' => 'targetSize', ], 'TargetIops' => [ 'shape' => 'Integer', 'locationName' => 'targetIops', ], 'TargetVolumeType' => [ 'shape' => 'VolumeType', 'locationName' => 'targetVolumeType', ], 'TargetThroughput' => [ 'shape' => 'Integer', 'locationName' => 'targetThroughput', ], 'TargetMultiAttachEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'targetMultiAttachEnabled', ], 'OriginalSize' => [ 'shape' => 'Integer', 'locationName' => 'originalSize', ], 'OriginalIops' => [ 'shape' => 'Integer', 'locationName' => 'originalIops', ], 'OriginalVolumeType' => [ 'shape' => 'VolumeType', 'locationName' => 'originalVolumeType', ], 'OriginalThroughput' => [ 'shape' => 'Integer', 'locationName' => 'originalThroughput', ], 'OriginalMultiAttachEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'originalMultiAttachEnabled', ], 'Progress' => [ 'shape' => 'Long', 'locationName' => 'progress', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], 'EndTime' => [ 'shape' => 'DateTime', 'locationName' => 'endTime', ], ], ], 'VolumeModificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeModification', 'locationName' => 'item', ], ], 'VolumeModificationState' => [ 'type' => 'string', 'enum' => [ 'modifying', 'optimizing', 'completed', 'failed', ], ], 'VolumeState' => [ 'type' => 'string', 'enum' => [ 'creating', 'available', 'in-use', 'deleting', 'deleted', 'error', ], ], 'VolumeStatusAction' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'EventId' => [ 'shape' => 'String', 'locationName' => 'eventId', ], 'EventType' => [ 'shape' => 'String', 'locationName' => 'eventType', ], ], ], 'VolumeStatusActionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeStatusAction', 'locationName' => 'item', ], ], 'VolumeStatusAttachmentStatus' => [ 'type' => 'structure', 'members' => [ 'IoPerformance' => [ 'shape' => 'String', 'locationName' => 'ioPerformance', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], ], ], 'VolumeStatusAttachmentStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeStatusAttachmentStatus', 'locationName' => 'item', ], ], 'VolumeStatusDetails' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'VolumeStatusName', 'locationName' => 'name', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], ], ], 'VolumeStatusDetailsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeStatusDetails', 'locationName' => 'item', ], ], 'VolumeStatusEvent' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'EventId' => [ 'shape' => 'String', 'locationName' => 'eventId', ], 'EventType' => [ 'shape' => 'String', 'locationName' => 'eventType', ], 'NotAfter' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'notAfter', ], 'NotBefore' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'notBefore', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], ], ], 'VolumeStatusEventsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeStatusEvent', 'locationName' => 'item', ], ], 'VolumeStatusInfo' => [ 'type' => 'structure', 'members' => [ 'Details' => [ 'shape' => 'VolumeStatusDetailsList', 'locationName' => 'details', ], 'Status' => [ 'shape' => 'VolumeStatusInfoStatus', 'locationName' => 'status', ], ], ], 'VolumeStatusInfoStatus' => [ 'type' => 'string', 'enum' => [ 'ok', 'impaired', 'insufficient-data', ], ], 'VolumeStatusItem' => [ 'type' => 'structure', 'members' => [ 'Actions' => [ 'shape' => 'VolumeStatusActionsList', 'locationName' => 'actionsSet', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'Events' => [ 'shape' => 'VolumeStatusEventsList', 'locationName' => 'eventsSet', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'VolumeStatus' => [ 'shape' => 'VolumeStatusInfo', 'locationName' => 'volumeStatus', ], 'AttachmentStatuses' => [ 'shape' => 'VolumeStatusAttachmentStatusList', 'locationName' => 'attachmentStatuses', ], ], ], 'VolumeStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeStatusItem', 'locationName' => 'item', ], ], 'VolumeStatusName' => [ 'type' => 'string', 'enum' => [ 'io-enabled', 'io-performance', ], ], 'VolumeType' => [ 'type' => 'string', 'enum' => [ 'standard', 'io1', 'io2', 'gp2', 'sc1', 'st1', 'gp3', ], ], 'Vpc' => [ 'type' => 'structure', 'members' => [ 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'DhcpOptionsId' => [ 'shape' => 'String', 'locationName' => 'dhcpOptionsId', ], 'State' => [ 'shape' => 'VpcState', 'locationName' => 'state', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'InstanceTenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'instanceTenancy', ], 'Ipv6CidrBlockAssociationSet' => [ 'shape' => 'VpcIpv6CidrBlockAssociationSet', 'locationName' => 'ipv6CidrBlockAssociationSet', ], 'CidrBlockAssociationSet' => [ 'shape' => 'VpcCidrBlockAssociationSet', 'locationName' => 'cidrBlockAssociationSet', ], 'IsDefault' => [ 'shape' => 'Boolean', 'locationName' => 'isDefault', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'VpcAttachment' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'AttachmentStatus', 'locationName' => 'state', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'VpcAttachmentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcAttachment', 'locationName' => 'item', ], ], 'VpcAttributeName' => [ 'type' => 'string', 'enum' => [ 'enableDnsSupport', 'enableDnsHostnames', 'enableNetworkAddressUsageMetrics', ], ], 'VpcCidrAssociationId' => [ 'type' => 'string', ], 'VpcCidrBlockAssociation' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'CidrBlockState' => [ 'shape' => 'VpcCidrBlockState', 'locationName' => 'cidrBlockState', ], ], ], 'VpcCidrBlockAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcCidrBlockAssociation', 'locationName' => 'item', ], ], 'VpcCidrBlockState' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'VpcCidrBlockStateCode', 'locationName' => 'state', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], ], ], 'VpcCidrBlockStateCode' => [ 'type' => 'string', 'enum' => [ 'associating', 'associated', 'disassociating', 'disassociated', 'failing', 'failed', ], ], 'VpcClassicLink' => [ 'type' => 'structure', 'members' => [ 'ClassicLinkEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'classicLinkEnabled', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'VpcClassicLinkIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcId', 'locationName' => 'VpcId', ], ], 'VpcClassicLinkList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcClassicLink', 'locationName' => 'item', ], ], 'VpcEndpoint' => [ 'type' => 'structure', 'members' => [ 'VpcEndpointId' => [ 'shape' => 'String', 'locationName' => 'vpcEndpointId', ], 'VpcEndpointType' => [ 'shape' => 'VpcEndpointType', 'locationName' => 'vpcEndpointType', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'ServiceName' => [ 'shape' => 'String', 'locationName' => 'serviceName', ], 'State' => [ 'shape' => 'State', 'locationName' => 'state', ], 'PolicyDocument' => [ 'shape' => 'String', 'locationName' => 'policyDocument', ], 'RouteTableIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'routeTableIdSet', ], 'SubnetIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'subnetIdSet', ], 'Groups' => [ 'shape' => 'GroupIdentifierSet', 'locationName' => 'groupSet', ], 'IpAddressType' => [ 'shape' => 'IpAddressType', 'locationName' => 'ipAddressType', ], 'DnsOptions' => [ 'shape' => 'DnsOptions', 'locationName' => 'dnsOptions', ], 'PrivateDnsEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'privateDnsEnabled', ], 'RequesterManaged' => [ 'shape' => 'Boolean', 'locationName' => 'requesterManaged', ], 'NetworkInterfaceIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'networkInterfaceIdSet', ], 'DnsEntries' => [ 'shape' => 'DnsEntrySet', 'locationName' => 'dnsEntrySet', ], 'CreationTimestamp' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'creationTimestamp', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'LastError' => [ 'shape' => 'LastError', 'locationName' => 'lastError', ], ], ], 'VpcEndpointConnection' => [ 'type' => 'structure', 'members' => [ 'ServiceId' => [ 'shape' => 'String', 'locationName' => 'serviceId', ], 'VpcEndpointId' => [ 'shape' => 'String', 'locationName' => 'vpcEndpointId', ], 'VpcEndpointOwner' => [ 'shape' => 'String', 'locationName' => 'vpcEndpointOwner', ], 'VpcEndpointState' => [ 'shape' => 'State', 'locationName' => 'vpcEndpointState', ], 'CreationTimestamp' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'creationTimestamp', ], 'DnsEntries' => [ 'shape' => 'DnsEntrySet', 'locationName' => 'dnsEntrySet', ], 'NetworkLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'networkLoadBalancerArnSet', ], 'GatewayLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'gatewayLoadBalancerArnSet', ], 'IpAddressType' => [ 'shape' => 'IpAddressType', 'locationName' => 'ipAddressType', ], 'VpcEndpointConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcEndpointConnectionId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'VpcEndpointConnectionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcEndpointConnection', 'locationName' => 'item', ], ], 'VpcEndpointId' => [ 'type' => 'string', ], 'VpcEndpointIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcEndpointId', 'locationName' => 'item', ], ], 'VpcEndpointRouteTableIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RouteTableId', 'locationName' => 'item', ], ], 'VpcEndpointSecurityGroupIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'item', ], ], 'VpcEndpointServiceId' => [ 'type' => 'string', ], 'VpcEndpointServiceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcEndpointServiceId', 'locationName' => 'item', ], ], 'VpcEndpointSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcEndpoint', 'locationName' => 'item', ], ], 'VpcEndpointSubnetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetId', 'locationName' => 'item', ], ], 'VpcEndpointType' => [ 'type' => 'string', 'enum' => [ 'Interface', 'Gateway', 'GatewayLoadBalancer', ], ], 'VpcFlowLogId' => [ 'type' => 'string', ], 'VpcId' => [ 'type' => 'string', ], 'VpcIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcId', 'locationName' => 'VpcId', ], ], 'VpcIpv6CidrBlockAssociation' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'Ipv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'ipv6CidrBlock', ], 'Ipv6CidrBlockState' => [ 'shape' => 'VpcCidrBlockState', 'locationName' => 'ipv6CidrBlockState', ], 'NetworkBorderGroup' => [ 'shape' => 'String', 'locationName' => 'networkBorderGroup', ], 'Ipv6Pool' => [ 'shape' => 'String', 'locationName' => 'ipv6Pool', ], ], ], 'VpcIpv6CidrBlockAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcIpv6CidrBlockAssociation', 'locationName' => 'item', ], ], 'VpcList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Vpc', 'locationName' => 'item', ], ], 'VpcPeeringConnection' => [ 'type' => 'structure', 'members' => [ 'AccepterVpcInfo' => [ 'shape' => 'VpcPeeringConnectionVpcInfo', 'locationName' => 'accepterVpcInfo', ], 'ExpirationTime' => [ 'shape' => 'DateTime', 'locationName' => 'expirationTime', ], 'RequesterVpcInfo' => [ 'shape' => 'VpcPeeringConnectionVpcInfo', 'locationName' => 'requesterVpcInfo', ], 'Status' => [ 'shape' => 'VpcPeeringConnectionStateReason', 'locationName' => 'status', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], ], ], 'VpcPeeringConnectionId' => [ 'type' => 'string', ], 'VpcPeeringConnectionIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcPeeringConnectionId', 'locationName' => 'item', ], ], 'VpcPeeringConnectionIdWithResolver' => [ 'type' => 'string', ], 'VpcPeeringConnectionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcPeeringConnection', 'locationName' => 'item', ], ], 'VpcPeeringConnectionOptionsDescription' => [ 'type' => 'structure', 'members' => [ 'AllowDnsResolutionFromRemoteVpc' => [ 'shape' => 'Boolean', 'locationName' => 'allowDnsResolutionFromRemoteVpc', ], 'AllowEgressFromLocalClassicLinkToRemoteVpc' => [ 'shape' => 'Boolean', 'locationName' => 'allowEgressFromLocalClassicLinkToRemoteVpc', ], 'AllowEgressFromLocalVpcToRemoteClassicLink' => [ 'shape' => 'Boolean', 'locationName' => 'allowEgressFromLocalVpcToRemoteClassicLink', ], ], ], 'VpcPeeringConnectionStateReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'VpcPeeringConnectionStateReasonCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'VpcPeeringConnectionStateReasonCode' => [ 'type' => 'string', 'enum' => [ 'initiating-request', 'pending-acceptance', 'active', 'deleted', 'rejected', 'failed', 'expired', 'provisioning', 'deleting', ], ], 'VpcPeeringConnectionVpcInfo' => [ 'type' => 'structure', 'members' => [ 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'Ipv6CidrBlockSet' => [ 'shape' => 'Ipv6CidrBlockSet', 'locationName' => 'ipv6CidrBlockSet', ], 'CidrBlockSet' => [ 'shape' => 'CidrBlockSet', 'locationName' => 'cidrBlockSet', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'PeeringOptions' => [ 'shape' => 'VpcPeeringConnectionOptionsDescription', 'locationName' => 'peeringOptions', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'Region' => [ 'shape' => 'String', 'locationName' => 'region', ], ], ], 'VpcState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', ], ], 'VpcTenancy' => [ 'type' => 'string', 'enum' => [ 'default', ], ], 'VpnConnection' => [ 'type' => 'structure', 'members' => [ 'CustomerGatewayConfiguration' => [ 'shape' => 'customerGatewayConfiguration', 'locationName' => 'customerGatewayConfiguration', ], 'CustomerGatewayId' => [ 'shape' => 'String', 'locationName' => 'customerGatewayId', ], 'Category' => [ 'shape' => 'String', 'locationName' => 'category', ], 'State' => [ 'shape' => 'VpnState', 'locationName' => 'state', ], 'Type' => [ 'shape' => 'GatewayType', 'locationName' => 'type', ], 'VpnConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpnConnectionId', ], 'VpnGatewayId' => [ 'shape' => 'String', 'locationName' => 'vpnGatewayId', ], 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'CoreNetworkArn' => [ 'shape' => 'String', 'locationName' => 'coreNetworkArn', ], 'CoreNetworkAttachmentArn' => [ 'shape' => 'String', 'locationName' => 'coreNetworkAttachmentArn', ], 'GatewayAssociationState' => [ 'shape' => 'GatewayAssociationState', 'locationName' => 'gatewayAssociationState', ], 'Options' => [ 'shape' => 'VpnConnectionOptions', 'locationName' => 'options', ], 'Routes' => [ 'shape' => 'VpnStaticRouteList', 'locationName' => 'routes', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VgwTelemetry' => [ 'shape' => 'VgwTelemetryList', 'locationName' => 'vgwTelemetry', ], ], ], 'VpnConnectionDeviceSampleConfiguration' => [ 'type' => 'string', 'sensitive' => true, ], 'VpnConnectionDeviceType' => [ 'type' => 'structure', 'members' => [ 'VpnConnectionDeviceTypeId' => [ 'shape' => 'String', 'locationName' => 'vpnConnectionDeviceTypeId', ], 'Vendor' => [ 'shape' => 'String', 'locationName' => 'vendor', ], 'Platform' => [ 'shape' => 'String', 'locationName' => 'platform', ], 'Software' => [ 'shape' => 'String', 'locationName' => 'software', ], ], ], 'VpnConnectionDeviceTypeId' => [ 'type' => 'string', ], 'VpnConnectionDeviceTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpnConnectionDeviceType', 'locationName' => 'item', ], ], 'VpnConnectionId' => [ 'type' => 'string', ], 'VpnConnectionIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpnConnectionId', 'locationName' => 'VpnConnectionId', ], ], 'VpnConnectionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpnConnection', 'locationName' => 'item', ], ], 'VpnConnectionOptions' => [ 'type' => 'structure', 'members' => [ 'EnableAcceleration' => [ 'shape' => 'Boolean', 'locationName' => 'enableAcceleration', ], 'StaticRoutesOnly' => [ 'shape' => 'Boolean', 'locationName' => 'staticRoutesOnly', ], 'LocalIpv4NetworkCidr' => [ 'shape' => 'String', 'locationName' => 'localIpv4NetworkCidr', ], 'RemoteIpv4NetworkCidr' => [ 'shape' => 'String', 'locationName' => 'remoteIpv4NetworkCidr', ], 'LocalIpv6NetworkCidr' => [ 'shape' => 'String', 'locationName' => 'localIpv6NetworkCidr', ], 'RemoteIpv6NetworkCidr' => [ 'shape' => 'String', 'locationName' => 'remoteIpv6NetworkCidr', ], 'OutsideIpAddressType' => [ 'shape' => 'String', 'locationName' => 'outsideIpAddressType', ], 'TransportTransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transportTransitGatewayAttachmentId', ], 'TunnelInsideIpVersion' => [ 'shape' => 'TunnelInsideIpVersion', 'locationName' => 'tunnelInsideIpVersion', ], 'TunnelOptions' => [ 'shape' => 'TunnelOptionsList', 'locationName' => 'tunnelOptionSet', ], ], ], 'VpnConnectionOptionsSpecification' => [ 'type' => 'structure', 'members' => [ 'EnableAcceleration' => [ 'shape' => 'Boolean', ], 'StaticRoutesOnly' => [ 'shape' => 'Boolean', 'locationName' => 'staticRoutesOnly', ], 'TunnelInsideIpVersion' => [ 'shape' => 'TunnelInsideIpVersion', ], 'TunnelOptions' => [ 'shape' => 'VpnTunnelOptionsSpecificationsList', ], 'LocalIpv4NetworkCidr' => [ 'shape' => 'String', ], 'RemoteIpv4NetworkCidr' => [ 'shape' => 'String', ], 'LocalIpv6NetworkCidr' => [ 'shape' => 'String', ], 'RemoteIpv6NetworkCidr' => [ 'shape' => 'String', ], 'OutsideIpAddressType' => [ 'shape' => 'String', ], 'TransportTransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], ], ], 'VpnEcmpSupportValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'VpnGateway' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'State' => [ 'shape' => 'VpnState', 'locationName' => 'state', ], 'Type' => [ 'shape' => 'GatewayType', 'locationName' => 'type', ], 'VpcAttachments' => [ 'shape' => 'VpcAttachmentList', 'locationName' => 'attachments', ], 'VpnGatewayId' => [ 'shape' => 'String', 'locationName' => 'vpnGatewayId', ], 'AmazonSideAsn' => [ 'shape' => 'Long', 'locationName' => 'amazonSideAsn', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'VpnGatewayId' => [ 'type' => 'string', ], 'VpnGatewayIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpnGatewayId', 'locationName' => 'VpnGatewayId', ], ], 'VpnGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpnGateway', 'locationName' => 'item', ], ], 'VpnProtocol' => [ 'type' => 'string', 'enum' => [ 'openvpn', ], ], 'VpnState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'deleting', 'deleted', ], ], 'VpnStaticRoute' => [ 'type' => 'structure', 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'Source' => [ 'shape' => 'VpnStaticRouteSource', 'locationName' => 'source', ], 'State' => [ 'shape' => 'VpnState', 'locationName' => 'state', ], ], ], 'VpnStaticRouteList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpnStaticRoute', 'locationName' => 'item', ], ], 'VpnStaticRouteSource' => [ 'type' => 'string', 'enum' => [ 'Static', ], ], 'VpnTunnelLogOptions' => [ 'type' => 'structure', 'members' => [ 'CloudWatchLogOptions' => [ 'shape' => 'CloudWatchLogOptions', 'locationName' => 'cloudWatchLogOptions', ], ], ], 'VpnTunnelLogOptionsSpecification' => [ 'type' => 'structure', 'members' => [ 'CloudWatchLogOptions' => [ 'shape' => 'CloudWatchLogOptionsSpecification', ], ], ], 'VpnTunnelOptionsSpecification' => [ 'type' => 'structure', 'members' => [ 'TunnelInsideCidr' => [ 'shape' => 'String', ], 'TunnelInsideIpv6Cidr' => [ 'shape' => 'String', ], 'PreSharedKey' => [ 'shape' => 'preSharedKey', ], 'Phase1LifetimeSeconds' => [ 'shape' => 'Integer', ], 'Phase2LifetimeSeconds' => [ 'shape' => 'Integer', ], 'RekeyMarginTimeSeconds' => [ 'shape' => 'Integer', ], 'RekeyFuzzPercentage' => [ 'shape' => 'Integer', ], 'ReplayWindowSize' => [ 'shape' => 'Integer', ], 'DPDTimeoutSeconds' => [ 'shape' => 'Integer', ], 'DPDTimeoutAction' => [ 'shape' => 'String', ], 'Phase1EncryptionAlgorithms' => [ 'shape' => 'Phase1EncryptionAlgorithmsRequestList', 'locationName' => 'Phase1EncryptionAlgorithm', ], 'Phase2EncryptionAlgorithms' => [ 'shape' => 'Phase2EncryptionAlgorithmsRequestList', 'locationName' => 'Phase2EncryptionAlgorithm', ], 'Phase1IntegrityAlgorithms' => [ 'shape' => 'Phase1IntegrityAlgorithmsRequestList', 'locationName' => 'Phase1IntegrityAlgorithm', ], 'Phase2IntegrityAlgorithms' => [ 'shape' => 'Phase2IntegrityAlgorithmsRequestList', 'locationName' => 'Phase2IntegrityAlgorithm', ], 'Phase1DHGroupNumbers' => [ 'shape' => 'Phase1DHGroupNumbersRequestList', 'locationName' => 'Phase1DHGroupNumber', ], 'Phase2DHGroupNumbers' => [ 'shape' => 'Phase2DHGroupNumbersRequestList', 'locationName' => 'Phase2DHGroupNumber', ], 'IKEVersions' => [ 'shape' => 'IKEVersionsRequestList', 'locationName' => 'IKEVersion', ], 'StartupAction' => [ 'shape' => 'String', ], 'LogOptions' => [ 'shape' => 'VpnTunnelLogOptionsSpecification', ], 'EnableTunnelLifecycleControl' => [ 'shape' => 'Boolean', ], ], ], 'VpnTunnelOptionsSpecificationsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpnTunnelOptionsSpecification', ], ], 'WeekDay' => [ 'type' => 'string', 'enum' => [ 'sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', ], ], 'WithdrawByoipCidrRequest' => [ 'type' => 'structure', 'required' => [ 'Cidr', ], 'members' => [ 'Cidr' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'WithdrawByoipCidrResult' => [ 'type' => 'structure', 'members' => [ 'ByoipCidr' => [ 'shape' => 'ByoipCidr', 'locationName' => 'byoipCidr', ], ], ], 'ZoneIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ZoneId', ], ], 'ZoneNameStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ZoneName', ], ], 'customerGatewayConfiguration' => [ 'type' => 'string', 'sensitive' => true, ], 'preSharedKey' => [ 'type' => 'string', 'sensitive' => true, ], 'scope' => [ 'type' => 'string', 'enum' => [ 'Availability Zone', 'Region', ], ], 'snapshotTierStatusSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SnapshotTierStatus', 'locationName' => 'item', ], ], 'totalFpgaMemory' => [ 'type' => 'integer', ], 'totalGpuMemory' => [ 'type' => 'integer', ], 'totalInferenceMemory' => [ 'type' => 'integer', ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2016-11-15', 'endpointPrefix' => 'ec2', 'protocol' => 'ec2', 'serviceAbbreviation' => 'Amazon EC2', 'serviceFullName' => 'Amazon Elastic Compute Cloud', 'serviceId' => 'EC2', 'signatureVersion' => 'v4', 'uid' => 'ec2-2016-11-15', 'xmlNamespace' => 'http://ec2.amazonaws.com/doc/2016-11-15', ], 'operations' => [ 'AcceptAddressTransfer' => [ 'name' => 'AcceptAddressTransfer', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AcceptAddressTransferRequest', ], 'output' => [ 'shape' => 'AcceptAddressTransferResult', ], ], 'AcceptReservedInstancesExchangeQuote' => [ 'name' => 'AcceptReservedInstancesExchangeQuote', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AcceptReservedInstancesExchangeQuoteRequest', ], 'output' => [ 'shape' => 'AcceptReservedInstancesExchangeQuoteResult', ], ], 'AcceptTransitGatewayMulticastDomainAssociations' => [ 'name' => 'AcceptTransitGatewayMulticastDomainAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AcceptTransitGatewayMulticastDomainAssociationsRequest', ], 'output' => [ 'shape' => 'AcceptTransitGatewayMulticastDomainAssociationsResult', ], ], 'AcceptTransitGatewayPeeringAttachment' => [ 'name' => 'AcceptTransitGatewayPeeringAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AcceptTransitGatewayPeeringAttachmentRequest', ], 'output' => [ 'shape' => 'AcceptTransitGatewayPeeringAttachmentResult', ], ], 'AcceptTransitGatewayVpcAttachment' => [ 'name' => 'AcceptTransitGatewayVpcAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AcceptTransitGatewayVpcAttachmentRequest', ], 'output' => [ 'shape' => 'AcceptTransitGatewayVpcAttachmentResult', ], ], 'AcceptVpcEndpointConnections' => [ 'name' => 'AcceptVpcEndpointConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AcceptVpcEndpointConnectionsRequest', ], 'output' => [ 'shape' => 'AcceptVpcEndpointConnectionsResult', ], ], 'AcceptVpcPeeringConnection' => [ 'name' => 'AcceptVpcPeeringConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AcceptVpcPeeringConnectionRequest', ], 'output' => [ 'shape' => 'AcceptVpcPeeringConnectionResult', ], ], 'AdvertiseByoipCidr' => [ 'name' => 'AdvertiseByoipCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdvertiseByoipCidrRequest', ], 'output' => [ 'shape' => 'AdvertiseByoipCidrResult', ], ], 'AllocateAddress' => [ 'name' => 'AllocateAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AllocateAddressRequest', ], 'output' => [ 'shape' => 'AllocateAddressResult', ], ], 'AllocateHosts' => [ 'name' => 'AllocateHosts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AllocateHostsRequest', ], 'output' => [ 'shape' => 'AllocateHostsResult', ], ], 'AllocateIpamPoolCidr' => [ 'name' => 'AllocateIpamPoolCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AllocateIpamPoolCidrRequest', ], 'output' => [ 'shape' => 'AllocateIpamPoolCidrResult', ], ], 'ApplySecurityGroupsToClientVpnTargetNetwork' => [ 'name' => 'ApplySecurityGroupsToClientVpnTargetNetwork', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ApplySecurityGroupsToClientVpnTargetNetworkRequest', ], 'output' => [ 'shape' => 'ApplySecurityGroupsToClientVpnTargetNetworkResult', ], ], 'AssignIpv6Addresses' => [ 'name' => 'AssignIpv6Addresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssignIpv6AddressesRequest', ], 'output' => [ 'shape' => 'AssignIpv6AddressesResult', ], ], 'AssignPrivateIpAddresses' => [ 'name' => 'AssignPrivateIpAddresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssignPrivateIpAddressesRequest', ], 'output' => [ 'shape' => 'AssignPrivateIpAddressesResult', ], ], 'AssignPrivateNatGatewayAddress' => [ 'name' => 'AssignPrivateNatGatewayAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssignPrivateNatGatewayAddressRequest', ], 'output' => [ 'shape' => 'AssignPrivateNatGatewayAddressResult', ], ], 'AssociateAddress' => [ 'name' => 'AssociateAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateAddressRequest', ], 'output' => [ 'shape' => 'AssociateAddressResult', ], ], 'AssociateClientVpnTargetNetwork' => [ 'name' => 'AssociateClientVpnTargetNetwork', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateClientVpnTargetNetworkRequest', ], 'output' => [ 'shape' => 'AssociateClientVpnTargetNetworkResult', ], ], 'AssociateDhcpOptions' => [ 'name' => 'AssociateDhcpOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateDhcpOptionsRequest', ], ], 'AssociateEnclaveCertificateIamRole' => [ 'name' => 'AssociateEnclaveCertificateIamRole', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateEnclaveCertificateIamRoleRequest', ], 'output' => [ 'shape' => 'AssociateEnclaveCertificateIamRoleResult', ], ], 'AssociateIamInstanceProfile' => [ 'name' => 'AssociateIamInstanceProfile', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateIamInstanceProfileRequest', ], 'output' => [ 'shape' => 'AssociateIamInstanceProfileResult', ], ], 'AssociateInstanceEventWindow' => [ 'name' => 'AssociateInstanceEventWindow', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateInstanceEventWindowRequest', ], 'output' => [ 'shape' => 'AssociateInstanceEventWindowResult', ], ], 'AssociateIpamByoasn' => [ 'name' => 'AssociateIpamByoasn', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateIpamByoasnRequest', ], 'output' => [ 'shape' => 'AssociateIpamByoasnResult', ], ], 'AssociateIpamResourceDiscovery' => [ 'name' => 'AssociateIpamResourceDiscovery', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateIpamResourceDiscoveryRequest', ], 'output' => [ 'shape' => 'AssociateIpamResourceDiscoveryResult', ], ], 'AssociateNatGatewayAddress' => [ 'name' => 'AssociateNatGatewayAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateNatGatewayAddressRequest', ], 'output' => [ 'shape' => 'AssociateNatGatewayAddressResult', ], ], 'AssociateRouteTable' => [ 'name' => 'AssociateRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateRouteTableRequest', ], 'output' => [ 'shape' => 'AssociateRouteTableResult', ], ], 'AssociateSubnetCidrBlock' => [ 'name' => 'AssociateSubnetCidrBlock', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateSubnetCidrBlockRequest', ], 'output' => [ 'shape' => 'AssociateSubnetCidrBlockResult', ], ], 'AssociateTransitGatewayMulticastDomain' => [ 'name' => 'AssociateTransitGatewayMulticastDomain', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateTransitGatewayMulticastDomainRequest', ], 'output' => [ 'shape' => 'AssociateTransitGatewayMulticastDomainResult', ], ], 'AssociateTransitGatewayPolicyTable' => [ 'name' => 'AssociateTransitGatewayPolicyTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateTransitGatewayPolicyTableRequest', ], 'output' => [ 'shape' => 'AssociateTransitGatewayPolicyTableResult', ], ], 'AssociateTransitGatewayRouteTable' => [ 'name' => 'AssociateTransitGatewayRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateTransitGatewayRouteTableRequest', ], 'output' => [ 'shape' => 'AssociateTransitGatewayRouteTableResult', ], ], 'AssociateTrunkInterface' => [ 'name' => 'AssociateTrunkInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateTrunkInterfaceRequest', ], 'output' => [ 'shape' => 'AssociateTrunkInterfaceResult', ], ], 'AssociateVpcCidrBlock' => [ 'name' => 'AssociateVpcCidrBlock', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateVpcCidrBlockRequest', ], 'output' => [ 'shape' => 'AssociateVpcCidrBlockResult', ], ], 'AttachClassicLinkVpc' => [ 'name' => 'AttachClassicLinkVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AttachClassicLinkVpcRequest', ], 'output' => [ 'shape' => 'AttachClassicLinkVpcResult', ], ], 'AttachInternetGateway' => [ 'name' => 'AttachInternetGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AttachInternetGatewayRequest', ], ], 'AttachNetworkInterface' => [ 'name' => 'AttachNetworkInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AttachNetworkInterfaceRequest', ], 'output' => [ 'shape' => 'AttachNetworkInterfaceResult', ], ], 'AttachVerifiedAccessTrustProvider' => [ 'name' => 'AttachVerifiedAccessTrustProvider', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AttachVerifiedAccessTrustProviderRequest', ], 'output' => [ 'shape' => 'AttachVerifiedAccessTrustProviderResult', ], ], 'AttachVolume' => [ 'name' => 'AttachVolume', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AttachVolumeRequest', ], 'output' => [ 'shape' => 'VolumeAttachment', ], ], 'AttachVpnGateway' => [ 'name' => 'AttachVpnGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AttachVpnGatewayRequest', ], 'output' => [ 'shape' => 'AttachVpnGatewayResult', ], ], 'AuthorizeClientVpnIngress' => [ 'name' => 'AuthorizeClientVpnIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeClientVpnIngressRequest', ], 'output' => [ 'shape' => 'AuthorizeClientVpnIngressResult', ], ], 'AuthorizeSecurityGroupEgress' => [ 'name' => 'AuthorizeSecurityGroupEgress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeSecurityGroupEgressRequest', ], 'output' => [ 'shape' => 'AuthorizeSecurityGroupEgressResult', ], ], 'AuthorizeSecurityGroupIngress' => [ 'name' => 'AuthorizeSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeSecurityGroupIngressRequest', ], 'output' => [ 'shape' => 'AuthorizeSecurityGroupIngressResult', ], ], 'BundleInstance' => [ 'name' => 'BundleInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BundleInstanceRequest', ], 'output' => [ 'shape' => 'BundleInstanceResult', ], ], 'CancelBundleTask' => [ 'name' => 'CancelBundleTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelBundleTaskRequest', ], 'output' => [ 'shape' => 'CancelBundleTaskResult', ], ], 'CancelCapacityReservation' => [ 'name' => 'CancelCapacityReservation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelCapacityReservationRequest', ], 'output' => [ 'shape' => 'CancelCapacityReservationResult', ], ], 'CancelCapacityReservationFleets' => [ 'name' => 'CancelCapacityReservationFleets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelCapacityReservationFleetsRequest', ], 'output' => [ 'shape' => 'CancelCapacityReservationFleetsResult', ], ], 'CancelConversionTask' => [ 'name' => 'CancelConversionTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelConversionRequest', ], ], 'CancelExportTask' => [ 'name' => 'CancelExportTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelExportTaskRequest', ], ], 'CancelImageLaunchPermission' => [ 'name' => 'CancelImageLaunchPermission', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelImageLaunchPermissionRequest', ], 'output' => [ 'shape' => 'CancelImageLaunchPermissionResult', ], ], 'CancelImportTask' => [ 'name' => 'CancelImportTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelImportTaskRequest', ], 'output' => [ 'shape' => 'CancelImportTaskResult', ], ], 'CancelReservedInstancesListing' => [ 'name' => 'CancelReservedInstancesListing', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelReservedInstancesListingRequest', ], 'output' => [ 'shape' => 'CancelReservedInstancesListingResult', ], ], 'CancelSpotFleetRequests' => [ 'name' => 'CancelSpotFleetRequests', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelSpotFleetRequestsRequest', ], 'output' => [ 'shape' => 'CancelSpotFleetRequestsResponse', ], ], 'CancelSpotInstanceRequests' => [ 'name' => 'CancelSpotInstanceRequests', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelSpotInstanceRequestsRequest', ], 'output' => [ 'shape' => 'CancelSpotInstanceRequestsResult', ], ], 'ConfirmProductInstance' => [ 'name' => 'ConfirmProductInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ConfirmProductInstanceRequest', ], 'output' => [ 'shape' => 'ConfirmProductInstanceResult', ], ], 'CopyFpgaImage' => [ 'name' => 'CopyFpgaImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyFpgaImageRequest', ], 'output' => [ 'shape' => 'CopyFpgaImageResult', ], ], 'CopyImage' => [ 'name' => 'CopyImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyImageRequest', ], 'output' => [ 'shape' => 'CopyImageResult', ], ], 'CopySnapshot' => [ 'name' => 'CopySnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopySnapshotRequest', ], 'output' => [ 'shape' => 'CopySnapshotResult', ], ], 'CreateCapacityReservation' => [ 'name' => 'CreateCapacityReservation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCapacityReservationRequest', ], 'output' => [ 'shape' => 'CreateCapacityReservationResult', ], ], 'CreateCapacityReservationFleet' => [ 'name' => 'CreateCapacityReservationFleet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCapacityReservationFleetRequest', ], 'output' => [ 'shape' => 'CreateCapacityReservationFleetResult', ], ], 'CreateCarrierGateway' => [ 'name' => 'CreateCarrierGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCarrierGatewayRequest', ], 'output' => [ 'shape' => 'CreateCarrierGatewayResult', ], ], 'CreateClientVpnEndpoint' => [ 'name' => 'CreateClientVpnEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateClientVpnEndpointRequest', ], 'output' => [ 'shape' => 'CreateClientVpnEndpointResult', ], ], 'CreateClientVpnRoute' => [ 'name' => 'CreateClientVpnRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateClientVpnRouteRequest', ], 'output' => [ 'shape' => 'CreateClientVpnRouteResult', ], ], 'CreateCoipCidr' => [ 'name' => 'CreateCoipCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCoipCidrRequest', ], 'output' => [ 'shape' => 'CreateCoipCidrResult', ], ], 'CreateCoipPool' => [ 'name' => 'CreateCoipPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCoipPoolRequest', ], 'output' => [ 'shape' => 'CreateCoipPoolResult', ], ], 'CreateCustomerGateway' => [ 'name' => 'CreateCustomerGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCustomerGatewayRequest', ], 'output' => [ 'shape' => 'CreateCustomerGatewayResult', ], ], 'CreateDefaultSubnet' => [ 'name' => 'CreateDefaultSubnet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDefaultSubnetRequest', ], 'output' => [ 'shape' => 'CreateDefaultSubnetResult', ], ], 'CreateDefaultVpc' => [ 'name' => 'CreateDefaultVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDefaultVpcRequest', ], 'output' => [ 'shape' => 'CreateDefaultVpcResult', ], ], 'CreateDhcpOptions' => [ 'name' => 'CreateDhcpOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDhcpOptionsRequest', ], 'output' => [ 'shape' => 'CreateDhcpOptionsResult', ], ], 'CreateEgressOnlyInternetGateway' => [ 'name' => 'CreateEgressOnlyInternetGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateEgressOnlyInternetGatewayRequest', ], 'output' => [ 'shape' => 'CreateEgressOnlyInternetGatewayResult', ], ], 'CreateFleet' => [ 'name' => 'CreateFleet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateFleetRequest', ], 'output' => [ 'shape' => 'CreateFleetResult', ], ], 'CreateFlowLogs' => [ 'name' => 'CreateFlowLogs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateFlowLogsRequest', ], 'output' => [ 'shape' => 'CreateFlowLogsResult', ], ], 'CreateFpgaImage' => [ 'name' => 'CreateFpgaImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateFpgaImageRequest', ], 'output' => [ 'shape' => 'CreateFpgaImageResult', ], ], 'CreateImage' => [ 'name' => 'CreateImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateImageRequest', ], 'output' => [ 'shape' => 'CreateImageResult', ], ], 'CreateInstanceConnectEndpoint' => [ 'name' => 'CreateInstanceConnectEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateInstanceConnectEndpointRequest', ], 'output' => [ 'shape' => 'CreateInstanceConnectEndpointResult', ], ], 'CreateInstanceEventWindow' => [ 'name' => 'CreateInstanceEventWindow', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateInstanceEventWindowRequest', ], 'output' => [ 'shape' => 'CreateInstanceEventWindowResult', ], ], 'CreateInstanceExportTask' => [ 'name' => 'CreateInstanceExportTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateInstanceExportTaskRequest', ], 'output' => [ 'shape' => 'CreateInstanceExportTaskResult', ], ], 'CreateInternetGateway' => [ 'name' => 'CreateInternetGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateInternetGatewayRequest', ], 'output' => [ 'shape' => 'CreateInternetGatewayResult', ], ], 'CreateIpam' => [ 'name' => 'CreateIpam', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateIpamRequest', ], 'output' => [ 'shape' => 'CreateIpamResult', ], ], 'CreateIpamPool' => [ 'name' => 'CreateIpamPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateIpamPoolRequest', ], 'output' => [ 'shape' => 'CreateIpamPoolResult', ], ], 'CreateIpamResourceDiscovery' => [ 'name' => 'CreateIpamResourceDiscovery', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateIpamResourceDiscoveryRequest', ], 'output' => [ 'shape' => 'CreateIpamResourceDiscoveryResult', ], ], 'CreateIpamScope' => [ 'name' => 'CreateIpamScope', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateIpamScopeRequest', ], 'output' => [ 'shape' => 'CreateIpamScopeResult', ], ], 'CreateKeyPair' => [ 'name' => 'CreateKeyPair', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateKeyPairRequest', ], 'output' => [ 'shape' => 'KeyPair', ], ], 'CreateLaunchTemplate' => [ 'name' => 'CreateLaunchTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateLaunchTemplateRequest', ], 'output' => [ 'shape' => 'CreateLaunchTemplateResult', ], ], 'CreateLaunchTemplateVersion' => [ 'name' => 'CreateLaunchTemplateVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateLaunchTemplateVersionRequest', ], 'output' => [ 'shape' => 'CreateLaunchTemplateVersionResult', ], ], 'CreateLocalGatewayRoute' => [ 'name' => 'CreateLocalGatewayRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateLocalGatewayRouteRequest', ], 'output' => [ 'shape' => 'CreateLocalGatewayRouteResult', ], ], 'CreateLocalGatewayRouteTable' => [ 'name' => 'CreateLocalGatewayRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateLocalGatewayRouteTableRequest', ], 'output' => [ 'shape' => 'CreateLocalGatewayRouteTableResult', ], ], 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation' => [ 'name' => 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest', ], 'output' => [ 'shape' => 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult', ], ], 'CreateLocalGatewayRouteTableVpcAssociation' => [ 'name' => 'CreateLocalGatewayRouteTableVpcAssociation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateLocalGatewayRouteTableVpcAssociationRequest', ], 'output' => [ 'shape' => 'CreateLocalGatewayRouteTableVpcAssociationResult', ], ], 'CreateManagedPrefixList' => [ 'name' => 'CreateManagedPrefixList', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateManagedPrefixListRequest', ], 'output' => [ 'shape' => 'CreateManagedPrefixListResult', ], ], 'CreateNatGateway' => [ 'name' => 'CreateNatGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNatGatewayRequest', ], 'output' => [ 'shape' => 'CreateNatGatewayResult', ], ], 'CreateNetworkAcl' => [ 'name' => 'CreateNetworkAcl', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNetworkAclRequest', ], 'output' => [ 'shape' => 'CreateNetworkAclResult', ], ], 'CreateNetworkAclEntry' => [ 'name' => 'CreateNetworkAclEntry', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNetworkAclEntryRequest', ], ], 'CreateNetworkInsightsAccessScope' => [ 'name' => 'CreateNetworkInsightsAccessScope', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNetworkInsightsAccessScopeRequest', ], 'output' => [ 'shape' => 'CreateNetworkInsightsAccessScopeResult', ], ], 'CreateNetworkInsightsPath' => [ 'name' => 'CreateNetworkInsightsPath', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNetworkInsightsPathRequest', ], 'output' => [ 'shape' => 'CreateNetworkInsightsPathResult', ], ], 'CreateNetworkInterface' => [ 'name' => 'CreateNetworkInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNetworkInterfaceRequest', ], 'output' => [ 'shape' => 'CreateNetworkInterfaceResult', ], ], 'CreateNetworkInterfacePermission' => [ 'name' => 'CreateNetworkInterfacePermission', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNetworkInterfacePermissionRequest', ], 'output' => [ 'shape' => 'CreateNetworkInterfacePermissionResult', ], ], 'CreatePlacementGroup' => [ 'name' => 'CreatePlacementGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreatePlacementGroupRequest', ], 'output' => [ 'shape' => 'CreatePlacementGroupResult', ], ], 'CreatePublicIpv4Pool' => [ 'name' => 'CreatePublicIpv4Pool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreatePublicIpv4PoolRequest', ], 'output' => [ 'shape' => 'CreatePublicIpv4PoolResult', ], ], 'CreateReplaceRootVolumeTask' => [ 'name' => 'CreateReplaceRootVolumeTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateReplaceRootVolumeTaskRequest', ], 'output' => [ 'shape' => 'CreateReplaceRootVolumeTaskResult', ], ], 'CreateReservedInstancesListing' => [ 'name' => 'CreateReservedInstancesListing', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateReservedInstancesListingRequest', ], 'output' => [ 'shape' => 'CreateReservedInstancesListingResult', ], ], 'CreateRestoreImageTask' => [ 'name' => 'CreateRestoreImageTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateRestoreImageTaskRequest', ], 'output' => [ 'shape' => 'CreateRestoreImageTaskResult', ], ], 'CreateRoute' => [ 'name' => 'CreateRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateRouteRequest', ], 'output' => [ 'shape' => 'CreateRouteResult', ], ], 'CreateRouteTable' => [ 'name' => 'CreateRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateRouteTableRequest', ], 'output' => [ 'shape' => 'CreateRouteTableResult', ], ], 'CreateSecurityGroup' => [ 'name' => 'CreateSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSecurityGroupRequest', ], 'output' => [ 'shape' => 'CreateSecurityGroupResult', ], ], 'CreateSnapshot' => [ 'name' => 'CreateSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSnapshotRequest', ], 'output' => [ 'shape' => 'Snapshot', ], ], 'CreateSnapshots' => [ 'name' => 'CreateSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSnapshotsRequest', ], 'output' => [ 'shape' => 'CreateSnapshotsResult', ], ], 'CreateSpotDatafeedSubscription' => [ 'name' => 'CreateSpotDatafeedSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSpotDatafeedSubscriptionRequest', ], 'output' => [ 'shape' => 'CreateSpotDatafeedSubscriptionResult', ], ], 'CreateStoreImageTask' => [ 'name' => 'CreateStoreImageTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateStoreImageTaskRequest', ], 'output' => [ 'shape' => 'CreateStoreImageTaskResult', ], ], 'CreateSubnet' => [ 'name' => 'CreateSubnet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSubnetRequest', ], 'output' => [ 'shape' => 'CreateSubnetResult', ], ], 'CreateSubnetCidrReservation' => [ 'name' => 'CreateSubnetCidrReservation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSubnetCidrReservationRequest', ], 'output' => [ 'shape' => 'CreateSubnetCidrReservationResult', ], ], 'CreateTags' => [ 'name' => 'CreateTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTagsRequest', ], ], 'CreateTrafficMirrorFilter' => [ 'name' => 'CreateTrafficMirrorFilter', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTrafficMirrorFilterRequest', ], 'output' => [ 'shape' => 'CreateTrafficMirrorFilterResult', ], ], 'CreateTrafficMirrorFilterRule' => [ 'name' => 'CreateTrafficMirrorFilterRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTrafficMirrorFilterRuleRequest', ], 'output' => [ 'shape' => 'CreateTrafficMirrorFilterRuleResult', ], ], 'CreateTrafficMirrorSession' => [ 'name' => 'CreateTrafficMirrorSession', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTrafficMirrorSessionRequest', ], 'output' => [ 'shape' => 'CreateTrafficMirrorSessionResult', ], ], 'CreateTrafficMirrorTarget' => [ 'name' => 'CreateTrafficMirrorTarget', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTrafficMirrorTargetRequest', ], 'output' => [ 'shape' => 'CreateTrafficMirrorTargetResult', ], ], 'CreateTransitGateway' => [ 'name' => 'CreateTransitGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayResult', ], ], 'CreateTransitGatewayConnect' => [ 'name' => 'CreateTransitGatewayConnect', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayConnectRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayConnectResult', ], ], 'CreateTransitGatewayConnectPeer' => [ 'name' => 'CreateTransitGatewayConnectPeer', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayConnectPeerRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayConnectPeerResult', ], ], 'CreateTransitGatewayMulticastDomain' => [ 'name' => 'CreateTransitGatewayMulticastDomain', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayMulticastDomainRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayMulticastDomainResult', ], ], 'CreateTransitGatewayPeeringAttachment' => [ 'name' => 'CreateTransitGatewayPeeringAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayPeeringAttachmentRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayPeeringAttachmentResult', ], ], 'CreateTransitGatewayPolicyTable' => [ 'name' => 'CreateTransitGatewayPolicyTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayPolicyTableRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayPolicyTableResult', ], ], 'CreateTransitGatewayPrefixListReference' => [ 'name' => 'CreateTransitGatewayPrefixListReference', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayPrefixListReferenceRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayPrefixListReferenceResult', ], ], 'CreateTransitGatewayRoute' => [ 'name' => 'CreateTransitGatewayRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayRouteRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayRouteResult', ], ], 'CreateTransitGatewayRouteTable' => [ 'name' => 'CreateTransitGatewayRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayRouteTableRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayRouteTableResult', ], ], 'CreateTransitGatewayRouteTableAnnouncement' => [ 'name' => 'CreateTransitGatewayRouteTableAnnouncement', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayRouteTableAnnouncementRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayRouteTableAnnouncementResult', ], ], 'CreateTransitGatewayVpcAttachment' => [ 'name' => 'CreateTransitGatewayVpcAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTransitGatewayVpcAttachmentRequest', ], 'output' => [ 'shape' => 'CreateTransitGatewayVpcAttachmentResult', ], ], 'CreateVerifiedAccessEndpoint' => [ 'name' => 'CreateVerifiedAccessEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVerifiedAccessEndpointRequest', ], 'output' => [ 'shape' => 'CreateVerifiedAccessEndpointResult', ], ], 'CreateVerifiedAccessGroup' => [ 'name' => 'CreateVerifiedAccessGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVerifiedAccessGroupRequest', ], 'output' => [ 'shape' => 'CreateVerifiedAccessGroupResult', ], ], 'CreateVerifiedAccessInstance' => [ 'name' => 'CreateVerifiedAccessInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVerifiedAccessInstanceRequest', ], 'output' => [ 'shape' => 'CreateVerifiedAccessInstanceResult', ], ], 'CreateVerifiedAccessTrustProvider' => [ 'name' => 'CreateVerifiedAccessTrustProvider', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVerifiedAccessTrustProviderRequest', ], 'output' => [ 'shape' => 'CreateVerifiedAccessTrustProviderResult', ], ], 'CreateVolume' => [ 'name' => 'CreateVolume', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVolumeRequest', ], 'output' => [ 'shape' => 'Volume', ], ], 'CreateVpc' => [ 'name' => 'CreateVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpcRequest', ], 'output' => [ 'shape' => 'CreateVpcResult', ], ], 'CreateVpcEndpoint' => [ 'name' => 'CreateVpcEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpcEndpointRequest', ], 'output' => [ 'shape' => 'CreateVpcEndpointResult', ], ], 'CreateVpcEndpointConnectionNotification' => [ 'name' => 'CreateVpcEndpointConnectionNotification', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpcEndpointConnectionNotificationRequest', ], 'output' => [ 'shape' => 'CreateVpcEndpointConnectionNotificationResult', ], ], 'CreateVpcEndpointServiceConfiguration' => [ 'name' => 'CreateVpcEndpointServiceConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpcEndpointServiceConfigurationRequest', ], 'output' => [ 'shape' => 'CreateVpcEndpointServiceConfigurationResult', ], ], 'CreateVpcPeeringConnection' => [ 'name' => 'CreateVpcPeeringConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpcPeeringConnectionRequest', ], 'output' => [ 'shape' => 'CreateVpcPeeringConnectionResult', ], ], 'CreateVpnConnection' => [ 'name' => 'CreateVpnConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpnConnectionRequest', ], 'output' => [ 'shape' => 'CreateVpnConnectionResult', ], ], 'CreateVpnConnectionRoute' => [ 'name' => 'CreateVpnConnectionRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpnConnectionRouteRequest', ], ], 'CreateVpnGateway' => [ 'name' => 'CreateVpnGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpnGatewayRequest', ], 'output' => [ 'shape' => 'CreateVpnGatewayResult', ], ], 'DeleteCarrierGateway' => [ 'name' => 'DeleteCarrierGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCarrierGatewayRequest', ], 'output' => [ 'shape' => 'DeleteCarrierGatewayResult', ], ], 'DeleteClientVpnEndpoint' => [ 'name' => 'DeleteClientVpnEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteClientVpnEndpointRequest', ], 'output' => [ 'shape' => 'DeleteClientVpnEndpointResult', ], ], 'DeleteClientVpnRoute' => [ 'name' => 'DeleteClientVpnRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteClientVpnRouteRequest', ], 'output' => [ 'shape' => 'DeleteClientVpnRouteResult', ], ], 'DeleteCoipCidr' => [ 'name' => 'DeleteCoipCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCoipCidrRequest', ], 'output' => [ 'shape' => 'DeleteCoipCidrResult', ], ], 'DeleteCoipPool' => [ 'name' => 'DeleteCoipPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCoipPoolRequest', ], 'output' => [ 'shape' => 'DeleteCoipPoolResult', ], ], 'DeleteCustomerGateway' => [ 'name' => 'DeleteCustomerGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCustomerGatewayRequest', ], ], 'DeleteDhcpOptions' => [ 'name' => 'DeleteDhcpOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDhcpOptionsRequest', ], ], 'DeleteEgressOnlyInternetGateway' => [ 'name' => 'DeleteEgressOnlyInternetGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteEgressOnlyInternetGatewayRequest', ], 'output' => [ 'shape' => 'DeleteEgressOnlyInternetGatewayResult', ], ], 'DeleteFleets' => [ 'name' => 'DeleteFleets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteFleetsRequest', ], 'output' => [ 'shape' => 'DeleteFleetsResult', ], ], 'DeleteFlowLogs' => [ 'name' => 'DeleteFlowLogs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteFlowLogsRequest', ], 'output' => [ 'shape' => 'DeleteFlowLogsResult', ], ], 'DeleteFpgaImage' => [ 'name' => 'DeleteFpgaImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteFpgaImageRequest', ], 'output' => [ 'shape' => 'DeleteFpgaImageResult', ], ], 'DeleteInstanceConnectEndpoint' => [ 'name' => 'DeleteInstanceConnectEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteInstanceConnectEndpointRequest', ], 'output' => [ 'shape' => 'DeleteInstanceConnectEndpointResult', ], ], 'DeleteInstanceEventWindow' => [ 'name' => 'DeleteInstanceEventWindow', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteInstanceEventWindowRequest', ], 'output' => [ 'shape' => 'DeleteInstanceEventWindowResult', ], ], 'DeleteInternetGateway' => [ 'name' => 'DeleteInternetGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteInternetGatewayRequest', ], ], 'DeleteIpam' => [ 'name' => 'DeleteIpam', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteIpamRequest', ], 'output' => [ 'shape' => 'DeleteIpamResult', ], ], 'DeleteIpamPool' => [ 'name' => 'DeleteIpamPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteIpamPoolRequest', ], 'output' => [ 'shape' => 'DeleteIpamPoolResult', ], ], 'DeleteIpamResourceDiscovery' => [ 'name' => 'DeleteIpamResourceDiscovery', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteIpamResourceDiscoveryRequest', ], 'output' => [ 'shape' => 'DeleteIpamResourceDiscoveryResult', ], ], 'DeleteIpamScope' => [ 'name' => 'DeleteIpamScope', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteIpamScopeRequest', ], 'output' => [ 'shape' => 'DeleteIpamScopeResult', ], ], 'DeleteKeyPair' => [ 'name' => 'DeleteKeyPair', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteKeyPairRequest', ], 'output' => [ 'shape' => 'DeleteKeyPairResult', ], ], 'DeleteLaunchTemplate' => [ 'name' => 'DeleteLaunchTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteLaunchTemplateRequest', ], 'output' => [ 'shape' => 'DeleteLaunchTemplateResult', ], ], 'DeleteLaunchTemplateVersions' => [ 'name' => 'DeleteLaunchTemplateVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteLaunchTemplateVersionsRequest', ], 'output' => [ 'shape' => 'DeleteLaunchTemplateVersionsResult', ], ], 'DeleteLocalGatewayRoute' => [ 'name' => 'DeleteLocalGatewayRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteLocalGatewayRouteRequest', ], 'output' => [ 'shape' => 'DeleteLocalGatewayRouteResult', ], ], 'DeleteLocalGatewayRouteTable' => [ 'name' => 'DeleteLocalGatewayRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteLocalGatewayRouteTableRequest', ], 'output' => [ 'shape' => 'DeleteLocalGatewayRouteTableResult', ], ], 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation' => [ 'name' => 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest', ], 'output' => [ 'shape' => 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult', ], ], 'DeleteLocalGatewayRouteTableVpcAssociation' => [ 'name' => 'DeleteLocalGatewayRouteTableVpcAssociation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteLocalGatewayRouteTableVpcAssociationRequest', ], 'output' => [ 'shape' => 'DeleteLocalGatewayRouteTableVpcAssociationResult', ], ], 'DeleteManagedPrefixList' => [ 'name' => 'DeleteManagedPrefixList', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteManagedPrefixListRequest', ], 'output' => [ 'shape' => 'DeleteManagedPrefixListResult', ], ], 'DeleteNatGateway' => [ 'name' => 'DeleteNatGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNatGatewayRequest', ], 'output' => [ 'shape' => 'DeleteNatGatewayResult', ], ], 'DeleteNetworkAcl' => [ 'name' => 'DeleteNetworkAcl', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkAclRequest', ], ], 'DeleteNetworkAclEntry' => [ 'name' => 'DeleteNetworkAclEntry', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkAclEntryRequest', ], ], 'DeleteNetworkInsightsAccessScope' => [ 'name' => 'DeleteNetworkInsightsAccessScope', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkInsightsAccessScopeRequest', ], 'output' => [ 'shape' => 'DeleteNetworkInsightsAccessScopeResult', ], ], 'DeleteNetworkInsightsAccessScopeAnalysis' => [ 'name' => 'DeleteNetworkInsightsAccessScopeAnalysis', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkInsightsAccessScopeAnalysisRequest', ], 'output' => [ 'shape' => 'DeleteNetworkInsightsAccessScopeAnalysisResult', ], ], 'DeleteNetworkInsightsAnalysis' => [ 'name' => 'DeleteNetworkInsightsAnalysis', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkInsightsAnalysisRequest', ], 'output' => [ 'shape' => 'DeleteNetworkInsightsAnalysisResult', ], ], 'DeleteNetworkInsightsPath' => [ 'name' => 'DeleteNetworkInsightsPath', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkInsightsPathRequest', ], 'output' => [ 'shape' => 'DeleteNetworkInsightsPathResult', ], ], 'DeleteNetworkInterface' => [ 'name' => 'DeleteNetworkInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkInterfaceRequest', ], ], 'DeleteNetworkInterfacePermission' => [ 'name' => 'DeleteNetworkInterfacePermission', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkInterfacePermissionRequest', ], 'output' => [ 'shape' => 'DeleteNetworkInterfacePermissionResult', ], ], 'DeletePlacementGroup' => [ 'name' => 'DeletePlacementGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeletePlacementGroupRequest', ], ], 'DeletePublicIpv4Pool' => [ 'name' => 'DeletePublicIpv4Pool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeletePublicIpv4PoolRequest', ], 'output' => [ 'shape' => 'DeletePublicIpv4PoolResult', ], ], 'DeleteQueuedReservedInstances' => [ 'name' => 'DeleteQueuedReservedInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteQueuedReservedInstancesRequest', ], 'output' => [ 'shape' => 'DeleteQueuedReservedInstancesResult', ], ], 'DeleteRoute' => [ 'name' => 'DeleteRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteRouteRequest', ], ], 'DeleteRouteTable' => [ 'name' => 'DeleteRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteRouteTableRequest', ], ], 'DeleteSecurityGroup' => [ 'name' => 'DeleteSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSecurityGroupRequest', ], ], 'DeleteSnapshot' => [ 'name' => 'DeleteSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSnapshotRequest', ], ], 'DeleteSpotDatafeedSubscription' => [ 'name' => 'DeleteSpotDatafeedSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSpotDatafeedSubscriptionRequest', ], ], 'DeleteSubnet' => [ 'name' => 'DeleteSubnet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSubnetRequest', ], ], 'DeleteSubnetCidrReservation' => [ 'name' => 'DeleteSubnetCidrReservation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSubnetCidrReservationRequest', ], 'output' => [ 'shape' => 'DeleteSubnetCidrReservationResult', ], ], 'DeleteTags' => [ 'name' => 'DeleteTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTagsRequest', ], ], 'DeleteTrafficMirrorFilter' => [ 'name' => 'DeleteTrafficMirrorFilter', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTrafficMirrorFilterRequest', ], 'output' => [ 'shape' => 'DeleteTrafficMirrorFilterResult', ], ], 'DeleteTrafficMirrorFilterRule' => [ 'name' => 'DeleteTrafficMirrorFilterRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTrafficMirrorFilterRuleRequest', ], 'output' => [ 'shape' => 'DeleteTrafficMirrorFilterRuleResult', ], ], 'DeleteTrafficMirrorSession' => [ 'name' => 'DeleteTrafficMirrorSession', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTrafficMirrorSessionRequest', ], 'output' => [ 'shape' => 'DeleteTrafficMirrorSessionResult', ], ], 'DeleteTrafficMirrorTarget' => [ 'name' => 'DeleteTrafficMirrorTarget', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTrafficMirrorTargetRequest', ], 'output' => [ 'shape' => 'DeleteTrafficMirrorTargetResult', ], ], 'DeleteTransitGateway' => [ 'name' => 'DeleteTransitGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayResult', ], ], 'DeleteTransitGatewayConnect' => [ 'name' => 'DeleteTransitGatewayConnect', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayConnectRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayConnectResult', ], ], 'DeleteTransitGatewayConnectPeer' => [ 'name' => 'DeleteTransitGatewayConnectPeer', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayConnectPeerRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayConnectPeerResult', ], ], 'DeleteTransitGatewayMulticastDomain' => [ 'name' => 'DeleteTransitGatewayMulticastDomain', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayMulticastDomainRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayMulticastDomainResult', ], ], 'DeleteTransitGatewayPeeringAttachment' => [ 'name' => 'DeleteTransitGatewayPeeringAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayPeeringAttachmentRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayPeeringAttachmentResult', ], ], 'DeleteTransitGatewayPolicyTable' => [ 'name' => 'DeleteTransitGatewayPolicyTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayPolicyTableRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayPolicyTableResult', ], ], 'DeleteTransitGatewayPrefixListReference' => [ 'name' => 'DeleteTransitGatewayPrefixListReference', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayPrefixListReferenceRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayPrefixListReferenceResult', ], ], 'DeleteTransitGatewayRoute' => [ 'name' => 'DeleteTransitGatewayRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayRouteRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayRouteResult', ], ], 'DeleteTransitGatewayRouteTable' => [ 'name' => 'DeleteTransitGatewayRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayRouteTableRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayRouteTableResult', ], ], 'DeleteTransitGatewayRouteTableAnnouncement' => [ 'name' => 'DeleteTransitGatewayRouteTableAnnouncement', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayRouteTableAnnouncementRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayRouteTableAnnouncementResult', ], ], 'DeleteTransitGatewayVpcAttachment' => [ 'name' => 'DeleteTransitGatewayVpcAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTransitGatewayVpcAttachmentRequest', ], 'output' => [ 'shape' => 'DeleteTransitGatewayVpcAttachmentResult', ], ], 'DeleteVerifiedAccessEndpoint' => [ 'name' => 'DeleteVerifiedAccessEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVerifiedAccessEndpointRequest', ], 'output' => [ 'shape' => 'DeleteVerifiedAccessEndpointResult', ], ], 'DeleteVerifiedAccessGroup' => [ 'name' => 'DeleteVerifiedAccessGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVerifiedAccessGroupRequest', ], 'output' => [ 'shape' => 'DeleteVerifiedAccessGroupResult', ], ], 'DeleteVerifiedAccessInstance' => [ 'name' => 'DeleteVerifiedAccessInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVerifiedAccessInstanceRequest', ], 'output' => [ 'shape' => 'DeleteVerifiedAccessInstanceResult', ], ], 'DeleteVerifiedAccessTrustProvider' => [ 'name' => 'DeleteVerifiedAccessTrustProvider', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVerifiedAccessTrustProviderRequest', ], 'output' => [ 'shape' => 'DeleteVerifiedAccessTrustProviderResult', ], ], 'DeleteVolume' => [ 'name' => 'DeleteVolume', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVolumeRequest', ], ], 'DeleteVpc' => [ 'name' => 'DeleteVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpcRequest', ], ], 'DeleteVpcEndpointConnectionNotifications' => [ 'name' => 'DeleteVpcEndpointConnectionNotifications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpcEndpointConnectionNotificationsRequest', ], 'output' => [ 'shape' => 'DeleteVpcEndpointConnectionNotificationsResult', ], ], 'DeleteVpcEndpointServiceConfigurations' => [ 'name' => 'DeleteVpcEndpointServiceConfigurations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpcEndpointServiceConfigurationsRequest', ], 'output' => [ 'shape' => 'DeleteVpcEndpointServiceConfigurationsResult', ], ], 'DeleteVpcEndpoints' => [ 'name' => 'DeleteVpcEndpoints', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpcEndpointsRequest', ], 'output' => [ 'shape' => 'DeleteVpcEndpointsResult', ], ], 'DeleteVpcPeeringConnection' => [ 'name' => 'DeleteVpcPeeringConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpcPeeringConnectionRequest', ], 'output' => [ 'shape' => 'DeleteVpcPeeringConnectionResult', ], ], 'DeleteVpnConnection' => [ 'name' => 'DeleteVpnConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpnConnectionRequest', ], ], 'DeleteVpnConnectionRoute' => [ 'name' => 'DeleteVpnConnectionRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpnConnectionRouteRequest', ], ], 'DeleteVpnGateway' => [ 'name' => 'DeleteVpnGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpnGatewayRequest', ], ], 'DeprovisionByoipCidr' => [ 'name' => 'DeprovisionByoipCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeprovisionByoipCidrRequest', ], 'output' => [ 'shape' => 'DeprovisionByoipCidrResult', ], ], 'DeprovisionIpamByoasn' => [ 'name' => 'DeprovisionIpamByoasn', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeprovisionIpamByoasnRequest', ], 'output' => [ 'shape' => 'DeprovisionIpamByoasnResult', ], ], 'DeprovisionIpamPoolCidr' => [ 'name' => 'DeprovisionIpamPoolCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeprovisionIpamPoolCidrRequest', ], 'output' => [ 'shape' => 'DeprovisionIpamPoolCidrResult', ], ], 'DeprovisionPublicIpv4PoolCidr' => [ 'name' => 'DeprovisionPublicIpv4PoolCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeprovisionPublicIpv4PoolCidrRequest', ], 'output' => [ 'shape' => 'DeprovisionPublicIpv4PoolCidrResult', ], ], 'DeregisterImage' => [ 'name' => 'DeregisterImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeregisterImageRequest', ], ], 'DeregisterInstanceEventNotificationAttributes' => [ 'name' => 'DeregisterInstanceEventNotificationAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeregisterInstanceEventNotificationAttributesRequest', ], 'output' => [ 'shape' => 'DeregisterInstanceEventNotificationAttributesResult', ], ], 'DeregisterTransitGatewayMulticastGroupMembers' => [ 'name' => 'DeregisterTransitGatewayMulticastGroupMembers', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeregisterTransitGatewayMulticastGroupMembersRequest', ], 'output' => [ 'shape' => 'DeregisterTransitGatewayMulticastGroupMembersResult', ], ], 'DeregisterTransitGatewayMulticastGroupSources' => [ 'name' => 'DeregisterTransitGatewayMulticastGroupSources', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeregisterTransitGatewayMulticastGroupSourcesRequest', ], 'output' => [ 'shape' => 'DeregisterTransitGatewayMulticastGroupSourcesResult', ], ], 'DescribeAccountAttributes' => [ 'name' => 'DescribeAccountAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAccountAttributesRequest', ], 'output' => [ 'shape' => 'DescribeAccountAttributesResult', ], ], 'DescribeAddressTransfers' => [ 'name' => 'DescribeAddressTransfers', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAddressTransfersRequest', ], 'output' => [ 'shape' => 'DescribeAddressTransfersResult', ], ], 'DescribeAddresses' => [ 'name' => 'DescribeAddresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAddressesRequest', ], 'output' => [ 'shape' => 'DescribeAddressesResult', ], ], 'DescribeAddressesAttribute' => [ 'name' => 'DescribeAddressesAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAddressesAttributeRequest', ], 'output' => [ 'shape' => 'DescribeAddressesAttributeResult', ], ], 'DescribeAggregateIdFormat' => [ 'name' => 'DescribeAggregateIdFormat', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAggregateIdFormatRequest', ], 'output' => [ 'shape' => 'DescribeAggregateIdFormatResult', ], ], 'DescribeAvailabilityZones' => [ 'name' => 'DescribeAvailabilityZones', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAvailabilityZonesRequest', ], 'output' => [ 'shape' => 'DescribeAvailabilityZonesResult', ], ], 'DescribeAwsNetworkPerformanceMetricSubscriptions' => [ 'name' => 'DescribeAwsNetworkPerformanceMetricSubscriptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAwsNetworkPerformanceMetricSubscriptionsRequest', ], 'output' => [ 'shape' => 'DescribeAwsNetworkPerformanceMetricSubscriptionsResult', ], ], 'DescribeBundleTasks' => [ 'name' => 'DescribeBundleTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeBundleTasksRequest', ], 'output' => [ 'shape' => 'DescribeBundleTasksResult', ], ], 'DescribeByoipCidrs' => [ 'name' => 'DescribeByoipCidrs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeByoipCidrsRequest', ], 'output' => [ 'shape' => 'DescribeByoipCidrsResult', ], ], 'DescribeCapacityBlockOfferings' => [ 'name' => 'DescribeCapacityBlockOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCapacityBlockOfferingsRequest', ], 'output' => [ 'shape' => 'DescribeCapacityBlockOfferingsResult', ], ], 'DescribeCapacityReservationFleets' => [ 'name' => 'DescribeCapacityReservationFleets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCapacityReservationFleetsRequest', ], 'output' => [ 'shape' => 'DescribeCapacityReservationFleetsResult', ], ], 'DescribeCapacityReservations' => [ 'name' => 'DescribeCapacityReservations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCapacityReservationsRequest', ], 'output' => [ 'shape' => 'DescribeCapacityReservationsResult', ], ], 'DescribeCarrierGateways' => [ 'name' => 'DescribeCarrierGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCarrierGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeCarrierGatewaysResult', ], ], 'DescribeClassicLinkInstances' => [ 'name' => 'DescribeClassicLinkInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClassicLinkInstancesRequest', ], 'output' => [ 'shape' => 'DescribeClassicLinkInstancesResult', ], ], 'DescribeClientVpnAuthorizationRules' => [ 'name' => 'DescribeClientVpnAuthorizationRules', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClientVpnAuthorizationRulesRequest', ], 'output' => [ 'shape' => 'DescribeClientVpnAuthorizationRulesResult', ], ], 'DescribeClientVpnConnections' => [ 'name' => 'DescribeClientVpnConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClientVpnConnectionsRequest', ], 'output' => [ 'shape' => 'DescribeClientVpnConnectionsResult', ], ], 'DescribeClientVpnEndpoints' => [ 'name' => 'DescribeClientVpnEndpoints', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClientVpnEndpointsRequest', ], 'output' => [ 'shape' => 'DescribeClientVpnEndpointsResult', ], ], 'DescribeClientVpnRoutes' => [ 'name' => 'DescribeClientVpnRoutes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClientVpnRoutesRequest', ], 'output' => [ 'shape' => 'DescribeClientVpnRoutesResult', ], ], 'DescribeClientVpnTargetNetworks' => [ 'name' => 'DescribeClientVpnTargetNetworks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClientVpnTargetNetworksRequest', ], 'output' => [ 'shape' => 'DescribeClientVpnTargetNetworksResult', ], ], 'DescribeCoipPools' => [ 'name' => 'DescribeCoipPools', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCoipPoolsRequest', ], 'output' => [ 'shape' => 'DescribeCoipPoolsResult', ], ], 'DescribeConversionTasks' => [ 'name' => 'DescribeConversionTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConversionTasksRequest', ], 'output' => [ 'shape' => 'DescribeConversionTasksResult', ], ], 'DescribeCustomerGateways' => [ 'name' => 'DescribeCustomerGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCustomerGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeCustomerGatewaysResult', ], ], 'DescribeDhcpOptions' => [ 'name' => 'DescribeDhcpOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDhcpOptionsRequest', ], 'output' => [ 'shape' => 'DescribeDhcpOptionsResult', ], ], 'DescribeEgressOnlyInternetGateways' => [ 'name' => 'DescribeEgressOnlyInternetGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEgressOnlyInternetGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeEgressOnlyInternetGatewaysResult', ], ], 'DescribeElasticGpus' => [ 'name' => 'DescribeElasticGpus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeElasticGpusRequest', ], 'output' => [ 'shape' => 'DescribeElasticGpusResult', ], ], 'DescribeExportImageTasks' => [ 'name' => 'DescribeExportImageTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeExportImageTasksRequest', ], 'output' => [ 'shape' => 'DescribeExportImageTasksResult', ], ], 'DescribeExportTasks' => [ 'name' => 'DescribeExportTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeExportTasksRequest', ], 'output' => [ 'shape' => 'DescribeExportTasksResult', ], ], 'DescribeFastLaunchImages' => [ 'name' => 'DescribeFastLaunchImages', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFastLaunchImagesRequest', ], 'output' => [ 'shape' => 'DescribeFastLaunchImagesResult', ], ], 'DescribeFastSnapshotRestores' => [ 'name' => 'DescribeFastSnapshotRestores', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFastSnapshotRestoresRequest', ], 'output' => [ 'shape' => 'DescribeFastSnapshotRestoresResult', ], ], 'DescribeFleetHistory' => [ 'name' => 'DescribeFleetHistory', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFleetHistoryRequest', ], 'output' => [ 'shape' => 'DescribeFleetHistoryResult', ], ], 'DescribeFleetInstances' => [ 'name' => 'DescribeFleetInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFleetInstancesRequest', ], 'output' => [ 'shape' => 'DescribeFleetInstancesResult', ], ], 'DescribeFleets' => [ 'name' => 'DescribeFleets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFleetsRequest', ], 'output' => [ 'shape' => 'DescribeFleetsResult', ], ], 'DescribeFlowLogs' => [ 'name' => 'DescribeFlowLogs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFlowLogsRequest', ], 'output' => [ 'shape' => 'DescribeFlowLogsResult', ], ], 'DescribeFpgaImageAttribute' => [ 'name' => 'DescribeFpgaImageAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFpgaImageAttributeRequest', ], 'output' => [ 'shape' => 'DescribeFpgaImageAttributeResult', ], ], 'DescribeFpgaImages' => [ 'name' => 'DescribeFpgaImages', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFpgaImagesRequest', ], 'output' => [ 'shape' => 'DescribeFpgaImagesResult', ], ], 'DescribeHostReservationOfferings' => [ 'name' => 'DescribeHostReservationOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeHostReservationOfferingsRequest', ], 'output' => [ 'shape' => 'DescribeHostReservationOfferingsResult', ], ], 'DescribeHostReservations' => [ 'name' => 'DescribeHostReservations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeHostReservationsRequest', ], 'output' => [ 'shape' => 'DescribeHostReservationsResult', ], ], 'DescribeHosts' => [ 'name' => 'DescribeHosts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeHostsRequest', ], 'output' => [ 'shape' => 'DescribeHostsResult', ], ], 'DescribeIamInstanceProfileAssociations' => [ 'name' => 'DescribeIamInstanceProfileAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIamInstanceProfileAssociationsRequest', ], 'output' => [ 'shape' => 'DescribeIamInstanceProfileAssociationsResult', ], ], 'DescribeIdFormat' => [ 'name' => 'DescribeIdFormat', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIdFormatRequest', ], 'output' => [ 'shape' => 'DescribeIdFormatResult', ], ], 'DescribeIdentityIdFormat' => [ 'name' => 'DescribeIdentityIdFormat', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIdentityIdFormatRequest', ], 'output' => [ 'shape' => 'DescribeIdentityIdFormatResult', ], ], 'DescribeImageAttribute' => [ 'name' => 'DescribeImageAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeImageAttributeRequest', ], 'output' => [ 'shape' => 'ImageAttribute', ], ], 'DescribeImages' => [ 'name' => 'DescribeImages', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeImagesRequest', ], 'output' => [ 'shape' => 'DescribeImagesResult', ], ], 'DescribeImportImageTasks' => [ 'name' => 'DescribeImportImageTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeImportImageTasksRequest', ], 'output' => [ 'shape' => 'DescribeImportImageTasksResult', ], ], 'DescribeImportSnapshotTasks' => [ 'name' => 'DescribeImportSnapshotTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeImportSnapshotTasksRequest', ], 'output' => [ 'shape' => 'DescribeImportSnapshotTasksResult', ], ], 'DescribeInstanceAttribute' => [ 'name' => 'DescribeInstanceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceAttributeRequest', ], 'output' => [ 'shape' => 'InstanceAttribute', ], ], 'DescribeInstanceConnectEndpoints' => [ 'name' => 'DescribeInstanceConnectEndpoints', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceConnectEndpointsRequest', ], 'output' => [ 'shape' => 'DescribeInstanceConnectEndpointsResult', ], ], 'DescribeInstanceCreditSpecifications' => [ 'name' => 'DescribeInstanceCreditSpecifications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceCreditSpecificationsRequest', ], 'output' => [ 'shape' => 'DescribeInstanceCreditSpecificationsResult', ], ], 'DescribeInstanceEventNotificationAttributes' => [ 'name' => 'DescribeInstanceEventNotificationAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceEventNotificationAttributesRequest', ], 'output' => [ 'shape' => 'DescribeInstanceEventNotificationAttributesResult', ], ], 'DescribeInstanceEventWindows' => [ 'name' => 'DescribeInstanceEventWindows', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceEventWindowsRequest', ], 'output' => [ 'shape' => 'DescribeInstanceEventWindowsResult', ], ], 'DescribeInstanceStatus' => [ 'name' => 'DescribeInstanceStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceStatusRequest', ], 'output' => [ 'shape' => 'DescribeInstanceStatusResult', ], ], 'DescribeInstanceTopology' => [ 'name' => 'DescribeInstanceTopology', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceTopologyRequest', ], 'output' => [ 'shape' => 'DescribeInstanceTopologyResult', ], ], 'DescribeInstanceTypeOfferings' => [ 'name' => 'DescribeInstanceTypeOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceTypeOfferingsRequest', ], 'output' => [ 'shape' => 'DescribeInstanceTypeOfferingsResult', ], ], 'DescribeInstanceTypes' => [ 'name' => 'DescribeInstanceTypes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceTypesRequest', ], 'output' => [ 'shape' => 'DescribeInstanceTypesResult', ], ], 'DescribeInstances' => [ 'name' => 'DescribeInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstancesRequest', ], 'output' => [ 'shape' => 'DescribeInstancesResult', ], ], 'DescribeInternetGateways' => [ 'name' => 'DescribeInternetGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInternetGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeInternetGatewaysResult', ], ], 'DescribeIpamByoasn' => [ 'name' => 'DescribeIpamByoasn', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIpamByoasnRequest', ], 'output' => [ 'shape' => 'DescribeIpamByoasnResult', ], ], 'DescribeIpamPools' => [ 'name' => 'DescribeIpamPools', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIpamPoolsRequest', ], 'output' => [ 'shape' => 'DescribeIpamPoolsResult', ], ], 'DescribeIpamResourceDiscoveries' => [ 'name' => 'DescribeIpamResourceDiscoveries', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIpamResourceDiscoveriesRequest', ], 'output' => [ 'shape' => 'DescribeIpamResourceDiscoveriesResult', ], ], 'DescribeIpamResourceDiscoveryAssociations' => [ 'name' => 'DescribeIpamResourceDiscoveryAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIpamResourceDiscoveryAssociationsRequest', ], 'output' => [ 'shape' => 'DescribeIpamResourceDiscoveryAssociationsResult', ], ], 'DescribeIpamScopes' => [ 'name' => 'DescribeIpamScopes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIpamScopesRequest', ], 'output' => [ 'shape' => 'DescribeIpamScopesResult', ], ], 'DescribeIpams' => [ 'name' => 'DescribeIpams', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIpamsRequest', ], 'output' => [ 'shape' => 'DescribeIpamsResult', ], ], 'DescribeIpv6Pools' => [ 'name' => 'DescribeIpv6Pools', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIpv6PoolsRequest', ], 'output' => [ 'shape' => 'DescribeIpv6PoolsResult', ], ], 'DescribeKeyPairs' => [ 'name' => 'DescribeKeyPairs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeKeyPairsRequest', ], 'output' => [ 'shape' => 'DescribeKeyPairsResult', ], ], 'DescribeLaunchTemplateVersions' => [ 'name' => 'DescribeLaunchTemplateVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLaunchTemplateVersionsRequest', ], 'output' => [ 'shape' => 'DescribeLaunchTemplateVersionsResult', ], ], 'DescribeLaunchTemplates' => [ 'name' => 'DescribeLaunchTemplates', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLaunchTemplatesRequest', ], 'output' => [ 'shape' => 'DescribeLaunchTemplatesResult', ], ], 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations' => [ 'name' => 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest', ], 'output' => [ 'shape' => 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsResult', ], ], 'DescribeLocalGatewayRouteTableVpcAssociations' => [ 'name' => 'DescribeLocalGatewayRouteTableVpcAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLocalGatewayRouteTableVpcAssociationsRequest', ], 'output' => [ 'shape' => 'DescribeLocalGatewayRouteTableVpcAssociationsResult', ], ], 'DescribeLocalGatewayRouteTables' => [ 'name' => 'DescribeLocalGatewayRouteTables', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLocalGatewayRouteTablesRequest', ], 'output' => [ 'shape' => 'DescribeLocalGatewayRouteTablesResult', ], ], 'DescribeLocalGatewayVirtualInterfaceGroups' => [ 'name' => 'DescribeLocalGatewayVirtualInterfaceGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLocalGatewayVirtualInterfaceGroupsRequest', ], 'output' => [ 'shape' => 'DescribeLocalGatewayVirtualInterfaceGroupsResult', ], ], 'DescribeLocalGatewayVirtualInterfaces' => [ 'name' => 'DescribeLocalGatewayVirtualInterfaces', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLocalGatewayVirtualInterfacesRequest', ], 'output' => [ 'shape' => 'DescribeLocalGatewayVirtualInterfacesResult', ], ], 'DescribeLocalGateways' => [ 'name' => 'DescribeLocalGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLocalGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeLocalGatewaysResult', ], ], 'DescribeLockedSnapshots' => [ 'name' => 'DescribeLockedSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLockedSnapshotsRequest', ], 'output' => [ 'shape' => 'DescribeLockedSnapshotsResult', ], ], 'DescribeManagedPrefixLists' => [ 'name' => 'DescribeManagedPrefixLists', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeManagedPrefixListsRequest', ], 'output' => [ 'shape' => 'DescribeManagedPrefixListsResult', ], ], 'DescribeMovingAddresses' => [ 'name' => 'DescribeMovingAddresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeMovingAddressesRequest', ], 'output' => [ 'shape' => 'DescribeMovingAddressesResult', ], ], 'DescribeNatGateways' => [ 'name' => 'DescribeNatGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNatGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeNatGatewaysResult', ], ], 'DescribeNetworkAcls' => [ 'name' => 'DescribeNetworkAcls', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkAclsRequest', ], 'output' => [ 'shape' => 'DescribeNetworkAclsResult', ], ], 'DescribeNetworkInsightsAccessScopeAnalyses' => [ 'name' => 'DescribeNetworkInsightsAccessScopeAnalyses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkInsightsAccessScopeAnalysesRequest', ], 'output' => [ 'shape' => 'DescribeNetworkInsightsAccessScopeAnalysesResult', ], ], 'DescribeNetworkInsightsAccessScopes' => [ 'name' => 'DescribeNetworkInsightsAccessScopes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkInsightsAccessScopesRequest', ], 'output' => [ 'shape' => 'DescribeNetworkInsightsAccessScopesResult', ], ], 'DescribeNetworkInsightsAnalyses' => [ 'name' => 'DescribeNetworkInsightsAnalyses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkInsightsAnalysesRequest', ], 'output' => [ 'shape' => 'DescribeNetworkInsightsAnalysesResult', ], ], 'DescribeNetworkInsightsPaths' => [ 'name' => 'DescribeNetworkInsightsPaths', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkInsightsPathsRequest', ], 'output' => [ 'shape' => 'DescribeNetworkInsightsPathsResult', ], ], 'DescribeNetworkInterfaceAttribute' => [ 'name' => 'DescribeNetworkInterfaceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkInterfaceAttributeRequest', ], 'output' => [ 'shape' => 'DescribeNetworkInterfaceAttributeResult', ], ], 'DescribeNetworkInterfacePermissions' => [ 'name' => 'DescribeNetworkInterfacePermissions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkInterfacePermissionsRequest', ], 'output' => [ 'shape' => 'DescribeNetworkInterfacePermissionsResult', ], ], 'DescribeNetworkInterfaces' => [ 'name' => 'DescribeNetworkInterfaces', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkInterfacesRequest', ], 'output' => [ 'shape' => 'DescribeNetworkInterfacesResult', ], ], 'DescribePlacementGroups' => [ 'name' => 'DescribePlacementGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribePlacementGroupsRequest', ], 'output' => [ 'shape' => 'DescribePlacementGroupsResult', ], ], 'DescribePrefixLists' => [ 'name' => 'DescribePrefixLists', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribePrefixListsRequest', ], 'output' => [ 'shape' => 'DescribePrefixListsResult', ], ], 'DescribePrincipalIdFormat' => [ 'name' => 'DescribePrincipalIdFormat', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribePrincipalIdFormatRequest', ], 'output' => [ 'shape' => 'DescribePrincipalIdFormatResult', ], ], 'DescribePublicIpv4Pools' => [ 'name' => 'DescribePublicIpv4Pools', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribePublicIpv4PoolsRequest', ], 'output' => [ 'shape' => 'DescribePublicIpv4PoolsResult', ], ], 'DescribeRegions' => [ 'name' => 'DescribeRegions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeRegionsRequest', ], 'output' => [ 'shape' => 'DescribeRegionsResult', ], ], 'DescribeReplaceRootVolumeTasks' => [ 'name' => 'DescribeReplaceRootVolumeTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReplaceRootVolumeTasksRequest', ], 'output' => [ 'shape' => 'DescribeReplaceRootVolumeTasksResult', ], ], 'DescribeReservedInstances' => [ 'name' => 'DescribeReservedInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedInstancesRequest', ], 'output' => [ 'shape' => 'DescribeReservedInstancesResult', ], ], 'DescribeReservedInstancesListings' => [ 'name' => 'DescribeReservedInstancesListings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedInstancesListingsRequest', ], 'output' => [ 'shape' => 'DescribeReservedInstancesListingsResult', ], ], 'DescribeReservedInstancesModifications' => [ 'name' => 'DescribeReservedInstancesModifications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedInstancesModificationsRequest', ], 'output' => [ 'shape' => 'DescribeReservedInstancesModificationsResult', ], ], 'DescribeReservedInstancesOfferings' => [ 'name' => 'DescribeReservedInstancesOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedInstancesOfferingsRequest', ], 'output' => [ 'shape' => 'DescribeReservedInstancesOfferingsResult', ], ], 'DescribeRouteTables' => [ 'name' => 'DescribeRouteTables', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeRouteTablesRequest', ], 'output' => [ 'shape' => 'DescribeRouteTablesResult', ], ], 'DescribeScheduledInstanceAvailability' => [ 'name' => 'DescribeScheduledInstanceAvailability', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeScheduledInstanceAvailabilityRequest', ], 'output' => [ 'shape' => 'DescribeScheduledInstanceAvailabilityResult', ], ], 'DescribeScheduledInstances' => [ 'name' => 'DescribeScheduledInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeScheduledInstancesRequest', ], 'output' => [ 'shape' => 'DescribeScheduledInstancesResult', ], ], 'DescribeSecurityGroupReferences' => [ 'name' => 'DescribeSecurityGroupReferences', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSecurityGroupReferencesRequest', ], 'output' => [ 'shape' => 'DescribeSecurityGroupReferencesResult', ], ], 'DescribeSecurityGroupRules' => [ 'name' => 'DescribeSecurityGroupRules', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSecurityGroupRulesRequest', ], 'output' => [ 'shape' => 'DescribeSecurityGroupRulesResult', ], ], 'DescribeSecurityGroups' => [ 'name' => 'DescribeSecurityGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSecurityGroupsRequest', ], 'output' => [ 'shape' => 'DescribeSecurityGroupsResult', ], ], 'DescribeSnapshotAttribute' => [ 'name' => 'DescribeSnapshotAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSnapshotAttributeRequest', ], 'output' => [ 'shape' => 'DescribeSnapshotAttributeResult', ], ], 'DescribeSnapshotTierStatus' => [ 'name' => 'DescribeSnapshotTierStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSnapshotTierStatusRequest', ], 'output' => [ 'shape' => 'DescribeSnapshotTierStatusResult', ], ], 'DescribeSnapshots' => [ 'name' => 'DescribeSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSnapshotsRequest', ], 'output' => [ 'shape' => 'DescribeSnapshotsResult', ], ], 'DescribeSpotDatafeedSubscription' => [ 'name' => 'DescribeSpotDatafeedSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotDatafeedSubscriptionRequest', ], 'output' => [ 'shape' => 'DescribeSpotDatafeedSubscriptionResult', ], ], 'DescribeSpotFleetInstances' => [ 'name' => 'DescribeSpotFleetInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotFleetInstancesRequest', ], 'output' => [ 'shape' => 'DescribeSpotFleetInstancesResponse', ], ], 'DescribeSpotFleetRequestHistory' => [ 'name' => 'DescribeSpotFleetRequestHistory', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotFleetRequestHistoryRequest', ], 'output' => [ 'shape' => 'DescribeSpotFleetRequestHistoryResponse', ], ], 'DescribeSpotFleetRequests' => [ 'name' => 'DescribeSpotFleetRequests', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotFleetRequestsRequest', ], 'output' => [ 'shape' => 'DescribeSpotFleetRequestsResponse', ], ], 'DescribeSpotInstanceRequests' => [ 'name' => 'DescribeSpotInstanceRequests', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotInstanceRequestsRequest', ], 'output' => [ 'shape' => 'DescribeSpotInstanceRequestsResult', ], ], 'DescribeSpotPriceHistory' => [ 'name' => 'DescribeSpotPriceHistory', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotPriceHistoryRequest', ], 'output' => [ 'shape' => 'DescribeSpotPriceHistoryResult', ], ], 'DescribeStaleSecurityGroups' => [ 'name' => 'DescribeStaleSecurityGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeStaleSecurityGroupsRequest', ], 'output' => [ 'shape' => 'DescribeStaleSecurityGroupsResult', ], ], 'DescribeStoreImageTasks' => [ 'name' => 'DescribeStoreImageTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeStoreImageTasksRequest', ], 'output' => [ 'shape' => 'DescribeStoreImageTasksResult', ], ], 'DescribeSubnets' => [ 'name' => 'DescribeSubnets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSubnetsRequest', ], 'output' => [ 'shape' => 'DescribeSubnetsResult', ], ], 'DescribeTags' => [ 'name' => 'DescribeTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTagsRequest', ], 'output' => [ 'shape' => 'DescribeTagsResult', ], ], 'DescribeTrafficMirrorFilters' => [ 'name' => 'DescribeTrafficMirrorFilters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTrafficMirrorFiltersRequest', ], 'output' => [ 'shape' => 'DescribeTrafficMirrorFiltersResult', ], ], 'DescribeTrafficMirrorSessions' => [ 'name' => 'DescribeTrafficMirrorSessions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTrafficMirrorSessionsRequest', ], 'output' => [ 'shape' => 'DescribeTrafficMirrorSessionsResult', ], ], 'DescribeTrafficMirrorTargets' => [ 'name' => 'DescribeTrafficMirrorTargets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTrafficMirrorTargetsRequest', ], 'output' => [ 'shape' => 'DescribeTrafficMirrorTargetsResult', ], ], 'DescribeTransitGatewayAttachments' => [ 'name' => 'DescribeTransitGatewayAttachments', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayAttachmentsRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayAttachmentsResult', ], ], 'DescribeTransitGatewayConnectPeers' => [ 'name' => 'DescribeTransitGatewayConnectPeers', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayConnectPeersRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayConnectPeersResult', ], ], 'DescribeTransitGatewayConnects' => [ 'name' => 'DescribeTransitGatewayConnects', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayConnectsRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayConnectsResult', ], ], 'DescribeTransitGatewayMulticastDomains' => [ 'name' => 'DescribeTransitGatewayMulticastDomains', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayMulticastDomainsRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayMulticastDomainsResult', ], ], 'DescribeTransitGatewayPeeringAttachments' => [ 'name' => 'DescribeTransitGatewayPeeringAttachments', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayPeeringAttachmentsRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayPeeringAttachmentsResult', ], ], 'DescribeTransitGatewayPolicyTables' => [ 'name' => 'DescribeTransitGatewayPolicyTables', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayPolicyTablesRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayPolicyTablesResult', ], ], 'DescribeTransitGatewayRouteTableAnnouncements' => [ 'name' => 'DescribeTransitGatewayRouteTableAnnouncements', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayRouteTableAnnouncementsRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayRouteTableAnnouncementsResult', ], ], 'DescribeTransitGatewayRouteTables' => [ 'name' => 'DescribeTransitGatewayRouteTables', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayRouteTablesRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayRouteTablesResult', ], ], 'DescribeTransitGatewayVpcAttachments' => [ 'name' => 'DescribeTransitGatewayVpcAttachments', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewayVpcAttachmentsRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewayVpcAttachmentsResult', ], ], 'DescribeTransitGateways' => [ 'name' => 'DescribeTransitGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTransitGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeTransitGatewaysResult', ], ], 'DescribeTrunkInterfaceAssociations' => [ 'name' => 'DescribeTrunkInterfaceAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTrunkInterfaceAssociationsRequest', ], 'output' => [ 'shape' => 'DescribeTrunkInterfaceAssociationsResult', ], ], 'DescribeVerifiedAccessEndpoints' => [ 'name' => 'DescribeVerifiedAccessEndpoints', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVerifiedAccessEndpointsRequest', ], 'output' => [ 'shape' => 'DescribeVerifiedAccessEndpointsResult', ], ], 'DescribeVerifiedAccessGroups' => [ 'name' => 'DescribeVerifiedAccessGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVerifiedAccessGroupsRequest', ], 'output' => [ 'shape' => 'DescribeVerifiedAccessGroupsResult', ], ], 'DescribeVerifiedAccessInstanceLoggingConfigurations' => [ 'name' => 'DescribeVerifiedAccessInstanceLoggingConfigurations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVerifiedAccessInstanceLoggingConfigurationsRequest', ], 'output' => [ 'shape' => 'DescribeVerifiedAccessInstanceLoggingConfigurationsResult', ], ], 'DescribeVerifiedAccessInstances' => [ 'name' => 'DescribeVerifiedAccessInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVerifiedAccessInstancesRequest', ], 'output' => [ 'shape' => 'DescribeVerifiedAccessInstancesResult', ], ], 'DescribeVerifiedAccessTrustProviders' => [ 'name' => 'DescribeVerifiedAccessTrustProviders', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVerifiedAccessTrustProvidersRequest', ], 'output' => [ 'shape' => 'DescribeVerifiedAccessTrustProvidersResult', ], ], 'DescribeVolumeAttribute' => [ 'name' => 'DescribeVolumeAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVolumeAttributeRequest', ], 'output' => [ 'shape' => 'DescribeVolumeAttributeResult', ], ], 'DescribeVolumeStatus' => [ 'name' => 'DescribeVolumeStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVolumeStatusRequest', ], 'output' => [ 'shape' => 'DescribeVolumeStatusResult', ], ], 'DescribeVolumes' => [ 'name' => 'DescribeVolumes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVolumesRequest', ], 'output' => [ 'shape' => 'DescribeVolumesResult', ], ], 'DescribeVolumesModifications' => [ 'name' => 'DescribeVolumesModifications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVolumesModificationsRequest', ], 'output' => [ 'shape' => 'DescribeVolumesModificationsResult', ], ], 'DescribeVpcAttribute' => [ 'name' => 'DescribeVpcAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcAttributeRequest', ], 'output' => [ 'shape' => 'DescribeVpcAttributeResult', ], ], 'DescribeVpcClassicLink' => [ 'name' => 'DescribeVpcClassicLink', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcClassicLinkRequest', ], 'output' => [ 'shape' => 'DescribeVpcClassicLinkResult', ], ], 'DescribeVpcClassicLinkDnsSupport' => [ 'name' => 'DescribeVpcClassicLinkDnsSupport', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcClassicLinkDnsSupportRequest', ], 'output' => [ 'shape' => 'DescribeVpcClassicLinkDnsSupportResult', ], ], 'DescribeVpcEndpointConnectionNotifications' => [ 'name' => 'DescribeVpcEndpointConnectionNotifications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcEndpointConnectionNotificationsRequest', ], 'output' => [ 'shape' => 'DescribeVpcEndpointConnectionNotificationsResult', ], ], 'DescribeVpcEndpointConnections' => [ 'name' => 'DescribeVpcEndpointConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcEndpointConnectionsRequest', ], 'output' => [ 'shape' => 'DescribeVpcEndpointConnectionsResult', ], ], 'DescribeVpcEndpointServiceConfigurations' => [ 'name' => 'DescribeVpcEndpointServiceConfigurations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcEndpointServiceConfigurationsRequest', ], 'output' => [ 'shape' => 'DescribeVpcEndpointServiceConfigurationsResult', ], ], 'DescribeVpcEndpointServicePermissions' => [ 'name' => 'DescribeVpcEndpointServicePermissions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcEndpointServicePermissionsRequest', ], 'output' => [ 'shape' => 'DescribeVpcEndpointServicePermissionsResult', ], ], 'DescribeVpcEndpointServices' => [ 'name' => 'DescribeVpcEndpointServices', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcEndpointServicesRequest', ], 'output' => [ 'shape' => 'DescribeVpcEndpointServicesResult', ], ], 'DescribeVpcEndpoints' => [ 'name' => 'DescribeVpcEndpoints', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcEndpointsRequest', ], 'output' => [ 'shape' => 'DescribeVpcEndpointsResult', ], ], 'DescribeVpcPeeringConnections' => [ 'name' => 'DescribeVpcPeeringConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcPeeringConnectionsRequest', ], 'output' => [ 'shape' => 'DescribeVpcPeeringConnectionsResult', ], ], 'DescribeVpcs' => [ 'name' => 'DescribeVpcs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcsRequest', ], 'output' => [ 'shape' => 'DescribeVpcsResult', ], ], 'DescribeVpnConnections' => [ 'name' => 'DescribeVpnConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpnConnectionsRequest', ], 'output' => [ 'shape' => 'DescribeVpnConnectionsResult', ], ], 'DescribeVpnGateways' => [ 'name' => 'DescribeVpnGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpnGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeVpnGatewaysResult', ], ], 'DetachClassicLinkVpc' => [ 'name' => 'DetachClassicLinkVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DetachClassicLinkVpcRequest', ], 'output' => [ 'shape' => 'DetachClassicLinkVpcResult', ], ], 'DetachInternetGateway' => [ 'name' => 'DetachInternetGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DetachInternetGatewayRequest', ], ], 'DetachNetworkInterface' => [ 'name' => 'DetachNetworkInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DetachNetworkInterfaceRequest', ], ], 'DetachVerifiedAccessTrustProvider' => [ 'name' => 'DetachVerifiedAccessTrustProvider', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DetachVerifiedAccessTrustProviderRequest', ], 'output' => [ 'shape' => 'DetachVerifiedAccessTrustProviderResult', ], ], 'DetachVolume' => [ 'name' => 'DetachVolume', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DetachVolumeRequest', ], 'output' => [ 'shape' => 'VolumeAttachment', ], ], 'DetachVpnGateway' => [ 'name' => 'DetachVpnGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DetachVpnGatewayRequest', ], ], 'DisableAddressTransfer' => [ 'name' => 'DisableAddressTransfer', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableAddressTransferRequest', ], 'output' => [ 'shape' => 'DisableAddressTransferResult', ], ], 'DisableAwsNetworkPerformanceMetricSubscription' => [ 'name' => 'DisableAwsNetworkPerformanceMetricSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableAwsNetworkPerformanceMetricSubscriptionRequest', ], 'output' => [ 'shape' => 'DisableAwsNetworkPerformanceMetricSubscriptionResult', ], ], 'DisableEbsEncryptionByDefault' => [ 'name' => 'DisableEbsEncryptionByDefault', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableEbsEncryptionByDefaultRequest', ], 'output' => [ 'shape' => 'DisableEbsEncryptionByDefaultResult', ], ], 'DisableFastLaunch' => [ 'name' => 'DisableFastLaunch', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableFastLaunchRequest', ], 'output' => [ 'shape' => 'DisableFastLaunchResult', ], ], 'DisableFastSnapshotRestores' => [ 'name' => 'DisableFastSnapshotRestores', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableFastSnapshotRestoresRequest', ], 'output' => [ 'shape' => 'DisableFastSnapshotRestoresResult', ], ], 'DisableImage' => [ 'name' => 'DisableImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableImageRequest', ], 'output' => [ 'shape' => 'DisableImageResult', ], ], 'DisableImageBlockPublicAccess' => [ 'name' => 'DisableImageBlockPublicAccess', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableImageBlockPublicAccessRequest', ], 'output' => [ 'shape' => 'DisableImageBlockPublicAccessResult', ], ], 'DisableImageDeprecation' => [ 'name' => 'DisableImageDeprecation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableImageDeprecationRequest', ], 'output' => [ 'shape' => 'DisableImageDeprecationResult', ], ], 'DisableIpamOrganizationAdminAccount' => [ 'name' => 'DisableIpamOrganizationAdminAccount', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableIpamOrganizationAdminAccountRequest', ], 'output' => [ 'shape' => 'DisableIpamOrganizationAdminAccountResult', ], ], 'DisableSerialConsoleAccess' => [ 'name' => 'DisableSerialConsoleAccess', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableSerialConsoleAccessRequest', ], 'output' => [ 'shape' => 'DisableSerialConsoleAccessResult', ], ], 'DisableSnapshotBlockPublicAccess' => [ 'name' => 'DisableSnapshotBlockPublicAccess', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableSnapshotBlockPublicAccessRequest', ], 'output' => [ 'shape' => 'DisableSnapshotBlockPublicAccessResult', ], ], 'DisableTransitGatewayRouteTablePropagation' => [ 'name' => 'DisableTransitGatewayRouteTablePropagation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableTransitGatewayRouteTablePropagationRequest', ], 'output' => [ 'shape' => 'DisableTransitGatewayRouteTablePropagationResult', ], ], 'DisableVgwRoutePropagation' => [ 'name' => 'DisableVgwRoutePropagation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableVgwRoutePropagationRequest', ], ], 'DisableVpcClassicLink' => [ 'name' => 'DisableVpcClassicLink', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableVpcClassicLinkRequest', ], 'output' => [ 'shape' => 'DisableVpcClassicLinkResult', ], ], 'DisableVpcClassicLinkDnsSupport' => [ 'name' => 'DisableVpcClassicLinkDnsSupport', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableVpcClassicLinkDnsSupportRequest', ], 'output' => [ 'shape' => 'DisableVpcClassicLinkDnsSupportResult', ], ], 'DisassociateAddress' => [ 'name' => 'DisassociateAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateAddressRequest', ], ], 'DisassociateClientVpnTargetNetwork' => [ 'name' => 'DisassociateClientVpnTargetNetwork', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateClientVpnTargetNetworkRequest', ], 'output' => [ 'shape' => 'DisassociateClientVpnTargetNetworkResult', ], ], 'DisassociateEnclaveCertificateIamRole' => [ 'name' => 'DisassociateEnclaveCertificateIamRole', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateEnclaveCertificateIamRoleRequest', ], 'output' => [ 'shape' => 'DisassociateEnclaveCertificateIamRoleResult', ], ], 'DisassociateIamInstanceProfile' => [ 'name' => 'DisassociateIamInstanceProfile', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateIamInstanceProfileRequest', ], 'output' => [ 'shape' => 'DisassociateIamInstanceProfileResult', ], ], 'DisassociateInstanceEventWindow' => [ 'name' => 'DisassociateInstanceEventWindow', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateInstanceEventWindowRequest', ], 'output' => [ 'shape' => 'DisassociateInstanceEventWindowResult', ], ], 'DisassociateIpamByoasn' => [ 'name' => 'DisassociateIpamByoasn', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateIpamByoasnRequest', ], 'output' => [ 'shape' => 'DisassociateIpamByoasnResult', ], ], 'DisassociateIpamResourceDiscovery' => [ 'name' => 'DisassociateIpamResourceDiscovery', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateIpamResourceDiscoveryRequest', ], 'output' => [ 'shape' => 'DisassociateIpamResourceDiscoveryResult', ], ], 'DisassociateNatGatewayAddress' => [ 'name' => 'DisassociateNatGatewayAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateNatGatewayAddressRequest', ], 'output' => [ 'shape' => 'DisassociateNatGatewayAddressResult', ], ], 'DisassociateRouteTable' => [ 'name' => 'DisassociateRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateRouteTableRequest', ], ], 'DisassociateSubnetCidrBlock' => [ 'name' => 'DisassociateSubnetCidrBlock', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateSubnetCidrBlockRequest', ], 'output' => [ 'shape' => 'DisassociateSubnetCidrBlockResult', ], ], 'DisassociateTransitGatewayMulticastDomain' => [ 'name' => 'DisassociateTransitGatewayMulticastDomain', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateTransitGatewayMulticastDomainRequest', ], 'output' => [ 'shape' => 'DisassociateTransitGatewayMulticastDomainResult', ], ], 'DisassociateTransitGatewayPolicyTable' => [ 'name' => 'DisassociateTransitGatewayPolicyTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateTransitGatewayPolicyTableRequest', ], 'output' => [ 'shape' => 'DisassociateTransitGatewayPolicyTableResult', ], ], 'DisassociateTransitGatewayRouteTable' => [ 'name' => 'DisassociateTransitGatewayRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateTransitGatewayRouteTableRequest', ], 'output' => [ 'shape' => 'DisassociateTransitGatewayRouteTableResult', ], ], 'DisassociateTrunkInterface' => [ 'name' => 'DisassociateTrunkInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateTrunkInterfaceRequest', ], 'output' => [ 'shape' => 'DisassociateTrunkInterfaceResult', ], ], 'DisassociateVpcCidrBlock' => [ 'name' => 'DisassociateVpcCidrBlock', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateVpcCidrBlockRequest', ], 'output' => [ 'shape' => 'DisassociateVpcCidrBlockResult', ], ], 'EnableAddressTransfer' => [ 'name' => 'EnableAddressTransfer', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableAddressTransferRequest', ], 'output' => [ 'shape' => 'EnableAddressTransferResult', ], ], 'EnableAwsNetworkPerformanceMetricSubscription' => [ 'name' => 'EnableAwsNetworkPerformanceMetricSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableAwsNetworkPerformanceMetricSubscriptionRequest', ], 'output' => [ 'shape' => 'EnableAwsNetworkPerformanceMetricSubscriptionResult', ], ], 'EnableEbsEncryptionByDefault' => [ 'name' => 'EnableEbsEncryptionByDefault', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableEbsEncryptionByDefaultRequest', ], 'output' => [ 'shape' => 'EnableEbsEncryptionByDefaultResult', ], ], 'EnableFastLaunch' => [ 'name' => 'EnableFastLaunch', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableFastLaunchRequest', ], 'output' => [ 'shape' => 'EnableFastLaunchResult', ], ], 'EnableFastSnapshotRestores' => [ 'name' => 'EnableFastSnapshotRestores', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableFastSnapshotRestoresRequest', ], 'output' => [ 'shape' => 'EnableFastSnapshotRestoresResult', ], ], 'EnableImage' => [ 'name' => 'EnableImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableImageRequest', ], 'output' => [ 'shape' => 'EnableImageResult', ], ], 'EnableImageBlockPublicAccess' => [ 'name' => 'EnableImageBlockPublicAccess', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableImageBlockPublicAccessRequest', ], 'output' => [ 'shape' => 'EnableImageBlockPublicAccessResult', ], ], 'EnableImageDeprecation' => [ 'name' => 'EnableImageDeprecation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableImageDeprecationRequest', ], 'output' => [ 'shape' => 'EnableImageDeprecationResult', ], ], 'EnableIpamOrganizationAdminAccount' => [ 'name' => 'EnableIpamOrganizationAdminAccount', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableIpamOrganizationAdminAccountRequest', ], 'output' => [ 'shape' => 'EnableIpamOrganizationAdminAccountResult', ], ], 'EnableReachabilityAnalyzerOrganizationSharing' => [ 'name' => 'EnableReachabilityAnalyzerOrganizationSharing', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableReachabilityAnalyzerOrganizationSharingRequest', ], 'output' => [ 'shape' => 'EnableReachabilityAnalyzerOrganizationSharingResult', ], ], 'EnableSerialConsoleAccess' => [ 'name' => 'EnableSerialConsoleAccess', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableSerialConsoleAccessRequest', ], 'output' => [ 'shape' => 'EnableSerialConsoleAccessResult', ], ], 'EnableSnapshotBlockPublicAccess' => [ 'name' => 'EnableSnapshotBlockPublicAccess', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableSnapshotBlockPublicAccessRequest', ], 'output' => [ 'shape' => 'EnableSnapshotBlockPublicAccessResult', ], ], 'EnableTransitGatewayRouteTablePropagation' => [ 'name' => 'EnableTransitGatewayRouteTablePropagation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableTransitGatewayRouteTablePropagationRequest', ], 'output' => [ 'shape' => 'EnableTransitGatewayRouteTablePropagationResult', ], ], 'EnableVgwRoutePropagation' => [ 'name' => 'EnableVgwRoutePropagation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableVgwRoutePropagationRequest', ], ], 'EnableVolumeIO' => [ 'name' => 'EnableVolumeIO', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableVolumeIORequest', ], ], 'EnableVpcClassicLink' => [ 'name' => 'EnableVpcClassicLink', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableVpcClassicLinkRequest', ], 'output' => [ 'shape' => 'EnableVpcClassicLinkResult', ], ], 'EnableVpcClassicLinkDnsSupport' => [ 'name' => 'EnableVpcClassicLinkDnsSupport', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableVpcClassicLinkDnsSupportRequest', ], 'output' => [ 'shape' => 'EnableVpcClassicLinkDnsSupportResult', ], ], 'ExportClientVpnClientCertificateRevocationList' => [ 'name' => 'ExportClientVpnClientCertificateRevocationList', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ExportClientVpnClientCertificateRevocationListRequest', ], 'output' => [ 'shape' => 'ExportClientVpnClientCertificateRevocationListResult', ], ], 'ExportClientVpnClientConfiguration' => [ 'name' => 'ExportClientVpnClientConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ExportClientVpnClientConfigurationRequest', ], 'output' => [ 'shape' => 'ExportClientVpnClientConfigurationResult', ], ], 'ExportImage' => [ 'name' => 'ExportImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ExportImageRequest', ], 'output' => [ 'shape' => 'ExportImageResult', ], ], 'ExportTransitGatewayRoutes' => [ 'name' => 'ExportTransitGatewayRoutes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ExportTransitGatewayRoutesRequest', ], 'output' => [ 'shape' => 'ExportTransitGatewayRoutesResult', ], ], 'GetAssociatedEnclaveCertificateIamRoles' => [ 'name' => 'GetAssociatedEnclaveCertificateIamRoles', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetAssociatedEnclaveCertificateIamRolesRequest', ], 'output' => [ 'shape' => 'GetAssociatedEnclaveCertificateIamRolesResult', ], ], 'GetAssociatedIpv6PoolCidrs' => [ 'name' => 'GetAssociatedIpv6PoolCidrs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetAssociatedIpv6PoolCidrsRequest', ], 'output' => [ 'shape' => 'GetAssociatedIpv6PoolCidrsResult', ], ], 'GetAwsNetworkPerformanceData' => [ 'name' => 'GetAwsNetworkPerformanceData', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetAwsNetworkPerformanceDataRequest', ], 'output' => [ 'shape' => 'GetAwsNetworkPerformanceDataResult', ], ], 'GetCapacityReservationUsage' => [ 'name' => 'GetCapacityReservationUsage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetCapacityReservationUsageRequest', ], 'output' => [ 'shape' => 'GetCapacityReservationUsageResult', ], ], 'GetCoipPoolUsage' => [ 'name' => 'GetCoipPoolUsage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetCoipPoolUsageRequest', ], 'output' => [ 'shape' => 'GetCoipPoolUsageResult', ], ], 'GetConsoleOutput' => [ 'name' => 'GetConsoleOutput', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetConsoleOutputRequest', ], 'output' => [ 'shape' => 'GetConsoleOutputResult', ], ], 'GetConsoleScreenshot' => [ 'name' => 'GetConsoleScreenshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetConsoleScreenshotRequest', ], 'output' => [ 'shape' => 'GetConsoleScreenshotResult', ], ], 'GetDefaultCreditSpecification' => [ 'name' => 'GetDefaultCreditSpecification', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDefaultCreditSpecificationRequest', ], 'output' => [ 'shape' => 'GetDefaultCreditSpecificationResult', ], ], 'GetEbsDefaultKmsKeyId' => [ 'name' => 'GetEbsDefaultKmsKeyId', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetEbsDefaultKmsKeyIdRequest', ], 'output' => [ 'shape' => 'GetEbsDefaultKmsKeyIdResult', ], ], 'GetEbsEncryptionByDefault' => [ 'name' => 'GetEbsEncryptionByDefault', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetEbsEncryptionByDefaultRequest', ], 'output' => [ 'shape' => 'GetEbsEncryptionByDefaultResult', ], ], 'GetFlowLogsIntegrationTemplate' => [ 'name' => 'GetFlowLogsIntegrationTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetFlowLogsIntegrationTemplateRequest', ], 'output' => [ 'shape' => 'GetFlowLogsIntegrationTemplateResult', ], ], 'GetGroupsForCapacityReservation' => [ 'name' => 'GetGroupsForCapacityReservation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetGroupsForCapacityReservationRequest', ], 'output' => [ 'shape' => 'GetGroupsForCapacityReservationResult', ], ], 'GetHostReservationPurchasePreview' => [ 'name' => 'GetHostReservationPurchasePreview', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetHostReservationPurchasePreviewRequest', ], 'output' => [ 'shape' => 'GetHostReservationPurchasePreviewResult', ], ], 'GetImageBlockPublicAccessState' => [ 'name' => 'GetImageBlockPublicAccessState', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetImageBlockPublicAccessStateRequest', ], 'output' => [ 'shape' => 'GetImageBlockPublicAccessStateResult', ], ], 'GetInstanceTypesFromInstanceRequirements' => [ 'name' => 'GetInstanceTypesFromInstanceRequirements', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetInstanceTypesFromInstanceRequirementsRequest', ], 'output' => [ 'shape' => 'GetInstanceTypesFromInstanceRequirementsResult', ], ], 'GetInstanceUefiData' => [ 'name' => 'GetInstanceUefiData', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetInstanceUefiDataRequest', ], 'output' => [ 'shape' => 'GetInstanceUefiDataResult', ], ], 'GetIpamAddressHistory' => [ 'name' => 'GetIpamAddressHistory', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIpamAddressHistoryRequest', ], 'output' => [ 'shape' => 'GetIpamAddressHistoryResult', ], ], 'GetIpamDiscoveredAccounts' => [ 'name' => 'GetIpamDiscoveredAccounts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIpamDiscoveredAccountsRequest', ], 'output' => [ 'shape' => 'GetIpamDiscoveredAccountsResult', ], ], 'GetIpamDiscoveredPublicAddresses' => [ 'name' => 'GetIpamDiscoveredPublicAddresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIpamDiscoveredPublicAddressesRequest', ], 'output' => [ 'shape' => 'GetIpamDiscoveredPublicAddressesResult', ], ], 'GetIpamDiscoveredResourceCidrs' => [ 'name' => 'GetIpamDiscoveredResourceCidrs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIpamDiscoveredResourceCidrsRequest', ], 'output' => [ 'shape' => 'GetIpamDiscoveredResourceCidrsResult', ], ], 'GetIpamPoolAllocations' => [ 'name' => 'GetIpamPoolAllocations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIpamPoolAllocationsRequest', ], 'output' => [ 'shape' => 'GetIpamPoolAllocationsResult', ], ], 'GetIpamPoolCidrs' => [ 'name' => 'GetIpamPoolCidrs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIpamPoolCidrsRequest', ], 'output' => [ 'shape' => 'GetIpamPoolCidrsResult', ], ], 'GetIpamResourceCidrs' => [ 'name' => 'GetIpamResourceCidrs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIpamResourceCidrsRequest', ], 'output' => [ 'shape' => 'GetIpamResourceCidrsResult', ], ], 'GetLaunchTemplateData' => [ 'name' => 'GetLaunchTemplateData', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetLaunchTemplateDataRequest', ], 'output' => [ 'shape' => 'GetLaunchTemplateDataResult', ], ], 'GetManagedPrefixListAssociations' => [ 'name' => 'GetManagedPrefixListAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetManagedPrefixListAssociationsRequest', ], 'output' => [ 'shape' => 'GetManagedPrefixListAssociationsResult', ], ], 'GetManagedPrefixListEntries' => [ 'name' => 'GetManagedPrefixListEntries', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetManagedPrefixListEntriesRequest', ], 'output' => [ 'shape' => 'GetManagedPrefixListEntriesResult', ], ], 'GetNetworkInsightsAccessScopeAnalysisFindings' => [ 'name' => 'GetNetworkInsightsAccessScopeAnalysisFindings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetNetworkInsightsAccessScopeAnalysisFindingsRequest', ], 'output' => [ 'shape' => 'GetNetworkInsightsAccessScopeAnalysisFindingsResult', ], ], 'GetNetworkInsightsAccessScopeContent' => [ 'name' => 'GetNetworkInsightsAccessScopeContent', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetNetworkInsightsAccessScopeContentRequest', ], 'output' => [ 'shape' => 'GetNetworkInsightsAccessScopeContentResult', ], ], 'GetPasswordData' => [ 'name' => 'GetPasswordData', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetPasswordDataRequest', ], 'output' => [ 'shape' => 'GetPasswordDataResult', ], ], 'GetReservedInstancesExchangeQuote' => [ 'name' => 'GetReservedInstancesExchangeQuote', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetReservedInstancesExchangeQuoteRequest', ], 'output' => [ 'shape' => 'GetReservedInstancesExchangeQuoteResult', ], ], 'GetSecurityGroupsForVpc' => [ 'name' => 'GetSecurityGroupsForVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSecurityGroupsForVpcRequest', ], 'output' => [ 'shape' => 'GetSecurityGroupsForVpcResult', ], ], 'GetSerialConsoleAccessStatus' => [ 'name' => 'GetSerialConsoleAccessStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSerialConsoleAccessStatusRequest', ], 'output' => [ 'shape' => 'GetSerialConsoleAccessStatusResult', ], ], 'GetSnapshotBlockPublicAccessState' => [ 'name' => 'GetSnapshotBlockPublicAccessState', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSnapshotBlockPublicAccessStateRequest', ], 'output' => [ 'shape' => 'GetSnapshotBlockPublicAccessStateResult', ], ], 'GetSpotPlacementScores' => [ 'name' => 'GetSpotPlacementScores', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSpotPlacementScoresRequest', ], 'output' => [ 'shape' => 'GetSpotPlacementScoresResult', ], ], 'GetSubnetCidrReservations' => [ 'name' => 'GetSubnetCidrReservations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSubnetCidrReservationsRequest', ], 'output' => [ 'shape' => 'GetSubnetCidrReservationsResult', ], ], 'GetTransitGatewayAttachmentPropagations' => [ 'name' => 'GetTransitGatewayAttachmentPropagations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTransitGatewayAttachmentPropagationsRequest', ], 'output' => [ 'shape' => 'GetTransitGatewayAttachmentPropagationsResult', ], ], 'GetTransitGatewayMulticastDomainAssociations' => [ 'name' => 'GetTransitGatewayMulticastDomainAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTransitGatewayMulticastDomainAssociationsRequest', ], 'output' => [ 'shape' => 'GetTransitGatewayMulticastDomainAssociationsResult', ], ], 'GetTransitGatewayPolicyTableAssociations' => [ 'name' => 'GetTransitGatewayPolicyTableAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTransitGatewayPolicyTableAssociationsRequest', ], 'output' => [ 'shape' => 'GetTransitGatewayPolicyTableAssociationsResult', ], ], 'GetTransitGatewayPolicyTableEntries' => [ 'name' => 'GetTransitGatewayPolicyTableEntries', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTransitGatewayPolicyTableEntriesRequest', ], 'output' => [ 'shape' => 'GetTransitGatewayPolicyTableEntriesResult', ], ], 'GetTransitGatewayPrefixListReferences' => [ 'name' => 'GetTransitGatewayPrefixListReferences', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTransitGatewayPrefixListReferencesRequest', ], 'output' => [ 'shape' => 'GetTransitGatewayPrefixListReferencesResult', ], ], 'GetTransitGatewayRouteTableAssociations' => [ 'name' => 'GetTransitGatewayRouteTableAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTransitGatewayRouteTableAssociationsRequest', ], 'output' => [ 'shape' => 'GetTransitGatewayRouteTableAssociationsResult', ], ], 'GetTransitGatewayRouteTablePropagations' => [ 'name' => 'GetTransitGatewayRouteTablePropagations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTransitGatewayRouteTablePropagationsRequest', ], 'output' => [ 'shape' => 'GetTransitGatewayRouteTablePropagationsResult', ], ], 'GetVerifiedAccessEndpointPolicy' => [ 'name' => 'GetVerifiedAccessEndpointPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetVerifiedAccessEndpointPolicyRequest', ], 'output' => [ 'shape' => 'GetVerifiedAccessEndpointPolicyResult', ], ], 'GetVerifiedAccessGroupPolicy' => [ 'name' => 'GetVerifiedAccessGroupPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetVerifiedAccessGroupPolicyRequest', ], 'output' => [ 'shape' => 'GetVerifiedAccessGroupPolicyResult', ], ], 'GetVpnConnectionDeviceSampleConfiguration' => [ 'name' => 'GetVpnConnectionDeviceSampleConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetVpnConnectionDeviceSampleConfigurationRequest', ], 'output' => [ 'shape' => 'GetVpnConnectionDeviceSampleConfigurationResult', ], ], 'GetVpnConnectionDeviceTypes' => [ 'name' => 'GetVpnConnectionDeviceTypes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetVpnConnectionDeviceTypesRequest', ], 'output' => [ 'shape' => 'GetVpnConnectionDeviceTypesResult', ], ], 'GetVpnTunnelReplacementStatus' => [ 'name' => 'GetVpnTunnelReplacementStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetVpnTunnelReplacementStatusRequest', ], 'output' => [ 'shape' => 'GetVpnTunnelReplacementStatusResult', ], ], 'ImportClientVpnClientCertificateRevocationList' => [ 'name' => 'ImportClientVpnClientCertificateRevocationList', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportClientVpnClientCertificateRevocationListRequest', ], 'output' => [ 'shape' => 'ImportClientVpnClientCertificateRevocationListResult', ], ], 'ImportImage' => [ 'name' => 'ImportImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportImageRequest', ], 'output' => [ 'shape' => 'ImportImageResult', ], ], 'ImportInstance' => [ 'name' => 'ImportInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportInstanceRequest', ], 'output' => [ 'shape' => 'ImportInstanceResult', ], ], 'ImportKeyPair' => [ 'name' => 'ImportKeyPair', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportKeyPairRequest', ], 'output' => [ 'shape' => 'ImportKeyPairResult', ], ], 'ImportSnapshot' => [ 'name' => 'ImportSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportSnapshotRequest', ], 'output' => [ 'shape' => 'ImportSnapshotResult', ], ], 'ImportVolume' => [ 'name' => 'ImportVolume', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportVolumeRequest', ], 'output' => [ 'shape' => 'ImportVolumeResult', ], ], 'ListImagesInRecycleBin' => [ 'name' => 'ListImagesInRecycleBin', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListImagesInRecycleBinRequest', ], 'output' => [ 'shape' => 'ListImagesInRecycleBinResult', ], ], 'ListSnapshotsInRecycleBin' => [ 'name' => 'ListSnapshotsInRecycleBin', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListSnapshotsInRecycleBinRequest', ], 'output' => [ 'shape' => 'ListSnapshotsInRecycleBinResult', ], ], 'LockSnapshot' => [ 'name' => 'LockSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'LockSnapshotRequest', ], 'output' => [ 'shape' => 'LockSnapshotResult', ], ], 'ModifyAddressAttribute' => [ 'name' => 'ModifyAddressAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyAddressAttributeRequest', ], 'output' => [ 'shape' => 'ModifyAddressAttributeResult', ], ], 'ModifyAvailabilityZoneGroup' => [ 'name' => 'ModifyAvailabilityZoneGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyAvailabilityZoneGroupRequest', ], 'output' => [ 'shape' => 'ModifyAvailabilityZoneGroupResult', ], ], 'ModifyCapacityReservation' => [ 'name' => 'ModifyCapacityReservation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyCapacityReservationRequest', ], 'output' => [ 'shape' => 'ModifyCapacityReservationResult', ], ], 'ModifyCapacityReservationFleet' => [ 'name' => 'ModifyCapacityReservationFleet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyCapacityReservationFleetRequest', ], 'output' => [ 'shape' => 'ModifyCapacityReservationFleetResult', ], ], 'ModifyClientVpnEndpoint' => [ 'name' => 'ModifyClientVpnEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyClientVpnEndpointRequest', ], 'output' => [ 'shape' => 'ModifyClientVpnEndpointResult', ], ], 'ModifyDefaultCreditSpecification' => [ 'name' => 'ModifyDefaultCreditSpecification', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDefaultCreditSpecificationRequest', ], 'output' => [ 'shape' => 'ModifyDefaultCreditSpecificationResult', ], ], 'ModifyEbsDefaultKmsKeyId' => [ 'name' => 'ModifyEbsDefaultKmsKeyId', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyEbsDefaultKmsKeyIdRequest', ], 'output' => [ 'shape' => 'ModifyEbsDefaultKmsKeyIdResult', ], ], 'ModifyFleet' => [ 'name' => 'ModifyFleet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyFleetRequest', ], 'output' => [ 'shape' => 'ModifyFleetResult', ], ], 'ModifyFpgaImageAttribute' => [ 'name' => 'ModifyFpgaImageAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyFpgaImageAttributeRequest', ], 'output' => [ 'shape' => 'ModifyFpgaImageAttributeResult', ], ], 'ModifyHosts' => [ 'name' => 'ModifyHosts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyHostsRequest', ], 'output' => [ 'shape' => 'ModifyHostsResult', ], ], 'ModifyIdFormat' => [ 'name' => 'ModifyIdFormat', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyIdFormatRequest', ], ], 'ModifyIdentityIdFormat' => [ 'name' => 'ModifyIdentityIdFormat', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyIdentityIdFormatRequest', ], ], 'ModifyImageAttribute' => [ 'name' => 'ModifyImageAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyImageAttributeRequest', ], ], 'ModifyInstanceAttribute' => [ 'name' => 'ModifyInstanceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstanceAttributeRequest', ], ], 'ModifyInstanceCapacityReservationAttributes' => [ 'name' => 'ModifyInstanceCapacityReservationAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstanceCapacityReservationAttributesRequest', ], 'output' => [ 'shape' => 'ModifyInstanceCapacityReservationAttributesResult', ], ], 'ModifyInstanceCreditSpecification' => [ 'name' => 'ModifyInstanceCreditSpecification', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstanceCreditSpecificationRequest', ], 'output' => [ 'shape' => 'ModifyInstanceCreditSpecificationResult', ], ], 'ModifyInstanceEventStartTime' => [ 'name' => 'ModifyInstanceEventStartTime', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstanceEventStartTimeRequest', ], 'output' => [ 'shape' => 'ModifyInstanceEventStartTimeResult', ], ], 'ModifyInstanceEventWindow' => [ 'name' => 'ModifyInstanceEventWindow', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstanceEventWindowRequest', ], 'output' => [ 'shape' => 'ModifyInstanceEventWindowResult', ], ], 'ModifyInstanceMaintenanceOptions' => [ 'name' => 'ModifyInstanceMaintenanceOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstanceMaintenanceOptionsRequest', ], 'output' => [ 'shape' => 'ModifyInstanceMaintenanceOptionsResult', ], ], 'ModifyInstanceMetadataOptions' => [ 'name' => 'ModifyInstanceMetadataOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstanceMetadataOptionsRequest', ], 'output' => [ 'shape' => 'ModifyInstanceMetadataOptionsResult', ], ], 'ModifyInstancePlacement' => [ 'name' => 'ModifyInstancePlacement', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstancePlacementRequest', ], 'output' => [ 'shape' => 'ModifyInstancePlacementResult', ], ], 'ModifyIpam' => [ 'name' => 'ModifyIpam', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyIpamRequest', ], 'output' => [ 'shape' => 'ModifyIpamResult', ], ], 'ModifyIpamPool' => [ 'name' => 'ModifyIpamPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyIpamPoolRequest', ], 'output' => [ 'shape' => 'ModifyIpamPoolResult', ], ], 'ModifyIpamResourceCidr' => [ 'name' => 'ModifyIpamResourceCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyIpamResourceCidrRequest', ], 'output' => [ 'shape' => 'ModifyIpamResourceCidrResult', ], ], 'ModifyIpamResourceDiscovery' => [ 'name' => 'ModifyIpamResourceDiscovery', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyIpamResourceDiscoveryRequest', ], 'output' => [ 'shape' => 'ModifyIpamResourceDiscoveryResult', ], ], 'ModifyIpamScope' => [ 'name' => 'ModifyIpamScope', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyIpamScopeRequest', ], 'output' => [ 'shape' => 'ModifyIpamScopeResult', ], ], 'ModifyLaunchTemplate' => [ 'name' => 'ModifyLaunchTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyLaunchTemplateRequest', ], 'output' => [ 'shape' => 'ModifyLaunchTemplateResult', ], ], 'ModifyLocalGatewayRoute' => [ 'name' => 'ModifyLocalGatewayRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyLocalGatewayRouteRequest', ], 'output' => [ 'shape' => 'ModifyLocalGatewayRouteResult', ], ], 'ModifyManagedPrefixList' => [ 'name' => 'ModifyManagedPrefixList', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyManagedPrefixListRequest', ], 'output' => [ 'shape' => 'ModifyManagedPrefixListResult', ], ], 'ModifyNetworkInterfaceAttribute' => [ 'name' => 'ModifyNetworkInterfaceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyNetworkInterfaceAttributeRequest', ], ], 'ModifyPrivateDnsNameOptions' => [ 'name' => 'ModifyPrivateDnsNameOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyPrivateDnsNameOptionsRequest', ], 'output' => [ 'shape' => 'ModifyPrivateDnsNameOptionsResult', ], ], 'ModifyReservedInstances' => [ 'name' => 'ModifyReservedInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyReservedInstancesRequest', ], 'output' => [ 'shape' => 'ModifyReservedInstancesResult', ], ], 'ModifySecurityGroupRules' => [ 'name' => 'ModifySecurityGroupRules', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifySecurityGroupRulesRequest', ], 'output' => [ 'shape' => 'ModifySecurityGroupRulesResult', ], ], 'ModifySnapshotAttribute' => [ 'name' => 'ModifySnapshotAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifySnapshotAttributeRequest', ], ], 'ModifySnapshotTier' => [ 'name' => 'ModifySnapshotTier', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifySnapshotTierRequest', ], 'output' => [ 'shape' => 'ModifySnapshotTierResult', ], ], 'ModifySpotFleetRequest' => [ 'name' => 'ModifySpotFleetRequest', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifySpotFleetRequestRequest', ], 'output' => [ 'shape' => 'ModifySpotFleetRequestResponse', ], ], 'ModifySubnetAttribute' => [ 'name' => 'ModifySubnetAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifySubnetAttributeRequest', ], ], 'ModifyTrafficMirrorFilterNetworkServices' => [ 'name' => 'ModifyTrafficMirrorFilterNetworkServices', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyTrafficMirrorFilterNetworkServicesRequest', ], 'output' => [ 'shape' => 'ModifyTrafficMirrorFilterNetworkServicesResult', ], ], 'ModifyTrafficMirrorFilterRule' => [ 'name' => 'ModifyTrafficMirrorFilterRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyTrafficMirrorFilterRuleRequest', ], 'output' => [ 'shape' => 'ModifyTrafficMirrorFilterRuleResult', ], ], 'ModifyTrafficMirrorSession' => [ 'name' => 'ModifyTrafficMirrorSession', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyTrafficMirrorSessionRequest', ], 'output' => [ 'shape' => 'ModifyTrafficMirrorSessionResult', ], ], 'ModifyTransitGateway' => [ 'name' => 'ModifyTransitGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyTransitGatewayRequest', ], 'output' => [ 'shape' => 'ModifyTransitGatewayResult', ], ], 'ModifyTransitGatewayPrefixListReference' => [ 'name' => 'ModifyTransitGatewayPrefixListReference', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyTransitGatewayPrefixListReferenceRequest', ], 'output' => [ 'shape' => 'ModifyTransitGatewayPrefixListReferenceResult', ], ], 'ModifyTransitGatewayVpcAttachment' => [ 'name' => 'ModifyTransitGatewayVpcAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyTransitGatewayVpcAttachmentRequest', ], 'output' => [ 'shape' => 'ModifyTransitGatewayVpcAttachmentResult', ], ], 'ModifyVerifiedAccessEndpoint' => [ 'name' => 'ModifyVerifiedAccessEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVerifiedAccessEndpointRequest', ], 'output' => [ 'shape' => 'ModifyVerifiedAccessEndpointResult', ], ], 'ModifyVerifiedAccessEndpointPolicy' => [ 'name' => 'ModifyVerifiedAccessEndpointPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVerifiedAccessEndpointPolicyRequest', ], 'output' => [ 'shape' => 'ModifyVerifiedAccessEndpointPolicyResult', ], ], 'ModifyVerifiedAccessGroup' => [ 'name' => 'ModifyVerifiedAccessGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVerifiedAccessGroupRequest', ], 'output' => [ 'shape' => 'ModifyVerifiedAccessGroupResult', ], ], 'ModifyVerifiedAccessGroupPolicy' => [ 'name' => 'ModifyVerifiedAccessGroupPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVerifiedAccessGroupPolicyRequest', ], 'output' => [ 'shape' => 'ModifyVerifiedAccessGroupPolicyResult', ], ], 'ModifyVerifiedAccessInstance' => [ 'name' => 'ModifyVerifiedAccessInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVerifiedAccessInstanceRequest', ], 'output' => [ 'shape' => 'ModifyVerifiedAccessInstanceResult', ], ], 'ModifyVerifiedAccessInstanceLoggingConfiguration' => [ 'name' => 'ModifyVerifiedAccessInstanceLoggingConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVerifiedAccessInstanceLoggingConfigurationRequest', ], 'output' => [ 'shape' => 'ModifyVerifiedAccessInstanceLoggingConfigurationResult', ], ], 'ModifyVerifiedAccessTrustProvider' => [ 'name' => 'ModifyVerifiedAccessTrustProvider', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVerifiedAccessTrustProviderRequest', ], 'output' => [ 'shape' => 'ModifyVerifiedAccessTrustProviderResult', ], ], 'ModifyVolume' => [ 'name' => 'ModifyVolume', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVolumeRequest', ], 'output' => [ 'shape' => 'ModifyVolumeResult', ], ], 'ModifyVolumeAttribute' => [ 'name' => 'ModifyVolumeAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVolumeAttributeRequest', ], ], 'ModifyVpcAttribute' => [ 'name' => 'ModifyVpcAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcAttributeRequest', ], ], 'ModifyVpcEndpoint' => [ 'name' => 'ModifyVpcEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcEndpointRequest', ], 'output' => [ 'shape' => 'ModifyVpcEndpointResult', ], ], 'ModifyVpcEndpointConnectionNotification' => [ 'name' => 'ModifyVpcEndpointConnectionNotification', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcEndpointConnectionNotificationRequest', ], 'output' => [ 'shape' => 'ModifyVpcEndpointConnectionNotificationResult', ], ], 'ModifyVpcEndpointServiceConfiguration' => [ 'name' => 'ModifyVpcEndpointServiceConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcEndpointServiceConfigurationRequest', ], 'output' => [ 'shape' => 'ModifyVpcEndpointServiceConfigurationResult', ], ], 'ModifyVpcEndpointServicePayerResponsibility' => [ 'name' => 'ModifyVpcEndpointServicePayerResponsibility', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcEndpointServicePayerResponsibilityRequest', ], 'output' => [ 'shape' => 'ModifyVpcEndpointServicePayerResponsibilityResult', ], ], 'ModifyVpcEndpointServicePermissions' => [ 'name' => 'ModifyVpcEndpointServicePermissions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcEndpointServicePermissionsRequest', ], 'output' => [ 'shape' => 'ModifyVpcEndpointServicePermissionsResult', ], ], 'ModifyVpcPeeringConnectionOptions' => [ 'name' => 'ModifyVpcPeeringConnectionOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcPeeringConnectionOptionsRequest', ], 'output' => [ 'shape' => 'ModifyVpcPeeringConnectionOptionsResult', ], ], 'ModifyVpcTenancy' => [ 'name' => 'ModifyVpcTenancy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcTenancyRequest', ], 'output' => [ 'shape' => 'ModifyVpcTenancyResult', ], ], 'ModifyVpnConnection' => [ 'name' => 'ModifyVpnConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpnConnectionRequest', ], 'output' => [ 'shape' => 'ModifyVpnConnectionResult', ], ], 'ModifyVpnConnectionOptions' => [ 'name' => 'ModifyVpnConnectionOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpnConnectionOptionsRequest', ], 'output' => [ 'shape' => 'ModifyVpnConnectionOptionsResult', ], ], 'ModifyVpnTunnelCertificate' => [ 'name' => 'ModifyVpnTunnelCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpnTunnelCertificateRequest', ], 'output' => [ 'shape' => 'ModifyVpnTunnelCertificateResult', ], ], 'ModifyVpnTunnelOptions' => [ 'name' => 'ModifyVpnTunnelOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpnTunnelOptionsRequest', ], 'output' => [ 'shape' => 'ModifyVpnTunnelOptionsResult', ], ], 'MonitorInstances' => [ 'name' => 'MonitorInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'MonitorInstancesRequest', ], 'output' => [ 'shape' => 'MonitorInstancesResult', ], ], 'MoveAddressToVpc' => [ 'name' => 'MoveAddressToVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'MoveAddressToVpcRequest', ], 'output' => [ 'shape' => 'MoveAddressToVpcResult', ], ], 'MoveByoipCidrToIpam' => [ 'name' => 'MoveByoipCidrToIpam', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'MoveByoipCidrToIpamRequest', ], 'output' => [ 'shape' => 'MoveByoipCidrToIpamResult', ], ], 'ProvisionByoipCidr' => [ 'name' => 'ProvisionByoipCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ProvisionByoipCidrRequest', ], 'output' => [ 'shape' => 'ProvisionByoipCidrResult', ], ], 'ProvisionIpamByoasn' => [ 'name' => 'ProvisionIpamByoasn', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ProvisionIpamByoasnRequest', ], 'output' => [ 'shape' => 'ProvisionIpamByoasnResult', ], ], 'ProvisionIpamPoolCidr' => [ 'name' => 'ProvisionIpamPoolCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ProvisionIpamPoolCidrRequest', ], 'output' => [ 'shape' => 'ProvisionIpamPoolCidrResult', ], ], 'ProvisionPublicIpv4PoolCidr' => [ 'name' => 'ProvisionPublicIpv4PoolCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ProvisionPublicIpv4PoolCidrRequest', ], 'output' => [ 'shape' => 'ProvisionPublicIpv4PoolCidrResult', ], ], 'PurchaseCapacityBlock' => [ 'name' => 'PurchaseCapacityBlock', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseCapacityBlockRequest', ], 'output' => [ 'shape' => 'PurchaseCapacityBlockResult', ], ], 'PurchaseHostReservation' => [ 'name' => 'PurchaseHostReservation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseHostReservationRequest', ], 'output' => [ 'shape' => 'PurchaseHostReservationResult', ], ], 'PurchaseReservedInstancesOffering' => [ 'name' => 'PurchaseReservedInstancesOffering', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseReservedInstancesOfferingRequest', ], 'output' => [ 'shape' => 'PurchaseReservedInstancesOfferingResult', ], ], 'PurchaseScheduledInstances' => [ 'name' => 'PurchaseScheduledInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseScheduledInstancesRequest', ], 'output' => [ 'shape' => 'PurchaseScheduledInstancesResult', ], ], 'RebootInstances' => [ 'name' => 'RebootInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RebootInstancesRequest', ], ], 'RegisterImage' => [ 'name' => 'RegisterImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RegisterImageRequest', ], 'output' => [ 'shape' => 'RegisterImageResult', ], ], 'RegisterInstanceEventNotificationAttributes' => [ 'name' => 'RegisterInstanceEventNotificationAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RegisterInstanceEventNotificationAttributesRequest', ], 'output' => [ 'shape' => 'RegisterInstanceEventNotificationAttributesResult', ], ], 'RegisterTransitGatewayMulticastGroupMembers' => [ 'name' => 'RegisterTransitGatewayMulticastGroupMembers', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RegisterTransitGatewayMulticastGroupMembersRequest', ], 'output' => [ 'shape' => 'RegisterTransitGatewayMulticastGroupMembersResult', ], ], 'RegisterTransitGatewayMulticastGroupSources' => [ 'name' => 'RegisterTransitGatewayMulticastGroupSources', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RegisterTransitGatewayMulticastGroupSourcesRequest', ], 'output' => [ 'shape' => 'RegisterTransitGatewayMulticastGroupSourcesResult', ], ], 'RejectTransitGatewayMulticastDomainAssociations' => [ 'name' => 'RejectTransitGatewayMulticastDomainAssociations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RejectTransitGatewayMulticastDomainAssociationsRequest', ], 'output' => [ 'shape' => 'RejectTransitGatewayMulticastDomainAssociationsResult', ], ], 'RejectTransitGatewayPeeringAttachment' => [ 'name' => 'RejectTransitGatewayPeeringAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RejectTransitGatewayPeeringAttachmentRequest', ], 'output' => [ 'shape' => 'RejectTransitGatewayPeeringAttachmentResult', ], ], 'RejectTransitGatewayVpcAttachment' => [ 'name' => 'RejectTransitGatewayVpcAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RejectTransitGatewayVpcAttachmentRequest', ], 'output' => [ 'shape' => 'RejectTransitGatewayVpcAttachmentResult', ], ], 'RejectVpcEndpointConnections' => [ 'name' => 'RejectVpcEndpointConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RejectVpcEndpointConnectionsRequest', ], 'output' => [ 'shape' => 'RejectVpcEndpointConnectionsResult', ], ], 'RejectVpcPeeringConnection' => [ 'name' => 'RejectVpcPeeringConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RejectVpcPeeringConnectionRequest', ], 'output' => [ 'shape' => 'RejectVpcPeeringConnectionResult', ], ], 'ReleaseAddress' => [ 'name' => 'ReleaseAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReleaseAddressRequest', ], ], 'ReleaseHosts' => [ 'name' => 'ReleaseHosts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReleaseHostsRequest', ], 'output' => [ 'shape' => 'ReleaseHostsResult', ], ], 'ReleaseIpamPoolAllocation' => [ 'name' => 'ReleaseIpamPoolAllocation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReleaseIpamPoolAllocationRequest', ], 'output' => [ 'shape' => 'ReleaseIpamPoolAllocationResult', ], ], 'ReplaceIamInstanceProfileAssociation' => [ 'name' => 'ReplaceIamInstanceProfileAssociation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceIamInstanceProfileAssociationRequest', ], 'output' => [ 'shape' => 'ReplaceIamInstanceProfileAssociationResult', ], ], 'ReplaceNetworkAclAssociation' => [ 'name' => 'ReplaceNetworkAclAssociation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceNetworkAclAssociationRequest', ], 'output' => [ 'shape' => 'ReplaceNetworkAclAssociationResult', ], ], 'ReplaceNetworkAclEntry' => [ 'name' => 'ReplaceNetworkAclEntry', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceNetworkAclEntryRequest', ], ], 'ReplaceRoute' => [ 'name' => 'ReplaceRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceRouteRequest', ], ], 'ReplaceRouteTableAssociation' => [ 'name' => 'ReplaceRouteTableAssociation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceRouteTableAssociationRequest', ], 'output' => [ 'shape' => 'ReplaceRouteTableAssociationResult', ], ], 'ReplaceTransitGatewayRoute' => [ 'name' => 'ReplaceTransitGatewayRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceTransitGatewayRouteRequest', ], 'output' => [ 'shape' => 'ReplaceTransitGatewayRouteResult', ], ], 'ReplaceVpnTunnel' => [ 'name' => 'ReplaceVpnTunnel', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceVpnTunnelRequest', ], 'output' => [ 'shape' => 'ReplaceVpnTunnelResult', ], ], 'ReportInstanceStatus' => [ 'name' => 'ReportInstanceStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReportInstanceStatusRequest', ], ], 'RequestSpotFleet' => [ 'name' => 'RequestSpotFleet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RequestSpotFleetRequest', ], 'output' => [ 'shape' => 'RequestSpotFleetResponse', ], ], 'RequestSpotInstances' => [ 'name' => 'RequestSpotInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RequestSpotInstancesRequest', ], 'output' => [ 'shape' => 'RequestSpotInstancesResult', ], ], 'ResetAddressAttribute' => [ 'name' => 'ResetAddressAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetAddressAttributeRequest', ], 'output' => [ 'shape' => 'ResetAddressAttributeResult', ], ], 'ResetEbsDefaultKmsKeyId' => [ 'name' => 'ResetEbsDefaultKmsKeyId', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetEbsDefaultKmsKeyIdRequest', ], 'output' => [ 'shape' => 'ResetEbsDefaultKmsKeyIdResult', ], ], 'ResetFpgaImageAttribute' => [ 'name' => 'ResetFpgaImageAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetFpgaImageAttributeRequest', ], 'output' => [ 'shape' => 'ResetFpgaImageAttributeResult', ], ], 'ResetImageAttribute' => [ 'name' => 'ResetImageAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetImageAttributeRequest', ], ], 'ResetInstanceAttribute' => [ 'name' => 'ResetInstanceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetInstanceAttributeRequest', ], ], 'ResetNetworkInterfaceAttribute' => [ 'name' => 'ResetNetworkInterfaceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetNetworkInterfaceAttributeRequest', ], ], 'ResetSnapshotAttribute' => [ 'name' => 'ResetSnapshotAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetSnapshotAttributeRequest', ], ], 'RestoreAddressToClassic' => [ 'name' => 'RestoreAddressToClassic', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreAddressToClassicRequest', ], 'output' => [ 'shape' => 'RestoreAddressToClassicResult', ], ], 'RestoreImageFromRecycleBin' => [ 'name' => 'RestoreImageFromRecycleBin', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreImageFromRecycleBinRequest', ], 'output' => [ 'shape' => 'RestoreImageFromRecycleBinResult', ], ], 'RestoreManagedPrefixListVersion' => [ 'name' => 'RestoreManagedPrefixListVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreManagedPrefixListVersionRequest', ], 'output' => [ 'shape' => 'RestoreManagedPrefixListVersionResult', ], ], 'RestoreSnapshotFromRecycleBin' => [ 'name' => 'RestoreSnapshotFromRecycleBin', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreSnapshotFromRecycleBinRequest', ], 'output' => [ 'shape' => 'RestoreSnapshotFromRecycleBinResult', ], ], 'RestoreSnapshotTier' => [ 'name' => 'RestoreSnapshotTier', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreSnapshotTierRequest', ], 'output' => [ 'shape' => 'RestoreSnapshotTierResult', ], ], 'RevokeClientVpnIngress' => [ 'name' => 'RevokeClientVpnIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeClientVpnIngressRequest', ], 'output' => [ 'shape' => 'RevokeClientVpnIngressResult', ], ], 'RevokeSecurityGroupEgress' => [ 'name' => 'RevokeSecurityGroupEgress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeSecurityGroupEgressRequest', ], 'output' => [ 'shape' => 'RevokeSecurityGroupEgressResult', ], ], 'RevokeSecurityGroupIngress' => [ 'name' => 'RevokeSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeSecurityGroupIngressRequest', ], 'output' => [ 'shape' => 'RevokeSecurityGroupIngressResult', ], ], 'RunInstances' => [ 'name' => 'RunInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RunInstancesRequest', ], 'output' => [ 'shape' => 'Reservation', ], ], 'RunScheduledInstances' => [ 'name' => 'RunScheduledInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RunScheduledInstancesRequest', ], 'output' => [ 'shape' => 'RunScheduledInstancesResult', ], ], 'SearchLocalGatewayRoutes' => [ 'name' => 'SearchLocalGatewayRoutes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SearchLocalGatewayRoutesRequest', ], 'output' => [ 'shape' => 'SearchLocalGatewayRoutesResult', ], ], 'SearchTransitGatewayMulticastGroups' => [ 'name' => 'SearchTransitGatewayMulticastGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SearchTransitGatewayMulticastGroupsRequest', ], 'output' => [ 'shape' => 'SearchTransitGatewayMulticastGroupsResult', ], ], 'SearchTransitGatewayRoutes' => [ 'name' => 'SearchTransitGatewayRoutes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SearchTransitGatewayRoutesRequest', ], 'output' => [ 'shape' => 'SearchTransitGatewayRoutesResult', ], ], 'SendDiagnosticInterrupt' => [ 'name' => 'SendDiagnosticInterrupt', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SendDiagnosticInterruptRequest', ], ], 'StartInstances' => [ 'name' => 'StartInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartInstancesRequest', ], 'output' => [ 'shape' => 'StartInstancesResult', ], ], 'StartNetworkInsightsAccessScopeAnalysis' => [ 'name' => 'StartNetworkInsightsAccessScopeAnalysis', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartNetworkInsightsAccessScopeAnalysisRequest', ], 'output' => [ 'shape' => 'StartNetworkInsightsAccessScopeAnalysisResult', ], ], 'StartNetworkInsightsAnalysis' => [ 'name' => 'StartNetworkInsightsAnalysis', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartNetworkInsightsAnalysisRequest', ], 'output' => [ 'shape' => 'StartNetworkInsightsAnalysisResult', ], ], 'StartVpcEndpointServicePrivateDnsVerification' => [ 'name' => 'StartVpcEndpointServicePrivateDnsVerification', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartVpcEndpointServicePrivateDnsVerificationRequest', ], 'output' => [ 'shape' => 'StartVpcEndpointServicePrivateDnsVerificationResult', ], ], 'StopInstances' => [ 'name' => 'StopInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StopInstancesRequest', ], 'output' => [ 'shape' => 'StopInstancesResult', ], ], 'TerminateClientVpnConnections' => [ 'name' => 'TerminateClientVpnConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'TerminateClientVpnConnectionsRequest', ], 'output' => [ 'shape' => 'TerminateClientVpnConnectionsResult', ], ], 'TerminateInstances' => [ 'name' => 'TerminateInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'TerminateInstancesRequest', ], 'output' => [ 'shape' => 'TerminateInstancesResult', ], ], 'UnassignIpv6Addresses' => [ 'name' => 'UnassignIpv6Addresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UnassignIpv6AddressesRequest', ], 'output' => [ 'shape' => 'UnassignIpv6AddressesResult', ], ], 'UnassignPrivateIpAddresses' => [ 'name' => 'UnassignPrivateIpAddresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UnassignPrivateIpAddressesRequest', ], ], 'UnassignPrivateNatGatewayAddress' => [ 'name' => 'UnassignPrivateNatGatewayAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UnassignPrivateNatGatewayAddressRequest', ], 'output' => [ 'shape' => 'UnassignPrivateNatGatewayAddressResult', ], ], 'UnlockSnapshot' => [ 'name' => 'UnlockSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UnlockSnapshotRequest', ], 'output' => [ 'shape' => 'UnlockSnapshotResult', ], ], 'UnmonitorInstances' => [ 'name' => 'UnmonitorInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UnmonitorInstancesRequest', ], 'output' => [ 'shape' => 'UnmonitorInstancesResult', ], ], 'UpdateSecurityGroupRuleDescriptionsEgress' => [ 'name' => 'UpdateSecurityGroupRuleDescriptionsEgress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateSecurityGroupRuleDescriptionsEgressRequest', ], 'output' => [ 'shape' => 'UpdateSecurityGroupRuleDescriptionsEgressResult', ], ], 'UpdateSecurityGroupRuleDescriptionsIngress' => [ 'name' => 'UpdateSecurityGroupRuleDescriptionsIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateSecurityGroupRuleDescriptionsIngressRequest', ], 'output' => [ 'shape' => 'UpdateSecurityGroupRuleDescriptionsIngressResult', ], ], 'WithdrawByoipCidr' => [ 'name' => 'WithdrawByoipCidr', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'WithdrawByoipCidrRequest', ], 'output' => [ 'shape' => 'WithdrawByoipCidrResult', ], ], ], 'shapes' => [ 'AcceleratorCount' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Integer', 'locationName' => 'max', ], ], ], 'AcceleratorCountRequest' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', ], 'Max' => [ 'shape' => 'Integer', ], ], ], 'AcceleratorManufacturer' => [ 'type' => 'string', 'enum' => [ 'amazon-web-services', 'amd', 'nvidia', 'xilinx', 'habana', ], ], 'AcceleratorManufacturerSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AcceleratorManufacturer', 'locationName' => 'item', ], ], 'AcceleratorName' => [ 'type' => 'string', 'enum' => [ 'a100', 'inferentia', 'k520', 'k80', 'm60', 'radeon-pro-v520', 't4', 'vu9p', 'v100', 'a10g', 'h100', 't4g', ], ], 'AcceleratorNameSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AcceleratorName', 'locationName' => 'item', ], ], 'AcceleratorTotalMemoryMiB' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Integer', 'locationName' => 'max', ], ], ], 'AcceleratorTotalMemoryMiBRequest' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', ], 'Max' => [ 'shape' => 'Integer', ], ], ], 'AcceleratorType' => [ 'type' => 'string', 'enum' => [ 'gpu', 'fpga', 'inference', ], ], 'AcceleratorTypeSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AcceleratorType', 'locationName' => 'item', ], ], 'AcceptAddressTransferRequest' => [ 'type' => 'structure', 'required' => [ 'Address', ], 'members' => [ 'Address' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AcceptAddressTransferResult' => [ 'type' => 'structure', 'members' => [ 'AddressTransfer' => [ 'shape' => 'AddressTransfer', 'locationName' => 'addressTransfer', ], ], ], 'AcceptReservedInstancesExchangeQuoteRequest' => [ 'type' => 'structure', 'required' => [ 'ReservedInstanceIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ReservedInstanceIds' => [ 'shape' => 'ReservedInstanceIdSet', 'locationName' => 'ReservedInstanceId', ], 'TargetConfigurations' => [ 'shape' => 'TargetConfigurationRequestSet', 'locationName' => 'TargetConfiguration', ], ], ], 'AcceptReservedInstancesExchangeQuoteResult' => [ 'type' => 'structure', 'members' => [ 'ExchangeId' => [ 'shape' => 'String', 'locationName' => 'exchangeId', ], ], ], 'AcceptTransitGatewayMulticastDomainAssociationsRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'SubnetIds' => [ 'shape' => 'ValueStringList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AcceptTransitGatewayMulticastDomainAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'Associations' => [ 'shape' => 'TransitGatewayMulticastDomainAssociations', 'locationName' => 'associations', ], ], ], 'AcceptTransitGatewayPeeringAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AcceptTransitGatewayPeeringAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPeeringAttachment' => [ 'shape' => 'TransitGatewayPeeringAttachment', 'locationName' => 'transitGatewayPeeringAttachment', ], ], ], 'AcceptTransitGatewayVpcAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AcceptTransitGatewayVpcAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayVpcAttachment' => [ 'shape' => 'TransitGatewayVpcAttachment', 'locationName' => 'transitGatewayVpcAttachment', ], ], ], 'AcceptVpcEndpointConnectionsRequest' => [ 'type' => 'structure', 'required' => [ 'ServiceId', 'VpcEndpointIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceId' => [ 'shape' => 'VpcEndpointServiceId', ], 'VpcEndpointIds' => [ 'shape' => 'VpcEndpointIdList', 'locationName' => 'VpcEndpointId', ], ], ], 'AcceptVpcEndpointConnectionsResult' => [ 'type' => 'structure', 'members' => [ 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemSet', 'locationName' => 'unsuccessful', ], ], ], 'AcceptVpcPeeringConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'VpcPeeringConnectionId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcPeeringConnectionId' => [ 'shape' => 'VpcPeeringConnectionIdWithResolver', 'locationName' => 'vpcPeeringConnectionId', ], ], ], 'AcceptVpcPeeringConnectionResult' => [ 'type' => 'structure', 'members' => [ 'VpcPeeringConnection' => [ 'shape' => 'VpcPeeringConnection', 'locationName' => 'vpcPeeringConnection', ], ], ], 'AccessScopeAnalysisFinding' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeAnalysisId' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisId', 'locationName' => 'networkInsightsAccessScopeAnalysisId', ], 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', 'locationName' => 'networkInsightsAccessScopeId', ], 'FindingId' => [ 'shape' => 'String', 'locationName' => 'findingId', ], 'FindingComponents' => [ 'shape' => 'PathComponentList', 'locationName' => 'findingComponentSet', ], ], ], 'AccessScopeAnalysisFindingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccessScopeAnalysisFinding', 'locationName' => 'item', ], ], 'AccessScopePath' => [ 'type' => 'structure', 'members' => [ 'Source' => [ 'shape' => 'PathStatement', 'locationName' => 'source', ], 'Destination' => [ 'shape' => 'PathStatement', 'locationName' => 'destination', ], 'ThroughResources' => [ 'shape' => 'ThroughResourcesStatementList', 'locationName' => 'throughResourceSet', ], ], ], 'AccessScopePathList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccessScopePath', 'locationName' => 'item', ], ], 'AccessScopePathListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccessScopePathRequest', 'locationName' => 'item', ], ], 'AccessScopePathRequest' => [ 'type' => 'structure', 'members' => [ 'Source' => [ 'shape' => 'PathStatementRequest', ], 'Destination' => [ 'shape' => 'PathStatementRequest', ], 'ThroughResources' => [ 'shape' => 'ThroughResourcesStatementRequestList', 'locationName' => 'ThroughResource', ], ], ], 'AccountAttribute' => [ 'type' => 'structure', 'members' => [ 'AttributeName' => [ 'shape' => 'String', 'locationName' => 'attributeName', ], 'AttributeValues' => [ 'shape' => 'AccountAttributeValueList', 'locationName' => 'attributeValueSet', ], ], ], 'AccountAttributeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccountAttribute', 'locationName' => 'item', ], ], 'AccountAttributeName' => [ 'type' => 'string', 'enum' => [ 'supported-platforms', 'default-vpc', ], ], 'AccountAttributeNameStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccountAttributeName', 'locationName' => 'attributeName', ], ], 'AccountAttributeValue' => [ 'type' => 'structure', 'members' => [ 'AttributeValue' => [ 'shape' => 'String', 'locationName' => 'attributeValue', ], ], ], 'AccountAttributeValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccountAttributeValue', 'locationName' => 'item', ], ], 'ActiveInstance' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'SpotInstanceRequestId' => [ 'shape' => 'String', 'locationName' => 'spotInstanceRequestId', ], 'InstanceHealth' => [ 'shape' => 'InstanceHealthStatus', 'locationName' => 'instanceHealth', ], ], ], 'ActiveInstanceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ActiveInstance', 'locationName' => 'item', ], ], 'ActivityStatus' => [ 'type' => 'string', 'enum' => [ 'error', 'pending_fulfillment', 'pending_termination', 'fulfilled', ], ], 'AddIpamOperatingRegion' => [ 'type' => 'structure', 'members' => [ 'RegionName' => [ 'shape' => 'String', ], ], ], 'AddIpamOperatingRegionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AddIpamOperatingRegion', ], 'max' => 50, 'min' => 0, ], 'AddPrefixListEntries' => [ 'type' => 'list', 'member' => [ 'shape' => 'AddPrefixListEntry', ], 'max' => 100, 'min' => 0, ], 'AddPrefixListEntry' => [ 'type' => 'structure', 'required' => [ 'Cidr', ], 'members' => [ 'Cidr' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], ], ], 'AddedPrincipal' => [ 'type' => 'structure', 'members' => [ 'PrincipalType' => [ 'shape' => 'PrincipalType', 'locationName' => 'principalType', ], 'Principal' => [ 'shape' => 'String', 'locationName' => 'principal', ], 'ServicePermissionId' => [ 'shape' => 'String', 'locationName' => 'servicePermissionId', ], 'ServiceId' => [ 'shape' => 'String', 'locationName' => 'serviceId', ], ], ], 'AddedPrincipalSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AddedPrincipal', 'locationName' => 'item', ], ], 'AdditionalDetail' => [ 'type' => 'structure', 'members' => [ 'AdditionalDetailType' => [ 'shape' => 'String', 'locationName' => 'additionalDetailType', ], 'Component' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'component', ], 'VpcEndpointService' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'vpcEndpointService', ], 'RuleOptions' => [ 'shape' => 'RuleOptionList', 'locationName' => 'ruleOptionSet', ], 'RuleGroupTypePairs' => [ 'shape' => 'RuleGroupTypePairList', 'locationName' => 'ruleGroupTypePairSet', ], 'RuleGroupRuleOptionsPairs' => [ 'shape' => 'RuleGroupRuleOptionsPairList', 'locationName' => 'ruleGroupRuleOptionsPairSet', ], 'ServiceName' => [ 'shape' => 'String', 'locationName' => 'serviceName', ], 'LoadBalancers' => [ 'shape' => 'AnalysisComponentList', 'locationName' => 'loadBalancerSet', ], ], ], 'AdditionalDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AdditionalDetail', 'locationName' => 'item', ], ], 'Address' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'Domain' => [ 'shape' => 'DomainType', 'locationName' => 'domain', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'NetworkInterfaceOwnerId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceOwnerId', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'PublicIpv4Pool' => [ 'shape' => 'String', 'locationName' => 'publicIpv4Pool', ], 'NetworkBorderGroup' => [ 'shape' => 'String', 'locationName' => 'networkBorderGroup', ], 'CustomerOwnedIp' => [ 'shape' => 'String', 'locationName' => 'customerOwnedIp', ], 'CustomerOwnedIpv4Pool' => [ 'shape' => 'String', 'locationName' => 'customerOwnedIpv4Pool', ], 'CarrierIp' => [ 'shape' => 'String', 'locationName' => 'carrierIp', ], ], ], 'AddressAttribute' => [ 'type' => 'structure', 'members' => [ 'PublicIp' => [ 'shape' => 'PublicIpAddress', 'locationName' => 'publicIp', ], 'AllocationId' => [ 'shape' => 'AllocationId', 'locationName' => 'allocationId', ], 'PtrRecord' => [ 'shape' => 'String', 'locationName' => 'ptrRecord', ], 'PtrRecordUpdate' => [ 'shape' => 'PtrUpdateStatus', 'locationName' => 'ptrRecordUpdate', ], ], ], 'AddressAttributeName' => [ 'type' => 'string', 'enum' => [ 'domain-name', ], ], 'AddressFamily' => [ 'type' => 'string', 'enum' => [ 'ipv4', 'ipv6', ], ], 'AddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Address', 'locationName' => 'item', ], ], 'AddressMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'AddressSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AddressAttribute', 'locationName' => 'item', ], ], 'AddressTransfer' => [ 'type' => 'structure', 'members' => [ 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'TransferAccountId' => [ 'shape' => 'String', 'locationName' => 'transferAccountId', ], 'TransferOfferExpirationTimestamp' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'transferOfferExpirationTimestamp', ], 'TransferOfferAcceptedTimestamp' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'transferOfferAcceptedTimestamp', ], 'AddressTransferStatus' => [ 'shape' => 'AddressTransferStatus', 'locationName' => 'addressTransferStatus', ], ], ], 'AddressTransferList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AddressTransfer', 'locationName' => 'item', ], ], 'AddressTransferStatus' => [ 'type' => 'string', 'enum' => [ 'pending', 'disabled', 'accepted', ], ], 'AdvertiseByoipCidrRequest' => [ 'type' => 'structure', 'required' => [ 'Cidr', ], 'members' => [ 'Cidr' => [ 'shape' => 'String', ], 'Asn' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NetworkBorderGroup' => [ 'shape' => 'String', ], ], ], 'AdvertiseByoipCidrResult' => [ 'type' => 'structure', 'members' => [ 'ByoipCidr' => [ 'shape' => 'ByoipCidr', 'locationName' => 'byoipCidr', ], ], ], 'Affinity' => [ 'type' => 'string', 'enum' => [ 'default', 'host', ], ], 'AllocateAddressRequest' => [ 'type' => 'structure', 'members' => [ 'Domain' => [ 'shape' => 'DomainType', ], 'Address' => [ 'shape' => 'PublicIpAddress', ], 'PublicIpv4Pool' => [ 'shape' => 'Ipv4PoolEc2Id', ], 'NetworkBorderGroup' => [ 'shape' => 'String', ], 'CustomerOwnedIpv4Pool' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'AllocateAddressResult' => [ 'type' => 'structure', 'members' => [ 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'PublicIpv4Pool' => [ 'shape' => 'String', 'locationName' => 'publicIpv4Pool', ], 'NetworkBorderGroup' => [ 'shape' => 'String', 'locationName' => 'networkBorderGroup', ], 'Domain' => [ 'shape' => 'DomainType', 'locationName' => 'domain', ], 'CustomerOwnedIp' => [ 'shape' => 'String', 'locationName' => 'customerOwnedIp', ], 'CustomerOwnedIpv4Pool' => [ 'shape' => 'String', 'locationName' => 'customerOwnedIpv4Pool', ], 'CarrierIp' => [ 'shape' => 'String', 'locationName' => 'carrierIp', ], ], ], 'AllocateHostsRequest' => [ 'type' => 'structure', 'required' => [ 'AvailabilityZone', ], 'members' => [ 'AutoPlacement' => [ 'shape' => 'AutoPlacement', 'locationName' => 'autoPlacement', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'InstanceFamily' => [ 'shape' => 'String', ], 'Quantity' => [ 'shape' => 'Integer', 'locationName' => 'quantity', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'HostRecovery' => [ 'shape' => 'HostRecovery', ], 'OutpostArn' => [ 'shape' => 'String', ], 'HostMaintenance' => [ 'shape' => 'HostMaintenance', ], 'AssetIds' => [ 'shape' => 'AssetIdList', 'locationName' => 'AssetId', ], ], ], 'AllocateHostsResult' => [ 'type' => 'structure', 'members' => [ 'HostIds' => [ 'shape' => 'ResponseHostIdList', 'locationName' => 'hostIdSet', ], ], ], 'AllocateIpamPoolCidrRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Cidr' => [ 'shape' => 'String', ], 'NetmaskLength' => [ 'shape' => 'Integer', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'Description' => [ 'shape' => 'String', ], 'PreviewNextCidr' => [ 'shape' => 'Boolean', ], 'AllowedCidrs' => [ 'shape' => 'IpamPoolAllocationAllowedCidrs', 'locationName' => 'AllowedCidr', ], 'DisallowedCidrs' => [ 'shape' => 'IpamPoolAllocationDisallowedCidrs', 'locationName' => 'DisallowedCidr', ], ], ], 'AllocateIpamPoolCidrResult' => [ 'type' => 'structure', 'members' => [ 'IpamPoolAllocation' => [ 'shape' => 'IpamPoolAllocation', 'locationName' => 'ipamPoolAllocation', ], ], ], 'AllocationId' => [ 'type' => 'string', ], 'AllocationIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllocationId', 'locationName' => 'AllocationId', ], ], 'AllocationIds' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllocationId', 'locationName' => 'item', ], ], 'AllocationState' => [ 'type' => 'string', 'enum' => [ 'available', 'under-assessment', 'permanent-failure', 'released', 'released-permanent-failure', 'pending', ], ], 'AllocationStrategy' => [ 'type' => 'string', 'enum' => [ 'lowestPrice', 'diversified', 'capacityOptimized', 'capacityOptimizedPrioritized', 'priceCapacityOptimized', ], ], 'AllocationType' => [ 'type' => 'string', 'enum' => [ 'used', ], ], 'AllowedInstanceType' => [ 'type' => 'string', 'max' => 30, 'min' => 1, 'pattern' => '[a-zA-Z0-9\\.\\*\\-]+', ], 'AllowedInstanceTypeSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllowedInstanceType', 'locationName' => 'item', ], 'max' => 400, 'min' => 0, ], 'AllowedPrincipal' => [ 'type' => 'structure', 'members' => [ 'PrincipalType' => [ 'shape' => 'PrincipalType', 'locationName' => 'principalType', ], 'Principal' => [ 'shape' => 'String', 'locationName' => 'principal', ], 'ServicePermissionId' => [ 'shape' => 'String', 'locationName' => 'servicePermissionId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'ServiceId' => [ 'shape' => 'String', 'locationName' => 'serviceId', ], ], ], 'AllowedPrincipalSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllowedPrincipal', 'locationName' => 'item', ], ], 'AllowsMultipleInstanceTypes' => [ 'type' => 'string', 'enum' => [ 'on', 'off', ], ], 'AlternatePathHint' => [ 'type' => 'structure', 'members' => [ 'ComponentId' => [ 'shape' => 'String', 'locationName' => 'componentId', ], 'ComponentArn' => [ 'shape' => 'String', 'locationName' => 'componentArn', ], ], ], 'AlternatePathHintList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AlternatePathHint', 'locationName' => 'item', ], ], 'AmdSevSnpSpecification' => [ 'type' => 'string', 'enum' => [ 'enabled', 'disabled', ], ], 'AnalysisAclRule' => [ 'type' => 'structure', 'members' => [ 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'Egress' => [ 'shape' => 'Boolean', 'locationName' => 'egress', ], 'PortRange' => [ 'shape' => 'PortRange', 'locationName' => 'portRange', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], 'RuleAction' => [ 'shape' => 'String', 'locationName' => 'ruleAction', ], 'RuleNumber' => [ 'shape' => 'Integer', 'locationName' => 'ruleNumber', ], ], ], 'AnalysisComponent' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'String', 'locationName' => 'id', ], 'Arn' => [ 'shape' => 'String', 'locationName' => 'arn', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], ], ], 'AnalysisComponentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'item', ], ], 'AnalysisLoadBalancerListener' => [ 'type' => 'structure', 'members' => [ 'LoadBalancerPort' => [ 'shape' => 'Port', 'locationName' => 'loadBalancerPort', ], 'InstancePort' => [ 'shape' => 'Port', 'locationName' => 'instancePort', ], ], ], 'AnalysisLoadBalancerTarget' => [ 'type' => 'structure', 'members' => [ 'Address' => [ 'shape' => 'IpAddress', 'locationName' => 'address', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Instance' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'instance', ], 'Port' => [ 'shape' => 'Port', 'locationName' => 'port', ], ], ], 'AnalysisPacketHeader' => [ 'type' => 'structure', 'members' => [ 'DestinationAddresses' => [ 'shape' => 'IpAddressList', 'locationName' => 'destinationAddressSet', ], 'DestinationPortRanges' => [ 'shape' => 'PortRangeList', 'locationName' => 'destinationPortRangeSet', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], 'SourceAddresses' => [ 'shape' => 'IpAddressList', 'locationName' => 'sourceAddressSet', ], 'SourcePortRanges' => [ 'shape' => 'PortRangeList', 'locationName' => 'sourcePortRangeSet', ], ], ], 'AnalysisRouteTableRoute' => [ 'type' => 'structure', 'members' => [ 'DestinationCidr' => [ 'shape' => 'String', 'locationName' => 'destinationCidr', ], 'DestinationPrefixListId' => [ 'shape' => 'String', 'locationName' => 'destinationPrefixListId', ], 'EgressOnlyInternetGatewayId' => [ 'shape' => 'String', 'locationName' => 'egressOnlyInternetGatewayId', ], 'GatewayId' => [ 'shape' => 'String', 'locationName' => 'gatewayId', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'NatGatewayId' => [ 'shape' => 'String', 'locationName' => 'natGatewayId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'Origin' => [ 'shape' => 'String', 'locationName' => 'origin', ], 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'CarrierGatewayId' => [ 'shape' => 'String', 'locationName' => 'carrierGatewayId', ], 'CoreNetworkArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'coreNetworkArn', ], 'LocalGatewayId' => [ 'shape' => 'String', 'locationName' => 'localGatewayId', ], ], ], 'AnalysisSecurityGroupRule' => [ 'type' => 'structure', 'members' => [ 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'Direction' => [ 'shape' => 'String', 'locationName' => 'direction', ], 'SecurityGroupId' => [ 'shape' => 'String', 'locationName' => 'securityGroupId', ], 'PortRange' => [ 'shape' => 'PortRange', 'locationName' => 'portRange', ], 'PrefixListId' => [ 'shape' => 'String', 'locationName' => 'prefixListId', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], ], ], 'AnalysisStatus' => [ 'type' => 'string', 'enum' => [ 'running', 'succeeded', 'failed', ], ], 'ApplianceModeSupportValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'ApplySecurityGroupsToClientVpnTargetNetworkRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', 'VpcId', 'SecurityGroupIds', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'SecurityGroupIds' => [ 'shape' => 'ClientVpnSecurityGroupIdSet', 'locationName' => 'SecurityGroupId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ApplySecurityGroupsToClientVpnTargetNetworkResult' => [ 'type' => 'structure', 'members' => [ 'SecurityGroupIds' => [ 'shape' => 'ClientVpnSecurityGroupIdSet', 'locationName' => 'securityGroupIds', ], ], ], 'ArchitectureType' => [ 'type' => 'string', 'enum' => [ 'i386', 'x86_64', 'arm64', 'x86_64_mac', 'arm64_mac', ], ], 'ArchitectureTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ArchitectureType', 'locationName' => 'item', ], ], 'ArchitectureTypeSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ArchitectureType', 'locationName' => 'item', ], 'max' => 3, 'min' => 0, ], 'ArchitectureValues' => [ 'type' => 'string', 'enum' => [ 'i386', 'x86_64', 'arm64', 'x86_64_mac', 'arm64_mac', ], ], 'ArnList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceArn', 'locationName' => 'item', ], ], 'AsnAssociation' => [ 'type' => 'structure', 'members' => [ 'Asn' => [ 'shape' => 'String', 'locationName' => 'asn', ], 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'State' => [ 'shape' => 'AsnAssociationState', 'locationName' => 'state', ], ], ], 'AsnAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AsnAssociation', 'locationName' => 'item', ], ], 'AsnAssociationState' => [ 'type' => 'string', 'enum' => [ 'disassociated', 'failed-disassociation', 'failed-association', 'pending-disassociation', 'pending-association', 'associated', ], ], 'AsnAuthorizationContext' => [ 'type' => 'structure', 'required' => [ 'Message', 'Signature', ], 'members' => [ 'Message' => [ 'shape' => 'String', ], 'Signature' => [ 'shape' => 'String', ], ], ], 'AsnState' => [ 'type' => 'string', 'enum' => [ 'deprovisioned', 'failed-deprovision', 'failed-provision', 'pending-deprovision', 'pending-provision', 'provisioned', ], ], 'AssetId' => [ 'type' => 'string', ], 'AssetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AssetId', ], ], 'AssignIpv6AddressesRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'Ipv6AddressCount' => [ 'shape' => 'Integer', 'locationName' => 'ipv6AddressCount', ], 'Ipv6Addresses' => [ 'shape' => 'Ipv6AddressList', 'locationName' => 'ipv6Addresses', ], 'Ipv6PrefixCount' => [ 'shape' => 'Integer', ], 'Ipv6Prefixes' => [ 'shape' => 'IpPrefixList', 'locationName' => 'Ipv6Prefix', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], ], ], 'AssignIpv6AddressesResult' => [ 'type' => 'structure', 'members' => [ 'AssignedIpv6Addresses' => [ 'shape' => 'Ipv6AddressList', 'locationName' => 'assignedIpv6Addresses', ], 'AssignedIpv6Prefixes' => [ 'shape' => 'IpPrefixList', 'locationName' => 'assignedIpv6PrefixSet', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], ], ], 'AssignPrivateIpAddressesRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'AllowReassignment' => [ 'shape' => 'Boolean', 'locationName' => 'allowReassignment', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'PrivateIpAddresses' => [ 'shape' => 'PrivateIpAddressStringList', 'locationName' => 'privateIpAddress', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'secondaryPrivateIpAddressCount', ], 'Ipv4Prefixes' => [ 'shape' => 'IpPrefixList', 'locationName' => 'Ipv4Prefix', ], 'Ipv4PrefixCount' => [ 'shape' => 'Integer', ], ], ], 'AssignPrivateIpAddressesResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'AssignedPrivateIpAddresses' => [ 'shape' => 'AssignedPrivateIpAddressList', 'locationName' => 'assignedPrivateIpAddressesSet', ], 'AssignedIpv4Prefixes' => [ 'shape' => 'Ipv4PrefixesList', 'locationName' => 'assignedIpv4PrefixSet', ], ], ], 'AssignPrivateNatGatewayAddressRequest' => [ 'type' => 'structure', 'required' => [ 'NatGatewayId', ], 'members' => [ 'NatGatewayId' => [ 'shape' => 'NatGatewayId', ], 'PrivateIpAddresses' => [ 'shape' => 'IpList', 'locationName' => 'PrivateIpAddress', ], 'PrivateIpAddressCount' => [ 'shape' => 'PrivateIpAddressCount', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AssignPrivateNatGatewayAddressResult' => [ 'type' => 'structure', 'members' => [ 'NatGatewayId' => [ 'shape' => 'NatGatewayId', 'locationName' => 'natGatewayId', ], 'NatGatewayAddresses' => [ 'shape' => 'NatGatewayAddressList', 'locationName' => 'natGatewayAddressSet', ], ], ], 'AssignedPrivateIpAddress' => [ 'type' => 'structure', 'members' => [ 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], ], ], 'AssignedPrivateIpAddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AssignedPrivateIpAddress', 'locationName' => 'item', ], ], 'AssociateAddressRequest' => [ 'type' => 'structure', 'members' => [ 'AllocationId' => [ 'shape' => 'AllocationId', ], 'InstanceId' => [ 'shape' => 'InstanceId', ], 'PublicIp' => [ 'shape' => 'EipAllocationPublicIp', ], 'AllowReassociation' => [ 'shape' => 'Boolean', 'locationName' => 'allowReassociation', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], ], ], 'AssociateAddressResult' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], ], ], 'AssociateClientVpnTargetNetworkRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', 'SubnetId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AssociateClientVpnTargetNetworkResult' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'Status' => [ 'shape' => 'AssociationStatus', 'locationName' => 'status', ], ], ], 'AssociateDhcpOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'DhcpOptionsId', 'VpcId', ], 'members' => [ 'DhcpOptionsId' => [ 'shape' => 'DefaultingDhcpOptionsId', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'AssociateEnclaveCertificateIamRoleRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', 'RoleArn', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'CertificateId', ], 'RoleArn' => [ 'shape' => 'RoleId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AssociateEnclaveCertificateIamRoleResult' => [ 'type' => 'structure', 'members' => [ 'CertificateS3BucketName' => [ 'shape' => 'String', 'locationName' => 'certificateS3BucketName', ], 'CertificateS3ObjectKey' => [ 'shape' => 'String', 'locationName' => 'certificateS3ObjectKey', ], 'EncryptionKmsKeyId' => [ 'shape' => 'String', 'locationName' => 'encryptionKmsKeyId', ], ], ], 'AssociateIamInstanceProfileRequest' => [ 'type' => 'structure', 'required' => [ 'IamInstanceProfile', 'InstanceId', ], 'members' => [ 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfileSpecification', ], 'InstanceId' => [ 'shape' => 'InstanceId', ], ], ], 'AssociateIamInstanceProfileResult' => [ 'type' => 'structure', 'members' => [ 'IamInstanceProfileAssociation' => [ 'shape' => 'IamInstanceProfileAssociation', 'locationName' => 'iamInstanceProfileAssociation', ], ], ], 'AssociateInstanceEventWindowRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceEventWindowId', 'AssociationTarget', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceEventWindowId' => [ 'shape' => 'InstanceEventWindowId', ], 'AssociationTarget' => [ 'shape' => 'InstanceEventWindowAssociationRequest', ], ], ], 'AssociateInstanceEventWindowResult' => [ 'type' => 'structure', 'members' => [ 'InstanceEventWindow' => [ 'shape' => 'InstanceEventWindow', 'locationName' => 'instanceEventWindow', ], ], ], 'AssociateIpamByoasnRequest' => [ 'type' => 'structure', 'required' => [ 'Asn', 'Cidr', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Asn' => [ 'shape' => 'String', ], 'Cidr' => [ 'shape' => 'String', ], ], ], 'AssociateIpamByoasnResult' => [ 'type' => 'structure', 'members' => [ 'AsnAssociation' => [ 'shape' => 'AsnAssociation', 'locationName' => 'asnAssociation', ], ], ], 'AssociateIpamResourceDiscoveryRequest' => [ 'type' => 'structure', 'required' => [ 'IpamId', 'IpamResourceDiscoveryId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamId' => [ 'shape' => 'IpamId', ], 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'AssociateIpamResourceDiscoveryResult' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscoveryAssociation' => [ 'shape' => 'IpamResourceDiscoveryAssociation', 'locationName' => 'ipamResourceDiscoveryAssociation', ], ], ], 'AssociateNatGatewayAddressRequest' => [ 'type' => 'structure', 'required' => [ 'NatGatewayId', 'AllocationIds', ], 'members' => [ 'NatGatewayId' => [ 'shape' => 'NatGatewayId', ], 'AllocationIds' => [ 'shape' => 'AllocationIdList', 'locationName' => 'AllocationId', ], 'PrivateIpAddresses' => [ 'shape' => 'IpList', 'locationName' => 'PrivateIpAddress', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AssociateNatGatewayAddressResult' => [ 'type' => 'structure', 'members' => [ 'NatGatewayId' => [ 'shape' => 'NatGatewayId', 'locationName' => 'natGatewayId', ], 'NatGatewayAddresses' => [ 'shape' => 'NatGatewayAddressList', 'locationName' => 'natGatewayAddressSet', ], ], ], 'AssociateRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'RouteTableId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'RouteTableId' => [ 'shape' => 'RouteTableId', 'locationName' => 'routeTableId', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'GatewayId' => [ 'shape' => 'RouteGatewayId', ], ], ], 'AssociateRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'AssociationState' => [ 'shape' => 'RouteTableAssociationState', 'locationName' => 'associationState', ], ], ], 'AssociateSubnetCidrBlockRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', ], 'members' => [ 'Ipv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'ipv6CidrBlock', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'Ipv6IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Ipv6NetmaskLength' => [ 'shape' => 'NetmaskLength', ], ], ], 'AssociateSubnetCidrBlockResult' => [ 'type' => 'structure', 'members' => [ 'Ipv6CidrBlockAssociation' => [ 'shape' => 'SubnetIpv6CidrBlockAssociation', 'locationName' => 'ipv6CidrBlockAssociation', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], ], ], 'AssociateTransitGatewayMulticastDomainRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayMulticastDomainId', 'TransitGatewayAttachmentId', 'SubnetIds', ], 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'SubnetIds' => [ 'shape' => 'TransitGatewaySubnetIdList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AssociateTransitGatewayMulticastDomainResult' => [ 'type' => 'structure', 'members' => [ 'Associations' => [ 'shape' => 'TransitGatewayMulticastDomainAssociations', 'locationName' => 'associations', ], ], ], 'AssociateTransitGatewayPolicyTableRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayPolicyTableId', 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayPolicyTableId' => [ 'shape' => 'TransitGatewayPolicyTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AssociateTransitGatewayPolicyTableResult' => [ 'type' => 'structure', 'members' => [ 'Association' => [ 'shape' => 'TransitGatewayPolicyTableAssociation', 'locationName' => 'association', ], ], ], 'AssociateTransitGatewayRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AssociateTransitGatewayRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'Association' => [ 'shape' => 'TransitGatewayAssociation', 'locationName' => 'association', ], ], ], 'AssociateTrunkInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'BranchInterfaceId', 'TrunkInterfaceId', ], 'members' => [ 'BranchInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'TrunkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'VlanId' => [ 'shape' => 'Integer', ], 'GreKey' => [ 'shape' => 'Integer', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AssociateTrunkInterfaceResult' => [ 'type' => 'structure', 'members' => [ 'InterfaceAssociation' => [ 'shape' => 'TrunkInterfaceAssociation', 'locationName' => 'interfaceAssociation', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'AssociateVpcCidrBlockRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'AmazonProvidedIpv6CidrBlock' => [ 'shape' => 'Boolean', 'locationName' => 'amazonProvidedIpv6CidrBlock', ], 'CidrBlock' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], 'Ipv6CidrBlockNetworkBorderGroup' => [ 'shape' => 'String', ], 'Ipv6Pool' => [ 'shape' => 'Ipv6PoolEc2Id', ], 'Ipv6CidrBlock' => [ 'shape' => 'String', ], 'Ipv4IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Ipv4NetmaskLength' => [ 'shape' => 'NetmaskLength', ], 'Ipv6IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Ipv6NetmaskLength' => [ 'shape' => 'NetmaskLength', ], ], ], 'AssociateVpcCidrBlockResult' => [ 'type' => 'structure', 'members' => [ 'Ipv6CidrBlockAssociation' => [ 'shape' => 'VpcIpv6CidrBlockAssociation', 'locationName' => 'ipv6CidrBlockAssociation', ], 'CidrBlockAssociation' => [ 'shape' => 'VpcCidrBlockAssociation', 'locationName' => 'cidrBlockAssociation', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'AssociatedNetworkType' => [ 'type' => 'string', 'enum' => [ 'vpc', ], ], 'AssociatedRole' => [ 'type' => 'structure', 'members' => [ 'AssociatedRoleArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'associatedRoleArn', ], 'CertificateS3BucketName' => [ 'shape' => 'String', 'locationName' => 'certificateS3BucketName', ], 'CertificateS3ObjectKey' => [ 'shape' => 'String', 'locationName' => 'certificateS3ObjectKey', ], 'EncryptionKmsKeyId' => [ 'shape' => 'String', 'locationName' => 'encryptionKmsKeyId', ], ], ], 'AssociatedRolesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AssociatedRole', 'locationName' => 'item', ], ], 'AssociatedTargetNetwork' => [ 'type' => 'structure', 'members' => [ 'NetworkId' => [ 'shape' => 'String', 'locationName' => 'networkId', ], 'NetworkType' => [ 'shape' => 'AssociatedNetworkType', 'locationName' => 'networkType', ], ], ], 'AssociatedTargetNetworkSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AssociatedTargetNetwork', 'locationName' => 'item', ], ], 'AssociationIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IamInstanceProfileAssociationId', 'locationName' => 'AssociationId', ], ], 'AssociationStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'AssociationStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'AssociationStatusCode' => [ 'type' => 'string', 'enum' => [ 'associating', 'associated', 'association-failed', 'disassociating', 'disassociated', ], ], 'AthenaIntegration' => [ 'type' => 'structure', 'required' => [ 'IntegrationResultS3DestinationArn', 'PartitionLoadFrequency', ], 'members' => [ 'IntegrationResultS3DestinationArn' => [ 'shape' => 'String', ], 'PartitionLoadFrequency' => [ 'shape' => 'PartitionLoadFrequency', ], 'PartitionStartDate' => [ 'shape' => 'MillisecondDateTime', ], 'PartitionEndDate' => [ 'shape' => 'MillisecondDateTime', ], ], ], 'AthenaIntegrationsSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AthenaIntegration', 'locationName' => 'item', ], 'max' => 10, 'min' => 1, ], 'AttachClassicLinkVpcRequest' => [ 'type' => 'structure', 'required' => [ 'Groups', 'InstanceId', 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Groups' => [ 'shape' => 'GroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], ], ], 'AttachClassicLinkVpcResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'AttachInternetGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'InternetGatewayId', 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InternetGatewayId' => [ 'shape' => 'InternetGatewayId', 'locationName' => 'internetGatewayId', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], ], ], 'AttachNetworkInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'DeviceIndex', 'InstanceId', 'NetworkInterfaceId', ], 'members' => [ 'DeviceIndex' => [ 'shape' => 'Integer', 'locationName' => 'deviceIndex', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'NetworkCardIndex' => [ 'shape' => 'Integer', ], 'EnaSrdSpecification' => [ 'shape' => 'EnaSrdSpecification', ], ], ], 'AttachNetworkInterfaceResult' => [ 'type' => 'structure', 'members' => [ 'AttachmentId' => [ 'shape' => 'String', 'locationName' => 'attachmentId', ], 'NetworkCardIndex' => [ 'shape' => 'Integer', 'locationName' => 'networkCardIndex', ], ], ], 'AttachVerifiedAccessTrustProviderRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessInstanceId', 'VerifiedAccessTrustProviderId', ], 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'VerifiedAccessTrustProviderId' => [ 'shape' => 'VerifiedAccessTrustProviderId', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AttachVerifiedAccessTrustProviderResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProvider' => [ 'shape' => 'VerifiedAccessTrustProvider', 'locationName' => 'verifiedAccessTrustProvider', ], 'VerifiedAccessInstance' => [ 'shape' => 'VerifiedAccessInstance', 'locationName' => 'verifiedAccessInstance', ], ], ], 'AttachVolumeRequest' => [ 'type' => 'structure', 'required' => [ 'Device', 'InstanceId', 'VolumeId', ], 'members' => [ 'Device' => [ 'shape' => 'String', ], 'InstanceId' => [ 'shape' => 'InstanceId', ], 'VolumeId' => [ 'shape' => 'VolumeId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'AttachVpnGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', 'VpnGatewayId', ], 'members' => [ 'VpcId' => [ 'shape' => 'VpcId', ], 'VpnGatewayId' => [ 'shape' => 'VpnGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'AttachVpnGatewayResult' => [ 'type' => 'structure', 'members' => [ 'VpcAttachment' => [ 'shape' => 'VpcAttachment', 'locationName' => 'attachment', ], ], ], 'AttachmentEnaSrdSpecification' => [ 'type' => 'structure', 'members' => [ 'EnaSrdEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'enaSrdEnabled', ], 'EnaSrdUdpSpecification' => [ 'shape' => 'AttachmentEnaSrdUdpSpecification', 'locationName' => 'enaSrdUdpSpecification', ], ], ], 'AttachmentEnaSrdUdpSpecification' => [ 'type' => 'structure', 'members' => [ 'EnaSrdUdpEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'enaSrdUdpEnabled', ], ], ], 'AttachmentStatus' => [ 'type' => 'string', 'enum' => [ 'attaching', 'attached', 'detaching', 'detached', ], ], 'AttributeBooleanValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'Boolean', 'locationName' => 'value', ], ], ], 'AttributeValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'AuthorizationRule' => [ 'type' => 'structure', 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'String', 'locationName' => 'clientVpnEndpointId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'AccessAll' => [ 'shape' => 'Boolean', 'locationName' => 'accessAll', ], 'DestinationCidr' => [ 'shape' => 'String', 'locationName' => 'destinationCidr', ], 'Status' => [ 'shape' => 'ClientVpnAuthorizationRuleStatus', 'locationName' => 'status', ], ], ], 'AuthorizationRuleSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuthorizationRule', 'locationName' => 'item', ], ], 'AuthorizeClientVpnIngressRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', 'TargetNetworkCidr', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'TargetNetworkCidr' => [ 'shape' => 'String', ], 'AccessGroupId' => [ 'shape' => 'String', ], 'AuthorizeAllGroups' => [ 'shape' => 'Boolean', ], 'Description' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'AuthorizeClientVpnIngressResult' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'ClientVpnAuthorizationRuleStatus', 'locationName' => 'status', ], ], ], 'AuthorizeSecurityGroupEgressRequest' => [ 'type' => 'structure', 'required' => [ 'GroupId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupId' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'groupId', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', 'locationName' => 'ipPermissions', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'CidrIp' => [ 'shape' => 'String', 'locationName' => 'cidrIp', ], 'FromPort' => [ 'shape' => 'Integer', 'locationName' => 'fromPort', ], 'IpProtocol' => [ 'shape' => 'String', 'locationName' => 'ipProtocol', ], 'ToPort' => [ 'shape' => 'Integer', 'locationName' => 'toPort', ], 'SourceSecurityGroupName' => [ 'shape' => 'String', 'locationName' => 'sourceSecurityGroupName', ], 'SourceSecurityGroupOwnerId' => [ 'shape' => 'String', 'locationName' => 'sourceSecurityGroupOwnerId', ], ], ], 'AuthorizeSecurityGroupEgressResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], 'SecurityGroupRules' => [ 'shape' => 'SecurityGroupRuleList', 'locationName' => 'securityGroupRuleSet', ], ], ], 'AuthorizeSecurityGroupIngressRequest' => [ 'type' => 'structure', 'members' => [ 'CidrIp' => [ 'shape' => 'String', ], 'FromPort' => [ 'shape' => 'Integer', ], 'GroupId' => [ 'shape' => 'SecurityGroupId', ], 'GroupName' => [ 'shape' => 'SecurityGroupName', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', ], 'IpProtocol' => [ 'shape' => 'String', ], 'SourceSecurityGroupName' => [ 'shape' => 'String', ], 'SourceSecurityGroupOwnerId' => [ 'shape' => 'String', ], 'ToPort' => [ 'shape' => 'Integer', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'AuthorizeSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], 'SecurityGroupRules' => [ 'shape' => 'SecurityGroupRuleList', 'locationName' => 'securityGroupRuleSet', ], ], ], 'AutoAcceptSharedAssociationsValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'AutoAcceptSharedAttachmentsValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'AutoPlacement' => [ 'type' => 'string', 'enum' => [ 'on', 'off', ], ], 'AutoRecoveryFlag' => [ 'type' => 'boolean', ], 'AvailabilityZone' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'AvailabilityZoneState', 'locationName' => 'zoneState', ], 'OptInStatus' => [ 'shape' => 'AvailabilityZoneOptInStatus', 'locationName' => 'optInStatus', ], 'Messages' => [ 'shape' => 'AvailabilityZoneMessageList', 'locationName' => 'messageSet', ], 'RegionName' => [ 'shape' => 'String', 'locationName' => 'regionName', ], 'ZoneName' => [ 'shape' => 'String', 'locationName' => 'zoneName', ], 'ZoneId' => [ 'shape' => 'String', 'locationName' => 'zoneId', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'NetworkBorderGroup' => [ 'shape' => 'String', 'locationName' => 'networkBorderGroup', ], 'ZoneType' => [ 'shape' => 'String', 'locationName' => 'zoneType', ], 'ParentZoneName' => [ 'shape' => 'String', 'locationName' => 'parentZoneName', ], 'ParentZoneId' => [ 'shape' => 'String', 'locationName' => 'parentZoneId', ], ], ], 'AvailabilityZoneId' => [ 'type' => 'string', ], 'AvailabilityZoneList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AvailabilityZone', 'locationName' => 'item', ], ], 'AvailabilityZoneMessage' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'AvailabilityZoneMessageList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AvailabilityZoneMessage', 'locationName' => 'item', ], ], 'AvailabilityZoneName' => [ 'type' => 'string', ], 'AvailabilityZoneOptInStatus' => [ 'type' => 'string', 'enum' => [ 'opt-in-not-required', 'opted-in', 'not-opted-in', ], ], 'AvailabilityZoneState' => [ 'type' => 'string', 'enum' => [ 'available', 'information', 'impaired', 'unavailable', 'constrained', ], ], 'AvailabilityZoneStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'AvailabilityZone', ], ], 'AvailableCapacity' => [ 'type' => 'structure', 'members' => [ 'AvailableInstanceCapacity' => [ 'shape' => 'AvailableInstanceCapacityList', 'locationName' => 'availableInstanceCapacity', ], 'AvailableVCpus' => [ 'shape' => 'Integer', 'locationName' => 'availableVCpus', ], ], ], 'AvailableInstanceCapacityList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceCapacity', 'locationName' => 'item', ], ], 'BareMetal' => [ 'type' => 'string', 'enum' => [ 'included', 'required', 'excluded', ], ], 'BareMetalFlag' => [ 'type' => 'boolean', ], 'BaselineBandwidthInGbps' => [ 'type' => 'double', ], 'BaselineBandwidthInMbps' => [ 'type' => 'integer', ], 'BaselineEbsBandwidthMbps' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Integer', 'locationName' => 'max', ], ], ], 'BaselineEbsBandwidthMbpsRequest' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', ], 'Max' => [ 'shape' => 'Integer', ], ], ], 'BaselineIops' => [ 'type' => 'integer', ], 'BaselineThroughputInMBps' => [ 'type' => 'double', ], 'BatchState' => [ 'type' => 'string', 'enum' => [ 'submitted', 'active', 'cancelled', 'failed', 'cancelled_running', 'cancelled_terminating', 'modifying', ], ], 'BgpStatus' => [ 'type' => 'string', 'enum' => [ 'up', 'down', ], ], 'BillingProductList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'Blob' => [ 'type' => 'blob', ], 'BlobAttributeValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'Blob', 'locationName' => 'value', ], ], ], 'BlockDeviceMapping' => [ 'type' => 'structure', 'members' => [ 'DeviceName' => [ 'shape' => 'String', 'locationName' => 'deviceName', ], 'VirtualName' => [ 'shape' => 'String', 'locationName' => 'virtualName', ], 'Ebs' => [ 'shape' => 'EbsBlockDevice', 'locationName' => 'ebs', ], 'NoDevice' => [ 'shape' => 'String', 'locationName' => 'noDevice', ], ], ], 'BlockDeviceMappingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BlockDeviceMapping', 'locationName' => 'item', ], ], 'BlockDeviceMappingRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BlockDeviceMapping', 'locationName' => 'BlockDeviceMapping', ], ], 'Boolean' => [ 'type' => 'boolean', ], 'BootModeType' => [ 'type' => 'string', 'enum' => [ 'legacy-bios', 'uefi', ], ], 'BootModeTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BootModeType', 'locationName' => 'item', ], ], 'BootModeValues' => [ 'type' => 'string', 'enum' => [ 'legacy-bios', 'uefi', 'uefi-preferred', ], ], 'BoxedDouble' => [ 'type' => 'double', ], 'BundleId' => [ 'type' => 'string', ], 'BundleIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BundleId', 'locationName' => 'BundleId', ], ], 'BundleInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'Storage', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'Storage' => [ 'shape' => 'Storage', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'BundleInstanceResult' => [ 'type' => 'structure', 'members' => [ 'BundleTask' => [ 'shape' => 'BundleTask', 'locationName' => 'bundleInstanceTask', ], ], ], 'BundleTask' => [ 'type' => 'structure', 'members' => [ 'BundleId' => [ 'shape' => 'String', 'locationName' => 'bundleId', ], 'BundleTaskError' => [ 'shape' => 'BundleTaskError', 'locationName' => 'error', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], 'State' => [ 'shape' => 'BundleTaskState', 'locationName' => 'state', ], 'Storage' => [ 'shape' => 'Storage', 'locationName' => 'storage', ], 'UpdateTime' => [ 'shape' => 'DateTime', 'locationName' => 'updateTime', ], ], ], 'BundleTaskError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'BundleTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BundleTask', 'locationName' => 'item', ], ], 'BundleTaskState' => [ 'type' => 'string', 'enum' => [ 'pending', 'waiting-for-shutdown', 'bundling', 'storing', 'cancelling', 'complete', 'failed', ], ], 'BurstablePerformance' => [ 'type' => 'string', 'enum' => [ 'included', 'required', 'excluded', ], ], 'BurstablePerformanceFlag' => [ 'type' => 'boolean', ], 'Byoasn' => [ 'type' => 'structure', 'members' => [ 'Asn' => [ 'shape' => 'String', 'locationName' => 'asn', ], 'IpamId' => [ 'shape' => 'IpamId', 'locationName' => 'ipamId', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'State' => [ 'shape' => 'AsnState', 'locationName' => 'state', ], ], ], 'ByoasnSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Byoasn', 'locationName' => 'item', ], ], 'ByoipCidr' => [ 'type' => 'structure', 'members' => [ 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'AsnAssociations' => [ 'shape' => 'AsnAssociationSet', 'locationName' => 'asnAssociationSet', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'State' => [ 'shape' => 'ByoipCidrState', 'locationName' => 'state', ], 'NetworkBorderGroup' => [ 'shape' => 'String', 'locationName' => 'networkBorderGroup', ], ], ], 'ByoipCidrSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ByoipCidr', 'locationName' => 'item', ], ], 'ByoipCidrState' => [ 'type' => 'string', 'enum' => [ 'advertised', 'deprovisioned', 'failed-deprovision', 'failed-provision', 'pending-deprovision', 'pending-provision', 'provisioned', 'provisioned-not-publicly-advertisable', ], ], 'CancelBatchErrorCode' => [ 'type' => 'string', 'enum' => [ 'fleetRequestIdDoesNotExist', 'fleetRequestIdMalformed', 'fleetRequestNotInCancellableState', 'unexpectedError', ], ], 'CancelBundleTaskRequest' => [ 'type' => 'structure', 'required' => [ 'BundleId', ], 'members' => [ 'BundleId' => [ 'shape' => 'BundleId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CancelBundleTaskResult' => [ 'type' => 'structure', 'members' => [ 'BundleTask' => [ 'shape' => 'BundleTask', 'locationName' => 'bundleInstanceTask', ], ], ], 'CancelCapacityReservationFleetError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'CancelCapacityReservationFleetErrorCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'CancelCapacityReservationFleetErrorMessage', 'locationName' => 'message', ], ], ], 'CancelCapacityReservationFleetErrorCode' => [ 'type' => 'string', ], 'CancelCapacityReservationFleetErrorMessage' => [ 'type' => 'string', ], 'CancelCapacityReservationFleetsRequest' => [ 'type' => 'structure', 'required' => [ 'CapacityReservationFleetIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'CapacityReservationFleetIds' => [ 'shape' => 'CapacityReservationFleetIdSet', 'locationName' => 'CapacityReservationFleetId', ], ], ], 'CancelCapacityReservationFleetsResult' => [ 'type' => 'structure', 'members' => [ 'SuccessfulFleetCancellations' => [ 'shape' => 'CapacityReservationFleetCancellationStateSet', 'locationName' => 'successfulFleetCancellationSet', ], 'FailedFleetCancellations' => [ 'shape' => 'FailedCapacityReservationFleetCancellationResultSet', 'locationName' => 'failedFleetCancellationSet', ], ], ], 'CancelCapacityReservationRequest' => [ 'type' => 'structure', 'required' => [ 'CapacityReservationId', ], 'members' => [ 'CapacityReservationId' => [ 'shape' => 'CapacityReservationId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CancelCapacityReservationResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'CancelConversionRequest' => [ 'type' => 'structure', 'required' => [ 'ConversionTaskId', ], 'members' => [ 'ConversionTaskId' => [ 'shape' => 'ConversionTaskId', 'locationName' => 'conversionTaskId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'ReasonMessage' => [ 'shape' => 'String', 'locationName' => 'reasonMessage', ], ], ], 'CancelExportTaskRequest' => [ 'type' => 'structure', 'required' => [ 'ExportTaskId', ], 'members' => [ 'ExportTaskId' => [ 'shape' => 'ExportVmTaskId', 'locationName' => 'exportTaskId', ], ], ], 'CancelImageLaunchPermissionRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CancelImageLaunchPermissionResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'CancelImportTaskRequest' => [ 'type' => 'structure', 'members' => [ 'CancelReason' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ImportTaskId' => [ 'shape' => 'ImportTaskId', ], ], ], 'CancelImportTaskResult' => [ 'type' => 'structure', 'members' => [ 'ImportTaskId' => [ 'shape' => 'String', 'locationName' => 'importTaskId', ], 'PreviousState' => [ 'shape' => 'String', 'locationName' => 'previousState', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], ], ], 'CancelReservedInstancesListingRequest' => [ 'type' => 'structure', 'required' => [ 'ReservedInstancesListingId', ], 'members' => [ 'ReservedInstancesListingId' => [ 'shape' => 'ReservedInstancesListingId', 'locationName' => 'reservedInstancesListingId', ], ], ], 'CancelReservedInstancesListingResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesListings' => [ 'shape' => 'ReservedInstancesListingList', 'locationName' => 'reservedInstancesListingsSet', ], ], ], 'CancelSpotFleetRequestsError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'CancelBatchErrorCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'CancelSpotFleetRequestsErrorItem' => [ 'type' => 'structure', 'members' => [ 'Error' => [ 'shape' => 'CancelSpotFleetRequestsError', 'locationName' => 'error', ], 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], ], ], 'CancelSpotFleetRequestsErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CancelSpotFleetRequestsErrorItem', 'locationName' => 'item', ], ], 'CancelSpotFleetRequestsRequest' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestIds', 'TerminateInstances', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SpotFleetRequestIds' => [ 'shape' => 'SpotFleetRequestIdList', 'locationName' => 'spotFleetRequestId', ], 'TerminateInstances' => [ 'shape' => 'Boolean', 'locationName' => 'terminateInstances', ], ], ], 'CancelSpotFleetRequestsResponse' => [ 'type' => 'structure', 'members' => [ 'SuccessfulFleetRequests' => [ 'shape' => 'CancelSpotFleetRequestsSuccessSet', 'locationName' => 'successfulFleetRequestSet', ], 'UnsuccessfulFleetRequests' => [ 'shape' => 'CancelSpotFleetRequestsErrorSet', 'locationName' => 'unsuccessfulFleetRequestSet', ], ], ], 'CancelSpotFleetRequestsSuccessItem' => [ 'type' => 'structure', 'members' => [ 'CurrentSpotFleetRequestState' => [ 'shape' => 'BatchState', 'locationName' => 'currentSpotFleetRequestState', ], 'PreviousSpotFleetRequestState' => [ 'shape' => 'BatchState', 'locationName' => 'previousSpotFleetRequestState', ], 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], ], ], 'CancelSpotFleetRequestsSuccessSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CancelSpotFleetRequestsSuccessItem', 'locationName' => 'item', ], ], 'CancelSpotInstanceRequestState' => [ 'type' => 'string', 'enum' => [ 'active', 'open', 'closed', 'cancelled', 'completed', ], ], 'CancelSpotInstanceRequestsRequest' => [ 'type' => 'structure', 'required' => [ 'SpotInstanceRequestIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SpotInstanceRequestIds' => [ 'shape' => 'SpotInstanceRequestIdList', 'locationName' => 'SpotInstanceRequestId', ], ], ], 'CancelSpotInstanceRequestsResult' => [ 'type' => 'structure', 'members' => [ 'CancelledSpotInstanceRequests' => [ 'shape' => 'CancelledSpotInstanceRequestList', 'locationName' => 'spotInstanceRequestSet', ], ], ], 'CancelledSpotInstanceRequest' => [ 'type' => 'structure', 'members' => [ 'SpotInstanceRequestId' => [ 'shape' => 'String', 'locationName' => 'spotInstanceRequestId', ], 'State' => [ 'shape' => 'CancelSpotInstanceRequestState', 'locationName' => 'state', ], ], ], 'CancelledSpotInstanceRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CancelledSpotInstanceRequest', 'locationName' => 'item', ], ], 'CapacityAllocation' => [ 'type' => 'structure', 'members' => [ 'AllocationType' => [ 'shape' => 'AllocationType', 'locationName' => 'allocationType', ], 'Count' => [ 'shape' => 'Integer', 'locationName' => 'count', ], ], ], 'CapacityAllocations' => [ 'type' => 'list', 'member' => [ 'shape' => 'CapacityAllocation', 'locationName' => 'item', ], ], 'CapacityBlockOffering' => [ 'type' => 'structure', 'members' => [ 'CapacityBlockOfferingId' => [ 'shape' => 'OfferingId', 'locationName' => 'capacityBlockOfferingId', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'StartDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'startDate', ], 'EndDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'endDate', ], 'CapacityBlockDurationHours' => [ 'shape' => 'Integer', 'locationName' => 'capacityBlockDurationHours', ], 'UpfrontFee' => [ 'shape' => 'String', 'locationName' => 'upfrontFee', ], 'CurrencyCode' => [ 'shape' => 'String', 'locationName' => 'currencyCode', ], 'Tenancy' => [ 'shape' => 'CapacityReservationTenancy', 'locationName' => 'tenancy', ], ], ], 'CapacityBlockOfferingSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CapacityBlockOffering', 'locationName' => 'item', ], ], 'CapacityReservation' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationId' => [ 'shape' => 'String', 'locationName' => 'capacityReservationId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'CapacityReservationArn' => [ 'shape' => 'String', 'locationName' => 'capacityReservationArn', ], 'AvailabilityZoneId' => [ 'shape' => 'String', 'locationName' => 'availabilityZoneId', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'InstancePlatform' => [ 'shape' => 'CapacityReservationInstancePlatform', 'locationName' => 'instancePlatform', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Tenancy' => [ 'shape' => 'CapacityReservationTenancy', 'locationName' => 'tenancy', ], 'TotalInstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'totalInstanceCount', ], 'AvailableInstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'availableInstanceCount', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'EphemeralStorage' => [ 'shape' => 'Boolean', 'locationName' => 'ephemeralStorage', ], 'State' => [ 'shape' => 'CapacityReservationState', 'locationName' => 'state', ], 'StartDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'startDate', ], 'EndDate' => [ 'shape' => 'DateTime', 'locationName' => 'endDate', ], 'EndDateType' => [ 'shape' => 'EndDateType', 'locationName' => 'endDateType', ], 'InstanceMatchCriteria' => [ 'shape' => 'InstanceMatchCriteria', 'locationName' => 'instanceMatchCriteria', ], 'CreateDate' => [ 'shape' => 'DateTime', 'locationName' => 'createDate', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'OutpostArn' => [ 'shape' => 'OutpostArn', 'locationName' => 'outpostArn', ], 'CapacityReservationFleetId' => [ 'shape' => 'String', 'locationName' => 'capacityReservationFleetId', ], 'PlacementGroupArn' => [ 'shape' => 'PlacementGroupArn', 'locationName' => 'placementGroupArn', ], 'CapacityAllocations' => [ 'shape' => 'CapacityAllocations', 'locationName' => 'capacityAllocationSet', ], 'ReservationType' => [ 'shape' => 'CapacityReservationType', 'locationName' => 'reservationType', ], ], ], 'CapacityReservationFleet' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationFleetId' => [ 'shape' => 'CapacityReservationFleetId', 'locationName' => 'capacityReservationFleetId', ], 'CapacityReservationFleetArn' => [ 'shape' => 'String', 'locationName' => 'capacityReservationFleetArn', ], 'State' => [ 'shape' => 'CapacityReservationFleetState', 'locationName' => 'state', ], 'TotalTargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'totalTargetCapacity', ], 'TotalFulfilledCapacity' => [ 'shape' => 'Double', 'locationName' => 'totalFulfilledCapacity', ], 'Tenancy' => [ 'shape' => 'FleetCapacityReservationTenancy', 'locationName' => 'tenancy', ], 'EndDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'endDate', ], 'CreateTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'createTime', ], 'InstanceMatchCriteria' => [ 'shape' => 'FleetInstanceMatchCriteria', 'locationName' => 'instanceMatchCriteria', ], 'AllocationStrategy' => [ 'shape' => 'String', 'locationName' => 'allocationStrategy', ], 'InstanceTypeSpecifications' => [ 'shape' => 'FleetCapacityReservationSet', 'locationName' => 'instanceTypeSpecificationSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'CapacityReservationFleetCancellationState' => [ 'type' => 'structure', 'members' => [ 'CurrentFleetState' => [ 'shape' => 'CapacityReservationFleetState', 'locationName' => 'currentFleetState', ], 'PreviousFleetState' => [ 'shape' => 'CapacityReservationFleetState', 'locationName' => 'previousFleetState', ], 'CapacityReservationFleetId' => [ 'shape' => 'CapacityReservationFleetId', 'locationName' => 'capacityReservationFleetId', ], ], ], 'CapacityReservationFleetCancellationStateSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CapacityReservationFleetCancellationState', 'locationName' => 'item', ], ], 'CapacityReservationFleetId' => [ 'type' => 'string', ], 'CapacityReservationFleetIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CapacityReservationFleetId', 'locationName' => 'item', ], ], 'CapacityReservationFleetSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CapacityReservationFleet', 'locationName' => 'item', ], ], 'CapacityReservationFleetState' => [ 'type' => 'string', 'enum' => [ 'submitted', 'modifying', 'active', 'partially_fulfilled', 'expiring', 'expired', 'cancelling', 'cancelled', 'failed', ], ], 'CapacityReservationGroup' => [ 'type' => 'structure', 'members' => [ 'GroupArn' => [ 'shape' => 'String', 'locationName' => 'groupArn', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], ], ], 'CapacityReservationGroupSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CapacityReservationGroup', 'locationName' => 'item', ], ], 'CapacityReservationId' => [ 'type' => 'string', ], 'CapacityReservationIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CapacityReservationId', 'locationName' => 'item', ], ], 'CapacityReservationInstancePlatform' => [ 'type' => 'string', 'enum' => [ 'Linux/UNIX', 'Red Hat Enterprise Linux', 'SUSE Linux', 'Windows', 'Windows with SQL Server', 'Windows with SQL Server Enterprise', 'Windows with SQL Server Standard', 'Windows with SQL Server Web', 'Linux with SQL Server Standard', 'Linux with SQL Server Web', 'Linux with SQL Server Enterprise', 'RHEL with SQL Server Standard', 'RHEL with SQL Server Enterprise', 'RHEL with SQL Server Web', 'RHEL with HA', 'RHEL with HA and SQL Server Standard', 'RHEL with HA and SQL Server Enterprise', 'Ubuntu Pro', ], ], 'CapacityReservationOptions' => [ 'type' => 'structure', 'members' => [ 'UsageStrategy' => [ 'shape' => 'FleetCapacityReservationUsageStrategy', 'locationName' => 'usageStrategy', ], ], ], 'CapacityReservationOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'UsageStrategy' => [ 'shape' => 'FleetCapacityReservationUsageStrategy', ], ], ], 'CapacityReservationPreference' => [ 'type' => 'string', 'enum' => [ 'open', 'none', ], ], 'CapacityReservationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CapacityReservation', 'locationName' => 'item', ], ], 'CapacityReservationSpecification' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationPreference' => [ 'shape' => 'CapacityReservationPreference', ], 'CapacityReservationTarget' => [ 'shape' => 'CapacityReservationTarget', ], ], ], 'CapacityReservationSpecificationResponse' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationPreference' => [ 'shape' => 'CapacityReservationPreference', 'locationName' => 'capacityReservationPreference', ], 'CapacityReservationTarget' => [ 'shape' => 'CapacityReservationTargetResponse', 'locationName' => 'capacityReservationTarget', ], ], ], 'CapacityReservationState' => [ 'type' => 'string', 'enum' => [ 'active', 'expired', 'cancelled', 'pending', 'failed', 'scheduled', 'payment-pending', 'payment-failed', ], ], 'CapacityReservationTarget' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationId' => [ 'shape' => 'CapacityReservationId', ], 'CapacityReservationResourceGroupArn' => [ 'shape' => 'String', ], ], ], 'CapacityReservationTargetResponse' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationId' => [ 'shape' => 'String', 'locationName' => 'capacityReservationId', ], 'CapacityReservationResourceGroupArn' => [ 'shape' => 'String', 'locationName' => 'capacityReservationResourceGroupArn', ], ], ], 'CapacityReservationTenancy' => [ 'type' => 'string', 'enum' => [ 'default', 'dedicated', ], ], 'CapacityReservationType' => [ 'type' => 'string', 'enum' => [ 'default', 'capacity-block', ], ], 'CarrierGateway' => [ 'type' => 'structure', 'members' => [ 'CarrierGatewayId' => [ 'shape' => 'CarrierGatewayId', 'locationName' => 'carrierGatewayId', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], 'State' => [ 'shape' => 'CarrierGatewayState', 'locationName' => 'state', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'CarrierGatewayId' => [ 'type' => 'string', ], 'CarrierGatewayIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CarrierGatewayId', ], ], 'CarrierGatewayMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'CarrierGatewaySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CarrierGateway', 'locationName' => 'item', ], ], 'CarrierGatewayState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'deleting', 'deleted', ], ], 'CertificateArn' => [ 'type' => 'string', ], 'CertificateAuthentication' => [ 'type' => 'structure', 'members' => [ 'ClientRootCertificateChain' => [ 'shape' => 'String', 'locationName' => 'clientRootCertificateChain', ], ], ], 'CertificateAuthenticationRequest' => [ 'type' => 'structure', 'members' => [ 'ClientRootCertificateChainArn' => [ 'shape' => 'String', ], ], ], 'CertificateId' => [ 'type' => 'string', ], 'CidrAuthorizationContext' => [ 'type' => 'structure', 'required' => [ 'Message', 'Signature', ], 'members' => [ 'Message' => [ 'shape' => 'String', ], 'Signature' => [ 'shape' => 'String', ], ], ], 'CidrBlock' => [ 'type' => 'structure', 'members' => [ 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], ], ], 'CidrBlockSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CidrBlock', 'locationName' => 'item', ], ], 'ClassicLinkDnsSupport' => [ 'type' => 'structure', 'members' => [ 'ClassicLinkDnsSupported' => [ 'shape' => 'Boolean', 'locationName' => 'classicLinkDnsSupported', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'ClassicLinkDnsSupportList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClassicLinkDnsSupport', 'locationName' => 'item', ], ], 'ClassicLinkInstance' => [ 'type' => 'structure', 'members' => [ 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'ClassicLinkInstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClassicLinkInstance', 'locationName' => 'item', ], ], 'ClassicLoadBalancer' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], ], ], 'ClassicLoadBalancers' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClassicLoadBalancer', 'locationName' => 'item', ], 'max' => 5, 'min' => 1, ], 'ClassicLoadBalancersConfig' => [ 'type' => 'structure', 'members' => [ 'ClassicLoadBalancers' => [ 'shape' => 'ClassicLoadBalancers', 'locationName' => 'classicLoadBalancers', ], ], ], 'ClientCertificateRevocationListStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'ClientCertificateRevocationListStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'ClientCertificateRevocationListStatusCode' => [ 'type' => 'string', 'enum' => [ 'pending', 'active', ], ], 'ClientConnectOptions' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], 'LambdaFunctionArn' => [ 'shape' => 'String', ], ], ], 'ClientConnectResponseOptions' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], 'LambdaFunctionArn' => [ 'shape' => 'String', 'locationName' => 'lambdaFunctionArn', ], 'Status' => [ 'shape' => 'ClientVpnEndpointAttributeStatus', 'locationName' => 'status', ], ], ], 'ClientData' => [ 'type' => 'structure', 'members' => [ 'Comment' => [ 'shape' => 'String', ], 'UploadEnd' => [ 'shape' => 'DateTime', ], 'UploadSize' => [ 'shape' => 'Double', ], 'UploadStart' => [ 'shape' => 'DateTime', ], ], ], 'ClientLoginBannerOptions' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], 'BannerText' => [ 'shape' => 'String', ], ], ], 'ClientLoginBannerResponseOptions' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], 'BannerText' => [ 'shape' => 'String', 'locationName' => 'bannerText', ], ], ], 'ClientSecretType' => [ 'type' => 'string', 'sensitive' => true, ], 'ClientVpnAuthentication' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'ClientVpnAuthenticationType', 'locationName' => 'type', ], 'ActiveDirectory' => [ 'shape' => 'DirectoryServiceAuthentication', 'locationName' => 'activeDirectory', ], 'MutualAuthentication' => [ 'shape' => 'CertificateAuthentication', 'locationName' => 'mutualAuthentication', ], 'FederatedAuthentication' => [ 'shape' => 'FederatedAuthentication', 'locationName' => 'federatedAuthentication', ], ], ], 'ClientVpnAuthenticationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClientVpnAuthentication', 'locationName' => 'item', ], ], 'ClientVpnAuthenticationRequest' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'ClientVpnAuthenticationType', ], 'ActiveDirectory' => [ 'shape' => 'DirectoryServiceAuthenticationRequest', ], 'MutualAuthentication' => [ 'shape' => 'CertificateAuthenticationRequest', ], 'FederatedAuthentication' => [ 'shape' => 'FederatedAuthenticationRequest', ], ], ], 'ClientVpnAuthenticationRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClientVpnAuthenticationRequest', ], ], 'ClientVpnAuthenticationType' => [ 'type' => 'string', 'enum' => [ 'certificate-authentication', 'directory-service-authentication', 'federated-authentication', ], ], 'ClientVpnAuthorizationRuleStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'ClientVpnAuthorizationRuleStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'ClientVpnAuthorizationRuleStatusCode' => [ 'type' => 'string', 'enum' => [ 'authorizing', 'active', 'failed', 'revoking', ], ], 'ClientVpnConnection' => [ 'type' => 'structure', 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'String', 'locationName' => 'clientVpnEndpointId', ], 'Timestamp' => [ 'shape' => 'String', 'locationName' => 'timestamp', ], 'ConnectionId' => [ 'shape' => 'String', 'locationName' => 'connectionId', ], 'Username' => [ 'shape' => 'String', 'locationName' => 'username', ], 'ConnectionEstablishedTime' => [ 'shape' => 'String', 'locationName' => 'connectionEstablishedTime', ], 'IngressBytes' => [ 'shape' => 'String', 'locationName' => 'ingressBytes', ], 'EgressBytes' => [ 'shape' => 'String', 'locationName' => 'egressBytes', ], 'IngressPackets' => [ 'shape' => 'String', 'locationName' => 'ingressPackets', ], 'EgressPackets' => [ 'shape' => 'String', 'locationName' => 'egressPackets', ], 'ClientIp' => [ 'shape' => 'String', 'locationName' => 'clientIp', ], 'CommonName' => [ 'shape' => 'String', 'locationName' => 'commonName', ], 'Status' => [ 'shape' => 'ClientVpnConnectionStatus', 'locationName' => 'status', ], 'ConnectionEndTime' => [ 'shape' => 'String', 'locationName' => 'connectionEndTime', ], 'PostureComplianceStatuses' => [ 'shape' => 'ValueStringList', 'locationName' => 'postureComplianceStatusSet', ], ], ], 'ClientVpnConnectionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClientVpnConnection', 'locationName' => 'item', ], ], 'ClientVpnConnectionStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'ClientVpnConnectionStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'ClientVpnConnectionStatusCode' => [ 'type' => 'string', 'enum' => [ 'active', 'failed-to-terminate', 'terminating', 'terminated', ], ], 'ClientVpnEndpoint' => [ 'type' => 'structure', 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'String', 'locationName' => 'clientVpnEndpointId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Status' => [ 'shape' => 'ClientVpnEndpointStatus', 'locationName' => 'status', ], 'CreationTime' => [ 'shape' => 'String', 'locationName' => 'creationTime', ], 'DeletionTime' => [ 'shape' => 'String', 'locationName' => 'deletionTime', ], 'DnsName' => [ 'shape' => 'String', 'locationName' => 'dnsName', ], 'ClientCidrBlock' => [ 'shape' => 'String', 'locationName' => 'clientCidrBlock', ], 'DnsServers' => [ 'shape' => 'ValueStringList', 'locationName' => 'dnsServer', ], 'SplitTunnel' => [ 'shape' => 'Boolean', 'locationName' => 'splitTunnel', ], 'VpnProtocol' => [ 'shape' => 'VpnProtocol', 'locationName' => 'vpnProtocol', ], 'TransportProtocol' => [ 'shape' => 'TransportProtocol', 'locationName' => 'transportProtocol', ], 'VpnPort' => [ 'shape' => 'Integer', 'locationName' => 'vpnPort', ], 'AssociatedTargetNetworks' => [ 'shape' => 'AssociatedTargetNetworkSet', 'deprecated' => true, 'deprecatedMessage' => 'This property is deprecated. To view the target networks associated with a Client VPN endpoint, call DescribeClientVpnTargetNetworks and inspect the clientVpnTargetNetworks response element.', 'locationName' => 'associatedTargetNetwork', ], 'ServerCertificateArn' => [ 'shape' => 'String', 'locationName' => 'serverCertificateArn', ], 'AuthenticationOptions' => [ 'shape' => 'ClientVpnAuthenticationList', 'locationName' => 'authenticationOptions', ], 'ConnectionLogOptions' => [ 'shape' => 'ConnectionLogResponseOptions', 'locationName' => 'connectionLogOptions', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'SecurityGroupIds' => [ 'shape' => 'ClientVpnSecurityGroupIdSet', 'locationName' => 'securityGroupIdSet', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], 'SelfServicePortalUrl' => [ 'shape' => 'String', 'locationName' => 'selfServicePortalUrl', ], 'ClientConnectOptions' => [ 'shape' => 'ClientConnectResponseOptions', 'locationName' => 'clientConnectOptions', ], 'SessionTimeoutHours' => [ 'shape' => 'Integer', 'locationName' => 'sessionTimeoutHours', ], 'ClientLoginBannerOptions' => [ 'shape' => 'ClientLoginBannerResponseOptions', 'locationName' => 'clientLoginBannerOptions', ], ], ], 'ClientVpnEndpointAttributeStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'ClientVpnEndpointAttributeStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'ClientVpnEndpointAttributeStatusCode' => [ 'type' => 'string', 'enum' => [ 'applying', 'applied', ], ], 'ClientVpnEndpointId' => [ 'type' => 'string', ], 'ClientVpnEndpointIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClientVpnEndpointId', 'locationName' => 'item', ], ], 'ClientVpnEndpointStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'ClientVpnEndpointStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'ClientVpnEndpointStatusCode' => [ 'type' => 'string', 'enum' => [ 'pending-associate', 'available', 'deleting', 'deleted', ], ], 'ClientVpnRoute' => [ 'type' => 'structure', 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'String', 'locationName' => 'clientVpnEndpointId', ], 'DestinationCidr' => [ 'shape' => 'String', 'locationName' => 'destinationCidr', ], 'TargetSubnet' => [ 'shape' => 'String', 'locationName' => 'targetSubnet', ], 'Type' => [ 'shape' => 'String', 'locationName' => 'type', ], 'Origin' => [ 'shape' => 'String', 'locationName' => 'origin', ], 'Status' => [ 'shape' => 'ClientVpnRouteStatus', 'locationName' => 'status', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], ], ], 'ClientVpnRouteSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClientVpnRoute', 'locationName' => 'item', ], ], 'ClientVpnRouteStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'ClientVpnRouteStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'ClientVpnRouteStatusCode' => [ 'type' => 'string', 'enum' => [ 'creating', 'active', 'failed', 'deleting', ], ], 'ClientVpnSecurityGroupIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'item', ], ], 'CloudWatchLogGroupArn' => [ 'type' => 'string', ], 'CloudWatchLogOptions' => [ 'type' => 'structure', 'members' => [ 'LogEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'logEnabled', ], 'LogGroupArn' => [ 'shape' => 'String', 'locationName' => 'logGroupArn', ], 'LogOutputFormat' => [ 'shape' => 'String', 'locationName' => 'logOutputFormat', ], ], ], 'CloudWatchLogOptionsSpecification' => [ 'type' => 'structure', 'members' => [ 'LogEnabled' => [ 'shape' => 'Boolean', ], 'LogGroupArn' => [ 'shape' => 'CloudWatchLogGroupArn', ], 'LogOutputFormat' => [ 'shape' => 'String', ], ], ], 'CoipAddressUsage' => [ 'type' => 'structure', 'members' => [ 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'AwsAccountId' => [ 'shape' => 'String', 'locationName' => 'awsAccountId', ], 'AwsService' => [ 'shape' => 'String', 'locationName' => 'awsService', ], 'CoIp' => [ 'shape' => 'String', 'locationName' => 'coIp', ], ], ], 'CoipAddressUsageSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CoipAddressUsage', 'locationName' => 'item', ], ], 'CoipCidr' => [ 'type' => 'structure', 'members' => [ 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'CoipPoolId' => [ 'shape' => 'Ipv4PoolCoipId', 'locationName' => 'coipPoolId', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'String', 'locationName' => 'localGatewayRouteTableId', ], ], ], 'CoipPool' => [ 'type' => 'structure', 'members' => [ 'PoolId' => [ 'shape' => 'Ipv4PoolCoipId', 'locationName' => 'poolId', ], 'PoolCidrs' => [ 'shape' => 'ValueStringList', 'locationName' => 'poolCidrSet', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', 'locationName' => 'localGatewayRouteTableId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'PoolArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'poolArn', ], ], ], 'CoipPoolId' => [ 'type' => 'string', ], 'CoipPoolIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv4PoolCoipId', 'locationName' => 'item', ], ], 'CoipPoolMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'CoipPoolSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CoipPool', 'locationName' => 'item', ], ], 'ComponentAccount' => [ 'type' => 'string', 'pattern' => '\\d{12}', ], 'ComponentRegion' => [ 'type' => 'string', 'pattern' => '[a-z]{2}-[a-z]+-[1-9]+', ], 'ConfirmProductInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'ProductCode', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'ProductCode' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'ConfirmProductInstanceResult' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ConnectionLogOptions' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], 'CloudwatchLogGroup' => [ 'shape' => 'String', ], 'CloudwatchLogStream' => [ 'shape' => 'String', ], ], ], 'ConnectionLogResponseOptions' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], 'CloudwatchLogGroup' => [ 'shape' => 'String', ], 'CloudwatchLogStream' => [ 'shape' => 'String', ], ], ], 'ConnectionNotification' => [ 'type' => 'structure', 'members' => [ 'ConnectionNotificationId' => [ 'shape' => 'String', 'locationName' => 'connectionNotificationId', ], 'ServiceId' => [ 'shape' => 'String', 'locationName' => 'serviceId', ], 'VpcEndpointId' => [ 'shape' => 'String', 'locationName' => 'vpcEndpointId', ], 'ConnectionNotificationType' => [ 'shape' => 'ConnectionNotificationType', 'locationName' => 'connectionNotificationType', ], 'ConnectionNotificationArn' => [ 'shape' => 'String', 'locationName' => 'connectionNotificationArn', ], 'ConnectionEvents' => [ 'shape' => 'ValueStringList', 'locationName' => 'connectionEvents', ], 'ConnectionNotificationState' => [ 'shape' => 'ConnectionNotificationState', 'locationName' => 'connectionNotificationState', ], ], ], 'ConnectionNotificationId' => [ 'type' => 'string', ], 'ConnectionNotificationIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConnectionNotificationId', 'locationName' => 'item', ], ], 'ConnectionNotificationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConnectionNotification', 'locationName' => 'item', ], ], 'ConnectionNotificationState' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Disabled', ], ], 'ConnectionNotificationType' => [ 'type' => 'string', 'enum' => [ 'Topic', ], ], 'ConnectionTrackingConfiguration' => [ 'type' => 'structure', 'members' => [ 'TcpEstablishedTimeout' => [ 'shape' => 'Integer', 'locationName' => 'tcpEstablishedTimeout', ], 'UdpStreamTimeout' => [ 'shape' => 'Integer', 'locationName' => 'udpStreamTimeout', ], 'UdpTimeout' => [ 'shape' => 'Integer', 'locationName' => 'udpTimeout', ], ], ], 'ConnectionTrackingSpecification' => [ 'type' => 'structure', 'members' => [ 'TcpEstablishedTimeout' => [ 'shape' => 'Integer', 'locationName' => 'tcpEstablishedTimeout', ], 'UdpTimeout' => [ 'shape' => 'Integer', 'locationName' => 'udpTimeout', ], 'UdpStreamTimeout' => [ 'shape' => 'Integer', 'locationName' => 'udpStreamTimeout', ], ], ], 'ConnectionTrackingSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'TcpEstablishedTimeout' => [ 'shape' => 'Integer', ], 'UdpStreamTimeout' => [ 'shape' => 'Integer', ], 'UdpTimeout' => [ 'shape' => 'Integer', ], ], ], 'ConnectionTrackingSpecificationResponse' => [ 'type' => 'structure', 'members' => [ 'TcpEstablishedTimeout' => [ 'shape' => 'Integer', 'locationName' => 'tcpEstablishedTimeout', ], 'UdpStreamTimeout' => [ 'shape' => 'Integer', 'locationName' => 'udpStreamTimeout', ], 'UdpTimeout' => [ 'shape' => 'Integer', 'locationName' => 'udpTimeout', ], ], ], 'ConnectivityType' => [ 'type' => 'string', 'enum' => [ 'private', 'public', ], ], 'ContainerFormat' => [ 'type' => 'string', 'enum' => [ 'ova', ], ], 'ConversionIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConversionTaskId', 'locationName' => 'item', ], ], 'ConversionTask' => [ 'type' => 'structure', 'members' => [ 'ConversionTaskId' => [ 'shape' => 'String', 'locationName' => 'conversionTaskId', ], 'ExpirationTime' => [ 'shape' => 'String', 'locationName' => 'expirationTime', ], 'ImportInstance' => [ 'shape' => 'ImportInstanceTaskDetails', 'locationName' => 'importInstance', ], 'ImportVolume' => [ 'shape' => 'ImportVolumeTaskDetails', 'locationName' => 'importVolume', ], 'State' => [ 'shape' => 'ConversionTaskState', 'locationName' => 'state', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ConversionTaskId' => [ 'type' => 'string', ], 'ConversionTaskState' => [ 'type' => 'string', 'enum' => [ 'active', 'cancelling', 'cancelled', 'completed', ], ], 'CoolOffPeriodRequestHours' => [ 'type' => 'integer', 'max' => 72, 'min' => 1, ], 'CoolOffPeriodResponseHours' => [ 'type' => 'integer', ], 'CopyFpgaImageRequest' => [ 'type' => 'structure', 'required' => [ 'SourceFpgaImageId', 'SourceRegion', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'SourceFpgaImageId' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Name' => [ 'shape' => 'String', ], 'SourceRegion' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', ], ], ], 'CopyFpgaImageResult' => [ 'type' => 'structure', 'members' => [ 'FpgaImageId' => [ 'shape' => 'String', 'locationName' => 'fpgaImageId', ], ], ], 'CopyImageRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'SourceImageId', 'SourceRegion', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'KmsKeyId' => [ 'shape' => 'KmsKeyId', 'locationName' => 'kmsKeyId', ], 'Name' => [ 'shape' => 'String', ], 'SourceImageId' => [ 'shape' => 'String', ], 'SourceRegion' => [ 'shape' => 'String', ], 'DestinationOutpostArn' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'CopyImageTags' => [ 'shape' => 'Boolean', ], ], ], 'CopyImageResult' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], ], ], 'CopySnapshotRequest' => [ 'type' => 'structure', 'required' => [ 'SourceRegion', 'SourceSnapshotId', ], 'members' => [ 'Description' => [ 'shape' => 'String', ], 'DestinationOutpostArn' => [ 'shape' => 'String', ], 'DestinationRegion' => [ 'shape' => 'String', 'locationName' => 'destinationRegion', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'KmsKeyId' => [ 'shape' => 'KmsKeyId', 'locationName' => 'kmsKeyId', ], 'PresignedUrl' => [ 'shape' => 'CopySnapshotRequestPSU', 'locationName' => 'presignedUrl', ], 'SourceRegion' => [ 'shape' => 'String', ], 'SourceSnapshotId' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CopySnapshotRequestPSU' => [ 'type' => 'string', 'sensitive' => true, ], 'CopySnapshotResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'CopyTagsFromSource' => [ 'type' => 'string', 'enum' => [ 'volume', ], ], 'CoreCount' => [ 'type' => 'integer', ], 'CoreCountList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CoreCount', 'locationName' => 'item', ], ], 'CoreNetworkArn' => [ 'type' => 'string', ], 'CpuManufacturer' => [ 'type' => 'string', 'enum' => [ 'intel', 'amd', 'amazon-web-services', ], ], 'CpuManufacturerName' => [ 'type' => 'string', ], 'CpuManufacturerSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CpuManufacturer', 'locationName' => 'item', ], ], 'CpuOptions' => [ 'type' => 'structure', 'members' => [ 'CoreCount' => [ 'shape' => 'Integer', 'locationName' => 'coreCount', ], 'ThreadsPerCore' => [ 'shape' => 'Integer', 'locationName' => 'threadsPerCore', ], 'AmdSevSnp' => [ 'shape' => 'AmdSevSnpSpecification', 'locationName' => 'amdSevSnp', ], ], ], 'CpuOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'CoreCount' => [ 'shape' => 'Integer', ], 'ThreadsPerCore' => [ 'shape' => 'Integer', ], 'AmdSevSnp' => [ 'shape' => 'AmdSevSnpSpecification', ], ], ], 'CreateCapacityReservationFleetRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceTypeSpecifications', 'TotalTargetCapacity', ], 'members' => [ 'AllocationStrategy' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'InstanceTypeSpecifications' => [ 'shape' => 'ReservationFleetInstanceSpecificationList', 'locationName' => 'InstanceTypeSpecification', ], 'Tenancy' => [ 'shape' => 'FleetCapacityReservationTenancy', ], 'TotalTargetCapacity' => [ 'shape' => 'Integer', ], 'EndDate' => [ 'shape' => 'MillisecondDateTime', ], 'InstanceMatchCriteria' => [ 'shape' => 'FleetInstanceMatchCriteria', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateCapacityReservationFleetResult' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationFleetId' => [ 'shape' => 'CapacityReservationFleetId', 'locationName' => 'capacityReservationFleetId', ], 'State' => [ 'shape' => 'CapacityReservationFleetState', 'locationName' => 'state', ], 'TotalTargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'totalTargetCapacity', ], 'TotalFulfilledCapacity' => [ 'shape' => 'Double', 'locationName' => 'totalFulfilledCapacity', ], 'InstanceMatchCriteria' => [ 'shape' => 'FleetInstanceMatchCriteria', 'locationName' => 'instanceMatchCriteria', ], 'AllocationStrategy' => [ 'shape' => 'String', 'locationName' => 'allocationStrategy', ], 'CreateTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'createTime', ], 'EndDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'endDate', ], 'Tenancy' => [ 'shape' => 'FleetCapacityReservationTenancy', 'locationName' => 'tenancy', ], 'FleetCapacityReservations' => [ 'shape' => 'FleetCapacityReservationSet', 'locationName' => 'fleetCapacityReservationSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'CreateCapacityReservationRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceType', 'InstancePlatform', 'InstanceCount', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', ], 'InstanceType' => [ 'shape' => 'String', ], 'InstancePlatform' => [ 'shape' => 'CapacityReservationInstancePlatform', ], 'AvailabilityZone' => [ 'shape' => 'AvailabilityZoneName', ], 'AvailabilityZoneId' => [ 'shape' => 'AvailabilityZoneId', ], 'Tenancy' => [ 'shape' => 'CapacityReservationTenancy', ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'EbsOptimized' => [ 'shape' => 'Boolean', ], 'EphemeralStorage' => [ 'shape' => 'Boolean', ], 'EndDate' => [ 'shape' => 'DateTime', ], 'EndDateType' => [ 'shape' => 'EndDateType', ], 'InstanceMatchCriteria' => [ 'shape' => 'InstanceMatchCriteria', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'OutpostArn' => [ 'shape' => 'OutpostArn', ], 'PlacementGroupArn' => [ 'shape' => 'PlacementGroupArn', ], ], ], 'CreateCapacityReservationResult' => [ 'type' => 'structure', 'members' => [ 'CapacityReservation' => [ 'shape' => 'CapacityReservation', 'locationName' => 'capacityReservation', ], ], ], 'CreateCarrierGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'VpcId' => [ 'shape' => 'VpcId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateCarrierGatewayResult' => [ 'type' => 'structure', 'members' => [ 'CarrierGateway' => [ 'shape' => 'CarrierGateway', 'locationName' => 'carrierGateway', ], ], ], 'CreateClientVpnEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'ClientCidrBlock', 'ServerCertificateArn', 'AuthenticationOptions', 'ConnectionLogOptions', ], 'members' => [ 'ClientCidrBlock' => [ 'shape' => 'String', ], 'ServerCertificateArn' => [ 'shape' => 'String', ], 'AuthenticationOptions' => [ 'shape' => 'ClientVpnAuthenticationRequestList', 'locationName' => 'Authentication', ], 'ConnectionLogOptions' => [ 'shape' => 'ConnectionLogOptions', ], 'DnsServers' => [ 'shape' => 'ValueStringList', ], 'TransportProtocol' => [ 'shape' => 'TransportProtocol', ], 'VpnPort' => [ 'shape' => 'Integer', ], 'Description' => [ 'shape' => 'String', ], 'SplitTunnel' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'SecurityGroupIds' => [ 'shape' => 'ClientVpnSecurityGroupIdSet', 'locationName' => 'SecurityGroupId', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'SelfServicePortal' => [ 'shape' => 'SelfServicePortal', ], 'ClientConnectOptions' => [ 'shape' => 'ClientConnectOptions', ], 'SessionTimeoutHours' => [ 'shape' => 'Integer', ], 'ClientLoginBannerOptions' => [ 'shape' => 'ClientLoginBannerOptions', ], ], ], 'CreateClientVpnEndpointResult' => [ 'type' => 'structure', 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'String', 'locationName' => 'clientVpnEndpointId', ], 'Status' => [ 'shape' => 'ClientVpnEndpointStatus', 'locationName' => 'status', ], 'DnsName' => [ 'shape' => 'String', 'locationName' => 'dnsName', ], ], ], 'CreateClientVpnRouteRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', 'DestinationCidrBlock', 'TargetVpcSubnetId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'TargetVpcSubnetId' => [ 'shape' => 'SubnetId', ], 'Description' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateClientVpnRouteResult' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'ClientVpnRouteStatus', 'locationName' => 'status', ], ], ], 'CreateCoipCidrRequest' => [ 'type' => 'structure', 'required' => [ 'Cidr', 'CoipPoolId', ], 'members' => [ 'Cidr' => [ 'shape' => 'String', ], 'CoipPoolId' => [ 'shape' => 'Ipv4PoolCoipId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateCoipCidrResult' => [ 'type' => 'structure', 'members' => [ 'CoipCidr' => [ 'shape' => 'CoipCidr', 'locationName' => 'coipCidr', ], ], ], 'CreateCoipPoolRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableId', ], 'members' => [ 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateCoipPoolResult' => [ 'type' => 'structure', 'members' => [ 'CoipPool' => [ 'shape' => 'CoipPool', 'locationName' => 'coipPool', ], ], ], 'CreateCustomerGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'BgpAsn' => [ 'shape' => 'Integer', ], 'PublicIp' => [ 'shape' => 'String', ], 'CertificateArn' => [ 'shape' => 'String', ], 'Type' => [ 'shape' => 'GatewayType', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DeviceName' => [ 'shape' => 'String', ], 'IpAddress' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CreateCustomerGatewayResult' => [ 'type' => 'structure', 'members' => [ 'CustomerGateway' => [ 'shape' => 'CustomerGateway', 'locationName' => 'customerGateway', ], ], ], 'CreateDefaultSubnetRequest' => [ 'type' => 'structure', 'required' => [ 'AvailabilityZone', ], 'members' => [ 'AvailabilityZone' => [ 'shape' => 'AvailabilityZoneName', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Ipv6Native' => [ 'shape' => 'Boolean', ], ], ], 'CreateDefaultSubnetResult' => [ 'type' => 'structure', 'members' => [ 'Subnet' => [ 'shape' => 'Subnet', 'locationName' => 'subnet', ], ], ], 'CreateDefaultVpcRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateDefaultVpcResult' => [ 'type' => 'structure', 'members' => [ 'Vpc' => [ 'shape' => 'Vpc', 'locationName' => 'vpc', ], ], ], 'CreateDhcpOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'DhcpConfigurations', ], 'members' => [ 'DhcpConfigurations' => [ 'shape' => 'NewDhcpConfigurationList', 'locationName' => 'dhcpConfiguration', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CreateDhcpOptionsResult' => [ 'type' => 'structure', 'members' => [ 'DhcpOptions' => [ 'shape' => 'DhcpOptions', 'locationName' => 'dhcpOptions', ], ], ], 'CreateEgressOnlyInternetGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateEgressOnlyInternetGatewayResult' => [ 'type' => 'structure', 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'EgressOnlyInternetGateway' => [ 'shape' => 'EgressOnlyInternetGateway', 'locationName' => 'egressOnlyInternetGateway', ], ], ], 'CreateFleetError' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateAndOverrides' => [ 'shape' => 'LaunchTemplateAndOverridesResponse', 'locationName' => 'launchTemplateAndOverrides', ], 'Lifecycle' => [ 'shape' => 'InstanceLifecycle', 'locationName' => 'lifecycle', ], 'ErrorCode' => [ 'shape' => 'String', 'locationName' => 'errorCode', ], 'ErrorMessage' => [ 'shape' => 'String', 'locationName' => 'errorMessage', ], ], ], 'CreateFleetErrorsSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CreateFleetError', 'locationName' => 'item', ], ], 'CreateFleetInstance' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateAndOverrides' => [ 'shape' => 'LaunchTemplateAndOverridesResponse', 'locationName' => 'launchTemplateAndOverrides', ], 'Lifecycle' => [ 'shape' => 'InstanceLifecycle', 'locationName' => 'lifecycle', ], 'InstanceIds' => [ 'shape' => 'InstanceIdsSet', 'locationName' => 'instanceIds', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'Platform' => [ 'shape' => 'PlatformValues', 'locationName' => 'platform', ], ], ], 'CreateFleetInstancesSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CreateFleetInstance', 'locationName' => 'item', ], ], 'CreateFleetRequest' => [ 'type' => 'structure', 'required' => [ 'LaunchTemplateConfigs', 'TargetCapacitySpecification', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', ], 'SpotOptions' => [ 'shape' => 'SpotOptionsRequest', ], 'OnDemandOptions' => [ 'shape' => 'OnDemandOptionsRequest', ], 'ExcessCapacityTerminationPolicy' => [ 'shape' => 'FleetExcessCapacityTerminationPolicy', ], 'LaunchTemplateConfigs' => [ 'shape' => 'FleetLaunchTemplateConfigListRequest', ], 'TargetCapacitySpecification' => [ 'shape' => 'TargetCapacitySpecificationRequest', ], 'TerminateInstancesWithExpiration' => [ 'shape' => 'Boolean', ], 'Type' => [ 'shape' => 'FleetType', ], 'ValidFrom' => [ 'shape' => 'DateTime', ], 'ValidUntil' => [ 'shape' => 'DateTime', ], 'ReplaceUnhealthyInstances' => [ 'shape' => 'Boolean', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'Context' => [ 'shape' => 'String', ], ], ], 'CreateFleetResult' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', 'locationName' => 'fleetId', ], 'Errors' => [ 'shape' => 'CreateFleetErrorsSet', 'locationName' => 'errorSet', ], 'Instances' => [ 'shape' => 'CreateFleetInstancesSet', 'locationName' => 'fleetInstanceSet', ], ], ], 'CreateFlowLogsRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceIds', 'ResourceType', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', ], 'DeliverLogsPermissionArn' => [ 'shape' => 'String', ], 'DeliverCrossAccountRole' => [ 'shape' => 'String', ], 'LogGroupName' => [ 'shape' => 'String', ], 'ResourceIds' => [ 'shape' => 'FlowLogResourceIds', 'locationName' => 'ResourceId', ], 'ResourceType' => [ 'shape' => 'FlowLogsResourceType', ], 'TrafficType' => [ 'shape' => 'TrafficType', ], 'LogDestinationType' => [ 'shape' => 'LogDestinationType', ], 'LogDestination' => [ 'shape' => 'String', ], 'LogFormat' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'MaxAggregationInterval' => [ 'shape' => 'Integer', ], 'DestinationOptions' => [ 'shape' => 'DestinationOptionsRequest', ], ], ], 'CreateFlowLogsResult' => [ 'type' => 'structure', 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'FlowLogIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'flowLogIdSet', ], 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemSet', 'locationName' => 'unsuccessful', ], ], ], 'CreateFpgaImageRequest' => [ 'type' => 'structure', 'required' => [ 'InputStorageLocation', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InputStorageLocation' => [ 'shape' => 'StorageLocation', ], 'LogsStorageLocation' => [ 'shape' => 'StorageLocation', ], 'Description' => [ 'shape' => 'String', ], 'Name' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateFpgaImageResult' => [ 'type' => 'structure', 'members' => [ 'FpgaImageId' => [ 'shape' => 'String', 'locationName' => 'fpgaImageId', ], 'FpgaImageGlobalId' => [ 'shape' => 'String', 'locationName' => 'fpgaImageGlobalId', ], ], ], 'CreateImageRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'Name', ], 'members' => [ 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingRequestList', 'locationName' => 'blockDeviceMapping', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], 'NoReboot' => [ 'shape' => 'Boolean', 'locationName' => 'noReboot', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateImageResult' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], ], ], 'CreateInstanceConnectEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdStringListRequest', 'locationName' => 'SecurityGroupId', ], 'PreserveClientIp' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateInstanceConnectEndpointResult' => [ 'type' => 'structure', 'members' => [ 'InstanceConnectEndpoint' => [ 'shape' => 'Ec2InstanceConnectEndpoint', 'locationName' => 'instanceConnectEndpoint', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateInstanceEventWindowRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Name' => [ 'shape' => 'String', ], 'TimeRanges' => [ 'shape' => 'InstanceEventWindowTimeRangeRequestSet', 'locationName' => 'TimeRange', ], 'CronExpression' => [ 'shape' => 'InstanceEventWindowCronExpression', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateInstanceEventWindowResult' => [ 'type' => 'structure', 'members' => [ 'InstanceEventWindow' => [ 'shape' => 'InstanceEventWindow', 'locationName' => 'instanceEventWindow', ], ], ], 'CreateInstanceExportTaskRequest' => [ 'type' => 'structure', 'required' => [ 'ExportToS3Task', 'InstanceId', 'TargetEnvironment', ], 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'ExportToS3Task' => [ 'shape' => 'ExportToS3TaskSpecification', 'locationName' => 'exportToS3', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'TargetEnvironment' => [ 'shape' => 'ExportEnvironment', 'locationName' => 'targetEnvironment', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateInstanceExportTaskResult' => [ 'type' => 'structure', 'members' => [ 'ExportTask' => [ 'shape' => 'ExportTask', 'locationName' => 'exportTask', ], ], ], 'CreateInternetGatewayRequest' => [ 'type' => 'structure', 'members' => [ 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CreateInternetGatewayResult' => [ 'type' => 'structure', 'members' => [ 'InternetGateway' => [ 'shape' => 'InternetGateway', 'locationName' => 'internetGateway', ], ], ], 'CreateIpamPoolRequest' => [ 'type' => 'structure', 'required' => [ 'IpamScopeId', 'AddressFamily', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamScopeId' => [ 'shape' => 'IpamScopeId', ], 'Locale' => [ 'shape' => 'String', ], 'SourceIpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Description' => [ 'shape' => 'String', ], 'AddressFamily' => [ 'shape' => 'AddressFamily', ], 'AutoImport' => [ 'shape' => 'Boolean', ], 'PubliclyAdvertisable' => [ 'shape' => 'Boolean', ], 'AllocationMinNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', ], 'AllocationMaxNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', ], 'AllocationDefaultNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', ], 'AllocationResourceTags' => [ 'shape' => 'RequestIpamResourceTagList', 'locationName' => 'AllocationResourceTag', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'AwsService' => [ 'shape' => 'IpamPoolAwsService', ], 'PublicIpSource' => [ 'shape' => 'IpamPoolPublicIpSource', ], 'SourceResource' => [ 'shape' => 'IpamPoolSourceResourceRequest', ], ], ], 'CreateIpamPoolResult' => [ 'type' => 'structure', 'members' => [ 'IpamPool' => [ 'shape' => 'IpamPool', 'locationName' => 'ipamPool', ], ], ], 'CreateIpamRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Description' => [ 'shape' => 'String', ], 'OperatingRegions' => [ 'shape' => 'AddIpamOperatingRegionSet', 'locationName' => 'OperatingRegion', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'Tier' => [ 'shape' => 'IpamTier', ], ], ], 'CreateIpamResourceDiscoveryRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Description' => [ 'shape' => 'String', ], 'OperatingRegions' => [ 'shape' => 'AddIpamOperatingRegionSet', 'locationName' => 'OperatingRegion', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateIpamResourceDiscoveryResult' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscovery' => [ 'shape' => 'IpamResourceDiscovery', 'locationName' => 'ipamResourceDiscovery', ], ], ], 'CreateIpamResult' => [ 'type' => 'structure', 'members' => [ 'Ipam' => [ 'shape' => 'Ipam', 'locationName' => 'ipam', ], ], ], 'CreateIpamScopeRequest' => [ 'type' => 'structure', 'required' => [ 'IpamId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamId' => [ 'shape' => 'IpamId', ], 'Description' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateIpamScopeResult' => [ 'type' => 'structure', 'members' => [ 'IpamScope' => [ 'shape' => 'IpamScope', 'locationName' => 'ipamScope', ], ], ], 'CreateKeyPairRequest' => [ 'type' => 'structure', 'required' => [ 'KeyName', ], 'members' => [ 'KeyName' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'KeyType' => [ 'shape' => 'KeyType', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'KeyFormat' => [ 'shape' => 'KeyFormat', ], ], ], 'CreateLaunchTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'LaunchTemplateName', 'LaunchTemplateData', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', ], 'VersionDescription' => [ 'shape' => 'VersionDescription', ], 'LaunchTemplateData' => [ 'shape' => 'RequestLaunchTemplateData', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateLaunchTemplateResult' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplate' => [ 'shape' => 'LaunchTemplate', 'locationName' => 'launchTemplate', ], 'Warning' => [ 'shape' => 'ValidationWarning', 'locationName' => 'warning', ], ], ], 'CreateLaunchTemplateVersionRequest' => [ 'type' => 'structure', 'required' => [ 'LaunchTemplateData', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', ], 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', ], 'SourceVersion' => [ 'shape' => 'String', ], 'VersionDescription' => [ 'shape' => 'VersionDescription', ], 'LaunchTemplateData' => [ 'shape' => 'RequestLaunchTemplateData', ], 'ResolveAlias' => [ 'shape' => 'Boolean', ], ], ], 'CreateLaunchTemplateVersionResult' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateVersion' => [ 'shape' => 'LaunchTemplateVersion', 'locationName' => 'launchTemplateVersion', ], 'Warning' => [ 'shape' => 'ValidationWarning', 'locationName' => 'warning', ], ], ], 'CreateLocalGatewayRouteRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', ], 'LocalGatewayVirtualInterfaceGroupId' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'DestinationPrefixListId' => [ 'shape' => 'PrefixListResourceId', ], ], ], 'CreateLocalGatewayRouteResult' => [ 'type' => 'structure', 'members' => [ 'Route' => [ 'shape' => 'LocalGatewayRoute', 'locationName' => 'route', ], ], ], 'CreateLocalGatewayRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayId', ], 'members' => [ 'LocalGatewayId' => [ 'shape' => 'LocalGatewayId', ], 'Mode' => [ 'shape' => 'LocalGatewayRouteTableMode', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateLocalGatewayRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTable' => [ 'shape' => 'LocalGatewayRouteTable', 'locationName' => 'localGatewayRouteTable', ], ], ], 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableId', 'LocalGatewayVirtualInterfaceGroupId', ], 'members' => [ 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', ], 'LocalGatewayVirtualInterfaceGroupId' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation' => [ 'shape' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation', 'locationName' => 'localGatewayRouteTableVirtualInterfaceGroupAssociation', ], ], ], 'CreateLocalGatewayRouteTableVpcAssociationRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableId', 'VpcId', ], 'members' => [ 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateLocalGatewayRouteTableVpcAssociationResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVpcAssociation' => [ 'shape' => 'LocalGatewayRouteTableVpcAssociation', 'locationName' => 'localGatewayRouteTableVpcAssociation', ], ], ], 'CreateManagedPrefixListRequest' => [ 'type' => 'structure', 'required' => [ 'PrefixListName', 'MaxEntries', 'AddressFamily', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'PrefixListName' => [ 'shape' => 'String', ], 'Entries' => [ 'shape' => 'AddPrefixListEntries', 'locationName' => 'Entry', ], 'MaxEntries' => [ 'shape' => 'Integer', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'AddressFamily' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateManagedPrefixListResult' => [ 'type' => 'structure', 'members' => [ 'PrefixList' => [ 'shape' => 'ManagedPrefixList', 'locationName' => 'prefixList', ], ], ], 'CreateNatGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', ], 'members' => [ 'AllocationId' => [ 'shape' => 'AllocationId', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ConnectivityType' => [ 'shape' => 'ConnectivityType', ], 'PrivateIpAddress' => [ 'shape' => 'String', ], 'SecondaryAllocationIds' => [ 'shape' => 'AllocationIdList', 'locationName' => 'SecondaryAllocationId', ], 'SecondaryPrivateIpAddresses' => [ 'shape' => 'IpList', 'locationName' => 'SecondaryPrivateIpAddress', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'PrivateIpAddressCount', ], ], ], 'CreateNatGatewayResult' => [ 'type' => 'structure', 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'NatGateway' => [ 'shape' => 'NatGateway', 'locationName' => 'natGateway', ], ], ], 'CreateNetworkAclEntryRequest' => [ 'type' => 'structure', 'required' => [ 'Egress', 'NetworkAclId', 'Protocol', 'RuleAction', 'RuleNumber', ], 'members' => [ 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Egress' => [ 'shape' => 'Boolean', 'locationName' => 'egress', ], 'IcmpTypeCode' => [ 'shape' => 'IcmpTypeCode', 'locationName' => 'Icmp', ], 'Ipv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'ipv6CidrBlock', ], 'NetworkAclId' => [ 'shape' => 'NetworkAclId', 'locationName' => 'networkAclId', ], 'PortRange' => [ 'shape' => 'PortRange', 'locationName' => 'portRange', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], 'RuleAction' => [ 'shape' => 'RuleAction', 'locationName' => 'ruleAction', ], 'RuleNumber' => [ 'shape' => 'Integer', 'locationName' => 'ruleNumber', ], ], ], 'CreateNetworkAclRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateNetworkAclResult' => [ 'type' => 'structure', 'members' => [ 'NetworkAcl' => [ 'shape' => 'NetworkAcl', 'locationName' => 'networkAcl', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateNetworkInsightsAccessScopeRequest' => [ 'type' => 'structure', 'required' => [ 'ClientToken', ], 'members' => [ 'MatchPaths' => [ 'shape' => 'AccessScopePathListRequest', 'locationName' => 'MatchPath', ], 'ExcludePaths' => [ 'shape' => 'AccessScopePathListRequest', 'locationName' => 'ExcludePath', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateNetworkInsightsAccessScopeResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScope' => [ 'shape' => 'NetworkInsightsAccessScope', 'locationName' => 'networkInsightsAccessScope', ], 'NetworkInsightsAccessScopeContent' => [ 'shape' => 'NetworkInsightsAccessScopeContent', 'locationName' => 'networkInsightsAccessScopeContent', ], ], ], 'CreateNetworkInsightsPathRequest' => [ 'type' => 'structure', 'required' => [ 'Source', 'Protocol', 'ClientToken', ], 'members' => [ 'SourceIp' => [ 'shape' => 'IpAddress', ], 'DestinationIp' => [ 'shape' => 'IpAddress', ], 'Source' => [ 'shape' => 'NetworkInsightsResourceId', ], 'Destination' => [ 'shape' => 'NetworkInsightsResourceId', ], 'Protocol' => [ 'shape' => 'Protocol', ], 'DestinationPort' => [ 'shape' => 'Port', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'FilterAtSource' => [ 'shape' => 'PathRequestFilter', ], 'FilterAtDestination' => [ 'shape' => 'PathRequestFilter', ], ], ], 'CreateNetworkInsightsPathResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsPath' => [ 'shape' => 'NetworkInsightsPath', 'locationName' => 'networkInsightsPath', ], ], ], 'CreateNetworkInterfacePermissionRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', 'Permission', ], 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'AwsAccountId' => [ 'shape' => 'String', ], 'AwsService' => [ 'shape' => 'String', ], 'Permission' => [ 'shape' => 'InterfacePermissionType', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateNetworkInterfacePermissionResult' => [ 'type' => 'structure', 'members' => [ 'InterfacePermission' => [ 'shape' => 'NetworkInterfacePermission', 'locationName' => 'interfacePermission', ], ], ], 'CreateNetworkInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', ], 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Groups' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'Ipv6AddressCount' => [ 'shape' => 'Integer', 'locationName' => 'ipv6AddressCount', ], 'Ipv6Addresses' => [ 'shape' => 'InstanceIpv6AddressList', 'locationName' => 'ipv6Addresses', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'PrivateIpAddresses' => [ 'shape' => 'PrivateIpAddressSpecificationList', 'locationName' => 'privateIpAddresses', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'secondaryPrivateIpAddressCount', ], 'Ipv4Prefixes' => [ 'shape' => 'Ipv4PrefixList', 'locationName' => 'Ipv4Prefix', ], 'Ipv4PrefixCount' => [ 'shape' => 'Integer', ], 'Ipv6Prefixes' => [ 'shape' => 'Ipv6PrefixList', 'locationName' => 'Ipv6Prefix', ], 'Ipv6PrefixCount' => [ 'shape' => 'Integer', ], 'InterfaceType' => [ 'shape' => 'NetworkInterfaceCreationType', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'EnablePrimaryIpv6' => [ 'shape' => 'Boolean', ], 'ConnectionTrackingSpecification' => [ 'shape' => 'ConnectionTrackingSpecificationRequest', ], ], ], 'CreateNetworkInterfaceResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInterface' => [ 'shape' => 'NetworkInterface', 'locationName' => 'networkInterface', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreatePlacementGroupRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'Strategy' => [ 'shape' => 'PlacementStrategy', 'locationName' => 'strategy', ], 'PartitionCount' => [ 'shape' => 'Integer', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'SpreadLevel' => [ 'shape' => 'SpreadLevel', ], ], ], 'CreatePlacementGroupResult' => [ 'type' => 'structure', 'members' => [ 'PlacementGroup' => [ 'shape' => 'PlacementGroup', 'locationName' => 'placementGroup', ], ], ], 'CreatePublicIpv4PoolRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreatePublicIpv4PoolResult' => [ 'type' => 'structure', 'members' => [ 'PoolId' => [ 'shape' => 'Ipv4PoolEc2Id', 'locationName' => 'poolId', ], ], ], 'CreateReplaceRootVolumeTaskRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ImageId' => [ 'shape' => 'ImageId', ], 'DeleteReplacedRootVolume' => [ 'shape' => 'Boolean', ], ], ], 'CreateReplaceRootVolumeTaskResult' => [ 'type' => 'structure', 'members' => [ 'ReplaceRootVolumeTask' => [ 'shape' => 'ReplaceRootVolumeTask', 'locationName' => 'replaceRootVolumeTask', ], ], ], 'CreateReservedInstancesListingRequest' => [ 'type' => 'structure', 'required' => [ 'ClientToken', 'InstanceCount', 'PriceSchedules', 'ReservedInstancesId', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'PriceSchedules' => [ 'shape' => 'PriceScheduleSpecificationList', 'locationName' => 'priceSchedules', ], 'ReservedInstancesId' => [ 'shape' => 'ReservationId', 'locationName' => 'reservedInstancesId', ], ], ], 'CreateReservedInstancesListingResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesListings' => [ 'shape' => 'ReservedInstancesListingList', 'locationName' => 'reservedInstancesListingsSet', ], ], ], 'CreateRestoreImageTaskRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'ObjectKey', ], 'members' => [ 'Bucket' => [ 'shape' => 'String', ], 'ObjectKey' => [ 'shape' => 'String', ], 'Name' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateRestoreImageTaskResult' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], ], ], 'CreateRouteRequest' => [ 'type' => 'structure', 'required' => [ 'RouteTableId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'DestinationIpv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationIpv6CidrBlock', ], 'DestinationPrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcEndpointId' => [ 'shape' => 'VpcEndpointId', ], 'EgressOnlyInternetGatewayId' => [ 'shape' => 'EgressOnlyInternetGatewayId', 'locationName' => 'egressOnlyInternetGatewayId', ], 'GatewayId' => [ 'shape' => 'RouteGatewayId', 'locationName' => 'gatewayId', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'NatGatewayId' => [ 'shape' => 'NatGatewayId', 'locationName' => 'natGatewayId', ], 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'LocalGatewayId' => [ 'shape' => 'LocalGatewayId', ], 'CarrierGatewayId' => [ 'shape' => 'CarrierGatewayId', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'RouteTableId' => [ 'shape' => 'RouteTableId', 'locationName' => 'routeTableId', ], 'VpcPeeringConnectionId' => [ 'shape' => 'VpcPeeringConnectionId', 'locationName' => 'vpcPeeringConnectionId', ], 'CoreNetworkArn' => [ 'shape' => 'CoreNetworkArn', ], ], ], 'CreateRouteResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'CreateRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'RouteTable' => [ 'shape' => 'RouteTable', 'locationName' => 'routeTable', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateSecurityGroupRequest' => [ 'type' => 'structure', 'required' => [ 'Description', 'GroupName', ], 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'GroupDescription', ], 'GroupName' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CreateSecurityGroupResult' => [ 'type' => 'structure', 'members' => [ 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'CreateSnapshotRequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'Description' => [ 'shape' => 'String', ], 'OutpostArn' => [ 'shape' => 'String', ], 'VolumeId' => [ 'shape' => 'VolumeId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CreateSnapshotsRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceSpecification', ], 'members' => [ 'Description' => [ 'shape' => 'String', ], 'InstanceSpecification' => [ 'shape' => 'InstanceSpecification', ], 'OutpostArn' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'CopyTagsFromSource' => [ 'shape' => 'CopyTagsFromSource', ], ], ], 'CreateSnapshotsResult' => [ 'type' => 'structure', 'members' => [ 'Snapshots' => [ 'shape' => 'SnapshotSet', 'locationName' => 'snapshotSet', ], ], ], 'CreateSpotDatafeedSubscriptionRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'String', 'locationName' => 'bucket', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Prefix' => [ 'shape' => 'String', 'locationName' => 'prefix', ], ], ], 'CreateSpotDatafeedSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'SpotDatafeedSubscription' => [ 'shape' => 'SpotDatafeedSubscription', 'locationName' => 'spotDatafeedSubscription', ], ], ], 'CreateStoreImageTaskRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', 'Bucket', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'Bucket' => [ 'shape' => 'String', ], 'S3ObjectTags' => [ 'shape' => 'S3ObjectTagList', 'locationName' => 'S3ObjectTag', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateStoreImageTaskResult' => [ 'type' => 'structure', 'members' => [ 'ObjectKey' => [ 'shape' => 'String', 'locationName' => 'objectKey', ], ], ], 'CreateSubnetCidrReservationRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', 'Cidr', 'ReservationType', ], 'members' => [ 'SubnetId' => [ 'shape' => 'SubnetId', ], 'Cidr' => [ 'shape' => 'String', ], 'ReservationType' => [ 'shape' => 'SubnetCidrReservationType', ], 'Description' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateSubnetCidrReservationResult' => [ 'type' => 'structure', 'members' => [ 'SubnetCidrReservation' => [ 'shape' => 'SubnetCidrReservation', 'locationName' => 'subnetCidrReservation', ], ], ], 'CreateSubnetRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'AvailabilityZoneId' => [ 'shape' => 'String', ], 'CidrBlock' => [ 'shape' => 'String', ], 'Ipv6CidrBlock' => [ 'shape' => 'String', ], 'OutpostArn' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Ipv6Native' => [ 'shape' => 'Boolean', ], 'Ipv4IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Ipv4NetmaskLength' => [ 'shape' => 'NetmaskLength', ], 'Ipv6IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Ipv6NetmaskLength' => [ 'shape' => 'NetmaskLength', ], ], ], 'CreateSubnetResult' => [ 'type' => 'structure', 'members' => [ 'Subnet' => [ 'shape' => 'Subnet', 'locationName' => 'subnet', ], ], ], 'CreateTagsRequest' => [ 'type' => 'structure', 'required' => [ 'Resources', 'Tags', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Resources' => [ 'shape' => 'ResourceIdList', 'locationName' => 'ResourceId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'Tag', ], ], ], 'CreateTrafficMirrorFilterRequest' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateTrafficMirrorFilterResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilter' => [ 'shape' => 'TrafficMirrorFilter', 'locationName' => 'trafficMirrorFilter', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateTrafficMirrorFilterRuleRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficMirrorFilterId', 'TrafficDirection', 'RuleNumber', 'RuleAction', 'DestinationCidrBlock', 'SourceCidrBlock', ], 'members' => [ 'TrafficMirrorFilterId' => [ 'shape' => 'TrafficMirrorFilterId', ], 'TrafficDirection' => [ 'shape' => 'TrafficDirection', ], 'RuleNumber' => [ 'shape' => 'Integer', ], 'RuleAction' => [ 'shape' => 'TrafficMirrorRuleAction', ], 'DestinationPortRange' => [ 'shape' => 'TrafficMirrorPortRangeRequest', ], 'SourcePortRange' => [ 'shape' => 'TrafficMirrorPortRangeRequest', ], 'Protocol' => [ 'shape' => 'Integer', ], 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'SourceCidrBlock' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateTrafficMirrorFilterRuleResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilterRule' => [ 'shape' => 'TrafficMirrorFilterRule', 'locationName' => 'trafficMirrorFilterRule', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateTrafficMirrorSessionRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', 'TrafficMirrorTargetId', 'TrafficMirrorFilterId', 'SessionNumber', ], 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'TrafficMirrorTargetId' => [ 'shape' => 'TrafficMirrorTargetId', ], 'TrafficMirrorFilterId' => [ 'shape' => 'TrafficMirrorFilterId', ], 'PacketLength' => [ 'shape' => 'Integer', ], 'SessionNumber' => [ 'shape' => 'Integer', ], 'VirtualNetworkId' => [ 'shape' => 'Integer', ], 'Description' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateTrafficMirrorSessionResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorSession' => [ 'shape' => 'TrafficMirrorSession', 'locationName' => 'trafficMirrorSession', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateTrafficMirrorTargetRequest' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'NetworkLoadBalancerArn' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'GatewayLoadBalancerEndpointId' => [ 'shape' => 'VpcEndpointId', ], ], ], 'CreateTrafficMirrorTargetResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorTarget' => [ 'shape' => 'TrafficMirrorTarget', 'locationName' => 'trafficMirrorTarget', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateTransitGatewayConnectPeerRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', 'PeerAddress', 'InsideCidrBlocks', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'TransitGatewayAddress' => [ 'shape' => 'String', ], 'PeerAddress' => [ 'shape' => 'String', ], 'BgpOptions' => [ 'shape' => 'TransitGatewayConnectRequestBgpOptions', ], 'InsideCidrBlocks' => [ 'shape' => 'InsideCidrBlocksStringList', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayConnectPeerResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayConnectPeer' => [ 'shape' => 'TransitGatewayConnectPeer', 'locationName' => 'transitGatewayConnectPeer', ], ], ], 'CreateTransitGatewayConnectRequest' => [ 'type' => 'structure', 'required' => [ 'TransportTransitGatewayAttachmentId', 'Options', ], 'members' => [ 'TransportTransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'Options' => [ 'shape' => 'CreateTransitGatewayConnectRequestOptions', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayConnectRequestOptions' => [ 'type' => 'structure', 'required' => [ 'Protocol', ], 'members' => [ 'Protocol' => [ 'shape' => 'ProtocolValue', ], ], ], 'CreateTransitGatewayConnectResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayConnect' => [ 'shape' => 'TransitGatewayConnect', 'locationName' => 'transitGatewayConnect', ], ], ], 'CreateTransitGatewayMulticastDomainRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayId', ], 'members' => [ 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'Options' => [ 'shape' => 'CreateTransitGatewayMulticastDomainRequestOptions', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayMulticastDomainRequestOptions' => [ 'type' => 'structure', 'members' => [ 'Igmpv2Support' => [ 'shape' => 'Igmpv2SupportValue', ], 'StaticSourcesSupport' => [ 'shape' => 'StaticSourcesSupportValue', ], 'AutoAcceptSharedAssociations' => [ 'shape' => 'AutoAcceptSharedAssociationsValue', ], ], ], 'CreateTransitGatewayMulticastDomainResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomain' => [ 'shape' => 'TransitGatewayMulticastDomain', 'locationName' => 'transitGatewayMulticastDomain', ], ], ], 'CreateTransitGatewayPeeringAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayId', 'PeerTransitGatewayId', 'PeerAccountId', 'PeerRegion', ], 'members' => [ 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'PeerTransitGatewayId' => [ 'shape' => 'TransitAssociationGatewayId', ], 'PeerAccountId' => [ 'shape' => 'String', ], 'PeerRegion' => [ 'shape' => 'String', ], 'Options' => [ 'shape' => 'CreateTransitGatewayPeeringAttachmentRequestOptions', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayPeeringAttachmentRequestOptions' => [ 'type' => 'structure', 'members' => [ 'DynamicRouting' => [ 'shape' => 'DynamicRoutingValue', ], ], ], 'CreateTransitGatewayPeeringAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPeeringAttachment' => [ 'shape' => 'TransitGatewayPeeringAttachment', 'locationName' => 'transitGatewayPeeringAttachment', ], ], ], 'CreateTransitGatewayPolicyTableRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayId', ], 'members' => [ 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayPolicyTableResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPolicyTable' => [ 'shape' => 'TransitGatewayPolicyTable', 'locationName' => 'transitGatewayPolicyTable', ], ], ], 'CreateTransitGatewayPrefixListReferenceRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'PrefixListId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'Blackhole' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayPrefixListReferenceResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPrefixListReference' => [ 'shape' => 'TransitGatewayPrefixListReference', 'locationName' => 'transitGatewayPrefixListReference', ], ], ], 'CreateTransitGatewayRequest' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', ], 'Options' => [ 'shape' => 'TransitGatewayRequestOptions', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayResult' => [ 'type' => 'structure', 'members' => [ 'TransitGateway' => [ 'shape' => 'TransitGateway', 'locationName' => 'transitGateway', ], ], ], 'CreateTransitGatewayRouteRequest' => [ 'type' => 'structure', 'required' => [ 'DestinationCidrBlock', 'TransitGatewayRouteTableId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'Blackhole' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayRouteResult' => [ 'type' => 'structure', 'members' => [ 'Route' => [ 'shape' => 'TransitGatewayRoute', 'locationName' => 'route', ], ], ], 'CreateTransitGatewayRouteTableAnnouncementRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'PeeringAttachmentId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'PeeringAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayRouteTableAnnouncementResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableAnnouncement' => [ 'shape' => 'TransitGatewayRouteTableAnnouncement', 'locationName' => 'transitGatewayRouteTableAnnouncement', ], ], ], 'CreateTransitGatewayRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayId', ], 'members' => [ 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTable' => [ 'shape' => 'TransitGatewayRouteTable', 'locationName' => 'transitGatewayRouteTable', ], ], ], 'CreateTransitGatewayVpcAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayId', 'VpcId', 'SubnetIds', ], 'members' => [ 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'SubnetIds' => [ 'shape' => 'TransitGatewaySubnetIdList', ], 'Options' => [ 'shape' => 'CreateTransitGatewayVpcAttachmentRequestOptions', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'CreateTransitGatewayVpcAttachmentRequestOptions' => [ 'type' => 'structure', 'members' => [ 'DnsSupport' => [ 'shape' => 'DnsSupportValue', ], 'SecurityGroupReferencingSupport' => [ 'shape' => 'SecurityGroupReferencingSupportValue', ], 'Ipv6Support' => [ 'shape' => 'Ipv6SupportValue', ], 'ApplianceModeSupport' => [ 'shape' => 'ApplianceModeSupportValue', ], ], ], 'CreateTransitGatewayVpcAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayVpcAttachment' => [ 'shape' => 'TransitGatewayVpcAttachment', 'locationName' => 'transitGatewayVpcAttachment', ], ], ], 'CreateVerifiedAccessEndpointEniOptions' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'Protocol' => [ 'shape' => 'VerifiedAccessEndpointProtocol', ], 'Port' => [ 'shape' => 'VerifiedAccessEndpointPortNumber', ], ], ], 'CreateVerifiedAccessEndpointLoadBalancerOptions' => [ 'type' => 'structure', 'members' => [ 'Protocol' => [ 'shape' => 'VerifiedAccessEndpointProtocol', ], 'Port' => [ 'shape' => 'VerifiedAccessEndpointPortNumber', ], 'LoadBalancerArn' => [ 'shape' => 'LoadBalancerArn', ], 'SubnetIds' => [ 'shape' => 'CreateVerifiedAccessEndpointSubnetIdList', 'locationName' => 'SubnetId', ], ], ], 'CreateVerifiedAccessEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessGroupId', 'EndpointType', 'AttachmentType', 'DomainCertificateArn', 'ApplicationDomain', 'EndpointDomainPrefix', ], 'members' => [ 'VerifiedAccessGroupId' => [ 'shape' => 'VerifiedAccessGroupId', ], 'EndpointType' => [ 'shape' => 'VerifiedAccessEndpointType', ], 'AttachmentType' => [ 'shape' => 'VerifiedAccessEndpointAttachmentType', ], 'DomainCertificateArn' => [ 'shape' => 'CertificateArn', ], 'ApplicationDomain' => [ 'shape' => 'String', ], 'EndpointDomainPrefix' => [ 'shape' => 'String', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdList', 'locationName' => 'SecurityGroupId', ], 'LoadBalancerOptions' => [ 'shape' => 'CreateVerifiedAccessEndpointLoadBalancerOptions', ], 'NetworkInterfaceOptions' => [ 'shape' => 'CreateVerifiedAccessEndpointEniOptions', ], 'Description' => [ 'shape' => 'String', ], 'PolicyDocument' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationRequest', ], ], ], 'CreateVerifiedAccessEndpointResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessEndpoint' => [ 'shape' => 'VerifiedAccessEndpoint', 'locationName' => 'verifiedAccessEndpoint', ], ], ], 'CreateVerifiedAccessEndpointSubnetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetId', 'locationName' => 'item', ], ], 'CreateVerifiedAccessGroupRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessInstanceId', ], 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'Description' => [ 'shape' => 'String', ], 'PolicyDocument' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationRequest', ], ], ], 'CreateVerifiedAccessGroupResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessGroup' => [ 'shape' => 'VerifiedAccessGroup', 'locationName' => 'verifiedAccessGroup', ], ], ], 'CreateVerifiedAccessInstanceRequest' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'FIPSEnabled' => [ 'shape' => 'Boolean', ], ], ], 'CreateVerifiedAccessInstanceResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstance' => [ 'shape' => 'VerifiedAccessInstance', 'locationName' => 'verifiedAccessInstance', ], ], ], 'CreateVerifiedAccessTrustProviderDeviceOptions' => [ 'type' => 'structure', 'members' => [ 'TenantId' => [ 'shape' => 'String', ], 'PublicSigningKeyUrl' => [ 'shape' => 'String', ], ], ], 'CreateVerifiedAccessTrustProviderOidcOptions' => [ 'type' => 'structure', 'members' => [ 'Issuer' => [ 'shape' => 'String', ], 'AuthorizationEndpoint' => [ 'shape' => 'String', ], 'TokenEndpoint' => [ 'shape' => 'String', ], 'UserInfoEndpoint' => [ 'shape' => 'String', ], 'ClientId' => [ 'shape' => 'String', ], 'ClientSecret' => [ 'shape' => 'ClientSecretType', ], 'Scope' => [ 'shape' => 'String', ], ], ], 'CreateVerifiedAccessTrustProviderRequest' => [ 'type' => 'structure', 'required' => [ 'TrustProviderType', 'PolicyReferenceName', ], 'members' => [ 'TrustProviderType' => [ 'shape' => 'TrustProviderType', ], 'UserTrustProviderType' => [ 'shape' => 'UserTrustProviderType', ], 'DeviceTrustProviderType' => [ 'shape' => 'DeviceTrustProviderType', ], 'OidcOptions' => [ 'shape' => 'CreateVerifiedAccessTrustProviderOidcOptions', ], 'DeviceOptions' => [ 'shape' => 'CreateVerifiedAccessTrustProviderDeviceOptions', ], 'PolicyReferenceName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationRequest', ], ], ], 'CreateVerifiedAccessTrustProviderResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProvider' => [ 'shape' => 'VerifiedAccessTrustProvider', 'locationName' => 'verifiedAccessTrustProvider', ], ], ], 'CreateVolumePermission' => [ 'type' => 'structure', 'members' => [ 'Group' => [ 'shape' => 'PermissionGroup', 'locationName' => 'group', ], 'UserId' => [ 'shape' => 'String', 'locationName' => 'userId', ], ], ], 'CreateVolumePermissionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CreateVolumePermission', 'locationName' => 'item', ], ], 'CreateVolumePermissionModifications' => [ 'type' => 'structure', 'members' => [ 'Add' => [ 'shape' => 'CreateVolumePermissionList', ], 'Remove' => [ 'shape' => 'CreateVolumePermissionList', ], ], ], 'CreateVolumeRequest' => [ 'type' => 'structure', 'required' => [ 'AvailabilityZone', ], 'members' => [ 'AvailabilityZone' => [ 'shape' => 'AvailabilityZoneName', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'Iops' => [ 'shape' => 'Integer', ], 'KmsKeyId' => [ 'shape' => 'KmsKeyId', ], 'OutpostArn' => [ 'shape' => 'String', ], 'Size' => [ 'shape' => 'Integer', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'VolumeType' => [ 'shape' => 'VolumeType', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'MultiAttachEnabled' => [ 'shape' => 'Boolean', ], 'Throughput' => [ 'shape' => 'Integer', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'CreateVpcEndpointConnectionNotificationRequest' => [ 'type' => 'structure', 'required' => [ 'ConnectionNotificationArn', 'ConnectionEvents', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceId' => [ 'shape' => 'VpcEndpointServiceId', ], 'VpcEndpointId' => [ 'shape' => 'VpcEndpointId', ], 'ConnectionNotificationArn' => [ 'shape' => 'String', ], 'ConnectionEvents' => [ 'shape' => 'ValueStringList', ], 'ClientToken' => [ 'shape' => 'String', ], ], ], 'CreateVpcEndpointConnectionNotificationResult' => [ 'type' => 'structure', 'members' => [ 'ConnectionNotification' => [ 'shape' => 'ConnectionNotification', 'locationName' => 'connectionNotification', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateVpcEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', 'ServiceName', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VpcEndpointType' => [ 'shape' => 'VpcEndpointType', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'ServiceName' => [ 'shape' => 'String', ], 'PolicyDocument' => [ 'shape' => 'String', ], 'RouteTableIds' => [ 'shape' => 'VpcEndpointRouteTableIdList', 'locationName' => 'RouteTableId', ], 'SubnetIds' => [ 'shape' => 'VpcEndpointSubnetIdList', 'locationName' => 'SubnetId', ], 'SecurityGroupIds' => [ 'shape' => 'VpcEndpointSecurityGroupIdList', 'locationName' => 'SecurityGroupId', ], 'IpAddressType' => [ 'shape' => 'IpAddressType', ], 'DnsOptions' => [ 'shape' => 'DnsOptionsSpecification', ], 'ClientToken' => [ 'shape' => 'String', ], 'PrivateDnsEnabled' => [ 'shape' => 'Boolean', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'SubnetConfigurations' => [ 'shape' => 'SubnetConfigurationsList', 'locationName' => 'SubnetConfiguration', ], ], ], 'CreateVpcEndpointResult' => [ 'type' => 'structure', 'members' => [ 'VpcEndpoint' => [ 'shape' => 'VpcEndpoint', 'locationName' => 'vpcEndpoint', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateVpcEndpointServiceConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'AcceptanceRequired' => [ 'shape' => 'Boolean', ], 'PrivateDnsName' => [ 'shape' => 'String', ], 'NetworkLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'NetworkLoadBalancerArn', ], 'GatewayLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'GatewayLoadBalancerArn', ], 'SupportedIpAddressTypes' => [ 'shape' => 'ValueStringList', 'locationName' => 'SupportedIpAddressType', ], 'ClientToken' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateVpcEndpointServiceConfigurationResult' => [ 'type' => 'structure', 'members' => [ 'ServiceConfiguration' => [ 'shape' => 'ServiceConfiguration', 'locationName' => 'serviceConfiguration', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateVpcPeeringConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'PeerOwnerId' => [ 'shape' => 'String', 'locationName' => 'peerOwnerId', ], 'PeerVpcId' => [ 'shape' => 'String', 'locationName' => 'peerVpcId', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], 'PeerRegion' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateVpcPeeringConnectionResult' => [ 'type' => 'structure', 'members' => [ 'VpcPeeringConnection' => [ 'shape' => 'VpcPeeringConnection', 'locationName' => 'vpcPeeringConnection', ], ], ], 'CreateVpcRequest' => [ 'type' => 'structure', 'members' => [ 'CidrBlock' => [ 'shape' => 'String', ], 'AmazonProvidedIpv6CidrBlock' => [ 'shape' => 'Boolean', 'locationName' => 'amazonProvidedIpv6CidrBlock', ], 'Ipv6Pool' => [ 'shape' => 'Ipv6PoolEc2Id', ], 'Ipv6CidrBlock' => [ 'shape' => 'String', ], 'Ipv4IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Ipv4NetmaskLength' => [ 'shape' => 'NetmaskLength', ], 'Ipv6IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Ipv6NetmaskLength' => [ 'shape' => 'NetmaskLength', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceTenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'instanceTenancy', ], 'Ipv6CidrBlockNetworkBorderGroup' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateVpcResult' => [ 'type' => 'structure', 'members' => [ 'Vpc' => [ 'shape' => 'Vpc', 'locationName' => 'vpc', ], ], ], 'CreateVpnConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'CustomerGatewayId', 'Type', ], 'members' => [ 'CustomerGatewayId' => [ 'shape' => 'CustomerGatewayId', ], 'Type' => [ 'shape' => 'String', ], 'VpnGatewayId' => [ 'shape' => 'VpnGatewayId', ], 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Options' => [ 'shape' => 'VpnConnectionOptionsSpecification', 'locationName' => 'options', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'CreateVpnConnectionResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnection' => [ 'shape' => 'VpnConnection', 'locationName' => 'vpnConnection', ], ], ], 'CreateVpnConnectionRouteRequest' => [ 'type' => 'structure', 'required' => [ 'DestinationCidrBlock', 'VpnConnectionId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], ], ], 'CreateVpnGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', ], 'Type' => [ 'shape' => 'GatewayType', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'AmazonSideAsn' => [ 'shape' => 'Long', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CreateVpnGatewayResult' => [ 'type' => 'structure', 'members' => [ 'VpnGateway' => [ 'shape' => 'VpnGateway', 'locationName' => 'vpnGateway', ], ], ], 'CreditSpecification' => [ 'type' => 'structure', 'members' => [ 'CpuCredits' => [ 'shape' => 'String', 'locationName' => 'cpuCredits', ], ], ], 'CreditSpecificationRequest' => [ 'type' => 'structure', 'required' => [ 'CpuCredits', ], 'members' => [ 'CpuCredits' => [ 'shape' => 'String', ], ], ], 'CurrencyCodeValues' => [ 'type' => 'string', 'enum' => [ 'USD', ], ], 'CurrentGenerationFlag' => [ 'type' => 'boolean', ], 'CustomerGateway' => [ 'type' => 'structure', 'members' => [ 'BgpAsn' => [ 'shape' => 'String', 'locationName' => 'bgpAsn', ], 'CustomerGatewayId' => [ 'shape' => 'String', 'locationName' => 'customerGatewayId', ], 'IpAddress' => [ 'shape' => 'String', 'locationName' => 'ipAddress', ], 'CertificateArn' => [ 'shape' => 'String', 'locationName' => 'certificateArn', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'Type' => [ 'shape' => 'String', 'locationName' => 'type', ], 'DeviceName' => [ 'shape' => 'String', 'locationName' => 'deviceName', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'CustomerGatewayId' => [ 'type' => 'string', ], 'CustomerGatewayIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CustomerGatewayId', 'locationName' => 'CustomerGatewayId', ], ], 'CustomerGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CustomerGateway', 'locationName' => 'item', ], ], 'DITMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 5, ], 'DITOMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DataQueries' => [ 'type' => 'list', 'member' => [ 'shape' => 'DataQuery', ], ], 'DataQuery' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'Destination' => [ 'shape' => 'String', ], 'Metric' => [ 'shape' => 'MetricType', ], 'Statistic' => [ 'shape' => 'StatisticType', ], 'Period' => [ 'shape' => 'PeriodType', ], ], ], 'DataResponse' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'String', 'locationName' => 'id', ], 'Source' => [ 'shape' => 'String', 'locationName' => 'source', ], 'Destination' => [ 'shape' => 'String', 'locationName' => 'destination', ], 'Metric' => [ 'shape' => 'MetricType', 'locationName' => 'metric', ], 'Statistic' => [ 'shape' => 'StatisticType', 'locationName' => 'statistic', ], 'Period' => [ 'shape' => 'PeriodType', 'locationName' => 'period', ], 'MetricPoints' => [ 'shape' => 'MetricPoints', 'locationName' => 'metricPointSet', ], ], ], 'DataResponses' => [ 'type' => 'list', 'member' => [ 'shape' => 'DataResponse', 'locationName' => 'item', ], ], 'DatafeedSubscriptionState' => [ 'type' => 'string', 'enum' => [ 'Active', 'Inactive', ], ], 'DateTime' => [ 'type' => 'timestamp', ], 'DedicatedHostFlag' => [ 'type' => 'boolean', ], 'DedicatedHostId' => [ 'type' => 'string', ], 'DedicatedHostIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DedicatedHostId', 'locationName' => 'item', ], ], 'DefaultNetworkCardIndex' => [ 'type' => 'integer', ], 'DefaultRouteTableAssociationValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'DefaultRouteTablePropagationValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'DefaultTargetCapacityType' => [ 'type' => 'string', 'enum' => [ 'spot', 'on-demand', 'capacity-block', ], ], 'DefaultingDhcpOptionsId' => [ 'type' => 'string', ], 'DeleteCarrierGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'CarrierGatewayId', ], 'members' => [ 'CarrierGatewayId' => [ 'shape' => 'CarrierGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteCarrierGatewayResult' => [ 'type' => 'structure', 'members' => [ 'CarrierGateway' => [ 'shape' => 'CarrierGateway', 'locationName' => 'carrierGateway', ], ], ], 'DeleteClientVpnEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteClientVpnEndpointResult' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'ClientVpnEndpointStatus', 'locationName' => 'status', ], ], ], 'DeleteClientVpnRouteRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', 'DestinationCidrBlock', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'TargetVpcSubnetId' => [ 'shape' => 'SubnetId', ], 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteClientVpnRouteResult' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'ClientVpnRouteStatus', 'locationName' => 'status', ], ], ], 'DeleteCoipCidrRequest' => [ 'type' => 'structure', 'required' => [ 'Cidr', 'CoipPoolId', ], 'members' => [ 'Cidr' => [ 'shape' => 'String', ], 'CoipPoolId' => [ 'shape' => 'Ipv4PoolCoipId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteCoipCidrResult' => [ 'type' => 'structure', 'members' => [ 'CoipCidr' => [ 'shape' => 'CoipCidr', 'locationName' => 'coipCidr', ], ], ], 'DeleteCoipPoolRequest' => [ 'type' => 'structure', 'required' => [ 'CoipPoolId', ], 'members' => [ 'CoipPoolId' => [ 'shape' => 'Ipv4PoolCoipId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteCoipPoolResult' => [ 'type' => 'structure', 'members' => [ 'CoipPool' => [ 'shape' => 'CoipPool', 'locationName' => 'coipPool', ], ], ], 'DeleteCustomerGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'CustomerGatewayId', ], 'members' => [ 'CustomerGatewayId' => [ 'shape' => 'CustomerGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteDhcpOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'DhcpOptionsId', ], 'members' => [ 'DhcpOptionsId' => [ 'shape' => 'DhcpOptionsId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteEgressOnlyInternetGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'EgressOnlyInternetGatewayId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'EgressOnlyInternetGatewayId' => [ 'shape' => 'EgressOnlyInternetGatewayId', ], ], ], 'DeleteEgressOnlyInternetGatewayResult' => [ 'type' => 'structure', 'members' => [ 'ReturnCode' => [ 'shape' => 'Boolean', 'locationName' => 'returnCode', ], ], ], 'DeleteFleetError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'DeleteFleetErrorCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'DeleteFleetErrorCode' => [ 'type' => 'string', 'enum' => [ 'fleetIdDoesNotExist', 'fleetIdMalformed', 'fleetNotInDeletableState', 'unexpectedError', ], ], 'DeleteFleetErrorItem' => [ 'type' => 'structure', 'members' => [ 'Error' => [ 'shape' => 'DeleteFleetError', 'locationName' => 'error', ], 'FleetId' => [ 'shape' => 'FleetId', 'locationName' => 'fleetId', ], ], ], 'DeleteFleetErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeleteFleetErrorItem', 'locationName' => 'item', ], ], 'DeleteFleetSuccessItem' => [ 'type' => 'structure', 'members' => [ 'CurrentFleetState' => [ 'shape' => 'FleetStateCode', 'locationName' => 'currentFleetState', ], 'PreviousFleetState' => [ 'shape' => 'FleetStateCode', 'locationName' => 'previousFleetState', ], 'FleetId' => [ 'shape' => 'FleetId', 'locationName' => 'fleetId', ], ], ], 'DeleteFleetSuccessSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeleteFleetSuccessItem', 'locationName' => 'item', ], ], 'DeleteFleetsRequest' => [ 'type' => 'structure', 'required' => [ 'FleetIds', 'TerminateInstances', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'FleetIds' => [ 'shape' => 'FleetIdSet', 'locationName' => 'FleetId', ], 'TerminateInstances' => [ 'shape' => 'Boolean', ], ], ], 'DeleteFleetsResult' => [ 'type' => 'structure', 'members' => [ 'SuccessfulFleetDeletions' => [ 'shape' => 'DeleteFleetSuccessSet', 'locationName' => 'successfulFleetDeletionSet', ], 'UnsuccessfulFleetDeletions' => [ 'shape' => 'DeleteFleetErrorSet', 'locationName' => 'unsuccessfulFleetDeletionSet', ], ], ], 'DeleteFlowLogsRequest' => [ 'type' => 'structure', 'required' => [ 'FlowLogIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'FlowLogIds' => [ 'shape' => 'FlowLogIdList', 'locationName' => 'FlowLogId', ], ], ], 'DeleteFlowLogsResult' => [ 'type' => 'structure', 'members' => [ 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemSet', 'locationName' => 'unsuccessful', ], ], ], 'DeleteFpgaImageRequest' => [ 'type' => 'structure', 'required' => [ 'FpgaImageId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'FpgaImageId' => [ 'shape' => 'FpgaImageId', ], ], ], 'DeleteFpgaImageResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DeleteInstanceConnectEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceConnectEndpointId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceConnectEndpointId' => [ 'shape' => 'InstanceConnectEndpointId', ], ], ], 'DeleteInstanceConnectEndpointResult' => [ 'type' => 'structure', 'members' => [ 'InstanceConnectEndpoint' => [ 'shape' => 'Ec2InstanceConnectEndpoint', 'locationName' => 'instanceConnectEndpoint', ], ], ], 'DeleteInstanceEventWindowRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceEventWindowId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ForceDelete' => [ 'shape' => 'Boolean', ], 'InstanceEventWindowId' => [ 'shape' => 'InstanceEventWindowId', ], ], ], 'DeleteInstanceEventWindowResult' => [ 'type' => 'structure', 'members' => [ 'InstanceEventWindowState' => [ 'shape' => 'InstanceEventWindowStateChange', 'locationName' => 'instanceEventWindowState', ], ], ], 'DeleteInternetGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'InternetGatewayId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InternetGatewayId' => [ 'shape' => 'InternetGatewayId', 'locationName' => 'internetGatewayId', ], ], ], 'DeleteIpamPoolRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Cascade' => [ 'shape' => 'Boolean', ], ], ], 'DeleteIpamPoolResult' => [ 'type' => 'structure', 'members' => [ 'IpamPool' => [ 'shape' => 'IpamPool', 'locationName' => 'ipamPool', ], ], ], 'DeleteIpamRequest' => [ 'type' => 'structure', 'required' => [ 'IpamId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamId' => [ 'shape' => 'IpamId', ], 'Cascade' => [ 'shape' => 'Boolean', ], ], ], 'DeleteIpamResourceDiscoveryRequest' => [ 'type' => 'structure', 'required' => [ 'IpamResourceDiscoveryId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', ], ], ], 'DeleteIpamResourceDiscoveryResult' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscovery' => [ 'shape' => 'IpamResourceDiscovery', 'locationName' => 'ipamResourceDiscovery', ], ], ], 'DeleteIpamResult' => [ 'type' => 'structure', 'members' => [ 'Ipam' => [ 'shape' => 'Ipam', 'locationName' => 'ipam', ], ], ], 'DeleteIpamScopeRequest' => [ 'type' => 'structure', 'required' => [ 'IpamScopeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamScopeId' => [ 'shape' => 'IpamScopeId', ], ], ], 'DeleteIpamScopeResult' => [ 'type' => 'structure', 'members' => [ 'IpamScope' => [ 'shape' => 'IpamScope', 'locationName' => 'ipamScope', ], ], ], 'DeleteKeyPairRequest' => [ 'type' => 'structure', 'members' => [ 'KeyName' => [ 'shape' => 'KeyPairName', ], 'KeyPairId' => [ 'shape' => 'KeyPairId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteKeyPairResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], 'KeyPairId' => [ 'shape' => 'String', 'locationName' => 'keyPairId', ], ], ], 'DeleteLaunchTemplateRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', ], ], ], 'DeleteLaunchTemplateResult' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplate' => [ 'shape' => 'LaunchTemplate', 'locationName' => 'launchTemplate', ], ], ], 'DeleteLaunchTemplateVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'Versions', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', ], 'Versions' => [ 'shape' => 'VersionStringList', 'locationName' => 'LaunchTemplateVersion', ], ], ], 'DeleteLaunchTemplateVersionsResponseErrorItem' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'String', 'locationName' => 'launchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'String', 'locationName' => 'launchTemplateName', ], 'VersionNumber' => [ 'shape' => 'Long', 'locationName' => 'versionNumber', ], 'ResponseError' => [ 'shape' => 'ResponseError', 'locationName' => 'responseError', ], ], ], 'DeleteLaunchTemplateVersionsResponseErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeleteLaunchTemplateVersionsResponseErrorItem', 'locationName' => 'item', ], ], 'DeleteLaunchTemplateVersionsResponseSuccessItem' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'String', 'locationName' => 'launchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'String', 'locationName' => 'launchTemplateName', ], 'VersionNumber' => [ 'shape' => 'Long', 'locationName' => 'versionNumber', ], ], ], 'DeleteLaunchTemplateVersionsResponseSuccessSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeleteLaunchTemplateVersionsResponseSuccessItem', 'locationName' => 'item', ], ], 'DeleteLaunchTemplateVersionsResult' => [ 'type' => 'structure', 'members' => [ 'SuccessfullyDeletedLaunchTemplateVersions' => [ 'shape' => 'DeleteLaunchTemplateVersionsResponseSuccessSet', 'locationName' => 'successfullyDeletedLaunchTemplateVersionSet', ], 'UnsuccessfullyDeletedLaunchTemplateVersions' => [ 'shape' => 'DeleteLaunchTemplateVersionsResponseErrorSet', 'locationName' => 'unsuccessfullyDeletedLaunchTemplateVersionSet', ], ], ], 'DeleteLocalGatewayRouteRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'DestinationPrefixListId' => [ 'shape' => 'PrefixListResourceId', ], ], ], 'DeleteLocalGatewayRouteResult' => [ 'type' => 'structure', 'members' => [ 'Route' => [ 'shape' => 'LocalGatewayRoute', 'locationName' => 'route', ], ], ], 'DeleteLocalGatewayRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableId', ], 'members' => [ 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteLocalGatewayRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTable' => [ 'shape' => 'LocalGatewayRouteTable', 'locationName' => 'localGatewayRouteTable', ], ], ], 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId', ], 'members' => [ 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId' => [ 'shape' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation' => [ 'shape' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation', 'locationName' => 'localGatewayRouteTableVirtualInterfaceGroupAssociation', ], ], ], 'DeleteLocalGatewayRouteTableVpcAssociationRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableVpcAssociationId', ], 'members' => [ 'LocalGatewayRouteTableVpcAssociationId' => [ 'shape' => 'LocalGatewayRouteTableVpcAssociationId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteLocalGatewayRouteTableVpcAssociationResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVpcAssociation' => [ 'shape' => 'LocalGatewayRouteTableVpcAssociation', 'locationName' => 'localGatewayRouteTableVpcAssociation', ], ], ], 'DeleteManagedPrefixListRequest' => [ 'type' => 'structure', 'required' => [ 'PrefixListId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], ], ], 'DeleteManagedPrefixListResult' => [ 'type' => 'structure', 'members' => [ 'PrefixList' => [ 'shape' => 'ManagedPrefixList', 'locationName' => 'prefixList', ], ], ], 'DeleteNatGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'NatGatewayId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'NatGatewayId' => [ 'shape' => 'NatGatewayId', ], ], ], 'DeleteNatGatewayResult' => [ 'type' => 'structure', 'members' => [ 'NatGatewayId' => [ 'shape' => 'String', 'locationName' => 'natGatewayId', ], ], ], 'DeleteNetworkAclEntryRequest' => [ 'type' => 'structure', 'required' => [ 'Egress', 'NetworkAclId', 'RuleNumber', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Egress' => [ 'shape' => 'Boolean', 'locationName' => 'egress', ], 'NetworkAclId' => [ 'shape' => 'NetworkAclId', 'locationName' => 'networkAclId', ], 'RuleNumber' => [ 'shape' => 'Integer', 'locationName' => 'ruleNumber', ], ], ], 'DeleteNetworkAclRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkAclId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkAclId' => [ 'shape' => 'NetworkAclId', 'locationName' => 'networkAclId', ], ], ], 'DeleteNetworkInsightsAccessScopeAnalysisRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInsightsAccessScopeAnalysisId', ], 'members' => [ 'NetworkInsightsAccessScopeAnalysisId' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteNetworkInsightsAccessScopeAnalysisResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeAnalysisId' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisId', 'locationName' => 'networkInsightsAccessScopeAnalysisId', ], ], ], 'DeleteNetworkInsightsAccessScopeRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInsightsAccessScopeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', ], ], ], 'DeleteNetworkInsightsAccessScopeResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', 'locationName' => 'networkInsightsAccessScopeId', ], ], ], 'DeleteNetworkInsightsAnalysisRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInsightsAnalysisId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'NetworkInsightsAnalysisId' => [ 'shape' => 'NetworkInsightsAnalysisId', ], ], ], 'DeleteNetworkInsightsAnalysisResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAnalysisId' => [ 'shape' => 'NetworkInsightsAnalysisId', 'locationName' => 'networkInsightsAnalysisId', ], ], ], 'DeleteNetworkInsightsPathRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInsightsPathId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'NetworkInsightsPathId' => [ 'shape' => 'NetworkInsightsPathId', ], ], ], 'DeleteNetworkInsightsPathResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsPathId' => [ 'shape' => 'NetworkInsightsPathId', 'locationName' => 'networkInsightsPathId', ], ], ], 'DeleteNetworkInterfacePermissionRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfacePermissionId', ], 'members' => [ 'NetworkInterfacePermissionId' => [ 'shape' => 'NetworkInterfacePermissionId', ], 'Force' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteNetworkInterfacePermissionResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DeleteNetworkInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], ], ], 'DeletePlacementGroupRequest' => [ 'type' => 'structure', 'required' => [ 'GroupName', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupName' => [ 'shape' => 'PlacementGroupName', 'locationName' => 'groupName', ], ], ], 'DeletePublicIpv4PoolRequest' => [ 'type' => 'structure', 'required' => [ 'PoolId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'PoolId' => [ 'shape' => 'Ipv4PoolEc2Id', ], ], ], 'DeletePublicIpv4PoolResult' => [ 'type' => 'structure', 'members' => [ 'ReturnValue' => [ 'shape' => 'Boolean', 'locationName' => 'returnValue', ], ], ], 'DeleteQueuedReservedInstancesError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'DeleteQueuedReservedInstancesErrorCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'DeleteQueuedReservedInstancesErrorCode' => [ 'type' => 'string', 'enum' => [ 'reserved-instances-id-invalid', 'reserved-instances-not-in-queued-state', 'unexpected-error', ], ], 'DeleteQueuedReservedInstancesIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservationId', 'locationName' => 'item', ], 'max' => 100, 'min' => 1, ], 'DeleteQueuedReservedInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'ReservedInstancesIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ReservedInstancesIds' => [ 'shape' => 'DeleteQueuedReservedInstancesIdList', 'locationName' => 'ReservedInstancesId', ], ], ], 'DeleteQueuedReservedInstancesResult' => [ 'type' => 'structure', 'members' => [ 'SuccessfulQueuedPurchaseDeletions' => [ 'shape' => 'SuccessfulQueuedPurchaseDeletionSet', 'locationName' => 'successfulQueuedPurchaseDeletionSet', ], 'FailedQueuedPurchaseDeletions' => [ 'shape' => 'FailedQueuedPurchaseDeletionSet', 'locationName' => 'failedQueuedPurchaseDeletionSet', ], ], ], 'DeleteRouteRequest' => [ 'type' => 'structure', 'required' => [ 'RouteTableId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'DestinationIpv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationIpv6CidrBlock', ], 'DestinationPrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'RouteTableId' => [ 'shape' => 'RouteTableId', 'locationName' => 'routeTableId', ], ], ], 'DeleteRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'RouteTableId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'RouteTableId' => [ 'shape' => 'RouteTableId', 'locationName' => 'routeTableId', ], ], ], 'DeleteSecurityGroupRequest' => [ 'type' => 'structure', 'members' => [ 'GroupId' => [ 'shape' => 'SecurityGroupId', ], 'GroupName' => [ 'shape' => 'SecurityGroupName', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteSnapshotRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', ], 'members' => [ 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteSpotDatafeedSubscriptionRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteSubnetCidrReservationRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetCidrReservationId', ], 'members' => [ 'SubnetCidrReservationId' => [ 'shape' => 'SubnetCidrReservationId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteSubnetCidrReservationResult' => [ 'type' => 'structure', 'members' => [ 'DeletedSubnetCidrReservation' => [ 'shape' => 'SubnetCidrReservation', 'locationName' => 'deletedSubnetCidrReservation', ], ], ], 'DeleteSubnetRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', ], 'members' => [ 'SubnetId' => [ 'shape' => 'SubnetId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteTagsRequest' => [ 'type' => 'structure', 'required' => [ 'Resources', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Resources' => [ 'shape' => 'ResourceIdList', 'locationName' => 'resourceId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tag', ], ], ], 'DeleteTrafficMirrorFilterRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficMirrorFilterId', ], 'members' => [ 'TrafficMirrorFilterId' => [ 'shape' => 'TrafficMirrorFilterId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTrafficMirrorFilterResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilterId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorFilterId', ], ], ], 'DeleteTrafficMirrorFilterRuleRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficMirrorFilterRuleId', ], 'members' => [ 'TrafficMirrorFilterRuleId' => [ 'shape' => 'TrafficMirrorFilterRuleIdWithResolver', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTrafficMirrorFilterRuleResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilterRuleId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorFilterRuleId', ], ], ], 'DeleteTrafficMirrorSessionRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficMirrorSessionId', ], 'members' => [ 'TrafficMirrorSessionId' => [ 'shape' => 'TrafficMirrorSessionId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTrafficMirrorSessionResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorSessionId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorSessionId', ], ], ], 'DeleteTrafficMirrorTargetRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficMirrorTargetId', ], 'members' => [ 'TrafficMirrorTargetId' => [ 'shape' => 'TrafficMirrorTargetId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTrafficMirrorTargetResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorTargetId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorTargetId', ], ], ], 'DeleteTransitGatewayConnectPeerRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayConnectPeerId', ], 'members' => [ 'TransitGatewayConnectPeerId' => [ 'shape' => 'TransitGatewayConnectPeerId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayConnectPeerResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayConnectPeer' => [ 'shape' => 'TransitGatewayConnectPeer', 'locationName' => 'transitGatewayConnectPeer', ], ], ], 'DeleteTransitGatewayConnectRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayConnectResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayConnect' => [ 'shape' => 'TransitGatewayConnect', 'locationName' => 'transitGatewayConnect', ], ], ], 'DeleteTransitGatewayMulticastDomainRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayMulticastDomainId', ], 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayMulticastDomainResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomain' => [ 'shape' => 'TransitGatewayMulticastDomain', 'locationName' => 'transitGatewayMulticastDomain', ], ], ], 'DeleteTransitGatewayPeeringAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayPeeringAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPeeringAttachment' => [ 'shape' => 'TransitGatewayPeeringAttachment', 'locationName' => 'transitGatewayPeeringAttachment', ], ], ], 'DeleteTransitGatewayPolicyTableRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayPolicyTableId', ], 'members' => [ 'TransitGatewayPolicyTableId' => [ 'shape' => 'TransitGatewayPolicyTableId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayPolicyTableResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPolicyTable' => [ 'shape' => 'TransitGatewayPolicyTable', 'locationName' => 'transitGatewayPolicyTable', ], ], ], 'DeleteTransitGatewayPrefixListReferenceRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'PrefixListId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayPrefixListReferenceResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPrefixListReference' => [ 'shape' => 'TransitGatewayPrefixListReference', 'locationName' => 'transitGatewayPrefixListReference', ], ], ], 'DeleteTransitGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayId', ], 'members' => [ 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayResult' => [ 'type' => 'structure', 'members' => [ 'TransitGateway' => [ 'shape' => 'TransitGateway', 'locationName' => 'transitGateway', ], ], ], 'DeleteTransitGatewayRouteRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'DestinationCidrBlock', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayRouteResult' => [ 'type' => 'structure', 'members' => [ 'Route' => [ 'shape' => 'TransitGatewayRoute', 'locationName' => 'route', ], ], ], 'DeleteTransitGatewayRouteTableAnnouncementRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableAnnouncementId', ], 'members' => [ 'TransitGatewayRouteTableAnnouncementId' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayRouteTableAnnouncementResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableAnnouncement' => [ 'shape' => 'TransitGatewayRouteTableAnnouncement', 'locationName' => 'transitGatewayRouteTableAnnouncement', ], ], ], 'DeleteTransitGatewayRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTable' => [ 'shape' => 'TransitGatewayRouteTable', 'locationName' => 'transitGatewayRouteTable', ], ], ], 'DeleteTransitGatewayVpcAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteTransitGatewayVpcAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayVpcAttachment' => [ 'shape' => 'TransitGatewayVpcAttachment', 'locationName' => 'transitGatewayVpcAttachment', ], ], ], 'DeleteVerifiedAccessEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessEndpointId', ], 'members' => [ 'VerifiedAccessEndpointId' => [ 'shape' => 'VerifiedAccessEndpointId', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteVerifiedAccessEndpointResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessEndpoint' => [ 'shape' => 'VerifiedAccessEndpoint', 'locationName' => 'verifiedAccessEndpoint', ], ], ], 'DeleteVerifiedAccessGroupRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessGroupId', ], 'members' => [ 'VerifiedAccessGroupId' => [ 'shape' => 'VerifiedAccessGroupId', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeleteVerifiedAccessGroupResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessGroup' => [ 'shape' => 'VerifiedAccessGroup', 'locationName' => 'verifiedAccessGroup', ], ], ], 'DeleteVerifiedAccessInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessInstanceId', ], 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'DeleteVerifiedAccessInstanceResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstance' => [ 'shape' => 'VerifiedAccessInstance', 'locationName' => 'verifiedAccessInstance', ], ], ], 'DeleteVerifiedAccessTrustProviderRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessTrustProviderId', ], 'members' => [ 'VerifiedAccessTrustProviderId' => [ 'shape' => 'VerifiedAccessTrustProviderId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'DeleteVerifiedAccessTrustProviderResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProvider' => [ 'shape' => 'VerifiedAccessTrustProvider', 'locationName' => 'verifiedAccessTrustProvider', ], ], ], 'DeleteVolumeRequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'VolumeId' => [ 'shape' => 'VolumeId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteVpcEndpointConnectionNotificationsRequest' => [ 'type' => 'structure', 'required' => [ 'ConnectionNotificationIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ConnectionNotificationIds' => [ 'shape' => 'ConnectionNotificationIdsList', 'locationName' => 'ConnectionNotificationId', ], ], ], 'DeleteVpcEndpointConnectionNotificationsResult' => [ 'type' => 'structure', 'members' => [ 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemSet', 'locationName' => 'unsuccessful', ], ], ], 'DeleteVpcEndpointServiceConfigurationsRequest' => [ 'type' => 'structure', 'required' => [ 'ServiceIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceIds' => [ 'shape' => 'VpcEndpointServiceIdList', 'locationName' => 'ServiceId', ], ], ], 'DeleteVpcEndpointServiceConfigurationsResult' => [ 'type' => 'structure', 'members' => [ 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemSet', 'locationName' => 'unsuccessful', ], ], ], 'DeleteVpcEndpointsRequest' => [ 'type' => 'structure', 'required' => [ 'VpcEndpointIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VpcEndpointIds' => [ 'shape' => 'VpcEndpointIdList', 'locationName' => 'VpcEndpointId', ], ], ], 'DeleteVpcEndpointsResult' => [ 'type' => 'structure', 'members' => [ 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemSet', 'locationName' => 'unsuccessful', ], ], ], 'DeleteVpcPeeringConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'VpcPeeringConnectionId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcPeeringConnectionId' => [ 'shape' => 'VpcPeeringConnectionId', 'locationName' => 'vpcPeeringConnectionId', ], ], ], 'DeleteVpcPeeringConnectionResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DeleteVpcRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'VpcId' => [ 'shape' => 'VpcId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteVpnConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteVpnConnectionRouteRequest' => [ 'type' => 'structure', 'required' => [ 'DestinationCidrBlock', 'VpnConnectionId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], ], ], 'DeleteVpnGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'VpnGatewayId', ], 'members' => [ 'VpnGatewayId' => [ 'shape' => 'VpnGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeprovisionByoipCidrRequest' => [ 'type' => 'structure', 'required' => [ 'Cidr', ], 'members' => [ 'Cidr' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeprovisionByoipCidrResult' => [ 'type' => 'structure', 'members' => [ 'ByoipCidr' => [ 'shape' => 'ByoipCidr', 'locationName' => 'byoipCidr', ], ], ], 'DeprovisionIpamByoasnRequest' => [ 'type' => 'structure', 'required' => [ 'IpamId', 'Asn', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamId' => [ 'shape' => 'IpamId', ], 'Asn' => [ 'shape' => 'String', ], ], ], 'DeprovisionIpamByoasnResult' => [ 'type' => 'structure', 'members' => [ 'Byoasn' => [ 'shape' => 'Byoasn', 'locationName' => 'byoasn', ], ], ], 'DeprovisionIpamPoolCidrRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Cidr' => [ 'shape' => 'String', ], ], ], 'DeprovisionIpamPoolCidrResult' => [ 'type' => 'structure', 'members' => [ 'IpamPoolCidr' => [ 'shape' => 'IpamPoolCidr', 'locationName' => 'ipamPoolCidr', ], ], ], 'DeprovisionPublicIpv4PoolCidrRequest' => [ 'type' => 'structure', 'required' => [ 'PoolId', 'Cidr', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'PoolId' => [ 'shape' => 'Ipv4PoolEc2Id', ], 'Cidr' => [ 'shape' => 'String', ], ], ], 'DeprovisionPublicIpv4PoolCidrResult' => [ 'type' => 'structure', 'members' => [ 'PoolId' => [ 'shape' => 'Ipv4PoolEc2Id', 'locationName' => 'poolId', ], 'DeprovisionedAddresses' => [ 'shape' => 'DeprovisionedAddressSet', 'locationName' => 'deprovisionedAddressSet', ], ], ], 'DeprovisionedAddressSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'DeregisterImageRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeregisterInstanceEventNotificationAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceTagAttribute', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceTagAttribute' => [ 'shape' => 'DeregisterInstanceTagAttributeRequest', ], ], ], 'DeregisterInstanceEventNotificationAttributesResult' => [ 'type' => 'structure', 'members' => [ 'InstanceTagAttribute' => [ 'shape' => 'InstanceTagNotificationAttribute', 'locationName' => 'instanceTagAttribute', ], ], ], 'DeregisterInstanceTagAttributeRequest' => [ 'type' => 'structure', 'members' => [ 'IncludeAllTagsOfInstance' => [ 'shape' => 'Boolean', ], 'InstanceTagKeys' => [ 'shape' => 'InstanceTagKeySet', 'locationName' => 'InstanceTagKey', ], ], ], 'DeregisterTransitGatewayMulticastGroupMembersRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'GroupIpAddress' => [ 'shape' => 'String', ], 'NetworkInterfaceIds' => [ 'shape' => 'TransitGatewayNetworkInterfaceIdList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeregisterTransitGatewayMulticastGroupMembersResult' => [ 'type' => 'structure', 'members' => [ 'DeregisteredMulticastGroupMembers' => [ 'shape' => 'TransitGatewayMulticastDeregisteredGroupMembers', 'locationName' => 'deregisteredMulticastGroupMembers', ], ], ], 'DeregisterTransitGatewayMulticastGroupSourcesRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'GroupIpAddress' => [ 'shape' => 'String', ], 'NetworkInterfaceIds' => [ 'shape' => 'TransitGatewayNetworkInterfaceIdList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DeregisterTransitGatewayMulticastGroupSourcesResult' => [ 'type' => 'structure', 'members' => [ 'DeregisteredMulticastGroupSources' => [ 'shape' => 'TransitGatewayMulticastDeregisteredGroupSources', 'locationName' => 'deregisteredMulticastGroupSources', ], ], ], 'DescribeAccountAttributesRequest' => [ 'type' => 'structure', 'members' => [ 'AttributeNames' => [ 'shape' => 'AccountAttributeNameStringList', 'locationName' => 'attributeName', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeAccountAttributesResult' => [ 'type' => 'structure', 'members' => [ 'AccountAttributes' => [ 'shape' => 'AccountAttributeList', 'locationName' => 'accountAttributeSet', ], ], ], 'DescribeAddressTransfersMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeAddressTransfersRequest' => [ 'type' => 'structure', 'members' => [ 'AllocationIds' => [ 'shape' => 'AllocationIdList', 'locationName' => 'AllocationId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeAddressTransfersMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeAddressTransfersResult' => [ 'type' => 'structure', 'members' => [ 'AddressTransfers' => [ 'shape' => 'AddressTransferList', 'locationName' => 'addressTransferSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeAddressesAttributeRequest' => [ 'type' => 'structure', 'members' => [ 'AllocationIds' => [ 'shape' => 'AllocationIds', 'locationName' => 'AllocationId', ], 'Attribute' => [ 'shape' => 'AddressAttributeName', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'AddressMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeAddressesAttributeResult' => [ 'type' => 'structure', 'members' => [ 'Addresses' => [ 'shape' => 'AddressSet', 'locationName' => 'addressSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeAddressesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'PublicIps' => [ 'shape' => 'PublicIpStringList', 'locationName' => 'PublicIp', ], 'AllocationIds' => [ 'shape' => 'AllocationIdList', 'locationName' => 'AllocationId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeAddressesResult' => [ 'type' => 'structure', 'members' => [ 'Addresses' => [ 'shape' => 'AddressList', 'locationName' => 'addressesSet', ], ], ], 'DescribeAggregateIdFormatRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeAggregateIdFormatResult' => [ 'type' => 'structure', 'members' => [ 'UseLongIdsAggregated' => [ 'shape' => 'Boolean', 'locationName' => 'useLongIdsAggregated', ], 'Statuses' => [ 'shape' => 'IdFormatList', 'locationName' => 'statusSet', ], ], ], 'DescribeAvailabilityZonesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'ZoneNames' => [ 'shape' => 'ZoneNameStringList', 'locationName' => 'ZoneName', ], 'ZoneIds' => [ 'shape' => 'ZoneIdStringList', 'locationName' => 'ZoneId', ], 'AllAvailabilityZones' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeAvailabilityZonesResult' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZoneList', 'locationName' => 'availabilityZoneInfo', ], ], ], 'DescribeAwsNetworkPerformanceMetricSubscriptionsRequest' => [ 'type' => 'structure', 'members' => [ 'MaxResults' => [ 'shape' => 'MaxResultsParam', ], 'NextToken' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeAwsNetworkPerformanceMetricSubscriptionsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'Subscriptions' => [ 'shape' => 'SubscriptionList', 'locationName' => 'subscriptionSet', ], ], ], 'DescribeBundleTasksRequest' => [ 'type' => 'structure', 'members' => [ 'BundleIds' => [ 'shape' => 'BundleIdStringList', 'locationName' => 'BundleId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeBundleTasksResult' => [ 'type' => 'structure', 'members' => [ 'BundleTasks' => [ 'shape' => 'BundleTaskList', 'locationName' => 'bundleInstanceTasksSet', ], ], ], 'DescribeByoipCidrsMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'DescribeByoipCidrsRequest' => [ 'type' => 'structure', 'required' => [ 'MaxResults', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'MaxResults' => [ 'shape' => 'DescribeByoipCidrsMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeByoipCidrsResult' => [ 'type' => 'structure', 'members' => [ 'ByoipCidrs' => [ 'shape' => 'ByoipCidrSet', 'locationName' => 'byoipCidrSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeCapacityBlockOfferingsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'DescribeCapacityBlockOfferingsRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceType', 'InstanceCount', 'CapacityDurationHours', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceType' => [ 'shape' => 'String', ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'StartDateRange' => [ 'shape' => 'MillisecondDateTime', ], 'EndDateRange' => [ 'shape' => 'MillisecondDateTime', ], 'CapacityDurationHours' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeCapacityBlockOfferingsMaxResults', ], ], ], 'DescribeCapacityBlockOfferingsResult' => [ 'type' => 'structure', 'members' => [ 'CapacityBlockOfferings' => [ 'shape' => 'CapacityBlockOfferingSet', 'locationName' => 'capacityBlockOfferingSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeCapacityReservationFleetsMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'DescribeCapacityReservationFleetsRequest' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationFleetIds' => [ 'shape' => 'CapacityReservationFleetIdSet', 'locationName' => 'CapacityReservationFleetId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeCapacityReservationFleetsMaxResults', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeCapacityReservationFleetsResult' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationFleets' => [ 'shape' => 'CapacityReservationFleetSet', 'locationName' => 'capacityReservationFleetSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeCapacityReservationsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'DescribeCapacityReservationsRequest' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationIds' => [ 'shape' => 'CapacityReservationIdSet', 'locationName' => 'CapacityReservationId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeCapacityReservationsMaxResults', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeCapacityReservationsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'CapacityReservations' => [ 'shape' => 'CapacityReservationSet', 'locationName' => 'capacityReservationSet', ], ], ], 'DescribeCarrierGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'CarrierGatewayIds' => [ 'shape' => 'CarrierGatewayIdSet', 'locationName' => 'CarrierGatewayId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'CarrierGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeCarrierGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'CarrierGateways' => [ 'shape' => 'CarrierGatewaySet', 'locationName' => 'carrierGatewaySet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeClassicLinkInstancesMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeClassicLinkInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'MaxResults' => [ 'shape' => 'DescribeClassicLinkInstancesMaxResults', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeClassicLinkInstancesResult' => [ 'type' => 'structure', 'members' => [ 'Instances' => [ 'shape' => 'ClassicLinkInstanceList', 'locationName' => 'instancesSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeClientVpnAuthorizationRulesMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeClientVpnAuthorizationRulesRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DescribeClientVpnAuthorizationRulesMaxResults', ], ], ], 'DescribeClientVpnAuthorizationRulesResult' => [ 'type' => 'structure', 'members' => [ 'AuthorizationRules' => [ 'shape' => 'AuthorizationRuleSet', 'locationName' => 'authorizationRule', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeClientVpnConnectionsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeClientVpnConnectionsRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'DescribeClientVpnConnectionsMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeClientVpnConnectionsResult' => [ 'type' => 'structure', 'members' => [ 'Connections' => [ 'shape' => 'ClientVpnConnectionSet', 'locationName' => 'connections', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeClientVpnEndpointMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeClientVpnEndpointsRequest' => [ 'type' => 'structure', 'members' => [ 'ClientVpnEndpointIds' => [ 'shape' => 'ClientVpnEndpointIdList', 'locationName' => 'ClientVpnEndpointId', ], 'MaxResults' => [ 'shape' => 'DescribeClientVpnEndpointMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeClientVpnEndpointsResult' => [ 'type' => 'structure', 'members' => [ 'ClientVpnEndpoints' => [ 'shape' => 'EndpointSet', 'locationName' => 'clientVpnEndpoint', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeClientVpnRoutesMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeClientVpnRoutesRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DescribeClientVpnRoutesMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeClientVpnRoutesResult' => [ 'type' => 'structure', 'members' => [ 'Routes' => [ 'shape' => 'ClientVpnRouteSet', 'locationName' => 'routes', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeClientVpnTargetNetworksMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeClientVpnTargetNetworksRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'AssociationIds' => [ 'shape' => 'ValueStringList', ], 'MaxResults' => [ 'shape' => 'DescribeClientVpnTargetNetworksMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeClientVpnTargetNetworksResult' => [ 'type' => 'structure', 'members' => [ 'ClientVpnTargetNetworks' => [ 'shape' => 'TargetNetworkSet', 'locationName' => 'clientVpnTargetNetworks', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeCoipPoolsRequest' => [ 'type' => 'structure', 'members' => [ 'PoolIds' => [ 'shape' => 'CoipPoolIdSet', 'locationName' => 'PoolId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'CoipPoolMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeCoipPoolsResult' => [ 'type' => 'structure', 'members' => [ 'CoipPools' => [ 'shape' => 'CoipPoolSet', 'locationName' => 'coipPoolSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeConversionTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConversionTask', 'locationName' => 'item', ], ], 'DescribeConversionTasksRequest' => [ 'type' => 'structure', 'members' => [ 'ConversionTaskIds' => [ 'shape' => 'ConversionIdStringList', 'locationName' => 'conversionTaskId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeConversionTasksResult' => [ 'type' => 'structure', 'members' => [ 'ConversionTasks' => [ 'shape' => 'DescribeConversionTaskList', 'locationName' => 'conversionTasks', ], ], ], 'DescribeCustomerGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'CustomerGatewayIds' => [ 'shape' => 'CustomerGatewayIdStringList', 'locationName' => 'CustomerGatewayId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeCustomerGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'CustomerGateways' => [ 'shape' => 'CustomerGatewayList', 'locationName' => 'customerGatewaySet', ], ], ], 'DescribeDhcpOptionsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeDhcpOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'DhcpOptionsIds' => [ 'shape' => 'DhcpOptionsIdStringList', 'locationName' => 'DhcpOptionsId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeDhcpOptionsMaxResults', ], ], ], 'DescribeDhcpOptionsResult' => [ 'type' => 'structure', 'members' => [ 'DhcpOptions' => [ 'shape' => 'DhcpOptionsList', 'locationName' => 'dhcpOptionsSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeEgressOnlyInternetGatewaysMaxResults' => [ 'type' => 'integer', 'max' => 255, 'min' => 5, ], 'DescribeEgressOnlyInternetGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'EgressOnlyInternetGatewayIds' => [ 'shape' => 'EgressOnlyInternetGatewayIdList', 'locationName' => 'EgressOnlyInternetGatewayId', ], 'MaxResults' => [ 'shape' => 'DescribeEgressOnlyInternetGatewaysMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeEgressOnlyInternetGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'EgressOnlyInternetGateways' => [ 'shape' => 'EgressOnlyInternetGatewayList', 'locationName' => 'egressOnlyInternetGatewaySet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeElasticGpusMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 10, ], 'DescribeElasticGpusRequest' => [ 'type' => 'structure', 'members' => [ 'ElasticGpuIds' => [ 'shape' => 'ElasticGpuIdSet', 'locationName' => 'ElasticGpuId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DescribeElasticGpusMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeElasticGpusResult' => [ 'type' => 'structure', 'members' => [ 'ElasticGpuSet' => [ 'shape' => 'ElasticGpuSet', 'locationName' => 'elasticGpuSet', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeExportImageTasksMaxResults' => [ 'type' => 'integer', 'max' => 500, 'min' => 1, ], 'DescribeExportImageTasksRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'ExportImageTaskIds' => [ 'shape' => 'ExportImageTaskIdList', 'locationName' => 'ExportImageTaskId', ], 'MaxResults' => [ 'shape' => 'DescribeExportImageTasksMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeExportImageTasksResult' => [ 'type' => 'structure', 'members' => [ 'ExportImageTasks' => [ 'shape' => 'ExportImageTaskList', 'locationName' => 'exportImageTaskSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeExportTasksRequest' => [ 'type' => 'structure', 'members' => [ 'ExportTaskIds' => [ 'shape' => 'ExportTaskIdStringList', 'locationName' => 'exportTaskId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeExportTasksResult' => [ 'type' => 'structure', 'members' => [ 'ExportTasks' => [ 'shape' => 'ExportTaskList', 'locationName' => 'exportTaskSet', ], ], ], 'DescribeFastLaunchImagesRequest' => [ 'type' => 'structure', 'members' => [ 'ImageIds' => [ 'shape' => 'FastLaunchImageIdList', 'locationName' => 'ImageId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DescribeFastLaunchImagesRequestMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeFastLaunchImagesRequestMaxResults' => [ 'type' => 'integer', 'max' => 200, 'min' => 0, ], 'DescribeFastLaunchImagesResult' => [ 'type' => 'structure', 'members' => [ 'FastLaunchImages' => [ 'shape' => 'DescribeFastLaunchImagesSuccessSet', 'locationName' => 'fastLaunchImageSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeFastLaunchImagesSuccessItem' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', 'locationName' => 'imageId', ], 'ResourceType' => [ 'shape' => 'FastLaunchResourceType', 'locationName' => 'resourceType', ], 'SnapshotConfiguration' => [ 'shape' => 'FastLaunchSnapshotConfigurationResponse', 'locationName' => 'snapshotConfiguration', ], 'LaunchTemplate' => [ 'shape' => 'FastLaunchLaunchTemplateSpecificationResponse', 'locationName' => 'launchTemplate', ], 'MaxParallelLaunches' => [ 'shape' => 'Integer', 'locationName' => 'maxParallelLaunches', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'State' => [ 'shape' => 'FastLaunchStateCode', 'locationName' => 'state', ], 'StateTransitionReason' => [ 'shape' => 'String', 'locationName' => 'stateTransitionReason', ], 'StateTransitionTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'stateTransitionTime', ], ], ], 'DescribeFastLaunchImagesSuccessSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DescribeFastLaunchImagesSuccessItem', 'locationName' => 'item', ], ], 'DescribeFastSnapshotRestoreSuccessItem' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'State' => [ 'shape' => 'FastSnapshotRestoreStateCode', 'locationName' => 'state', ], 'StateTransitionReason' => [ 'shape' => 'String', 'locationName' => 'stateTransitionReason', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'OwnerAlias' => [ 'shape' => 'String', 'locationName' => 'ownerAlias', ], 'EnablingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'enablingTime', ], 'OptimizingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'optimizingTime', ], 'EnabledTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'enabledTime', ], 'DisablingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'disablingTime', ], 'DisabledTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'disabledTime', ], ], ], 'DescribeFastSnapshotRestoreSuccessSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DescribeFastSnapshotRestoreSuccessItem', 'locationName' => 'item', ], ], 'DescribeFastSnapshotRestoresMaxResults' => [ 'type' => 'integer', 'max' => 200, 'min' => 0, ], 'DescribeFastSnapshotRestoresRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DescribeFastSnapshotRestoresMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeFastSnapshotRestoresResult' => [ 'type' => 'structure', 'members' => [ 'FastSnapshotRestores' => [ 'shape' => 'DescribeFastSnapshotRestoreSuccessSet', 'locationName' => 'fastSnapshotRestoreSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeFleetError' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateAndOverrides' => [ 'shape' => 'LaunchTemplateAndOverridesResponse', 'locationName' => 'launchTemplateAndOverrides', ], 'Lifecycle' => [ 'shape' => 'InstanceLifecycle', 'locationName' => 'lifecycle', ], 'ErrorCode' => [ 'shape' => 'String', 'locationName' => 'errorCode', ], 'ErrorMessage' => [ 'shape' => 'String', 'locationName' => 'errorMessage', ], ], ], 'DescribeFleetHistoryRequest' => [ 'type' => 'structure', 'required' => [ 'FleetId', 'StartTime', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'EventType' => [ 'shape' => 'FleetEventType', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'FleetId' => [ 'shape' => 'FleetId', ], 'StartTime' => [ 'shape' => 'DateTime', ], ], ], 'DescribeFleetHistoryResult' => [ 'type' => 'structure', 'members' => [ 'HistoryRecords' => [ 'shape' => 'HistoryRecordSet', 'locationName' => 'historyRecordSet', ], 'LastEvaluatedTime' => [ 'shape' => 'DateTime', 'locationName' => 'lastEvaluatedTime', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'FleetId' => [ 'shape' => 'FleetId', 'locationName' => 'fleetId', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], ], ], 'DescribeFleetInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'FleetId' => [ 'shape' => 'FleetId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeFleetInstancesResult' => [ 'type' => 'structure', 'members' => [ 'ActiveInstances' => [ 'shape' => 'ActiveInstanceSet', 'locationName' => 'activeInstanceSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'FleetId' => [ 'shape' => 'FleetId', 'locationName' => 'fleetId', ], ], ], 'DescribeFleetsErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DescribeFleetError', 'locationName' => 'item', ], ], 'DescribeFleetsInstances' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateAndOverrides' => [ 'shape' => 'LaunchTemplateAndOverridesResponse', 'locationName' => 'launchTemplateAndOverrides', ], 'Lifecycle' => [ 'shape' => 'InstanceLifecycle', 'locationName' => 'lifecycle', ], 'InstanceIds' => [ 'shape' => 'InstanceIdsSet', 'locationName' => 'instanceIds', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'Platform' => [ 'shape' => 'PlatformValues', 'locationName' => 'platform', ], ], ], 'DescribeFleetsInstancesSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DescribeFleetsInstances', 'locationName' => 'item', ], ], 'DescribeFleetsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'FleetIds' => [ 'shape' => 'FleetIdSet', 'locationName' => 'FleetId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeFleetsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'Fleets' => [ 'shape' => 'FleetSet', 'locationName' => 'fleetSet', ], ], ], 'DescribeFlowLogsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filter' => [ 'shape' => 'FilterList', ], 'FlowLogIds' => [ 'shape' => 'FlowLogIdList', 'locationName' => 'FlowLogId', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeFlowLogsResult' => [ 'type' => 'structure', 'members' => [ 'FlowLogs' => [ 'shape' => 'FlowLogSet', 'locationName' => 'flowLogSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeFpgaImageAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'FpgaImageId', 'Attribute', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'FpgaImageId' => [ 'shape' => 'FpgaImageId', ], 'Attribute' => [ 'shape' => 'FpgaImageAttributeName', ], ], ], 'DescribeFpgaImageAttributeResult' => [ 'type' => 'structure', 'members' => [ 'FpgaImageAttribute' => [ 'shape' => 'FpgaImageAttribute', 'locationName' => 'fpgaImageAttribute', ], ], ], 'DescribeFpgaImagesMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeFpgaImagesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'FpgaImageIds' => [ 'shape' => 'FpgaImageIdList', 'locationName' => 'FpgaImageId', ], 'Owners' => [ 'shape' => 'OwnerStringList', 'locationName' => 'Owner', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'DescribeFpgaImagesMaxResults', ], ], ], 'DescribeFpgaImagesResult' => [ 'type' => 'structure', 'members' => [ 'FpgaImages' => [ 'shape' => 'FpgaImageList', 'locationName' => 'fpgaImageSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeHostReservationOfferingsRequest' => [ 'type' => 'structure', 'members' => [ 'Filter' => [ 'shape' => 'FilterList', ], 'MaxDuration' => [ 'shape' => 'Integer', ], 'MaxResults' => [ 'shape' => 'DescribeHostReservationsMaxResults', ], 'MinDuration' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'OfferingId' => [ 'shape' => 'OfferingId', ], ], ], 'DescribeHostReservationOfferingsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'OfferingSet' => [ 'shape' => 'HostOfferingSet', 'locationName' => 'offeringSet', ], ], ], 'DescribeHostReservationsMaxResults' => [ 'type' => 'integer', 'max' => 500, 'min' => 5, ], 'DescribeHostReservationsRequest' => [ 'type' => 'structure', 'members' => [ 'Filter' => [ 'shape' => 'FilterList', ], 'HostReservationIdSet' => [ 'shape' => 'HostReservationIdSet', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeHostReservationsResult' => [ 'type' => 'structure', 'members' => [ 'HostReservationSet' => [ 'shape' => 'HostReservationSet', 'locationName' => 'hostReservationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeHostsRequest' => [ 'type' => 'structure', 'members' => [ 'Filter' => [ 'shape' => 'FilterList', 'locationName' => 'filter', ], 'HostIds' => [ 'shape' => 'RequestHostIdList', 'locationName' => 'hostId', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeHostsResult' => [ 'type' => 'structure', 'members' => [ 'Hosts' => [ 'shape' => 'HostList', 'locationName' => 'hostSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeIamInstanceProfileAssociationsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeIamInstanceProfileAssociationsRequest' => [ 'type' => 'structure', 'members' => [ 'AssociationIds' => [ 'shape' => 'AssociationIdList', 'locationName' => 'AssociationId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DescribeIamInstanceProfileAssociationsMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeIamInstanceProfileAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'IamInstanceProfileAssociations' => [ 'shape' => 'IamInstanceProfileAssociationSet', 'locationName' => 'iamInstanceProfileAssociationSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeIdFormatRequest' => [ 'type' => 'structure', 'members' => [ 'Resource' => [ 'shape' => 'String', ], ], ], 'DescribeIdFormatResult' => [ 'type' => 'structure', 'members' => [ 'Statuses' => [ 'shape' => 'IdFormatList', 'locationName' => 'statusSet', ], ], ], 'DescribeIdentityIdFormatRequest' => [ 'type' => 'structure', 'required' => [ 'PrincipalArn', ], 'members' => [ 'PrincipalArn' => [ 'shape' => 'String', 'locationName' => 'principalArn', ], 'Resource' => [ 'shape' => 'String', 'locationName' => 'resource', ], ], ], 'DescribeIdentityIdFormatResult' => [ 'type' => 'structure', 'members' => [ 'Statuses' => [ 'shape' => 'IdFormatList', 'locationName' => 'statusSet', ], ], ], 'DescribeImageAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'Attribute', 'ImageId', ], 'members' => [ 'Attribute' => [ 'shape' => 'ImageAttributeName', ], 'ImageId' => [ 'shape' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeImagesRequest' => [ 'type' => 'structure', 'members' => [ 'ExecutableUsers' => [ 'shape' => 'ExecutableByStringList', 'locationName' => 'ExecutableBy', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'ImageIds' => [ 'shape' => 'ImageIdStringList', 'locationName' => 'ImageId', ], 'Owners' => [ 'shape' => 'OwnerStringList', 'locationName' => 'Owner', ], 'IncludeDeprecated' => [ 'shape' => 'Boolean', ], 'IncludeDisabled' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeImagesResult' => [ 'type' => 'structure', 'members' => [ 'Images' => [ 'shape' => 'ImageList', 'locationName' => 'imagesSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeImportImageTasksRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', ], 'ImportTaskIds' => [ 'shape' => 'ImportTaskIdList', 'locationName' => 'ImportTaskId', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeImportImageTasksResult' => [ 'type' => 'structure', 'members' => [ 'ImportImageTasks' => [ 'shape' => 'ImportImageTaskList', 'locationName' => 'importImageTaskSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeImportSnapshotTasksRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', ], 'ImportTaskIds' => [ 'shape' => 'ImportSnapshotTaskIdList', 'locationName' => 'ImportTaskId', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeImportSnapshotTasksResult' => [ 'type' => 'structure', 'members' => [ 'ImportSnapshotTasks' => [ 'shape' => 'ImportSnapshotTaskList', 'locationName' => 'importSnapshotTaskSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeInstanceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'Attribute', 'InstanceId', ], 'members' => [ 'Attribute' => [ 'shape' => 'InstanceAttributeName', 'locationName' => 'attribute', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], ], ], 'DescribeInstanceConnectEndpointsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'MaxResults' => [ 'shape' => 'InstanceConnectEndpointMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'InstanceConnectEndpointIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'InstanceConnectEndpointId', ], ], ], 'DescribeInstanceConnectEndpointsResult' => [ 'type' => 'structure', 'members' => [ 'InstanceConnectEndpoints' => [ 'shape' => 'InstanceConnectEndpointSet', 'locationName' => 'instanceConnectEndpointSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeInstanceCreditSpecificationsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeInstanceCreditSpecificationsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'MaxResults' => [ 'shape' => 'DescribeInstanceCreditSpecificationsMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeInstanceCreditSpecificationsResult' => [ 'type' => 'structure', 'members' => [ 'InstanceCreditSpecifications' => [ 'shape' => 'InstanceCreditSpecificationList', 'locationName' => 'instanceCreditSpecificationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeInstanceEventNotificationAttributesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeInstanceEventNotificationAttributesResult' => [ 'type' => 'structure', 'members' => [ 'InstanceTagAttribute' => [ 'shape' => 'InstanceTagNotificationAttribute', 'locationName' => 'instanceTagAttribute', ], ], ], 'DescribeInstanceEventWindowsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceEventWindowIds' => [ 'shape' => 'InstanceEventWindowIdSet', 'locationName' => 'InstanceEventWindowId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'ResultRange', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeInstanceEventWindowsResult' => [ 'type' => 'structure', 'members' => [ 'InstanceEventWindows' => [ 'shape' => 'InstanceEventWindowSet', 'locationName' => 'instanceEventWindowSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeInstanceStatusRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'IncludeAllInstances' => [ 'shape' => 'Boolean', 'locationName' => 'includeAllInstances', ], ], ], 'DescribeInstanceStatusResult' => [ 'type' => 'structure', 'members' => [ 'InstanceStatuses' => [ 'shape' => 'InstanceStatusList', 'locationName' => 'instanceStatusSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeInstanceTopologyGroupNameSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PlacementGroupName', ], ], 'DescribeInstanceTopologyInstanceIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceId', ], ], 'DescribeInstanceTopologyMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'DescribeInstanceTopologyRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeInstanceTopologyMaxResults', ], 'InstanceIds' => [ 'shape' => 'DescribeInstanceTopologyInstanceIdSet', 'locationName' => 'InstanceId', ], 'GroupNames' => [ 'shape' => 'DescribeInstanceTopologyGroupNameSet', 'locationName' => 'GroupName', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeInstanceTopologyResult' => [ 'type' => 'structure', 'members' => [ 'Instances' => [ 'shape' => 'InstanceSet', 'locationName' => 'instanceSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeInstanceTypeOfferingsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'LocationType' => [ 'shape' => 'LocationType', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DITOMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeInstanceTypeOfferingsResult' => [ 'type' => 'structure', 'members' => [ 'InstanceTypeOfferings' => [ 'shape' => 'InstanceTypeOfferingsList', 'locationName' => 'instanceTypeOfferingSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeInstanceTypesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceTypes' => [ 'shape' => 'RequestInstanceTypeList', 'locationName' => 'InstanceType', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DITMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeInstanceTypesResult' => [ 'type' => 'structure', 'members' => [ 'InstanceTypes' => [ 'shape' => 'InstanceTypeInfoList', 'locationName' => 'instanceTypeSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeInstancesResult' => [ 'type' => 'structure', 'members' => [ 'Reservations' => [ 'shape' => 'ReservationList', 'locationName' => 'reservationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeInternetGatewaysMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeInternetGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InternetGatewayIds' => [ 'shape' => 'InternetGatewayIdList', 'locationName' => 'internetGatewayId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeInternetGatewaysMaxResults', ], ], ], 'DescribeInternetGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'InternetGateways' => [ 'shape' => 'InternetGatewayList', 'locationName' => 'internetGatewaySet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeIpamByoasnMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'DescribeIpamByoasnRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'MaxResults' => [ 'shape' => 'DescribeIpamByoasnMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeIpamByoasnResult' => [ 'type' => 'structure', 'members' => [ 'Byoasns' => [ 'shape' => 'ByoasnSet', 'locationName' => 'byoasnSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeIpamPoolsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'IpamPoolIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'IpamPoolId', ], ], ], 'DescribeIpamPoolsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], 'IpamPools' => [ 'shape' => 'IpamPoolSet', 'locationName' => 'ipamPoolSet', ], ], ], 'DescribeIpamResourceDiscoveriesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamResourceDiscoveryIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'IpamResourceDiscoveryId', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeIpamResourceDiscoveriesResult' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscoveries' => [ 'shape' => 'IpamResourceDiscoverySet', 'locationName' => 'ipamResourceDiscoverySet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeIpamResourceDiscoveryAssociationsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamResourceDiscoveryAssociationIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'IpamResourceDiscoveryAssociationId', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeIpamResourceDiscoveryAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscoveryAssociations' => [ 'shape' => 'IpamResourceDiscoveryAssociationSet', 'locationName' => 'ipamResourceDiscoveryAssociationSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeIpamScopesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'IpamScopeIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'IpamScopeId', ], ], ], 'DescribeIpamScopesResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], 'IpamScopes' => [ 'shape' => 'IpamScopeSet', 'locationName' => 'ipamScopeSet', ], ], ], 'DescribeIpamsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'IpamIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'IpamId', ], ], ], 'DescribeIpamsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], 'Ipams' => [ 'shape' => 'IpamSet', 'locationName' => 'ipamSet', ], ], ], 'DescribeIpv6PoolsRequest' => [ 'type' => 'structure', 'members' => [ 'PoolIds' => [ 'shape' => 'Ipv6PoolIdList', 'locationName' => 'PoolId', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'Ipv6PoolMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeIpv6PoolsResult' => [ 'type' => 'structure', 'members' => [ 'Ipv6Pools' => [ 'shape' => 'Ipv6PoolSet', 'locationName' => 'ipv6PoolSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeKeyPairsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'KeyNames' => [ 'shape' => 'KeyNameStringList', 'locationName' => 'KeyName', ], 'KeyPairIds' => [ 'shape' => 'KeyPairIdStringList', 'locationName' => 'KeyPairId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'IncludePublicKey' => [ 'shape' => 'Boolean', ], ], ], 'DescribeKeyPairsResult' => [ 'type' => 'structure', 'members' => [ 'KeyPairs' => [ 'shape' => 'KeyPairList', 'locationName' => 'keySet', ], ], ], 'DescribeLaunchTemplateVersionsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', ], 'Versions' => [ 'shape' => 'VersionStringList', 'locationName' => 'LaunchTemplateVersion', ], 'MinVersion' => [ 'shape' => 'String', ], 'MaxVersion' => [ 'shape' => 'String', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'ResolveAlias' => [ 'shape' => 'Boolean', ], ], ], 'DescribeLaunchTemplateVersionsResult' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateVersions' => [ 'shape' => 'LaunchTemplateVersionSet', 'locationName' => 'launchTemplateVersionSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeLaunchTemplatesMaxResults' => [ 'type' => 'integer', 'max' => 200, 'min' => 1, ], 'DescribeLaunchTemplatesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'LaunchTemplateIds' => [ 'shape' => 'LaunchTemplateIdStringList', 'locationName' => 'LaunchTemplateId', ], 'LaunchTemplateNames' => [ 'shape' => 'LaunchTemplateNameStringList', 'locationName' => 'LaunchTemplateName', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeLaunchTemplatesMaxResults', ], ], ], 'DescribeLaunchTemplatesResult' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplates' => [ 'shape' => 'LaunchTemplateSet', 'locationName' => 'launchTemplates', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationIds' => [ 'shape' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationIdSet', 'locationName' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'LocalGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVirtualInterfaceGroupAssociations' => [ 'shape' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationSet', 'locationName' => 'localGatewayRouteTableVirtualInterfaceGroupAssociationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeLocalGatewayRouteTableVpcAssociationsRequest' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVpcAssociationIds' => [ 'shape' => 'LocalGatewayRouteTableVpcAssociationIdSet', 'locationName' => 'LocalGatewayRouteTableVpcAssociationId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'LocalGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeLocalGatewayRouteTableVpcAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVpcAssociations' => [ 'shape' => 'LocalGatewayRouteTableVpcAssociationSet', 'locationName' => 'localGatewayRouteTableVpcAssociationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeLocalGatewayRouteTablesRequest' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableIds' => [ 'shape' => 'LocalGatewayRouteTableIdSet', 'locationName' => 'LocalGatewayRouteTableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'LocalGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeLocalGatewayRouteTablesResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTables' => [ 'shape' => 'LocalGatewayRouteTableSet', 'locationName' => 'localGatewayRouteTableSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeLocalGatewayVirtualInterfaceGroupsRequest' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayVirtualInterfaceGroupIds' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupIdSet', 'locationName' => 'LocalGatewayVirtualInterfaceGroupId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'LocalGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeLocalGatewayVirtualInterfaceGroupsResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayVirtualInterfaceGroups' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupSet', 'locationName' => 'localGatewayVirtualInterfaceGroupSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeLocalGatewayVirtualInterfacesRequest' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayVirtualInterfaceIds' => [ 'shape' => 'LocalGatewayVirtualInterfaceIdSet', 'locationName' => 'LocalGatewayVirtualInterfaceId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'LocalGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeLocalGatewayVirtualInterfacesResult' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayVirtualInterfaces' => [ 'shape' => 'LocalGatewayVirtualInterfaceSet', 'locationName' => 'localGatewayVirtualInterfaceSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeLocalGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayIds' => [ 'shape' => 'LocalGatewayIdSet', 'locationName' => 'LocalGatewayId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'LocalGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeLocalGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'LocalGateways' => [ 'shape' => 'LocalGatewaySet', 'locationName' => 'localGatewaySet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeLockedSnapshotsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeLockedSnapshotsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DescribeLockedSnapshotsMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'SnapshotIds' => [ 'shape' => 'SnapshotIdStringList', 'locationName' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeLockedSnapshotsResult' => [ 'type' => 'structure', 'members' => [ 'Snapshots' => [ 'shape' => 'LockedSnapshotsInfoList', 'locationName' => 'snapshotSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeManagedPrefixListsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'PrefixListMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'PrefixListIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'PrefixListId', ], ], ], 'DescribeManagedPrefixListsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], 'PrefixLists' => [ 'shape' => 'ManagedPrefixListSet', 'locationName' => 'prefixListSet', ], ], ], 'DescribeMovingAddressesMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeMovingAddressesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'MaxResults' => [ 'shape' => 'DescribeMovingAddressesMaxResults', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'PublicIps' => [ 'shape' => 'ValueStringList', 'locationName' => 'publicIp', ], ], ], 'DescribeMovingAddressesResult' => [ 'type' => 'structure', 'members' => [ 'MovingAddressStatuses' => [ 'shape' => 'MovingAddressStatusSet', 'locationName' => 'movingAddressStatusSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNatGatewaysMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeNatGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filter' => [ 'shape' => 'FilterList', ], 'MaxResults' => [ 'shape' => 'DescribeNatGatewaysMaxResults', ], 'NatGatewayIds' => [ 'shape' => 'NatGatewayIdStringList', 'locationName' => 'NatGatewayId', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeNatGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'NatGateways' => [ 'shape' => 'NatGatewayList', 'locationName' => 'natGatewaySet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNetworkAclsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeNetworkAclsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkAclIds' => [ 'shape' => 'NetworkAclIdStringList', 'locationName' => 'NetworkAclId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeNetworkAclsMaxResults', ], ], ], 'DescribeNetworkAclsResult' => [ 'type' => 'structure', 'members' => [ 'NetworkAcls' => [ 'shape' => 'NetworkAclList', 'locationName' => 'networkAclSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNetworkInsightsAccessScopeAnalysesRequest' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeAnalysisIds' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisIdList', 'locationName' => 'NetworkInsightsAccessScopeAnalysisId', ], 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', ], 'AnalysisStartTimeBegin' => [ 'shape' => 'MillisecondDateTime', ], 'AnalysisStartTimeEnd' => [ 'shape' => 'MillisecondDateTime', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'NetworkInsightsMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeNetworkInsightsAccessScopeAnalysesResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeAnalyses' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisList', 'locationName' => 'networkInsightsAccessScopeAnalysisSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNetworkInsightsAccessScopesRequest' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeIds' => [ 'shape' => 'NetworkInsightsAccessScopeIdList', 'locationName' => 'NetworkInsightsAccessScopeId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'NetworkInsightsMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeNetworkInsightsAccessScopesResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopes' => [ 'shape' => 'NetworkInsightsAccessScopeList', 'locationName' => 'networkInsightsAccessScopeSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNetworkInsightsAnalysesRequest' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAnalysisIds' => [ 'shape' => 'NetworkInsightsAnalysisIdList', 'locationName' => 'NetworkInsightsAnalysisId', ], 'NetworkInsightsPathId' => [ 'shape' => 'NetworkInsightsPathId', ], 'AnalysisStartTime' => [ 'shape' => 'MillisecondDateTime', ], 'AnalysisEndTime' => [ 'shape' => 'MillisecondDateTime', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'NetworkInsightsMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeNetworkInsightsAnalysesResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAnalyses' => [ 'shape' => 'NetworkInsightsAnalysisList', 'locationName' => 'networkInsightsAnalysisSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNetworkInsightsPathsRequest' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsPathIds' => [ 'shape' => 'NetworkInsightsPathIdList', 'locationName' => 'NetworkInsightsPathId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'NetworkInsightsMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeNetworkInsightsPathsResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsPaths' => [ 'shape' => 'NetworkInsightsPathList', 'locationName' => 'networkInsightsPathSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNetworkInterfaceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'Attribute' => [ 'shape' => 'NetworkInterfaceAttribute', 'locationName' => 'attribute', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], ], ], 'DescribeNetworkInterfaceAttributeResult' => [ 'type' => 'structure', 'members' => [ 'Attachment' => [ 'shape' => 'NetworkInterfaceAttachment', 'locationName' => 'attachment', ], 'Description' => [ 'shape' => 'AttributeValue', 'locationName' => 'description', ], 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'SourceDestCheck' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'sourceDestCheck', ], ], ], 'DescribeNetworkInterfacePermissionsMaxResults' => [ 'type' => 'integer', 'max' => 255, 'min' => 5, ], 'DescribeNetworkInterfacePermissionsRequest' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfacePermissionIds' => [ 'shape' => 'NetworkInterfacePermissionIdList', 'locationName' => 'NetworkInterfacePermissionId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeNetworkInterfacePermissionsMaxResults', ], ], ], 'DescribeNetworkInterfacePermissionsResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfacePermissions' => [ 'shape' => 'NetworkInterfacePermissionList', 'locationName' => 'networkInterfacePermissions', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNetworkInterfacesMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeNetworkInterfacesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkInterfaceIds' => [ 'shape' => 'NetworkInterfaceIdList', 'locationName' => 'NetworkInterfaceId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeNetworkInterfacesMaxResults', ], ], ], 'DescribeNetworkInterfacesResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaces' => [ 'shape' => 'NetworkInterfaceList', 'locationName' => 'networkInterfaceSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribePlacementGroupsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupNames' => [ 'shape' => 'PlacementGroupStringList', 'locationName' => 'groupName', ], 'GroupIds' => [ 'shape' => 'PlacementGroupIdStringList', 'locationName' => 'GroupId', ], ], ], 'DescribePlacementGroupsResult' => [ 'type' => 'structure', 'members' => [ 'PlacementGroups' => [ 'shape' => 'PlacementGroupList', 'locationName' => 'placementGroupSet', ], ], ], 'DescribePrefixListsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'PrefixListIds' => [ 'shape' => 'PrefixListResourceIdStringList', 'locationName' => 'PrefixListId', ], ], ], 'DescribePrefixListsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'PrefixLists' => [ 'shape' => 'PrefixListSet', 'locationName' => 'prefixListSet', ], ], ], 'DescribePrincipalIdFormatMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'DescribePrincipalIdFormatRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Resources' => [ 'shape' => 'ResourceList', 'locationName' => 'Resource', ], 'MaxResults' => [ 'shape' => 'DescribePrincipalIdFormatMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribePrincipalIdFormatResult' => [ 'type' => 'structure', 'members' => [ 'Principals' => [ 'shape' => 'PrincipalIdFormatList', 'locationName' => 'principalSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribePublicIpv4PoolsRequest' => [ 'type' => 'structure', 'members' => [ 'PoolIds' => [ 'shape' => 'PublicIpv4PoolIdStringList', 'locationName' => 'PoolId', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'PoolMaxResults', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribePublicIpv4PoolsResult' => [ 'type' => 'structure', 'members' => [ 'PublicIpv4Pools' => [ 'shape' => 'PublicIpv4PoolSet', 'locationName' => 'publicIpv4PoolSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeRegionsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'RegionNames' => [ 'shape' => 'RegionNameStringList', 'locationName' => 'RegionName', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'AllRegions' => [ 'shape' => 'Boolean', ], ], ], 'DescribeRegionsResult' => [ 'type' => 'structure', 'members' => [ 'Regions' => [ 'shape' => 'RegionList', 'locationName' => 'regionInfo', ], ], ], 'DescribeReplaceRootVolumeTasksMaxResults' => [ 'type' => 'integer', 'max' => 50, 'min' => 1, ], 'DescribeReplaceRootVolumeTasksRequest' => [ 'type' => 'structure', 'members' => [ 'ReplaceRootVolumeTaskIds' => [ 'shape' => 'ReplaceRootVolumeTaskIds', 'locationName' => 'ReplaceRootVolumeTaskId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'DescribeReplaceRootVolumeTasksMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeReplaceRootVolumeTasksResult' => [ 'type' => 'structure', 'members' => [ 'ReplaceRootVolumeTasks' => [ 'shape' => 'ReplaceRootVolumeTasks', 'locationName' => 'replaceRootVolumeTaskSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeReservedInstancesListingsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'ReservedInstancesId' => [ 'shape' => 'ReservationId', 'locationName' => 'reservedInstancesId', ], 'ReservedInstancesListingId' => [ 'shape' => 'ReservedInstancesListingId', 'locationName' => 'reservedInstancesListingId', ], ], ], 'DescribeReservedInstancesListingsResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesListings' => [ 'shape' => 'ReservedInstancesListingList', 'locationName' => 'reservedInstancesListingsSet', ], ], ], 'DescribeReservedInstancesModificationsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'ReservedInstancesModificationIds' => [ 'shape' => 'ReservedInstancesModificationIdStringList', 'locationName' => 'ReservedInstancesModificationId', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeReservedInstancesModificationsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'ReservedInstancesModifications' => [ 'shape' => 'ReservedInstancesModificationList', 'locationName' => 'reservedInstancesModificationsSet', ], ], ], 'DescribeReservedInstancesOfferingsRequest' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'IncludeMarketplace' => [ 'shape' => 'Boolean', ], 'InstanceType' => [ 'shape' => 'InstanceType', ], 'MaxDuration' => [ 'shape' => 'Long', ], 'MaxInstanceCount' => [ 'shape' => 'Integer', ], 'MinDuration' => [ 'shape' => 'Long', ], 'OfferingClass' => [ 'shape' => 'OfferingClassType', ], 'ProductDescription' => [ 'shape' => 'RIProductDescription', ], 'ReservedInstancesOfferingIds' => [ 'shape' => 'ReservedInstancesOfferingIdStringList', 'locationName' => 'ReservedInstancesOfferingId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceTenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'instanceTenancy', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'OfferingType' => [ 'shape' => 'OfferingTypeValues', 'locationName' => 'offeringType', ], ], ], 'DescribeReservedInstancesOfferingsResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesOfferings' => [ 'shape' => 'ReservedInstancesOfferingList', 'locationName' => 'reservedInstancesOfferingsSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeReservedInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'OfferingClass' => [ 'shape' => 'OfferingClassType', ], 'ReservedInstancesIds' => [ 'shape' => 'ReservedInstancesIdStringList', 'locationName' => 'ReservedInstancesId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'OfferingType' => [ 'shape' => 'OfferingTypeValues', 'locationName' => 'offeringType', ], ], ], 'DescribeReservedInstancesResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstances' => [ 'shape' => 'ReservedInstancesList', 'locationName' => 'reservedInstancesSet', ], ], ], 'DescribeRouteTablesMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 5, ], 'DescribeRouteTablesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'RouteTableIds' => [ 'shape' => 'RouteTableIdStringList', 'locationName' => 'RouteTableId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeRouteTablesMaxResults', ], ], ], 'DescribeRouteTablesResult' => [ 'type' => 'structure', 'members' => [ 'RouteTables' => [ 'shape' => 'RouteTableList', 'locationName' => 'routeTableSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeScheduledInstanceAvailabilityMaxResults' => [ 'type' => 'integer', 'max' => 300, 'min' => 5, ], 'DescribeScheduledInstanceAvailabilityRequest' => [ 'type' => 'structure', 'required' => [ 'FirstSlotStartTimeRange', 'Recurrence', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'FirstSlotStartTimeRange' => [ 'shape' => 'SlotDateTimeRangeRequest', ], 'MaxResults' => [ 'shape' => 'DescribeScheduledInstanceAvailabilityMaxResults', ], 'MaxSlotDurationInHours' => [ 'shape' => 'Integer', ], 'MinSlotDurationInHours' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'Recurrence' => [ 'shape' => 'ScheduledInstanceRecurrenceRequest', ], ], ], 'DescribeScheduledInstanceAvailabilityResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'ScheduledInstanceAvailabilitySet' => [ 'shape' => 'ScheduledInstanceAvailabilitySet', 'locationName' => 'scheduledInstanceAvailabilitySet', ], ], ], 'DescribeScheduledInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'ScheduledInstanceIds' => [ 'shape' => 'ScheduledInstanceIdRequestSet', 'locationName' => 'ScheduledInstanceId', ], 'SlotStartTimeRange' => [ 'shape' => 'SlotStartTimeRangeRequest', ], ], ], 'DescribeScheduledInstancesResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'ScheduledInstanceSet' => [ 'shape' => 'ScheduledInstanceSet', 'locationName' => 'scheduledInstanceSet', ], ], ], 'DescribeSecurityGroupReferencesRequest' => [ 'type' => 'structure', 'required' => [ 'GroupId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'GroupId' => [ 'shape' => 'GroupIds', ], ], ], 'DescribeSecurityGroupReferencesResult' => [ 'type' => 'structure', 'members' => [ 'SecurityGroupReferenceSet' => [ 'shape' => 'SecurityGroupReferences', 'locationName' => 'securityGroupReferenceSet', ], ], ], 'DescribeSecurityGroupRulesMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeSecurityGroupRulesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'SecurityGroupRuleIds' => [ 'shape' => 'SecurityGroupRuleIdList', 'locationName' => 'SecurityGroupRuleId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeSecurityGroupRulesMaxResults', ], ], ], 'DescribeSecurityGroupRulesResult' => [ 'type' => 'structure', 'members' => [ 'SecurityGroupRules' => [ 'shape' => 'SecurityGroupRuleList', 'locationName' => 'securityGroupRuleSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSecurityGroupsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeSecurityGroupsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'GroupIds' => [ 'shape' => 'GroupIdStringList', 'locationName' => 'GroupId', ], 'GroupNames' => [ 'shape' => 'GroupNameStringList', 'locationName' => 'GroupName', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeSecurityGroupsMaxResults', ], ], ], 'DescribeSecurityGroupsResult' => [ 'type' => 'structure', 'members' => [ 'SecurityGroups' => [ 'shape' => 'SecurityGroupList', 'locationName' => 'securityGroupInfo', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSnapshotAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'Attribute', 'SnapshotId', ], 'members' => [ 'Attribute' => [ 'shape' => 'SnapshotAttributeName', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeSnapshotAttributeResult' => [ 'type' => 'structure', 'members' => [ 'CreateVolumePermissions' => [ 'shape' => 'CreateVolumePermissionList', 'locationName' => 'createVolumePermission', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], ], ], 'DescribeSnapshotTierStatusMaxResults' => [ 'type' => 'integer', ], 'DescribeSnapshotTierStatusRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeSnapshotTierStatusMaxResults', ], ], ], 'DescribeSnapshotTierStatusResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotTierStatuses' => [ 'shape' => 'snapshotTierStatusSet', 'locationName' => 'snapshotTierStatusSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSnapshotsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'OwnerIds' => [ 'shape' => 'OwnerStringList', 'locationName' => 'Owner', ], 'RestorableByUserIds' => [ 'shape' => 'RestorableByStringList', 'locationName' => 'RestorableBy', ], 'SnapshotIds' => [ 'shape' => 'SnapshotIdStringList', 'locationName' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeSnapshotsResult' => [ 'type' => 'structure', 'members' => [ 'Snapshots' => [ 'shape' => 'SnapshotList', 'locationName' => 'snapshotSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSpotDatafeedSubscriptionRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeSpotDatafeedSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'SpotDatafeedSubscription' => [ 'shape' => 'SpotDatafeedSubscription', 'locationName' => 'spotDatafeedSubscription', ], ], ], 'DescribeSpotFleetInstancesMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'DescribeSpotFleetInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'MaxResults' => [ 'shape' => 'DescribeSpotFleetInstancesMaxResults', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'SpotFleetRequestId' => [ 'shape' => 'SpotFleetRequestId', 'locationName' => 'spotFleetRequestId', ], ], ], 'DescribeSpotFleetInstancesResponse' => [ 'type' => 'structure', 'members' => [ 'ActiveInstances' => [ 'shape' => 'ActiveInstanceSet', 'locationName' => 'activeInstanceSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], ], ], 'DescribeSpotFleetRequestHistoryMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'DescribeSpotFleetRequestHistoryRequest' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestId', 'StartTime', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'EventType' => [ 'shape' => 'EventType', 'locationName' => 'eventType', ], 'MaxResults' => [ 'shape' => 'DescribeSpotFleetRequestHistoryMaxResults', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'SpotFleetRequestId' => [ 'shape' => 'SpotFleetRequestId', 'locationName' => 'spotFleetRequestId', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], ], ], 'DescribeSpotFleetRequestHistoryResponse' => [ 'type' => 'structure', 'members' => [ 'HistoryRecords' => [ 'shape' => 'HistoryRecords', 'locationName' => 'historyRecordSet', ], 'LastEvaluatedTime' => [ 'shape' => 'DateTime', 'locationName' => 'lastEvaluatedTime', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], ], ], 'DescribeSpotFleetRequestsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'SpotFleetRequestIds' => [ 'shape' => 'SpotFleetRequestIdList', 'locationName' => 'spotFleetRequestId', ], ], ], 'DescribeSpotFleetRequestsResponse' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'SpotFleetRequestConfigs' => [ 'shape' => 'SpotFleetRequestConfigSet', 'locationName' => 'spotFleetRequestConfigSet', ], ], ], 'DescribeSpotInstanceRequestsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SpotInstanceRequestIds' => [ 'shape' => 'SpotInstanceRequestIdList', 'locationName' => 'SpotInstanceRequestId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'Integer', ], ], ], 'DescribeSpotInstanceRequestsResult' => [ 'type' => 'structure', 'members' => [ 'SpotInstanceRequests' => [ 'shape' => 'SpotInstanceRequestList', 'locationName' => 'spotInstanceRequestSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSpotPriceHistoryRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'EndTime' => [ 'shape' => 'DateTime', 'locationName' => 'endTime', ], 'InstanceTypes' => [ 'shape' => 'InstanceTypeList', 'locationName' => 'InstanceType', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'ProductDescriptions' => [ 'shape' => 'ProductDescriptionList', 'locationName' => 'ProductDescription', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], ], ], 'DescribeSpotPriceHistoryResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'SpotPriceHistory' => [ 'shape' => 'SpotPriceHistoryList', 'locationName' => 'spotPriceHistorySet', ], ], ], 'DescribeStaleSecurityGroupsMaxResults' => [ 'type' => 'integer', 'max' => 255, 'min' => 5, ], 'DescribeStaleSecurityGroupsNextToken' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, ], 'DescribeStaleSecurityGroupsRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'MaxResults' => [ 'shape' => 'DescribeStaleSecurityGroupsMaxResults', ], 'NextToken' => [ 'shape' => 'DescribeStaleSecurityGroupsNextToken', ], 'VpcId' => [ 'shape' => 'VpcId', ], ], ], 'DescribeStaleSecurityGroupsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'StaleSecurityGroupSet' => [ 'shape' => 'StaleSecurityGroupSet', 'locationName' => 'staleSecurityGroupSet', ], ], ], 'DescribeStoreImageTasksRequest' => [ 'type' => 'structure', 'members' => [ 'ImageIds' => [ 'shape' => 'ImageIdList', 'locationName' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeStoreImageTasksRequestMaxResults', ], ], ], 'DescribeStoreImageTasksRequestMaxResults' => [ 'type' => 'integer', 'max' => 200, 'min' => 1, ], 'DescribeStoreImageTasksResult' => [ 'type' => 'structure', 'members' => [ 'StoreImageTaskResults' => [ 'shape' => 'StoreImageTaskResultSet', 'locationName' => 'storeImageTaskResultSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSubnetsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeSubnetsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'SubnetIds' => [ 'shape' => 'SubnetIdStringList', 'locationName' => 'SubnetId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeSubnetsMaxResults', ], ], ], 'DescribeSubnetsResult' => [ 'type' => 'structure', 'members' => [ 'Subnets' => [ 'shape' => 'SubnetList', 'locationName' => 'subnetSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTagsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTagsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'Tags' => [ 'shape' => 'TagDescriptionList', 'locationName' => 'tagSet', ], ], ], 'DescribeTrafficMirrorFiltersRequest' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilterIds' => [ 'shape' => 'TrafficMirrorFilterIdList', 'locationName' => 'TrafficMirrorFilterId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TrafficMirroringMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeTrafficMirrorFiltersResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilters' => [ 'shape' => 'TrafficMirrorFilterSet', 'locationName' => 'trafficMirrorFilterSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTrafficMirrorSessionsRequest' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorSessionIds' => [ 'shape' => 'TrafficMirrorSessionIdList', 'locationName' => 'TrafficMirrorSessionId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TrafficMirroringMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeTrafficMirrorSessionsResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorSessions' => [ 'shape' => 'TrafficMirrorSessionSet', 'locationName' => 'trafficMirrorSessionSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTrafficMirrorTargetsRequest' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorTargetIds' => [ 'shape' => 'TrafficMirrorTargetIdList', 'locationName' => 'TrafficMirrorTargetId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TrafficMirroringMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeTrafficMirrorTargetsResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorTargets' => [ 'shape' => 'TrafficMirrorTargetSet', 'locationName' => 'trafficMirrorTargetSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayAttachmentsRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentIds' => [ 'shape' => 'TransitGatewayAttachmentIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayAttachmentsResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachments' => [ 'shape' => 'TransitGatewayAttachmentList', 'locationName' => 'transitGatewayAttachments', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayConnectPeersRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayConnectPeerIds' => [ 'shape' => 'TransitGatewayConnectPeerIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayConnectPeersResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayConnectPeers' => [ 'shape' => 'TransitGatewayConnectPeerList', 'locationName' => 'transitGatewayConnectPeerSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayConnectsRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentIds' => [ 'shape' => 'TransitGatewayAttachmentIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayConnectsResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayConnects' => [ 'shape' => 'TransitGatewayConnectList', 'locationName' => 'transitGatewayConnectSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayMulticastDomainsRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainIds' => [ 'shape' => 'TransitGatewayMulticastDomainIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayMulticastDomainsResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomains' => [ 'shape' => 'TransitGatewayMulticastDomainList', 'locationName' => 'transitGatewayMulticastDomains', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayPeeringAttachmentsRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentIds' => [ 'shape' => 'TransitGatewayAttachmentIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayPeeringAttachmentsResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPeeringAttachments' => [ 'shape' => 'TransitGatewayPeeringAttachmentList', 'locationName' => 'transitGatewayPeeringAttachments', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayPolicyTablesRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPolicyTableIds' => [ 'shape' => 'TransitGatewayPolicyTableIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayPolicyTablesResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPolicyTables' => [ 'shape' => 'TransitGatewayPolicyTableList', 'locationName' => 'transitGatewayPolicyTables', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayRouteTableAnnouncementsRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableAnnouncementIds' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayRouteTableAnnouncementsResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableAnnouncements' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementList', 'locationName' => 'transitGatewayRouteTableAnnouncements', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayRouteTablesRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableIds' => [ 'shape' => 'TransitGatewayRouteTableIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayRouteTablesResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTables' => [ 'shape' => 'TransitGatewayRouteTableList', 'locationName' => 'transitGatewayRouteTables', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewayVpcAttachmentsRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentIds' => [ 'shape' => 'TransitGatewayAttachmentIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewayVpcAttachmentsResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayVpcAttachments' => [ 'shape' => 'TransitGatewayVpcAttachmentList', 'locationName' => 'transitGatewayVpcAttachments', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTransitGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayIds' => [ 'shape' => 'TransitGatewayIdStringList', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeTransitGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'TransitGateways' => [ 'shape' => 'TransitGatewayList', 'locationName' => 'transitGatewaySet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTrunkInterfaceAssociationsMaxResults' => [ 'type' => 'integer', 'max' => 255, 'min' => 5, ], 'DescribeTrunkInterfaceAssociationsRequest' => [ 'type' => 'structure', 'members' => [ 'AssociationIds' => [ 'shape' => 'TrunkInterfaceAssociationIdList', 'locationName' => 'AssociationId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeTrunkInterfaceAssociationsMaxResults', ], ], ], 'DescribeTrunkInterfaceAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'InterfaceAssociations' => [ 'shape' => 'TrunkInterfaceAssociationList', 'locationName' => 'interfaceAssociationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVerifiedAccessEndpointsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeVerifiedAccessEndpointsRequest' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessEndpointIds' => [ 'shape' => 'VerifiedAccessEndpointIdList', 'locationName' => 'VerifiedAccessEndpointId', ], 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'VerifiedAccessGroupId' => [ 'shape' => 'VerifiedAccessGroupId', ], 'MaxResults' => [ 'shape' => 'DescribeVerifiedAccessEndpointsMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeVerifiedAccessEndpointsResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessEndpoints' => [ 'shape' => 'VerifiedAccessEndpointList', 'locationName' => 'verifiedAccessEndpointSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeVerifiedAccessGroupMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeVerifiedAccessGroupsRequest' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessGroupIds' => [ 'shape' => 'VerifiedAccessGroupIdList', 'locationName' => 'VerifiedAccessGroupId', ], 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'MaxResults' => [ 'shape' => 'DescribeVerifiedAccessGroupMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeVerifiedAccessGroupsResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessGroups' => [ 'shape' => 'VerifiedAccessGroupList', 'locationName' => 'verifiedAccessGroupSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeVerifiedAccessInstanceLoggingConfigurationsMaxResults' => [ 'type' => 'integer', 'max' => 10, 'min' => 1, ], 'DescribeVerifiedAccessInstanceLoggingConfigurationsRequest' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstanceIds' => [ 'shape' => 'VerifiedAccessInstanceIdList', 'locationName' => 'VerifiedAccessInstanceId', ], 'MaxResults' => [ 'shape' => 'DescribeVerifiedAccessInstanceLoggingConfigurationsMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeVerifiedAccessInstanceLoggingConfigurationsResult' => [ 'type' => 'structure', 'members' => [ 'LoggingConfigurations' => [ 'shape' => 'VerifiedAccessInstanceLoggingConfigurationList', 'locationName' => 'loggingConfigurationSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeVerifiedAccessInstancesMaxResults' => [ 'type' => 'integer', 'max' => 200, 'min' => 5, ], 'DescribeVerifiedAccessInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstanceIds' => [ 'shape' => 'VerifiedAccessInstanceIdList', 'locationName' => 'VerifiedAccessInstanceId', ], 'MaxResults' => [ 'shape' => 'DescribeVerifiedAccessInstancesMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeVerifiedAccessInstancesResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstances' => [ 'shape' => 'VerifiedAccessInstanceList', 'locationName' => 'verifiedAccessInstanceSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeVerifiedAccessTrustProvidersMaxResults' => [ 'type' => 'integer', 'max' => 200, 'min' => 5, ], 'DescribeVerifiedAccessTrustProvidersRequest' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProviderIds' => [ 'shape' => 'VerifiedAccessTrustProviderIdList', 'locationName' => 'VerifiedAccessTrustProviderId', ], 'MaxResults' => [ 'shape' => 'DescribeVerifiedAccessTrustProvidersMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DescribeVerifiedAccessTrustProvidersResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProviders' => [ 'shape' => 'VerifiedAccessTrustProviderList', 'locationName' => 'verifiedAccessTrustProviderSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeVolumeAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'Attribute', 'VolumeId', ], 'members' => [ 'Attribute' => [ 'shape' => 'VolumeAttributeName', ], 'VolumeId' => [ 'shape' => 'VolumeId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeVolumeAttributeResult' => [ 'type' => 'structure', 'members' => [ 'AutoEnableIO' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'autoEnableIO', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], ], ], 'DescribeVolumeStatusRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'VolumeIds' => [ 'shape' => 'VolumeIdStringList', 'locationName' => 'VolumeId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeVolumeStatusResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'VolumeStatuses' => [ 'shape' => 'VolumeStatusList', 'locationName' => 'volumeStatusSet', ], ], ], 'DescribeVolumesModificationsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VolumeIds' => [ 'shape' => 'VolumeIdStringList', 'locationName' => 'VolumeId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'Integer', ], ], ], 'DescribeVolumesModificationsResult' => [ 'type' => 'structure', 'members' => [ 'VolumesModifications' => [ 'shape' => 'VolumeModificationList', 'locationName' => 'volumeModificationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVolumesRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'VolumeIds' => [ 'shape' => 'VolumeIdStringList', 'locationName' => 'VolumeId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVolumesResult' => [ 'type' => 'structure', 'members' => [ 'Volumes' => [ 'shape' => 'VolumeList', 'locationName' => 'volumeSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'Attribute', 'VpcId', ], 'members' => [ 'Attribute' => [ 'shape' => 'VpcAttributeName', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeVpcAttributeResult' => [ 'type' => 'structure', 'members' => [ 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'EnableDnsHostnames' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'enableDnsHostnames', ], 'EnableDnsSupport' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'enableDnsSupport', ], 'EnableNetworkAddressUsageMetrics' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'enableNetworkAddressUsageMetrics', ], ], ], 'DescribeVpcClassicLinkDnsSupportMaxResults' => [ 'type' => 'integer', 'max' => 255, 'min' => 5, ], 'DescribeVpcClassicLinkDnsSupportNextToken' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, ], 'DescribeVpcClassicLinkDnsSupportRequest' => [ 'type' => 'structure', 'members' => [ 'MaxResults' => [ 'shape' => 'DescribeVpcClassicLinkDnsSupportMaxResults', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'DescribeVpcClassicLinkDnsSupportNextToken', 'locationName' => 'nextToken', ], 'VpcIds' => [ 'shape' => 'VpcClassicLinkIdList', ], ], ], 'DescribeVpcClassicLinkDnsSupportResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'DescribeVpcClassicLinkDnsSupportNextToken', 'locationName' => 'nextToken', ], 'Vpcs' => [ 'shape' => 'ClassicLinkDnsSupportList', 'locationName' => 'vpcs', ], ], ], 'DescribeVpcClassicLinkRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcIds' => [ 'shape' => 'VpcClassicLinkIdList', 'locationName' => 'VpcId', ], ], ], 'DescribeVpcClassicLinkResult' => [ 'type' => 'structure', 'members' => [ 'Vpcs' => [ 'shape' => 'VpcClassicLinkList', 'locationName' => 'vpcSet', ], ], ], 'DescribeVpcEndpointConnectionNotificationsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ConnectionNotificationId' => [ 'shape' => 'ConnectionNotificationId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeVpcEndpointConnectionNotificationsResult' => [ 'type' => 'structure', 'members' => [ 'ConnectionNotificationSet' => [ 'shape' => 'ConnectionNotificationSet', 'locationName' => 'connectionNotificationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcEndpointConnectionsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeVpcEndpointConnectionsResult' => [ 'type' => 'structure', 'members' => [ 'VpcEndpointConnections' => [ 'shape' => 'VpcEndpointConnectionSet', 'locationName' => 'vpcEndpointConnectionSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcEndpointServiceConfigurationsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceIds' => [ 'shape' => 'VpcEndpointServiceIdList', 'locationName' => 'ServiceId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeVpcEndpointServiceConfigurationsResult' => [ 'type' => 'structure', 'members' => [ 'ServiceConfigurations' => [ 'shape' => 'ServiceConfigurationSet', 'locationName' => 'serviceConfigurationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcEndpointServicePermissionsRequest' => [ 'type' => 'structure', 'required' => [ 'ServiceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceId' => [ 'shape' => 'VpcEndpointServiceId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeVpcEndpointServicePermissionsResult' => [ 'type' => 'structure', 'members' => [ 'AllowedPrincipals' => [ 'shape' => 'AllowedPrincipalSet', 'locationName' => 'allowedPrincipals', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcEndpointServicesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceNames' => [ 'shape' => 'ValueStringList', 'locationName' => 'ServiceName', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeVpcEndpointServicesResult' => [ 'type' => 'structure', 'members' => [ 'ServiceNames' => [ 'shape' => 'ValueStringList', 'locationName' => 'serviceNameSet', ], 'ServiceDetails' => [ 'shape' => 'ServiceDetailSet', 'locationName' => 'serviceDetailSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcEndpointsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VpcEndpointIds' => [ 'shape' => 'VpcEndpointIdList', 'locationName' => 'VpcEndpointId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeVpcEndpointsResult' => [ 'type' => 'structure', 'members' => [ 'VpcEndpoints' => [ 'shape' => 'VpcEndpointSet', 'locationName' => 'vpcEndpointSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcPeeringConnectionsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeVpcPeeringConnectionsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcPeeringConnectionIds' => [ 'shape' => 'VpcPeeringConnectionIdList', 'locationName' => 'VpcPeeringConnectionId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeVpcPeeringConnectionsMaxResults', ], ], ], 'DescribeVpcPeeringConnectionsResult' => [ 'type' => 'structure', 'members' => [ 'VpcPeeringConnections' => [ 'shape' => 'VpcPeeringConnectionList', 'locationName' => 'vpcPeeringConnectionSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'DescribeVpcsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'VpcIds' => [ 'shape' => 'VpcIdStringList', 'locationName' => 'VpcId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'DescribeVpcsMaxResults', ], ], ], 'DescribeVpcsResult' => [ 'type' => 'structure', 'members' => [ 'Vpcs' => [ 'shape' => 'VpcList', 'locationName' => 'vpcSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpnConnectionsRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'VpnConnectionIds' => [ 'shape' => 'VpnConnectionIdStringList', 'locationName' => 'VpnConnectionId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeVpnConnectionsResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnections' => [ 'shape' => 'VpnConnectionList', 'locationName' => 'vpnConnectionSet', ], ], ], 'DescribeVpnGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'VpnGatewayIds' => [ 'shape' => 'VpnGatewayIdStringList', 'locationName' => 'VpnGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeVpnGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'VpnGateways' => [ 'shape' => 'VpnGatewayList', 'locationName' => 'vpnGatewaySet', ], ], ], 'DestinationFileFormat' => [ 'type' => 'string', 'enum' => [ 'plain-text', 'parquet', ], ], 'DestinationOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'FileFormat' => [ 'shape' => 'DestinationFileFormat', ], 'HiveCompatiblePartitions' => [ 'shape' => 'Boolean', ], 'PerHourPartition' => [ 'shape' => 'Boolean', ], ], ], 'DestinationOptionsResponse' => [ 'type' => 'structure', 'members' => [ 'FileFormat' => [ 'shape' => 'DestinationFileFormat', 'locationName' => 'fileFormat', ], 'HiveCompatiblePartitions' => [ 'shape' => 'Boolean', 'locationName' => 'hiveCompatiblePartitions', ], 'PerHourPartition' => [ 'shape' => 'Boolean', 'locationName' => 'perHourPartition', ], ], ], 'DetachClassicLinkVpcRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], ], ], 'DetachClassicLinkVpcResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DetachInternetGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'InternetGatewayId', 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InternetGatewayId' => [ 'shape' => 'InternetGatewayId', 'locationName' => 'internetGatewayId', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], ], ], 'DetachNetworkInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'AttachmentId', ], 'members' => [ 'AttachmentId' => [ 'shape' => 'NetworkInterfaceAttachmentId', 'locationName' => 'attachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Force' => [ 'shape' => 'Boolean', 'locationName' => 'force', ], ], ], 'DetachVerifiedAccessTrustProviderRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessInstanceId', 'VerifiedAccessTrustProviderId', ], 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'VerifiedAccessTrustProviderId' => [ 'shape' => 'VerifiedAccessTrustProviderId', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DetachVerifiedAccessTrustProviderResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProvider' => [ 'shape' => 'VerifiedAccessTrustProvider', 'locationName' => 'verifiedAccessTrustProvider', ], 'VerifiedAccessInstance' => [ 'shape' => 'VerifiedAccessInstance', 'locationName' => 'verifiedAccessInstance', ], ], ], 'DetachVolumeRequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'Device' => [ 'shape' => 'String', ], 'Force' => [ 'shape' => 'Boolean', ], 'InstanceId' => [ 'shape' => 'InstanceIdForResolver', ], 'VolumeId' => [ 'shape' => 'VolumeIdWithResolver', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DetachVpnGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', 'VpnGatewayId', ], 'members' => [ 'VpcId' => [ 'shape' => 'VpcId', ], 'VpnGatewayId' => [ 'shape' => 'VpnGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeviceOptions' => [ 'type' => 'structure', 'members' => [ 'TenantId' => [ 'shape' => 'String', 'locationName' => 'tenantId', ], 'PublicSigningKeyUrl' => [ 'shape' => 'String', 'locationName' => 'publicSigningKeyUrl', ], ], ], 'DeviceTrustProviderType' => [ 'type' => 'string', 'enum' => [ 'jamf', 'crowdstrike', 'jumpcloud', ], ], 'DeviceType' => [ 'type' => 'string', 'enum' => [ 'ebs', 'instance-store', ], ], 'DhcpConfiguration' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', 'locationName' => 'key', ], 'Values' => [ 'shape' => 'DhcpConfigurationValueList', 'locationName' => 'valueSet', ], ], ], 'DhcpConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DhcpConfiguration', 'locationName' => 'item', ], ], 'DhcpConfigurationValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AttributeValue', 'locationName' => 'item', ], ], 'DhcpOptions' => [ 'type' => 'structure', 'members' => [ 'DhcpConfigurations' => [ 'shape' => 'DhcpConfigurationList', 'locationName' => 'dhcpConfigurationSet', ], 'DhcpOptionsId' => [ 'shape' => 'String', 'locationName' => 'dhcpOptionsId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'DhcpOptionsId' => [ 'type' => 'string', ], 'DhcpOptionsIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DhcpOptionsId', 'locationName' => 'DhcpOptionsId', ], ], 'DhcpOptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DhcpOptions', 'locationName' => 'item', ], ], 'DirectoryServiceAuthentication' => [ 'type' => 'structure', 'members' => [ 'DirectoryId' => [ 'shape' => 'String', 'locationName' => 'directoryId', ], ], ], 'DirectoryServiceAuthenticationRequest' => [ 'type' => 'structure', 'members' => [ 'DirectoryId' => [ 'shape' => 'String', ], ], ], 'DisableAddressTransferRequest' => [ 'type' => 'structure', 'required' => [ 'AllocationId', ], 'members' => [ 'AllocationId' => [ 'shape' => 'AllocationId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableAddressTransferResult' => [ 'type' => 'structure', 'members' => [ 'AddressTransfer' => [ 'shape' => 'AddressTransfer', 'locationName' => 'addressTransfer', ], ], ], 'DisableAwsNetworkPerformanceMetricSubscriptionRequest' => [ 'type' => 'structure', 'members' => [ 'Source' => [ 'shape' => 'String', ], 'Destination' => [ 'shape' => 'String', ], 'Metric' => [ 'shape' => 'MetricType', ], 'Statistic' => [ 'shape' => 'StatisticType', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableAwsNetworkPerformanceMetricSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'Output' => [ 'shape' => 'Boolean', 'locationName' => 'output', ], ], ], 'DisableEbsEncryptionByDefaultRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableEbsEncryptionByDefaultResult' => [ 'type' => 'structure', 'members' => [ 'EbsEncryptionByDefault' => [ 'shape' => 'Boolean', 'locationName' => 'ebsEncryptionByDefault', ], ], ], 'DisableFastLaunchRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'Force' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableFastLaunchResult' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', 'locationName' => 'imageId', ], 'ResourceType' => [ 'shape' => 'FastLaunchResourceType', 'locationName' => 'resourceType', ], 'SnapshotConfiguration' => [ 'shape' => 'FastLaunchSnapshotConfigurationResponse', 'locationName' => 'snapshotConfiguration', ], 'LaunchTemplate' => [ 'shape' => 'FastLaunchLaunchTemplateSpecificationResponse', 'locationName' => 'launchTemplate', ], 'MaxParallelLaunches' => [ 'shape' => 'Integer', 'locationName' => 'maxParallelLaunches', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'State' => [ 'shape' => 'FastLaunchStateCode', 'locationName' => 'state', ], 'StateTransitionReason' => [ 'shape' => 'String', 'locationName' => 'stateTransitionReason', ], 'StateTransitionTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'stateTransitionTime', ], ], ], 'DisableFastSnapshotRestoreErrorItem' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'FastSnapshotRestoreStateErrors' => [ 'shape' => 'DisableFastSnapshotRestoreStateErrorSet', 'locationName' => 'fastSnapshotRestoreStateErrorSet', ], ], ], 'DisableFastSnapshotRestoreErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DisableFastSnapshotRestoreErrorItem', 'locationName' => 'item', ], ], 'DisableFastSnapshotRestoreStateError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'DisableFastSnapshotRestoreStateErrorItem' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Error' => [ 'shape' => 'DisableFastSnapshotRestoreStateError', 'locationName' => 'error', ], ], ], 'DisableFastSnapshotRestoreStateErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DisableFastSnapshotRestoreStateErrorItem', 'locationName' => 'item', ], ], 'DisableFastSnapshotRestoreSuccessItem' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'State' => [ 'shape' => 'FastSnapshotRestoreStateCode', 'locationName' => 'state', ], 'StateTransitionReason' => [ 'shape' => 'String', 'locationName' => 'stateTransitionReason', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'OwnerAlias' => [ 'shape' => 'String', 'locationName' => 'ownerAlias', ], 'EnablingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'enablingTime', ], 'OptimizingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'optimizingTime', ], 'EnabledTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'enabledTime', ], 'DisablingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'disablingTime', ], 'DisabledTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'disabledTime', ], ], ], 'DisableFastSnapshotRestoreSuccessSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DisableFastSnapshotRestoreSuccessItem', 'locationName' => 'item', ], ], 'DisableFastSnapshotRestoresRequest' => [ 'type' => 'structure', 'required' => [ 'AvailabilityZones', 'SourceSnapshotIds', ], 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZoneStringList', 'locationName' => 'AvailabilityZone', ], 'SourceSnapshotIds' => [ 'shape' => 'SnapshotIdStringList', 'locationName' => 'SourceSnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableFastSnapshotRestoresResult' => [ 'type' => 'structure', 'members' => [ 'Successful' => [ 'shape' => 'DisableFastSnapshotRestoreSuccessSet', 'locationName' => 'successful', ], 'Unsuccessful' => [ 'shape' => 'DisableFastSnapshotRestoreErrorSet', 'locationName' => 'unsuccessful', ], ], ], 'DisableImageBlockPublicAccessRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableImageBlockPublicAccessResult' => [ 'type' => 'structure', 'members' => [ 'ImageBlockPublicAccessState' => [ 'shape' => 'ImageBlockPublicAccessDisabledState', 'locationName' => 'imageBlockPublicAccessState', ], ], ], 'DisableImageDeprecationRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableImageDeprecationResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DisableImageRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableImageResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DisableIpamOrganizationAdminAccountRequest' => [ 'type' => 'structure', 'required' => [ 'DelegatedAdminAccountId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'DelegatedAdminAccountId' => [ 'shape' => 'String', ], ], ], 'DisableIpamOrganizationAdminAccountResult' => [ 'type' => 'structure', 'members' => [ 'Success' => [ 'shape' => 'Boolean', 'locationName' => 'success', ], ], ], 'DisableSerialConsoleAccessRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableSerialConsoleAccessResult' => [ 'type' => 'structure', 'members' => [ 'SerialConsoleAccessEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'serialConsoleAccessEnabled', ], ], ], 'DisableSnapshotBlockPublicAccessRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableSnapshotBlockPublicAccessResult' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'SnapshotBlockPublicAccessState', 'locationName' => 'state', ], ], ], 'DisableTransitGatewayRouteTablePropagationRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'TransitGatewayRouteTableAnnouncementId' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementId', ], ], ], 'DisableTransitGatewayRouteTablePropagationResult' => [ 'type' => 'structure', 'members' => [ 'Propagation' => [ 'shape' => 'TransitGatewayPropagation', 'locationName' => 'propagation', ], ], ], 'DisableVgwRoutePropagationRequest' => [ 'type' => 'structure', 'required' => [ 'GatewayId', 'RouteTableId', ], 'members' => [ 'GatewayId' => [ 'shape' => 'VpnGatewayId', ], 'RouteTableId' => [ 'shape' => 'RouteTableId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisableVpcClassicLinkDnsSupportRequest' => [ 'type' => 'structure', 'members' => [ 'VpcId' => [ 'shape' => 'VpcId', ], ], ], 'DisableVpcClassicLinkDnsSupportResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DisableVpcClassicLinkRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], ], ], 'DisableVpcClassicLinkResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DisassociateAddressRequest' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'ElasticIpAssociationId', ], 'PublicIp' => [ 'shape' => 'EipAllocationPublicIp', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DisassociateClientVpnTargetNetworkRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', 'AssociationId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'AssociationId' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisassociateClientVpnTargetNetworkResult' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'Status' => [ 'shape' => 'AssociationStatus', 'locationName' => 'status', ], ], ], 'DisassociateEnclaveCertificateIamRoleRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', 'RoleArn', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'CertificateId', ], 'RoleArn' => [ 'shape' => 'RoleId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisassociateEnclaveCertificateIamRoleResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DisassociateIamInstanceProfileRequest' => [ 'type' => 'structure', 'required' => [ 'AssociationId', ], 'members' => [ 'AssociationId' => [ 'shape' => 'IamInstanceProfileAssociationId', ], ], ], 'DisassociateIamInstanceProfileResult' => [ 'type' => 'structure', 'members' => [ 'IamInstanceProfileAssociation' => [ 'shape' => 'IamInstanceProfileAssociation', 'locationName' => 'iamInstanceProfileAssociation', ], ], ], 'DisassociateInstanceEventWindowRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceEventWindowId', 'AssociationTarget', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceEventWindowId' => [ 'shape' => 'InstanceEventWindowId', ], 'AssociationTarget' => [ 'shape' => 'InstanceEventWindowDisassociationRequest', ], ], ], 'DisassociateInstanceEventWindowResult' => [ 'type' => 'structure', 'members' => [ 'InstanceEventWindow' => [ 'shape' => 'InstanceEventWindow', 'locationName' => 'instanceEventWindow', ], ], ], 'DisassociateIpamByoasnRequest' => [ 'type' => 'structure', 'required' => [ 'Asn', 'Cidr', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Asn' => [ 'shape' => 'String', ], 'Cidr' => [ 'shape' => 'String', ], ], ], 'DisassociateIpamByoasnResult' => [ 'type' => 'structure', 'members' => [ 'AsnAssociation' => [ 'shape' => 'AsnAssociation', 'locationName' => 'asnAssociation', ], ], ], 'DisassociateIpamResourceDiscoveryRequest' => [ 'type' => 'structure', 'required' => [ 'IpamResourceDiscoveryAssociationId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamResourceDiscoveryAssociationId' => [ 'shape' => 'IpamResourceDiscoveryAssociationId', ], ], ], 'DisassociateIpamResourceDiscoveryResult' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscoveryAssociation' => [ 'shape' => 'IpamResourceDiscoveryAssociation', 'locationName' => 'ipamResourceDiscoveryAssociation', ], ], ], 'DisassociateNatGatewayAddressRequest' => [ 'type' => 'structure', 'required' => [ 'NatGatewayId', 'AssociationIds', ], 'members' => [ 'NatGatewayId' => [ 'shape' => 'NatGatewayId', ], 'AssociationIds' => [ 'shape' => 'EipAssociationIdList', 'locationName' => 'AssociationId', ], 'MaxDrainDurationSeconds' => [ 'shape' => 'DrainSeconds', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisassociateNatGatewayAddressResult' => [ 'type' => 'structure', 'members' => [ 'NatGatewayId' => [ 'shape' => 'NatGatewayId', 'locationName' => 'natGatewayId', ], 'NatGatewayAddresses' => [ 'shape' => 'NatGatewayAddressList', 'locationName' => 'natGatewayAddressSet', ], ], ], 'DisassociateRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'AssociationId', ], 'members' => [ 'AssociationId' => [ 'shape' => 'RouteTableAssociationId', 'locationName' => 'associationId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DisassociateSubnetCidrBlockRequest' => [ 'type' => 'structure', 'required' => [ 'AssociationId', ], 'members' => [ 'AssociationId' => [ 'shape' => 'SubnetCidrAssociationId', 'locationName' => 'associationId', ], ], ], 'DisassociateSubnetCidrBlockResult' => [ 'type' => 'structure', 'members' => [ 'Ipv6CidrBlockAssociation' => [ 'shape' => 'SubnetIpv6CidrBlockAssociation', 'locationName' => 'ipv6CidrBlockAssociation', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], ], ], 'DisassociateTransitGatewayMulticastDomainRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayMulticastDomainId', 'TransitGatewayAttachmentId', 'SubnetIds', ], 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'SubnetIds' => [ 'shape' => 'TransitGatewaySubnetIdList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisassociateTransitGatewayMulticastDomainResult' => [ 'type' => 'structure', 'members' => [ 'Associations' => [ 'shape' => 'TransitGatewayMulticastDomainAssociations', 'locationName' => 'associations', ], ], ], 'DisassociateTransitGatewayPolicyTableRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayPolicyTableId', 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayPolicyTableId' => [ 'shape' => 'TransitGatewayPolicyTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisassociateTransitGatewayPolicyTableResult' => [ 'type' => 'structure', 'members' => [ 'Association' => [ 'shape' => 'TransitGatewayPolicyTableAssociation', 'locationName' => 'association', ], ], ], 'DisassociateTransitGatewayRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisassociateTransitGatewayRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'Association' => [ 'shape' => 'TransitGatewayAssociation', 'locationName' => 'association', ], ], ], 'DisassociateTrunkInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'AssociationId', ], 'members' => [ 'AssociationId' => [ 'shape' => 'TrunkInterfaceAssociationId', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'DisassociateTrunkInterfaceResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'DisassociateVpcCidrBlockRequest' => [ 'type' => 'structure', 'required' => [ 'AssociationId', ], 'members' => [ 'AssociationId' => [ 'shape' => 'VpcCidrAssociationId', 'locationName' => 'associationId', ], ], ], 'DisassociateVpcCidrBlockResult' => [ 'type' => 'structure', 'members' => [ 'Ipv6CidrBlockAssociation' => [ 'shape' => 'VpcIpv6CidrBlockAssociation', 'locationName' => 'ipv6CidrBlockAssociation', ], 'CidrBlockAssociation' => [ 'shape' => 'VpcCidrBlockAssociation', 'locationName' => 'cidrBlockAssociation', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'DiskCount' => [ 'type' => 'integer', ], 'DiskImage' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', ], 'Image' => [ 'shape' => 'DiskImageDetail', ], 'Volume' => [ 'shape' => 'VolumeDetail', ], ], ], 'DiskImageDescription' => [ 'type' => 'structure', 'members' => [ 'Checksum' => [ 'shape' => 'String', 'locationName' => 'checksum', ], 'Format' => [ 'shape' => 'DiskImageFormat', 'locationName' => 'format', ], 'ImportManifestUrl' => [ 'shape' => 'ImportManifestUrl', 'locationName' => 'importManifestUrl', ], 'Size' => [ 'shape' => 'Long', 'locationName' => 'size', ], ], ], 'DiskImageDetail' => [ 'type' => 'structure', 'required' => [ 'Bytes', 'Format', 'ImportManifestUrl', ], 'members' => [ 'Bytes' => [ 'shape' => 'Long', 'locationName' => 'bytes', ], 'Format' => [ 'shape' => 'DiskImageFormat', 'locationName' => 'format', ], 'ImportManifestUrl' => [ 'shape' => 'ImportManifestUrl', 'locationName' => 'importManifestUrl', ], ], ], 'DiskImageFormat' => [ 'type' => 'string', 'enum' => [ 'VMDK', 'RAW', 'VHD', ], ], 'DiskImageList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DiskImage', ], ], 'DiskImageVolumeDescription' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'String', 'locationName' => 'id', ], 'Size' => [ 'shape' => 'Long', 'locationName' => 'size', ], ], ], 'DiskInfo' => [ 'type' => 'structure', 'members' => [ 'SizeInGB' => [ 'shape' => 'DiskSize', 'locationName' => 'sizeInGB', ], 'Count' => [ 'shape' => 'DiskCount', 'locationName' => 'count', ], 'Type' => [ 'shape' => 'DiskType', 'locationName' => 'type', ], ], ], 'DiskInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DiskInfo', 'locationName' => 'item', ], ], 'DiskSize' => [ 'type' => 'long', ], 'DiskType' => [ 'type' => 'string', 'enum' => [ 'hdd', 'ssd', ], ], 'DnsEntry' => [ 'type' => 'structure', 'members' => [ 'DnsName' => [ 'shape' => 'String', 'locationName' => 'dnsName', ], 'HostedZoneId' => [ 'shape' => 'String', 'locationName' => 'hostedZoneId', ], ], ], 'DnsEntrySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DnsEntry', 'locationName' => 'item', ], ], 'DnsNameState' => [ 'type' => 'string', 'enum' => [ 'pendingVerification', 'verified', 'failed', ], ], 'DnsOptions' => [ 'type' => 'structure', 'members' => [ 'DnsRecordIpType' => [ 'shape' => 'DnsRecordIpType', 'locationName' => 'dnsRecordIpType', ], 'PrivateDnsOnlyForInboundResolverEndpoint' => [ 'shape' => 'Boolean', 'locationName' => 'privateDnsOnlyForInboundResolverEndpoint', ], ], ], 'DnsOptionsSpecification' => [ 'type' => 'structure', 'members' => [ 'DnsRecordIpType' => [ 'shape' => 'DnsRecordIpType', ], 'PrivateDnsOnlyForInboundResolverEndpoint' => [ 'shape' => 'Boolean', ], ], ], 'DnsRecordIpType' => [ 'type' => 'string', 'enum' => [ 'ipv4', 'dualstack', 'ipv6', 'service-defined', ], ], 'DnsServersOptionsModifyStructure' => [ 'type' => 'structure', 'members' => [ 'CustomDnsServers' => [ 'shape' => 'ValueStringList', ], 'Enabled' => [ 'shape' => 'Boolean', ], ], ], 'DnsSupportValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'DomainType' => [ 'type' => 'string', 'enum' => [ 'vpc', 'standard', ], ], 'Double' => [ 'type' => 'double', ], 'DoubleWithConstraints' => [ 'type' => 'double', 'max' => 99.999, 'min' => 0.001, ], 'DrainSeconds' => [ 'type' => 'integer', 'max' => 4000, 'min' => 1, ], 'DynamicRoutingValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'EbsBlockDevice' => [ 'type' => 'structure', 'members' => [ 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'Iops' => [ 'shape' => 'Integer', 'locationName' => 'iops', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', 'locationName' => 'snapshotId', ], 'VolumeSize' => [ 'shape' => 'Integer', 'locationName' => 'volumeSize', ], 'VolumeType' => [ 'shape' => 'VolumeType', 'locationName' => 'volumeType', ], 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], 'Throughput' => [ 'shape' => 'Integer', 'locationName' => 'throughput', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], ], ], 'EbsEncryptionSupport' => [ 'type' => 'string', 'enum' => [ 'unsupported', 'supported', ], ], 'EbsInfo' => [ 'type' => 'structure', 'members' => [ 'EbsOptimizedSupport' => [ 'shape' => 'EbsOptimizedSupport', 'locationName' => 'ebsOptimizedSupport', ], 'EncryptionSupport' => [ 'shape' => 'EbsEncryptionSupport', 'locationName' => 'encryptionSupport', ], 'EbsOptimizedInfo' => [ 'shape' => 'EbsOptimizedInfo', 'locationName' => 'ebsOptimizedInfo', ], 'NvmeSupport' => [ 'shape' => 'EbsNvmeSupport', 'locationName' => 'nvmeSupport', ], ], ], 'EbsInstanceBlockDevice' => [ 'type' => 'structure', 'members' => [ 'AttachTime' => [ 'shape' => 'DateTime', 'locationName' => 'attachTime', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'Status' => [ 'shape' => 'AttachmentStatus', 'locationName' => 'status', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'AssociatedResource' => [ 'shape' => 'String', 'locationName' => 'associatedResource', ], 'VolumeOwnerId' => [ 'shape' => 'String', 'locationName' => 'volumeOwnerId', ], ], ], 'EbsInstanceBlockDeviceSpecification' => [ 'type' => 'structure', 'members' => [ 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'VolumeId' => [ 'shape' => 'VolumeId', 'locationName' => 'volumeId', ], ], ], 'EbsNvmeSupport' => [ 'type' => 'string', 'enum' => [ 'unsupported', 'supported', 'required', ], ], 'EbsOptimizedInfo' => [ 'type' => 'structure', 'members' => [ 'BaselineBandwidthInMbps' => [ 'shape' => 'BaselineBandwidthInMbps', 'locationName' => 'baselineBandwidthInMbps', ], 'BaselineThroughputInMBps' => [ 'shape' => 'BaselineThroughputInMBps', 'locationName' => 'baselineThroughputInMBps', ], 'BaselineIops' => [ 'shape' => 'BaselineIops', 'locationName' => 'baselineIops', ], 'MaximumBandwidthInMbps' => [ 'shape' => 'MaximumBandwidthInMbps', 'locationName' => 'maximumBandwidthInMbps', ], 'MaximumThroughputInMBps' => [ 'shape' => 'MaximumThroughputInMBps', 'locationName' => 'maximumThroughputInMBps', ], 'MaximumIops' => [ 'shape' => 'MaximumIops', 'locationName' => 'maximumIops', ], ], ], 'EbsOptimizedSupport' => [ 'type' => 'string', 'enum' => [ 'unsupported', 'supported', 'default', ], ], 'Ec2InstanceConnectEndpoint' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'InstanceConnectEndpointId' => [ 'shape' => 'InstanceConnectEndpointId', 'locationName' => 'instanceConnectEndpointId', ], 'InstanceConnectEndpointArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'instanceConnectEndpointArn', ], 'State' => [ 'shape' => 'Ec2InstanceConnectEndpointState', 'locationName' => 'state', ], 'StateMessage' => [ 'shape' => 'String', 'locationName' => 'stateMessage', ], 'DnsName' => [ 'shape' => 'String', 'locationName' => 'dnsName', ], 'FipsDnsName' => [ 'shape' => 'String', 'locationName' => 'fipsDnsName', ], 'NetworkInterfaceIds' => [ 'shape' => 'NetworkInterfaceIdSet', 'locationName' => 'networkInterfaceIdSet', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'CreatedAt' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'createdAt', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'PreserveClientIp' => [ 'shape' => 'Boolean', 'locationName' => 'preserveClientIp', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdSet', 'locationName' => 'securityGroupIdSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'Ec2InstanceConnectEndpointState' => [ 'type' => 'string', 'enum' => [ 'create-in-progress', 'create-complete', 'create-failed', 'delete-in-progress', 'delete-complete', 'delete-failed', ], ], 'EfaInfo' => [ 'type' => 'structure', 'members' => [ 'MaximumEfaInterfaces' => [ 'shape' => 'MaximumEfaInterfaces', 'locationName' => 'maximumEfaInterfaces', ], ], ], 'EfaSupportedFlag' => [ 'type' => 'boolean', ], 'EgressOnlyInternetGateway' => [ 'type' => 'structure', 'members' => [ 'Attachments' => [ 'shape' => 'InternetGatewayAttachmentList', 'locationName' => 'attachmentSet', ], 'EgressOnlyInternetGatewayId' => [ 'shape' => 'EgressOnlyInternetGatewayId', 'locationName' => 'egressOnlyInternetGatewayId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'EgressOnlyInternetGatewayId' => [ 'type' => 'string', ], 'EgressOnlyInternetGatewayIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EgressOnlyInternetGatewayId', 'locationName' => 'item', ], ], 'EgressOnlyInternetGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EgressOnlyInternetGateway', 'locationName' => 'item', ], ], 'EipAllocationPublicIp' => [ 'type' => 'string', ], 'EipAssociationIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticIpAssociationId', 'locationName' => 'item', ], ], 'ElasticGpuAssociation' => [ 'type' => 'structure', 'members' => [ 'ElasticGpuId' => [ 'shape' => 'ElasticGpuId', 'locationName' => 'elasticGpuId', ], 'ElasticGpuAssociationId' => [ 'shape' => 'String', 'locationName' => 'elasticGpuAssociationId', ], 'ElasticGpuAssociationState' => [ 'shape' => 'String', 'locationName' => 'elasticGpuAssociationState', ], 'ElasticGpuAssociationTime' => [ 'shape' => 'String', 'locationName' => 'elasticGpuAssociationTime', ], ], ], 'ElasticGpuAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticGpuAssociation', 'locationName' => 'item', ], ], 'ElasticGpuHealth' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'ElasticGpuStatus', 'locationName' => 'status', ], ], ], 'ElasticGpuId' => [ 'type' => 'string', ], 'ElasticGpuIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticGpuId', 'locationName' => 'item', ], ], 'ElasticGpuSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticGpus', 'locationName' => 'item', ], ], 'ElasticGpuSpecification' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'Type' => [ 'shape' => 'String', ], ], ], 'ElasticGpuSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticGpuSpecification', 'locationName' => 'ElasticGpuSpecification', ], ], 'ElasticGpuSpecificationResponse' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'String', 'locationName' => 'type', ], ], ], 'ElasticGpuSpecificationResponseList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticGpuSpecificationResponse', 'locationName' => 'item', ], ], 'ElasticGpuSpecifications' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticGpuSpecification', 'locationName' => 'item', ], ], 'ElasticGpuState' => [ 'type' => 'string', 'enum' => [ 'ATTACHED', ], ], 'ElasticGpuStatus' => [ 'type' => 'string', 'enum' => [ 'OK', 'IMPAIRED', ], ], 'ElasticGpus' => [ 'type' => 'structure', 'members' => [ 'ElasticGpuId' => [ 'shape' => 'String', 'locationName' => 'elasticGpuId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'ElasticGpuType' => [ 'shape' => 'String', 'locationName' => 'elasticGpuType', ], 'ElasticGpuHealth' => [ 'shape' => 'ElasticGpuHealth', 'locationName' => 'elasticGpuHealth', ], 'ElasticGpuState' => [ 'shape' => 'ElasticGpuState', 'locationName' => 'elasticGpuState', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ElasticInferenceAccelerator' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'Type' => [ 'shape' => 'String', ], 'Count' => [ 'shape' => 'ElasticInferenceAcceleratorCount', ], ], ], 'ElasticInferenceAcceleratorAssociation' => [ 'type' => 'structure', 'members' => [ 'ElasticInferenceAcceleratorArn' => [ 'shape' => 'String', 'locationName' => 'elasticInferenceAcceleratorArn', ], 'ElasticInferenceAcceleratorAssociationId' => [ 'shape' => 'String', 'locationName' => 'elasticInferenceAcceleratorAssociationId', ], 'ElasticInferenceAcceleratorAssociationState' => [ 'shape' => 'String', 'locationName' => 'elasticInferenceAcceleratorAssociationState', ], 'ElasticInferenceAcceleratorAssociationTime' => [ 'shape' => 'DateTime', 'locationName' => 'elasticInferenceAcceleratorAssociationTime', ], ], ], 'ElasticInferenceAcceleratorAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticInferenceAcceleratorAssociation', 'locationName' => 'item', ], ], 'ElasticInferenceAcceleratorCount' => [ 'type' => 'integer', 'min' => 1, ], 'ElasticInferenceAccelerators' => [ 'type' => 'list', 'member' => [ 'shape' => 'ElasticInferenceAccelerator', 'locationName' => 'item', ], ], 'ElasticIpAssociationId' => [ 'type' => 'string', ], 'EnaSrdSpecification' => [ 'type' => 'structure', 'members' => [ 'EnaSrdEnabled' => [ 'shape' => 'Boolean', ], 'EnaSrdUdpSpecification' => [ 'shape' => 'EnaSrdUdpSpecification', ], ], ], 'EnaSrdSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'EnaSrdEnabled' => [ 'shape' => 'Boolean', ], 'EnaSrdUdpSpecification' => [ 'shape' => 'EnaSrdUdpSpecificationRequest', ], ], ], 'EnaSrdSupported' => [ 'type' => 'boolean', ], 'EnaSrdUdpSpecification' => [ 'type' => 'structure', 'members' => [ 'EnaSrdUdpEnabled' => [ 'shape' => 'Boolean', ], ], ], 'EnaSrdUdpSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'EnaSrdUdpEnabled' => [ 'shape' => 'Boolean', ], ], ], 'EnaSupport' => [ 'type' => 'string', 'enum' => [ 'unsupported', 'supported', 'required', ], ], 'EnableAddressTransferRequest' => [ 'type' => 'structure', 'required' => [ 'AllocationId', 'TransferAccountId', ], 'members' => [ 'AllocationId' => [ 'shape' => 'AllocationId', ], 'TransferAccountId' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableAddressTransferResult' => [ 'type' => 'structure', 'members' => [ 'AddressTransfer' => [ 'shape' => 'AddressTransfer', 'locationName' => 'addressTransfer', ], ], ], 'EnableAwsNetworkPerformanceMetricSubscriptionRequest' => [ 'type' => 'structure', 'members' => [ 'Source' => [ 'shape' => 'String', ], 'Destination' => [ 'shape' => 'String', ], 'Metric' => [ 'shape' => 'MetricType', ], 'Statistic' => [ 'shape' => 'StatisticType', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableAwsNetworkPerformanceMetricSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'Output' => [ 'shape' => 'Boolean', 'locationName' => 'output', ], ], ], 'EnableEbsEncryptionByDefaultRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableEbsEncryptionByDefaultResult' => [ 'type' => 'structure', 'members' => [ 'EbsEncryptionByDefault' => [ 'shape' => 'Boolean', 'locationName' => 'ebsEncryptionByDefault', ], ], ], 'EnableFastLaunchRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'ResourceType' => [ 'shape' => 'String', ], 'SnapshotConfiguration' => [ 'shape' => 'FastLaunchSnapshotConfigurationRequest', ], 'LaunchTemplate' => [ 'shape' => 'FastLaunchLaunchTemplateSpecificationRequest', ], 'MaxParallelLaunches' => [ 'shape' => 'Integer', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableFastLaunchResult' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', 'locationName' => 'imageId', ], 'ResourceType' => [ 'shape' => 'FastLaunchResourceType', 'locationName' => 'resourceType', ], 'SnapshotConfiguration' => [ 'shape' => 'FastLaunchSnapshotConfigurationResponse', 'locationName' => 'snapshotConfiguration', ], 'LaunchTemplate' => [ 'shape' => 'FastLaunchLaunchTemplateSpecificationResponse', 'locationName' => 'launchTemplate', ], 'MaxParallelLaunches' => [ 'shape' => 'Integer', 'locationName' => 'maxParallelLaunches', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'State' => [ 'shape' => 'FastLaunchStateCode', 'locationName' => 'state', ], 'StateTransitionReason' => [ 'shape' => 'String', 'locationName' => 'stateTransitionReason', ], 'StateTransitionTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'stateTransitionTime', ], ], ], 'EnableFastSnapshotRestoreErrorItem' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'FastSnapshotRestoreStateErrors' => [ 'shape' => 'EnableFastSnapshotRestoreStateErrorSet', 'locationName' => 'fastSnapshotRestoreStateErrorSet', ], ], ], 'EnableFastSnapshotRestoreErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnableFastSnapshotRestoreErrorItem', 'locationName' => 'item', ], ], 'EnableFastSnapshotRestoreStateError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'EnableFastSnapshotRestoreStateErrorItem' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Error' => [ 'shape' => 'EnableFastSnapshotRestoreStateError', 'locationName' => 'error', ], ], ], 'EnableFastSnapshotRestoreStateErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnableFastSnapshotRestoreStateErrorItem', 'locationName' => 'item', ], ], 'EnableFastSnapshotRestoreSuccessItem' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'State' => [ 'shape' => 'FastSnapshotRestoreStateCode', 'locationName' => 'state', ], 'StateTransitionReason' => [ 'shape' => 'String', 'locationName' => 'stateTransitionReason', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'OwnerAlias' => [ 'shape' => 'String', 'locationName' => 'ownerAlias', ], 'EnablingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'enablingTime', ], 'OptimizingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'optimizingTime', ], 'EnabledTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'enabledTime', ], 'DisablingTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'disablingTime', ], 'DisabledTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'disabledTime', ], ], ], 'EnableFastSnapshotRestoreSuccessSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnableFastSnapshotRestoreSuccessItem', 'locationName' => 'item', ], ], 'EnableFastSnapshotRestoresRequest' => [ 'type' => 'structure', 'required' => [ 'AvailabilityZones', 'SourceSnapshotIds', ], 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZoneStringList', 'locationName' => 'AvailabilityZone', ], 'SourceSnapshotIds' => [ 'shape' => 'SnapshotIdStringList', 'locationName' => 'SourceSnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableFastSnapshotRestoresResult' => [ 'type' => 'structure', 'members' => [ 'Successful' => [ 'shape' => 'EnableFastSnapshotRestoreSuccessSet', 'locationName' => 'successful', ], 'Unsuccessful' => [ 'shape' => 'EnableFastSnapshotRestoreErrorSet', 'locationName' => 'unsuccessful', ], ], ], 'EnableImageBlockPublicAccessRequest' => [ 'type' => 'structure', 'required' => [ 'ImageBlockPublicAccessState', ], 'members' => [ 'ImageBlockPublicAccessState' => [ 'shape' => 'ImageBlockPublicAccessEnabledState', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableImageBlockPublicAccessResult' => [ 'type' => 'structure', 'members' => [ 'ImageBlockPublicAccessState' => [ 'shape' => 'ImageBlockPublicAccessEnabledState', 'locationName' => 'imageBlockPublicAccessState', ], ], ], 'EnableImageDeprecationRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', 'DeprecateAt', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'DeprecateAt' => [ 'shape' => 'MillisecondDateTime', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableImageDeprecationResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'EnableImageRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableImageResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'EnableIpamOrganizationAdminAccountRequest' => [ 'type' => 'structure', 'required' => [ 'DelegatedAdminAccountId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'DelegatedAdminAccountId' => [ 'shape' => 'String', ], ], ], 'EnableIpamOrganizationAdminAccountResult' => [ 'type' => 'structure', 'members' => [ 'Success' => [ 'shape' => 'Boolean', 'locationName' => 'success', ], ], ], 'EnableReachabilityAnalyzerOrganizationSharingRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableReachabilityAnalyzerOrganizationSharingResult' => [ 'type' => 'structure', 'members' => [ 'ReturnValue' => [ 'shape' => 'Boolean', 'locationName' => 'returnValue', ], ], ], 'EnableSerialConsoleAccessRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableSerialConsoleAccessResult' => [ 'type' => 'structure', 'members' => [ 'SerialConsoleAccessEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'serialConsoleAccessEnabled', ], ], ], 'EnableSnapshotBlockPublicAccessRequest' => [ 'type' => 'structure', 'required' => [ 'State', ], 'members' => [ 'State' => [ 'shape' => 'SnapshotBlockPublicAccessState', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableSnapshotBlockPublicAccessResult' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'SnapshotBlockPublicAccessState', 'locationName' => 'state', ], ], ], 'EnableTransitGatewayRouteTablePropagationRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'TransitGatewayRouteTableAnnouncementId' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementId', ], ], ], 'EnableTransitGatewayRouteTablePropagationResult' => [ 'type' => 'structure', 'members' => [ 'Propagation' => [ 'shape' => 'TransitGatewayPropagation', 'locationName' => 'propagation', ], ], ], 'EnableVgwRoutePropagationRequest' => [ 'type' => 'structure', 'required' => [ 'GatewayId', 'RouteTableId', ], 'members' => [ 'GatewayId' => [ 'shape' => 'VpnGatewayId', ], 'RouteTableId' => [ 'shape' => 'RouteTableId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'EnableVolumeIORequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VolumeId' => [ 'shape' => 'VolumeId', 'locationName' => 'volumeId', ], ], ], 'EnableVpcClassicLinkDnsSupportRequest' => [ 'type' => 'structure', 'members' => [ 'VpcId' => [ 'shape' => 'VpcId', ], ], ], 'EnableVpcClassicLinkDnsSupportResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'EnableVpcClassicLinkRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], ], ], 'EnableVpcClassicLinkResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'EnclaveOptions' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], ], ], 'EnclaveOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], ], ], 'EncryptionInTransitSupported' => [ 'type' => 'boolean', ], 'EndDateType' => [ 'type' => 'string', 'enum' => [ 'unlimited', 'limited', ], ], 'EndpointSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClientVpnEndpoint', 'locationName' => 'item', ], ], 'EphemeralNvmeSupport' => [ 'type' => 'string', 'enum' => [ 'unsupported', 'supported', 'required', ], ], 'ErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ValidationError', 'locationName' => 'item', ], ], 'EventCode' => [ 'type' => 'string', 'enum' => [ 'instance-reboot', 'system-reboot', 'system-maintenance', 'instance-retirement', 'instance-stop', ], ], 'EventInformation' => [ 'type' => 'structure', 'members' => [ 'EventDescription' => [ 'shape' => 'String', 'locationName' => 'eventDescription', ], 'EventSubType' => [ 'shape' => 'String', 'locationName' => 'eventSubType', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], ], ], 'EventType' => [ 'type' => 'string', 'enum' => [ 'instanceChange', 'fleetRequestChange', 'error', 'information', ], ], 'ExcessCapacityTerminationPolicy' => [ 'type' => 'string', 'enum' => [ 'noTermination', 'default', ], ], 'ExcludedInstanceType' => [ 'type' => 'string', 'max' => 30, 'min' => 1, 'pattern' => '[a-zA-Z0-9\\.\\*\\-]+', ], 'ExcludedInstanceTypeSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExcludedInstanceType', 'locationName' => 'item', ], 'max' => 400, 'min' => 0, ], 'ExecutableByStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ExecutableBy', ], ], 'Explanation' => [ 'type' => 'structure', 'members' => [ 'Acl' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'acl', ], 'AclRule' => [ 'shape' => 'AnalysisAclRule', 'locationName' => 'aclRule', ], 'Address' => [ 'shape' => 'IpAddress', 'locationName' => 'address', ], 'Addresses' => [ 'shape' => 'IpAddressList', 'locationName' => 'addressSet', ], 'AttachedTo' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'attachedTo', ], 'AvailabilityZones' => [ 'shape' => 'ValueStringList', 'locationName' => 'availabilityZoneSet', ], 'Cidrs' => [ 'shape' => 'ValueStringList', 'locationName' => 'cidrSet', ], 'Component' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'component', ], 'CustomerGateway' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'customerGateway', ], 'Destination' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'destination', ], 'DestinationVpc' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'destinationVpc', ], 'Direction' => [ 'shape' => 'String', 'locationName' => 'direction', ], 'ExplanationCode' => [ 'shape' => 'String', 'locationName' => 'explanationCode', ], 'IngressRouteTable' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'ingressRouteTable', ], 'InternetGateway' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'internetGateway', ], 'LoadBalancerArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'loadBalancerArn', ], 'ClassicLoadBalancerListener' => [ 'shape' => 'AnalysisLoadBalancerListener', 'locationName' => 'classicLoadBalancerListener', ], 'LoadBalancerListenerPort' => [ 'shape' => 'Port', 'locationName' => 'loadBalancerListenerPort', ], 'LoadBalancerTarget' => [ 'shape' => 'AnalysisLoadBalancerTarget', 'locationName' => 'loadBalancerTarget', ], 'LoadBalancerTargetGroup' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'loadBalancerTargetGroup', ], 'LoadBalancerTargetGroups' => [ 'shape' => 'AnalysisComponentList', 'locationName' => 'loadBalancerTargetGroupSet', ], 'LoadBalancerTargetPort' => [ 'shape' => 'Port', 'locationName' => 'loadBalancerTargetPort', ], 'ElasticLoadBalancerListener' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'elasticLoadBalancerListener', ], 'MissingComponent' => [ 'shape' => 'String', 'locationName' => 'missingComponent', ], 'NatGateway' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'natGateway', ], 'NetworkInterface' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'networkInterface', ], 'PacketField' => [ 'shape' => 'String', 'locationName' => 'packetField', ], 'VpcPeeringConnection' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'vpcPeeringConnection', ], 'Port' => [ 'shape' => 'Port', 'locationName' => 'port', ], 'PortRanges' => [ 'shape' => 'PortRangeList', 'locationName' => 'portRangeSet', ], 'PrefixList' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'prefixList', ], 'Protocols' => [ 'shape' => 'StringList', 'locationName' => 'protocolSet', ], 'RouteTableRoute' => [ 'shape' => 'AnalysisRouteTableRoute', 'locationName' => 'routeTableRoute', ], 'RouteTable' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'routeTable', ], 'SecurityGroup' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'securityGroup', ], 'SecurityGroupRule' => [ 'shape' => 'AnalysisSecurityGroupRule', 'locationName' => 'securityGroupRule', ], 'SecurityGroups' => [ 'shape' => 'AnalysisComponentList', 'locationName' => 'securityGroupSet', ], 'SourceVpc' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'sourceVpc', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'Subnet' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'subnet', ], 'SubnetRouteTable' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'subnetRouteTable', ], 'Vpc' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'vpc', ], 'VpcEndpoint' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'vpcEndpoint', ], 'VpnConnection' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'vpnConnection', ], 'VpnGateway' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'vpnGateway', ], 'TransitGateway' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'transitGateway', ], 'TransitGatewayRouteTable' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'transitGatewayRouteTable', ], 'TransitGatewayRouteTableRoute' => [ 'shape' => 'TransitGatewayRouteTableRoute', 'locationName' => 'transitGatewayRouteTableRoute', ], 'TransitGatewayAttachment' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'transitGatewayAttachment', ], 'ComponentAccount' => [ 'shape' => 'ComponentAccount', 'locationName' => 'componentAccount', ], 'ComponentRegion' => [ 'shape' => 'ComponentRegion', 'locationName' => 'componentRegion', ], 'FirewallStatelessRule' => [ 'shape' => 'FirewallStatelessRule', 'locationName' => 'firewallStatelessRule', ], 'FirewallStatefulRule' => [ 'shape' => 'FirewallStatefulRule', 'locationName' => 'firewallStatefulRule', ], ], ], 'ExplanationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Explanation', 'locationName' => 'item', ], ], 'ExportClientVpnClientCertificateRevocationListRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ExportClientVpnClientCertificateRevocationListResult' => [ 'type' => 'structure', 'members' => [ 'CertificateRevocationList' => [ 'shape' => 'String', 'locationName' => 'certificateRevocationList', ], 'Status' => [ 'shape' => 'ClientCertificateRevocationListStatus', 'locationName' => 'status', ], ], ], 'ExportClientVpnClientConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ExportClientVpnClientConfigurationResult' => [ 'type' => 'structure', 'members' => [ 'ClientConfiguration' => [ 'shape' => 'String', 'locationName' => 'clientConfiguration', ], ], ], 'ExportEnvironment' => [ 'type' => 'string', 'enum' => [ 'citrix', 'vmware', 'microsoft', ], ], 'ExportImageRequest' => [ 'type' => 'structure', 'required' => [ 'DiskImageFormat', 'ImageId', 'S3ExportLocation', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'Description' => [ 'shape' => 'String', ], 'DiskImageFormat' => [ 'shape' => 'DiskImageFormat', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ImageId' => [ 'shape' => 'ImageId', ], 'S3ExportLocation' => [ 'shape' => 'ExportTaskS3LocationRequest', ], 'RoleName' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'ExportImageResult' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DiskImageFormat' => [ 'shape' => 'DiskImageFormat', 'locationName' => 'diskImageFormat', ], 'ExportImageTaskId' => [ 'shape' => 'String', 'locationName' => 'exportImageTaskId', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'RoleName' => [ 'shape' => 'String', 'locationName' => 'roleName', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'S3ExportLocation' => [ 'shape' => 'ExportTaskS3Location', 'locationName' => 's3ExportLocation', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ExportImageTask' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'ExportImageTaskId' => [ 'shape' => 'String', 'locationName' => 'exportImageTaskId', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'S3ExportLocation' => [ 'shape' => 'ExportTaskS3Location', 'locationName' => 's3ExportLocation', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ExportImageTaskId' => [ 'type' => 'string', ], 'ExportImageTaskIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExportImageTaskId', 'locationName' => 'ExportImageTaskId', ], ], 'ExportImageTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExportImageTask', 'locationName' => 'item', ], ], 'ExportTask' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'ExportTaskId' => [ 'shape' => 'String', 'locationName' => 'exportTaskId', ], 'ExportToS3Task' => [ 'shape' => 'ExportToS3Task', 'locationName' => 'exportToS3', ], 'InstanceExportDetails' => [ 'shape' => 'InstanceExportDetails', 'locationName' => 'instanceExport', ], 'State' => [ 'shape' => 'ExportTaskState', 'locationName' => 'state', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ExportTaskId' => [ 'type' => 'string', ], 'ExportTaskIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExportTaskId', 'locationName' => 'ExportTaskId', ], ], 'ExportTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExportTask', 'locationName' => 'item', ], ], 'ExportTaskS3Location' => [ 'type' => 'structure', 'members' => [ 'S3Bucket' => [ 'shape' => 'String', 'locationName' => 's3Bucket', ], 'S3Prefix' => [ 'shape' => 'String', 'locationName' => 's3Prefix', ], ], ], 'ExportTaskS3LocationRequest' => [ 'type' => 'structure', 'required' => [ 'S3Bucket', ], 'members' => [ 'S3Bucket' => [ 'shape' => 'String', ], 'S3Prefix' => [ 'shape' => 'String', ], ], ], 'ExportTaskState' => [ 'type' => 'string', 'enum' => [ 'active', 'cancelling', 'cancelled', 'completed', ], ], 'ExportToS3Task' => [ 'type' => 'structure', 'members' => [ 'ContainerFormat' => [ 'shape' => 'ContainerFormat', 'locationName' => 'containerFormat', ], 'DiskImageFormat' => [ 'shape' => 'DiskImageFormat', 'locationName' => 'diskImageFormat', ], 'S3Bucket' => [ 'shape' => 'String', 'locationName' => 's3Bucket', ], 'S3Key' => [ 'shape' => 'String', 'locationName' => 's3Key', ], ], ], 'ExportToS3TaskSpecification' => [ 'type' => 'structure', 'members' => [ 'ContainerFormat' => [ 'shape' => 'ContainerFormat', 'locationName' => 'containerFormat', ], 'DiskImageFormat' => [ 'shape' => 'DiskImageFormat', 'locationName' => 'diskImageFormat', ], 'S3Bucket' => [ 'shape' => 'String', 'locationName' => 's3Bucket', ], 'S3Prefix' => [ 'shape' => 'String', 'locationName' => 's3Prefix', ], ], ], 'ExportTransitGatewayRoutesRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'S3Bucket', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'S3Bucket' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ExportTransitGatewayRoutesResult' => [ 'type' => 'structure', 'members' => [ 'S3Location' => [ 'shape' => 'String', 'locationName' => 's3Location', ], ], ], 'ExportVmTaskId' => [ 'type' => 'string', ], 'FailedCapacityReservationFleetCancellationResult' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationFleetId' => [ 'shape' => 'CapacityReservationFleetId', 'locationName' => 'capacityReservationFleetId', ], 'CancelCapacityReservationFleetError' => [ 'shape' => 'CancelCapacityReservationFleetError', 'locationName' => 'cancelCapacityReservationFleetError', ], ], ], 'FailedCapacityReservationFleetCancellationResultSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'FailedCapacityReservationFleetCancellationResult', 'locationName' => 'item', ], ], 'FailedQueuedPurchaseDeletion' => [ 'type' => 'structure', 'members' => [ 'Error' => [ 'shape' => 'DeleteQueuedReservedInstancesError', 'locationName' => 'error', ], 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], ], ], 'FailedQueuedPurchaseDeletionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'FailedQueuedPurchaseDeletion', 'locationName' => 'item', ], ], 'FastLaunchImageIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImageId', 'locationName' => 'ImageId', ], ], 'FastLaunchLaunchTemplateSpecificationRequest' => [ 'type' => 'structure', 'required' => [ 'Version', ], 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'String', ], 'Version' => [ 'shape' => 'String', ], ], ], 'FastLaunchLaunchTemplateSpecificationResponse' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', 'locationName' => 'launchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'String', 'locationName' => 'launchTemplateName', ], 'Version' => [ 'shape' => 'String', 'locationName' => 'version', ], ], ], 'FastLaunchResourceType' => [ 'type' => 'string', 'enum' => [ 'snapshot', ], ], 'FastLaunchSnapshotConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'TargetResourceCount' => [ 'shape' => 'Integer', ], ], ], 'FastLaunchSnapshotConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'TargetResourceCount' => [ 'shape' => 'Integer', 'locationName' => 'targetResourceCount', ], ], ], 'FastLaunchStateCode' => [ 'type' => 'string', 'enum' => [ 'enabling', 'enabling-failed', 'enabled', 'enabled-failed', 'disabling', 'disabling-failed', ], ], 'FastSnapshotRestoreStateCode' => [ 'type' => 'string', 'enum' => [ 'enabling', 'optimizing', 'enabled', 'disabling', 'disabled', ], ], 'FederatedAuthentication' => [ 'type' => 'structure', 'members' => [ 'SamlProviderArn' => [ 'shape' => 'String', 'locationName' => 'samlProviderArn', ], 'SelfServiceSamlProviderArn' => [ 'shape' => 'String', 'locationName' => 'selfServiceSamlProviderArn', ], ], ], 'FederatedAuthenticationRequest' => [ 'type' => 'structure', 'members' => [ 'SAMLProviderArn' => [ 'shape' => 'String', ], 'SelfServiceSAMLProviderArn' => [ 'shape' => 'String', ], ], ], 'Filter' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Values' => [ 'shape' => 'ValueStringList', 'locationName' => 'Value', ], ], ], 'FilterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Filter', 'locationName' => 'Filter', ], ], 'FilterPortRange' => [ 'type' => 'structure', 'members' => [ 'FromPort' => [ 'shape' => 'Port', 'locationName' => 'fromPort', ], 'ToPort' => [ 'shape' => 'Port', 'locationName' => 'toPort', ], ], ], 'FindingsFound' => [ 'type' => 'string', 'enum' => [ 'true', 'false', 'unknown', ], ], 'FirewallStatefulRule' => [ 'type' => 'structure', 'members' => [ 'RuleGroupArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ruleGroupArn', ], 'Sources' => [ 'shape' => 'ValueStringList', 'locationName' => 'sourceSet', ], 'Destinations' => [ 'shape' => 'ValueStringList', 'locationName' => 'destinationSet', ], 'SourcePorts' => [ 'shape' => 'PortRangeList', 'locationName' => 'sourcePortSet', ], 'DestinationPorts' => [ 'shape' => 'PortRangeList', 'locationName' => 'destinationPortSet', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], 'RuleAction' => [ 'shape' => 'String', 'locationName' => 'ruleAction', ], 'Direction' => [ 'shape' => 'String', 'locationName' => 'direction', ], ], ], 'FirewallStatelessRule' => [ 'type' => 'structure', 'members' => [ 'RuleGroupArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ruleGroupArn', ], 'Sources' => [ 'shape' => 'ValueStringList', 'locationName' => 'sourceSet', ], 'Destinations' => [ 'shape' => 'ValueStringList', 'locationName' => 'destinationSet', ], 'SourcePorts' => [ 'shape' => 'PortRangeList', 'locationName' => 'sourcePortSet', ], 'DestinationPorts' => [ 'shape' => 'PortRangeList', 'locationName' => 'destinationPortSet', ], 'Protocols' => [ 'shape' => 'ProtocolIntList', 'locationName' => 'protocolSet', ], 'RuleAction' => [ 'shape' => 'String', 'locationName' => 'ruleAction', ], 'Priority' => [ 'shape' => 'Priority', 'locationName' => 'priority', ], ], ], 'FleetActivityStatus' => [ 'type' => 'string', 'enum' => [ 'error', 'pending_fulfillment', 'pending_termination', 'fulfilled', ], ], 'FleetCapacityReservation' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationId' => [ 'shape' => 'CapacityReservationId', 'locationName' => 'capacityReservationId', ], 'AvailabilityZoneId' => [ 'shape' => 'String', 'locationName' => 'availabilityZoneId', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'InstancePlatform' => [ 'shape' => 'CapacityReservationInstancePlatform', 'locationName' => 'instancePlatform', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'TotalInstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'totalInstanceCount', ], 'FulfilledCapacity' => [ 'shape' => 'Double', 'locationName' => 'fulfilledCapacity', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'CreateDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'createDate', ], 'Weight' => [ 'shape' => 'DoubleWithConstraints', 'locationName' => 'weight', ], 'Priority' => [ 'shape' => 'IntegerWithConstraints', 'locationName' => 'priority', ], ], ], 'FleetCapacityReservationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetCapacityReservation', 'locationName' => 'item', ], ], 'FleetCapacityReservationTenancy' => [ 'type' => 'string', 'enum' => [ 'default', ], ], 'FleetCapacityReservationUsageStrategy' => [ 'type' => 'string', 'enum' => [ 'use-capacity-reservations-first', ], ], 'FleetData' => [ 'type' => 'structure', 'members' => [ 'ActivityStatus' => [ 'shape' => 'FleetActivityStatus', 'locationName' => 'activityStatus', ], 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'FleetId' => [ 'shape' => 'FleetId', 'locationName' => 'fleetId', ], 'FleetState' => [ 'shape' => 'FleetStateCode', 'locationName' => 'fleetState', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'ExcessCapacityTerminationPolicy' => [ 'shape' => 'FleetExcessCapacityTerminationPolicy', 'locationName' => 'excessCapacityTerminationPolicy', ], 'FulfilledCapacity' => [ 'shape' => 'Double', 'locationName' => 'fulfilledCapacity', ], 'FulfilledOnDemandCapacity' => [ 'shape' => 'Double', 'locationName' => 'fulfilledOnDemandCapacity', ], 'LaunchTemplateConfigs' => [ 'shape' => 'FleetLaunchTemplateConfigList', 'locationName' => 'launchTemplateConfigs', ], 'TargetCapacitySpecification' => [ 'shape' => 'TargetCapacitySpecification', 'locationName' => 'targetCapacitySpecification', ], 'TerminateInstancesWithExpiration' => [ 'shape' => 'Boolean', 'locationName' => 'terminateInstancesWithExpiration', ], 'Type' => [ 'shape' => 'FleetType', 'locationName' => 'type', ], 'ValidFrom' => [ 'shape' => 'DateTime', 'locationName' => 'validFrom', ], 'ValidUntil' => [ 'shape' => 'DateTime', 'locationName' => 'validUntil', ], 'ReplaceUnhealthyInstances' => [ 'shape' => 'Boolean', 'locationName' => 'replaceUnhealthyInstances', ], 'SpotOptions' => [ 'shape' => 'SpotOptions', 'locationName' => 'spotOptions', ], 'OnDemandOptions' => [ 'shape' => 'OnDemandOptions', 'locationName' => 'onDemandOptions', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'Errors' => [ 'shape' => 'DescribeFleetsErrorSet', 'locationName' => 'errorSet', ], 'Instances' => [ 'shape' => 'DescribeFleetsInstancesSet', 'locationName' => 'fleetInstanceSet', ], 'Context' => [ 'shape' => 'String', 'locationName' => 'context', ], ], ], 'FleetEventType' => [ 'type' => 'string', 'enum' => [ 'instance-change', 'fleet-change', 'service-error', ], ], 'FleetExcessCapacityTerminationPolicy' => [ 'type' => 'string', 'enum' => [ 'no-termination', 'termination', ], ], 'FleetId' => [ 'type' => 'string', ], 'FleetIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetId', ], ], 'FleetInstanceMatchCriteria' => [ 'type' => 'string', 'enum' => [ 'open', ], ], 'FleetLaunchTemplateConfig' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateSpecification' => [ 'shape' => 'FleetLaunchTemplateSpecification', 'locationName' => 'launchTemplateSpecification', ], 'Overrides' => [ 'shape' => 'FleetLaunchTemplateOverridesList', 'locationName' => 'overrides', ], ], ], 'FleetLaunchTemplateConfigList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetLaunchTemplateConfig', 'locationName' => 'item', ], ], 'FleetLaunchTemplateConfigListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetLaunchTemplateConfigRequest', 'locationName' => 'item', ], 'max' => 50, 'min' => 0, ], 'FleetLaunchTemplateConfigRequest' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateSpecification' => [ 'shape' => 'FleetLaunchTemplateSpecificationRequest', ], 'Overrides' => [ 'shape' => 'FleetLaunchTemplateOverridesListRequest', ], ], ], 'FleetLaunchTemplateOverrides' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'MaxPrice' => [ 'shape' => 'String', 'locationName' => 'maxPrice', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'WeightedCapacity' => [ 'shape' => 'Double', 'locationName' => 'weightedCapacity', ], 'Priority' => [ 'shape' => 'Double', 'locationName' => 'priority', ], 'Placement' => [ 'shape' => 'PlacementResponse', 'locationName' => 'placement', ], 'InstanceRequirements' => [ 'shape' => 'InstanceRequirements', 'locationName' => 'instanceRequirements', ], 'ImageId' => [ 'shape' => 'ImageId', 'locationName' => 'imageId', ], ], ], 'FleetLaunchTemplateOverridesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetLaunchTemplateOverrides', 'locationName' => 'item', ], ], 'FleetLaunchTemplateOverridesListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetLaunchTemplateOverridesRequest', 'locationName' => 'item', ], ], 'FleetLaunchTemplateOverridesRequest' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'InstanceType', ], 'MaxPrice' => [ 'shape' => 'String', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'WeightedCapacity' => [ 'shape' => 'Double', ], 'Priority' => [ 'shape' => 'Double', ], 'Placement' => [ 'shape' => 'Placement', ], 'InstanceRequirements' => [ 'shape' => 'InstanceRequirementsRequest', ], 'ImageId' => [ 'shape' => 'ImageId', ], ], ], 'FleetLaunchTemplateSpecification' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'String', 'locationName' => 'launchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', 'locationName' => 'launchTemplateName', ], 'Version' => [ 'shape' => 'String', 'locationName' => 'version', ], ], ], 'FleetLaunchTemplateSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', ], 'Version' => [ 'shape' => 'String', ], ], ], 'FleetOnDemandAllocationStrategy' => [ 'type' => 'string', 'enum' => [ 'lowest-price', 'prioritized', ], ], 'FleetReplacementStrategy' => [ 'type' => 'string', 'enum' => [ 'launch', 'launch-before-terminate', ], ], 'FleetSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetData', 'locationName' => 'item', ], ], 'FleetSpotCapacityRebalance' => [ 'type' => 'structure', 'members' => [ 'ReplacementStrategy' => [ 'shape' => 'FleetReplacementStrategy', 'locationName' => 'replacementStrategy', ], 'TerminationDelay' => [ 'shape' => 'Integer', 'locationName' => 'terminationDelay', ], ], ], 'FleetSpotCapacityRebalanceRequest' => [ 'type' => 'structure', 'members' => [ 'ReplacementStrategy' => [ 'shape' => 'FleetReplacementStrategy', ], 'TerminationDelay' => [ 'shape' => 'Integer', ], ], ], 'FleetSpotMaintenanceStrategies' => [ 'type' => 'structure', 'members' => [ 'CapacityRebalance' => [ 'shape' => 'FleetSpotCapacityRebalance', 'locationName' => 'capacityRebalance', ], ], ], 'FleetSpotMaintenanceStrategiesRequest' => [ 'type' => 'structure', 'members' => [ 'CapacityRebalance' => [ 'shape' => 'FleetSpotCapacityRebalanceRequest', ], ], ], 'FleetStateCode' => [ 'type' => 'string', 'enum' => [ 'submitted', 'active', 'deleted', 'failed', 'deleted_running', 'deleted_terminating', 'modifying', ], ], 'FleetType' => [ 'type' => 'string', 'enum' => [ 'request', 'maintain', 'instant', ], ], 'Float' => [ 'type' => 'float', ], 'FlowLog' => [ 'type' => 'structure', 'members' => [ 'CreationTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'creationTime', ], 'DeliverLogsErrorMessage' => [ 'shape' => 'String', 'locationName' => 'deliverLogsErrorMessage', ], 'DeliverLogsPermissionArn' => [ 'shape' => 'String', 'locationName' => 'deliverLogsPermissionArn', ], 'DeliverCrossAccountRole' => [ 'shape' => 'String', 'locationName' => 'deliverCrossAccountRole', ], 'DeliverLogsStatus' => [ 'shape' => 'String', 'locationName' => 'deliverLogsStatus', ], 'FlowLogId' => [ 'shape' => 'String', 'locationName' => 'flowLogId', ], 'FlowLogStatus' => [ 'shape' => 'String', 'locationName' => 'flowLogStatus', ], 'LogGroupName' => [ 'shape' => 'String', 'locationName' => 'logGroupName', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'TrafficType' => [ 'shape' => 'TrafficType', 'locationName' => 'trafficType', ], 'LogDestinationType' => [ 'shape' => 'LogDestinationType', 'locationName' => 'logDestinationType', ], 'LogDestination' => [ 'shape' => 'String', 'locationName' => 'logDestination', ], 'LogFormat' => [ 'shape' => 'String', 'locationName' => 'logFormat', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'MaxAggregationInterval' => [ 'shape' => 'Integer', 'locationName' => 'maxAggregationInterval', ], 'DestinationOptions' => [ 'shape' => 'DestinationOptionsResponse', 'locationName' => 'destinationOptions', ], ], ], 'FlowLogIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcFlowLogId', 'locationName' => 'item', ], ], 'FlowLogResourceId' => [ 'type' => 'string', ], 'FlowLogResourceIds' => [ 'type' => 'list', 'member' => [ 'shape' => 'FlowLogResourceId', 'locationName' => 'item', ], ], 'FlowLogSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'FlowLog', 'locationName' => 'item', ], ], 'FlowLogsResourceType' => [ 'type' => 'string', 'enum' => [ 'VPC', 'Subnet', 'NetworkInterface', 'TransitGateway', 'TransitGatewayAttachment', ], ], 'FpgaDeviceCount' => [ 'type' => 'integer', ], 'FpgaDeviceInfo' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'FpgaDeviceName', 'locationName' => 'name', ], 'Manufacturer' => [ 'shape' => 'FpgaDeviceManufacturerName', 'locationName' => 'manufacturer', ], 'Count' => [ 'shape' => 'FpgaDeviceCount', 'locationName' => 'count', ], 'MemoryInfo' => [ 'shape' => 'FpgaDeviceMemoryInfo', 'locationName' => 'memoryInfo', ], ], ], 'FpgaDeviceInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FpgaDeviceInfo', 'locationName' => 'item', ], ], 'FpgaDeviceManufacturerName' => [ 'type' => 'string', ], 'FpgaDeviceMemoryInfo' => [ 'type' => 'structure', 'members' => [ 'SizeInMiB' => [ 'shape' => 'FpgaDeviceMemorySize', 'locationName' => 'sizeInMiB', ], ], ], 'FpgaDeviceMemorySize' => [ 'type' => 'integer', ], 'FpgaDeviceName' => [ 'type' => 'string', ], 'FpgaImage' => [ 'type' => 'structure', 'members' => [ 'FpgaImageId' => [ 'shape' => 'String', 'locationName' => 'fpgaImageId', ], 'FpgaImageGlobalId' => [ 'shape' => 'String', 'locationName' => 'fpgaImageGlobalId', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'ShellVersion' => [ 'shape' => 'String', 'locationName' => 'shellVersion', ], 'PciId' => [ 'shape' => 'PciId', 'locationName' => 'pciId', ], 'State' => [ 'shape' => 'FpgaImageState', 'locationName' => 'state', ], 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'UpdateTime' => [ 'shape' => 'DateTime', 'locationName' => 'updateTime', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'OwnerAlias' => [ 'shape' => 'String', 'locationName' => 'ownerAlias', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tags', ], 'Public' => [ 'shape' => 'Boolean', 'locationName' => 'public', ], 'DataRetentionSupport' => [ 'shape' => 'Boolean', 'locationName' => 'dataRetentionSupport', ], 'InstanceTypes' => [ 'shape' => 'InstanceTypesList', 'locationName' => 'instanceTypes', ], ], ], 'FpgaImageAttribute' => [ 'type' => 'structure', 'members' => [ 'FpgaImageId' => [ 'shape' => 'String', 'locationName' => 'fpgaImageId', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'LoadPermissions' => [ 'shape' => 'LoadPermissionList', 'locationName' => 'loadPermissions', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], ], ], 'FpgaImageAttributeName' => [ 'type' => 'string', 'enum' => [ 'description', 'name', 'loadPermission', 'productCodes', ], ], 'FpgaImageId' => [ 'type' => 'string', ], 'FpgaImageIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FpgaImageId', 'locationName' => 'item', ], ], 'FpgaImageList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FpgaImage', 'locationName' => 'item', ], ], 'FpgaImageState' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'FpgaImageStateCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'FpgaImageStateCode' => [ 'type' => 'string', 'enum' => [ 'pending', 'failed', 'available', 'unavailable', ], ], 'FpgaInfo' => [ 'type' => 'structure', 'members' => [ 'Fpgas' => [ 'shape' => 'FpgaDeviceInfoList', 'locationName' => 'fpgas', ], 'TotalFpgaMemoryInMiB' => [ 'shape' => 'totalFpgaMemory', 'locationName' => 'totalFpgaMemoryInMiB', ], ], ], 'FreeTierEligibleFlag' => [ 'type' => 'boolean', ], 'GVCDMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 200, ], 'GatewayAssociationState' => [ 'type' => 'string', 'enum' => [ 'associated', 'not-associated', 'associating', 'disassociating', ], ], 'GatewayType' => [ 'type' => 'string', 'enum' => [ 'ipsec.1', ], ], 'GetAssociatedEnclaveCertificateIamRolesRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'CertificateId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetAssociatedEnclaveCertificateIamRolesResult' => [ 'type' => 'structure', 'members' => [ 'AssociatedRoles' => [ 'shape' => 'AssociatedRolesList', 'locationName' => 'associatedRoleSet', ], ], ], 'GetAssociatedIpv6PoolCidrsRequest' => [ 'type' => 'structure', 'required' => [ 'PoolId', ], 'members' => [ 'PoolId' => [ 'shape' => 'Ipv6PoolEc2Id', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'Ipv6PoolMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetAssociatedIpv6PoolCidrsResult' => [ 'type' => 'structure', 'members' => [ 'Ipv6CidrAssociations' => [ 'shape' => 'Ipv6CidrAssociationSet', 'locationName' => 'ipv6CidrAssociationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetAwsNetworkPerformanceDataRequest' => [ 'type' => 'structure', 'members' => [ 'DataQueries' => [ 'shape' => 'DataQueries', 'locationName' => 'DataQuery', ], 'StartTime' => [ 'shape' => 'MillisecondDateTime', ], 'EndTime' => [ 'shape' => 'MillisecondDateTime', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetAwsNetworkPerformanceDataResult' => [ 'type' => 'structure', 'members' => [ 'DataResponses' => [ 'shape' => 'DataResponses', 'locationName' => 'dataResponseSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetCapacityReservationUsageRequest' => [ 'type' => 'structure', 'required' => [ 'CapacityReservationId', ], 'members' => [ 'CapacityReservationId' => [ 'shape' => 'CapacityReservationId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'GetCapacityReservationUsageRequestMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetCapacityReservationUsageRequestMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'GetCapacityReservationUsageResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'CapacityReservationId' => [ 'shape' => 'String', 'locationName' => 'capacityReservationId', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'TotalInstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'totalInstanceCount', ], 'AvailableInstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'availableInstanceCount', ], 'State' => [ 'shape' => 'CapacityReservationState', 'locationName' => 'state', ], 'InstanceUsages' => [ 'shape' => 'InstanceUsageSet', 'locationName' => 'instanceUsageSet', ], ], ], 'GetCoipPoolUsageRequest' => [ 'type' => 'structure', 'required' => [ 'PoolId', ], 'members' => [ 'PoolId' => [ 'shape' => 'Ipv4PoolCoipId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'CoipPoolMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetCoipPoolUsageResult' => [ 'type' => 'structure', 'members' => [ 'CoipPoolId' => [ 'shape' => 'String', 'locationName' => 'coipPoolId', ], 'CoipAddressUsages' => [ 'shape' => 'CoipAddressUsageSet', 'locationName' => 'coipAddressUsageSet', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'String', 'locationName' => 'localGatewayRouteTableId', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetConsoleOutputRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Latest' => [ 'shape' => 'Boolean', ], ], ], 'GetConsoleOutputResult' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Output' => [ 'shape' => 'String', 'locationName' => 'output', ], 'Timestamp' => [ 'shape' => 'DateTime', 'locationName' => 'timestamp', ], ], ], 'GetConsoleScreenshotRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceId' => [ 'shape' => 'InstanceId', ], 'WakeUp' => [ 'shape' => 'Boolean', ], ], ], 'GetConsoleScreenshotResult' => [ 'type' => 'structure', 'members' => [ 'ImageData' => [ 'shape' => 'String', 'locationName' => 'imageData', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], ], ], 'GetDefaultCreditSpecificationRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceFamily', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceFamily' => [ 'shape' => 'UnlimitedSupportedInstanceFamily', ], ], ], 'GetDefaultCreditSpecificationResult' => [ 'type' => 'structure', 'members' => [ 'InstanceFamilyCreditSpecification' => [ 'shape' => 'InstanceFamilyCreditSpecification', 'locationName' => 'instanceFamilyCreditSpecification', ], ], ], 'GetEbsDefaultKmsKeyIdRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetEbsDefaultKmsKeyIdResult' => [ 'type' => 'structure', 'members' => [ 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], ], ], 'GetEbsEncryptionByDefaultRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetEbsEncryptionByDefaultResult' => [ 'type' => 'structure', 'members' => [ 'EbsEncryptionByDefault' => [ 'shape' => 'Boolean', 'locationName' => 'ebsEncryptionByDefault', ], 'SseType' => [ 'shape' => 'SSEType', 'locationName' => 'sseType', ], ], ], 'GetFlowLogsIntegrationTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'FlowLogId', 'ConfigDeliveryS3DestinationArn', 'IntegrateServices', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'FlowLogId' => [ 'shape' => 'VpcFlowLogId', ], 'ConfigDeliveryS3DestinationArn' => [ 'shape' => 'String', ], 'IntegrateServices' => [ 'shape' => 'IntegrateServices', 'locationName' => 'IntegrateService', ], ], ], 'GetFlowLogsIntegrationTemplateResult' => [ 'type' => 'structure', 'members' => [ 'Result' => [ 'shape' => 'String', 'locationName' => 'result', ], ], ], 'GetGroupsForCapacityReservationRequest' => [ 'type' => 'structure', 'required' => [ 'CapacityReservationId', ], 'members' => [ 'CapacityReservationId' => [ 'shape' => 'CapacityReservationId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'GetGroupsForCapacityReservationRequestMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetGroupsForCapacityReservationRequestMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'GetGroupsForCapacityReservationResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'CapacityReservationGroups' => [ 'shape' => 'CapacityReservationGroupSet', 'locationName' => 'capacityReservationGroupSet', ], ], ], 'GetHostReservationPurchasePreviewRequest' => [ 'type' => 'structure', 'required' => [ 'HostIdSet', 'OfferingId', ], 'members' => [ 'HostIdSet' => [ 'shape' => 'RequestHostIdSet', ], 'OfferingId' => [ 'shape' => 'OfferingId', ], ], ], 'GetHostReservationPurchasePreviewResult' => [ 'type' => 'structure', 'members' => [ 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Purchase' => [ 'shape' => 'PurchaseSet', 'locationName' => 'purchase', ], 'TotalHourlyPrice' => [ 'shape' => 'String', 'locationName' => 'totalHourlyPrice', ], 'TotalUpfrontPrice' => [ 'shape' => 'String', 'locationName' => 'totalUpfrontPrice', ], ], ], 'GetImageBlockPublicAccessStateRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetImageBlockPublicAccessStateResult' => [ 'type' => 'structure', 'members' => [ 'ImageBlockPublicAccessState' => [ 'shape' => 'String', 'locationName' => 'imageBlockPublicAccessState', ], ], ], 'GetInstanceTypesFromInstanceRequirementsRequest' => [ 'type' => 'structure', 'required' => [ 'ArchitectureTypes', 'VirtualizationTypes', 'InstanceRequirements', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ArchitectureTypes' => [ 'shape' => 'ArchitectureTypeSet', 'locationName' => 'ArchitectureType', ], 'VirtualizationTypes' => [ 'shape' => 'VirtualizationTypeSet', 'locationName' => 'VirtualizationType', ], 'InstanceRequirements' => [ 'shape' => 'InstanceRequirementsRequest', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'GetInstanceTypesFromInstanceRequirementsResult' => [ 'type' => 'structure', 'members' => [ 'InstanceTypes' => [ 'shape' => 'InstanceTypeInfoFromInstanceRequirementsSet', 'locationName' => 'instanceTypeSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetInstanceUefiDataRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetInstanceUefiDataResult' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'UefiData' => [ 'shape' => 'String', 'locationName' => 'uefiData', ], ], ], 'GetIpamAddressHistoryRequest' => [ 'type' => 'structure', 'required' => [ 'Cidr', 'IpamScopeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Cidr' => [ 'shape' => 'String', ], 'IpamScopeId' => [ 'shape' => 'IpamScopeId', ], 'VpcId' => [ 'shape' => 'String', ], 'StartTime' => [ 'shape' => 'MillisecondDateTime', ], 'EndTime' => [ 'shape' => 'MillisecondDateTime', ], 'MaxResults' => [ 'shape' => 'IpamAddressHistoryMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetIpamAddressHistoryResult' => [ 'type' => 'structure', 'members' => [ 'HistoryRecords' => [ 'shape' => 'IpamAddressHistoryRecordSet', 'locationName' => 'historyRecordSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'GetIpamDiscoveredAccountsRequest' => [ 'type' => 'structure', 'required' => [ 'IpamResourceDiscoveryId', 'DiscoveryRegion', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', ], 'DiscoveryRegion' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], ], ], 'GetIpamDiscoveredAccountsResult' => [ 'type' => 'structure', 'members' => [ 'IpamDiscoveredAccounts' => [ 'shape' => 'IpamDiscoveredAccountSet', 'locationName' => 'ipamDiscoveredAccountSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'GetIpamDiscoveredPublicAddressesRequest' => [ 'type' => 'structure', 'required' => [ 'IpamResourceDiscoveryId', 'AddressRegion', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', ], 'AddressRegion' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], ], ], 'GetIpamDiscoveredPublicAddressesResult' => [ 'type' => 'structure', 'members' => [ 'IpamDiscoveredPublicAddresses' => [ 'shape' => 'IpamDiscoveredPublicAddressSet', 'locationName' => 'ipamDiscoveredPublicAddressSet', ], 'OldestSampleTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'oldestSampleTime', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'GetIpamDiscoveredResourceCidrsRequest' => [ 'type' => 'structure', 'required' => [ 'IpamResourceDiscoveryId', 'ResourceRegion', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', ], 'ResourceRegion' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], ], ], 'GetIpamDiscoveredResourceCidrsResult' => [ 'type' => 'structure', 'members' => [ 'IpamDiscoveredResourceCidrs' => [ 'shape' => 'IpamDiscoveredResourceCidrSet', 'locationName' => 'ipamDiscoveredResourceCidrSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'GetIpamPoolAllocationsMaxResults' => [ 'type' => 'integer', 'max' => 100000, 'min' => 1000, ], 'GetIpamPoolAllocationsRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'IpamPoolAllocationId' => [ 'shape' => 'IpamPoolAllocationId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'GetIpamPoolAllocationsMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetIpamPoolAllocationsResult' => [ 'type' => 'structure', 'members' => [ 'IpamPoolAllocations' => [ 'shape' => 'IpamPoolAllocationSet', 'locationName' => 'ipamPoolAllocationSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'GetIpamPoolCidrsRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetIpamPoolCidrsResult' => [ 'type' => 'structure', 'members' => [ 'IpamPoolCidrs' => [ 'shape' => 'IpamPoolCidrSet', 'locationName' => 'ipamPoolCidrSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'GetIpamResourceCidrsRequest' => [ 'type' => 'structure', 'required' => [ 'IpamScopeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'IpamMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'IpamScopeId' => [ 'shape' => 'IpamScopeId', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'ResourceId' => [ 'shape' => 'String', ], 'ResourceType' => [ 'shape' => 'IpamResourceType', ], 'ResourceTag' => [ 'shape' => 'RequestIpamResourceTag', ], 'ResourceOwner' => [ 'shape' => 'String', ], ], ], 'GetIpamResourceCidrsResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], 'IpamResourceCidrs' => [ 'shape' => 'IpamResourceCidrSet', 'locationName' => 'ipamResourceCidrSet', ], ], ], 'GetLaunchTemplateDataRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceId' => [ 'shape' => 'InstanceId', ], ], ], 'GetLaunchTemplateDataResult' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateData' => [ 'shape' => 'ResponseLaunchTemplateData', 'locationName' => 'launchTemplateData', ], ], ], 'GetManagedPrefixListAssociationsMaxResults' => [ 'type' => 'integer', 'max' => 255, 'min' => 5, ], 'GetManagedPrefixListAssociationsRequest' => [ 'type' => 'structure', 'required' => [ 'PrefixListId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'MaxResults' => [ 'shape' => 'GetManagedPrefixListAssociationsMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetManagedPrefixListAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'PrefixListAssociations' => [ 'shape' => 'PrefixListAssociationSet', 'locationName' => 'prefixListAssociationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetManagedPrefixListEntriesRequest' => [ 'type' => 'structure', 'required' => [ 'PrefixListId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'TargetVersion' => [ 'shape' => 'Long', ], 'MaxResults' => [ 'shape' => 'PrefixListMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetManagedPrefixListEntriesResult' => [ 'type' => 'structure', 'members' => [ 'Entries' => [ 'shape' => 'PrefixListEntrySet', 'locationName' => 'entrySet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'GetNetworkInsightsAccessScopeAnalysisFindingsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'GetNetworkInsightsAccessScopeAnalysisFindingsRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInsightsAccessScopeAnalysisId', ], 'members' => [ 'NetworkInsightsAccessScopeAnalysisId' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisId', ], 'MaxResults' => [ 'shape' => 'GetNetworkInsightsAccessScopeAnalysisFindingsMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetNetworkInsightsAccessScopeAnalysisFindingsResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeAnalysisId' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisId', 'locationName' => 'networkInsightsAccessScopeAnalysisId', ], 'AnalysisStatus' => [ 'shape' => 'AnalysisStatus', 'locationName' => 'analysisStatus', ], 'AnalysisFindings' => [ 'shape' => 'AccessScopeAnalysisFindingList', 'locationName' => 'analysisFindingSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetNetworkInsightsAccessScopeContentRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInsightsAccessScopeId', ], 'members' => [ 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetNetworkInsightsAccessScopeContentResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeContent' => [ 'shape' => 'NetworkInsightsAccessScopeContent', 'locationName' => 'networkInsightsAccessScopeContent', ], ], ], 'GetPasswordDataRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'GetPasswordDataResult' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'PasswordData' => [ 'shape' => 'PasswordData', 'locationName' => 'passwordData', ], 'Timestamp' => [ 'shape' => 'DateTime', 'locationName' => 'timestamp', ], ], ], 'GetReservedInstancesExchangeQuoteRequest' => [ 'type' => 'structure', 'required' => [ 'ReservedInstanceIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ReservedInstanceIds' => [ 'shape' => 'ReservedInstanceIdSet', 'locationName' => 'ReservedInstanceId', ], 'TargetConfigurations' => [ 'shape' => 'TargetConfigurationRequestSet', 'locationName' => 'TargetConfiguration', ], ], ], 'GetReservedInstancesExchangeQuoteResult' => [ 'type' => 'structure', 'members' => [ 'CurrencyCode' => [ 'shape' => 'String', 'locationName' => 'currencyCode', ], 'IsValidExchange' => [ 'shape' => 'Boolean', 'locationName' => 'isValidExchange', ], 'OutputReservedInstancesWillExpireAt' => [ 'shape' => 'DateTime', 'locationName' => 'outputReservedInstancesWillExpireAt', ], 'PaymentDue' => [ 'shape' => 'String', 'locationName' => 'paymentDue', ], 'ReservedInstanceValueRollup' => [ 'shape' => 'ReservationValue', 'locationName' => 'reservedInstanceValueRollup', ], 'ReservedInstanceValueSet' => [ 'shape' => 'ReservedInstanceReservationValueSet', 'locationName' => 'reservedInstanceValueSet', ], 'TargetConfigurationValueRollup' => [ 'shape' => 'ReservationValue', 'locationName' => 'targetConfigurationValueRollup', ], 'TargetConfigurationValueSet' => [ 'shape' => 'TargetReservationValueSet', 'locationName' => 'targetConfigurationValueSet', ], 'ValidationFailureReason' => [ 'shape' => 'String', 'locationName' => 'validationFailureReason', ], ], ], 'GetSecurityGroupsForVpcRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'VpcId' => [ 'shape' => 'VpcId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'GetSecurityGroupsForVpcRequestMaxResults', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetSecurityGroupsForVpcRequestMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'GetSecurityGroupsForVpcResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'SecurityGroupForVpcs' => [ 'shape' => 'SecurityGroupForVpcList', 'locationName' => 'securityGroupForVpcSet', ], ], ], 'GetSerialConsoleAccessStatusRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetSerialConsoleAccessStatusResult' => [ 'type' => 'structure', 'members' => [ 'SerialConsoleAccessEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'serialConsoleAccessEnabled', ], ], ], 'GetSnapshotBlockPublicAccessStateRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetSnapshotBlockPublicAccessStateResult' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'SnapshotBlockPublicAccessState', 'locationName' => 'state', ], ], ], 'GetSpotPlacementScoresRequest' => [ 'type' => 'structure', 'required' => [ 'TargetCapacity', ], 'members' => [ 'InstanceTypes' => [ 'shape' => 'InstanceTypes', 'locationName' => 'InstanceType', ], 'TargetCapacity' => [ 'shape' => 'SpotPlacementScoresTargetCapacity', ], 'TargetCapacityUnitType' => [ 'shape' => 'TargetCapacityUnitType', ], 'SingleAvailabilityZone' => [ 'shape' => 'Boolean', ], 'RegionNames' => [ 'shape' => 'RegionNames', 'locationName' => 'RegionName', ], 'InstanceRequirementsWithMetadata' => [ 'shape' => 'InstanceRequirementsWithMetadataRequest', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'MaxResults' => [ 'shape' => 'SpotPlacementScoresMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'GetSpotPlacementScoresResult' => [ 'type' => 'structure', 'members' => [ 'SpotPlacementScores' => [ 'shape' => 'SpotPlacementScores', 'locationName' => 'spotPlacementScoreSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetSubnetCidrReservationsMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'GetSubnetCidrReservationsRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', ], 'members' => [ 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'GetSubnetCidrReservationsMaxResults', ], ], ], 'GetSubnetCidrReservationsResult' => [ 'type' => 'structure', 'members' => [ 'SubnetIpv4CidrReservations' => [ 'shape' => 'SubnetCidrReservationList', 'locationName' => 'subnetIpv4CidrReservationSet', ], 'SubnetIpv6CidrReservations' => [ 'shape' => 'SubnetCidrReservationList', 'locationName' => 'subnetIpv6CidrReservationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetTransitGatewayAttachmentPropagationsRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetTransitGatewayAttachmentPropagationsResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentPropagations' => [ 'shape' => 'TransitGatewayAttachmentPropagationList', 'locationName' => 'transitGatewayAttachmentPropagations', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetTransitGatewayMulticastDomainAssociationsRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayMulticastDomainId', ], 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetTransitGatewayMulticastDomainAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'MulticastDomainAssociations' => [ 'shape' => 'TransitGatewayMulticastDomainAssociationList', 'locationName' => 'multicastDomainAssociations', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetTransitGatewayPolicyTableAssociationsRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayPolicyTableId', ], 'members' => [ 'TransitGatewayPolicyTableId' => [ 'shape' => 'TransitGatewayPolicyTableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetTransitGatewayPolicyTableAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'Associations' => [ 'shape' => 'TransitGatewayPolicyTableAssociationList', 'locationName' => 'associations', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetTransitGatewayPolicyTableEntriesRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayPolicyTableId', ], 'members' => [ 'TransitGatewayPolicyTableId' => [ 'shape' => 'TransitGatewayPolicyTableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetTransitGatewayPolicyTableEntriesResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPolicyTableEntries' => [ 'shape' => 'TransitGatewayPolicyTableEntryList', 'locationName' => 'transitGatewayPolicyTableEntries', ], ], ], 'GetTransitGatewayPrefixListReferencesRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetTransitGatewayPrefixListReferencesResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPrefixListReferences' => [ 'shape' => 'TransitGatewayPrefixListReferenceSet', 'locationName' => 'transitGatewayPrefixListReferenceSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetTransitGatewayRouteTableAssociationsRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetTransitGatewayRouteTableAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'Associations' => [ 'shape' => 'TransitGatewayRouteTableAssociationList', 'locationName' => 'associations', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetTransitGatewayRouteTablePropagationsRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetTransitGatewayRouteTablePropagationsResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTablePropagations' => [ 'shape' => 'TransitGatewayRouteTablePropagationList', 'locationName' => 'transitGatewayRouteTablePropagations', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'GetVerifiedAccessEndpointPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessEndpointId', ], 'members' => [ 'VerifiedAccessEndpointId' => [ 'shape' => 'VerifiedAccessEndpointId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetVerifiedAccessEndpointPolicyResult' => [ 'type' => 'structure', 'members' => [ 'PolicyEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'policyEnabled', ], 'PolicyDocument' => [ 'shape' => 'String', 'locationName' => 'policyDocument', ], ], ], 'GetVerifiedAccessGroupPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessGroupId', ], 'members' => [ 'VerifiedAccessGroupId' => [ 'shape' => 'VerifiedAccessGroupId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetVerifiedAccessGroupPolicyResult' => [ 'type' => 'structure', 'members' => [ 'PolicyEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'policyEnabled', ], 'PolicyDocument' => [ 'shape' => 'String', 'locationName' => 'policyDocument', ], ], ], 'GetVpnConnectionDeviceSampleConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', 'VpnConnectionDeviceTypeId', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], 'VpnConnectionDeviceTypeId' => [ 'shape' => 'VpnConnectionDeviceTypeId', ], 'InternetKeyExchangeVersion' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetVpnConnectionDeviceSampleConfigurationResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnectionDeviceSampleConfiguration' => [ 'shape' => 'VpnConnectionDeviceSampleConfiguration', 'locationName' => 'vpnConnectionDeviceSampleConfiguration', ], ], ], 'GetVpnConnectionDeviceTypesRequest' => [ 'type' => 'structure', 'members' => [ 'MaxResults' => [ 'shape' => 'GVCDMaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetVpnConnectionDeviceTypesResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnectionDeviceTypes' => [ 'shape' => 'VpnConnectionDeviceTypeList', 'locationName' => 'vpnConnectionDeviceTypeSet', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'GetVpnTunnelReplacementStatusRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', 'VpnTunnelOutsideIpAddress', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], 'VpnTunnelOutsideIpAddress' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'GetVpnTunnelReplacementStatusResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', 'locationName' => 'vpnConnectionId', ], 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', 'locationName' => 'transitGatewayId', ], 'CustomerGatewayId' => [ 'shape' => 'CustomerGatewayId', 'locationName' => 'customerGatewayId', ], 'VpnGatewayId' => [ 'shape' => 'VpnGatewayId', 'locationName' => 'vpnGatewayId', ], 'VpnTunnelOutsideIpAddress' => [ 'shape' => 'String', 'locationName' => 'vpnTunnelOutsideIpAddress', ], 'MaintenanceDetails' => [ 'shape' => 'MaintenanceDetails', 'locationName' => 'maintenanceDetails', ], ], ], 'GpuDeviceCount' => [ 'type' => 'integer', ], 'GpuDeviceInfo' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'GpuDeviceName', 'locationName' => 'name', ], 'Manufacturer' => [ 'shape' => 'GpuDeviceManufacturerName', 'locationName' => 'manufacturer', ], 'Count' => [ 'shape' => 'GpuDeviceCount', 'locationName' => 'count', ], 'MemoryInfo' => [ 'shape' => 'GpuDeviceMemoryInfo', 'locationName' => 'memoryInfo', ], ], ], 'GpuDeviceInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GpuDeviceInfo', 'locationName' => 'item', ], ], 'GpuDeviceManufacturerName' => [ 'type' => 'string', ], 'GpuDeviceMemoryInfo' => [ 'type' => 'structure', 'members' => [ 'SizeInMiB' => [ 'shape' => 'GpuDeviceMemorySize', 'locationName' => 'sizeInMiB', ], ], ], 'GpuDeviceMemorySize' => [ 'type' => 'integer', ], 'GpuDeviceName' => [ 'type' => 'string', ], 'GpuInfo' => [ 'type' => 'structure', 'members' => [ 'Gpus' => [ 'shape' => 'GpuDeviceInfoList', 'locationName' => 'gpus', ], 'TotalGpuMemoryInMiB' => [ 'shape' => 'totalGpuMemory', 'locationName' => 'totalGpuMemoryInMiB', ], ], ], 'GroupIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'groupId', ], ], 'GroupIdentifier' => [ 'type' => 'structure', 'members' => [ 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], ], ], 'GroupIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GroupIdentifier', 'locationName' => 'item', ], ], 'GroupIdentifierSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupIdentifier', 'locationName' => 'item', ], ], 'GroupIds' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'item', ], ], 'GroupNameStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupName', 'locationName' => 'GroupName', ], ], 'HibernationFlag' => [ 'type' => 'boolean', ], 'HibernationOptions' => [ 'type' => 'structure', 'members' => [ 'Configured' => [ 'shape' => 'Boolean', 'locationName' => 'configured', ], ], ], 'HibernationOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'Configured' => [ 'shape' => 'Boolean', ], ], ], 'HistoryRecord' => [ 'type' => 'structure', 'members' => [ 'EventInformation' => [ 'shape' => 'EventInformation', 'locationName' => 'eventInformation', ], 'EventType' => [ 'shape' => 'EventType', 'locationName' => 'eventType', ], 'Timestamp' => [ 'shape' => 'DateTime', 'locationName' => 'timestamp', ], ], ], 'HistoryRecordEntry' => [ 'type' => 'structure', 'members' => [ 'EventInformation' => [ 'shape' => 'EventInformation', 'locationName' => 'eventInformation', ], 'EventType' => [ 'shape' => 'FleetEventType', 'locationName' => 'eventType', ], 'Timestamp' => [ 'shape' => 'DateTime', 'locationName' => 'timestamp', ], ], ], 'HistoryRecordSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'HistoryRecordEntry', 'locationName' => 'item', ], ], 'HistoryRecords' => [ 'type' => 'list', 'member' => [ 'shape' => 'HistoryRecord', 'locationName' => 'item', ], ], 'Host' => [ 'type' => 'structure', 'members' => [ 'AutoPlacement' => [ 'shape' => 'AutoPlacement', 'locationName' => 'autoPlacement', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'AvailableCapacity' => [ 'shape' => 'AvailableCapacity', 'locationName' => 'availableCapacity', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'HostId' => [ 'shape' => 'String', 'locationName' => 'hostId', ], 'HostProperties' => [ 'shape' => 'HostProperties', 'locationName' => 'hostProperties', ], 'HostReservationId' => [ 'shape' => 'String', 'locationName' => 'hostReservationId', ], 'Instances' => [ 'shape' => 'HostInstanceList', 'locationName' => 'instances', ], 'State' => [ 'shape' => 'AllocationState', 'locationName' => 'state', ], 'AllocationTime' => [ 'shape' => 'DateTime', 'locationName' => 'allocationTime', ], 'ReleaseTime' => [ 'shape' => 'DateTime', 'locationName' => 'releaseTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'HostRecovery' => [ 'shape' => 'HostRecovery', 'locationName' => 'hostRecovery', ], 'AllowsMultipleInstanceTypes' => [ 'shape' => 'AllowsMultipleInstanceTypes', 'locationName' => 'allowsMultipleInstanceTypes', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'AvailabilityZoneId' => [ 'shape' => 'String', 'locationName' => 'availabilityZoneId', ], 'MemberOfServiceLinkedResourceGroup' => [ 'shape' => 'Boolean', 'locationName' => 'memberOfServiceLinkedResourceGroup', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'HostMaintenance' => [ 'shape' => 'HostMaintenance', 'locationName' => 'hostMaintenance', ], 'AssetId' => [ 'shape' => 'AssetId', 'locationName' => 'assetId', ], ], ], 'HostInstance' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], ], ], 'HostInstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'HostInstance', 'locationName' => 'item', ], ], 'HostList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Host', 'locationName' => 'item', ], ], 'HostMaintenance' => [ 'type' => 'string', 'enum' => [ 'on', 'off', ], ], 'HostOffering' => [ 'type' => 'structure', 'members' => [ 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Duration' => [ 'shape' => 'Integer', 'locationName' => 'duration', ], 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], 'InstanceFamily' => [ 'shape' => 'String', 'locationName' => 'instanceFamily', ], 'OfferingId' => [ 'shape' => 'OfferingId', 'locationName' => 'offeringId', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', 'locationName' => 'paymentOption', ], 'UpfrontPrice' => [ 'shape' => 'String', 'locationName' => 'upfrontPrice', ], ], ], 'HostOfferingSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'HostOffering', 'locationName' => 'item', ], ], 'HostProperties' => [ 'type' => 'structure', 'members' => [ 'Cores' => [ 'shape' => 'Integer', 'locationName' => 'cores', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'InstanceFamily' => [ 'shape' => 'String', 'locationName' => 'instanceFamily', ], 'Sockets' => [ 'shape' => 'Integer', 'locationName' => 'sockets', ], 'TotalVCpus' => [ 'shape' => 'Integer', 'locationName' => 'totalVCpus', ], ], ], 'HostRecovery' => [ 'type' => 'string', 'enum' => [ 'on', 'off', ], ], 'HostReservation' => [ 'type' => 'structure', 'members' => [ 'Count' => [ 'shape' => 'Integer', 'locationName' => 'count', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Duration' => [ 'shape' => 'Integer', 'locationName' => 'duration', ], 'End' => [ 'shape' => 'DateTime', 'locationName' => 'end', ], 'HostIdSet' => [ 'shape' => 'ResponseHostIdSet', 'locationName' => 'hostIdSet', ], 'HostReservationId' => [ 'shape' => 'HostReservationId', 'locationName' => 'hostReservationId', ], 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], 'InstanceFamily' => [ 'shape' => 'String', 'locationName' => 'instanceFamily', ], 'OfferingId' => [ 'shape' => 'OfferingId', 'locationName' => 'offeringId', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', 'locationName' => 'paymentOption', ], 'Start' => [ 'shape' => 'DateTime', 'locationName' => 'start', ], 'State' => [ 'shape' => 'ReservationState', 'locationName' => 'state', ], 'UpfrontPrice' => [ 'shape' => 'String', 'locationName' => 'upfrontPrice', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'HostReservationId' => [ 'type' => 'string', ], 'HostReservationIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'HostReservationId', 'locationName' => 'item', ], ], 'HostReservationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'HostReservation', 'locationName' => 'item', ], ], 'HostTenancy' => [ 'type' => 'string', 'enum' => [ 'dedicated', 'host', ], ], 'HostnameType' => [ 'type' => 'string', 'enum' => [ 'ip-name', 'resource-name', ], ], 'Hour' => [ 'type' => 'integer', 'max' => 23, 'min' => 0, ], 'HttpTokensState' => [ 'type' => 'string', 'enum' => [ 'optional', 'required', ], ], 'HypervisorType' => [ 'type' => 'string', 'enum' => [ 'ovm', 'xen', ], ], 'IKEVersionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IKEVersionsListValue', 'locationName' => 'item', ], ], 'IKEVersionsListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'IKEVersionsRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IKEVersionsRequestListValue', 'locationName' => 'item', ], ], 'IKEVersionsRequestListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', ], ], ], 'IamInstanceProfile' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', 'locationName' => 'arn', ], 'Id' => [ 'shape' => 'String', 'locationName' => 'id', ], ], ], 'IamInstanceProfileAssociation' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfile', 'locationName' => 'iamInstanceProfile', ], 'State' => [ 'shape' => 'IamInstanceProfileAssociationState', 'locationName' => 'state', ], 'Timestamp' => [ 'shape' => 'DateTime', 'locationName' => 'timestamp', ], ], ], 'IamInstanceProfileAssociationId' => [ 'type' => 'string', ], 'IamInstanceProfileAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IamInstanceProfileAssociation', 'locationName' => 'item', ], ], 'IamInstanceProfileAssociationState' => [ 'type' => 'string', 'enum' => [ 'associating', 'associated', 'disassociating', 'disassociated', ], ], 'IamInstanceProfileSpecification' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', 'locationName' => 'arn', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], ], ], 'IcmpTypeCode' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'Integer', 'locationName' => 'code', ], 'Type' => [ 'shape' => 'Integer', 'locationName' => 'type', ], ], ], 'IdFormat' => [ 'type' => 'structure', 'members' => [ 'Deadline' => [ 'shape' => 'DateTime', 'locationName' => 'deadline', ], 'Resource' => [ 'shape' => 'String', 'locationName' => 'resource', ], 'UseLongIds' => [ 'shape' => 'Boolean', 'locationName' => 'useLongIds', ], ], ], 'IdFormatList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IdFormat', 'locationName' => 'item', ], ], 'Igmpv2SupportValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'Image' => [ 'type' => 'structure', 'members' => [ 'Architecture' => [ 'shape' => 'ArchitectureValues', 'locationName' => 'architecture', ], 'CreationDate' => [ 'shape' => 'String', 'locationName' => 'creationDate', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'ImageLocation' => [ 'shape' => 'String', 'locationName' => 'imageLocation', ], 'ImageType' => [ 'shape' => 'ImageTypeValues', 'locationName' => 'imageType', ], 'Public' => [ 'shape' => 'Boolean', 'locationName' => 'isPublic', ], 'KernelId' => [ 'shape' => 'String', 'locationName' => 'kernelId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'imageOwnerId', ], 'Platform' => [ 'shape' => 'PlatformValues', 'locationName' => 'platform', ], 'PlatformDetails' => [ 'shape' => 'String', 'locationName' => 'platformDetails', ], 'UsageOperation' => [ 'shape' => 'String', 'locationName' => 'usageOperation', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'RamdiskId' => [ 'shape' => 'String', 'locationName' => 'ramdiskId', ], 'State' => [ 'shape' => 'ImageState', 'locationName' => 'imageState', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'EnaSupport' => [ 'shape' => 'Boolean', 'locationName' => 'enaSupport', ], 'Hypervisor' => [ 'shape' => 'HypervisorType', 'locationName' => 'hypervisor', ], 'ImageOwnerAlias' => [ 'shape' => 'String', 'locationName' => 'imageOwnerAlias', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], 'RootDeviceName' => [ 'shape' => 'String', 'locationName' => 'rootDeviceName', ], 'RootDeviceType' => [ 'shape' => 'DeviceType', 'locationName' => 'rootDeviceType', ], 'SriovNetSupport' => [ 'shape' => 'String', 'locationName' => 'sriovNetSupport', ], 'StateReason' => [ 'shape' => 'StateReason', 'locationName' => 'stateReason', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VirtualizationType' => [ 'shape' => 'VirtualizationType', 'locationName' => 'virtualizationType', ], 'BootMode' => [ 'shape' => 'BootModeValues', 'locationName' => 'bootMode', ], 'TpmSupport' => [ 'shape' => 'TpmSupportValues', 'locationName' => 'tpmSupport', ], 'DeprecationTime' => [ 'shape' => 'String', 'locationName' => 'deprecationTime', ], 'ImdsSupport' => [ 'shape' => 'ImdsSupportValues', 'locationName' => 'imdsSupport', ], 'SourceInstanceId' => [ 'shape' => 'String', 'locationName' => 'sourceInstanceId', ], ], ], 'ImageAttribute' => [ 'type' => 'structure', 'members' => [ 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'LaunchPermissions' => [ 'shape' => 'LaunchPermissionList', 'locationName' => 'launchPermission', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'Description' => [ 'shape' => 'AttributeValue', 'locationName' => 'description', ], 'KernelId' => [ 'shape' => 'AttributeValue', 'locationName' => 'kernel', ], 'RamdiskId' => [ 'shape' => 'AttributeValue', 'locationName' => 'ramdisk', ], 'SriovNetSupport' => [ 'shape' => 'AttributeValue', 'locationName' => 'sriovNetSupport', ], 'BootMode' => [ 'shape' => 'AttributeValue', 'locationName' => 'bootMode', ], 'TpmSupport' => [ 'shape' => 'AttributeValue', 'locationName' => 'tpmSupport', ], 'UefiData' => [ 'shape' => 'AttributeValue', 'locationName' => 'uefiData', ], 'LastLaunchedTime' => [ 'shape' => 'AttributeValue', 'locationName' => 'lastLaunchedTime', ], 'ImdsSupport' => [ 'shape' => 'AttributeValue', 'locationName' => 'imdsSupport', ], ], ], 'ImageAttributeName' => [ 'type' => 'string', 'enum' => [ 'description', 'kernel', 'ramdisk', 'launchPermission', 'productCodes', 'blockDeviceMapping', 'sriovNetSupport', 'bootMode', 'tpmSupport', 'uefiData', 'lastLaunchedTime', 'imdsSupport', ], ], 'ImageBlockPublicAccessDisabledState' => [ 'type' => 'string', 'enum' => [ 'unblocked', ], ], 'ImageBlockPublicAccessEnabledState' => [ 'type' => 'string', 'enum' => [ 'block-new-sharing', ], ], 'ImageDiskContainer' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', ], 'DeviceName' => [ 'shape' => 'String', ], 'Format' => [ 'shape' => 'String', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'Url' => [ 'shape' => 'SensitiveUrl', ], 'UserBucket' => [ 'shape' => 'UserBucket', ], ], ], 'ImageDiskContainerList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImageDiskContainer', 'locationName' => 'item', ], ], 'ImageId' => [ 'type' => 'string', ], 'ImageIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImageId', 'locationName' => 'item', ], ], 'ImageIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImageId', 'locationName' => 'ImageId', ], ], 'ImageList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Image', 'locationName' => 'item', ], ], 'ImageRecycleBinInfo' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'RecycleBinEnterTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'recycleBinEnterTime', ], 'RecycleBinExitTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'recycleBinExitTime', ], ], ], 'ImageRecycleBinInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImageRecycleBinInfo', 'locationName' => 'item', ], ], 'ImageState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'invalid', 'deregistered', 'transient', 'failed', 'error', 'disabled', ], ], 'ImageTypeValues' => [ 'type' => 'string', 'enum' => [ 'machine', 'kernel', 'ramdisk', ], ], 'ImdsSupportValues' => [ 'type' => 'string', 'enum' => [ 'v2.0', ], ], 'ImportClientVpnClientCertificateRevocationListRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', 'CertificateRevocationList', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'CertificateRevocationList' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ImportClientVpnClientCertificateRevocationListResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ImportImageLicenseConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'LicenseConfigurationArn' => [ 'shape' => 'String', ], ], ], 'ImportImageLicenseConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'LicenseConfigurationArn' => [ 'shape' => 'String', 'locationName' => 'licenseConfigurationArn', ], ], ], 'ImportImageLicenseSpecificationListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImportImageLicenseConfigurationRequest', 'locationName' => 'item', ], ], 'ImportImageLicenseSpecificationListResponse' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImportImageLicenseConfigurationResponse', 'locationName' => 'item', ], ], 'ImportImageRequest' => [ 'type' => 'structure', 'members' => [ 'Architecture' => [ 'shape' => 'String', ], 'ClientData' => [ 'shape' => 'ClientData', ], 'ClientToken' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'DiskContainers' => [ 'shape' => 'ImageDiskContainerList', 'locationName' => 'DiskContainer', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Encrypted' => [ 'shape' => 'Boolean', ], 'Hypervisor' => [ 'shape' => 'String', ], 'KmsKeyId' => [ 'shape' => 'KmsKeyId', ], 'LicenseType' => [ 'shape' => 'String', ], 'Platform' => [ 'shape' => 'String', ], 'RoleName' => [ 'shape' => 'String', ], 'LicenseSpecifications' => [ 'shape' => 'ImportImageLicenseSpecificationListRequest', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'UsageOperation' => [ 'shape' => 'String', ], 'BootMode' => [ 'shape' => 'BootModeValues', ], ], ], 'ImportImageResult' => [ 'type' => 'structure', 'members' => [ 'Architecture' => [ 'shape' => 'String', 'locationName' => 'architecture', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'Hypervisor' => [ 'shape' => 'String', 'locationName' => 'hypervisor', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'ImportTaskId' => [ 'shape' => 'ImportImageTaskId', 'locationName' => 'importTaskId', ], 'KmsKeyId' => [ 'shape' => 'KmsKeyId', 'locationName' => 'kmsKeyId', ], 'LicenseType' => [ 'shape' => 'String', 'locationName' => 'licenseType', ], 'Platform' => [ 'shape' => 'String', 'locationName' => 'platform', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'SnapshotDetails' => [ 'shape' => 'SnapshotDetailList', 'locationName' => 'snapshotDetailSet', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'LicenseSpecifications' => [ 'shape' => 'ImportImageLicenseSpecificationListResponse', 'locationName' => 'licenseSpecifications', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'UsageOperation' => [ 'shape' => 'String', 'locationName' => 'usageOperation', ], ], ], 'ImportImageTask' => [ 'type' => 'structure', 'members' => [ 'Architecture' => [ 'shape' => 'String', 'locationName' => 'architecture', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'Hypervisor' => [ 'shape' => 'String', 'locationName' => 'hypervisor', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'ImportTaskId' => [ 'shape' => 'String', 'locationName' => 'importTaskId', ], 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], 'LicenseType' => [ 'shape' => 'String', 'locationName' => 'licenseType', ], 'Platform' => [ 'shape' => 'String', 'locationName' => 'platform', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'SnapshotDetails' => [ 'shape' => 'SnapshotDetailList', 'locationName' => 'snapshotDetailSet', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'LicenseSpecifications' => [ 'shape' => 'ImportImageLicenseSpecificationListResponse', 'locationName' => 'licenseSpecifications', ], 'UsageOperation' => [ 'shape' => 'String', 'locationName' => 'usageOperation', ], 'BootMode' => [ 'shape' => 'BootModeValues', 'locationName' => 'bootMode', ], ], ], 'ImportImageTaskId' => [ 'type' => 'string', ], 'ImportImageTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImportImageTask', 'locationName' => 'item', ], ], 'ImportInstanceLaunchSpecification' => [ 'type' => 'structure', 'members' => [ 'AdditionalInfo' => [ 'shape' => 'String', 'locationName' => 'additionalInfo', ], 'Architecture' => [ 'shape' => 'ArchitectureValues', 'locationName' => 'architecture', ], 'GroupIds' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'GroupId', ], 'GroupNames' => [ 'shape' => 'SecurityGroupStringList', 'locationName' => 'GroupName', ], 'InstanceInitiatedShutdownBehavior' => [ 'shape' => 'ShutdownBehavior', 'locationName' => 'instanceInitiatedShutdownBehavior', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'Monitoring' => [ 'shape' => 'Boolean', 'locationName' => 'monitoring', ], 'Placement' => [ 'shape' => 'Placement', 'locationName' => 'placement', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'UserData' => [ 'shape' => 'UserData', 'locationName' => 'userData', ], ], ], 'ImportInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'Platform', ], 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DiskImages' => [ 'shape' => 'DiskImageList', 'locationName' => 'diskImage', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'LaunchSpecification' => [ 'shape' => 'ImportInstanceLaunchSpecification', 'locationName' => 'launchSpecification', ], 'Platform' => [ 'shape' => 'PlatformValues', 'locationName' => 'platform', ], ], ], 'ImportInstanceResult' => [ 'type' => 'structure', 'members' => [ 'ConversionTask' => [ 'shape' => 'ConversionTask', 'locationName' => 'conversionTask', ], ], ], 'ImportInstanceTaskDetails' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Platform' => [ 'shape' => 'PlatformValues', 'locationName' => 'platform', ], 'Volumes' => [ 'shape' => 'ImportInstanceVolumeDetailSet', 'locationName' => 'volumes', ], ], ], 'ImportInstanceVolumeDetailItem' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'BytesConverted' => [ 'shape' => 'Long', 'locationName' => 'bytesConverted', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Image' => [ 'shape' => 'DiskImageDescription', 'locationName' => 'image', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Volume' => [ 'shape' => 'DiskImageVolumeDescription', 'locationName' => 'volume', ], ], ], 'ImportInstanceVolumeDetailSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImportInstanceVolumeDetailItem', 'locationName' => 'item', ], ], 'ImportKeyPairRequest' => [ 'type' => 'structure', 'required' => [ 'KeyName', 'PublicKeyMaterial', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'PublicKeyMaterial' => [ 'shape' => 'Blob', 'locationName' => 'publicKeyMaterial', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'ImportKeyPairResult' => [ 'type' => 'structure', 'members' => [ 'KeyFingerprint' => [ 'shape' => 'String', 'locationName' => 'keyFingerprint', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'KeyPairId' => [ 'shape' => 'String', 'locationName' => 'keyPairId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ImportManifestUrl' => [ 'type' => 'string', 'sensitive' => true, ], 'ImportSnapshotRequest' => [ 'type' => 'structure', 'members' => [ 'ClientData' => [ 'shape' => 'ClientData', ], 'ClientToken' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'DiskContainer' => [ 'shape' => 'SnapshotDiskContainer', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'Encrypted' => [ 'shape' => 'Boolean', ], 'KmsKeyId' => [ 'shape' => 'KmsKeyId', ], 'RoleName' => [ 'shape' => 'String', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'ImportSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'ImportTaskId' => [ 'shape' => 'String', 'locationName' => 'importTaskId', ], 'SnapshotTaskDetail' => [ 'shape' => 'SnapshotTaskDetail', 'locationName' => 'snapshotTaskDetail', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ImportSnapshotTask' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'ImportTaskId' => [ 'shape' => 'String', 'locationName' => 'importTaskId', ], 'SnapshotTaskDetail' => [ 'shape' => 'SnapshotTaskDetail', 'locationName' => 'snapshotTaskDetail', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ImportSnapshotTaskId' => [ 'type' => 'string', ], 'ImportSnapshotTaskIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImportSnapshotTaskId', 'locationName' => 'ImportTaskId', ], ], 'ImportSnapshotTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImportSnapshotTask', 'locationName' => 'item', ], ], 'ImportTaskId' => [ 'type' => 'string', ], 'ImportTaskIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImportImageTaskId', 'locationName' => 'ImportTaskId', ], ], 'ImportVolumeRequest' => [ 'type' => 'structure', 'required' => [ 'AvailabilityZone', 'Image', 'Volume', ], 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Image' => [ 'shape' => 'DiskImageDetail', 'locationName' => 'image', ], 'Volume' => [ 'shape' => 'VolumeDetail', 'locationName' => 'volume', ], ], ], 'ImportVolumeResult' => [ 'type' => 'structure', 'members' => [ 'ConversionTask' => [ 'shape' => 'ConversionTask', 'locationName' => 'conversionTask', ], ], ], 'ImportVolumeTaskDetails' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'BytesConverted' => [ 'shape' => 'Long', 'locationName' => 'bytesConverted', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Image' => [ 'shape' => 'DiskImageDescription', 'locationName' => 'image', ], 'Volume' => [ 'shape' => 'DiskImageVolumeDescription', 'locationName' => 'volume', ], ], ], 'InferenceAcceleratorInfo' => [ 'type' => 'structure', 'members' => [ 'Accelerators' => [ 'shape' => 'InferenceDeviceInfoList', 'locationName' => 'accelerators', ], 'TotalInferenceMemoryInMiB' => [ 'shape' => 'totalInferenceMemory', 'locationName' => 'totalInferenceMemoryInMiB', ], ], ], 'InferenceDeviceCount' => [ 'type' => 'integer', ], 'InferenceDeviceInfo' => [ 'type' => 'structure', 'members' => [ 'Count' => [ 'shape' => 'InferenceDeviceCount', 'locationName' => 'count', ], 'Name' => [ 'shape' => 'InferenceDeviceName', 'locationName' => 'name', ], 'Manufacturer' => [ 'shape' => 'InferenceDeviceManufacturerName', 'locationName' => 'manufacturer', ], 'MemoryInfo' => [ 'shape' => 'InferenceDeviceMemoryInfo', 'locationName' => 'memoryInfo', ], ], ], 'InferenceDeviceInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InferenceDeviceInfo', ], 'locationName' => 'item', ], 'InferenceDeviceManufacturerName' => [ 'type' => 'string', ], 'InferenceDeviceMemoryInfo' => [ 'type' => 'structure', 'members' => [ 'SizeInMiB' => [ 'shape' => 'InferenceDeviceMemorySize', 'locationName' => 'sizeInMiB', ], ], ], 'InferenceDeviceMemorySize' => [ 'type' => 'integer', ], 'InferenceDeviceName' => [ 'type' => 'string', ], 'InsideCidrBlocksStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'Instance' => [ 'type' => 'structure', 'members' => [ 'AmiLaunchIndex' => [ 'shape' => 'Integer', 'locationName' => 'amiLaunchIndex', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'KernelId' => [ 'shape' => 'String', 'locationName' => 'kernelId', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'LaunchTime' => [ 'shape' => 'DateTime', 'locationName' => 'launchTime', ], 'Monitoring' => [ 'shape' => 'Monitoring', 'locationName' => 'monitoring', ], 'Placement' => [ 'shape' => 'Placement', 'locationName' => 'placement', ], 'Platform' => [ 'shape' => 'PlatformValues', 'locationName' => 'platform', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'PublicDnsName' => [ 'shape' => 'String', 'locationName' => 'dnsName', ], 'PublicIpAddress' => [ 'shape' => 'String', 'locationName' => 'ipAddress', ], 'RamdiskId' => [ 'shape' => 'String', 'locationName' => 'ramdiskId', ], 'State' => [ 'shape' => 'InstanceState', 'locationName' => 'instanceState', ], 'StateTransitionReason' => [ 'shape' => 'String', 'locationName' => 'reason', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'Architecture' => [ 'shape' => 'ArchitectureValues', 'locationName' => 'architecture', ], 'BlockDeviceMappings' => [ 'shape' => 'InstanceBlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'EnaSupport' => [ 'shape' => 'Boolean', 'locationName' => 'enaSupport', ], 'Hypervisor' => [ 'shape' => 'HypervisorType', 'locationName' => 'hypervisor', ], 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfile', 'locationName' => 'iamInstanceProfile', ], 'InstanceLifecycle' => [ 'shape' => 'InstanceLifecycleType', 'locationName' => 'instanceLifecycle', ], 'ElasticGpuAssociations' => [ 'shape' => 'ElasticGpuAssociationList', 'locationName' => 'elasticGpuAssociationSet', ], 'ElasticInferenceAcceleratorAssociations' => [ 'shape' => 'ElasticInferenceAcceleratorAssociationList', 'locationName' => 'elasticInferenceAcceleratorAssociationSet', ], 'NetworkInterfaces' => [ 'shape' => 'InstanceNetworkInterfaceList', 'locationName' => 'networkInterfaceSet', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'RootDeviceName' => [ 'shape' => 'String', 'locationName' => 'rootDeviceName', ], 'RootDeviceType' => [ 'shape' => 'DeviceType', 'locationName' => 'rootDeviceType', ], 'SecurityGroups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'SourceDestCheck' => [ 'shape' => 'Boolean', 'locationName' => 'sourceDestCheck', ], 'SpotInstanceRequestId' => [ 'shape' => 'String', 'locationName' => 'spotInstanceRequestId', ], 'SriovNetSupport' => [ 'shape' => 'String', 'locationName' => 'sriovNetSupport', ], 'StateReason' => [ 'shape' => 'StateReason', 'locationName' => 'stateReason', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VirtualizationType' => [ 'shape' => 'VirtualizationType', 'locationName' => 'virtualizationType', ], 'CpuOptions' => [ 'shape' => 'CpuOptions', 'locationName' => 'cpuOptions', ], 'CapacityReservationId' => [ 'shape' => 'String', 'locationName' => 'capacityReservationId', ], 'CapacityReservationSpecification' => [ 'shape' => 'CapacityReservationSpecificationResponse', 'locationName' => 'capacityReservationSpecification', ], 'HibernationOptions' => [ 'shape' => 'HibernationOptions', 'locationName' => 'hibernationOptions', ], 'Licenses' => [ 'shape' => 'LicenseList', 'locationName' => 'licenseSet', ], 'MetadataOptions' => [ 'shape' => 'InstanceMetadataOptionsResponse', 'locationName' => 'metadataOptions', ], 'EnclaveOptions' => [ 'shape' => 'EnclaveOptions', 'locationName' => 'enclaveOptions', ], 'BootMode' => [ 'shape' => 'BootModeValues', 'locationName' => 'bootMode', ], 'PlatformDetails' => [ 'shape' => 'String', 'locationName' => 'platformDetails', ], 'UsageOperation' => [ 'shape' => 'String', 'locationName' => 'usageOperation', ], 'UsageOperationUpdateTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'usageOperationUpdateTime', ], 'PrivateDnsNameOptions' => [ 'shape' => 'PrivateDnsNameOptionsResponse', 'locationName' => 'privateDnsNameOptions', ], 'Ipv6Address' => [ 'shape' => 'String', 'locationName' => 'ipv6Address', ], 'TpmSupport' => [ 'shape' => 'String', 'locationName' => 'tpmSupport', ], 'MaintenanceOptions' => [ 'shape' => 'InstanceMaintenanceOptions', 'locationName' => 'maintenanceOptions', ], 'CurrentInstanceBootMode' => [ 'shape' => 'InstanceBootModeValues', 'locationName' => 'currentInstanceBootMode', ], ], ], 'InstanceAttachmentEnaSrdSpecification' => [ 'type' => 'structure', 'members' => [ 'EnaSrdEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'enaSrdEnabled', ], 'EnaSrdUdpSpecification' => [ 'shape' => 'InstanceAttachmentEnaSrdUdpSpecification', 'locationName' => 'enaSrdUdpSpecification', ], ], ], 'InstanceAttachmentEnaSrdUdpSpecification' => [ 'type' => 'structure', 'members' => [ 'EnaSrdUdpEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'enaSrdUdpEnabled', ], ], ], 'InstanceAttribute' => [ 'type' => 'structure', 'members' => [ 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'BlockDeviceMappings' => [ 'shape' => 'InstanceBlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'DisableApiTermination' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'disableApiTermination', ], 'EnaSupport' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'enaSupport', ], 'EnclaveOptions' => [ 'shape' => 'EnclaveOptions', 'locationName' => 'enclaveOptions', ], 'EbsOptimized' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'ebsOptimized', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceInitiatedShutdownBehavior' => [ 'shape' => 'AttributeValue', 'locationName' => 'instanceInitiatedShutdownBehavior', ], 'InstanceType' => [ 'shape' => 'AttributeValue', 'locationName' => 'instanceType', ], 'KernelId' => [ 'shape' => 'AttributeValue', 'locationName' => 'kernel', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'RamdiskId' => [ 'shape' => 'AttributeValue', 'locationName' => 'ramdisk', ], 'RootDeviceName' => [ 'shape' => 'AttributeValue', 'locationName' => 'rootDeviceName', ], 'SourceDestCheck' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'sourceDestCheck', ], 'SriovNetSupport' => [ 'shape' => 'AttributeValue', 'locationName' => 'sriovNetSupport', ], 'UserData' => [ 'shape' => 'AttributeValue', 'locationName' => 'userData', ], 'DisableApiStop' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'disableApiStop', ], ], ], 'InstanceAttributeName' => [ 'type' => 'string', 'enum' => [ 'instanceType', 'kernel', 'ramdisk', 'userData', 'disableApiTermination', 'instanceInitiatedShutdownBehavior', 'rootDeviceName', 'blockDeviceMapping', 'productCodes', 'sourceDestCheck', 'groupSet', 'ebsOptimized', 'sriovNetSupport', 'enaSupport', 'enclaveOptions', 'disableApiStop', ], ], 'InstanceAutoRecoveryState' => [ 'type' => 'string', 'enum' => [ 'disabled', 'default', ], ], 'InstanceBlockDeviceMapping' => [ 'type' => 'structure', 'members' => [ 'DeviceName' => [ 'shape' => 'String', 'locationName' => 'deviceName', ], 'Ebs' => [ 'shape' => 'EbsInstanceBlockDevice', 'locationName' => 'ebs', ], ], ], 'InstanceBlockDeviceMappingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceBlockDeviceMapping', 'locationName' => 'item', ], ], 'InstanceBlockDeviceMappingSpecification' => [ 'type' => 'structure', 'members' => [ 'DeviceName' => [ 'shape' => 'String', 'locationName' => 'deviceName', ], 'Ebs' => [ 'shape' => 'EbsInstanceBlockDeviceSpecification', 'locationName' => 'ebs', ], 'NoDevice' => [ 'shape' => 'String', 'locationName' => 'noDevice', ], 'VirtualName' => [ 'shape' => 'String', 'locationName' => 'virtualName', ], ], ], 'InstanceBlockDeviceMappingSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceBlockDeviceMappingSpecification', 'locationName' => 'item', ], ], 'InstanceBootModeValues' => [ 'type' => 'string', 'enum' => [ 'legacy-bios', 'uefi', ], ], 'InstanceCapacity' => [ 'type' => 'structure', 'members' => [ 'AvailableCapacity' => [ 'shape' => 'Integer', 'locationName' => 'availableCapacity', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'TotalCapacity' => [ 'shape' => 'Integer', 'locationName' => 'totalCapacity', ], ], ], 'InstanceConnectEndpointId' => [ 'type' => 'string', ], 'InstanceConnectEndpointMaxResults' => [ 'type' => 'integer', 'max' => 50, 'min' => 1, ], 'InstanceConnectEndpointSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ec2InstanceConnectEndpoint', 'locationName' => 'item', ], ], 'InstanceCount' => [ 'type' => 'structure', 'members' => [ 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'State' => [ 'shape' => 'ListingState', 'locationName' => 'state', ], ], ], 'InstanceCountList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceCount', 'locationName' => 'item', ], ], 'InstanceCreditSpecification' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'CpuCredits' => [ 'shape' => 'String', 'locationName' => 'cpuCredits', ], ], ], 'InstanceCreditSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceCreditSpecification', 'locationName' => 'item', ], ], 'InstanceCreditSpecificationListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceCreditSpecificationRequest', 'locationName' => 'item', ], ], 'InstanceCreditSpecificationRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'CpuCredits' => [ 'shape' => 'String', ], ], ], 'InstanceEventId' => [ 'type' => 'string', ], 'InstanceEventWindow' => [ 'type' => 'structure', 'members' => [ 'InstanceEventWindowId' => [ 'shape' => 'InstanceEventWindowId', 'locationName' => 'instanceEventWindowId', ], 'TimeRanges' => [ 'shape' => 'InstanceEventWindowTimeRangeList', 'locationName' => 'timeRangeSet', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], 'CronExpression' => [ 'shape' => 'InstanceEventWindowCronExpression', 'locationName' => 'cronExpression', ], 'AssociationTarget' => [ 'shape' => 'InstanceEventWindowAssociationTarget', 'locationName' => 'associationTarget', ], 'State' => [ 'shape' => 'InstanceEventWindowState', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'InstanceEventWindowAssociationRequest' => [ 'type' => 'structure', 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdList', 'locationName' => 'InstanceId', ], 'InstanceTags' => [ 'shape' => 'TagList', 'locationName' => 'InstanceTag', ], 'DedicatedHostIds' => [ 'shape' => 'DedicatedHostIdList', 'locationName' => 'DedicatedHostId', ], ], ], 'InstanceEventWindowAssociationTarget' => [ 'type' => 'structure', 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdList', 'locationName' => 'instanceIdSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'DedicatedHostIds' => [ 'shape' => 'DedicatedHostIdList', 'locationName' => 'dedicatedHostIdSet', ], ], ], 'InstanceEventWindowCronExpression' => [ 'type' => 'string', ], 'InstanceEventWindowDisassociationRequest' => [ 'type' => 'structure', 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdList', 'locationName' => 'InstanceId', ], 'InstanceTags' => [ 'shape' => 'TagList', 'locationName' => 'InstanceTag', ], 'DedicatedHostIds' => [ 'shape' => 'DedicatedHostIdList', 'locationName' => 'DedicatedHostId', ], ], ], 'InstanceEventWindowId' => [ 'type' => 'string', ], 'InstanceEventWindowIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceEventWindowId', 'locationName' => 'InstanceEventWindowId', ], ], 'InstanceEventWindowSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceEventWindow', 'locationName' => 'item', ], ], 'InstanceEventWindowState' => [ 'type' => 'string', 'enum' => [ 'creating', 'deleting', 'active', 'deleted', ], ], 'InstanceEventWindowStateChange' => [ 'type' => 'structure', 'members' => [ 'InstanceEventWindowId' => [ 'shape' => 'InstanceEventWindowId', 'locationName' => 'instanceEventWindowId', ], 'State' => [ 'shape' => 'InstanceEventWindowState', 'locationName' => 'state', ], ], ], 'InstanceEventWindowTimeRange' => [ 'type' => 'structure', 'members' => [ 'StartWeekDay' => [ 'shape' => 'WeekDay', 'locationName' => 'startWeekDay', ], 'StartHour' => [ 'shape' => 'Hour', 'locationName' => 'startHour', ], 'EndWeekDay' => [ 'shape' => 'WeekDay', 'locationName' => 'endWeekDay', ], 'EndHour' => [ 'shape' => 'Hour', 'locationName' => 'endHour', ], ], ], 'InstanceEventWindowTimeRangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceEventWindowTimeRange', 'locationName' => 'item', ], ], 'InstanceEventWindowTimeRangeRequest' => [ 'type' => 'structure', 'members' => [ 'StartWeekDay' => [ 'shape' => 'WeekDay', ], 'StartHour' => [ 'shape' => 'Hour', ], 'EndWeekDay' => [ 'shape' => 'WeekDay', ], 'EndHour' => [ 'shape' => 'Hour', ], ], ], 'InstanceEventWindowTimeRangeRequestSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceEventWindowTimeRangeRequest', ], ], 'InstanceExportDetails' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'TargetEnvironment' => [ 'shape' => 'ExportEnvironment', 'locationName' => 'targetEnvironment', ], ], ], 'InstanceFamilyCreditSpecification' => [ 'type' => 'structure', 'members' => [ 'InstanceFamily' => [ 'shape' => 'UnlimitedSupportedInstanceFamily', 'locationName' => 'instanceFamily', ], 'CpuCredits' => [ 'shape' => 'String', 'locationName' => 'cpuCredits', ], ], ], 'InstanceGeneration' => [ 'type' => 'string', 'enum' => [ 'current', 'previous', ], ], 'InstanceGenerationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceGeneration', 'locationName' => 'item', ], ], 'InstanceHealthStatus' => [ 'type' => 'string', 'enum' => [ 'healthy', 'unhealthy', ], ], 'InstanceId' => [ 'type' => 'string', ], 'InstanceIdForResolver' => [ 'type' => 'string', ], 'InstanceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceId', 'locationName' => 'item', ], ], 'InstanceIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceId', 'locationName' => 'item', ], ], 'InstanceIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceId', 'locationName' => 'InstanceId', ], ], 'InstanceIdWithVolumeResolver' => [ 'type' => 'string', ], 'InstanceIdsSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceId', 'locationName' => 'item', ], ], 'InstanceInterruptionBehavior' => [ 'type' => 'string', 'enum' => [ 'hibernate', 'stop', 'terminate', ], ], 'InstanceIpv4Prefix' => [ 'type' => 'structure', 'members' => [ 'Ipv4Prefix' => [ 'shape' => 'String', 'locationName' => 'ipv4Prefix', ], ], ], 'InstanceIpv4PrefixList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceIpv4Prefix', 'locationName' => 'item', ], ], 'InstanceIpv6Address' => [ 'type' => 'structure', 'members' => [ 'Ipv6Address' => [ 'shape' => 'String', 'locationName' => 'ipv6Address', ], 'IsPrimaryIpv6' => [ 'shape' => 'Boolean', 'locationName' => 'isPrimaryIpv6', ], ], ], 'InstanceIpv6AddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceIpv6Address', 'locationName' => 'item', ], ], 'InstanceIpv6AddressListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceIpv6AddressRequest', 'locationName' => 'InstanceIpv6Address', ], ], 'InstanceIpv6AddressRequest' => [ 'type' => 'structure', 'members' => [ 'Ipv6Address' => [ 'shape' => 'String', ], ], ], 'InstanceIpv6Prefix' => [ 'type' => 'structure', 'members' => [ 'Ipv6Prefix' => [ 'shape' => 'String', 'locationName' => 'ipv6Prefix', ], ], ], 'InstanceIpv6PrefixList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceIpv6Prefix', 'locationName' => 'item', ], ], 'InstanceLifecycle' => [ 'type' => 'string', 'enum' => [ 'spot', 'on-demand', ], ], 'InstanceLifecycleType' => [ 'type' => 'string', 'enum' => [ 'spot', 'scheduled', 'capacity-block', ], ], 'InstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Instance', 'locationName' => 'item', ], ], 'InstanceMaintenanceOptions' => [ 'type' => 'structure', 'members' => [ 'AutoRecovery' => [ 'shape' => 'InstanceAutoRecoveryState', 'locationName' => 'autoRecovery', ], ], ], 'InstanceMaintenanceOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'AutoRecovery' => [ 'shape' => 'InstanceAutoRecoveryState', ], ], ], 'InstanceMarketOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'MarketType' => [ 'shape' => 'MarketType', ], 'SpotOptions' => [ 'shape' => 'SpotMarketOptions', ], ], ], 'InstanceMatchCriteria' => [ 'type' => 'string', 'enum' => [ 'open', 'targeted', ], ], 'InstanceMetadataEndpointState' => [ 'type' => 'string', 'enum' => [ 'disabled', 'enabled', ], ], 'InstanceMetadataOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'HttpTokens' => [ 'shape' => 'HttpTokensState', ], 'HttpPutResponseHopLimit' => [ 'shape' => 'Integer', ], 'HttpEndpoint' => [ 'shape' => 'InstanceMetadataEndpointState', ], 'HttpProtocolIpv6' => [ 'shape' => 'InstanceMetadataProtocolState', ], 'InstanceMetadataTags' => [ 'shape' => 'InstanceMetadataTagsState', ], ], ], 'InstanceMetadataOptionsResponse' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'InstanceMetadataOptionsState', 'locationName' => 'state', ], 'HttpTokens' => [ 'shape' => 'HttpTokensState', 'locationName' => 'httpTokens', ], 'HttpPutResponseHopLimit' => [ 'shape' => 'Integer', 'locationName' => 'httpPutResponseHopLimit', ], 'HttpEndpoint' => [ 'shape' => 'InstanceMetadataEndpointState', 'locationName' => 'httpEndpoint', ], 'HttpProtocolIpv6' => [ 'shape' => 'InstanceMetadataProtocolState', 'locationName' => 'httpProtocolIpv6', ], 'InstanceMetadataTags' => [ 'shape' => 'InstanceMetadataTagsState', 'locationName' => 'instanceMetadataTags', ], ], ], 'InstanceMetadataOptionsState' => [ 'type' => 'string', 'enum' => [ 'pending', 'applied', ], ], 'InstanceMetadataProtocolState' => [ 'type' => 'string', 'enum' => [ 'disabled', 'enabled', ], ], 'InstanceMetadataTagsState' => [ 'type' => 'string', 'enum' => [ 'disabled', 'enabled', ], ], 'InstanceMonitoring' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Monitoring' => [ 'shape' => 'Monitoring', 'locationName' => 'monitoring', ], ], ], 'InstanceMonitoringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceMonitoring', 'locationName' => 'item', ], ], 'InstanceNetworkInterface' => [ 'type' => 'structure', 'members' => [ 'Association' => [ 'shape' => 'InstanceNetworkInterfaceAssociation', 'locationName' => 'association', ], 'Attachment' => [ 'shape' => 'InstanceNetworkInterfaceAttachment', 'locationName' => 'attachment', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'Ipv6Addresses' => [ 'shape' => 'InstanceIpv6AddressList', 'locationName' => 'ipv6AddressesSet', ], 'MacAddress' => [ 'shape' => 'String', 'locationName' => 'macAddress', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'PrivateIpAddresses' => [ 'shape' => 'InstancePrivateIpAddressList', 'locationName' => 'privateIpAddressesSet', ], 'SourceDestCheck' => [ 'shape' => 'Boolean', 'locationName' => 'sourceDestCheck', ], 'Status' => [ 'shape' => 'NetworkInterfaceStatus', 'locationName' => 'status', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'InterfaceType' => [ 'shape' => 'String', 'locationName' => 'interfaceType', ], 'Ipv4Prefixes' => [ 'shape' => 'InstanceIpv4PrefixList', 'locationName' => 'ipv4PrefixSet', ], 'Ipv6Prefixes' => [ 'shape' => 'InstanceIpv6PrefixList', 'locationName' => 'ipv6PrefixSet', ], 'ConnectionTrackingConfiguration' => [ 'shape' => 'ConnectionTrackingSpecificationResponse', 'locationName' => 'connectionTrackingConfiguration', ], ], ], 'InstanceNetworkInterfaceAssociation' => [ 'type' => 'structure', 'members' => [ 'CarrierIp' => [ 'shape' => 'String', 'locationName' => 'carrierIp', ], 'CustomerOwnedIp' => [ 'shape' => 'String', 'locationName' => 'customerOwnedIp', ], 'IpOwnerId' => [ 'shape' => 'String', 'locationName' => 'ipOwnerId', ], 'PublicDnsName' => [ 'shape' => 'String', 'locationName' => 'publicDnsName', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], ], ], 'InstanceNetworkInterfaceAttachment' => [ 'type' => 'structure', 'members' => [ 'AttachTime' => [ 'shape' => 'DateTime', 'locationName' => 'attachTime', ], 'AttachmentId' => [ 'shape' => 'String', 'locationName' => 'attachmentId', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'DeviceIndex' => [ 'shape' => 'Integer', 'locationName' => 'deviceIndex', ], 'Status' => [ 'shape' => 'AttachmentStatus', 'locationName' => 'status', ], 'NetworkCardIndex' => [ 'shape' => 'Integer', 'locationName' => 'networkCardIndex', ], 'EnaSrdSpecification' => [ 'shape' => 'InstanceAttachmentEnaSrdSpecification', 'locationName' => 'enaSrdSpecification', ], ], ], 'InstanceNetworkInterfaceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceNetworkInterface', 'locationName' => 'item', ], ], 'InstanceNetworkInterfaceSpecification' => [ 'type' => 'structure', 'members' => [ 'AssociatePublicIpAddress' => [ 'shape' => 'Boolean', 'locationName' => 'associatePublicIpAddress', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DeviceIndex' => [ 'shape' => 'Integer', 'locationName' => 'deviceIndex', ], 'Groups' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'Ipv6AddressCount' => [ 'shape' => 'Integer', 'locationName' => 'ipv6AddressCount', ], 'Ipv6Addresses' => [ 'shape' => 'InstanceIpv6AddressList', 'locationName' => 'ipv6AddressesSet', 'queryName' => 'Ipv6Addresses', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'PrivateIpAddresses' => [ 'shape' => 'PrivateIpAddressSpecificationList', 'locationName' => 'privateIpAddressesSet', 'queryName' => 'PrivateIpAddresses', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'secondaryPrivateIpAddressCount', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'AssociateCarrierIpAddress' => [ 'shape' => 'Boolean', ], 'InterfaceType' => [ 'shape' => 'String', ], 'NetworkCardIndex' => [ 'shape' => 'Integer', ], 'Ipv4Prefixes' => [ 'shape' => 'Ipv4PrefixList', 'locationName' => 'Ipv4Prefix', ], 'Ipv4PrefixCount' => [ 'shape' => 'Integer', ], 'Ipv6Prefixes' => [ 'shape' => 'Ipv6PrefixList', 'locationName' => 'Ipv6Prefix', ], 'Ipv6PrefixCount' => [ 'shape' => 'Integer', ], 'PrimaryIpv6' => [ 'shape' => 'Boolean', ], 'EnaSrdSpecification' => [ 'shape' => 'EnaSrdSpecificationRequest', ], 'ConnectionTrackingSpecification' => [ 'shape' => 'ConnectionTrackingSpecificationRequest', ], ], ], 'InstanceNetworkInterfaceSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceNetworkInterfaceSpecification', 'locationName' => 'item', ], ], 'InstancePrivateIpAddress' => [ 'type' => 'structure', 'members' => [ 'Association' => [ 'shape' => 'InstanceNetworkInterfaceAssociation', 'locationName' => 'association', ], 'Primary' => [ 'shape' => 'Boolean', 'locationName' => 'primary', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], ], ], 'InstancePrivateIpAddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstancePrivateIpAddress', 'locationName' => 'item', ], ], 'InstanceRequirements' => [ 'type' => 'structure', 'members' => [ 'VCpuCount' => [ 'shape' => 'VCpuCountRange', 'locationName' => 'vCpuCount', ], 'MemoryMiB' => [ 'shape' => 'MemoryMiB', 'locationName' => 'memoryMiB', ], 'CpuManufacturers' => [ 'shape' => 'CpuManufacturerSet', 'locationName' => 'cpuManufacturerSet', ], 'MemoryGiBPerVCpu' => [ 'shape' => 'MemoryGiBPerVCpu', 'locationName' => 'memoryGiBPerVCpu', ], 'ExcludedInstanceTypes' => [ 'shape' => 'ExcludedInstanceTypeSet', 'locationName' => 'excludedInstanceTypeSet', ], 'InstanceGenerations' => [ 'shape' => 'InstanceGenerationSet', 'locationName' => 'instanceGenerationSet', ], 'SpotMaxPricePercentageOverLowestPrice' => [ 'shape' => 'Integer', 'locationName' => 'spotMaxPricePercentageOverLowestPrice', ], 'OnDemandMaxPricePercentageOverLowestPrice' => [ 'shape' => 'Integer', 'locationName' => 'onDemandMaxPricePercentageOverLowestPrice', ], 'BareMetal' => [ 'shape' => 'BareMetal', 'locationName' => 'bareMetal', ], 'BurstablePerformance' => [ 'shape' => 'BurstablePerformance', 'locationName' => 'burstablePerformance', ], 'RequireHibernateSupport' => [ 'shape' => 'Boolean', 'locationName' => 'requireHibernateSupport', ], 'NetworkInterfaceCount' => [ 'shape' => 'NetworkInterfaceCount', 'locationName' => 'networkInterfaceCount', ], 'LocalStorage' => [ 'shape' => 'LocalStorage', 'locationName' => 'localStorage', ], 'LocalStorageTypes' => [ 'shape' => 'LocalStorageTypeSet', 'locationName' => 'localStorageTypeSet', ], 'TotalLocalStorageGB' => [ 'shape' => 'TotalLocalStorageGB', 'locationName' => 'totalLocalStorageGB', ], 'BaselineEbsBandwidthMbps' => [ 'shape' => 'BaselineEbsBandwidthMbps', 'locationName' => 'baselineEbsBandwidthMbps', ], 'AcceleratorTypes' => [ 'shape' => 'AcceleratorTypeSet', 'locationName' => 'acceleratorTypeSet', ], 'AcceleratorCount' => [ 'shape' => 'AcceleratorCount', 'locationName' => 'acceleratorCount', ], 'AcceleratorManufacturers' => [ 'shape' => 'AcceleratorManufacturerSet', 'locationName' => 'acceleratorManufacturerSet', ], 'AcceleratorNames' => [ 'shape' => 'AcceleratorNameSet', 'locationName' => 'acceleratorNameSet', ], 'AcceleratorTotalMemoryMiB' => [ 'shape' => 'AcceleratorTotalMemoryMiB', 'locationName' => 'acceleratorTotalMemoryMiB', ], 'NetworkBandwidthGbps' => [ 'shape' => 'NetworkBandwidthGbps', 'locationName' => 'networkBandwidthGbps', ], 'AllowedInstanceTypes' => [ 'shape' => 'AllowedInstanceTypeSet', 'locationName' => 'allowedInstanceTypeSet', ], 'MaxSpotPriceAsPercentageOfOptimalOnDemandPrice' => [ 'shape' => 'Integer', 'locationName' => 'maxSpotPriceAsPercentageOfOptimalOnDemandPrice', ], ], ], 'InstanceRequirementsRequest' => [ 'type' => 'structure', 'required' => [ 'VCpuCount', 'MemoryMiB', ], 'members' => [ 'VCpuCount' => [ 'shape' => 'VCpuCountRangeRequest', ], 'MemoryMiB' => [ 'shape' => 'MemoryMiBRequest', ], 'CpuManufacturers' => [ 'shape' => 'CpuManufacturerSet', 'locationName' => 'CpuManufacturer', ], 'MemoryGiBPerVCpu' => [ 'shape' => 'MemoryGiBPerVCpuRequest', ], 'ExcludedInstanceTypes' => [ 'shape' => 'ExcludedInstanceTypeSet', 'locationName' => 'ExcludedInstanceType', ], 'InstanceGenerations' => [ 'shape' => 'InstanceGenerationSet', 'locationName' => 'InstanceGeneration', ], 'SpotMaxPricePercentageOverLowestPrice' => [ 'shape' => 'Integer', ], 'OnDemandMaxPricePercentageOverLowestPrice' => [ 'shape' => 'Integer', ], 'BareMetal' => [ 'shape' => 'BareMetal', ], 'BurstablePerformance' => [ 'shape' => 'BurstablePerformance', ], 'RequireHibernateSupport' => [ 'shape' => 'Boolean', ], 'NetworkInterfaceCount' => [ 'shape' => 'NetworkInterfaceCountRequest', ], 'LocalStorage' => [ 'shape' => 'LocalStorage', ], 'LocalStorageTypes' => [ 'shape' => 'LocalStorageTypeSet', 'locationName' => 'LocalStorageType', ], 'TotalLocalStorageGB' => [ 'shape' => 'TotalLocalStorageGBRequest', ], 'BaselineEbsBandwidthMbps' => [ 'shape' => 'BaselineEbsBandwidthMbpsRequest', ], 'AcceleratorTypes' => [ 'shape' => 'AcceleratorTypeSet', 'locationName' => 'AcceleratorType', ], 'AcceleratorCount' => [ 'shape' => 'AcceleratorCountRequest', ], 'AcceleratorManufacturers' => [ 'shape' => 'AcceleratorManufacturerSet', 'locationName' => 'AcceleratorManufacturer', ], 'AcceleratorNames' => [ 'shape' => 'AcceleratorNameSet', 'locationName' => 'AcceleratorName', ], 'AcceleratorTotalMemoryMiB' => [ 'shape' => 'AcceleratorTotalMemoryMiBRequest', ], 'NetworkBandwidthGbps' => [ 'shape' => 'NetworkBandwidthGbpsRequest', ], 'AllowedInstanceTypes' => [ 'shape' => 'AllowedInstanceTypeSet', 'locationName' => 'AllowedInstanceType', ], 'MaxSpotPriceAsPercentageOfOptimalOnDemandPrice' => [ 'shape' => 'Integer', ], ], ], 'InstanceRequirementsWithMetadataRequest' => [ 'type' => 'structure', 'members' => [ 'ArchitectureTypes' => [ 'shape' => 'ArchitectureTypeSet', 'locationName' => 'ArchitectureType', ], 'VirtualizationTypes' => [ 'shape' => 'VirtualizationTypeSet', 'locationName' => 'VirtualizationType', ], 'InstanceRequirements' => [ 'shape' => 'InstanceRequirementsRequest', ], ], ], 'InstanceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceTopology', 'locationName' => 'item', ], ], 'InstanceSpecification' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceIdWithVolumeResolver', ], 'ExcludeBootVolume' => [ 'shape' => 'Boolean', ], 'ExcludeDataVolumeIds' => [ 'shape' => 'VolumeIdStringList', 'locationName' => 'ExcludeDataVolumeId', ], ], ], 'InstanceState' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'Integer', 'locationName' => 'code', ], 'Name' => [ 'shape' => 'InstanceStateName', 'locationName' => 'name', ], ], ], 'InstanceStateChange' => [ 'type' => 'structure', 'members' => [ 'CurrentState' => [ 'shape' => 'InstanceState', 'locationName' => 'currentState', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'PreviousState' => [ 'shape' => 'InstanceState', 'locationName' => 'previousState', ], ], ], 'InstanceStateChangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceStateChange', 'locationName' => 'item', ], ], 'InstanceStateName' => [ 'type' => 'string', 'enum' => [ 'pending', 'running', 'shutting-down', 'terminated', 'stopping', 'stopped', ], ], 'InstanceStatus' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'Events' => [ 'shape' => 'InstanceStatusEventList', 'locationName' => 'eventsSet', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceState' => [ 'shape' => 'InstanceState', 'locationName' => 'instanceState', ], 'InstanceStatus' => [ 'shape' => 'InstanceStatusSummary', 'locationName' => 'instanceStatus', ], 'SystemStatus' => [ 'shape' => 'InstanceStatusSummary', 'locationName' => 'systemStatus', ], ], ], 'InstanceStatusDetails' => [ 'type' => 'structure', 'members' => [ 'ImpairedSince' => [ 'shape' => 'DateTime', 'locationName' => 'impairedSince', ], 'Name' => [ 'shape' => 'StatusName', 'locationName' => 'name', ], 'Status' => [ 'shape' => 'StatusType', 'locationName' => 'status', ], ], ], 'InstanceStatusDetailsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceStatusDetails', 'locationName' => 'item', ], ], 'InstanceStatusEvent' => [ 'type' => 'structure', 'members' => [ 'InstanceEventId' => [ 'shape' => 'InstanceEventId', 'locationName' => 'instanceEventId', ], 'Code' => [ 'shape' => 'EventCode', 'locationName' => 'code', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'NotAfter' => [ 'shape' => 'DateTime', 'locationName' => 'notAfter', ], 'NotBefore' => [ 'shape' => 'DateTime', 'locationName' => 'notBefore', ], 'NotBeforeDeadline' => [ 'shape' => 'DateTime', 'locationName' => 'notBeforeDeadline', ], ], ], 'InstanceStatusEventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceStatusEvent', 'locationName' => 'item', ], ], 'InstanceStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceStatus', 'locationName' => 'item', ], ], 'InstanceStatusSummary' => [ 'type' => 'structure', 'members' => [ 'Details' => [ 'shape' => 'InstanceStatusDetailsList', 'locationName' => 'details', ], 'Status' => [ 'shape' => 'SummaryStatus', 'locationName' => 'status', ], ], ], 'InstanceStorageEncryptionSupport' => [ 'type' => 'string', 'enum' => [ 'unsupported', 'required', ], ], 'InstanceStorageFlag' => [ 'type' => 'boolean', ], 'InstanceStorageInfo' => [ 'type' => 'structure', 'members' => [ 'TotalSizeInGB' => [ 'shape' => 'DiskSize', 'locationName' => 'totalSizeInGB', ], 'Disks' => [ 'shape' => 'DiskInfoList', 'locationName' => 'disks', ], 'NvmeSupport' => [ 'shape' => 'EphemeralNvmeSupport', 'locationName' => 'nvmeSupport', ], 'EncryptionSupport' => [ 'shape' => 'InstanceStorageEncryptionSupport', 'locationName' => 'encryptionSupport', ], ], ], 'InstanceTagKeySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'InstanceTagNotificationAttribute' => [ 'type' => 'structure', 'members' => [ 'InstanceTagKeys' => [ 'shape' => 'InstanceTagKeySet', 'locationName' => 'instanceTagKeySet', ], 'IncludeAllTagsOfInstance' => [ 'shape' => 'Boolean', 'locationName' => 'includeAllTagsOfInstance', ], ], ], 'InstanceTopology' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'NetworkNodes' => [ 'shape' => 'NetworkNodesList', 'locationName' => 'networkNodeSet', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'ZoneId' => [ 'shape' => 'String', 'locationName' => 'zoneId', ], ], ], 'InstanceType' => [ 'type' => 'string', 'enum' => [ 'a1.medium', 'a1.large', 'a1.xlarge', 'a1.2xlarge', 'a1.4xlarge', 'a1.metal', 'c1.medium', 'c1.xlarge', 'c3.large', 'c3.xlarge', 'c3.2xlarge', 'c3.4xlarge', 'c3.8xlarge', 'c4.large', 'c4.xlarge', 'c4.2xlarge', 'c4.4xlarge', 'c4.8xlarge', 'c5.large', 'c5.xlarge', 'c5.2xlarge', 'c5.4xlarge', 'c5.9xlarge', 'c5.12xlarge', 'c5.18xlarge', 'c5.24xlarge', 'c5.metal', 'c5a.large', 'c5a.xlarge', 'c5a.2xlarge', 'c5a.4xlarge', 'c5a.8xlarge', 'c5a.12xlarge', 'c5a.16xlarge', 'c5a.24xlarge', 'c5ad.large', 'c5ad.xlarge', 'c5ad.2xlarge', 'c5ad.4xlarge', 'c5ad.8xlarge', 'c5ad.12xlarge', 'c5ad.16xlarge', 'c5ad.24xlarge', 'c5d.large', 'c5d.xlarge', 'c5d.2xlarge', 'c5d.4xlarge', 'c5d.9xlarge', 'c5d.12xlarge', 'c5d.18xlarge', 'c5d.24xlarge', 'c5d.metal', 'c5n.large', 'c5n.xlarge', 'c5n.2xlarge', 'c5n.4xlarge', 'c5n.9xlarge', 'c5n.18xlarge', 'c5n.metal', 'c6g.medium', 'c6g.large', 'c6g.xlarge', 'c6g.2xlarge', 'c6g.4xlarge', 'c6g.8xlarge', 'c6g.12xlarge', 'c6g.16xlarge', 'c6g.metal', 'c6gd.medium', 'c6gd.large', 'c6gd.xlarge', 'c6gd.2xlarge', 'c6gd.4xlarge', 'c6gd.8xlarge', 'c6gd.12xlarge', 'c6gd.16xlarge', 'c6gd.metal', 'c6gn.medium', 'c6gn.large', 'c6gn.xlarge', 'c6gn.2xlarge', 'c6gn.4xlarge', 'c6gn.8xlarge', 'c6gn.12xlarge', 'c6gn.16xlarge', 'c6i.large', 'c6i.xlarge', 'c6i.2xlarge', 'c6i.4xlarge', 'c6i.8xlarge', 'c6i.12xlarge', 'c6i.16xlarge', 'c6i.24xlarge', 'c6i.32xlarge', 'c6i.metal', 'cc1.4xlarge', 'cc2.8xlarge', 'cg1.4xlarge', 'cr1.8xlarge', 'd2.xlarge', 'd2.2xlarge', 'd2.4xlarge', 'd2.8xlarge', 'd3.xlarge', 'd3.2xlarge', 'd3.4xlarge', 'd3.8xlarge', 'd3en.xlarge', 'd3en.2xlarge', 'd3en.4xlarge', 'd3en.6xlarge', 'd3en.8xlarge', 'd3en.12xlarge', 'dl1.24xlarge', 'f1.2xlarge', 'f1.4xlarge', 'f1.16xlarge', 'g2.2xlarge', 'g2.8xlarge', 'g3.4xlarge', 'g3.8xlarge', 'g3.16xlarge', 'g3s.xlarge', 'g4ad.xlarge', 'g4ad.2xlarge', 'g4ad.4xlarge', 'g4ad.8xlarge', 'g4ad.16xlarge', 'g4dn.xlarge', 'g4dn.2xlarge', 'g4dn.4xlarge', 'g4dn.8xlarge', 'g4dn.12xlarge', 'g4dn.16xlarge', 'g4dn.metal', 'g5.xlarge', 'g5.2xlarge', 'g5.4xlarge', 'g5.8xlarge', 'g5.12xlarge', 'g5.16xlarge', 'g5.24xlarge', 'g5.48xlarge', 'g5g.xlarge', 'g5g.2xlarge', 'g5g.4xlarge', 'g5g.8xlarge', 'g5g.16xlarge', 'g5g.metal', 'hi1.4xlarge', 'hpc6a.48xlarge', 'hs1.8xlarge', 'h1.2xlarge', 'h1.4xlarge', 'h1.8xlarge', 'h1.16xlarge', 'i2.xlarge', 'i2.2xlarge', 'i2.4xlarge', 'i2.8xlarge', 'i3.large', 'i3.xlarge', 'i3.2xlarge', 'i3.4xlarge', 'i3.8xlarge', 'i3.16xlarge', 'i3.metal', 'i3en.large', 'i3en.xlarge', 'i3en.2xlarge', 'i3en.3xlarge', 'i3en.6xlarge', 'i3en.12xlarge', 'i3en.24xlarge', 'i3en.metal', 'im4gn.large', 'im4gn.xlarge', 'im4gn.2xlarge', 'im4gn.4xlarge', 'im4gn.8xlarge', 'im4gn.16xlarge', 'inf1.xlarge', 'inf1.2xlarge', 'inf1.6xlarge', 'inf1.24xlarge', 'is4gen.medium', 'is4gen.large', 'is4gen.xlarge', 'is4gen.2xlarge', 'is4gen.4xlarge', 'is4gen.8xlarge', 'm1.small', 'm1.medium', 'm1.large', 'm1.xlarge', 'm2.xlarge', 'm2.2xlarge', 'm2.4xlarge', 'm3.medium', 'm3.large', 'm3.xlarge', 'm3.2xlarge', 'm4.large', 'm4.xlarge', 'm4.2xlarge', 'm4.4xlarge', 'm4.10xlarge', 'm4.16xlarge', 'm5.large', 'm5.xlarge', 'm5.2xlarge', 'm5.4xlarge', 'm5.8xlarge', 'm5.12xlarge', 'm5.16xlarge', 'm5.24xlarge', 'm5.metal', 'm5a.large', 'm5a.xlarge', 'm5a.2xlarge', 'm5a.4xlarge', 'm5a.8xlarge', 'm5a.12xlarge', 'm5a.16xlarge', 'm5a.24xlarge', 'm5ad.large', 'm5ad.xlarge', 'm5ad.2xlarge', 'm5ad.4xlarge', 'm5ad.8xlarge', 'm5ad.12xlarge', 'm5ad.16xlarge', 'm5ad.24xlarge', 'm5d.large', 'm5d.xlarge', 'm5d.2xlarge', 'm5d.4xlarge', 'm5d.8xlarge', 'm5d.12xlarge', 'm5d.16xlarge', 'm5d.24xlarge', 'm5d.metal', 'm5dn.large', 'm5dn.xlarge', 'm5dn.2xlarge', 'm5dn.4xlarge', 'm5dn.8xlarge', 'm5dn.12xlarge', 'm5dn.16xlarge', 'm5dn.24xlarge', 'm5dn.metal', 'm5n.large', 'm5n.xlarge', 'm5n.2xlarge', 'm5n.4xlarge', 'm5n.8xlarge', 'm5n.12xlarge', 'm5n.16xlarge', 'm5n.24xlarge', 'm5n.metal', 'm5zn.large', 'm5zn.xlarge', 'm5zn.2xlarge', 'm5zn.3xlarge', 'm5zn.6xlarge', 'm5zn.12xlarge', 'm5zn.metal', 'm6a.large', 'm6a.xlarge', 'm6a.2xlarge', 'm6a.4xlarge', 'm6a.8xlarge', 'm6a.12xlarge', 'm6a.16xlarge', 'm6a.24xlarge', 'm6a.32xlarge', 'm6a.48xlarge', 'm6g.metal', 'm6g.medium', 'm6g.large', 'm6g.xlarge', 'm6g.2xlarge', 'm6g.4xlarge', 'm6g.8xlarge', 'm6g.12xlarge', 'm6g.16xlarge', 'm6gd.metal', 'm6gd.medium', 'm6gd.large', 'm6gd.xlarge', 'm6gd.2xlarge', 'm6gd.4xlarge', 'm6gd.8xlarge', 'm6gd.12xlarge', 'm6gd.16xlarge', 'm6i.large', 'm6i.xlarge', 'm6i.2xlarge', 'm6i.4xlarge', 'm6i.8xlarge', 'm6i.12xlarge', 'm6i.16xlarge', 'm6i.24xlarge', 'm6i.32xlarge', 'm6i.metal', 'mac1.metal', 'p2.xlarge', 'p2.8xlarge', 'p2.16xlarge', 'p3.2xlarge', 'p3.8xlarge', 'p3.16xlarge', 'p3dn.24xlarge', 'p4d.24xlarge', 'r3.large', 'r3.xlarge', 'r3.2xlarge', 'r3.4xlarge', 'r3.8xlarge', 'r4.large', 'r4.xlarge', 'r4.2xlarge', 'r4.4xlarge', 'r4.8xlarge', 'r4.16xlarge', 'r5.large', 'r5.xlarge', 'r5.2xlarge', 'r5.4xlarge', 'r5.8xlarge', 'r5.12xlarge', 'r5.16xlarge', 'r5.24xlarge', 'r5.metal', 'r5a.large', 'r5a.xlarge', 'r5a.2xlarge', 'r5a.4xlarge', 'r5a.8xlarge', 'r5a.12xlarge', 'r5a.16xlarge', 'r5a.24xlarge', 'r5ad.large', 'r5ad.xlarge', 'r5ad.2xlarge', 'r5ad.4xlarge', 'r5ad.8xlarge', 'r5ad.12xlarge', 'r5ad.16xlarge', 'r5ad.24xlarge', 'r5b.large', 'r5b.xlarge', 'r5b.2xlarge', 'r5b.4xlarge', 'r5b.8xlarge', 'r5b.12xlarge', 'r5b.16xlarge', 'r5b.24xlarge', 'r5b.metal', 'r5d.large', 'r5d.xlarge', 'r5d.2xlarge', 'r5d.4xlarge', 'r5d.8xlarge', 'r5d.12xlarge', 'r5d.16xlarge', 'r5d.24xlarge', 'r5d.metal', 'r5dn.large', 'r5dn.xlarge', 'r5dn.2xlarge', 'r5dn.4xlarge', 'r5dn.8xlarge', 'r5dn.12xlarge', 'r5dn.16xlarge', 'r5dn.24xlarge', 'r5dn.metal', 'r5n.large', 'r5n.xlarge', 'r5n.2xlarge', 'r5n.4xlarge', 'r5n.8xlarge', 'r5n.12xlarge', 'r5n.16xlarge', 'r5n.24xlarge', 'r5n.metal', 'r6g.medium', 'r6g.large', 'r6g.xlarge', 'r6g.2xlarge', 'r6g.4xlarge', 'r6g.8xlarge', 'r6g.12xlarge', 'r6g.16xlarge', 'r6g.metal', 'r6gd.medium', 'r6gd.large', 'r6gd.xlarge', 'r6gd.2xlarge', 'r6gd.4xlarge', 'r6gd.8xlarge', 'r6gd.12xlarge', 'r6gd.16xlarge', 'r6gd.metal', 'r6i.large', 'r6i.xlarge', 'r6i.2xlarge', 'r6i.4xlarge', 'r6i.8xlarge', 'r6i.12xlarge', 'r6i.16xlarge', 'r6i.24xlarge', 'r6i.32xlarge', 'r6i.metal', 't1.micro', 't2.nano', 't2.micro', 't2.small', 't2.medium', 't2.large', 't2.xlarge', 't2.2xlarge', 't3.nano', 't3.micro', 't3.small', 't3.medium', 't3.large', 't3.xlarge', 't3.2xlarge', 't3a.nano', 't3a.micro', 't3a.small', 't3a.medium', 't3a.large', 't3a.xlarge', 't3a.2xlarge', 't4g.nano', 't4g.micro', 't4g.small', 't4g.medium', 't4g.large', 't4g.xlarge', 't4g.2xlarge', 'u-6tb1.56xlarge', 'u-6tb1.112xlarge', 'u-9tb1.112xlarge', 'u-12tb1.112xlarge', 'u-6tb1.metal', 'u-9tb1.metal', 'u-12tb1.metal', 'u-18tb1.metal', 'u-24tb1.metal', 'vt1.3xlarge', 'vt1.6xlarge', 'vt1.24xlarge', 'x1.16xlarge', 'x1.32xlarge', 'x1e.xlarge', 'x1e.2xlarge', 'x1e.4xlarge', 'x1e.8xlarge', 'x1e.16xlarge', 'x1e.32xlarge', 'x2iezn.2xlarge', 'x2iezn.4xlarge', 'x2iezn.6xlarge', 'x2iezn.8xlarge', 'x2iezn.12xlarge', 'x2iezn.metal', 'x2gd.medium', 'x2gd.large', 'x2gd.xlarge', 'x2gd.2xlarge', 'x2gd.4xlarge', 'x2gd.8xlarge', 'x2gd.12xlarge', 'x2gd.16xlarge', 'x2gd.metal', 'z1d.large', 'z1d.xlarge', 'z1d.2xlarge', 'z1d.3xlarge', 'z1d.6xlarge', 'z1d.12xlarge', 'z1d.metal', 'x2idn.16xlarge', 'x2idn.24xlarge', 'x2idn.32xlarge', 'x2iedn.xlarge', 'x2iedn.2xlarge', 'x2iedn.4xlarge', 'x2iedn.8xlarge', 'x2iedn.16xlarge', 'x2iedn.24xlarge', 'x2iedn.32xlarge', 'c6a.large', 'c6a.xlarge', 'c6a.2xlarge', 'c6a.4xlarge', 'c6a.8xlarge', 'c6a.12xlarge', 'c6a.16xlarge', 'c6a.24xlarge', 'c6a.32xlarge', 'c6a.48xlarge', 'c6a.metal', 'm6a.metal', 'i4i.large', 'i4i.xlarge', 'i4i.2xlarge', 'i4i.4xlarge', 'i4i.8xlarge', 'i4i.16xlarge', 'i4i.32xlarge', 'i4i.metal', 'x2idn.metal', 'x2iedn.metal', 'c7g.medium', 'c7g.large', 'c7g.xlarge', 'c7g.2xlarge', 'c7g.4xlarge', 'c7g.8xlarge', 'c7g.12xlarge', 'c7g.16xlarge', 'mac2.metal', 'c6id.large', 'c6id.xlarge', 'c6id.2xlarge', 'c6id.4xlarge', 'c6id.8xlarge', 'c6id.12xlarge', 'c6id.16xlarge', 'c6id.24xlarge', 'c6id.32xlarge', 'c6id.metal', 'm6id.large', 'm6id.xlarge', 'm6id.2xlarge', 'm6id.4xlarge', 'm6id.8xlarge', 'm6id.12xlarge', 'm6id.16xlarge', 'm6id.24xlarge', 'm6id.32xlarge', 'm6id.metal', 'r6id.large', 'r6id.xlarge', 'r6id.2xlarge', 'r6id.4xlarge', 'r6id.8xlarge', 'r6id.12xlarge', 'r6id.16xlarge', 'r6id.24xlarge', 'r6id.32xlarge', 'r6id.metal', 'r6a.large', 'r6a.xlarge', 'r6a.2xlarge', 'r6a.4xlarge', 'r6a.8xlarge', 'r6a.12xlarge', 'r6a.16xlarge', 'r6a.24xlarge', 'r6a.32xlarge', 'r6a.48xlarge', 'r6a.metal', 'p4de.24xlarge', 'u-3tb1.56xlarge', 'u-18tb1.112xlarge', 'u-24tb1.112xlarge', 'trn1.2xlarge', 'trn1.32xlarge', 'hpc6id.32xlarge', 'c6in.large', 'c6in.xlarge', 'c6in.2xlarge', 'c6in.4xlarge', 'c6in.8xlarge', 'c6in.12xlarge', 'c6in.16xlarge', 'c6in.24xlarge', 'c6in.32xlarge', 'm6in.large', 'm6in.xlarge', 'm6in.2xlarge', 'm6in.4xlarge', 'm6in.8xlarge', 'm6in.12xlarge', 'm6in.16xlarge', 'm6in.24xlarge', 'm6in.32xlarge', 'm6idn.large', 'm6idn.xlarge', 'm6idn.2xlarge', 'm6idn.4xlarge', 'm6idn.8xlarge', 'm6idn.12xlarge', 'm6idn.16xlarge', 'm6idn.24xlarge', 'm6idn.32xlarge', 'r6in.large', 'r6in.xlarge', 'r6in.2xlarge', 'r6in.4xlarge', 'r6in.8xlarge', 'r6in.12xlarge', 'r6in.16xlarge', 'r6in.24xlarge', 'r6in.32xlarge', 'r6idn.large', 'r6idn.xlarge', 'r6idn.2xlarge', 'r6idn.4xlarge', 'r6idn.8xlarge', 'r6idn.12xlarge', 'r6idn.16xlarge', 'r6idn.24xlarge', 'r6idn.32xlarge', 'c7g.metal', 'm7g.medium', 'm7g.large', 'm7g.xlarge', 'm7g.2xlarge', 'm7g.4xlarge', 'm7g.8xlarge', 'm7g.12xlarge', 'm7g.16xlarge', 'm7g.metal', 'r7g.medium', 'r7g.large', 'r7g.xlarge', 'r7g.2xlarge', 'r7g.4xlarge', 'r7g.8xlarge', 'r7g.12xlarge', 'r7g.16xlarge', 'r7g.metal', 'c6in.metal', 'm6in.metal', 'm6idn.metal', 'r6in.metal', 'r6idn.metal', 'inf2.xlarge', 'inf2.8xlarge', 'inf2.24xlarge', 'inf2.48xlarge', 'trn1n.32xlarge', 'i4g.large', 'i4g.xlarge', 'i4g.2xlarge', 'i4g.4xlarge', 'i4g.8xlarge', 'i4g.16xlarge', 'hpc7g.4xlarge', 'hpc7g.8xlarge', 'hpc7g.16xlarge', 'c7gn.medium', 'c7gn.large', 'c7gn.xlarge', 'c7gn.2xlarge', 'c7gn.4xlarge', 'c7gn.8xlarge', 'c7gn.12xlarge', 'c7gn.16xlarge', 'p5.48xlarge', 'm7i.large', 'm7i.xlarge', 'm7i.2xlarge', 'm7i.4xlarge', 'm7i.8xlarge', 'm7i.12xlarge', 'm7i.16xlarge', 'm7i.24xlarge', 'm7i.48xlarge', 'm7i-flex.large', 'm7i-flex.xlarge', 'm7i-flex.2xlarge', 'm7i-flex.4xlarge', 'm7i-flex.8xlarge', 'm7a.medium', 'm7a.large', 'm7a.xlarge', 'm7a.2xlarge', 'm7a.4xlarge', 'm7a.8xlarge', 'm7a.12xlarge', 'm7a.16xlarge', 'm7a.24xlarge', 'm7a.32xlarge', 'm7a.48xlarge', 'm7a.metal-48xl', 'hpc7a.12xlarge', 'hpc7a.24xlarge', 'hpc7a.48xlarge', 'hpc7a.96xlarge', 'c7gd.medium', 'c7gd.large', 'c7gd.xlarge', 'c7gd.2xlarge', 'c7gd.4xlarge', 'c7gd.8xlarge', 'c7gd.12xlarge', 'c7gd.16xlarge', 'm7gd.medium', 'm7gd.large', 'm7gd.xlarge', 'm7gd.2xlarge', 'm7gd.4xlarge', 'm7gd.8xlarge', 'm7gd.12xlarge', 'm7gd.16xlarge', 'r7gd.medium', 'r7gd.large', 'r7gd.xlarge', 'r7gd.2xlarge', 'r7gd.4xlarge', 'r7gd.8xlarge', 'r7gd.12xlarge', 'r7gd.16xlarge', 'r7a.medium', 'r7a.large', 'r7a.xlarge', 'r7a.2xlarge', 'r7a.4xlarge', 'r7a.8xlarge', 'r7a.12xlarge', 'r7a.16xlarge', 'r7a.24xlarge', 'r7a.32xlarge', 'r7a.48xlarge', 'c7i.large', 'c7i.xlarge', 'c7i.2xlarge', 'c7i.4xlarge', 'c7i.8xlarge', 'c7i.12xlarge', 'c7i.16xlarge', 'c7i.24xlarge', 'c7i.48xlarge', 'mac2-m2pro.metal', 'r7iz.large', 'r7iz.xlarge', 'r7iz.2xlarge', 'r7iz.4xlarge', 'r7iz.8xlarge', 'r7iz.12xlarge', 'r7iz.16xlarge', 'r7iz.32xlarge', 'c7a.medium', 'c7a.large', 'c7a.xlarge', 'c7a.2xlarge', 'c7a.4xlarge', 'c7a.8xlarge', 'c7a.12xlarge', 'c7a.16xlarge', 'c7a.24xlarge', 'c7a.32xlarge', 'c7a.48xlarge', 'c7a.metal-48xl', 'r7a.metal-48xl', 'r7i.large', 'r7i.xlarge', 'r7i.2xlarge', 'r7i.4xlarge', 'r7i.8xlarge', 'r7i.12xlarge', 'r7i.16xlarge', 'r7i.24xlarge', 'r7i.48xlarge', 'dl2q.24xlarge', 'mac2-m2.metal', 'i4i.12xlarge', 'i4i.24xlarge', 'c7i.metal-24xl', 'c7i.metal-48xl', 'm7i.metal-24xl', 'm7i.metal-48xl', 'r7i.metal-24xl', 'r7i.metal-48xl', 'r7iz.metal-16xl', 'r7iz.metal-32xl', ], ], 'InstanceTypeHypervisor' => [ 'type' => 'string', 'enum' => [ 'nitro', 'xen', ], ], 'InstanceTypeInfo' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'CurrentGeneration' => [ 'shape' => 'CurrentGenerationFlag', 'locationName' => 'currentGeneration', ], 'FreeTierEligible' => [ 'shape' => 'FreeTierEligibleFlag', 'locationName' => 'freeTierEligible', ], 'SupportedUsageClasses' => [ 'shape' => 'UsageClassTypeList', 'locationName' => 'supportedUsageClasses', ], 'SupportedRootDeviceTypes' => [ 'shape' => 'RootDeviceTypeList', 'locationName' => 'supportedRootDeviceTypes', ], 'SupportedVirtualizationTypes' => [ 'shape' => 'VirtualizationTypeList', 'locationName' => 'supportedVirtualizationTypes', ], 'BareMetal' => [ 'shape' => 'BareMetalFlag', 'locationName' => 'bareMetal', ], 'Hypervisor' => [ 'shape' => 'InstanceTypeHypervisor', 'locationName' => 'hypervisor', ], 'ProcessorInfo' => [ 'shape' => 'ProcessorInfo', 'locationName' => 'processorInfo', ], 'VCpuInfo' => [ 'shape' => 'VCpuInfo', 'locationName' => 'vCpuInfo', ], 'MemoryInfo' => [ 'shape' => 'MemoryInfo', 'locationName' => 'memoryInfo', ], 'InstanceStorageSupported' => [ 'shape' => 'InstanceStorageFlag', 'locationName' => 'instanceStorageSupported', ], 'InstanceStorageInfo' => [ 'shape' => 'InstanceStorageInfo', 'locationName' => 'instanceStorageInfo', ], 'EbsInfo' => [ 'shape' => 'EbsInfo', 'locationName' => 'ebsInfo', ], 'NetworkInfo' => [ 'shape' => 'NetworkInfo', 'locationName' => 'networkInfo', ], 'GpuInfo' => [ 'shape' => 'GpuInfo', 'locationName' => 'gpuInfo', ], 'FpgaInfo' => [ 'shape' => 'FpgaInfo', 'locationName' => 'fpgaInfo', ], 'PlacementGroupInfo' => [ 'shape' => 'PlacementGroupInfo', 'locationName' => 'placementGroupInfo', ], 'InferenceAcceleratorInfo' => [ 'shape' => 'InferenceAcceleratorInfo', 'locationName' => 'inferenceAcceleratorInfo', ], 'HibernationSupported' => [ 'shape' => 'HibernationFlag', 'locationName' => 'hibernationSupported', ], 'BurstablePerformanceSupported' => [ 'shape' => 'BurstablePerformanceFlag', 'locationName' => 'burstablePerformanceSupported', ], 'DedicatedHostsSupported' => [ 'shape' => 'DedicatedHostFlag', 'locationName' => 'dedicatedHostsSupported', ], 'AutoRecoverySupported' => [ 'shape' => 'AutoRecoveryFlag', 'locationName' => 'autoRecoverySupported', ], 'SupportedBootModes' => [ 'shape' => 'BootModeTypeList', 'locationName' => 'supportedBootModes', ], 'NitroEnclavesSupport' => [ 'shape' => 'NitroEnclavesSupport', 'locationName' => 'nitroEnclavesSupport', ], 'NitroTpmSupport' => [ 'shape' => 'NitroTpmSupport', 'locationName' => 'nitroTpmSupport', ], 'NitroTpmInfo' => [ 'shape' => 'NitroTpmInfo', 'locationName' => 'nitroTpmInfo', ], ], ], 'InstanceTypeInfoFromInstanceRequirements' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], ], ], 'InstanceTypeInfoFromInstanceRequirementsSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceTypeInfoFromInstanceRequirements', 'locationName' => 'item', ], ], 'InstanceTypeInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceTypeInfo', 'locationName' => 'item', ], ], 'InstanceTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceType', ], ], 'InstanceTypeOffering' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'LocationType' => [ 'shape' => 'LocationType', 'locationName' => 'locationType', ], 'Location' => [ 'shape' => 'Location', 'locationName' => 'location', ], ], ], 'InstanceTypeOfferingsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceTypeOffering', 'locationName' => 'item', ], ], 'InstanceTypes' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], 'max' => 1000, 'min' => 0, ], 'InstanceTypesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'InstanceUsage' => [ 'type' => 'structure', 'members' => [ 'AccountId' => [ 'shape' => 'String', 'locationName' => 'accountId', ], 'UsedInstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'usedInstanceCount', ], ], ], 'InstanceUsageSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceUsage', 'locationName' => 'item', ], ], 'Integer' => [ 'type' => 'integer', ], 'IntegerWithConstraints' => [ 'type' => 'integer', 'min' => 0, ], 'IntegrateServices' => [ 'type' => 'structure', 'members' => [ 'AthenaIntegrations' => [ 'shape' => 'AthenaIntegrationsSet', 'locationName' => 'AthenaIntegration', ], ], ], 'InterfacePermissionType' => [ 'type' => 'string', 'enum' => [ 'INSTANCE-ATTACH', 'EIP-ASSOCIATE', ], ], 'InterfaceProtocolType' => [ 'type' => 'string', 'enum' => [ 'VLAN', 'GRE', ], ], 'InternetGateway' => [ 'type' => 'structure', 'members' => [ 'Attachments' => [ 'shape' => 'InternetGatewayAttachmentList', 'locationName' => 'attachmentSet', ], 'InternetGatewayId' => [ 'shape' => 'String', 'locationName' => 'internetGatewayId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'InternetGatewayAttachment' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'AttachmentStatus', 'locationName' => 'state', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'InternetGatewayAttachmentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InternetGatewayAttachment', 'locationName' => 'item', ], ], 'InternetGatewayId' => [ 'type' => 'string', ], 'InternetGatewayIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InternetGatewayId', 'locationName' => 'item', ], ], 'InternetGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InternetGateway', 'locationName' => 'item', ], ], 'IpAddress' => [ 'type' => 'string', 'max' => 15, 'min' => 0, 'pattern' => '^([0-9]{1,3}.){3}[0-9]{1,3}$', ], 'IpAddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpAddress', 'locationName' => 'item', ], ], 'IpAddressType' => [ 'type' => 'string', 'enum' => [ 'ipv4', 'dualstack', 'ipv6', ], ], 'IpList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'IpPermission' => [ 'type' => 'structure', 'members' => [ 'FromPort' => [ 'shape' => 'Integer', 'locationName' => 'fromPort', ], 'IpProtocol' => [ 'shape' => 'String', 'locationName' => 'ipProtocol', ], 'IpRanges' => [ 'shape' => 'IpRangeList', 'locationName' => 'ipRanges', ], 'Ipv6Ranges' => [ 'shape' => 'Ipv6RangeList', 'locationName' => 'ipv6Ranges', ], 'PrefixListIds' => [ 'shape' => 'PrefixListIdList', 'locationName' => 'prefixListIds', ], 'ToPort' => [ 'shape' => 'Integer', 'locationName' => 'toPort', ], 'UserIdGroupPairs' => [ 'shape' => 'UserIdGroupPairList', 'locationName' => 'groups', ], ], ], 'IpPermissionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpPermission', 'locationName' => 'item', ], ], 'IpPrefixList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'IpRange' => [ 'type' => 'structure', 'members' => [ 'CidrIp' => [ 'shape' => 'String', 'locationName' => 'cidrIp', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], ], ], 'IpRangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpRange', 'locationName' => 'item', ], ], 'IpRanges' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'Ipam' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'IpamId' => [ 'shape' => 'IpamId', 'locationName' => 'ipamId', ], 'IpamArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ipamArn', ], 'IpamRegion' => [ 'shape' => 'String', 'locationName' => 'ipamRegion', ], 'PublicDefaultScopeId' => [ 'shape' => 'IpamScopeId', 'locationName' => 'publicDefaultScopeId', ], 'PrivateDefaultScopeId' => [ 'shape' => 'IpamScopeId', 'locationName' => 'privateDefaultScopeId', ], 'ScopeCount' => [ 'shape' => 'Integer', 'locationName' => 'scopeCount', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'OperatingRegions' => [ 'shape' => 'IpamOperatingRegionSet', 'locationName' => 'operatingRegionSet', ], 'State' => [ 'shape' => 'IpamState', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'DefaultResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', 'locationName' => 'defaultResourceDiscoveryId', ], 'DefaultResourceDiscoveryAssociationId' => [ 'shape' => 'IpamResourceDiscoveryAssociationId', 'locationName' => 'defaultResourceDiscoveryAssociationId', ], 'ResourceDiscoveryAssociationCount' => [ 'shape' => 'Integer', 'locationName' => 'resourceDiscoveryAssociationCount', ], 'StateMessage' => [ 'shape' => 'String', 'locationName' => 'stateMessage', ], 'Tier' => [ 'shape' => 'IpamTier', 'locationName' => 'tier', ], ], ], 'IpamAddressHistoryMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'IpamAddressHistoryRecord' => [ 'type' => 'structure', 'members' => [ 'ResourceOwnerId' => [ 'shape' => 'String', 'locationName' => 'resourceOwnerId', ], 'ResourceRegion' => [ 'shape' => 'String', 'locationName' => 'resourceRegion', ], 'ResourceType' => [ 'shape' => 'IpamAddressHistoryResourceType', 'locationName' => 'resourceType', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceCidr' => [ 'shape' => 'String', 'locationName' => 'resourceCidr', ], 'ResourceName' => [ 'shape' => 'String', 'locationName' => 'resourceName', ], 'ResourceComplianceStatus' => [ 'shape' => 'IpamComplianceStatus', 'locationName' => 'resourceComplianceStatus', ], 'ResourceOverlapStatus' => [ 'shape' => 'IpamOverlapStatus', 'locationName' => 'resourceOverlapStatus', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'SampledStartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'sampledStartTime', ], 'SampledEndTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'sampledEndTime', ], ], ], 'IpamAddressHistoryRecordSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamAddressHistoryRecord', 'locationName' => 'item', ], ], 'IpamAddressHistoryResourceType' => [ 'type' => 'string', 'enum' => [ 'eip', 'vpc', 'subnet', 'network-interface', 'instance', ], ], 'IpamAssociatedResourceDiscoveryStatus' => [ 'type' => 'string', 'enum' => [ 'active', 'not-found', ], ], 'IpamCidrAuthorizationContext' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'String', ], 'Signature' => [ 'shape' => 'String', ], ], ], 'IpamComplianceStatus' => [ 'type' => 'string', 'enum' => [ 'compliant', 'noncompliant', 'unmanaged', 'ignored', ], ], 'IpamDiscoveredAccount' => [ 'type' => 'structure', 'members' => [ 'AccountId' => [ 'shape' => 'String', 'locationName' => 'accountId', ], 'DiscoveryRegion' => [ 'shape' => 'String', 'locationName' => 'discoveryRegion', ], 'FailureReason' => [ 'shape' => 'IpamDiscoveryFailureReason', 'locationName' => 'failureReason', ], 'LastAttemptedDiscoveryTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lastAttemptedDiscoveryTime', ], 'LastSuccessfulDiscoveryTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lastSuccessfulDiscoveryTime', ], ], ], 'IpamDiscoveredAccountSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamDiscoveredAccount', 'locationName' => 'item', ], ], 'IpamDiscoveredPublicAddress' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', 'locationName' => 'ipamResourceDiscoveryId', ], 'AddressRegion' => [ 'shape' => 'String', 'locationName' => 'addressRegion', ], 'Address' => [ 'shape' => 'String', 'locationName' => 'address', ], 'AddressOwnerId' => [ 'shape' => 'String', 'locationName' => 'addressOwnerId', ], 'AddressAllocationId' => [ 'shape' => 'String', 'locationName' => 'addressAllocationId', ], 'AssociationStatus' => [ 'shape' => 'IpamPublicAddressAssociationStatus', 'locationName' => 'associationStatus', ], 'AddressType' => [ 'shape' => 'IpamPublicAddressType', 'locationName' => 'addressType', ], 'Service' => [ 'shape' => 'IpamPublicAddressAwsService', 'locationName' => 'service', ], 'ServiceResource' => [ 'shape' => 'String', 'locationName' => 'serviceResource', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'PublicIpv4PoolId' => [ 'shape' => 'String', 'locationName' => 'publicIpv4PoolId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'NetworkInterfaceDescription' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceDescription', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Tags' => [ 'shape' => 'IpamPublicAddressTags', 'locationName' => 'tags', ], 'NetworkBorderGroup' => [ 'shape' => 'String', 'locationName' => 'networkBorderGroup', ], 'SecurityGroups' => [ 'shape' => 'IpamPublicAddressSecurityGroupList', 'locationName' => 'securityGroupSet', ], 'SampleTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'sampleTime', ], ], ], 'IpamDiscoveredPublicAddressSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamDiscoveredPublicAddress', 'locationName' => 'item', ], ], 'IpamDiscoveredResourceCidr' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', 'locationName' => 'ipamResourceDiscoveryId', ], 'ResourceRegion' => [ 'shape' => 'String', 'locationName' => 'resourceRegion', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceOwnerId' => [ 'shape' => 'String', 'locationName' => 'resourceOwnerId', ], 'ResourceCidr' => [ 'shape' => 'String', 'locationName' => 'resourceCidr', ], 'ResourceType' => [ 'shape' => 'IpamResourceType', 'locationName' => 'resourceType', ], 'ResourceTags' => [ 'shape' => 'IpamResourceTagList', 'locationName' => 'resourceTagSet', ], 'IpUsage' => [ 'shape' => 'BoxedDouble', 'locationName' => 'ipUsage', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'SampleTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'sampleTime', ], ], ], 'IpamDiscoveredResourceCidrSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamDiscoveredResourceCidr', 'locationName' => 'item', ], ], 'IpamDiscoveryFailureCode' => [ 'type' => 'string', 'enum' => [ 'assume-role-failure', 'throttling-failure', 'unauthorized-failure', ], ], 'IpamDiscoveryFailureReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'IpamDiscoveryFailureCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'IpamId' => [ 'type' => 'string', ], 'IpamManagementState' => [ 'type' => 'string', 'enum' => [ 'managed', 'unmanaged', 'ignored', ], ], 'IpamMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'IpamNetmaskLength' => [ 'type' => 'integer', 'max' => 128, 'min' => 0, ], 'IpamOperatingRegion' => [ 'type' => 'structure', 'members' => [ 'RegionName' => [ 'shape' => 'String', 'locationName' => 'regionName', ], ], ], 'IpamOperatingRegionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamOperatingRegion', 'locationName' => 'item', ], ], 'IpamOverlapStatus' => [ 'type' => 'string', 'enum' => [ 'overlapping', 'nonoverlapping', 'ignored', ], ], 'IpamPool' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', 'locationName' => 'ipamPoolId', ], 'SourceIpamPoolId' => [ 'shape' => 'IpamPoolId', 'locationName' => 'sourceIpamPoolId', ], 'IpamPoolArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ipamPoolArn', ], 'IpamScopeArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ipamScopeArn', ], 'IpamScopeType' => [ 'shape' => 'IpamScopeType', 'locationName' => 'ipamScopeType', ], 'IpamArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ipamArn', ], 'IpamRegion' => [ 'shape' => 'String', 'locationName' => 'ipamRegion', ], 'Locale' => [ 'shape' => 'String', 'locationName' => 'locale', ], 'PoolDepth' => [ 'shape' => 'Integer', 'locationName' => 'poolDepth', ], 'State' => [ 'shape' => 'IpamPoolState', 'locationName' => 'state', ], 'StateMessage' => [ 'shape' => 'String', 'locationName' => 'stateMessage', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'AutoImport' => [ 'shape' => 'Boolean', 'locationName' => 'autoImport', ], 'PubliclyAdvertisable' => [ 'shape' => 'Boolean', 'locationName' => 'publiclyAdvertisable', ], 'AddressFamily' => [ 'shape' => 'AddressFamily', 'locationName' => 'addressFamily', ], 'AllocationMinNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', 'locationName' => 'allocationMinNetmaskLength', ], 'AllocationMaxNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', 'locationName' => 'allocationMaxNetmaskLength', ], 'AllocationDefaultNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', 'locationName' => 'allocationDefaultNetmaskLength', ], 'AllocationResourceTags' => [ 'shape' => 'IpamResourceTagList', 'locationName' => 'allocationResourceTagSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'AwsService' => [ 'shape' => 'IpamPoolAwsService', 'locationName' => 'awsService', ], 'PublicIpSource' => [ 'shape' => 'IpamPoolPublicIpSource', 'locationName' => 'publicIpSource', ], 'SourceResource' => [ 'shape' => 'IpamPoolSourceResource', 'locationName' => 'sourceResource', ], ], ], 'IpamPoolAllocation' => [ 'type' => 'structure', 'members' => [ 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'IpamPoolAllocationId' => [ 'shape' => 'IpamPoolAllocationId', 'locationName' => 'ipamPoolAllocationId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'IpamPoolAllocationResourceType', 'locationName' => 'resourceType', ], 'ResourceRegion' => [ 'shape' => 'String', 'locationName' => 'resourceRegion', ], 'ResourceOwner' => [ 'shape' => 'String', 'locationName' => 'resourceOwner', ], ], ], 'IpamPoolAllocationAllowedCidrs' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'IpamPoolAllocationDisallowedCidrs' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'IpamPoolAllocationId' => [ 'type' => 'string', ], 'IpamPoolAllocationResourceType' => [ 'type' => 'string', 'enum' => [ 'ipam-pool', 'vpc', 'ec2-public-ipv4-pool', 'custom', 'subnet', ], ], 'IpamPoolAllocationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamPoolAllocation', 'locationName' => 'item', ], ], 'IpamPoolAwsService' => [ 'type' => 'string', 'enum' => [ 'ec2', ], ], 'IpamPoolCidr' => [ 'type' => 'structure', 'members' => [ 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'State' => [ 'shape' => 'IpamPoolCidrState', 'locationName' => 'state', ], 'FailureReason' => [ 'shape' => 'IpamPoolCidrFailureReason', 'locationName' => 'failureReason', ], 'IpamPoolCidrId' => [ 'shape' => 'IpamPoolCidrId', 'locationName' => 'ipamPoolCidrId', ], 'NetmaskLength' => [ 'shape' => 'Integer', 'locationName' => 'netmaskLength', ], ], ], 'IpamPoolCidrFailureCode' => [ 'type' => 'string', 'enum' => [ 'cidr-not-available', 'limit-exceeded', ], ], 'IpamPoolCidrFailureReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'IpamPoolCidrFailureCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'IpamPoolCidrId' => [ 'type' => 'string', ], 'IpamPoolCidrSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamPoolCidr', 'locationName' => 'item', ], ], 'IpamPoolCidrState' => [ 'type' => 'string', 'enum' => [ 'pending-provision', 'provisioned', 'failed-provision', 'pending-deprovision', 'deprovisioned', 'failed-deprovision', 'pending-import', 'failed-import', ], ], 'IpamPoolId' => [ 'type' => 'string', ], 'IpamPoolPublicIpSource' => [ 'type' => 'string', 'enum' => [ 'amazon', 'byoip', ], ], 'IpamPoolSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamPool', 'locationName' => 'item', ], ], 'IpamPoolSourceResource' => [ 'type' => 'structure', 'members' => [ 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'IpamPoolSourceResourceType', 'locationName' => 'resourceType', ], 'ResourceRegion' => [ 'shape' => 'String', 'locationName' => 'resourceRegion', ], 'ResourceOwner' => [ 'shape' => 'String', 'locationName' => 'resourceOwner', ], ], ], 'IpamPoolSourceResourceRequest' => [ 'type' => 'structure', 'members' => [ 'ResourceId' => [ 'shape' => 'String', ], 'ResourceType' => [ 'shape' => 'IpamPoolSourceResourceType', ], 'ResourceRegion' => [ 'shape' => 'String', ], 'ResourceOwner' => [ 'shape' => 'String', ], ], ], 'IpamPoolSourceResourceType' => [ 'type' => 'string', 'enum' => [ 'vpc', ], ], 'IpamPoolState' => [ 'type' => 'string', 'enum' => [ 'create-in-progress', 'create-complete', 'create-failed', 'modify-in-progress', 'modify-complete', 'modify-failed', 'delete-in-progress', 'delete-complete', 'delete-failed', 'isolate-in-progress', 'isolate-complete', 'restore-in-progress', ], ], 'IpamPublicAddressAssociationStatus' => [ 'type' => 'string', 'enum' => [ 'associated', 'disassociated', ], ], 'IpamPublicAddressAwsService' => [ 'type' => 'string', 'enum' => [ 'nat-gateway', 'database-migration-service', 'redshift', 'elastic-container-service', 'relational-database-service', 'site-to-site-vpn', 'load-balancer', 'global-accelerator', 'other', ], ], 'IpamPublicAddressSecurityGroup' => [ 'type' => 'structure', 'members' => [ 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], ], ], 'IpamPublicAddressSecurityGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamPublicAddressSecurityGroup', 'locationName' => 'item', ], ], 'IpamPublicAddressTag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', 'locationName' => 'key', ], 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'IpamPublicAddressTagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamPublicAddressTag', 'locationName' => 'item', ], ], 'IpamPublicAddressTags' => [ 'type' => 'structure', 'members' => [ 'EipTags' => [ 'shape' => 'IpamPublicAddressTagList', 'locationName' => 'eipTagSet', ], ], ], 'IpamPublicAddressType' => [ 'type' => 'string', 'enum' => [ 'service-managed-ip', 'service-managed-byoip', 'amazon-owned-eip', 'byoip', 'ec2-public-ip', ], ], 'IpamResourceCidr' => [ 'type' => 'structure', 'members' => [ 'IpamId' => [ 'shape' => 'IpamId', 'locationName' => 'ipamId', ], 'IpamScopeId' => [ 'shape' => 'IpamScopeId', 'locationName' => 'ipamScopeId', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', 'locationName' => 'ipamPoolId', ], 'ResourceRegion' => [ 'shape' => 'String', 'locationName' => 'resourceRegion', ], 'ResourceOwnerId' => [ 'shape' => 'String', 'locationName' => 'resourceOwnerId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceName' => [ 'shape' => 'String', 'locationName' => 'resourceName', ], 'ResourceCidr' => [ 'shape' => 'String', 'locationName' => 'resourceCidr', ], 'ResourceType' => [ 'shape' => 'IpamResourceType', 'locationName' => 'resourceType', ], 'ResourceTags' => [ 'shape' => 'IpamResourceTagList', 'locationName' => 'resourceTagSet', ], 'IpUsage' => [ 'shape' => 'BoxedDouble', 'locationName' => 'ipUsage', ], 'ComplianceStatus' => [ 'shape' => 'IpamComplianceStatus', 'locationName' => 'complianceStatus', ], 'ManagementState' => [ 'shape' => 'IpamManagementState', 'locationName' => 'managementState', ], 'OverlapStatus' => [ 'shape' => 'IpamOverlapStatus', 'locationName' => 'overlapStatus', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'IpamResourceCidrSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamResourceCidr', 'locationName' => 'item', ], ], 'IpamResourceDiscovery' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', 'locationName' => 'ipamResourceDiscoveryId', ], 'IpamResourceDiscoveryArn' => [ 'shape' => 'String', 'locationName' => 'ipamResourceDiscoveryArn', ], 'IpamResourceDiscoveryRegion' => [ 'shape' => 'String', 'locationName' => 'ipamResourceDiscoveryRegion', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'OperatingRegions' => [ 'shape' => 'IpamOperatingRegionSet', 'locationName' => 'operatingRegionSet', ], 'IsDefault' => [ 'shape' => 'Boolean', 'locationName' => 'isDefault', ], 'State' => [ 'shape' => 'IpamResourceDiscoveryState', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'IpamResourceDiscoveryAssociation' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'IpamResourceDiscoveryAssociationId' => [ 'shape' => 'IpamResourceDiscoveryAssociationId', 'locationName' => 'ipamResourceDiscoveryAssociationId', ], 'IpamResourceDiscoveryAssociationArn' => [ 'shape' => 'String', 'locationName' => 'ipamResourceDiscoveryAssociationArn', ], 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', 'locationName' => 'ipamResourceDiscoveryId', ], 'IpamId' => [ 'shape' => 'IpamId', 'locationName' => 'ipamId', ], 'IpamArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ipamArn', ], 'IpamRegion' => [ 'shape' => 'String', 'locationName' => 'ipamRegion', ], 'IsDefault' => [ 'shape' => 'Boolean', 'locationName' => 'isDefault', ], 'ResourceDiscoveryStatus' => [ 'shape' => 'IpamAssociatedResourceDiscoveryStatus', 'locationName' => 'resourceDiscoveryStatus', ], 'State' => [ 'shape' => 'IpamResourceDiscoveryAssociationState', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'IpamResourceDiscoveryAssociationId' => [ 'type' => 'string', ], 'IpamResourceDiscoveryAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamResourceDiscoveryAssociation', 'locationName' => 'item', ], ], 'IpamResourceDiscoveryAssociationState' => [ 'type' => 'string', 'enum' => [ 'associate-in-progress', 'associate-complete', 'associate-failed', 'disassociate-in-progress', 'disassociate-complete', 'disassociate-failed', 'isolate-in-progress', 'isolate-complete', 'restore-in-progress', ], ], 'IpamResourceDiscoveryId' => [ 'type' => 'string', ], 'IpamResourceDiscoverySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamResourceDiscovery', 'locationName' => 'item', ], ], 'IpamResourceDiscoveryState' => [ 'type' => 'string', 'enum' => [ 'create-in-progress', 'create-complete', 'create-failed', 'modify-in-progress', 'modify-complete', 'modify-failed', 'delete-in-progress', 'delete-complete', 'delete-failed', 'isolate-in-progress', 'isolate-complete', 'restore-in-progress', ], ], 'IpamResourceTag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', 'locationName' => 'key', ], 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'IpamResourceTagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamResourceTag', 'locationName' => 'item', ], ], 'IpamResourceType' => [ 'type' => 'string', 'enum' => [ 'vpc', 'subnet', 'eip', 'public-ipv4-pool', 'ipv6-pool', 'eni', ], ], 'IpamScope' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'IpamScopeId' => [ 'shape' => 'IpamScopeId', 'locationName' => 'ipamScopeId', ], 'IpamScopeArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ipamScopeArn', ], 'IpamArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ipamArn', ], 'IpamRegion' => [ 'shape' => 'String', 'locationName' => 'ipamRegion', ], 'IpamScopeType' => [ 'shape' => 'IpamScopeType', 'locationName' => 'ipamScopeType', ], 'IsDefault' => [ 'shape' => 'Boolean', 'locationName' => 'isDefault', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'PoolCount' => [ 'shape' => 'Integer', 'locationName' => 'poolCount', ], 'State' => [ 'shape' => 'IpamScopeState', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'IpamScopeId' => [ 'type' => 'string', ], 'IpamScopeSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpamScope', 'locationName' => 'item', ], ], 'IpamScopeState' => [ 'type' => 'string', 'enum' => [ 'create-in-progress', 'create-complete', 'create-failed', 'modify-in-progress', 'modify-complete', 'modify-failed', 'delete-in-progress', 'delete-complete', 'delete-failed', 'isolate-in-progress', 'isolate-complete', 'restore-in-progress', ], ], 'IpamScopeType' => [ 'type' => 'string', 'enum' => [ 'public', 'private', ], ], 'IpamSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipam', 'locationName' => 'item', ], ], 'IpamState' => [ 'type' => 'string', 'enum' => [ 'create-in-progress', 'create-complete', 'create-failed', 'modify-in-progress', 'modify-complete', 'modify-failed', 'delete-in-progress', 'delete-complete', 'delete-failed', 'isolate-in-progress', 'isolate-complete', 'restore-in-progress', ], ], 'IpamTier' => [ 'type' => 'string', 'enum' => [ 'free', 'advanced', ], ], 'Ipv4PoolCoipId' => [ 'type' => 'string', ], 'Ipv4PoolEc2Id' => [ 'type' => 'string', ], 'Ipv4PrefixList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv4PrefixSpecificationRequest', 'locationName' => 'item', ], ], 'Ipv4PrefixListResponse' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv4PrefixSpecificationResponse', 'locationName' => 'item', ], ], 'Ipv4PrefixSpecification' => [ 'type' => 'structure', 'members' => [ 'Ipv4Prefix' => [ 'shape' => 'String', 'locationName' => 'ipv4Prefix', ], ], ], 'Ipv4PrefixSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'Ipv4Prefix' => [ 'shape' => 'String', ], ], ], 'Ipv4PrefixSpecificationResponse' => [ 'type' => 'structure', 'members' => [ 'Ipv4Prefix' => [ 'shape' => 'String', 'locationName' => 'ipv4Prefix', ], ], ], 'Ipv4PrefixesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv4PrefixSpecification', 'locationName' => 'item', ], ], 'Ipv6Address' => [ 'type' => 'string', ], 'Ipv6AddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'Ipv6CidrAssociation' => [ 'type' => 'structure', 'members' => [ 'Ipv6Cidr' => [ 'shape' => 'String', 'locationName' => 'ipv6Cidr', ], 'AssociatedResource' => [ 'shape' => 'String', 'locationName' => 'associatedResource', ], ], ], 'Ipv6CidrAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv6CidrAssociation', 'locationName' => 'item', ], ], 'Ipv6CidrBlock' => [ 'type' => 'structure', 'members' => [ 'Ipv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'ipv6CidrBlock', ], ], ], 'Ipv6CidrBlockSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv6CidrBlock', 'locationName' => 'item', ], ], 'Ipv6Flag' => [ 'type' => 'boolean', ], 'Ipv6Pool' => [ 'type' => 'structure', 'members' => [ 'PoolId' => [ 'shape' => 'String', 'locationName' => 'poolId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'PoolCidrBlocks' => [ 'shape' => 'PoolCidrBlocksSet', 'locationName' => 'poolCidrBlockSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'Ipv6PoolEc2Id' => [ 'type' => 'string', ], 'Ipv6PoolIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv6PoolEc2Id', 'locationName' => 'item', ], ], 'Ipv6PoolMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'Ipv6PoolSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv6Pool', 'locationName' => 'item', ], ], 'Ipv6PrefixList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv6PrefixSpecificationRequest', 'locationName' => 'item', ], ], 'Ipv6PrefixListResponse' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv6PrefixSpecificationResponse', 'locationName' => 'item', ], ], 'Ipv6PrefixSpecification' => [ 'type' => 'structure', 'members' => [ 'Ipv6Prefix' => [ 'shape' => 'String', 'locationName' => 'ipv6Prefix', ], ], ], 'Ipv6PrefixSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'Ipv6Prefix' => [ 'shape' => 'String', ], ], ], 'Ipv6PrefixSpecificationResponse' => [ 'type' => 'structure', 'members' => [ 'Ipv6Prefix' => [ 'shape' => 'String', 'locationName' => 'ipv6Prefix', ], ], ], 'Ipv6PrefixesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv6PrefixSpecification', 'locationName' => 'item', ], ], 'Ipv6Range' => [ 'type' => 'structure', 'members' => [ 'CidrIpv6' => [ 'shape' => 'String', 'locationName' => 'cidrIpv6', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], ], ], 'Ipv6RangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv6Range', 'locationName' => 'item', ], ], 'Ipv6SupportValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'KernelId' => [ 'type' => 'string', ], 'KeyFormat' => [ 'type' => 'string', 'enum' => [ 'pem', 'ppk', ], ], 'KeyNameStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'KeyPairName', 'locationName' => 'KeyName', ], ], 'KeyPair' => [ 'type' => 'structure', 'members' => [ 'KeyFingerprint' => [ 'shape' => 'String', 'locationName' => 'keyFingerprint', ], 'KeyMaterial' => [ 'shape' => 'SensitiveUserData', 'locationName' => 'keyMaterial', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'KeyPairId' => [ 'shape' => 'String', 'locationName' => 'keyPairId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'KeyPairId' => [ 'type' => 'string', ], 'KeyPairIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'KeyPairId', 'locationName' => 'KeyPairId', ], ], 'KeyPairInfo' => [ 'type' => 'structure', 'members' => [ 'KeyPairId' => [ 'shape' => 'String', 'locationName' => 'keyPairId', ], 'KeyFingerprint' => [ 'shape' => 'String', 'locationName' => 'keyFingerprint', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'KeyType' => [ 'shape' => 'KeyType', 'locationName' => 'keyType', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'PublicKey' => [ 'shape' => 'String', 'locationName' => 'publicKey', ], 'CreateTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'createTime', ], ], ], 'KeyPairList' => [ 'type' => 'list', 'member' => [ 'shape' => 'KeyPairInfo', 'locationName' => 'item', ], ], 'KeyPairName' => [ 'type' => 'string', ], 'KeyType' => [ 'type' => 'string', 'enum' => [ 'rsa', 'ed25519', ], ], 'KmsKeyArn' => [ 'type' => 'string', ], 'KmsKeyId' => [ 'type' => 'string', ], 'LastError' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], ], ], 'LaunchPermission' => [ 'type' => 'structure', 'members' => [ 'Group' => [ 'shape' => 'PermissionGroup', 'locationName' => 'group', ], 'UserId' => [ 'shape' => 'String', 'locationName' => 'userId', ], 'OrganizationArn' => [ 'shape' => 'String', 'locationName' => 'organizationArn', ], 'OrganizationalUnitArn' => [ 'shape' => 'String', 'locationName' => 'organizationalUnitArn', ], ], ], 'LaunchPermissionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchPermission', 'locationName' => 'item', ], ], 'LaunchPermissionModifications' => [ 'type' => 'structure', 'members' => [ 'Add' => [ 'shape' => 'LaunchPermissionList', ], 'Remove' => [ 'shape' => 'LaunchPermissionList', ], ], ], 'LaunchSpecification' => [ 'type' => 'structure', 'members' => [ 'UserData' => [ 'shape' => 'SensitiveUserData', 'locationName' => 'userData', ], 'SecurityGroups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'AddressingType' => [ 'shape' => 'String', 'locationName' => 'addressingType', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfileSpecification', 'locationName' => 'iamInstanceProfile', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'KernelId' => [ 'shape' => 'String', 'locationName' => 'kernelId', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'NetworkInterfaces' => [ 'shape' => 'InstanceNetworkInterfaceSpecificationList', 'locationName' => 'networkInterfaceSet', ], 'Placement' => [ 'shape' => 'SpotPlacement', 'locationName' => 'placement', ], 'RamdiskId' => [ 'shape' => 'String', 'locationName' => 'ramdiskId', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'Monitoring' => [ 'shape' => 'RunInstancesMonitoringEnabled', 'locationName' => 'monitoring', ], ], ], 'LaunchSpecsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotFleetLaunchSpecification', 'locationName' => 'item', ], ], 'LaunchTemplate' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'String', 'locationName' => 'launchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', 'locationName' => 'launchTemplateName', ], 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'CreatedBy' => [ 'shape' => 'String', 'locationName' => 'createdBy', ], 'DefaultVersionNumber' => [ 'shape' => 'Long', 'locationName' => 'defaultVersionNumber', ], 'LatestVersionNumber' => [ 'shape' => 'Long', 'locationName' => 'latestVersionNumber', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'LaunchTemplateAndOverridesResponse' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateSpecification' => [ 'shape' => 'FleetLaunchTemplateSpecification', 'locationName' => 'launchTemplateSpecification', ], 'Overrides' => [ 'shape' => 'FleetLaunchTemplateOverrides', 'locationName' => 'overrides', ], ], ], 'LaunchTemplateAutoRecoveryState' => [ 'type' => 'string', 'enum' => [ 'default', 'disabled', ], ], 'LaunchTemplateBlockDeviceMapping' => [ 'type' => 'structure', 'members' => [ 'DeviceName' => [ 'shape' => 'String', 'locationName' => 'deviceName', ], 'VirtualName' => [ 'shape' => 'String', 'locationName' => 'virtualName', ], 'Ebs' => [ 'shape' => 'LaunchTemplateEbsBlockDevice', 'locationName' => 'ebs', ], 'NoDevice' => [ 'shape' => 'String', 'locationName' => 'noDevice', ], ], ], 'LaunchTemplateBlockDeviceMappingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateBlockDeviceMapping', 'locationName' => 'item', ], ], 'LaunchTemplateBlockDeviceMappingRequest' => [ 'type' => 'structure', 'members' => [ 'DeviceName' => [ 'shape' => 'String', ], 'VirtualName' => [ 'shape' => 'String', ], 'Ebs' => [ 'shape' => 'LaunchTemplateEbsBlockDeviceRequest', ], 'NoDevice' => [ 'shape' => 'String', ], ], ], 'LaunchTemplateBlockDeviceMappingRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateBlockDeviceMappingRequest', 'locationName' => 'BlockDeviceMapping', ], ], 'LaunchTemplateCapacityReservationSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationPreference' => [ 'shape' => 'CapacityReservationPreference', ], 'CapacityReservationTarget' => [ 'shape' => 'CapacityReservationTarget', ], ], ], 'LaunchTemplateCapacityReservationSpecificationResponse' => [ 'type' => 'structure', 'members' => [ 'CapacityReservationPreference' => [ 'shape' => 'CapacityReservationPreference', 'locationName' => 'capacityReservationPreference', ], 'CapacityReservationTarget' => [ 'shape' => 'CapacityReservationTargetResponse', 'locationName' => 'capacityReservationTarget', ], ], ], 'LaunchTemplateConfig' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateSpecification' => [ 'shape' => 'FleetLaunchTemplateSpecification', 'locationName' => 'launchTemplateSpecification', ], 'Overrides' => [ 'shape' => 'LaunchTemplateOverridesList', 'locationName' => 'overrides', ], ], ], 'LaunchTemplateConfigList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateConfig', 'locationName' => 'item', ], ], 'LaunchTemplateCpuOptions' => [ 'type' => 'structure', 'members' => [ 'CoreCount' => [ 'shape' => 'Integer', 'locationName' => 'coreCount', ], 'ThreadsPerCore' => [ 'shape' => 'Integer', 'locationName' => 'threadsPerCore', ], 'AmdSevSnp' => [ 'shape' => 'AmdSevSnpSpecification', 'locationName' => 'amdSevSnp', ], ], ], 'LaunchTemplateCpuOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'CoreCount' => [ 'shape' => 'Integer', ], 'ThreadsPerCore' => [ 'shape' => 'Integer', ], 'AmdSevSnp' => [ 'shape' => 'AmdSevSnpSpecification', ], ], ], 'LaunchTemplateEbsBlockDevice' => [ 'type' => 'structure', 'members' => [ 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'Iops' => [ 'shape' => 'Integer', 'locationName' => 'iops', ], 'KmsKeyId' => [ 'shape' => 'KmsKeyId', 'locationName' => 'kmsKeyId', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', 'locationName' => 'snapshotId', ], 'VolumeSize' => [ 'shape' => 'Integer', 'locationName' => 'volumeSize', ], 'VolumeType' => [ 'shape' => 'VolumeType', 'locationName' => 'volumeType', ], 'Throughput' => [ 'shape' => 'Integer', 'locationName' => 'throughput', ], ], ], 'LaunchTemplateEbsBlockDeviceRequest' => [ 'type' => 'structure', 'members' => [ 'Encrypted' => [ 'shape' => 'Boolean', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', ], 'Iops' => [ 'shape' => 'Integer', ], 'KmsKeyId' => [ 'shape' => 'KmsKeyId', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'VolumeSize' => [ 'shape' => 'Integer', ], 'VolumeType' => [ 'shape' => 'VolumeType', ], 'Throughput' => [ 'shape' => 'Integer', ], ], ], 'LaunchTemplateElasticInferenceAccelerator' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'Type' => [ 'shape' => 'String', ], 'Count' => [ 'shape' => 'LaunchTemplateElasticInferenceAcceleratorCount', ], ], ], 'LaunchTemplateElasticInferenceAcceleratorCount' => [ 'type' => 'integer', 'min' => 1, ], 'LaunchTemplateElasticInferenceAcceleratorList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateElasticInferenceAccelerator', 'locationName' => 'item', ], ], 'LaunchTemplateElasticInferenceAcceleratorResponse' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'String', 'locationName' => 'type', ], 'Count' => [ 'shape' => 'Integer', 'locationName' => 'count', ], ], ], 'LaunchTemplateElasticInferenceAcceleratorResponseList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateElasticInferenceAcceleratorResponse', 'locationName' => 'item', ], ], 'LaunchTemplateEnaSrdSpecification' => [ 'type' => 'structure', 'members' => [ 'EnaSrdEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'enaSrdEnabled', ], 'EnaSrdUdpSpecification' => [ 'shape' => 'LaunchTemplateEnaSrdUdpSpecification', 'locationName' => 'enaSrdUdpSpecification', ], ], ], 'LaunchTemplateEnaSrdUdpSpecification' => [ 'type' => 'structure', 'members' => [ 'EnaSrdUdpEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'enaSrdUdpEnabled', ], ], ], 'LaunchTemplateEnclaveOptions' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], ], ], 'LaunchTemplateEnclaveOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], ], ], 'LaunchTemplateErrorCode' => [ 'type' => 'string', 'enum' => [ 'launchTemplateIdDoesNotExist', 'launchTemplateIdMalformed', 'launchTemplateNameDoesNotExist', 'launchTemplateNameMalformed', 'launchTemplateVersionDoesNotExist', 'unexpectedError', ], ], 'LaunchTemplateHibernationOptions' => [ 'type' => 'structure', 'members' => [ 'Configured' => [ 'shape' => 'Boolean', 'locationName' => 'configured', ], ], ], 'LaunchTemplateHibernationOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'Configured' => [ 'shape' => 'Boolean', ], ], ], 'LaunchTemplateHttpTokensState' => [ 'type' => 'string', 'enum' => [ 'optional', 'required', ], ], 'LaunchTemplateIamInstanceProfileSpecification' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', 'locationName' => 'arn', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], ], ], 'LaunchTemplateIamInstanceProfileSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', ], 'Name' => [ 'shape' => 'String', ], ], ], 'LaunchTemplateId' => [ 'type' => 'string', ], 'LaunchTemplateIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateId', 'locationName' => 'item', ], ], 'LaunchTemplateInstanceMaintenanceOptions' => [ 'type' => 'structure', 'members' => [ 'AutoRecovery' => [ 'shape' => 'LaunchTemplateAutoRecoveryState', 'locationName' => 'autoRecovery', ], ], ], 'LaunchTemplateInstanceMaintenanceOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'AutoRecovery' => [ 'shape' => 'LaunchTemplateAutoRecoveryState', ], ], ], 'LaunchTemplateInstanceMarketOptions' => [ 'type' => 'structure', 'members' => [ 'MarketType' => [ 'shape' => 'MarketType', 'locationName' => 'marketType', ], 'SpotOptions' => [ 'shape' => 'LaunchTemplateSpotMarketOptions', 'locationName' => 'spotOptions', ], ], ], 'LaunchTemplateInstanceMarketOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'MarketType' => [ 'shape' => 'MarketType', ], 'SpotOptions' => [ 'shape' => 'LaunchTemplateSpotMarketOptionsRequest', ], ], ], 'LaunchTemplateInstanceMetadataEndpointState' => [ 'type' => 'string', 'enum' => [ 'disabled', 'enabled', ], ], 'LaunchTemplateInstanceMetadataOptions' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'LaunchTemplateInstanceMetadataOptionsState', 'locationName' => 'state', ], 'HttpTokens' => [ 'shape' => 'LaunchTemplateHttpTokensState', 'locationName' => 'httpTokens', ], 'HttpPutResponseHopLimit' => [ 'shape' => 'Integer', 'locationName' => 'httpPutResponseHopLimit', ], 'HttpEndpoint' => [ 'shape' => 'LaunchTemplateInstanceMetadataEndpointState', 'locationName' => 'httpEndpoint', ], 'HttpProtocolIpv6' => [ 'shape' => 'LaunchTemplateInstanceMetadataProtocolIpv6', 'locationName' => 'httpProtocolIpv6', ], 'InstanceMetadataTags' => [ 'shape' => 'LaunchTemplateInstanceMetadataTagsState', 'locationName' => 'instanceMetadataTags', ], ], ], 'LaunchTemplateInstanceMetadataOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'HttpTokens' => [ 'shape' => 'LaunchTemplateHttpTokensState', ], 'HttpPutResponseHopLimit' => [ 'shape' => 'Integer', ], 'HttpEndpoint' => [ 'shape' => 'LaunchTemplateInstanceMetadataEndpointState', ], 'HttpProtocolIpv6' => [ 'shape' => 'LaunchTemplateInstanceMetadataProtocolIpv6', ], 'InstanceMetadataTags' => [ 'shape' => 'LaunchTemplateInstanceMetadataTagsState', ], ], ], 'LaunchTemplateInstanceMetadataOptionsState' => [ 'type' => 'string', 'enum' => [ 'pending', 'applied', ], ], 'LaunchTemplateInstanceMetadataProtocolIpv6' => [ 'type' => 'string', 'enum' => [ 'disabled', 'enabled', ], ], 'LaunchTemplateInstanceMetadataTagsState' => [ 'type' => 'string', 'enum' => [ 'disabled', 'enabled', ], ], 'LaunchTemplateInstanceNetworkInterfaceSpecification' => [ 'type' => 'structure', 'members' => [ 'AssociateCarrierIpAddress' => [ 'shape' => 'Boolean', 'locationName' => 'associateCarrierIpAddress', ], 'AssociatePublicIpAddress' => [ 'shape' => 'Boolean', 'locationName' => 'associatePublicIpAddress', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DeviceIndex' => [ 'shape' => 'Integer', 'locationName' => 'deviceIndex', ], 'Groups' => [ 'shape' => 'GroupIdStringList', 'locationName' => 'groupSet', ], 'InterfaceType' => [ 'shape' => 'String', 'locationName' => 'interfaceType', ], 'Ipv6AddressCount' => [ 'shape' => 'Integer', 'locationName' => 'ipv6AddressCount', ], 'Ipv6Addresses' => [ 'shape' => 'InstanceIpv6AddressList', 'locationName' => 'ipv6AddressesSet', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'PrivateIpAddresses' => [ 'shape' => 'PrivateIpAddressSpecificationList', 'locationName' => 'privateIpAddressesSet', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'secondaryPrivateIpAddressCount', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'NetworkCardIndex' => [ 'shape' => 'Integer', 'locationName' => 'networkCardIndex', ], 'Ipv4Prefixes' => [ 'shape' => 'Ipv4PrefixListResponse', 'locationName' => 'ipv4PrefixSet', ], 'Ipv4PrefixCount' => [ 'shape' => 'Integer', 'locationName' => 'ipv4PrefixCount', ], 'Ipv6Prefixes' => [ 'shape' => 'Ipv6PrefixListResponse', 'locationName' => 'ipv6PrefixSet', ], 'Ipv6PrefixCount' => [ 'shape' => 'Integer', 'locationName' => 'ipv6PrefixCount', ], 'PrimaryIpv6' => [ 'shape' => 'Boolean', 'locationName' => 'primaryIpv6', ], 'EnaSrdSpecification' => [ 'shape' => 'LaunchTemplateEnaSrdSpecification', 'locationName' => 'enaSrdSpecification', ], 'ConnectionTrackingSpecification' => [ 'shape' => 'ConnectionTrackingSpecification', 'locationName' => 'connectionTrackingSpecification', ], ], ], 'LaunchTemplateInstanceNetworkInterfaceSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateInstanceNetworkInterfaceSpecification', 'locationName' => 'item', ], ], 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'AssociateCarrierIpAddress' => [ 'shape' => 'Boolean', ], 'AssociatePublicIpAddress' => [ 'shape' => 'Boolean', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', ], 'Description' => [ 'shape' => 'String', ], 'DeviceIndex' => [ 'shape' => 'Integer', ], 'Groups' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'InterfaceType' => [ 'shape' => 'String', ], 'Ipv6AddressCount' => [ 'shape' => 'Integer', ], 'Ipv6Addresses' => [ 'shape' => 'InstanceIpv6AddressListRequest', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'PrivateIpAddress' => [ 'shape' => 'String', ], 'PrivateIpAddresses' => [ 'shape' => 'PrivateIpAddressSpecificationList', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'Integer', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], 'NetworkCardIndex' => [ 'shape' => 'Integer', ], 'Ipv4Prefixes' => [ 'shape' => 'Ipv4PrefixList', 'locationName' => 'Ipv4Prefix', ], 'Ipv4PrefixCount' => [ 'shape' => 'Integer', ], 'Ipv6Prefixes' => [ 'shape' => 'Ipv6PrefixList', 'locationName' => 'Ipv6Prefix', ], 'Ipv6PrefixCount' => [ 'shape' => 'Integer', ], 'PrimaryIpv6' => [ 'shape' => 'Boolean', ], 'EnaSrdSpecification' => [ 'shape' => 'EnaSrdSpecificationRequest', ], 'ConnectionTrackingSpecification' => [ 'shape' => 'ConnectionTrackingSpecificationRequest', ], ], ], 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest', 'locationName' => 'InstanceNetworkInterfaceSpecification', ], ], 'LaunchTemplateLicenseConfiguration' => [ 'type' => 'structure', 'members' => [ 'LicenseConfigurationArn' => [ 'shape' => 'String', 'locationName' => 'licenseConfigurationArn', ], ], ], 'LaunchTemplateLicenseConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'LicenseConfigurationArn' => [ 'shape' => 'String', ], ], ], 'LaunchTemplateLicenseList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateLicenseConfiguration', 'locationName' => 'item', ], ], 'LaunchTemplateLicenseSpecificationListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateLicenseConfigurationRequest', 'locationName' => 'item', ], ], 'LaunchTemplateName' => [ 'type' => 'string', 'max' => 128, 'min' => 3, 'pattern' => '[a-zA-Z0-9\\(\\)\\.\\-/_]+', ], 'LaunchTemplateNameStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateName', 'locationName' => 'item', ], ], 'LaunchTemplateOverrides' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'SpotPrice' => [ 'shape' => 'String', 'locationName' => 'spotPrice', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'WeightedCapacity' => [ 'shape' => 'Double', 'locationName' => 'weightedCapacity', ], 'Priority' => [ 'shape' => 'Double', 'locationName' => 'priority', ], 'InstanceRequirements' => [ 'shape' => 'InstanceRequirements', 'locationName' => 'instanceRequirements', ], ], ], 'LaunchTemplateOverridesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateOverrides', 'locationName' => 'item', ], ], 'LaunchTemplatePlacement' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Affinity' => [ 'shape' => 'String', 'locationName' => 'affinity', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'HostId' => [ 'shape' => 'String', 'locationName' => 'hostId', ], 'Tenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'tenancy', ], 'SpreadDomain' => [ 'shape' => 'String', 'locationName' => 'spreadDomain', ], 'HostResourceGroupArn' => [ 'shape' => 'String', 'locationName' => 'hostResourceGroupArn', ], 'PartitionNumber' => [ 'shape' => 'Integer', 'locationName' => 'partitionNumber', ], 'GroupId' => [ 'shape' => 'PlacementGroupId', 'locationName' => 'groupId', ], ], ], 'LaunchTemplatePlacementRequest' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', ], 'Affinity' => [ 'shape' => 'String', ], 'GroupName' => [ 'shape' => 'PlacementGroupName', ], 'HostId' => [ 'shape' => 'DedicatedHostId', ], 'Tenancy' => [ 'shape' => 'Tenancy', ], 'SpreadDomain' => [ 'shape' => 'String', ], 'HostResourceGroupArn' => [ 'shape' => 'String', ], 'PartitionNumber' => [ 'shape' => 'Integer', ], 'GroupId' => [ 'shape' => 'PlacementGroupId', ], ], ], 'LaunchTemplatePrivateDnsNameOptions' => [ 'type' => 'structure', 'members' => [ 'HostnameType' => [ 'shape' => 'HostnameType', 'locationName' => 'hostnameType', ], 'EnableResourceNameDnsARecord' => [ 'shape' => 'Boolean', 'locationName' => 'enableResourceNameDnsARecord', ], 'EnableResourceNameDnsAAAARecord' => [ 'shape' => 'Boolean', 'locationName' => 'enableResourceNameDnsAAAARecord', ], ], ], 'LaunchTemplatePrivateDnsNameOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'HostnameType' => [ 'shape' => 'HostnameType', ], 'EnableResourceNameDnsARecord' => [ 'shape' => 'Boolean', ], 'EnableResourceNameDnsAAAARecord' => [ 'shape' => 'Boolean', ], ], ], 'LaunchTemplateSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplate', 'locationName' => 'item', ], ], 'LaunchTemplateSpecification' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'String', ], 'Version' => [ 'shape' => 'String', ], ], ], 'LaunchTemplateSpotMarketOptions' => [ 'type' => 'structure', 'members' => [ 'MaxPrice' => [ 'shape' => 'String', 'locationName' => 'maxPrice', ], 'SpotInstanceType' => [ 'shape' => 'SpotInstanceType', 'locationName' => 'spotInstanceType', ], 'BlockDurationMinutes' => [ 'shape' => 'Integer', 'locationName' => 'blockDurationMinutes', ], 'ValidUntil' => [ 'shape' => 'DateTime', 'locationName' => 'validUntil', ], 'InstanceInterruptionBehavior' => [ 'shape' => 'InstanceInterruptionBehavior', 'locationName' => 'instanceInterruptionBehavior', ], ], ], 'LaunchTemplateSpotMarketOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'MaxPrice' => [ 'shape' => 'String', ], 'SpotInstanceType' => [ 'shape' => 'SpotInstanceType', ], 'BlockDurationMinutes' => [ 'shape' => 'Integer', ], 'ValidUntil' => [ 'shape' => 'DateTime', ], 'InstanceInterruptionBehavior' => [ 'shape' => 'InstanceInterruptionBehavior', ], ], ], 'LaunchTemplateTagSpecification' => [ 'type' => 'structure', 'members' => [ 'ResourceType' => [ 'shape' => 'ResourceType', 'locationName' => 'resourceType', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'LaunchTemplateTagSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateTagSpecification', 'locationName' => 'item', ], ], 'LaunchTemplateTagSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'ResourceType' => [ 'shape' => 'ResourceType', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'Tag', ], ], ], 'LaunchTemplateTagSpecificationRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateTagSpecificationRequest', 'locationName' => 'LaunchTemplateTagSpecificationRequest', ], ], 'LaunchTemplateVersion' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplateId' => [ 'shape' => 'String', 'locationName' => 'launchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', 'locationName' => 'launchTemplateName', ], 'VersionNumber' => [ 'shape' => 'Long', 'locationName' => 'versionNumber', ], 'VersionDescription' => [ 'shape' => 'VersionDescription', 'locationName' => 'versionDescription', ], 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'CreatedBy' => [ 'shape' => 'String', 'locationName' => 'createdBy', ], 'DefaultVersion' => [ 'shape' => 'Boolean', 'locationName' => 'defaultVersion', ], 'LaunchTemplateData' => [ 'shape' => 'ResponseLaunchTemplateData', 'locationName' => 'launchTemplateData', ], ], ], 'LaunchTemplateVersionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchTemplateVersion', 'locationName' => 'item', ], ], 'LaunchTemplatesMonitoring' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], ], ], 'LaunchTemplatesMonitoringRequest' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], ], ], 'LicenseConfiguration' => [ 'type' => 'structure', 'members' => [ 'LicenseConfigurationArn' => [ 'shape' => 'String', 'locationName' => 'licenseConfigurationArn', ], ], ], 'LicenseConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'LicenseConfigurationArn' => [ 'shape' => 'String', ], ], ], 'LicenseList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LicenseConfiguration', 'locationName' => 'item', ], ], 'LicenseSpecificationListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'LicenseConfigurationRequest', 'locationName' => 'item', ], ], 'ListImagesInRecycleBinMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'ListImagesInRecycleBinRequest' => [ 'type' => 'structure', 'members' => [ 'ImageIds' => [ 'shape' => 'ImageIdStringList', 'locationName' => 'ImageId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'ListImagesInRecycleBinMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ListImagesInRecycleBinResult' => [ 'type' => 'structure', 'members' => [ 'Images' => [ 'shape' => 'ImageRecycleBinInfoList', 'locationName' => 'imageSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'ListSnapshotsInRecycleBinMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'ListSnapshotsInRecycleBinRequest' => [ 'type' => 'structure', 'members' => [ 'MaxResults' => [ 'shape' => 'ListSnapshotsInRecycleBinMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'SnapshotIds' => [ 'shape' => 'SnapshotIdStringList', 'locationName' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ListSnapshotsInRecycleBinResult' => [ 'type' => 'structure', 'members' => [ 'Snapshots' => [ 'shape' => 'SnapshotRecycleBinInfoList', 'locationName' => 'snapshotSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'ListingState' => [ 'type' => 'string', 'enum' => [ 'available', 'sold', 'cancelled', 'pending', ], ], 'ListingStatus' => [ 'type' => 'string', 'enum' => [ 'active', 'pending', 'cancelled', 'closed', ], ], 'LoadBalancerArn' => [ 'type' => 'string', ], 'LoadBalancersConfig' => [ 'type' => 'structure', 'members' => [ 'ClassicLoadBalancersConfig' => [ 'shape' => 'ClassicLoadBalancersConfig', 'locationName' => 'classicLoadBalancersConfig', ], 'TargetGroupsConfig' => [ 'shape' => 'TargetGroupsConfig', 'locationName' => 'targetGroupsConfig', ], ], ], 'LoadPermission' => [ 'type' => 'structure', 'members' => [ 'UserId' => [ 'shape' => 'String', 'locationName' => 'userId', ], 'Group' => [ 'shape' => 'PermissionGroup', 'locationName' => 'group', ], ], ], 'LoadPermissionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LoadPermission', 'locationName' => 'item', ], ], 'LoadPermissionListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'LoadPermissionRequest', 'locationName' => 'item', ], ], 'LoadPermissionModifications' => [ 'type' => 'structure', 'members' => [ 'Add' => [ 'shape' => 'LoadPermissionListRequest', ], 'Remove' => [ 'shape' => 'LoadPermissionListRequest', ], ], ], 'LoadPermissionRequest' => [ 'type' => 'structure', 'members' => [ 'Group' => [ 'shape' => 'PermissionGroup', ], 'UserId' => [ 'shape' => 'String', ], ], ], 'LocalGateway' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayId' => [ 'shape' => 'LocalGatewayId', 'locationName' => 'localGatewayId', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'LocalGatewayId' => [ 'type' => 'string', ], 'LocalGatewayIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayId', 'locationName' => 'item', ], ], 'LocalGatewayMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'LocalGatewayRoute' => [ 'type' => 'structure', 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'LocalGatewayVirtualInterfaceGroupId' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupId', 'locationName' => 'localGatewayVirtualInterfaceGroupId', ], 'Type' => [ 'shape' => 'LocalGatewayRouteType', 'locationName' => 'type', ], 'State' => [ 'shape' => 'LocalGatewayRouteState', 'locationName' => 'state', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', 'locationName' => 'localGatewayRouteTableId', ], 'LocalGatewayRouteTableArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'localGatewayRouteTableArn', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'CoipPoolId' => [ 'shape' => 'CoipPoolId', 'locationName' => 'coipPoolId', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'DestinationPrefixListId' => [ 'shape' => 'PrefixListResourceId', 'locationName' => 'destinationPrefixListId', ], ], ], 'LocalGatewayRouteList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayRoute', 'locationName' => 'item', ], ], 'LocalGatewayRouteState' => [ 'type' => 'string', 'enum' => [ 'pending', 'active', 'blackhole', 'deleting', 'deleted', ], ], 'LocalGatewayRouteTable' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableId' => [ 'shape' => 'String', 'locationName' => 'localGatewayRouteTableId', ], 'LocalGatewayRouteTableArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'localGatewayRouteTableArn', ], 'LocalGatewayId' => [ 'shape' => 'LocalGatewayId', 'locationName' => 'localGatewayId', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'Mode' => [ 'shape' => 'LocalGatewayRouteTableMode', 'locationName' => 'mode', ], 'StateReason' => [ 'shape' => 'StateReason', 'locationName' => 'stateReason', ], ], ], 'LocalGatewayRouteTableIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayRoutetableId', 'locationName' => 'item', ], ], 'LocalGatewayRouteTableMode' => [ 'type' => 'string', 'enum' => [ 'direct-vpc-routing', 'coip', ], ], 'LocalGatewayRouteTableSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayRouteTable', 'locationName' => 'item', ], ], 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId' => [ 'shape' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId', 'locationName' => 'localGatewayRouteTableVirtualInterfaceGroupAssociationId', ], 'LocalGatewayVirtualInterfaceGroupId' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupId', 'locationName' => 'localGatewayVirtualInterfaceGroupId', ], 'LocalGatewayId' => [ 'shape' => 'String', 'locationName' => 'localGatewayId', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayId', 'locationName' => 'localGatewayRouteTableId', ], 'LocalGatewayRouteTableArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'localGatewayRouteTableArn', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId' => [ 'type' => 'string', ], 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId', 'locationName' => 'item', ], ], 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation', 'locationName' => 'item', ], ], 'LocalGatewayRouteTableVpcAssociation' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayRouteTableVpcAssociationId' => [ 'shape' => 'LocalGatewayRouteTableVpcAssociationId', 'locationName' => 'localGatewayRouteTableVpcAssociationId', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'String', 'locationName' => 'localGatewayRouteTableId', ], 'LocalGatewayRouteTableArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'localGatewayRouteTableArn', ], 'LocalGatewayId' => [ 'shape' => 'String', 'locationName' => 'localGatewayId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'LocalGatewayRouteTableVpcAssociationId' => [ 'type' => 'string', ], 'LocalGatewayRouteTableVpcAssociationIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayRouteTableVpcAssociationId', 'locationName' => 'item', ], ], 'LocalGatewayRouteTableVpcAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayRouteTableVpcAssociation', 'locationName' => 'item', ], ], 'LocalGatewayRouteType' => [ 'type' => 'string', 'enum' => [ 'static', 'propagated', ], ], 'LocalGatewayRoutetableId' => [ 'type' => 'string', ], 'LocalGatewaySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGateway', 'locationName' => 'item', ], ], 'LocalGatewayVirtualInterface' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayVirtualInterfaceId' => [ 'shape' => 'LocalGatewayVirtualInterfaceId', 'locationName' => 'localGatewayVirtualInterfaceId', ], 'LocalGatewayId' => [ 'shape' => 'String', 'locationName' => 'localGatewayId', ], 'Vlan' => [ 'shape' => 'Integer', 'locationName' => 'vlan', ], 'LocalAddress' => [ 'shape' => 'String', 'locationName' => 'localAddress', ], 'PeerAddress' => [ 'shape' => 'String', 'locationName' => 'peerAddress', ], 'LocalBgpAsn' => [ 'shape' => 'Integer', 'locationName' => 'localBgpAsn', ], 'PeerBgpAsn' => [ 'shape' => 'Integer', 'locationName' => 'peerBgpAsn', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'LocalGatewayVirtualInterfaceGroup' => [ 'type' => 'structure', 'members' => [ 'LocalGatewayVirtualInterfaceGroupId' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupId', 'locationName' => 'localGatewayVirtualInterfaceGroupId', ], 'LocalGatewayVirtualInterfaceIds' => [ 'shape' => 'LocalGatewayVirtualInterfaceIdSet', 'locationName' => 'localGatewayVirtualInterfaceIdSet', ], 'LocalGatewayId' => [ 'shape' => 'String', 'locationName' => 'localGatewayId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'LocalGatewayVirtualInterfaceGroupId' => [ 'type' => 'string', ], 'LocalGatewayVirtualInterfaceGroupIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupId', 'locationName' => 'item', ], ], 'LocalGatewayVirtualInterfaceGroupSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroup', 'locationName' => 'item', ], ], 'LocalGatewayVirtualInterfaceId' => [ 'type' => 'string', ], 'LocalGatewayVirtualInterfaceIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayVirtualInterfaceId', 'locationName' => 'item', ], ], 'LocalGatewayVirtualInterfaceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalGatewayVirtualInterface', 'locationName' => 'item', ], ], 'LocalStorage' => [ 'type' => 'string', 'enum' => [ 'included', 'required', 'excluded', ], ], 'LocalStorageType' => [ 'type' => 'string', 'enum' => [ 'hdd', 'ssd', ], ], 'LocalStorageTypeSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'LocalStorageType', 'locationName' => 'item', ], ], 'Location' => [ 'type' => 'string', ], 'LocationType' => [ 'type' => 'string', 'enum' => [ 'region', 'availability-zone', 'availability-zone-id', 'outpost', ], ], 'LockMode' => [ 'type' => 'string', 'enum' => [ 'compliance', 'governance', ], ], 'LockSnapshotRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', 'LockMode', ], 'members' => [ 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'LockMode' => [ 'shape' => 'LockMode', ], 'CoolOffPeriod' => [ 'shape' => 'CoolOffPeriodRequestHours', ], 'LockDuration' => [ 'shape' => 'RetentionPeriodRequestDays', ], 'ExpirationDate' => [ 'shape' => 'MillisecondDateTime', ], ], ], 'LockSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'LockState' => [ 'shape' => 'LockState', 'locationName' => 'lockState', ], 'LockDuration' => [ 'shape' => 'RetentionPeriodResponseDays', 'locationName' => 'lockDuration', ], 'CoolOffPeriod' => [ 'shape' => 'CoolOffPeriodResponseHours', 'locationName' => 'coolOffPeriod', ], 'CoolOffPeriodExpiresOn' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'coolOffPeriodExpiresOn', ], 'LockCreatedOn' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lockCreatedOn', ], 'LockExpiresOn' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lockExpiresOn', ], 'LockDurationStartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lockDurationStartTime', ], ], ], 'LockState' => [ 'type' => 'string', 'enum' => [ 'compliance', 'governance', 'compliance-cooloff', 'expired', ], ], 'LockedSnapshotsInfo' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'LockState' => [ 'shape' => 'LockState', 'locationName' => 'lockState', ], 'LockDuration' => [ 'shape' => 'RetentionPeriodResponseDays', 'locationName' => 'lockDuration', ], 'CoolOffPeriod' => [ 'shape' => 'CoolOffPeriodResponseHours', 'locationName' => 'coolOffPeriod', ], 'CoolOffPeriodExpiresOn' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'coolOffPeriodExpiresOn', ], 'LockCreatedOn' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lockCreatedOn', ], 'LockDurationStartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lockDurationStartTime', ], 'LockExpiresOn' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lockExpiresOn', ], ], ], 'LockedSnapshotsInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LockedSnapshotsInfo', 'locationName' => 'item', ], ], 'LogDestinationType' => [ 'type' => 'string', 'enum' => [ 'cloud-watch-logs', 's3', 'kinesis-data-firehose', ], ], 'Long' => [ 'type' => 'long', ], 'MaintenanceDetails' => [ 'type' => 'structure', 'members' => [ 'PendingMaintenance' => [ 'shape' => 'String', 'locationName' => 'pendingMaintenance', ], 'MaintenanceAutoAppliedAfter' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'maintenanceAutoAppliedAfter', ], 'LastMaintenanceApplied' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lastMaintenanceApplied', ], ], ], 'ManagedPrefixList' => [ 'type' => 'structure', 'members' => [ 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', 'locationName' => 'prefixListId', ], 'AddressFamily' => [ 'shape' => 'String', 'locationName' => 'addressFamily', ], 'State' => [ 'shape' => 'PrefixListState', 'locationName' => 'state', ], 'StateMessage' => [ 'shape' => 'String', 'locationName' => 'stateMessage', ], 'PrefixListArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'prefixListArn', ], 'PrefixListName' => [ 'shape' => 'String', 'locationName' => 'prefixListName', ], 'MaxEntries' => [ 'shape' => 'Integer', 'locationName' => 'maxEntries', ], 'Version' => [ 'shape' => 'Long', 'locationName' => 'version', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], ], ], 'ManagedPrefixListSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedPrefixList', 'locationName' => 'item', ], ], 'MarketType' => [ 'type' => 'string', 'enum' => [ 'spot', 'capacity-block', ], ], 'MaxIpv4AddrPerInterface' => [ 'type' => 'integer', ], 'MaxIpv6AddrPerInterface' => [ 'type' => 'integer', ], 'MaxNetworkInterfaces' => [ 'type' => 'integer', ], 'MaxResults' => [ 'type' => 'integer', ], 'MaxResultsParam' => [ 'type' => 'integer', 'max' => 100, 'min' => 0, ], 'MaximumBandwidthInMbps' => [ 'type' => 'integer', ], 'MaximumEfaInterfaces' => [ 'type' => 'integer', ], 'MaximumIops' => [ 'type' => 'integer', ], 'MaximumNetworkCards' => [ 'type' => 'integer', ], 'MaximumThroughputInMBps' => [ 'type' => 'double', ], 'MembershipType' => [ 'type' => 'string', 'enum' => [ 'static', 'igmp', ], ], 'MemoryGiBPerVCpu' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Double', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Double', 'locationName' => 'max', ], ], ], 'MemoryGiBPerVCpuRequest' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Double', ], 'Max' => [ 'shape' => 'Double', ], ], ], 'MemoryInfo' => [ 'type' => 'structure', 'members' => [ 'SizeInMiB' => [ 'shape' => 'MemorySize', 'locationName' => 'sizeInMiB', ], ], ], 'MemoryMiB' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Integer', 'locationName' => 'max', ], ], ], 'MemoryMiBRequest' => [ 'type' => 'structure', 'required' => [ 'Min', ], 'members' => [ 'Min' => [ 'shape' => 'Integer', ], 'Max' => [ 'shape' => 'Integer', ], ], ], 'MemorySize' => [ 'type' => 'long', ], 'MetricPoint' => [ 'type' => 'structure', 'members' => [ 'StartDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'startDate', ], 'EndDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'endDate', ], 'Value' => [ 'shape' => 'Float', 'locationName' => 'value', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], ], ], 'MetricPoints' => [ 'type' => 'list', 'member' => [ 'shape' => 'MetricPoint', 'locationName' => 'item', ], ], 'MetricType' => [ 'type' => 'string', 'enum' => [ 'aggregate-latency', ], ], 'MillisecondDateTime' => [ 'type' => 'timestamp', ], 'ModifyAddressAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'AllocationId', ], 'members' => [ 'AllocationId' => [ 'shape' => 'AllocationId', ], 'DomainName' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyAddressAttributeResult' => [ 'type' => 'structure', 'members' => [ 'Address' => [ 'shape' => 'AddressAttribute', 'locationName' => 'address', ], ], ], 'ModifyAvailabilityZoneGroupRequest' => [ 'type' => 'structure', 'required' => [ 'GroupName', 'OptInStatus', ], 'members' => [ 'GroupName' => [ 'shape' => 'String', ], 'OptInStatus' => [ 'shape' => 'ModifyAvailabilityZoneOptInStatus', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyAvailabilityZoneGroupResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyAvailabilityZoneOptInStatus' => [ 'type' => 'string', 'enum' => [ 'opted-in', 'not-opted-in', ], ], 'ModifyCapacityReservationFleetRequest' => [ 'type' => 'structure', 'required' => [ 'CapacityReservationFleetId', ], 'members' => [ 'CapacityReservationFleetId' => [ 'shape' => 'CapacityReservationFleetId', ], 'TotalTargetCapacity' => [ 'shape' => 'Integer', ], 'EndDate' => [ 'shape' => 'MillisecondDateTime', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'RemoveEndDate' => [ 'shape' => 'Boolean', ], ], ], 'ModifyCapacityReservationFleetResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyCapacityReservationRequest' => [ 'type' => 'structure', 'required' => [ 'CapacityReservationId', ], 'members' => [ 'CapacityReservationId' => [ 'shape' => 'CapacityReservationId', ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'EndDate' => [ 'shape' => 'DateTime', ], 'EndDateType' => [ 'shape' => 'EndDateType', ], 'Accept' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'AdditionalInfo' => [ 'shape' => 'String', ], ], ], 'ModifyCapacityReservationResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyClientVpnEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'ServerCertificateArn' => [ 'shape' => 'String', ], 'ConnectionLogOptions' => [ 'shape' => 'ConnectionLogOptions', ], 'DnsServers' => [ 'shape' => 'DnsServersOptionsModifyStructure', ], 'VpnPort' => [ 'shape' => 'Integer', ], 'Description' => [ 'shape' => 'String', ], 'SplitTunnel' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'SecurityGroupIds' => [ 'shape' => 'ClientVpnSecurityGroupIdSet', 'locationName' => 'SecurityGroupId', ], 'VpcId' => [ 'shape' => 'VpcId', ], 'SelfServicePortal' => [ 'shape' => 'SelfServicePortal', ], 'ClientConnectOptions' => [ 'shape' => 'ClientConnectOptions', ], 'SessionTimeoutHours' => [ 'shape' => 'Integer', ], 'ClientLoginBannerOptions' => [ 'shape' => 'ClientLoginBannerOptions', ], ], ], 'ModifyClientVpnEndpointResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyDefaultCreditSpecificationRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceFamily', 'CpuCredits', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceFamily' => [ 'shape' => 'UnlimitedSupportedInstanceFamily', ], 'CpuCredits' => [ 'shape' => 'String', ], ], ], 'ModifyDefaultCreditSpecificationResult' => [ 'type' => 'structure', 'members' => [ 'InstanceFamilyCreditSpecification' => [ 'shape' => 'InstanceFamilyCreditSpecification', 'locationName' => 'instanceFamilyCreditSpecification', ], ], ], 'ModifyEbsDefaultKmsKeyIdRequest' => [ 'type' => 'structure', 'required' => [ 'KmsKeyId', ], 'members' => [ 'KmsKeyId' => [ 'shape' => 'KmsKeyId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyEbsDefaultKmsKeyIdResult' => [ 'type' => 'structure', 'members' => [ 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], ], ], 'ModifyFleetRequest' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ExcessCapacityTerminationPolicy' => [ 'shape' => 'FleetExcessCapacityTerminationPolicy', ], 'LaunchTemplateConfigs' => [ 'shape' => 'FleetLaunchTemplateConfigListRequest', 'locationName' => 'LaunchTemplateConfig', ], 'FleetId' => [ 'shape' => 'FleetId', ], 'TargetCapacitySpecification' => [ 'shape' => 'TargetCapacitySpecificationRequest', ], 'Context' => [ 'shape' => 'String', ], ], ], 'ModifyFleetResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyFpgaImageAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'FpgaImageId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'FpgaImageId' => [ 'shape' => 'FpgaImageId', ], 'Attribute' => [ 'shape' => 'FpgaImageAttributeName', ], 'OperationType' => [ 'shape' => 'OperationType', ], 'UserIds' => [ 'shape' => 'UserIdStringList', 'locationName' => 'UserId', ], 'UserGroups' => [ 'shape' => 'UserGroupStringList', 'locationName' => 'UserGroup', ], 'ProductCodes' => [ 'shape' => 'ProductCodeStringList', 'locationName' => 'ProductCode', ], 'LoadPermission' => [ 'shape' => 'LoadPermissionModifications', ], 'Description' => [ 'shape' => 'String', ], 'Name' => [ 'shape' => 'String', ], ], ], 'ModifyFpgaImageAttributeResult' => [ 'type' => 'structure', 'members' => [ 'FpgaImageAttribute' => [ 'shape' => 'FpgaImageAttribute', 'locationName' => 'fpgaImageAttribute', ], ], ], 'ModifyHostsRequest' => [ 'type' => 'structure', 'required' => [ 'HostIds', ], 'members' => [ 'AutoPlacement' => [ 'shape' => 'AutoPlacement', 'locationName' => 'autoPlacement', ], 'HostIds' => [ 'shape' => 'RequestHostIdList', 'locationName' => 'hostId', ], 'HostRecovery' => [ 'shape' => 'HostRecovery', ], 'InstanceType' => [ 'shape' => 'String', ], 'InstanceFamily' => [ 'shape' => 'String', ], 'HostMaintenance' => [ 'shape' => 'HostMaintenance', ], ], ], 'ModifyHostsResult' => [ 'type' => 'structure', 'members' => [ 'Successful' => [ 'shape' => 'ResponseHostIdList', 'locationName' => 'successful', ], 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemList', 'locationName' => 'unsuccessful', ], ], ], 'ModifyIdFormatRequest' => [ 'type' => 'structure', 'required' => [ 'Resource', 'UseLongIds', ], 'members' => [ 'Resource' => [ 'shape' => 'String', ], 'UseLongIds' => [ 'shape' => 'Boolean', ], ], ], 'ModifyIdentityIdFormatRequest' => [ 'type' => 'structure', 'required' => [ 'PrincipalArn', 'Resource', 'UseLongIds', ], 'members' => [ 'PrincipalArn' => [ 'shape' => 'String', 'locationName' => 'principalArn', ], 'Resource' => [ 'shape' => 'String', 'locationName' => 'resource', ], 'UseLongIds' => [ 'shape' => 'Boolean', 'locationName' => 'useLongIds', ], ], ], 'ModifyImageAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'Attribute' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'AttributeValue', ], 'ImageId' => [ 'shape' => 'ImageId', ], 'LaunchPermission' => [ 'shape' => 'LaunchPermissionModifications', ], 'OperationType' => [ 'shape' => 'OperationType', ], 'ProductCodes' => [ 'shape' => 'ProductCodeStringList', 'locationName' => 'ProductCode', ], 'UserGroups' => [ 'shape' => 'UserGroupStringList', 'locationName' => 'UserGroup', ], 'UserIds' => [ 'shape' => 'UserIdStringList', 'locationName' => 'UserId', ], 'Value' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'OrganizationArns' => [ 'shape' => 'OrganizationArnStringList', 'locationName' => 'OrganizationArn', ], 'OrganizationalUnitArns' => [ 'shape' => 'OrganizationalUnitArnStringList', 'locationName' => 'OrganizationalUnitArn', ], 'ImdsSupport' => [ 'shape' => 'AttributeValue', ], ], ], 'ModifyInstanceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'SourceDestCheck' => [ 'shape' => 'AttributeBooleanValue', ], 'Attribute' => [ 'shape' => 'InstanceAttributeName', 'locationName' => 'attribute', ], 'BlockDeviceMappings' => [ 'shape' => 'InstanceBlockDeviceMappingSpecificationList', 'locationName' => 'blockDeviceMapping', ], 'DisableApiTermination' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'disableApiTermination', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'EbsOptimized' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'ebsOptimized', ], 'EnaSupport' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'enaSupport', ], 'Groups' => [ 'shape' => 'GroupIdStringList', 'locationName' => 'GroupId', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'InstanceInitiatedShutdownBehavior' => [ 'shape' => 'AttributeValue', 'locationName' => 'instanceInitiatedShutdownBehavior', ], 'InstanceType' => [ 'shape' => 'AttributeValue', 'locationName' => 'instanceType', ], 'Kernel' => [ 'shape' => 'AttributeValue', 'locationName' => 'kernel', ], 'Ramdisk' => [ 'shape' => 'AttributeValue', 'locationName' => 'ramdisk', ], 'SriovNetSupport' => [ 'shape' => 'AttributeValue', 'locationName' => 'sriovNetSupport', ], 'UserData' => [ 'shape' => 'BlobAttributeValue', 'locationName' => 'userData', ], 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], 'DisableApiStop' => [ 'shape' => 'AttributeBooleanValue', ], ], ], 'ModifyInstanceCapacityReservationAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'CapacityReservationSpecification', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'CapacityReservationSpecification' => [ 'shape' => 'CapacityReservationSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyInstanceCapacityReservationAttributesResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyInstanceCreditSpecificationRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceCreditSpecifications', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', ], 'InstanceCreditSpecifications' => [ 'shape' => 'InstanceCreditSpecificationListRequest', 'locationName' => 'InstanceCreditSpecification', ], ], ], 'ModifyInstanceCreditSpecificationResult' => [ 'type' => 'structure', 'members' => [ 'SuccessfulInstanceCreditSpecifications' => [ 'shape' => 'SuccessfulInstanceCreditSpecificationSet', 'locationName' => 'successfulInstanceCreditSpecificationSet', ], 'UnsuccessfulInstanceCreditSpecifications' => [ 'shape' => 'UnsuccessfulInstanceCreditSpecificationSet', 'locationName' => 'unsuccessfulInstanceCreditSpecificationSet', ], ], ], 'ModifyInstanceEventStartTimeRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'InstanceEventId', 'NotBefore', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceId' => [ 'shape' => 'InstanceId', ], 'InstanceEventId' => [ 'shape' => 'String', ], 'NotBefore' => [ 'shape' => 'DateTime', ], ], ], 'ModifyInstanceEventStartTimeResult' => [ 'type' => 'structure', 'members' => [ 'Event' => [ 'shape' => 'InstanceStatusEvent', 'locationName' => 'event', ], ], ], 'ModifyInstanceEventWindowRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceEventWindowId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Name' => [ 'shape' => 'String', ], 'InstanceEventWindowId' => [ 'shape' => 'InstanceEventWindowId', ], 'TimeRanges' => [ 'shape' => 'InstanceEventWindowTimeRangeRequestSet', 'locationName' => 'TimeRange', ], 'CronExpression' => [ 'shape' => 'InstanceEventWindowCronExpression', ], ], ], 'ModifyInstanceEventWindowResult' => [ 'type' => 'structure', 'members' => [ 'InstanceEventWindow' => [ 'shape' => 'InstanceEventWindow', 'locationName' => 'instanceEventWindow', ], ], ], 'ModifyInstanceMaintenanceOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'AutoRecovery' => [ 'shape' => 'InstanceAutoRecoveryState', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyInstanceMaintenanceOptionsResult' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'AutoRecovery' => [ 'shape' => 'InstanceAutoRecoveryState', 'locationName' => 'autoRecovery', ], ], ], 'ModifyInstanceMetadataOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'HttpTokens' => [ 'shape' => 'HttpTokensState', ], 'HttpPutResponseHopLimit' => [ 'shape' => 'Integer', ], 'HttpEndpoint' => [ 'shape' => 'InstanceMetadataEndpointState', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'HttpProtocolIpv6' => [ 'shape' => 'InstanceMetadataProtocolState', ], 'InstanceMetadataTags' => [ 'shape' => 'InstanceMetadataTagsState', ], ], ], 'ModifyInstanceMetadataOptionsResult' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceMetadataOptions' => [ 'shape' => 'InstanceMetadataOptionsResponse', 'locationName' => 'instanceMetadataOptions', ], ], ], 'ModifyInstancePlacementRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'Affinity' => [ 'shape' => 'Affinity', 'locationName' => 'affinity', ], 'GroupName' => [ 'shape' => 'PlacementGroupName', ], 'HostId' => [ 'shape' => 'DedicatedHostId', 'locationName' => 'hostId', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'Tenancy' => [ 'shape' => 'HostTenancy', 'locationName' => 'tenancy', ], 'PartitionNumber' => [ 'shape' => 'Integer', ], 'HostResourceGroupArn' => [ 'shape' => 'String', ], 'GroupId' => [ 'shape' => 'PlacementGroupId', ], ], ], 'ModifyInstancePlacementResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyIpamPoolRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Description' => [ 'shape' => 'String', ], 'AutoImport' => [ 'shape' => 'Boolean', ], 'AllocationMinNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', ], 'AllocationMaxNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', ], 'AllocationDefaultNetmaskLength' => [ 'shape' => 'IpamNetmaskLength', ], 'ClearAllocationDefaultNetmaskLength' => [ 'shape' => 'Boolean', ], 'AddAllocationResourceTags' => [ 'shape' => 'RequestIpamResourceTagList', 'locationName' => 'AddAllocationResourceTag', ], 'RemoveAllocationResourceTags' => [ 'shape' => 'RequestIpamResourceTagList', 'locationName' => 'RemoveAllocationResourceTag', ], ], ], 'ModifyIpamPoolResult' => [ 'type' => 'structure', 'members' => [ 'IpamPool' => [ 'shape' => 'IpamPool', 'locationName' => 'ipamPool', ], ], ], 'ModifyIpamRequest' => [ 'type' => 'structure', 'required' => [ 'IpamId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamId' => [ 'shape' => 'IpamId', ], 'Description' => [ 'shape' => 'String', ], 'AddOperatingRegions' => [ 'shape' => 'AddIpamOperatingRegionSet', 'locationName' => 'AddOperatingRegion', ], 'RemoveOperatingRegions' => [ 'shape' => 'RemoveIpamOperatingRegionSet', 'locationName' => 'RemoveOperatingRegion', ], 'Tier' => [ 'shape' => 'IpamTier', ], ], ], 'ModifyIpamResourceCidrRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceId', 'ResourceCidr', 'ResourceRegion', 'CurrentIpamScopeId', 'Monitored', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ResourceId' => [ 'shape' => 'String', ], 'ResourceCidr' => [ 'shape' => 'String', ], 'ResourceRegion' => [ 'shape' => 'String', ], 'CurrentIpamScopeId' => [ 'shape' => 'IpamScopeId', ], 'DestinationIpamScopeId' => [ 'shape' => 'IpamScopeId', ], 'Monitored' => [ 'shape' => 'Boolean', ], ], ], 'ModifyIpamResourceCidrResult' => [ 'type' => 'structure', 'members' => [ 'IpamResourceCidr' => [ 'shape' => 'IpamResourceCidr', 'locationName' => 'ipamResourceCidr', ], ], ], 'ModifyIpamResourceDiscoveryRequest' => [ 'type' => 'structure', 'required' => [ 'IpamResourceDiscoveryId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamResourceDiscoveryId' => [ 'shape' => 'IpamResourceDiscoveryId', ], 'Description' => [ 'shape' => 'String', ], 'AddOperatingRegions' => [ 'shape' => 'AddIpamOperatingRegionSet', 'locationName' => 'AddOperatingRegion', ], 'RemoveOperatingRegions' => [ 'shape' => 'RemoveIpamOperatingRegionSet', 'locationName' => 'RemoveOperatingRegion', ], ], ], 'ModifyIpamResourceDiscoveryResult' => [ 'type' => 'structure', 'members' => [ 'IpamResourceDiscovery' => [ 'shape' => 'IpamResourceDiscovery', 'locationName' => 'ipamResourceDiscovery', ], ], ], 'ModifyIpamResult' => [ 'type' => 'structure', 'members' => [ 'Ipam' => [ 'shape' => 'Ipam', 'locationName' => 'ipam', ], ], ], 'ModifyIpamScopeRequest' => [ 'type' => 'structure', 'required' => [ 'IpamScopeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamScopeId' => [ 'shape' => 'IpamScopeId', ], 'Description' => [ 'shape' => 'String', ], ], ], 'ModifyIpamScopeResult' => [ 'type' => 'structure', 'members' => [ 'IpamScope' => [ 'shape' => 'IpamScope', 'locationName' => 'ipamScope', ], ], ], 'ModifyLaunchTemplateRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', ], 'LaunchTemplateId' => [ 'shape' => 'LaunchTemplateId', ], 'LaunchTemplateName' => [ 'shape' => 'LaunchTemplateName', ], 'DefaultVersion' => [ 'shape' => 'String', 'locationName' => 'SetDefaultVersion', ], ], ], 'ModifyLaunchTemplateResult' => [ 'type' => 'structure', 'members' => [ 'LaunchTemplate' => [ 'shape' => 'LaunchTemplate', 'locationName' => 'launchTemplate', ], ], ], 'ModifyLocalGatewayRouteRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', ], 'LocalGatewayVirtualInterfaceGroupId' => [ 'shape' => 'LocalGatewayVirtualInterfaceGroupId', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'DestinationPrefixListId' => [ 'shape' => 'PrefixListResourceId', ], ], ], 'ModifyLocalGatewayRouteResult' => [ 'type' => 'structure', 'members' => [ 'Route' => [ 'shape' => 'LocalGatewayRoute', 'locationName' => 'route', ], ], ], 'ModifyManagedPrefixListRequest' => [ 'type' => 'structure', 'required' => [ 'PrefixListId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'CurrentVersion' => [ 'shape' => 'Long', ], 'PrefixListName' => [ 'shape' => 'String', ], 'AddEntries' => [ 'shape' => 'AddPrefixListEntries', 'locationName' => 'AddEntry', ], 'RemoveEntries' => [ 'shape' => 'RemovePrefixListEntries', 'locationName' => 'RemoveEntry', ], 'MaxEntries' => [ 'shape' => 'Integer', ], ], ], 'ModifyManagedPrefixListResult' => [ 'type' => 'structure', 'members' => [ 'PrefixList' => [ 'shape' => 'ManagedPrefixList', 'locationName' => 'prefixList', ], ], ], 'ModifyNetworkInterfaceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'Attachment' => [ 'shape' => 'NetworkInterfaceAttachmentChanges', 'locationName' => 'attachment', ], 'Description' => [ 'shape' => 'AttributeValue', 'locationName' => 'description', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Groups' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'SourceDestCheck' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'sourceDestCheck', ], 'EnaSrdSpecification' => [ 'shape' => 'EnaSrdSpecification', ], 'EnablePrimaryIpv6' => [ 'shape' => 'Boolean', ], 'ConnectionTrackingSpecification' => [ 'shape' => 'ConnectionTrackingSpecificationRequest', ], ], ], 'ModifyPrivateDnsNameOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceId' => [ 'shape' => 'InstanceId', ], 'PrivateDnsHostnameType' => [ 'shape' => 'HostnameType', ], 'EnableResourceNameDnsARecord' => [ 'shape' => 'Boolean', ], 'EnableResourceNameDnsAAAARecord' => [ 'shape' => 'Boolean', ], ], ], 'ModifyPrivateDnsNameOptionsResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyReservedInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'ReservedInstancesIds', 'TargetConfigurations', ], 'members' => [ 'ReservedInstancesIds' => [ 'shape' => 'ReservedInstancesIdStringList', 'locationName' => 'ReservedInstancesId', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'TargetConfigurations' => [ 'shape' => 'ReservedInstancesConfigurationList', 'locationName' => 'ReservedInstancesConfigurationSetItemType', ], ], ], 'ModifyReservedInstancesResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesModificationId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesModificationId', ], ], ], 'ModifySecurityGroupRulesRequest' => [ 'type' => 'structure', 'required' => [ 'GroupId', 'SecurityGroupRules', ], 'members' => [ 'GroupId' => [ 'shape' => 'SecurityGroupId', ], 'SecurityGroupRules' => [ 'shape' => 'SecurityGroupRuleUpdateList', 'locationName' => 'SecurityGroupRule', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifySecurityGroupRulesResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifySnapshotAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', ], 'members' => [ 'Attribute' => [ 'shape' => 'SnapshotAttributeName', ], 'CreateVolumePermission' => [ 'shape' => 'CreateVolumePermissionModifications', ], 'GroupNames' => [ 'shape' => 'GroupNameStringList', 'locationName' => 'UserGroup', ], 'OperationType' => [ 'shape' => 'OperationType', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'UserIds' => [ 'shape' => 'UserIdStringList', 'locationName' => 'UserId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'ModifySnapshotTierRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', ], 'members' => [ 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'StorageTier' => [ 'shape' => 'TargetStorageTier', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifySnapshotTierResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'TieringStartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'tieringStartTime', ], ], ], 'ModifySpotFleetRequestRequest' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestId', ], 'members' => [ 'ExcessCapacityTerminationPolicy' => [ 'shape' => 'ExcessCapacityTerminationPolicy', 'locationName' => 'excessCapacityTerminationPolicy', ], 'LaunchTemplateConfigs' => [ 'shape' => 'LaunchTemplateConfigList', 'locationName' => 'LaunchTemplateConfig', ], 'SpotFleetRequestId' => [ 'shape' => 'SpotFleetRequestId', 'locationName' => 'spotFleetRequestId', ], 'TargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'targetCapacity', ], 'OnDemandTargetCapacity' => [ 'shape' => 'Integer', ], 'Context' => [ 'shape' => 'String', ], ], ], 'ModifySpotFleetRequestResponse' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifySubnetAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', ], 'members' => [ 'AssignIpv6AddressOnCreation' => [ 'shape' => 'AttributeBooleanValue', ], 'MapPublicIpOnLaunch' => [ 'shape' => 'AttributeBooleanValue', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'MapCustomerOwnedIpOnLaunch' => [ 'shape' => 'AttributeBooleanValue', ], 'CustomerOwnedIpv4Pool' => [ 'shape' => 'CoipPoolId', ], 'EnableDns64' => [ 'shape' => 'AttributeBooleanValue', ], 'PrivateDnsHostnameTypeOnLaunch' => [ 'shape' => 'HostnameType', ], 'EnableResourceNameDnsARecordOnLaunch' => [ 'shape' => 'AttributeBooleanValue', ], 'EnableResourceNameDnsAAAARecordOnLaunch' => [ 'shape' => 'AttributeBooleanValue', ], 'EnableLniAtDeviceIndex' => [ 'shape' => 'Integer', ], 'DisableLniAtDeviceIndex' => [ 'shape' => 'AttributeBooleanValue', ], ], ], 'ModifyTrafficMirrorFilterNetworkServicesRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficMirrorFilterId', ], 'members' => [ 'TrafficMirrorFilterId' => [ 'shape' => 'TrafficMirrorFilterId', ], 'AddNetworkServices' => [ 'shape' => 'TrafficMirrorNetworkServiceList', 'locationName' => 'AddNetworkService', ], 'RemoveNetworkServices' => [ 'shape' => 'TrafficMirrorNetworkServiceList', 'locationName' => 'RemoveNetworkService', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyTrafficMirrorFilterNetworkServicesResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilter' => [ 'shape' => 'TrafficMirrorFilter', 'locationName' => 'trafficMirrorFilter', ], ], ], 'ModifyTrafficMirrorFilterRuleRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficMirrorFilterRuleId', ], 'members' => [ 'TrafficMirrorFilterRuleId' => [ 'shape' => 'TrafficMirrorFilterRuleIdWithResolver', ], 'TrafficDirection' => [ 'shape' => 'TrafficDirection', ], 'RuleNumber' => [ 'shape' => 'Integer', ], 'RuleAction' => [ 'shape' => 'TrafficMirrorRuleAction', ], 'DestinationPortRange' => [ 'shape' => 'TrafficMirrorPortRangeRequest', ], 'SourcePortRange' => [ 'shape' => 'TrafficMirrorPortRangeRequest', ], 'Protocol' => [ 'shape' => 'Integer', ], 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'SourceCidrBlock' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'RemoveFields' => [ 'shape' => 'TrafficMirrorFilterRuleFieldList', 'locationName' => 'RemoveField', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyTrafficMirrorFilterRuleResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilterRule' => [ 'shape' => 'TrafficMirrorFilterRule', 'locationName' => 'trafficMirrorFilterRule', ], ], ], 'ModifyTrafficMirrorSessionRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficMirrorSessionId', ], 'members' => [ 'TrafficMirrorSessionId' => [ 'shape' => 'TrafficMirrorSessionId', ], 'TrafficMirrorTargetId' => [ 'shape' => 'TrafficMirrorTargetId', ], 'TrafficMirrorFilterId' => [ 'shape' => 'TrafficMirrorFilterId', ], 'PacketLength' => [ 'shape' => 'Integer', ], 'SessionNumber' => [ 'shape' => 'Integer', ], 'VirtualNetworkId' => [ 'shape' => 'Integer', ], 'Description' => [ 'shape' => 'String', ], 'RemoveFields' => [ 'shape' => 'TrafficMirrorSessionFieldList', 'locationName' => 'RemoveField', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyTrafficMirrorSessionResult' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorSession' => [ 'shape' => 'TrafficMirrorSession', 'locationName' => 'trafficMirrorSession', ], ], ], 'ModifyTransitGatewayOptions' => [ 'type' => 'structure', 'members' => [ 'AddTransitGatewayCidrBlocks' => [ 'shape' => 'TransitGatewayCidrBlockStringList', ], 'RemoveTransitGatewayCidrBlocks' => [ 'shape' => 'TransitGatewayCidrBlockStringList', ], 'VpnEcmpSupport' => [ 'shape' => 'VpnEcmpSupportValue', ], 'DnsSupport' => [ 'shape' => 'DnsSupportValue', ], 'SecurityGroupReferencingSupport' => [ 'shape' => 'SecurityGroupReferencingSupportValue', ], 'AutoAcceptSharedAttachments' => [ 'shape' => 'AutoAcceptSharedAttachmentsValue', ], 'DefaultRouteTableAssociation' => [ 'shape' => 'DefaultRouteTableAssociationValue', ], 'AssociationDefaultRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'DefaultRouteTablePropagation' => [ 'shape' => 'DefaultRouteTablePropagationValue', ], 'PropagationDefaultRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'AmazonSideAsn' => [ 'shape' => 'Long', ], ], ], 'ModifyTransitGatewayPrefixListReferenceRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'PrefixListId', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'Blackhole' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyTransitGatewayPrefixListReferenceResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPrefixListReference' => [ 'shape' => 'TransitGatewayPrefixListReference', 'locationName' => 'transitGatewayPrefixListReference', ], ], ], 'ModifyTransitGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayId', ], 'members' => [ 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'Description' => [ 'shape' => 'String', ], 'Options' => [ 'shape' => 'ModifyTransitGatewayOptions', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyTransitGatewayResult' => [ 'type' => 'structure', 'members' => [ 'TransitGateway' => [ 'shape' => 'TransitGateway', 'locationName' => 'transitGateway', ], ], ], 'ModifyTransitGatewayVpcAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'AddSubnetIds' => [ 'shape' => 'TransitGatewaySubnetIdList', ], 'RemoveSubnetIds' => [ 'shape' => 'TransitGatewaySubnetIdList', ], 'Options' => [ 'shape' => 'ModifyTransitGatewayVpcAttachmentRequestOptions', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyTransitGatewayVpcAttachmentRequestOptions' => [ 'type' => 'structure', 'members' => [ 'DnsSupport' => [ 'shape' => 'DnsSupportValue', ], 'SecurityGroupReferencingSupport' => [ 'shape' => 'SecurityGroupReferencingSupportValue', ], 'Ipv6Support' => [ 'shape' => 'Ipv6SupportValue', ], 'ApplianceModeSupport' => [ 'shape' => 'ApplianceModeSupportValue', ], ], ], 'ModifyTransitGatewayVpcAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayVpcAttachment' => [ 'shape' => 'TransitGatewayVpcAttachment', 'locationName' => 'transitGatewayVpcAttachment', ], ], ], 'ModifyVerifiedAccessEndpointEniOptions' => [ 'type' => 'structure', 'members' => [ 'Protocol' => [ 'shape' => 'VerifiedAccessEndpointProtocol', ], 'Port' => [ 'shape' => 'VerifiedAccessEndpointPortNumber', ], ], ], 'ModifyVerifiedAccessEndpointLoadBalancerOptions' => [ 'type' => 'structure', 'members' => [ 'SubnetIds' => [ 'shape' => 'ModifyVerifiedAccessEndpointSubnetIdList', 'locationName' => 'SubnetId', ], 'Protocol' => [ 'shape' => 'VerifiedAccessEndpointProtocol', ], 'Port' => [ 'shape' => 'VerifiedAccessEndpointPortNumber', ], ], ], 'ModifyVerifiedAccessEndpointPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessEndpointId', ], 'members' => [ 'VerifiedAccessEndpointId' => [ 'shape' => 'VerifiedAccessEndpointId', ], 'PolicyEnabled' => [ 'shape' => 'Boolean', ], 'PolicyDocument' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationRequest', ], ], ], 'ModifyVerifiedAccessEndpointPolicyResult' => [ 'type' => 'structure', 'members' => [ 'PolicyEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'policyEnabled', ], 'PolicyDocument' => [ 'shape' => 'String', 'locationName' => 'policyDocument', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationResponse', 'locationName' => 'sseSpecification', ], ], ], 'ModifyVerifiedAccessEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessEndpointId', ], 'members' => [ 'VerifiedAccessEndpointId' => [ 'shape' => 'VerifiedAccessEndpointId', ], 'VerifiedAccessGroupId' => [ 'shape' => 'VerifiedAccessGroupId', ], 'LoadBalancerOptions' => [ 'shape' => 'ModifyVerifiedAccessEndpointLoadBalancerOptions', ], 'NetworkInterfaceOptions' => [ 'shape' => 'ModifyVerifiedAccessEndpointEniOptions', ], 'Description' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyVerifiedAccessEndpointResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessEndpoint' => [ 'shape' => 'VerifiedAccessEndpoint', 'locationName' => 'verifiedAccessEndpoint', ], ], ], 'ModifyVerifiedAccessEndpointSubnetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetId', 'locationName' => 'item', ], ], 'ModifyVerifiedAccessGroupPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessGroupId', ], 'members' => [ 'VerifiedAccessGroupId' => [ 'shape' => 'VerifiedAccessGroupId', ], 'PolicyEnabled' => [ 'shape' => 'Boolean', ], 'PolicyDocument' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationRequest', ], ], ], 'ModifyVerifiedAccessGroupPolicyResult' => [ 'type' => 'structure', 'members' => [ 'PolicyEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'policyEnabled', ], 'PolicyDocument' => [ 'shape' => 'String', 'locationName' => 'policyDocument', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationResponse', 'locationName' => 'sseSpecification', ], ], ], 'ModifyVerifiedAccessGroupRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessGroupId', ], 'members' => [ 'VerifiedAccessGroupId' => [ 'shape' => 'VerifiedAccessGroupId', ], 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'Description' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyVerifiedAccessGroupResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessGroup' => [ 'shape' => 'VerifiedAccessGroup', 'locationName' => 'verifiedAccessGroup', ], ], ], 'ModifyVerifiedAccessInstanceLoggingConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessInstanceId', 'AccessLogs', ], 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'AccessLogs' => [ 'shape' => 'VerifiedAccessLogOptions', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'ModifyVerifiedAccessInstanceLoggingConfigurationResult' => [ 'type' => 'structure', 'members' => [ 'LoggingConfiguration' => [ 'shape' => 'VerifiedAccessInstanceLoggingConfiguration', 'locationName' => 'loggingConfiguration', ], ], ], 'ModifyVerifiedAccessInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessInstanceId', ], 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'VerifiedAccessInstanceId', ], 'Description' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'ModifyVerifiedAccessInstanceResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstance' => [ 'shape' => 'VerifiedAccessInstance', 'locationName' => 'verifiedAccessInstance', ], ], ], 'ModifyVerifiedAccessTrustProviderDeviceOptions' => [ 'type' => 'structure', 'members' => [ 'PublicSigningKeyUrl' => [ 'shape' => 'String', ], ], ], 'ModifyVerifiedAccessTrustProviderOidcOptions' => [ 'type' => 'structure', 'members' => [ 'Issuer' => [ 'shape' => 'String', ], 'AuthorizationEndpoint' => [ 'shape' => 'String', ], 'TokenEndpoint' => [ 'shape' => 'String', ], 'UserInfoEndpoint' => [ 'shape' => 'String', ], 'ClientId' => [ 'shape' => 'String', ], 'ClientSecret' => [ 'shape' => 'ClientSecretType', ], 'Scope' => [ 'shape' => 'String', ], ], ], 'ModifyVerifiedAccessTrustProviderRequest' => [ 'type' => 'structure', 'required' => [ 'VerifiedAccessTrustProviderId', ], 'members' => [ 'VerifiedAccessTrustProviderId' => [ 'shape' => 'VerifiedAccessTrustProviderId', ], 'OidcOptions' => [ 'shape' => 'ModifyVerifiedAccessTrustProviderOidcOptions', ], 'DeviceOptions' => [ 'shape' => 'ModifyVerifiedAccessTrustProviderDeviceOptions', ], 'Description' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationRequest', ], ], ], 'ModifyVerifiedAccessTrustProviderResult' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProvider' => [ 'shape' => 'VerifiedAccessTrustProvider', 'locationName' => 'verifiedAccessTrustProvider', ], ], ], 'ModifyVolumeAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'AutoEnableIO' => [ 'shape' => 'AttributeBooleanValue', ], 'VolumeId' => [ 'shape' => 'VolumeId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'ModifyVolumeRequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VolumeId' => [ 'shape' => 'VolumeId', ], 'Size' => [ 'shape' => 'Integer', ], 'VolumeType' => [ 'shape' => 'VolumeType', ], 'Iops' => [ 'shape' => 'Integer', ], 'Throughput' => [ 'shape' => 'Integer', ], 'MultiAttachEnabled' => [ 'shape' => 'Boolean', ], ], ], 'ModifyVolumeResult' => [ 'type' => 'structure', 'members' => [ 'VolumeModification' => [ 'shape' => 'VolumeModification', 'locationName' => 'volumeModification', ], ], ], 'ModifyVpcAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'EnableDnsHostnames' => [ 'shape' => 'AttributeBooleanValue', ], 'EnableDnsSupport' => [ 'shape' => 'AttributeBooleanValue', ], 'VpcId' => [ 'shape' => 'VpcId', 'locationName' => 'vpcId', ], 'EnableNetworkAddressUsageMetrics' => [ 'shape' => 'AttributeBooleanValue', ], ], ], 'ModifyVpcEndpointConnectionNotificationRequest' => [ 'type' => 'structure', 'required' => [ 'ConnectionNotificationId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ConnectionNotificationId' => [ 'shape' => 'ConnectionNotificationId', ], 'ConnectionNotificationArn' => [ 'shape' => 'String', ], 'ConnectionEvents' => [ 'shape' => 'ValueStringList', ], ], ], 'ModifyVpcEndpointConnectionNotificationResult' => [ 'type' => 'structure', 'members' => [ 'ReturnValue' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyVpcEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'VpcEndpointId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VpcEndpointId' => [ 'shape' => 'VpcEndpointId', ], 'ResetPolicy' => [ 'shape' => 'Boolean', ], 'PolicyDocument' => [ 'shape' => 'String', ], 'AddRouteTableIds' => [ 'shape' => 'VpcEndpointRouteTableIdList', 'locationName' => 'AddRouteTableId', ], 'RemoveRouteTableIds' => [ 'shape' => 'VpcEndpointRouteTableIdList', 'locationName' => 'RemoveRouteTableId', ], 'AddSubnetIds' => [ 'shape' => 'VpcEndpointSubnetIdList', 'locationName' => 'AddSubnetId', ], 'RemoveSubnetIds' => [ 'shape' => 'VpcEndpointSubnetIdList', 'locationName' => 'RemoveSubnetId', ], 'AddSecurityGroupIds' => [ 'shape' => 'VpcEndpointSecurityGroupIdList', 'locationName' => 'AddSecurityGroupId', ], 'RemoveSecurityGroupIds' => [ 'shape' => 'VpcEndpointSecurityGroupIdList', 'locationName' => 'RemoveSecurityGroupId', ], 'IpAddressType' => [ 'shape' => 'IpAddressType', ], 'DnsOptions' => [ 'shape' => 'DnsOptionsSpecification', ], 'PrivateDnsEnabled' => [ 'shape' => 'Boolean', ], 'SubnetConfigurations' => [ 'shape' => 'SubnetConfigurationsList', 'locationName' => 'SubnetConfiguration', ], ], ], 'ModifyVpcEndpointResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyVpcEndpointServiceConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'ServiceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceId' => [ 'shape' => 'VpcEndpointServiceId', ], 'PrivateDnsName' => [ 'shape' => 'String', ], 'RemovePrivateDnsName' => [ 'shape' => 'Boolean', ], 'AcceptanceRequired' => [ 'shape' => 'Boolean', ], 'AddNetworkLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'AddNetworkLoadBalancerArn', ], 'RemoveNetworkLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'RemoveNetworkLoadBalancerArn', ], 'AddGatewayLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'AddGatewayLoadBalancerArn', ], 'RemoveGatewayLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'RemoveGatewayLoadBalancerArn', ], 'AddSupportedIpAddressTypes' => [ 'shape' => 'ValueStringList', 'locationName' => 'AddSupportedIpAddressType', ], 'RemoveSupportedIpAddressTypes' => [ 'shape' => 'ValueStringList', 'locationName' => 'RemoveSupportedIpAddressType', ], ], ], 'ModifyVpcEndpointServiceConfigurationResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyVpcEndpointServicePayerResponsibilityRequest' => [ 'type' => 'structure', 'required' => [ 'ServiceId', 'PayerResponsibility', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceId' => [ 'shape' => 'VpcEndpointServiceId', ], 'PayerResponsibility' => [ 'shape' => 'PayerResponsibility', ], ], ], 'ModifyVpcEndpointServicePayerResponsibilityResult' => [ 'type' => 'structure', 'members' => [ 'ReturnValue' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyVpcEndpointServicePermissionsRequest' => [ 'type' => 'structure', 'required' => [ 'ServiceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceId' => [ 'shape' => 'VpcEndpointServiceId', ], 'AddAllowedPrincipals' => [ 'shape' => 'ValueStringList', ], 'RemoveAllowedPrincipals' => [ 'shape' => 'ValueStringList', ], ], ], 'ModifyVpcEndpointServicePermissionsResult' => [ 'type' => 'structure', 'members' => [ 'AddedPrincipals' => [ 'shape' => 'AddedPrincipalSet', 'locationName' => 'addedPrincipalSet', ], 'ReturnValue' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyVpcPeeringConnectionOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'VpcPeeringConnectionId', ], 'members' => [ 'AccepterPeeringConnectionOptions' => [ 'shape' => 'PeeringConnectionOptionsRequest', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'RequesterPeeringConnectionOptions' => [ 'shape' => 'PeeringConnectionOptionsRequest', ], 'VpcPeeringConnectionId' => [ 'shape' => 'VpcPeeringConnectionId', ], ], ], 'ModifyVpcPeeringConnectionOptionsResult' => [ 'type' => 'structure', 'members' => [ 'AccepterPeeringConnectionOptions' => [ 'shape' => 'PeeringConnectionOptions', 'locationName' => 'accepterPeeringConnectionOptions', ], 'RequesterPeeringConnectionOptions' => [ 'shape' => 'PeeringConnectionOptions', 'locationName' => 'requesterPeeringConnectionOptions', ], ], ], 'ModifyVpcTenancyRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', 'InstanceTenancy', ], 'members' => [ 'VpcId' => [ 'shape' => 'VpcId', ], 'InstanceTenancy' => [ 'shape' => 'VpcTenancy', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyVpcTenancyResult' => [ 'type' => 'structure', 'members' => [ 'ReturnValue' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyVpnConnectionOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], 'LocalIpv4NetworkCidr' => [ 'shape' => 'String', ], 'RemoteIpv4NetworkCidr' => [ 'shape' => 'String', ], 'LocalIpv6NetworkCidr' => [ 'shape' => 'String', ], 'RemoteIpv6NetworkCidr' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyVpnConnectionOptionsResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnection' => [ 'shape' => 'VpnConnection', 'locationName' => 'vpnConnection', ], ], ], 'ModifyVpnConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'CustomerGatewayId' => [ 'shape' => 'CustomerGatewayId', ], 'VpnGatewayId' => [ 'shape' => 'VpnGatewayId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyVpnConnectionResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnection' => [ 'shape' => 'VpnConnection', 'locationName' => 'vpnConnection', ], ], ], 'ModifyVpnTunnelCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', 'VpnTunnelOutsideIpAddress', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], 'VpnTunnelOutsideIpAddress' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ModifyVpnTunnelCertificateResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnection' => [ 'shape' => 'VpnConnection', 'locationName' => 'vpnConnection', ], ], ], 'ModifyVpnTunnelOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', 'VpnTunnelOutsideIpAddress', 'TunnelOptions', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], 'VpnTunnelOutsideIpAddress' => [ 'shape' => 'String', ], 'TunnelOptions' => [ 'shape' => 'ModifyVpnTunnelOptionsSpecification', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'SkipTunnelReplacement' => [ 'shape' => 'Boolean', ], ], ], 'ModifyVpnTunnelOptionsResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnection' => [ 'shape' => 'VpnConnection', 'locationName' => 'vpnConnection', ], ], ], 'ModifyVpnTunnelOptionsSpecification' => [ 'type' => 'structure', 'members' => [ 'TunnelInsideCidr' => [ 'shape' => 'String', ], 'TunnelInsideIpv6Cidr' => [ 'shape' => 'String', ], 'PreSharedKey' => [ 'shape' => 'preSharedKey', ], 'Phase1LifetimeSeconds' => [ 'shape' => 'Integer', ], 'Phase2LifetimeSeconds' => [ 'shape' => 'Integer', ], 'RekeyMarginTimeSeconds' => [ 'shape' => 'Integer', ], 'RekeyFuzzPercentage' => [ 'shape' => 'Integer', ], 'ReplayWindowSize' => [ 'shape' => 'Integer', ], 'DPDTimeoutSeconds' => [ 'shape' => 'Integer', ], 'DPDTimeoutAction' => [ 'shape' => 'String', ], 'Phase1EncryptionAlgorithms' => [ 'shape' => 'Phase1EncryptionAlgorithmsRequestList', 'locationName' => 'Phase1EncryptionAlgorithm', ], 'Phase2EncryptionAlgorithms' => [ 'shape' => 'Phase2EncryptionAlgorithmsRequestList', 'locationName' => 'Phase2EncryptionAlgorithm', ], 'Phase1IntegrityAlgorithms' => [ 'shape' => 'Phase1IntegrityAlgorithmsRequestList', 'locationName' => 'Phase1IntegrityAlgorithm', ], 'Phase2IntegrityAlgorithms' => [ 'shape' => 'Phase2IntegrityAlgorithmsRequestList', 'locationName' => 'Phase2IntegrityAlgorithm', ], 'Phase1DHGroupNumbers' => [ 'shape' => 'Phase1DHGroupNumbersRequestList', 'locationName' => 'Phase1DHGroupNumber', ], 'Phase2DHGroupNumbers' => [ 'shape' => 'Phase2DHGroupNumbersRequestList', 'locationName' => 'Phase2DHGroupNumber', ], 'IKEVersions' => [ 'shape' => 'IKEVersionsRequestList', 'locationName' => 'IKEVersion', ], 'StartupAction' => [ 'shape' => 'String', ], 'LogOptions' => [ 'shape' => 'VpnTunnelLogOptionsSpecification', ], 'EnableTunnelLifecycleControl' => [ 'shape' => 'Boolean', ], ], 'sensitive' => true, ], 'MonitorInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'MonitorInstancesResult' => [ 'type' => 'structure', 'members' => [ 'InstanceMonitorings' => [ 'shape' => 'InstanceMonitoringList', 'locationName' => 'instancesSet', ], ], ], 'Monitoring' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'MonitoringState', 'locationName' => 'state', ], ], ], 'MonitoringState' => [ 'type' => 'string', 'enum' => [ 'disabled', 'disabling', 'enabled', 'pending', ], ], 'MoveAddressToVpcRequest' => [ 'type' => 'structure', 'required' => [ 'PublicIp', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], ], ], 'MoveAddressToVpcResult' => [ 'type' => 'structure', 'members' => [ 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'Status' => [ 'shape' => 'Status', 'locationName' => 'status', ], ], ], 'MoveByoipCidrToIpamRequest' => [ 'type' => 'structure', 'required' => [ 'Cidr', 'IpamPoolId', 'IpamPoolOwner', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Cidr' => [ 'shape' => 'String', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'IpamPoolOwner' => [ 'shape' => 'String', ], ], ], 'MoveByoipCidrToIpamResult' => [ 'type' => 'structure', 'members' => [ 'ByoipCidr' => [ 'shape' => 'ByoipCidr', 'locationName' => 'byoipCidr', ], ], ], 'MoveStatus' => [ 'type' => 'string', 'enum' => [ 'movingToVpc', 'restoringToClassic', ], ], 'MovingAddressStatus' => [ 'type' => 'structure', 'members' => [ 'MoveStatus' => [ 'shape' => 'MoveStatus', 'locationName' => 'moveStatus', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], ], ], 'MovingAddressStatusSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'MovingAddressStatus', 'locationName' => 'item', ], ], 'MulticastSupportValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'NatGateway' => [ 'type' => 'structure', 'members' => [ 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'DeleteTime' => [ 'shape' => 'DateTime', 'locationName' => 'deleteTime', ], 'FailureCode' => [ 'shape' => 'String', 'locationName' => 'failureCode', ], 'FailureMessage' => [ 'shape' => 'String', 'locationName' => 'failureMessage', ], 'NatGatewayAddresses' => [ 'shape' => 'NatGatewayAddressList', 'locationName' => 'natGatewayAddressSet', ], 'NatGatewayId' => [ 'shape' => 'String', 'locationName' => 'natGatewayId', ], 'ProvisionedBandwidth' => [ 'shape' => 'ProvisionedBandwidth', 'locationName' => 'provisionedBandwidth', ], 'State' => [ 'shape' => 'NatGatewayState', 'locationName' => 'state', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'ConnectivityType' => [ 'shape' => 'ConnectivityType', 'locationName' => 'connectivityType', ], ], ], 'NatGatewayAddress' => [ 'type' => 'structure', 'members' => [ 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'PrivateIp' => [ 'shape' => 'String', 'locationName' => 'privateIp', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'IsPrimary' => [ 'shape' => 'Boolean', 'locationName' => 'isPrimary', ], 'FailureMessage' => [ 'shape' => 'String', 'locationName' => 'failureMessage', ], 'Status' => [ 'shape' => 'NatGatewayAddressStatus', 'locationName' => 'status', ], ], ], 'NatGatewayAddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NatGatewayAddress', 'locationName' => 'item', ], ], 'NatGatewayAddressStatus' => [ 'type' => 'string', 'enum' => [ 'assigning', 'unassigning', 'associating', 'disassociating', 'succeeded', 'failed', ], ], 'NatGatewayId' => [ 'type' => 'string', ], 'NatGatewayIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NatGatewayId', 'locationName' => 'item', ], ], 'NatGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NatGateway', 'locationName' => 'item', ], ], 'NatGatewayState' => [ 'type' => 'string', 'enum' => [ 'pending', 'failed', 'available', 'deleting', 'deleted', ], ], 'NetmaskLength' => [ 'type' => 'integer', ], 'NetworkAcl' => [ 'type' => 'structure', 'members' => [ 'Associations' => [ 'shape' => 'NetworkAclAssociationList', 'locationName' => 'associationSet', ], 'Entries' => [ 'shape' => 'NetworkAclEntryList', 'locationName' => 'entrySet', ], 'IsDefault' => [ 'shape' => 'Boolean', 'locationName' => 'default', ], 'NetworkAclId' => [ 'shape' => 'String', 'locationName' => 'networkAclId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], ], ], 'NetworkAclAssociation' => [ 'type' => 'structure', 'members' => [ 'NetworkAclAssociationId' => [ 'shape' => 'String', 'locationName' => 'networkAclAssociationId', ], 'NetworkAclId' => [ 'shape' => 'String', 'locationName' => 'networkAclId', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], ], ], 'NetworkAclAssociationId' => [ 'type' => 'string', ], 'NetworkAclAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkAclAssociation', 'locationName' => 'item', ], ], 'NetworkAclEntry' => [ 'type' => 'structure', 'members' => [ 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'Egress' => [ 'shape' => 'Boolean', 'locationName' => 'egress', ], 'IcmpTypeCode' => [ 'shape' => 'IcmpTypeCode', 'locationName' => 'icmpTypeCode', ], 'Ipv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'ipv6CidrBlock', ], 'PortRange' => [ 'shape' => 'PortRange', 'locationName' => 'portRange', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], 'RuleAction' => [ 'shape' => 'RuleAction', 'locationName' => 'ruleAction', ], 'RuleNumber' => [ 'shape' => 'Integer', 'locationName' => 'ruleNumber', ], ], ], 'NetworkAclEntryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkAclEntry', 'locationName' => 'item', ], ], 'NetworkAclId' => [ 'type' => 'string', ], 'NetworkAclIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkAclId', 'locationName' => 'item', ], ], 'NetworkAclList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkAcl', 'locationName' => 'item', ], ], 'NetworkBandwidthGbps' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Double', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Double', 'locationName' => 'max', ], ], ], 'NetworkBandwidthGbpsRequest' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Double', ], 'Max' => [ 'shape' => 'Double', ], ], ], 'NetworkCardIndex' => [ 'type' => 'integer', ], 'NetworkCardInfo' => [ 'type' => 'structure', 'members' => [ 'NetworkCardIndex' => [ 'shape' => 'NetworkCardIndex', 'locationName' => 'networkCardIndex', ], 'NetworkPerformance' => [ 'shape' => 'NetworkPerformance', 'locationName' => 'networkPerformance', ], 'MaximumNetworkInterfaces' => [ 'shape' => 'MaxNetworkInterfaces', 'locationName' => 'maximumNetworkInterfaces', ], 'BaselineBandwidthInGbps' => [ 'shape' => 'BaselineBandwidthInGbps', 'locationName' => 'baselineBandwidthInGbps', ], 'PeakBandwidthInGbps' => [ 'shape' => 'PeakBandwidthInGbps', 'locationName' => 'peakBandwidthInGbps', ], ], ], 'NetworkCardInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkCardInfo', 'locationName' => 'item', ], ], 'NetworkInfo' => [ 'type' => 'structure', 'members' => [ 'NetworkPerformance' => [ 'shape' => 'NetworkPerformance', 'locationName' => 'networkPerformance', ], 'MaximumNetworkInterfaces' => [ 'shape' => 'MaxNetworkInterfaces', 'locationName' => 'maximumNetworkInterfaces', ], 'MaximumNetworkCards' => [ 'shape' => 'MaximumNetworkCards', 'locationName' => 'maximumNetworkCards', ], 'DefaultNetworkCardIndex' => [ 'shape' => 'DefaultNetworkCardIndex', 'locationName' => 'defaultNetworkCardIndex', ], 'NetworkCards' => [ 'shape' => 'NetworkCardInfoList', 'locationName' => 'networkCards', ], 'Ipv4AddressesPerInterface' => [ 'shape' => 'MaxIpv4AddrPerInterface', 'locationName' => 'ipv4AddressesPerInterface', ], 'Ipv6AddressesPerInterface' => [ 'shape' => 'MaxIpv6AddrPerInterface', 'locationName' => 'ipv6AddressesPerInterface', ], 'Ipv6Supported' => [ 'shape' => 'Ipv6Flag', 'locationName' => 'ipv6Supported', ], 'EnaSupport' => [ 'shape' => 'EnaSupport', 'locationName' => 'enaSupport', ], 'EfaSupported' => [ 'shape' => 'EfaSupportedFlag', 'locationName' => 'efaSupported', ], 'EfaInfo' => [ 'shape' => 'EfaInfo', 'locationName' => 'efaInfo', ], 'EncryptionInTransitSupported' => [ 'shape' => 'EncryptionInTransitSupported', 'locationName' => 'encryptionInTransitSupported', ], 'EnaSrdSupported' => [ 'shape' => 'EnaSrdSupported', 'locationName' => 'enaSrdSupported', ], ], ], 'NetworkInsightsAccessScope' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', 'locationName' => 'networkInsightsAccessScopeId', ], 'NetworkInsightsAccessScopeArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'networkInsightsAccessScopeArn', ], 'CreatedDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'createdDate', ], 'UpdatedDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'updatedDate', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'NetworkInsightsAccessScopeAnalysis' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeAnalysisId' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisId', 'locationName' => 'networkInsightsAccessScopeAnalysisId', ], 'NetworkInsightsAccessScopeAnalysisArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'networkInsightsAccessScopeAnalysisArn', ], 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', 'locationName' => 'networkInsightsAccessScopeId', ], 'Status' => [ 'shape' => 'AnalysisStatus', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'WarningMessage' => [ 'shape' => 'String', 'locationName' => 'warningMessage', ], 'StartDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'startDate', ], 'EndDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'endDate', ], 'FindingsFound' => [ 'shape' => 'FindingsFound', 'locationName' => 'findingsFound', ], 'AnalyzedEniCount' => [ 'shape' => 'Integer', 'locationName' => 'analyzedEniCount', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'NetworkInsightsAccessScopeAnalysisId' => [ 'type' => 'string', ], 'NetworkInsightsAccessScopeAnalysisIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysisId', 'locationName' => 'item', ], ], 'NetworkInsightsAccessScopeAnalysisList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysis', 'locationName' => 'item', ], ], 'NetworkInsightsAccessScopeContent' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', 'locationName' => 'networkInsightsAccessScopeId', ], 'MatchPaths' => [ 'shape' => 'AccessScopePathList', 'locationName' => 'matchPathSet', ], 'ExcludePaths' => [ 'shape' => 'AccessScopePathList', 'locationName' => 'excludePathSet', ], ], ], 'NetworkInsightsAccessScopeId' => [ 'type' => 'string', ], 'NetworkInsightsAccessScopeIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInsightsAccessScopeId', 'locationName' => 'item', ], ], 'NetworkInsightsAccessScopeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInsightsAccessScope', 'locationName' => 'item', ], ], 'NetworkInsightsAnalysis' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAnalysisId' => [ 'shape' => 'NetworkInsightsAnalysisId', 'locationName' => 'networkInsightsAnalysisId', ], 'NetworkInsightsAnalysisArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'networkInsightsAnalysisArn', ], 'NetworkInsightsPathId' => [ 'shape' => 'NetworkInsightsPathId', 'locationName' => 'networkInsightsPathId', ], 'AdditionalAccounts' => [ 'shape' => 'ValueStringList', 'locationName' => 'additionalAccountSet', ], 'FilterInArns' => [ 'shape' => 'ArnList', 'locationName' => 'filterInArnSet', ], 'StartDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'startDate', ], 'Status' => [ 'shape' => 'AnalysisStatus', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'WarningMessage' => [ 'shape' => 'String', 'locationName' => 'warningMessage', ], 'NetworkPathFound' => [ 'shape' => 'Boolean', 'locationName' => 'networkPathFound', ], 'ForwardPathComponents' => [ 'shape' => 'PathComponentList', 'locationName' => 'forwardPathComponentSet', ], 'ReturnPathComponents' => [ 'shape' => 'PathComponentList', 'locationName' => 'returnPathComponentSet', ], 'Explanations' => [ 'shape' => 'ExplanationList', 'locationName' => 'explanationSet', ], 'AlternatePathHints' => [ 'shape' => 'AlternatePathHintList', 'locationName' => 'alternatePathHintSet', ], 'SuggestedAccounts' => [ 'shape' => 'ValueStringList', 'locationName' => 'suggestedAccountSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'NetworkInsightsAnalysisId' => [ 'type' => 'string', ], 'NetworkInsightsAnalysisIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInsightsAnalysisId', 'locationName' => 'item', ], ], 'NetworkInsightsAnalysisList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInsightsAnalysis', 'locationName' => 'item', ], ], 'NetworkInsightsMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'NetworkInsightsPath' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsPathId' => [ 'shape' => 'NetworkInsightsPathId', 'locationName' => 'networkInsightsPathId', ], 'NetworkInsightsPathArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'networkInsightsPathArn', ], 'CreatedDate' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'createdDate', ], 'Source' => [ 'shape' => 'String', 'locationName' => 'source', ], 'Destination' => [ 'shape' => 'String', 'locationName' => 'destination', ], 'SourceArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'sourceArn', ], 'DestinationArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'destinationArn', ], 'SourceIp' => [ 'shape' => 'IpAddress', 'locationName' => 'sourceIp', ], 'DestinationIp' => [ 'shape' => 'IpAddress', 'locationName' => 'destinationIp', ], 'Protocol' => [ 'shape' => 'Protocol', 'locationName' => 'protocol', ], 'DestinationPort' => [ 'shape' => 'Integer', 'locationName' => 'destinationPort', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'FilterAtSource' => [ 'shape' => 'PathFilter', 'locationName' => 'filterAtSource', ], 'FilterAtDestination' => [ 'shape' => 'PathFilter', 'locationName' => 'filterAtDestination', ], ], ], 'NetworkInsightsPathId' => [ 'type' => 'string', ], 'NetworkInsightsPathIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInsightsPathId', 'locationName' => 'item', ], ], 'NetworkInsightsPathList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInsightsPath', 'locationName' => 'item', ], ], 'NetworkInsightsResourceId' => [ 'type' => 'string', ], 'NetworkInterface' => [ 'type' => 'structure', 'members' => [ 'Association' => [ 'shape' => 'NetworkInterfaceAssociation', 'locationName' => 'association', ], 'Attachment' => [ 'shape' => 'NetworkInterfaceAttachment', 'locationName' => 'attachment', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'ConnectionTrackingConfiguration' => [ 'shape' => 'ConnectionTrackingConfiguration', 'locationName' => 'connectionTrackingConfiguration', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'InterfaceType' => [ 'shape' => 'NetworkInterfaceType', 'locationName' => 'interfaceType', ], 'Ipv6Addresses' => [ 'shape' => 'NetworkInterfaceIpv6AddressesList', 'locationName' => 'ipv6AddressesSet', ], 'MacAddress' => [ 'shape' => 'String', 'locationName' => 'macAddress', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'PrivateIpAddresses' => [ 'shape' => 'NetworkInterfacePrivateIpAddressList', 'locationName' => 'privateIpAddressesSet', ], 'Ipv4Prefixes' => [ 'shape' => 'Ipv4PrefixesList', 'locationName' => 'ipv4PrefixSet', ], 'Ipv6Prefixes' => [ 'shape' => 'Ipv6PrefixesList', 'locationName' => 'ipv6PrefixSet', ], 'RequesterId' => [ 'shape' => 'String', 'locationName' => 'requesterId', ], 'RequesterManaged' => [ 'shape' => 'Boolean', 'locationName' => 'requesterManaged', ], 'SourceDestCheck' => [ 'shape' => 'Boolean', 'locationName' => 'sourceDestCheck', ], 'Status' => [ 'shape' => 'NetworkInterfaceStatus', 'locationName' => 'status', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'TagSet' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'DenyAllIgwTraffic' => [ 'shape' => 'Boolean', 'locationName' => 'denyAllIgwTraffic', ], 'Ipv6Native' => [ 'shape' => 'Boolean', 'locationName' => 'ipv6Native', ], 'Ipv6Address' => [ 'shape' => 'String', 'locationName' => 'ipv6Address', ], ], ], 'NetworkInterfaceAssociation' => [ 'type' => 'structure', 'members' => [ 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'IpOwnerId' => [ 'shape' => 'String', 'locationName' => 'ipOwnerId', ], 'PublicDnsName' => [ 'shape' => 'String', 'locationName' => 'publicDnsName', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'CustomerOwnedIp' => [ 'shape' => 'String', 'locationName' => 'customerOwnedIp', ], 'CarrierIp' => [ 'shape' => 'String', 'locationName' => 'carrierIp', ], ], ], 'NetworkInterfaceAttachment' => [ 'type' => 'structure', 'members' => [ 'AttachTime' => [ 'shape' => 'DateTime', 'locationName' => 'attachTime', ], 'AttachmentId' => [ 'shape' => 'String', 'locationName' => 'attachmentId', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'DeviceIndex' => [ 'shape' => 'Integer', 'locationName' => 'deviceIndex', ], 'NetworkCardIndex' => [ 'shape' => 'Integer', 'locationName' => 'networkCardIndex', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceOwnerId' => [ 'shape' => 'String', 'locationName' => 'instanceOwnerId', ], 'Status' => [ 'shape' => 'AttachmentStatus', 'locationName' => 'status', ], 'EnaSrdSpecification' => [ 'shape' => 'AttachmentEnaSrdSpecification', 'locationName' => 'enaSrdSpecification', ], ], ], 'NetworkInterfaceAttachmentChanges' => [ 'type' => 'structure', 'members' => [ 'AttachmentId' => [ 'shape' => 'NetworkInterfaceAttachmentId', 'locationName' => 'attachmentId', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], ], ], 'NetworkInterfaceAttachmentId' => [ 'type' => 'string', ], 'NetworkInterfaceAttribute' => [ 'type' => 'string', 'enum' => [ 'description', 'groupSet', 'sourceDestCheck', 'attachment', ], ], 'NetworkInterfaceCount' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Integer', 'locationName' => 'max', ], ], ], 'NetworkInterfaceCountRequest' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', ], 'Max' => [ 'shape' => 'Integer', ], ], ], 'NetworkInterfaceCreationType' => [ 'type' => 'string', 'enum' => [ 'efa', 'branch', 'trunk', ], ], 'NetworkInterfaceId' => [ 'type' => 'string', ], 'NetworkInterfaceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'item', ], ], 'NetworkInterfaceIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'NetworkInterfaceIpv6Address' => [ 'type' => 'structure', 'members' => [ 'Ipv6Address' => [ 'shape' => 'String', 'locationName' => 'ipv6Address', ], 'IsPrimaryIpv6' => [ 'shape' => 'Boolean', 'locationName' => 'isPrimaryIpv6', ], ], ], 'NetworkInterfaceIpv6AddressesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterfaceIpv6Address', 'locationName' => 'item', ], ], 'NetworkInterfaceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterface', 'locationName' => 'item', ], ], 'NetworkInterfacePermission' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfacePermissionId' => [ 'shape' => 'String', 'locationName' => 'networkInterfacePermissionId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'AwsAccountId' => [ 'shape' => 'String', 'locationName' => 'awsAccountId', ], 'AwsService' => [ 'shape' => 'String', 'locationName' => 'awsService', ], 'Permission' => [ 'shape' => 'InterfacePermissionType', 'locationName' => 'permission', ], 'PermissionState' => [ 'shape' => 'NetworkInterfacePermissionState', 'locationName' => 'permissionState', ], ], ], 'NetworkInterfacePermissionId' => [ 'type' => 'string', ], 'NetworkInterfacePermissionIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterfacePermissionId', ], ], 'NetworkInterfacePermissionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterfacePermission', 'locationName' => 'item', ], ], 'NetworkInterfacePermissionState' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'NetworkInterfacePermissionStateCode', 'locationName' => 'state', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], ], ], 'NetworkInterfacePermissionStateCode' => [ 'type' => 'string', 'enum' => [ 'pending', 'granted', 'revoking', 'revoked', ], ], 'NetworkInterfacePrivateIpAddress' => [ 'type' => 'structure', 'members' => [ 'Association' => [ 'shape' => 'NetworkInterfaceAssociation', 'locationName' => 'association', ], 'Primary' => [ 'shape' => 'Boolean', 'locationName' => 'primary', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], ], ], 'NetworkInterfacePrivateIpAddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterfacePrivateIpAddress', 'locationName' => 'item', ], ], 'NetworkInterfaceStatus' => [ 'type' => 'string', 'enum' => [ 'available', 'associated', 'attaching', 'in-use', 'detaching', ], ], 'NetworkInterfaceType' => [ 'type' => 'string', 'enum' => [ 'interface', 'natGateway', 'efa', 'trunk', 'load_balancer', 'network_load_balancer', 'vpc_endpoint', 'branch', 'transit_gateway', 'lambda', 'quicksight', 'global_accelerator_managed', 'api_gateway_managed', 'gateway_load_balancer', 'gateway_load_balancer_endpoint', 'iot_rules_managed', 'aws_codestar_connections_managed', ], ], 'NetworkNodesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'NetworkPerformance' => [ 'type' => 'string', ], 'NewDhcpConfiguration' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', 'locationName' => 'key', ], 'Values' => [ 'shape' => 'ValueStringList', 'locationName' => 'Value', ], ], ], 'NewDhcpConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NewDhcpConfiguration', 'locationName' => 'item', ], ], 'NextToken' => [ 'type' => 'string', ], 'NitroEnclavesSupport' => [ 'type' => 'string', 'enum' => [ 'unsupported', 'supported', ], ], 'NitroTpmInfo' => [ 'type' => 'structure', 'members' => [ 'SupportedVersions' => [ 'shape' => 'NitroTpmSupportedVersionsList', 'locationName' => 'supportedVersions', ], ], ], 'NitroTpmSupport' => [ 'type' => 'string', 'enum' => [ 'unsupported', 'supported', ], ], 'NitroTpmSupportedVersionType' => [ 'type' => 'string', ], 'NitroTpmSupportedVersionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NitroTpmSupportedVersionType', 'locationName' => 'item', ], ], 'OccurrenceDayRequestSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Integer', 'locationName' => 'OccurenceDay', ], ], 'OccurrenceDaySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Integer', 'locationName' => 'item', ], ], 'OfferingClassType' => [ 'type' => 'string', 'enum' => [ 'standard', 'convertible', ], ], 'OfferingId' => [ 'type' => 'string', ], 'OfferingTypeValues' => [ 'type' => 'string', 'enum' => [ 'Heavy Utilization', 'Medium Utilization', 'Light Utilization', 'No Upfront', 'Partial Upfront', 'All Upfront', ], ], 'OidcOptions' => [ 'type' => 'structure', 'members' => [ 'Issuer' => [ 'shape' => 'String', 'locationName' => 'issuer', ], 'AuthorizationEndpoint' => [ 'shape' => 'String', 'locationName' => 'authorizationEndpoint', ], 'TokenEndpoint' => [ 'shape' => 'String', 'locationName' => 'tokenEndpoint', ], 'UserInfoEndpoint' => [ 'shape' => 'String', 'locationName' => 'userInfoEndpoint', ], 'ClientId' => [ 'shape' => 'String', 'locationName' => 'clientId', ], 'ClientSecret' => [ 'shape' => 'ClientSecretType', 'locationName' => 'clientSecret', ], 'Scope' => [ 'shape' => 'String', 'locationName' => 'scope', ], ], ], 'OnDemandAllocationStrategy' => [ 'type' => 'string', 'enum' => [ 'lowestPrice', 'prioritized', ], ], 'OnDemandOptions' => [ 'type' => 'structure', 'members' => [ 'AllocationStrategy' => [ 'shape' => 'FleetOnDemandAllocationStrategy', 'locationName' => 'allocationStrategy', ], 'CapacityReservationOptions' => [ 'shape' => 'CapacityReservationOptions', 'locationName' => 'capacityReservationOptions', ], 'SingleInstanceType' => [ 'shape' => 'Boolean', 'locationName' => 'singleInstanceType', ], 'SingleAvailabilityZone' => [ 'shape' => 'Boolean', 'locationName' => 'singleAvailabilityZone', ], 'MinTargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'minTargetCapacity', ], 'MaxTotalPrice' => [ 'shape' => 'String', 'locationName' => 'maxTotalPrice', ], ], ], 'OnDemandOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'AllocationStrategy' => [ 'shape' => 'FleetOnDemandAllocationStrategy', ], 'CapacityReservationOptions' => [ 'shape' => 'CapacityReservationOptionsRequest', ], 'SingleInstanceType' => [ 'shape' => 'Boolean', ], 'SingleAvailabilityZone' => [ 'shape' => 'Boolean', ], 'MinTargetCapacity' => [ 'shape' => 'Integer', ], 'MaxTotalPrice' => [ 'shape' => 'String', ], ], ], 'OperationType' => [ 'type' => 'string', 'enum' => [ 'add', 'remove', ], ], 'OrganizationArnStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'OrganizationArn', ], ], 'OrganizationalUnitArnStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'OrganizationalUnitArn', ], ], 'OutpostArn' => [ 'type' => 'string', 'pattern' => '^arn:aws([a-z-]+)?:outposts:[a-z\\d-]+:\\d{12}:outpost/op-[a-f0-9]{17}$', ], 'OwnerStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'Owner', ], ], 'PacketHeaderStatement' => [ 'type' => 'structure', 'members' => [ 'SourceAddresses' => [ 'shape' => 'ValueStringList', 'locationName' => 'sourceAddressSet', ], 'DestinationAddresses' => [ 'shape' => 'ValueStringList', 'locationName' => 'destinationAddressSet', ], 'SourcePorts' => [ 'shape' => 'ValueStringList', 'locationName' => 'sourcePortSet', ], 'DestinationPorts' => [ 'shape' => 'ValueStringList', 'locationName' => 'destinationPortSet', ], 'SourcePrefixLists' => [ 'shape' => 'ValueStringList', 'locationName' => 'sourcePrefixListSet', ], 'DestinationPrefixLists' => [ 'shape' => 'ValueStringList', 'locationName' => 'destinationPrefixListSet', ], 'Protocols' => [ 'shape' => 'ProtocolList', 'locationName' => 'protocolSet', ], ], ], 'PacketHeaderStatementRequest' => [ 'type' => 'structure', 'members' => [ 'SourceAddresses' => [ 'shape' => 'ValueStringList', 'locationName' => 'SourceAddress', ], 'DestinationAddresses' => [ 'shape' => 'ValueStringList', 'locationName' => 'DestinationAddress', ], 'SourcePorts' => [ 'shape' => 'ValueStringList', 'locationName' => 'SourcePort', ], 'DestinationPorts' => [ 'shape' => 'ValueStringList', 'locationName' => 'DestinationPort', ], 'SourcePrefixLists' => [ 'shape' => 'ValueStringList', 'locationName' => 'SourcePrefixList', ], 'DestinationPrefixLists' => [ 'shape' => 'ValueStringList', 'locationName' => 'DestinationPrefixList', ], 'Protocols' => [ 'shape' => 'ProtocolList', 'locationName' => 'Protocol', ], ], ], 'PartitionLoadFrequency' => [ 'type' => 'string', 'enum' => [ 'none', 'daily', 'weekly', 'monthly', ], ], 'PasswordData' => [ 'type' => 'string', 'sensitive' => true, ], 'PathComponent' => [ 'type' => 'structure', 'members' => [ 'SequenceNumber' => [ 'shape' => 'Integer', 'locationName' => 'sequenceNumber', ], 'AclRule' => [ 'shape' => 'AnalysisAclRule', 'locationName' => 'aclRule', ], 'AttachedTo' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'attachedTo', ], 'Component' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'component', ], 'DestinationVpc' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'destinationVpc', ], 'OutboundHeader' => [ 'shape' => 'AnalysisPacketHeader', 'locationName' => 'outboundHeader', ], 'InboundHeader' => [ 'shape' => 'AnalysisPacketHeader', 'locationName' => 'inboundHeader', ], 'RouteTableRoute' => [ 'shape' => 'AnalysisRouteTableRoute', 'locationName' => 'routeTableRoute', ], 'SecurityGroupRule' => [ 'shape' => 'AnalysisSecurityGroupRule', 'locationName' => 'securityGroupRule', ], 'SourceVpc' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'sourceVpc', ], 'Subnet' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'subnet', ], 'Vpc' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'vpc', ], 'AdditionalDetails' => [ 'shape' => 'AdditionalDetailList', 'locationName' => 'additionalDetailSet', ], 'TransitGateway' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'transitGateway', ], 'TransitGatewayRouteTableRoute' => [ 'shape' => 'TransitGatewayRouteTableRoute', 'locationName' => 'transitGatewayRouteTableRoute', ], 'Explanations' => [ 'shape' => 'ExplanationList', 'locationName' => 'explanationSet', ], 'ElasticLoadBalancerListener' => [ 'shape' => 'AnalysisComponent', 'locationName' => 'elasticLoadBalancerListener', ], 'FirewallStatelessRule' => [ 'shape' => 'FirewallStatelessRule', 'locationName' => 'firewallStatelessRule', ], 'FirewallStatefulRule' => [ 'shape' => 'FirewallStatefulRule', 'locationName' => 'firewallStatefulRule', ], 'ServiceName' => [ 'shape' => 'String', 'locationName' => 'serviceName', ], ], ], 'PathComponentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PathComponent', 'locationName' => 'item', ], ], 'PathFilter' => [ 'type' => 'structure', 'members' => [ 'SourceAddress' => [ 'shape' => 'IpAddress', 'locationName' => 'sourceAddress', ], 'SourcePortRange' => [ 'shape' => 'FilterPortRange', 'locationName' => 'sourcePortRange', ], 'DestinationAddress' => [ 'shape' => 'IpAddress', 'locationName' => 'destinationAddress', ], 'DestinationPortRange' => [ 'shape' => 'FilterPortRange', 'locationName' => 'destinationPortRange', ], ], ], 'PathRequestFilter' => [ 'type' => 'structure', 'members' => [ 'SourceAddress' => [ 'shape' => 'IpAddress', ], 'SourcePortRange' => [ 'shape' => 'RequestFilterPortRange', ], 'DestinationAddress' => [ 'shape' => 'IpAddress', ], 'DestinationPortRange' => [ 'shape' => 'RequestFilterPortRange', ], ], ], 'PathStatement' => [ 'type' => 'structure', 'members' => [ 'PacketHeaderStatement' => [ 'shape' => 'PacketHeaderStatement', 'locationName' => 'packetHeaderStatement', ], 'ResourceStatement' => [ 'shape' => 'ResourceStatement', 'locationName' => 'resourceStatement', ], ], ], 'PathStatementRequest' => [ 'type' => 'structure', 'members' => [ 'PacketHeaderStatement' => [ 'shape' => 'PacketHeaderStatementRequest', ], 'ResourceStatement' => [ 'shape' => 'ResourceStatementRequest', ], ], ], 'PayerResponsibility' => [ 'type' => 'string', 'enum' => [ 'ServiceOwner', ], ], 'PaymentOption' => [ 'type' => 'string', 'enum' => [ 'AllUpfront', 'PartialUpfront', 'NoUpfront', ], ], 'PciId' => [ 'type' => 'structure', 'members' => [ 'DeviceId' => [ 'shape' => 'String', ], 'VendorId' => [ 'shape' => 'String', ], 'SubsystemId' => [ 'shape' => 'String', ], 'SubsystemVendorId' => [ 'shape' => 'String', ], ], ], 'PeakBandwidthInGbps' => [ 'type' => 'double', ], 'PeeringAttachmentStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'PeeringConnectionOptions' => [ 'type' => 'structure', 'members' => [ 'AllowDnsResolutionFromRemoteVpc' => [ 'shape' => 'Boolean', 'locationName' => 'allowDnsResolutionFromRemoteVpc', ], 'AllowEgressFromLocalClassicLinkToRemoteVpc' => [ 'shape' => 'Boolean', 'locationName' => 'allowEgressFromLocalClassicLinkToRemoteVpc', ], 'AllowEgressFromLocalVpcToRemoteClassicLink' => [ 'shape' => 'Boolean', 'locationName' => 'allowEgressFromLocalVpcToRemoteClassicLink', ], ], ], 'PeeringConnectionOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'AllowDnsResolutionFromRemoteVpc' => [ 'shape' => 'Boolean', ], 'AllowEgressFromLocalClassicLinkToRemoteVpc' => [ 'shape' => 'Boolean', ], 'AllowEgressFromLocalVpcToRemoteClassicLink' => [ 'shape' => 'Boolean', ], ], ], 'PeeringTgwInfo' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'CoreNetworkId' => [ 'shape' => 'String', 'locationName' => 'coreNetworkId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Region' => [ 'shape' => 'String', 'locationName' => 'region', ], ], ], 'PeriodType' => [ 'type' => 'string', 'enum' => [ 'five-minutes', 'fifteen-minutes', 'one-hour', 'three-hours', 'one-day', 'one-week', ], ], 'PermissionGroup' => [ 'type' => 'string', 'enum' => [ 'all', ], ], 'Phase1DHGroupNumbersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase1DHGroupNumbersListValue', 'locationName' => 'item', ], ], 'Phase1DHGroupNumbersListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'Integer', 'locationName' => 'value', ], ], ], 'Phase1DHGroupNumbersRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase1DHGroupNumbersRequestListValue', 'locationName' => 'item', ], ], 'Phase1DHGroupNumbersRequestListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'Integer', ], ], ], 'Phase1EncryptionAlgorithmsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase1EncryptionAlgorithmsListValue', 'locationName' => 'item', ], ], 'Phase1EncryptionAlgorithmsListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'Phase1EncryptionAlgorithmsRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase1EncryptionAlgorithmsRequestListValue', 'locationName' => 'item', ], ], 'Phase1EncryptionAlgorithmsRequestListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', ], ], ], 'Phase1IntegrityAlgorithmsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase1IntegrityAlgorithmsListValue', 'locationName' => 'item', ], ], 'Phase1IntegrityAlgorithmsListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'Phase1IntegrityAlgorithmsRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase1IntegrityAlgorithmsRequestListValue', 'locationName' => 'item', ], ], 'Phase1IntegrityAlgorithmsRequestListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', ], ], ], 'Phase2DHGroupNumbersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase2DHGroupNumbersListValue', 'locationName' => 'item', ], ], 'Phase2DHGroupNumbersListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'Integer', 'locationName' => 'value', ], ], ], 'Phase2DHGroupNumbersRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase2DHGroupNumbersRequestListValue', 'locationName' => 'item', ], ], 'Phase2DHGroupNumbersRequestListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'Integer', ], ], ], 'Phase2EncryptionAlgorithmsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase2EncryptionAlgorithmsListValue', 'locationName' => 'item', ], ], 'Phase2EncryptionAlgorithmsListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'Phase2EncryptionAlgorithmsRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase2EncryptionAlgorithmsRequestListValue', 'locationName' => 'item', ], ], 'Phase2EncryptionAlgorithmsRequestListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', ], ], ], 'Phase2IntegrityAlgorithmsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase2IntegrityAlgorithmsListValue', 'locationName' => 'item', ], ], 'Phase2IntegrityAlgorithmsListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'Phase2IntegrityAlgorithmsRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Phase2IntegrityAlgorithmsRequestListValue', 'locationName' => 'item', ], ], 'Phase2IntegrityAlgorithmsRequestListValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', ], ], ], 'Placement' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Affinity' => [ 'shape' => 'String', 'locationName' => 'affinity', ], 'GroupName' => [ 'shape' => 'PlacementGroupName', 'locationName' => 'groupName', ], 'PartitionNumber' => [ 'shape' => 'Integer', 'locationName' => 'partitionNumber', ], 'HostId' => [ 'shape' => 'String', 'locationName' => 'hostId', ], 'Tenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'tenancy', ], 'SpreadDomain' => [ 'shape' => 'String', 'locationName' => 'spreadDomain', ], 'HostResourceGroupArn' => [ 'shape' => 'String', 'locationName' => 'hostResourceGroupArn', ], 'GroupId' => [ 'shape' => 'PlacementGroupId', 'locationName' => 'groupId', ], ], ], 'PlacementGroup' => [ 'type' => 'structure', 'members' => [ 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'State' => [ 'shape' => 'PlacementGroupState', 'locationName' => 'state', ], 'Strategy' => [ 'shape' => 'PlacementStrategy', 'locationName' => 'strategy', ], 'PartitionCount' => [ 'shape' => 'Integer', 'locationName' => 'partitionCount', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'GroupArn' => [ 'shape' => 'String', 'locationName' => 'groupArn', ], 'SpreadLevel' => [ 'shape' => 'SpreadLevel', 'locationName' => 'spreadLevel', ], ], ], 'PlacementGroupArn' => [ 'type' => 'string', 'pattern' => '^arn:aws([a-z-]+)?:ec2:[a-z\\d-]+:\\d{12}:placement-group/^.{1,255}$', ], 'PlacementGroupId' => [ 'type' => 'string', ], 'PlacementGroupIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PlacementGroupId', 'locationName' => 'GroupId', ], ], 'PlacementGroupInfo' => [ 'type' => 'structure', 'members' => [ 'SupportedStrategies' => [ 'shape' => 'PlacementGroupStrategyList', 'locationName' => 'supportedStrategies', ], ], ], 'PlacementGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PlacementGroup', 'locationName' => 'item', ], ], 'PlacementGroupName' => [ 'type' => 'string', ], 'PlacementGroupState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'deleting', 'deleted', ], ], 'PlacementGroupStrategy' => [ 'type' => 'string', 'enum' => [ 'cluster', 'partition', 'spread', ], ], 'PlacementGroupStrategyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PlacementGroupStrategy', 'locationName' => 'item', ], ], 'PlacementGroupStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PlacementGroupName', ], ], 'PlacementResponse' => [ 'type' => 'structure', 'members' => [ 'GroupName' => [ 'shape' => 'PlacementGroupName', 'locationName' => 'groupName', ], ], ], 'PlacementStrategy' => [ 'type' => 'string', 'enum' => [ 'cluster', 'spread', 'partition', ], ], 'PlatformValues' => [ 'type' => 'string', 'enum' => [ 'Windows', ], ], 'PoolCidrBlock' => [ 'type' => 'structure', 'members' => [ 'Cidr' => [ 'shape' => 'String', 'locationName' => 'poolCidrBlock', ], ], ], 'PoolCidrBlocksSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PoolCidrBlock', 'locationName' => 'item', ], ], 'PoolMaxResults' => [ 'type' => 'integer', 'max' => 10, 'min' => 1, ], 'Port' => [ 'type' => 'integer', 'max' => 65535, 'min' => 0, ], 'PortRange' => [ 'type' => 'structure', 'members' => [ 'From' => [ 'shape' => 'Integer', 'locationName' => 'from', ], 'To' => [ 'shape' => 'Integer', 'locationName' => 'to', ], ], ], 'PortRangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PortRange', 'locationName' => 'item', ], ], 'PrefixList' => [ 'type' => 'structure', 'members' => [ 'Cidrs' => [ 'shape' => 'ValueStringList', 'locationName' => 'cidrSet', ], 'PrefixListId' => [ 'shape' => 'String', 'locationName' => 'prefixListId', ], 'PrefixListName' => [ 'shape' => 'String', 'locationName' => 'prefixListName', ], ], ], 'PrefixListAssociation' => [ 'type' => 'structure', 'members' => [ 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceOwner' => [ 'shape' => 'String', 'locationName' => 'resourceOwner', ], ], ], 'PrefixListAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrefixListAssociation', 'locationName' => 'item', ], ], 'PrefixListEntry' => [ 'type' => 'structure', 'members' => [ 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], ], ], 'PrefixListEntrySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrefixListEntry', 'locationName' => 'item', ], ], 'PrefixListId' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'PrefixListId' => [ 'shape' => 'String', 'locationName' => 'prefixListId', ], ], ], 'PrefixListIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrefixListId', 'locationName' => 'item', ], ], 'PrefixListIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'PrefixListMaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'PrefixListResourceId' => [ 'type' => 'string', ], 'PrefixListResourceIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrefixListResourceId', 'locationName' => 'item', ], ], 'PrefixListSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrefixList', 'locationName' => 'item', ], ], 'PrefixListState' => [ 'type' => 'string', 'enum' => [ 'create-in-progress', 'create-complete', 'create-failed', 'modify-in-progress', 'modify-complete', 'modify-failed', 'restore-in-progress', 'restore-complete', 'restore-failed', 'delete-in-progress', 'delete-complete', 'delete-failed', ], ], 'PriceSchedule' => [ 'type' => 'structure', 'members' => [ 'Active' => [ 'shape' => 'Boolean', 'locationName' => 'active', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Price' => [ 'shape' => 'Double', 'locationName' => 'price', ], 'Term' => [ 'shape' => 'Long', 'locationName' => 'term', ], ], ], 'PriceScheduleList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PriceSchedule', 'locationName' => 'item', ], ], 'PriceScheduleSpecification' => [ 'type' => 'structure', 'members' => [ 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Price' => [ 'shape' => 'Double', 'locationName' => 'price', ], 'Term' => [ 'shape' => 'Long', 'locationName' => 'term', ], ], ], 'PriceScheduleSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PriceScheduleSpecification', 'locationName' => 'item', ], ], 'PricingDetail' => [ 'type' => 'structure', 'members' => [ 'Count' => [ 'shape' => 'Integer', 'locationName' => 'count', ], 'Price' => [ 'shape' => 'Double', 'locationName' => 'price', ], ], ], 'PricingDetailsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PricingDetail', 'locationName' => 'item', ], ], 'PrincipalIdFormat' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', 'locationName' => 'arn', ], 'Statuses' => [ 'shape' => 'IdFormatList', 'locationName' => 'statusSet', ], ], ], 'PrincipalIdFormatList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrincipalIdFormat', 'locationName' => 'item', ], ], 'PrincipalType' => [ 'type' => 'string', 'enum' => [ 'All', 'Service', 'OrganizationUnit', 'Account', 'User', 'Role', ], ], 'Priority' => [ 'type' => 'integer', 'max' => 65535, 'min' => -1, ], 'PrivateDnsDetails' => [ 'type' => 'structure', 'members' => [ 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], ], ], 'PrivateDnsDetailsSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrivateDnsDetails', 'locationName' => 'item', ], ], 'PrivateDnsNameConfiguration' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'DnsNameState', 'locationName' => 'state', ], 'Type' => [ 'shape' => 'String', 'locationName' => 'type', ], 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], ], ], 'PrivateDnsNameOptionsOnLaunch' => [ 'type' => 'structure', 'members' => [ 'HostnameType' => [ 'shape' => 'HostnameType', 'locationName' => 'hostnameType', ], 'EnableResourceNameDnsARecord' => [ 'shape' => 'Boolean', 'locationName' => 'enableResourceNameDnsARecord', ], 'EnableResourceNameDnsAAAARecord' => [ 'shape' => 'Boolean', 'locationName' => 'enableResourceNameDnsAAAARecord', ], ], ], 'PrivateDnsNameOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'HostnameType' => [ 'shape' => 'HostnameType', ], 'EnableResourceNameDnsARecord' => [ 'shape' => 'Boolean', ], 'EnableResourceNameDnsAAAARecord' => [ 'shape' => 'Boolean', ], ], ], 'PrivateDnsNameOptionsResponse' => [ 'type' => 'structure', 'members' => [ 'HostnameType' => [ 'shape' => 'HostnameType', 'locationName' => 'hostnameType', ], 'EnableResourceNameDnsARecord' => [ 'shape' => 'Boolean', 'locationName' => 'enableResourceNameDnsARecord', ], 'EnableResourceNameDnsAAAARecord' => [ 'shape' => 'Boolean', 'locationName' => 'enableResourceNameDnsAAAARecord', ], ], ], 'PrivateIpAddressConfigSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstancesPrivateIpAddressConfig', 'locationName' => 'PrivateIpAddressConfigSet', ], ], 'PrivateIpAddressCount' => [ 'type' => 'integer', 'max' => 31, 'min' => 1, ], 'PrivateIpAddressSpecification' => [ 'type' => 'structure', 'members' => [ 'Primary' => [ 'shape' => 'Boolean', 'locationName' => 'primary', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], ], ], 'PrivateIpAddressSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrivateIpAddressSpecification', 'locationName' => 'item', ], ], 'PrivateIpAddressStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'PrivateIpAddress', ], ], 'ProcessorInfo' => [ 'type' => 'structure', 'members' => [ 'SupportedArchitectures' => [ 'shape' => 'ArchitectureTypeList', 'locationName' => 'supportedArchitectures', ], 'SustainedClockSpeedInGhz' => [ 'shape' => 'ProcessorSustainedClockSpeed', 'locationName' => 'sustainedClockSpeedInGhz', ], 'SupportedFeatures' => [ 'shape' => 'SupportedAdditionalProcessorFeatureList', 'locationName' => 'supportedFeatures', ], 'Manufacturer' => [ 'shape' => 'CpuManufacturerName', 'locationName' => 'manufacturer', ], ], ], 'ProcessorSustainedClockSpeed' => [ 'type' => 'double', ], 'ProductCode' => [ 'type' => 'structure', 'members' => [ 'ProductCodeId' => [ 'shape' => 'String', 'locationName' => 'productCode', ], 'ProductCodeType' => [ 'shape' => 'ProductCodeValues', 'locationName' => 'type', ], ], ], 'ProductCodeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProductCode', 'locationName' => 'item', ], ], 'ProductCodeStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ProductCode', ], ], 'ProductCodeValues' => [ 'type' => 'string', 'enum' => [ 'devpay', 'marketplace', ], ], 'ProductDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'PropagatingVgw' => [ 'type' => 'structure', 'members' => [ 'GatewayId' => [ 'shape' => 'String', 'locationName' => 'gatewayId', ], ], ], 'PropagatingVgwList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PropagatingVgw', 'locationName' => 'item', ], ], 'Protocol' => [ 'type' => 'string', 'enum' => [ 'tcp', 'udp', ], ], 'ProtocolInt' => [ 'type' => 'integer', 'max' => 255, 'min' => 0, ], 'ProtocolIntList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProtocolInt', 'locationName' => 'item', ], ], 'ProtocolList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Protocol', 'locationName' => 'item', ], ], 'ProtocolValue' => [ 'type' => 'string', 'enum' => [ 'gre', ], ], 'ProvisionByoipCidrRequest' => [ 'type' => 'structure', 'required' => [ 'Cidr', ], 'members' => [ 'Cidr' => [ 'shape' => 'String', ], 'CidrAuthorizationContext' => [ 'shape' => 'CidrAuthorizationContext', ], 'PubliclyAdvertisable' => [ 'shape' => 'Boolean', ], 'Description' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'PoolTagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'PoolTagSpecification', ], 'MultiRegion' => [ 'shape' => 'Boolean', ], 'NetworkBorderGroup' => [ 'shape' => 'String', ], ], ], 'ProvisionByoipCidrResult' => [ 'type' => 'structure', 'members' => [ 'ByoipCidr' => [ 'shape' => 'ByoipCidr', 'locationName' => 'byoipCidr', ], ], ], 'ProvisionIpamByoasnRequest' => [ 'type' => 'structure', 'required' => [ 'IpamId', 'Asn', 'AsnAuthorizationContext', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamId' => [ 'shape' => 'IpamId', ], 'Asn' => [ 'shape' => 'String', ], 'AsnAuthorizationContext' => [ 'shape' => 'AsnAuthorizationContext', ], ], ], 'ProvisionIpamByoasnResult' => [ 'type' => 'structure', 'members' => [ 'Byoasn' => [ 'shape' => 'Byoasn', 'locationName' => 'byoasn', ], ], ], 'ProvisionIpamPoolCidrRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Cidr' => [ 'shape' => 'String', ], 'CidrAuthorizationContext' => [ 'shape' => 'IpamCidrAuthorizationContext', ], 'NetmaskLength' => [ 'shape' => 'Integer', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'ProvisionIpamPoolCidrResult' => [ 'type' => 'structure', 'members' => [ 'IpamPoolCidr' => [ 'shape' => 'IpamPoolCidr', 'locationName' => 'ipamPoolCidr', ], ], ], 'ProvisionPublicIpv4PoolCidrRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', 'PoolId', 'NetmaskLength', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'PoolId' => [ 'shape' => 'Ipv4PoolEc2Id', ], 'NetmaskLength' => [ 'shape' => 'Integer', ], ], ], 'ProvisionPublicIpv4PoolCidrResult' => [ 'type' => 'structure', 'members' => [ 'PoolId' => [ 'shape' => 'Ipv4PoolEc2Id', 'locationName' => 'poolId', ], 'PoolAddressRange' => [ 'shape' => 'PublicIpv4PoolRange', 'locationName' => 'poolAddressRange', ], ], ], 'ProvisionedBandwidth' => [ 'type' => 'structure', 'members' => [ 'ProvisionTime' => [ 'shape' => 'DateTime', 'locationName' => 'provisionTime', ], 'Provisioned' => [ 'shape' => 'String', 'locationName' => 'provisioned', ], 'RequestTime' => [ 'shape' => 'DateTime', 'locationName' => 'requestTime', ], 'Requested' => [ 'shape' => 'String', 'locationName' => 'requested', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], ], ], 'PtrUpdateStatus' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'Reason' => [ 'shape' => 'String', 'locationName' => 'reason', ], ], ], 'PublicIpAddress' => [ 'type' => 'string', ], 'PublicIpStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'PublicIp', ], ], 'PublicIpv4Pool' => [ 'type' => 'structure', 'members' => [ 'PoolId' => [ 'shape' => 'String', 'locationName' => 'poolId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'PoolAddressRanges' => [ 'shape' => 'PublicIpv4PoolRangeSet', 'locationName' => 'poolAddressRangeSet', ], 'TotalAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'totalAddressCount', ], 'TotalAvailableAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'totalAvailableAddressCount', ], 'NetworkBorderGroup' => [ 'shape' => 'String', 'locationName' => 'networkBorderGroup', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'PublicIpv4PoolIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Ipv4PoolEc2Id', 'locationName' => 'item', ], ], 'PublicIpv4PoolRange' => [ 'type' => 'structure', 'members' => [ 'FirstAddress' => [ 'shape' => 'String', 'locationName' => 'firstAddress', ], 'LastAddress' => [ 'shape' => 'String', 'locationName' => 'lastAddress', ], 'AddressCount' => [ 'shape' => 'Integer', 'locationName' => 'addressCount', ], 'AvailableAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'availableAddressCount', ], ], ], 'PublicIpv4PoolRangeSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PublicIpv4PoolRange', 'locationName' => 'item', ], ], 'PublicIpv4PoolSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PublicIpv4Pool', 'locationName' => 'item', ], ], 'Purchase' => [ 'type' => 'structure', 'members' => [ 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Duration' => [ 'shape' => 'Integer', 'locationName' => 'duration', ], 'HostIdSet' => [ 'shape' => 'ResponseHostIdSet', 'locationName' => 'hostIdSet', ], 'HostReservationId' => [ 'shape' => 'HostReservationId', 'locationName' => 'hostReservationId', ], 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], 'InstanceFamily' => [ 'shape' => 'String', 'locationName' => 'instanceFamily', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', 'locationName' => 'paymentOption', ], 'UpfrontPrice' => [ 'shape' => 'String', 'locationName' => 'upfrontPrice', ], ], ], 'PurchaseCapacityBlockRequest' => [ 'type' => 'structure', 'required' => [ 'CapacityBlockOfferingId', 'InstancePlatform', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'CapacityBlockOfferingId' => [ 'shape' => 'OfferingId', ], 'InstancePlatform' => [ 'shape' => 'CapacityReservationInstancePlatform', ], ], ], 'PurchaseCapacityBlockResult' => [ 'type' => 'structure', 'members' => [ 'CapacityReservation' => [ 'shape' => 'CapacityReservation', 'locationName' => 'capacityReservation', ], ], ], 'PurchaseHostReservationRequest' => [ 'type' => 'structure', 'required' => [ 'HostIdSet', 'OfferingId', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', ], 'HostIdSet' => [ 'shape' => 'RequestHostIdSet', ], 'LimitPrice' => [ 'shape' => 'String', ], 'OfferingId' => [ 'shape' => 'OfferingId', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'PurchaseHostReservationResult' => [ 'type' => 'structure', 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Purchase' => [ 'shape' => 'PurchaseSet', 'locationName' => 'purchase', ], 'TotalHourlyPrice' => [ 'shape' => 'String', 'locationName' => 'totalHourlyPrice', ], 'TotalUpfrontPrice' => [ 'shape' => 'String', 'locationName' => 'totalUpfrontPrice', ], ], ], 'PurchaseRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceCount', 'PurchaseToken', ], 'members' => [ 'InstanceCount' => [ 'shape' => 'Integer', ], 'PurchaseToken' => [ 'shape' => 'String', ], ], ], 'PurchaseRequestSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PurchaseRequest', 'locationName' => 'PurchaseRequest', ], 'min' => 1, ], 'PurchaseReservedInstancesOfferingRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceCount', 'ReservedInstancesOfferingId', ], 'members' => [ 'InstanceCount' => [ 'shape' => 'Integer', ], 'ReservedInstancesOfferingId' => [ 'shape' => 'ReservedInstancesOfferingId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'LimitPrice' => [ 'shape' => 'ReservedInstanceLimitPrice', 'locationName' => 'limitPrice', ], 'PurchaseTime' => [ 'shape' => 'DateTime', ], ], ], 'PurchaseReservedInstancesOfferingResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], ], ], 'PurchaseScheduledInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'PurchaseRequests', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'PurchaseRequests' => [ 'shape' => 'PurchaseRequestSet', 'locationName' => 'PurchaseRequest', ], ], ], 'PurchaseScheduledInstancesResult' => [ 'type' => 'structure', 'members' => [ 'ScheduledInstanceSet' => [ 'shape' => 'PurchasedScheduledInstanceSet', 'locationName' => 'scheduledInstanceSet', ], ], ], 'PurchaseSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Purchase', 'locationName' => 'item', ], ], 'PurchasedScheduledInstanceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstance', 'locationName' => 'item', ], ], 'RIProductDescription' => [ 'type' => 'string', 'enum' => [ 'Linux/UNIX', 'Linux/UNIX (Amazon VPC)', 'Windows', 'Windows (Amazon VPC)', ], ], 'RamdiskId' => [ 'type' => 'string', ], 'ReasonCodesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReportInstanceReasonCodes', 'locationName' => 'item', ], ], 'RebootInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'RecurringCharge' => [ 'type' => 'structure', 'members' => [ 'Amount' => [ 'shape' => 'Double', 'locationName' => 'amount', ], 'Frequency' => [ 'shape' => 'RecurringChargeFrequency', 'locationName' => 'frequency', ], ], ], 'RecurringChargeFrequency' => [ 'type' => 'string', 'enum' => [ 'Hourly', ], ], 'RecurringChargesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecurringCharge', 'locationName' => 'item', ], ], 'ReferencedSecurityGroup' => [ 'type' => 'structure', 'members' => [ 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'PeeringStatus' => [ 'shape' => 'String', 'locationName' => 'peeringStatus', ], 'UserId' => [ 'shape' => 'String', 'locationName' => 'userId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], ], ], 'Region' => [ 'type' => 'structure', 'members' => [ 'Endpoint' => [ 'shape' => 'String', 'locationName' => 'regionEndpoint', ], 'RegionName' => [ 'shape' => 'String', 'locationName' => 'regionName', ], 'OptInStatus' => [ 'shape' => 'String', 'locationName' => 'optInStatus', ], ], ], 'RegionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Region', 'locationName' => 'item', ], ], 'RegionNameStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'RegionName', ], ], 'RegionNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], 'max' => 10, 'min' => 0, ], 'RegisterImageRequest' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'ImageLocation' => [ 'shape' => 'String', ], 'Architecture' => [ 'shape' => 'ArchitectureValues', 'locationName' => 'architecture', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingRequestList', 'locationName' => 'BlockDeviceMapping', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'EnaSupport' => [ 'shape' => 'Boolean', 'locationName' => 'enaSupport', ], 'KernelId' => [ 'shape' => 'KernelId', 'locationName' => 'kernelId', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], 'BillingProducts' => [ 'shape' => 'BillingProductList', 'locationName' => 'BillingProduct', ], 'RamdiskId' => [ 'shape' => 'RamdiskId', 'locationName' => 'ramdiskId', ], 'RootDeviceName' => [ 'shape' => 'String', 'locationName' => 'rootDeviceName', ], 'SriovNetSupport' => [ 'shape' => 'String', 'locationName' => 'sriovNetSupport', ], 'VirtualizationType' => [ 'shape' => 'String', 'locationName' => 'virtualizationType', ], 'BootMode' => [ 'shape' => 'BootModeValues', ], 'TpmSupport' => [ 'shape' => 'TpmSupportValues', ], 'UefiData' => [ 'shape' => 'StringType', ], 'ImdsSupport' => [ 'shape' => 'ImdsSupportValues', ], ], ], 'RegisterImageResult' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], ], ], 'RegisterInstanceEventNotificationAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceTagAttribute', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceTagAttribute' => [ 'shape' => 'RegisterInstanceTagAttributeRequest', ], ], ], 'RegisterInstanceEventNotificationAttributesResult' => [ 'type' => 'structure', 'members' => [ 'InstanceTagAttribute' => [ 'shape' => 'InstanceTagNotificationAttribute', 'locationName' => 'instanceTagAttribute', ], ], ], 'RegisterInstanceTagAttributeRequest' => [ 'type' => 'structure', 'members' => [ 'IncludeAllTagsOfInstance' => [ 'shape' => 'Boolean', ], 'InstanceTagKeys' => [ 'shape' => 'InstanceTagKeySet', 'locationName' => 'InstanceTagKey', ], ], ], 'RegisterTransitGatewayMulticastGroupMembersRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayMulticastDomainId', 'NetworkInterfaceIds', ], 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'GroupIpAddress' => [ 'shape' => 'String', ], 'NetworkInterfaceIds' => [ 'shape' => 'TransitGatewayNetworkInterfaceIdList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RegisterTransitGatewayMulticastGroupMembersResult' => [ 'type' => 'structure', 'members' => [ 'RegisteredMulticastGroupMembers' => [ 'shape' => 'TransitGatewayMulticastRegisteredGroupMembers', 'locationName' => 'registeredMulticastGroupMembers', ], ], ], 'RegisterTransitGatewayMulticastGroupSourcesRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayMulticastDomainId', 'NetworkInterfaceIds', ], 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'GroupIpAddress' => [ 'shape' => 'String', ], 'NetworkInterfaceIds' => [ 'shape' => 'TransitGatewayNetworkInterfaceIdList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RegisterTransitGatewayMulticastGroupSourcesResult' => [ 'type' => 'structure', 'members' => [ 'RegisteredMulticastGroupSources' => [ 'shape' => 'TransitGatewayMulticastRegisteredGroupSources', 'locationName' => 'registeredMulticastGroupSources', ], ], ], 'RejectTransitGatewayMulticastDomainAssociationsRequest' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'SubnetIds' => [ 'shape' => 'ValueStringList', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RejectTransitGatewayMulticastDomainAssociationsResult' => [ 'type' => 'structure', 'members' => [ 'Associations' => [ 'shape' => 'TransitGatewayMulticastDomainAssociations', 'locationName' => 'associations', ], ], ], 'RejectTransitGatewayPeeringAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RejectTransitGatewayPeeringAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPeeringAttachment' => [ 'shape' => 'TransitGatewayPeeringAttachment', 'locationName' => 'transitGatewayPeeringAttachment', ], ], ], 'RejectTransitGatewayVpcAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayAttachmentId', ], 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RejectTransitGatewayVpcAttachmentResult' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayVpcAttachment' => [ 'shape' => 'TransitGatewayVpcAttachment', 'locationName' => 'transitGatewayVpcAttachment', ], ], ], 'RejectVpcEndpointConnectionsRequest' => [ 'type' => 'structure', 'required' => [ 'ServiceId', 'VpcEndpointIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceId' => [ 'shape' => 'VpcEndpointServiceId', ], 'VpcEndpointIds' => [ 'shape' => 'VpcEndpointIdList', 'locationName' => 'VpcEndpointId', ], ], ], 'RejectVpcEndpointConnectionsResult' => [ 'type' => 'structure', 'members' => [ 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemSet', 'locationName' => 'unsuccessful', ], ], ], 'RejectVpcPeeringConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'VpcPeeringConnectionId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcPeeringConnectionId' => [ 'shape' => 'VpcPeeringConnectionId', 'locationName' => 'vpcPeeringConnectionId', ], ], ], 'RejectVpcPeeringConnectionResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ReleaseAddressRequest' => [ 'type' => 'structure', 'members' => [ 'AllocationId' => [ 'shape' => 'AllocationId', ], 'PublicIp' => [ 'shape' => 'String', ], 'NetworkBorderGroup' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'ReleaseHostsRequest' => [ 'type' => 'structure', 'required' => [ 'HostIds', ], 'members' => [ 'HostIds' => [ 'shape' => 'RequestHostIdList', 'locationName' => 'hostId', ], ], ], 'ReleaseHostsResult' => [ 'type' => 'structure', 'members' => [ 'Successful' => [ 'shape' => 'ResponseHostIdList', 'locationName' => 'successful', ], 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemList', 'locationName' => 'unsuccessful', ], ], ], 'ReleaseIpamPoolAllocationRequest' => [ 'type' => 'structure', 'required' => [ 'IpamPoolId', 'Cidr', 'IpamPoolAllocationId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'IpamPoolId' => [ 'shape' => 'IpamPoolId', ], 'Cidr' => [ 'shape' => 'String', ], 'IpamPoolAllocationId' => [ 'shape' => 'IpamPoolAllocationId', ], ], ], 'ReleaseIpamPoolAllocationResult' => [ 'type' => 'structure', 'members' => [ 'Success' => [ 'shape' => 'Boolean', 'locationName' => 'success', ], ], ], 'RemoveIpamOperatingRegion' => [ 'type' => 'structure', 'members' => [ 'RegionName' => [ 'shape' => 'String', ], ], ], 'RemoveIpamOperatingRegionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'RemoveIpamOperatingRegion', ], 'max' => 50, 'min' => 0, ], 'RemovePrefixListEntries' => [ 'type' => 'list', 'member' => [ 'shape' => 'RemovePrefixListEntry', ], 'max' => 100, 'min' => 0, ], 'RemovePrefixListEntry' => [ 'type' => 'structure', 'required' => [ 'Cidr', ], 'members' => [ 'Cidr' => [ 'shape' => 'String', ], ], ], 'ReplaceIamInstanceProfileAssociationRequest' => [ 'type' => 'structure', 'required' => [ 'IamInstanceProfile', 'AssociationId', ], 'members' => [ 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfileSpecification', ], 'AssociationId' => [ 'shape' => 'IamInstanceProfileAssociationId', ], ], ], 'ReplaceIamInstanceProfileAssociationResult' => [ 'type' => 'structure', 'members' => [ 'IamInstanceProfileAssociation' => [ 'shape' => 'IamInstanceProfileAssociation', 'locationName' => 'iamInstanceProfileAssociation', ], ], ], 'ReplaceNetworkAclAssociationRequest' => [ 'type' => 'structure', 'required' => [ 'AssociationId', 'NetworkAclId', ], 'members' => [ 'AssociationId' => [ 'shape' => 'NetworkAclAssociationId', 'locationName' => 'associationId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkAclId' => [ 'shape' => 'NetworkAclId', 'locationName' => 'networkAclId', ], ], ], 'ReplaceNetworkAclAssociationResult' => [ 'type' => 'structure', 'members' => [ 'NewAssociationId' => [ 'shape' => 'String', 'locationName' => 'newAssociationId', ], ], ], 'ReplaceNetworkAclEntryRequest' => [ 'type' => 'structure', 'required' => [ 'Egress', 'NetworkAclId', 'Protocol', 'RuleAction', 'RuleNumber', ], 'members' => [ 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Egress' => [ 'shape' => 'Boolean', 'locationName' => 'egress', ], 'IcmpTypeCode' => [ 'shape' => 'IcmpTypeCode', 'locationName' => 'Icmp', ], 'Ipv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'ipv6CidrBlock', ], 'NetworkAclId' => [ 'shape' => 'NetworkAclId', 'locationName' => 'networkAclId', ], 'PortRange' => [ 'shape' => 'PortRange', 'locationName' => 'portRange', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], 'RuleAction' => [ 'shape' => 'RuleAction', 'locationName' => 'ruleAction', ], 'RuleNumber' => [ 'shape' => 'Integer', 'locationName' => 'ruleNumber', ], ], ], 'ReplaceRootVolumeTask' => [ 'type' => 'structure', 'members' => [ 'ReplaceRootVolumeTaskId' => [ 'shape' => 'ReplaceRootVolumeTaskId', 'locationName' => 'replaceRootVolumeTaskId', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'TaskState' => [ 'shape' => 'ReplaceRootVolumeTaskState', 'locationName' => 'taskState', ], 'StartTime' => [ 'shape' => 'String', 'locationName' => 'startTime', ], 'CompleteTime' => [ 'shape' => 'String', 'locationName' => 'completeTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'ImageId' => [ 'shape' => 'ImageId', 'locationName' => 'imageId', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', 'locationName' => 'snapshotId', ], 'DeleteReplacedRootVolume' => [ 'shape' => 'Boolean', 'locationName' => 'deleteReplacedRootVolume', ], ], ], 'ReplaceRootVolumeTaskId' => [ 'type' => 'string', ], 'ReplaceRootVolumeTaskIds' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReplaceRootVolumeTaskId', 'locationName' => 'ReplaceRootVolumeTaskId', ], ], 'ReplaceRootVolumeTaskState' => [ 'type' => 'string', 'enum' => [ 'pending', 'in-progress', 'failing', 'succeeded', 'failed', 'failed-detached', ], ], 'ReplaceRootVolumeTasks' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReplaceRootVolumeTask', 'locationName' => 'item', ], ], 'ReplaceRouteRequest' => [ 'type' => 'structure', 'required' => [ 'RouteTableId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'DestinationIpv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationIpv6CidrBlock', ], 'DestinationPrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcEndpointId' => [ 'shape' => 'VpcEndpointId', ], 'EgressOnlyInternetGatewayId' => [ 'shape' => 'EgressOnlyInternetGatewayId', 'locationName' => 'egressOnlyInternetGatewayId', ], 'GatewayId' => [ 'shape' => 'RouteGatewayId', 'locationName' => 'gatewayId', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'LocalTarget' => [ 'shape' => 'Boolean', ], 'NatGatewayId' => [ 'shape' => 'NatGatewayId', 'locationName' => 'natGatewayId', ], 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', ], 'LocalGatewayId' => [ 'shape' => 'LocalGatewayId', ], 'CarrierGatewayId' => [ 'shape' => 'CarrierGatewayId', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'RouteTableId' => [ 'shape' => 'RouteTableId', 'locationName' => 'routeTableId', ], 'VpcPeeringConnectionId' => [ 'shape' => 'VpcPeeringConnectionId', 'locationName' => 'vpcPeeringConnectionId', ], 'CoreNetworkArn' => [ 'shape' => 'CoreNetworkArn', ], ], ], 'ReplaceRouteTableAssociationRequest' => [ 'type' => 'structure', 'required' => [ 'AssociationId', 'RouteTableId', ], 'members' => [ 'AssociationId' => [ 'shape' => 'RouteTableAssociationId', 'locationName' => 'associationId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'RouteTableId' => [ 'shape' => 'RouteTableId', 'locationName' => 'routeTableId', ], ], ], 'ReplaceRouteTableAssociationResult' => [ 'type' => 'structure', 'members' => [ 'NewAssociationId' => [ 'shape' => 'String', 'locationName' => 'newAssociationId', ], 'AssociationState' => [ 'shape' => 'RouteTableAssociationState', 'locationName' => 'associationState', ], ], ], 'ReplaceTransitGatewayRouteRequest' => [ 'type' => 'structure', 'required' => [ 'DestinationCidrBlock', 'TransitGatewayRouteTableId', ], 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', ], 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], 'Blackhole' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ReplaceTransitGatewayRouteResult' => [ 'type' => 'structure', 'members' => [ 'Route' => [ 'shape' => 'TransitGatewayRoute', 'locationName' => 'route', ], ], ], 'ReplaceVpnTunnelRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', 'VpnTunnelOutsideIpAddress', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'VpnConnectionId', ], 'VpnTunnelOutsideIpAddress' => [ 'shape' => 'String', ], 'ApplyPendingMaintenance' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ReplaceVpnTunnelResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ReplacementStrategy' => [ 'type' => 'string', 'enum' => [ 'launch', 'launch-before-terminate', ], ], 'ReportInstanceReasonCodes' => [ 'type' => 'string', 'enum' => [ 'instance-stuck-in-state', 'unresponsive', 'not-accepting-credentials', 'password-not-available', 'performance-network', 'performance-instance-store', 'performance-ebs-volume', 'performance-other', 'other', ], ], 'ReportInstanceStatusRequest' => [ 'type' => 'structure', 'required' => [ 'Instances', 'ReasonCodes', 'Status', ], 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'EndTime' => [ 'shape' => 'DateTime', 'locationName' => 'endTime', ], 'Instances' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'instanceId', ], 'ReasonCodes' => [ 'shape' => 'ReasonCodesList', 'locationName' => 'reasonCode', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], 'Status' => [ 'shape' => 'ReportStatusType', 'locationName' => 'status', ], ], ], 'ReportStatusType' => [ 'type' => 'string', 'enum' => [ 'ok', 'impaired', ], ], 'RequestFilterPortRange' => [ 'type' => 'structure', 'members' => [ 'FromPort' => [ 'shape' => 'Port', ], 'ToPort' => [ 'shape' => 'Port', ], ], ], 'RequestHostIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DedicatedHostId', 'locationName' => 'item', ], ], 'RequestHostIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'DedicatedHostId', 'locationName' => 'item', ], ], 'RequestInstanceTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceType', ], 'locationName' => 'InstanceType', 'max' => 100, 'min' => 0, ], 'RequestIpamResourceTag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'RequestIpamResourceTagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RequestIpamResourceTag', 'locationName' => 'item', ], ], 'RequestLaunchTemplateData' => [ 'type' => 'structure', 'members' => [ 'KernelId' => [ 'shape' => 'KernelId', ], 'EbsOptimized' => [ 'shape' => 'Boolean', ], 'IamInstanceProfile' => [ 'shape' => 'LaunchTemplateIamInstanceProfileSpecificationRequest', ], 'BlockDeviceMappings' => [ 'shape' => 'LaunchTemplateBlockDeviceMappingRequestList', 'locationName' => 'BlockDeviceMapping', ], 'NetworkInterfaces' => [ 'shape' => 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequestList', 'locationName' => 'NetworkInterface', ], 'ImageId' => [ 'shape' => 'ImageId', ], 'InstanceType' => [ 'shape' => 'InstanceType', ], 'KeyName' => [ 'shape' => 'KeyPairName', ], 'Monitoring' => [ 'shape' => 'LaunchTemplatesMonitoringRequest', ], 'Placement' => [ 'shape' => 'LaunchTemplatePlacementRequest', ], 'RamDiskId' => [ 'shape' => 'RamdiskId', ], 'DisableApiTermination' => [ 'shape' => 'Boolean', ], 'InstanceInitiatedShutdownBehavior' => [ 'shape' => 'ShutdownBehavior', ], 'UserData' => [ 'shape' => 'SensitiveUserData', ], 'TagSpecifications' => [ 'shape' => 'LaunchTemplateTagSpecificationRequestList', 'locationName' => 'TagSpecification', ], 'ElasticGpuSpecifications' => [ 'shape' => 'ElasticGpuSpecificationList', 'locationName' => 'ElasticGpuSpecification', ], 'ElasticInferenceAccelerators' => [ 'shape' => 'LaunchTemplateElasticInferenceAcceleratorList', 'locationName' => 'ElasticInferenceAccelerator', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'SecurityGroups' => [ 'shape' => 'SecurityGroupStringList', 'locationName' => 'SecurityGroup', ], 'InstanceMarketOptions' => [ 'shape' => 'LaunchTemplateInstanceMarketOptionsRequest', ], 'CreditSpecification' => [ 'shape' => 'CreditSpecificationRequest', ], 'CpuOptions' => [ 'shape' => 'LaunchTemplateCpuOptionsRequest', ], 'CapacityReservationSpecification' => [ 'shape' => 'LaunchTemplateCapacityReservationSpecificationRequest', ], 'LicenseSpecifications' => [ 'shape' => 'LaunchTemplateLicenseSpecificationListRequest', 'locationName' => 'LicenseSpecification', ], 'HibernationOptions' => [ 'shape' => 'LaunchTemplateHibernationOptionsRequest', ], 'MetadataOptions' => [ 'shape' => 'LaunchTemplateInstanceMetadataOptionsRequest', ], 'EnclaveOptions' => [ 'shape' => 'LaunchTemplateEnclaveOptionsRequest', ], 'InstanceRequirements' => [ 'shape' => 'InstanceRequirementsRequest', ], 'PrivateDnsNameOptions' => [ 'shape' => 'LaunchTemplatePrivateDnsNameOptionsRequest', ], 'MaintenanceOptions' => [ 'shape' => 'LaunchTemplateInstanceMaintenanceOptionsRequest', ], 'DisableApiStop' => [ 'shape' => 'Boolean', ], ], ], 'RequestSpotFleetRequest' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestConfig', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SpotFleetRequestConfig' => [ 'shape' => 'SpotFleetRequestConfigData', 'locationName' => 'spotFleetRequestConfig', ], ], ], 'RequestSpotFleetResponse' => [ 'type' => 'structure', 'members' => [ 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], ], ], 'RequestSpotInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZoneGroup' => [ 'shape' => 'String', 'locationName' => 'availabilityZoneGroup', ], 'BlockDurationMinutes' => [ 'shape' => 'Integer', 'locationName' => 'blockDurationMinutes', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'LaunchGroup' => [ 'shape' => 'String', 'locationName' => 'launchGroup', ], 'LaunchSpecification' => [ 'shape' => 'RequestSpotLaunchSpecification', ], 'SpotPrice' => [ 'shape' => 'String', 'locationName' => 'spotPrice', ], 'Type' => [ 'shape' => 'SpotInstanceType', 'locationName' => 'type', ], 'ValidFrom' => [ 'shape' => 'DateTime', 'locationName' => 'validFrom', ], 'ValidUntil' => [ 'shape' => 'DateTime', 'locationName' => 'validUntil', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'InstanceInterruptionBehavior' => [ 'shape' => 'InstanceInterruptionBehavior', ], ], ], 'RequestSpotInstancesResult' => [ 'type' => 'structure', 'members' => [ 'SpotInstanceRequests' => [ 'shape' => 'SpotInstanceRequestList', 'locationName' => 'spotInstanceRequestSet', ], ], ], 'RequestSpotLaunchSpecification' => [ 'type' => 'structure', 'members' => [ 'SecurityGroupIds' => [ 'shape' => 'RequestSpotLaunchSpecificationSecurityGroupIdList', 'locationName' => 'SecurityGroupId', ], 'SecurityGroups' => [ 'shape' => 'RequestSpotLaunchSpecificationSecurityGroupList', 'locationName' => 'SecurityGroup', ], 'AddressingType' => [ 'shape' => 'String', 'locationName' => 'addressingType', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfileSpecification', 'locationName' => 'iamInstanceProfile', ], 'ImageId' => [ 'shape' => 'ImageId', 'locationName' => 'imageId', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'KernelId' => [ 'shape' => 'KernelId', 'locationName' => 'kernelId', ], 'KeyName' => [ 'shape' => 'KeyPairName', 'locationName' => 'keyName', ], 'Monitoring' => [ 'shape' => 'RunInstancesMonitoringEnabled', 'locationName' => 'monitoring', ], 'NetworkInterfaces' => [ 'shape' => 'InstanceNetworkInterfaceSpecificationList', 'locationName' => 'NetworkInterface', ], 'Placement' => [ 'shape' => 'SpotPlacement', 'locationName' => 'placement', ], 'RamdiskId' => [ 'shape' => 'RamdiskId', 'locationName' => 'ramdiskId', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'UserData' => [ 'shape' => 'SensitiveUserData', 'locationName' => 'userData', ], ], ], 'RequestSpotLaunchSpecificationSecurityGroupIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'item', ], ], 'RequestSpotLaunchSpecificationSecurityGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'Reservation' => [ 'type' => 'structure', 'members' => [ 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'Instances' => [ 'shape' => 'InstanceList', 'locationName' => 'instancesSet', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'RequesterId' => [ 'shape' => 'String', 'locationName' => 'requesterId', ], 'ReservationId' => [ 'shape' => 'String', 'locationName' => 'reservationId', ], ], ], 'ReservationFleetInstanceSpecification' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'InstanceType', ], 'InstancePlatform' => [ 'shape' => 'CapacityReservationInstancePlatform', ], 'Weight' => [ 'shape' => 'DoubleWithConstraints', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'AvailabilityZoneId' => [ 'shape' => 'String', ], 'EbsOptimized' => [ 'shape' => 'Boolean', ], 'Priority' => [ 'shape' => 'IntegerWithConstraints', ], ], ], 'ReservationFleetInstanceSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservationFleetInstanceSpecification', ], ], 'ReservationId' => [ 'type' => 'string', ], 'ReservationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Reservation', 'locationName' => 'item', ], ], 'ReservationState' => [ 'type' => 'string', 'enum' => [ 'payment-pending', 'payment-failed', 'active', 'retired', ], ], 'ReservationValue' => [ 'type' => 'structure', 'members' => [ 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], 'RemainingTotalValue' => [ 'shape' => 'String', 'locationName' => 'remainingTotalValue', ], 'RemainingUpfrontValue' => [ 'shape' => 'String', 'locationName' => 'remainingUpfrontValue', ], ], ], 'ReservedInstanceIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservationId', 'locationName' => 'ReservedInstanceId', ], ], 'ReservedInstanceLimitPrice' => [ 'type' => 'structure', 'members' => [ 'Amount' => [ 'shape' => 'Double', 'locationName' => 'amount', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], ], ], 'ReservedInstanceReservationValue' => [ 'type' => 'structure', 'members' => [ 'ReservationValue' => [ 'shape' => 'ReservationValue', 'locationName' => 'reservationValue', ], 'ReservedInstanceId' => [ 'shape' => 'String', 'locationName' => 'reservedInstanceId', ], ], ], 'ReservedInstanceReservationValueSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstanceReservationValue', 'locationName' => 'item', ], ], 'ReservedInstanceState' => [ 'type' => 'string', 'enum' => [ 'payment-pending', 'active', 'payment-failed', 'retired', 'queued', 'queued-deleted', ], ], 'ReservedInstances' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Duration' => [ 'shape' => 'Long', 'locationName' => 'duration', ], 'End' => [ 'shape' => 'DateTime', 'locationName' => 'end', ], 'FixedPrice' => [ 'shape' => 'Float', 'locationName' => 'fixedPrice', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'ProductDescription' => [ 'shape' => 'RIProductDescription', 'locationName' => 'productDescription', ], 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], 'Start' => [ 'shape' => 'DateTime', 'locationName' => 'start', ], 'State' => [ 'shape' => 'ReservedInstanceState', 'locationName' => 'state', ], 'UsagePrice' => [ 'shape' => 'Float', 'locationName' => 'usagePrice', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'InstanceTenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'instanceTenancy', ], 'OfferingClass' => [ 'shape' => 'OfferingClassType', 'locationName' => 'offeringClass', ], 'OfferingType' => [ 'shape' => 'OfferingTypeValues', 'locationName' => 'offeringType', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargesList', 'locationName' => 'recurringCharges', ], 'Scope' => [ 'shape' => 'scope', 'locationName' => 'scope', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ReservedInstancesConfiguration' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'Platform' => [ 'shape' => 'String', 'locationName' => 'platform', ], 'Scope' => [ 'shape' => 'scope', 'locationName' => 'scope', ], ], ], 'ReservedInstancesConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesConfiguration', 'locationName' => 'item', ], ], 'ReservedInstancesId' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], ], ], 'ReservedInstancesIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservationId', 'locationName' => 'ReservedInstancesId', ], ], 'ReservedInstancesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstances', 'locationName' => 'item', ], ], 'ReservedInstancesListing' => [ 'type' => 'structure', 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'CreateDate' => [ 'shape' => 'DateTime', 'locationName' => 'createDate', ], 'InstanceCounts' => [ 'shape' => 'InstanceCountList', 'locationName' => 'instanceCounts', ], 'PriceSchedules' => [ 'shape' => 'PriceScheduleList', 'locationName' => 'priceSchedules', ], 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], 'ReservedInstancesListingId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesListingId', ], 'Status' => [ 'shape' => 'ListingStatus', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'UpdateDate' => [ 'shape' => 'DateTime', 'locationName' => 'updateDate', ], ], ], 'ReservedInstancesListingId' => [ 'type' => 'string', ], 'ReservedInstancesListingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesListing', 'locationName' => 'item', ], ], 'ReservedInstancesModification' => [ 'type' => 'structure', 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'CreateDate' => [ 'shape' => 'DateTime', 'locationName' => 'createDate', ], 'EffectiveDate' => [ 'shape' => 'DateTime', 'locationName' => 'effectiveDate', ], 'ModificationResults' => [ 'shape' => 'ReservedInstancesModificationResultList', 'locationName' => 'modificationResultSet', ], 'ReservedInstancesIds' => [ 'shape' => 'ReservedIntancesIds', 'locationName' => 'reservedInstancesSet', ], 'ReservedInstancesModificationId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesModificationId', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'UpdateDate' => [ 'shape' => 'DateTime', 'locationName' => 'updateDate', ], ], ], 'ReservedInstancesModificationId' => [ 'type' => 'string', ], 'ReservedInstancesModificationIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesModificationId', 'locationName' => 'ReservedInstancesModificationId', ], ], 'ReservedInstancesModificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesModification', 'locationName' => 'item', ], ], 'ReservedInstancesModificationResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], 'TargetConfiguration' => [ 'shape' => 'ReservedInstancesConfiguration', 'locationName' => 'targetConfiguration', ], ], ], 'ReservedInstancesModificationResultList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesModificationResult', 'locationName' => 'item', ], ], 'ReservedInstancesOffering' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Duration' => [ 'shape' => 'Long', 'locationName' => 'duration', ], 'FixedPrice' => [ 'shape' => 'Float', 'locationName' => 'fixedPrice', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'ProductDescription' => [ 'shape' => 'RIProductDescription', 'locationName' => 'productDescription', ], 'ReservedInstancesOfferingId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesOfferingId', ], 'UsagePrice' => [ 'shape' => 'Float', 'locationName' => 'usagePrice', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'InstanceTenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'instanceTenancy', ], 'Marketplace' => [ 'shape' => 'Boolean', 'locationName' => 'marketplace', ], 'OfferingClass' => [ 'shape' => 'OfferingClassType', 'locationName' => 'offeringClass', ], 'OfferingType' => [ 'shape' => 'OfferingTypeValues', 'locationName' => 'offeringType', ], 'PricingDetails' => [ 'shape' => 'PricingDetailsList', 'locationName' => 'pricingDetailsSet', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargesList', 'locationName' => 'recurringCharges', ], 'Scope' => [ 'shape' => 'scope', 'locationName' => 'scope', ], ], ], 'ReservedInstancesOfferingId' => [ 'type' => 'string', ], 'ReservedInstancesOfferingIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesOfferingId', ], ], 'ReservedInstancesOfferingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesOffering', 'locationName' => 'item', ], ], 'ReservedIntancesIds' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesId', 'locationName' => 'item', ], ], 'ResetAddressAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'AllocationId', 'Attribute', ], 'members' => [ 'AllocationId' => [ 'shape' => 'AllocationId', ], 'Attribute' => [ 'shape' => 'AddressAttributeName', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ResetAddressAttributeResult' => [ 'type' => 'structure', 'members' => [ 'Address' => [ 'shape' => 'AddressAttribute', 'locationName' => 'address', ], ], ], 'ResetEbsDefaultKmsKeyIdRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'ResetEbsDefaultKmsKeyIdResult' => [ 'type' => 'structure', 'members' => [ 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], ], ], 'ResetFpgaImageAttributeName' => [ 'type' => 'string', 'enum' => [ 'loadPermission', ], ], 'ResetFpgaImageAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'FpgaImageId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'FpgaImageId' => [ 'shape' => 'FpgaImageId', ], 'Attribute' => [ 'shape' => 'ResetFpgaImageAttributeName', ], ], ], 'ResetFpgaImageAttributeResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ResetImageAttributeName' => [ 'type' => 'string', 'enum' => [ 'launchPermission', ], ], 'ResetImageAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'Attribute', 'ImageId', ], 'members' => [ 'Attribute' => [ 'shape' => 'ResetImageAttributeName', ], 'ImageId' => [ 'shape' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'ResetInstanceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'Attribute', 'InstanceId', ], 'members' => [ 'Attribute' => [ 'shape' => 'InstanceAttributeName', 'locationName' => 'attribute', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], ], ], 'ResetNetworkInterfaceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'SourceDestCheck' => [ 'shape' => 'String', 'locationName' => 'sourceDestCheck', ], ], ], 'ResetSnapshotAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'Attribute', 'SnapshotId', ], 'members' => [ 'Attribute' => [ 'shape' => 'SnapshotAttributeName', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'ResourceArn' => [ 'type' => 'string', 'max' => 1283, 'min' => 1, ], 'ResourceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TaggableResourceId', ], ], 'ResourceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'ResourceStatement' => [ 'type' => 'structure', 'members' => [ 'Resources' => [ 'shape' => 'ValueStringList', 'locationName' => 'resourceSet', ], 'ResourceTypes' => [ 'shape' => 'ValueStringList', 'locationName' => 'resourceTypeSet', ], ], ], 'ResourceStatementRequest' => [ 'type' => 'structure', 'members' => [ 'Resources' => [ 'shape' => 'ValueStringList', 'locationName' => 'Resource', ], 'ResourceTypes' => [ 'shape' => 'ValueStringList', 'locationName' => 'ResourceType', ], ], ], 'ResourceType' => [ 'type' => 'string', 'enum' => [ 'capacity-reservation', 'client-vpn-endpoint', 'customer-gateway', 'carrier-gateway', 'coip-pool', 'dedicated-host', 'dhcp-options', 'egress-only-internet-gateway', 'elastic-ip', 'elastic-gpu', 'export-image-task', 'export-instance-task', 'fleet', 'fpga-image', 'host-reservation', 'image', 'import-image-task', 'import-snapshot-task', 'instance', 'instance-event-window', 'internet-gateway', 'ipam', 'ipam-pool', 'ipam-scope', 'ipv4pool-ec2', 'ipv6pool-ec2', 'key-pair', 'launch-template', 'local-gateway', 'local-gateway-route-table', 'local-gateway-virtual-interface', 'local-gateway-virtual-interface-group', 'local-gateway-route-table-vpc-association', 'local-gateway-route-table-virtual-interface-group-association', 'natgateway', 'network-acl', 'network-interface', 'network-insights-analysis', 'network-insights-path', 'network-insights-access-scope', 'network-insights-access-scope-analysis', 'placement-group', 'prefix-list', 'replace-root-volume-task', 'reserved-instances', 'route-table', 'security-group', 'security-group-rule', 'snapshot', 'spot-fleet-request', 'spot-instances-request', 'subnet', 'subnet-cidr-reservation', 'traffic-mirror-filter', 'traffic-mirror-session', 'traffic-mirror-target', 'transit-gateway', 'transit-gateway-attachment', 'transit-gateway-connect-peer', 'transit-gateway-multicast-domain', 'transit-gateway-policy-table', 'transit-gateway-route-table', 'transit-gateway-route-table-announcement', 'volume', 'vpc', 'vpc-endpoint', 'vpc-endpoint-connection', 'vpc-endpoint-service', 'vpc-endpoint-service-permission', 'vpc-peering-connection', 'vpn-connection', 'vpn-gateway', 'vpc-flow-log', 'capacity-reservation-fleet', 'traffic-mirror-filter-rule', 'vpc-endpoint-connection-device-type', 'verified-access-instance', 'verified-access-group', 'verified-access-endpoint', 'verified-access-policy', 'verified-access-trust-provider', 'vpn-connection-device-type', 'vpc-block-public-access-exclusion', 'ipam-resource-discovery', 'ipam-resource-discovery-association', 'instance-connect-endpoint', ], ], 'ResponseError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'LaunchTemplateErrorCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'ResponseHostIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'ResponseHostIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'ResponseLaunchTemplateData' => [ 'type' => 'structure', 'members' => [ 'KernelId' => [ 'shape' => 'String', 'locationName' => 'kernelId', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'IamInstanceProfile' => [ 'shape' => 'LaunchTemplateIamInstanceProfileSpecification', 'locationName' => 'iamInstanceProfile', ], 'BlockDeviceMappings' => [ 'shape' => 'LaunchTemplateBlockDeviceMappingList', 'locationName' => 'blockDeviceMappingSet', ], 'NetworkInterfaces' => [ 'shape' => 'LaunchTemplateInstanceNetworkInterfaceSpecificationList', 'locationName' => 'networkInterfaceSet', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'Monitoring' => [ 'shape' => 'LaunchTemplatesMonitoring', 'locationName' => 'monitoring', ], 'Placement' => [ 'shape' => 'LaunchTemplatePlacement', 'locationName' => 'placement', ], 'RamDiskId' => [ 'shape' => 'String', 'locationName' => 'ramDiskId', ], 'DisableApiTermination' => [ 'shape' => 'Boolean', 'locationName' => 'disableApiTermination', ], 'InstanceInitiatedShutdownBehavior' => [ 'shape' => 'ShutdownBehavior', 'locationName' => 'instanceInitiatedShutdownBehavior', ], 'UserData' => [ 'shape' => 'SensitiveUserData', 'locationName' => 'userData', ], 'TagSpecifications' => [ 'shape' => 'LaunchTemplateTagSpecificationList', 'locationName' => 'tagSpecificationSet', ], 'ElasticGpuSpecifications' => [ 'shape' => 'ElasticGpuSpecificationResponseList', 'locationName' => 'elasticGpuSpecificationSet', ], 'ElasticInferenceAccelerators' => [ 'shape' => 'LaunchTemplateElasticInferenceAcceleratorResponseList', 'locationName' => 'elasticInferenceAcceleratorSet', ], 'SecurityGroupIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'securityGroupIdSet', ], 'SecurityGroups' => [ 'shape' => 'ValueStringList', 'locationName' => 'securityGroupSet', ], 'InstanceMarketOptions' => [ 'shape' => 'LaunchTemplateInstanceMarketOptions', 'locationName' => 'instanceMarketOptions', ], 'CreditSpecification' => [ 'shape' => 'CreditSpecification', 'locationName' => 'creditSpecification', ], 'CpuOptions' => [ 'shape' => 'LaunchTemplateCpuOptions', 'locationName' => 'cpuOptions', ], 'CapacityReservationSpecification' => [ 'shape' => 'LaunchTemplateCapacityReservationSpecificationResponse', 'locationName' => 'capacityReservationSpecification', ], 'LicenseSpecifications' => [ 'shape' => 'LaunchTemplateLicenseList', 'locationName' => 'licenseSet', ], 'HibernationOptions' => [ 'shape' => 'LaunchTemplateHibernationOptions', 'locationName' => 'hibernationOptions', ], 'MetadataOptions' => [ 'shape' => 'LaunchTemplateInstanceMetadataOptions', 'locationName' => 'metadataOptions', ], 'EnclaveOptions' => [ 'shape' => 'LaunchTemplateEnclaveOptions', 'locationName' => 'enclaveOptions', ], 'InstanceRequirements' => [ 'shape' => 'InstanceRequirements', 'locationName' => 'instanceRequirements', ], 'PrivateDnsNameOptions' => [ 'shape' => 'LaunchTemplatePrivateDnsNameOptions', 'locationName' => 'privateDnsNameOptions', ], 'MaintenanceOptions' => [ 'shape' => 'LaunchTemplateInstanceMaintenanceOptions', 'locationName' => 'maintenanceOptions', ], 'DisableApiStop' => [ 'shape' => 'Boolean', 'locationName' => 'disableApiStop', ], ], ], 'RestorableByStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'RestoreAddressToClassicRequest' => [ 'type' => 'structure', 'required' => [ 'PublicIp', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], ], ], 'RestoreAddressToClassicResult' => [ 'type' => 'structure', 'members' => [ 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'Status' => [ 'shape' => 'Status', 'locationName' => 'status', ], ], ], 'RestoreImageFromRecycleBinRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'ImageId' => [ 'shape' => 'ImageId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RestoreImageFromRecycleBinResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'RestoreManagedPrefixListVersionRequest' => [ 'type' => 'structure', 'required' => [ 'PrefixListId', 'PreviousVersion', 'CurrentVersion', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'PreviousVersion' => [ 'shape' => 'Long', ], 'CurrentVersion' => [ 'shape' => 'Long', ], ], ], 'RestoreManagedPrefixListVersionResult' => [ 'type' => 'structure', 'members' => [ 'PrefixList' => [ 'shape' => 'ManagedPrefixList', 'locationName' => 'prefixList', ], ], ], 'RestoreSnapshotFromRecycleBinRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', ], 'members' => [ 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RestoreSnapshotFromRecycleBinResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'StartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'startTime', ], 'State' => [ 'shape' => 'SnapshotState', 'locationName' => 'status', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'VolumeSize' => [ 'shape' => 'Integer', 'locationName' => 'volumeSize', ], 'SseType' => [ 'shape' => 'SSEType', 'locationName' => 'sseType', ], ], ], 'RestoreSnapshotTierRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', ], 'members' => [ 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'TemporaryRestoreDays' => [ 'shape' => 'RestoreSnapshotTierRequestTemporaryRestoreDays', ], 'PermanentRestore' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RestoreSnapshotTierRequestTemporaryRestoreDays' => [ 'type' => 'integer', ], 'RestoreSnapshotTierResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'RestoreStartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'restoreStartTime', ], 'RestoreDuration' => [ 'shape' => 'Integer', 'locationName' => 'restoreDuration', ], 'IsPermanentRestore' => [ 'shape' => 'Boolean', 'locationName' => 'isPermanentRestore', ], ], ], 'ResultRange' => [ 'type' => 'integer', 'max' => 500, 'min' => 20, ], 'RetentionPeriodRequestDays' => [ 'type' => 'integer', 'max' => 36500, 'min' => 1, ], 'RetentionPeriodResponseDays' => [ 'type' => 'integer', ], 'RevokeClientVpnIngressRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', 'TargetNetworkCidr', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'TargetNetworkCidr' => [ 'shape' => 'String', ], 'AccessGroupId' => [ 'shape' => 'String', ], 'RevokeAllGroups' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'RevokeClientVpnIngressResult' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'ClientVpnAuthorizationRuleStatus', 'locationName' => 'status', ], ], ], 'RevokeSecurityGroupEgressRequest' => [ 'type' => 'structure', 'required' => [ 'GroupId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupId' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'groupId', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', 'locationName' => 'ipPermissions', ], 'SecurityGroupRuleIds' => [ 'shape' => 'SecurityGroupRuleIdList', 'locationName' => 'SecurityGroupRuleId', ], 'CidrIp' => [ 'shape' => 'String', 'locationName' => 'cidrIp', ], 'FromPort' => [ 'shape' => 'Integer', 'locationName' => 'fromPort', ], 'IpProtocol' => [ 'shape' => 'String', 'locationName' => 'ipProtocol', ], 'ToPort' => [ 'shape' => 'Integer', 'locationName' => 'toPort', ], 'SourceSecurityGroupName' => [ 'shape' => 'String', 'locationName' => 'sourceSecurityGroupName', ], 'SourceSecurityGroupOwnerId' => [ 'shape' => 'String', 'locationName' => 'sourceSecurityGroupOwnerId', ], ], ], 'RevokeSecurityGroupEgressResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], 'UnknownIpPermissions' => [ 'shape' => 'IpPermissionList', 'locationName' => 'unknownIpPermissionSet', ], ], ], 'RevokeSecurityGroupIngressRequest' => [ 'type' => 'structure', 'members' => [ 'CidrIp' => [ 'shape' => 'String', ], 'FromPort' => [ 'shape' => 'Integer', ], 'GroupId' => [ 'shape' => 'SecurityGroupId', ], 'GroupName' => [ 'shape' => 'SecurityGroupName', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', ], 'IpProtocol' => [ 'shape' => 'String', ], 'SourceSecurityGroupName' => [ 'shape' => 'String', ], 'SourceSecurityGroupOwnerId' => [ 'shape' => 'String', ], 'ToPort' => [ 'shape' => 'Integer', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SecurityGroupRuleIds' => [ 'shape' => 'SecurityGroupRuleIdList', 'locationName' => 'SecurityGroupRuleId', ], ], ], 'RevokeSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], 'UnknownIpPermissions' => [ 'shape' => 'IpPermissionList', 'locationName' => 'unknownIpPermissionSet', ], ], ], 'RoleId' => [ 'type' => 'string', ], 'RootDeviceType' => [ 'type' => 'string', 'enum' => [ 'ebs', 'instance-store', ], ], 'RootDeviceTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RootDeviceType', 'locationName' => 'item', ], ], 'Route' => [ 'type' => 'structure', 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'DestinationIpv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationIpv6CidrBlock', ], 'DestinationPrefixListId' => [ 'shape' => 'String', 'locationName' => 'destinationPrefixListId', ], 'EgressOnlyInternetGatewayId' => [ 'shape' => 'String', 'locationName' => 'egressOnlyInternetGatewayId', ], 'GatewayId' => [ 'shape' => 'String', 'locationName' => 'gatewayId', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceOwnerId' => [ 'shape' => 'String', 'locationName' => 'instanceOwnerId', ], 'NatGatewayId' => [ 'shape' => 'String', 'locationName' => 'natGatewayId', ], 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'LocalGatewayId' => [ 'shape' => 'String', 'locationName' => 'localGatewayId', ], 'CarrierGatewayId' => [ 'shape' => 'CarrierGatewayId', 'locationName' => 'carrierGatewayId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'Origin' => [ 'shape' => 'RouteOrigin', 'locationName' => 'origin', ], 'State' => [ 'shape' => 'RouteState', 'locationName' => 'state', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], 'CoreNetworkArn' => [ 'shape' => 'CoreNetworkArn', 'locationName' => 'coreNetworkArn', ], ], ], 'RouteGatewayId' => [ 'type' => 'string', ], 'RouteList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Route', 'locationName' => 'item', ], ], 'RouteOrigin' => [ 'type' => 'string', 'enum' => [ 'CreateRouteTable', 'CreateRoute', 'EnableVgwRoutePropagation', ], ], 'RouteState' => [ 'type' => 'string', 'enum' => [ 'active', 'blackhole', ], ], 'RouteTable' => [ 'type' => 'structure', 'members' => [ 'Associations' => [ 'shape' => 'RouteTableAssociationList', 'locationName' => 'associationSet', ], 'PropagatingVgws' => [ 'shape' => 'PropagatingVgwList', 'locationName' => 'propagatingVgwSet', ], 'RouteTableId' => [ 'shape' => 'String', 'locationName' => 'routeTableId', ], 'Routes' => [ 'shape' => 'RouteList', 'locationName' => 'routeSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], ], ], 'RouteTableAssociation' => [ 'type' => 'structure', 'members' => [ 'Main' => [ 'shape' => 'Boolean', 'locationName' => 'main', ], 'RouteTableAssociationId' => [ 'shape' => 'String', 'locationName' => 'routeTableAssociationId', ], 'RouteTableId' => [ 'shape' => 'String', 'locationName' => 'routeTableId', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'GatewayId' => [ 'shape' => 'String', 'locationName' => 'gatewayId', ], 'AssociationState' => [ 'shape' => 'RouteTableAssociationState', 'locationName' => 'associationState', ], ], ], 'RouteTableAssociationId' => [ 'type' => 'string', ], 'RouteTableAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RouteTableAssociation', 'locationName' => 'item', ], ], 'RouteTableAssociationState' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'RouteTableAssociationStateCode', 'locationName' => 'state', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], ], ], 'RouteTableAssociationStateCode' => [ 'type' => 'string', 'enum' => [ 'associating', 'associated', 'disassociating', 'disassociated', 'failed', ], ], 'RouteTableId' => [ 'type' => 'string', ], 'RouteTableIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RouteTableId', 'locationName' => 'item', ], ], 'RouteTableList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RouteTable', 'locationName' => 'item', ], ], 'RuleAction' => [ 'type' => 'string', 'enum' => [ 'allow', 'deny', ], ], 'RuleGroupRuleOptionsPair' => [ 'type' => 'structure', 'members' => [ 'RuleGroupArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ruleGroupArn', ], 'RuleOptions' => [ 'shape' => 'RuleOptionList', 'locationName' => 'ruleOptionSet', ], ], ], 'RuleGroupRuleOptionsPairList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RuleGroupRuleOptionsPair', 'locationName' => 'item', ], ], 'RuleGroupTypePair' => [ 'type' => 'structure', 'members' => [ 'RuleGroupArn' => [ 'shape' => 'ResourceArn', 'locationName' => 'ruleGroupArn', ], 'RuleGroupType' => [ 'shape' => 'String', 'locationName' => 'ruleGroupType', ], ], ], 'RuleGroupTypePairList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RuleGroupTypePair', 'locationName' => 'item', ], ], 'RuleOption' => [ 'type' => 'structure', 'members' => [ 'Keyword' => [ 'shape' => 'String', 'locationName' => 'keyword', ], 'Settings' => [ 'shape' => 'StringList', 'locationName' => 'settingSet', ], ], ], 'RuleOptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RuleOption', 'locationName' => 'item', ], ], 'RunInstancesMonitoringEnabled' => [ 'type' => 'structure', 'required' => [ 'Enabled', ], 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], ], ], 'RunInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'MaxCount', 'MinCount', ], 'members' => [ 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingRequestList', 'locationName' => 'BlockDeviceMapping', ], 'ImageId' => [ 'shape' => 'ImageId', ], 'InstanceType' => [ 'shape' => 'InstanceType', ], 'Ipv6AddressCount' => [ 'shape' => 'Integer', ], 'Ipv6Addresses' => [ 'shape' => 'InstanceIpv6AddressList', 'locationName' => 'Ipv6Address', ], 'KernelId' => [ 'shape' => 'KernelId', ], 'KeyName' => [ 'shape' => 'KeyPairName', ], 'MaxCount' => [ 'shape' => 'Integer', ], 'MinCount' => [ 'shape' => 'Integer', ], 'Monitoring' => [ 'shape' => 'RunInstancesMonitoringEnabled', ], 'Placement' => [ 'shape' => 'Placement', ], 'RamdiskId' => [ 'shape' => 'RamdiskId', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'SecurityGroups' => [ 'shape' => 'SecurityGroupStringList', 'locationName' => 'SecurityGroup', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], 'UserData' => [ 'shape' => 'RunInstancesUserData', ], 'AdditionalInfo' => [ 'shape' => 'String', 'locationName' => 'additionalInfo', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, 'locationName' => 'clientToken', ], 'DisableApiTermination' => [ 'shape' => 'Boolean', 'locationName' => 'disableApiTermination', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfileSpecification', 'locationName' => 'iamInstanceProfile', ], 'InstanceInitiatedShutdownBehavior' => [ 'shape' => 'ShutdownBehavior', 'locationName' => 'instanceInitiatedShutdownBehavior', ], 'NetworkInterfaces' => [ 'shape' => 'InstanceNetworkInterfaceSpecificationList', 'locationName' => 'networkInterface', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'ElasticGpuSpecification' => [ 'shape' => 'ElasticGpuSpecifications', ], 'ElasticInferenceAccelerators' => [ 'shape' => 'ElasticInferenceAccelerators', 'locationName' => 'ElasticInferenceAccelerator', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'LaunchTemplate' => [ 'shape' => 'LaunchTemplateSpecification', ], 'InstanceMarketOptions' => [ 'shape' => 'InstanceMarketOptionsRequest', ], 'CreditSpecification' => [ 'shape' => 'CreditSpecificationRequest', ], 'CpuOptions' => [ 'shape' => 'CpuOptionsRequest', ], 'CapacityReservationSpecification' => [ 'shape' => 'CapacityReservationSpecification', ], 'HibernationOptions' => [ 'shape' => 'HibernationOptionsRequest', ], 'LicenseSpecifications' => [ 'shape' => 'LicenseSpecificationListRequest', 'locationName' => 'LicenseSpecification', ], 'MetadataOptions' => [ 'shape' => 'InstanceMetadataOptionsRequest', ], 'EnclaveOptions' => [ 'shape' => 'EnclaveOptionsRequest', ], 'PrivateDnsNameOptions' => [ 'shape' => 'PrivateDnsNameOptionsRequest', ], 'MaintenanceOptions' => [ 'shape' => 'InstanceMaintenanceOptionsRequest', ], 'DisableApiStop' => [ 'shape' => 'Boolean', ], 'EnablePrimaryIpv6' => [ 'shape' => 'Boolean', ], ], ], 'RunInstancesUserData' => [ 'type' => 'string', 'sensitive' => true, ], 'RunScheduledInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'LaunchSpecification', 'ScheduledInstanceId', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'LaunchSpecification' => [ 'shape' => 'ScheduledInstancesLaunchSpecification', ], 'ScheduledInstanceId' => [ 'shape' => 'ScheduledInstanceId', ], ], ], 'RunScheduledInstancesResult' => [ 'type' => 'structure', 'members' => [ 'InstanceIdSet' => [ 'shape' => 'InstanceIdSet', 'locationName' => 'instanceIdSet', ], ], ], 'S3ObjectTag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'S3ObjectTagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'S3ObjectTag', 'locationName' => 'item', ], ], 'S3Storage' => [ 'type' => 'structure', 'members' => [ 'AWSAccessKeyId' => [ 'shape' => 'String', ], 'Bucket' => [ 'shape' => 'String', 'locationName' => 'bucket', ], 'Prefix' => [ 'shape' => 'String', 'locationName' => 'prefix', ], 'UploadPolicy' => [ 'shape' => 'Blob', 'locationName' => 'uploadPolicy', ], 'UploadPolicySignature' => [ 'shape' => 'S3StorageUploadPolicySignature', 'locationName' => 'uploadPolicySignature', ], ], ], 'S3StorageUploadPolicy' => [ 'type' => 'string', 'sensitive' => true, ], 'S3StorageUploadPolicySignature' => [ 'type' => 'string', 'sensitive' => true, ], 'SSEType' => [ 'type' => 'string', 'enum' => [ 'sse-ebs', 'sse-kms', 'none', ], ], 'ScheduledInstance' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'CreateDate' => [ 'shape' => 'DateTime', 'locationName' => 'createDate', ], 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'NetworkPlatform' => [ 'shape' => 'String', 'locationName' => 'networkPlatform', ], 'NextSlotStartTime' => [ 'shape' => 'DateTime', 'locationName' => 'nextSlotStartTime', ], 'Platform' => [ 'shape' => 'String', 'locationName' => 'platform', ], 'PreviousSlotEndTime' => [ 'shape' => 'DateTime', 'locationName' => 'previousSlotEndTime', ], 'Recurrence' => [ 'shape' => 'ScheduledInstanceRecurrence', 'locationName' => 'recurrence', ], 'ScheduledInstanceId' => [ 'shape' => 'String', 'locationName' => 'scheduledInstanceId', ], 'SlotDurationInHours' => [ 'shape' => 'Integer', 'locationName' => 'slotDurationInHours', ], 'TermEndDate' => [ 'shape' => 'DateTime', 'locationName' => 'termEndDate', ], 'TermStartDate' => [ 'shape' => 'DateTime', 'locationName' => 'termStartDate', ], 'TotalScheduledInstanceHours' => [ 'shape' => 'Integer', 'locationName' => 'totalScheduledInstanceHours', ], ], ], 'ScheduledInstanceAvailability' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'AvailableInstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'availableInstanceCount', ], 'FirstSlotStartTime' => [ 'shape' => 'DateTime', 'locationName' => 'firstSlotStartTime', ], 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'MaxTermDurationInDays' => [ 'shape' => 'Integer', 'locationName' => 'maxTermDurationInDays', ], 'MinTermDurationInDays' => [ 'shape' => 'Integer', 'locationName' => 'minTermDurationInDays', ], 'NetworkPlatform' => [ 'shape' => 'String', 'locationName' => 'networkPlatform', ], 'Platform' => [ 'shape' => 'String', 'locationName' => 'platform', ], 'PurchaseToken' => [ 'shape' => 'String', 'locationName' => 'purchaseToken', ], 'Recurrence' => [ 'shape' => 'ScheduledInstanceRecurrence', 'locationName' => 'recurrence', ], 'SlotDurationInHours' => [ 'shape' => 'Integer', 'locationName' => 'slotDurationInHours', ], 'TotalScheduledInstanceHours' => [ 'shape' => 'Integer', 'locationName' => 'totalScheduledInstanceHours', ], ], ], 'ScheduledInstanceAvailabilitySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstanceAvailability', 'locationName' => 'item', ], ], 'ScheduledInstanceId' => [ 'type' => 'string', ], 'ScheduledInstanceIdRequestSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstanceId', 'locationName' => 'ScheduledInstanceId', ], ], 'ScheduledInstanceRecurrence' => [ 'type' => 'structure', 'members' => [ 'Frequency' => [ 'shape' => 'String', 'locationName' => 'frequency', ], 'Interval' => [ 'shape' => 'Integer', 'locationName' => 'interval', ], 'OccurrenceDaySet' => [ 'shape' => 'OccurrenceDaySet', 'locationName' => 'occurrenceDaySet', ], 'OccurrenceRelativeToEnd' => [ 'shape' => 'Boolean', 'locationName' => 'occurrenceRelativeToEnd', ], 'OccurrenceUnit' => [ 'shape' => 'String', 'locationName' => 'occurrenceUnit', ], ], ], 'ScheduledInstanceRecurrenceRequest' => [ 'type' => 'structure', 'members' => [ 'Frequency' => [ 'shape' => 'String', ], 'Interval' => [ 'shape' => 'Integer', ], 'OccurrenceDays' => [ 'shape' => 'OccurrenceDayRequestSet', 'locationName' => 'OccurrenceDay', ], 'OccurrenceRelativeToEnd' => [ 'shape' => 'Boolean', ], 'OccurrenceUnit' => [ 'shape' => 'String', ], ], ], 'ScheduledInstanceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstance', 'locationName' => 'item', ], ], 'ScheduledInstancesBlockDeviceMapping' => [ 'type' => 'structure', 'members' => [ 'DeviceName' => [ 'shape' => 'String', ], 'Ebs' => [ 'shape' => 'ScheduledInstancesEbs', ], 'NoDevice' => [ 'shape' => 'String', ], 'VirtualName' => [ 'shape' => 'String', ], ], ], 'ScheduledInstancesBlockDeviceMappingSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstancesBlockDeviceMapping', 'locationName' => 'BlockDeviceMapping', ], ], 'ScheduledInstancesEbs' => [ 'type' => 'structure', 'members' => [ 'DeleteOnTermination' => [ 'shape' => 'Boolean', ], 'Encrypted' => [ 'shape' => 'Boolean', ], 'Iops' => [ 'shape' => 'Integer', ], 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'VolumeSize' => [ 'shape' => 'Integer', ], 'VolumeType' => [ 'shape' => 'String', ], ], ], 'ScheduledInstancesIamInstanceProfile' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', ], 'Name' => [ 'shape' => 'String', ], ], ], 'ScheduledInstancesIpv6Address' => [ 'type' => 'structure', 'members' => [ 'Ipv6Address' => [ 'shape' => 'Ipv6Address', ], ], ], 'ScheduledInstancesIpv6AddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstancesIpv6Address', 'locationName' => 'Ipv6Address', ], ], 'ScheduledInstancesLaunchSpecification' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'BlockDeviceMappings' => [ 'shape' => 'ScheduledInstancesBlockDeviceMappingSet', 'locationName' => 'BlockDeviceMapping', ], 'EbsOptimized' => [ 'shape' => 'Boolean', ], 'IamInstanceProfile' => [ 'shape' => 'ScheduledInstancesIamInstanceProfile', ], 'ImageId' => [ 'shape' => 'ImageId', ], 'InstanceType' => [ 'shape' => 'String', ], 'KernelId' => [ 'shape' => 'KernelId', ], 'KeyName' => [ 'shape' => 'KeyPairName', ], 'Monitoring' => [ 'shape' => 'ScheduledInstancesMonitoring', ], 'NetworkInterfaces' => [ 'shape' => 'ScheduledInstancesNetworkInterfaceSet', 'locationName' => 'NetworkInterface', ], 'Placement' => [ 'shape' => 'ScheduledInstancesPlacement', ], 'RamdiskId' => [ 'shape' => 'RamdiskId', ], 'SecurityGroupIds' => [ 'shape' => 'ScheduledInstancesSecurityGroupIdSet', 'locationName' => 'SecurityGroupId', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], 'UserData' => [ 'shape' => 'String', ], ], 'sensitive' => true, ], 'ScheduledInstancesMonitoring' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], ], ], 'ScheduledInstancesNetworkInterface' => [ 'type' => 'structure', 'members' => [ 'AssociatePublicIpAddress' => [ 'shape' => 'Boolean', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', ], 'Description' => [ 'shape' => 'String', ], 'DeviceIndex' => [ 'shape' => 'Integer', ], 'Groups' => [ 'shape' => 'ScheduledInstancesSecurityGroupIdSet', 'locationName' => 'Group', ], 'Ipv6AddressCount' => [ 'shape' => 'Integer', ], 'Ipv6Addresses' => [ 'shape' => 'ScheduledInstancesIpv6AddressList', 'locationName' => 'Ipv6Address', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', ], 'PrivateIpAddress' => [ 'shape' => 'String', ], 'PrivateIpAddressConfigs' => [ 'shape' => 'PrivateIpAddressConfigSet', 'locationName' => 'PrivateIpAddressConfig', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'Integer', ], 'SubnetId' => [ 'shape' => 'SubnetId', ], ], ], 'ScheduledInstancesNetworkInterfaceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstancesNetworkInterface', 'locationName' => 'NetworkInterface', ], ], 'ScheduledInstancesPlacement' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', ], 'GroupName' => [ 'shape' => 'PlacementGroupName', ], ], ], 'ScheduledInstancesPrivateIpAddressConfig' => [ 'type' => 'structure', 'members' => [ 'Primary' => [ 'shape' => 'Boolean', ], 'PrivateIpAddress' => [ 'shape' => 'String', ], ], ], 'ScheduledInstancesSecurityGroupIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'SecurityGroupId', ], ], 'SearchLocalGatewayRoutesRequest' => [ 'type' => 'structure', 'required' => [ 'LocalGatewayRouteTableId', ], 'members' => [ 'LocalGatewayRouteTableId' => [ 'shape' => 'LocalGatewayRoutetableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'MaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'SearchLocalGatewayRoutesResult' => [ 'type' => 'structure', 'members' => [ 'Routes' => [ 'shape' => 'LocalGatewayRouteList', 'locationName' => 'routeSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'SearchTransitGatewayMulticastGroupsRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayMulticastDomainId', ], 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'TransitGatewayMulticastDomainId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'NextToken' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'SearchTransitGatewayMulticastGroupsResult' => [ 'type' => 'structure', 'members' => [ 'MulticastGroups' => [ 'shape' => 'TransitGatewayMulticastGroupList', 'locationName' => 'multicastGroups', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'SearchTransitGatewayRoutesRequest' => [ 'type' => 'structure', 'required' => [ 'TransitGatewayRouteTableId', 'Filters', ], 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'TransitGatewayMaxResults', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'SearchTransitGatewayRoutesResult' => [ 'type' => 'structure', 'members' => [ 'Routes' => [ 'shape' => 'TransitGatewayRouteList', 'locationName' => 'routeSet', ], 'AdditionalRoutesAvailable' => [ 'shape' => 'Boolean', 'locationName' => 'additionalRoutesAvailable', ], ], ], 'SecurityGroup' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'groupDescription', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', 'locationName' => 'ipPermissions', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'IpPermissionsEgress' => [ 'shape' => 'IpPermissionList', 'locationName' => 'ipPermissionsEgress', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'SecurityGroupForVpc' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'PrimaryVpcId' => [ 'shape' => 'String', 'locationName' => 'primaryVpcId', ], ], ], 'SecurityGroupForVpcList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupForVpc', 'locationName' => 'item', ], ], 'SecurityGroupId' => [ 'type' => 'string', ], 'SecurityGroupIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'item', ], ], 'SecurityGroupIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'item', ], ], 'SecurityGroupIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'SecurityGroupId', ], ], 'SecurityGroupIdStringListRequest' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'SecurityGroupId', ], 'max' => 16, 'min' => 0, ], 'SecurityGroupIdentifier' => [ 'type' => 'structure', 'members' => [ 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], ], ], 'SecurityGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroup', 'locationName' => 'item', ], ], 'SecurityGroupName' => [ 'type' => 'string', ], 'SecurityGroupReference' => [ 'type' => 'structure', 'members' => [ 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'ReferencingVpcId' => [ 'shape' => 'String', 'locationName' => 'referencingVpcId', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], ], ], 'SecurityGroupReferences' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupReference', 'locationName' => 'item', ], ], 'SecurityGroupReferencingSupportValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'SecurityGroupRule' => [ 'type' => 'structure', 'members' => [ 'SecurityGroupRuleId' => [ 'shape' => 'SecurityGroupRuleId', 'locationName' => 'securityGroupRuleId', ], 'GroupId' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'groupId', ], 'GroupOwnerId' => [ 'shape' => 'String', 'locationName' => 'groupOwnerId', ], 'IsEgress' => [ 'shape' => 'Boolean', 'locationName' => 'isEgress', ], 'IpProtocol' => [ 'shape' => 'String', 'locationName' => 'ipProtocol', ], 'FromPort' => [ 'shape' => 'Integer', 'locationName' => 'fromPort', ], 'ToPort' => [ 'shape' => 'Integer', 'locationName' => 'toPort', ], 'CidrIpv4' => [ 'shape' => 'String', 'locationName' => 'cidrIpv4', ], 'CidrIpv6' => [ 'shape' => 'String', 'locationName' => 'cidrIpv6', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', 'locationName' => 'prefixListId', ], 'ReferencedGroupInfo' => [ 'shape' => 'ReferencedSecurityGroup', 'locationName' => 'referencedGroupInfo', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'SecurityGroupRuleDescription' => [ 'type' => 'structure', 'members' => [ 'SecurityGroupRuleId' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], ], ], 'SecurityGroupRuleDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupRuleDescription', 'locationName' => 'item', ], ], 'SecurityGroupRuleId' => [ 'type' => 'string', ], 'SecurityGroupRuleIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'SecurityGroupRuleList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupRule', 'locationName' => 'item', ], ], 'SecurityGroupRuleRequest' => [ 'type' => 'structure', 'members' => [ 'IpProtocol' => [ 'shape' => 'String', ], 'FromPort' => [ 'shape' => 'Integer', ], 'ToPort' => [ 'shape' => 'Integer', ], 'CidrIpv4' => [ 'shape' => 'String', ], 'CidrIpv6' => [ 'shape' => 'String', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', ], 'ReferencedGroupId' => [ 'shape' => 'SecurityGroupId', ], 'Description' => [ 'shape' => 'String', ], ], ], 'SecurityGroupRuleUpdate' => [ 'type' => 'structure', 'required' => [ 'SecurityGroupRuleId', ], 'members' => [ 'SecurityGroupRuleId' => [ 'shape' => 'SecurityGroupRuleId', ], 'SecurityGroupRule' => [ 'shape' => 'SecurityGroupRuleRequest', ], ], ], 'SecurityGroupRuleUpdateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupRuleUpdate', 'locationName' => 'item', ], ], 'SecurityGroupStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupName', 'locationName' => 'SecurityGroup', ], ], 'SelfServicePortal' => [ 'type' => 'string', 'enum' => [ 'enabled', 'disabled', ], ], 'SendDiagnosticInterruptRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'SensitiveUrl' => [ 'type' => 'string', 'sensitive' => true, ], 'SensitiveUserData' => [ 'type' => 'string', 'sensitive' => true, ], 'ServiceConfiguration' => [ 'type' => 'structure', 'members' => [ 'ServiceType' => [ 'shape' => 'ServiceTypeDetailSet', 'locationName' => 'serviceType', ], 'ServiceId' => [ 'shape' => 'String', 'locationName' => 'serviceId', ], 'ServiceName' => [ 'shape' => 'String', 'locationName' => 'serviceName', ], 'ServiceState' => [ 'shape' => 'ServiceState', 'locationName' => 'serviceState', ], 'AvailabilityZones' => [ 'shape' => 'ValueStringList', 'locationName' => 'availabilityZoneSet', ], 'AcceptanceRequired' => [ 'shape' => 'Boolean', 'locationName' => 'acceptanceRequired', ], 'ManagesVpcEndpoints' => [ 'shape' => 'Boolean', 'locationName' => 'managesVpcEndpoints', ], 'NetworkLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'networkLoadBalancerArnSet', ], 'GatewayLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'gatewayLoadBalancerArnSet', ], 'SupportedIpAddressTypes' => [ 'shape' => 'SupportedIpAddressTypes', 'locationName' => 'supportedIpAddressTypeSet', ], 'BaseEndpointDnsNames' => [ 'shape' => 'ValueStringList', 'locationName' => 'baseEndpointDnsNameSet', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'PrivateDnsNameConfiguration' => [ 'shape' => 'PrivateDnsNameConfiguration', 'locationName' => 'privateDnsNameConfiguration', ], 'PayerResponsibility' => [ 'shape' => 'PayerResponsibility', 'locationName' => 'payerResponsibility', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ServiceConfigurationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ServiceConfiguration', 'locationName' => 'item', ], ], 'ServiceConnectivityType' => [ 'type' => 'string', 'enum' => [ 'ipv4', 'ipv6', ], ], 'ServiceDetail' => [ 'type' => 'structure', 'members' => [ 'ServiceName' => [ 'shape' => 'String', 'locationName' => 'serviceName', ], 'ServiceId' => [ 'shape' => 'String', 'locationName' => 'serviceId', ], 'ServiceType' => [ 'shape' => 'ServiceTypeDetailSet', 'locationName' => 'serviceType', ], 'AvailabilityZones' => [ 'shape' => 'ValueStringList', 'locationName' => 'availabilityZoneSet', ], 'Owner' => [ 'shape' => 'String', 'locationName' => 'owner', ], 'BaseEndpointDnsNames' => [ 'shape' => 'ValueStringList', 'locationName' => 'baseEndpointDnsNameSet', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'PrivateDnsNames' => [ 'shape' => 'PrivateDnsDetailsSet', 'locationName' => 'privateDnsNameSet', ], 'VpcEndpointPolicySupported' => [ 'shape' => 'Boolean', 'locationName' => 'vpcEndpointPolicySupported', ], 'AcceptanceRequired' => [ 'shape' => 'Boolean', 'locationName' => 'acceptanceRequired', ], 'ManagesVpcEndpoints' => [ 'shape' => 'Boolean', 'locationName' => 'managesVpcEndpoints', ], 'PayerResponsibility' => [ 'shape' => 'PayerResponsibility', 'locationName' => 'payerResponsibility', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'PrivateDnsNameVerificationState' => [ 'shape' => 'DnsNameState', 'locationName' => 'privateDnsNameVerificationState', ], 'SupportedIpAddressTypes' => [ 'shape' => 'SupportedIpAddressTypes', 'locationName' => 'supportedIpAddressTypeSet', ], ], ], 'ServiceDetailSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ServiceDetail', 'locationName' => 'item', ], ], 'ServiceState' => [ 'type' => 'string', 'enum' => [ 'Pending', 'Available', 'Deleting', 'Deleted', 'Failed', ], ], 'ServiceType' => [ 'type' => 'string', 'enum' => [ 'Interface', 'Gateway', 'GatewayLoadBalancer', ], ], 'ServiceTypeDetail' => [ 'type' => 'structure', 'members' => [ 'ServiceType' => [ 'shape' => 'ServiceType', 'locationName' => 'serviceType', ], ], ], 'ServiceTypeDetailSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ServiceTypeDetail', 'locationName' => 'item', ], ], 'ShutdownBehavior' => [ 'type' => 'string', 'enum' => [ 'stop', 'terminate', ], ], 'SlotDateTimeRangeRequest' => [ 'type' => 'structure', 'required' => [ 'EarliestTime', 'LatestTime', ], 'members' => [ 'EarliestTime' => [ 'shape' => 'DateTime', ], 'LatestTime' => [ 'shape' => 'DateTime', ], ], ], 'SlotStartTimeRangeRequest' => [ 'type' => 'structure', 'members' => [ 'EarliestTime' => [ 'shape' => 'DateTime', ], 'LatestTime' => [ 'shape' => 'DateTime', ], ], ], 'Snapshot' => [ 'type' => 'structure', 'members' => [ 'DataEncryptionKeyId' => [ 'shape' => 'String', 'locationName' => 'dataEncryptionKeyId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], 'State' => [ 'shape' => 'SnapshotState', 'locationName' => 'status', ], 'StateMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'VolumeSize' => [ 'shape' => 'Integer', 'locationName' => 'volumeSize', ], 'OwnerAlias' => [ 'shape' => 'String', 'locationName' => 'ownerAlias', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'StorageTier' => [ 'shape' => 'StorageTier', 'locationName' => 'storageTier', ], 'RestoreExpiryTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'restoreExpiryTime', ], 'SseType' => [ 'shape' => 'SSEType', 'locationName' => 'sseType', ], ], ], 'SnapshotAttributeName' => [ 'type' => 'string', 'enum' => [ 'productCodes', 'createVolumePermission', ], ], 'SnapshotBlockPublicAccessState' => [ 'type' => 'string', 'enum' => [ 'block-all-sharing', 'block-new-sharing', 'unblocked', ], ], 'SnapshotDetail' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DeviceName' => [ 'shape' => 'String', 'locationName' => 'deviceName', ], 'DiskImageSize' => [ 'shape' => 'Double', 'locationName' => 'diskImageSize', ], 'Format' => [ 'shape' => 'String', 'locationName' => 'format', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Url' => [ 'shape' => 'SensitiveUrl', 'locationName' => 'url', ], 'UserBucket' => [ 'shape' => 'UserBucketDetails', 'locationName' => 'userBucket', ], ], ], 'SnapshotDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SnapshotDetail', 'locationName' => 'item', ], ], 'SnapshotDiskContainer' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', ], 'Format' => [ 'shape' => 'String', ], 'Url' => [ 'shape' => 'SensitiveUrl', ], 'UserBucket' => [ 'shape' => 'UserBucket', ], ], ], 'SnapshotId' => [ 'type' => 'string', ], 'SnapshotIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SnapshotId', 'locationName' => 'SnapshotId', ], ], 'SnapshotInfo' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'State' => [ 'shape' => 'SnapshotState', 'locationName' => 'state', ], 'VolumeSize' => [ 'shape' => 'Integer', 'locationName' => 'volumeSize', ], 'StartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'startTime', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'SseType' => [ 'shape' => 'SSEType', 'locationName' => 'sseType', ], ], ], 'SnapshotList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Snapshot', 'locationName' => 'item', ], ], 'SnapshotRecycleBinInfo' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'RecycleBinEnterTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'recycleBinEnterTime', ], 'RecycleBinExitTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'recycleBinExitTime', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], ], ], 'SnapshotRecycleBinInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SnapshotRecycleBinInfo', 'locationName' => 'item', ], ], 'SnapshotSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SnapshotInfo', 'locationName' => 'item', ], ], 'SnapshotState' => [ 'type' => 'string', 'enum' => [ 'pending', 'completed', 'error', 'recoverable', 'recovering', ], ], 'SnapshotTaskDetail' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'DiskImageSize' => [ 'shape' => 'Double', 'locationName' => 'diskImageSize', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'Format' => [ 'shape' => 'String', 'locationName' => 'format', ], 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Url' => [ 'shape' => 'SensitiveUrl', 'locationName' => 'url', ], 'UserBucket' => [ 'shape' => 'UserBucketDetails', 'locationName' => 'userBucket', ], ], ], 'SnapshotTierStatus' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'SnapshotId', 'locationName' => 'snapshotId', ], 'VolumeId' => [ 'shape' => 'VolumeId', 'locationName' => 'volumeId', ], 'Status' => [ 'shape' => 'SnapshotState', 'locationName' => 'status', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'StorageTier' => [ 'shape' => 'StorageTier', 'locationName' => 'storageTier', ], 'LastTieringStartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'lastTieringStartTime', ], 'LastTieringProgress' => [ 'shape' => 'Integer', 'locationName' => 'lastTieringProgress', ], 'LastTieringOperationStatus' => [ 'shape' => 'TieringOperationStatus', 'locationName' => 'lastTieringOperationStatus', ], 'LastTieringOperationStatusDetail' => [ 'shape' => 'String', 'locationName' => 'lastTieringOperationStatusDetail', ], 'ArchivalCompleteTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'archivalCompleteTime', ], 'RestoreExpiryTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'restoreExpiryTime', ], ], ], 'SpotAllocationStrategy' => [ 'type' => 'string', 'enum' => [ 'lowest-price', 'diversified', 'capacity-optimized', 'capacity-optimized-prioritized', 'price-capacity-optimized', ], ], 'SpotCapacityRebalance' => [ 'type' => 'structure', 'members' => [ 'ReplacementStrategy' => [ 'shape' => 'ReplacementStrategy', 'locationName' => 'replacementStrategy', ], 'TerminationDelay' => [ 'shape' => 'Integer', 'locationName' => 'terminationDelay', ], ], ], 'SpotDatafeedSubscription' => [ 'type' => 'structure', 'members' => [ 'Bucket' => [ 'shape' => 'String', 'locationName' => 'bucket', ], 'Fault' => [ 'shape' => 'SpotInstanceStateFault', 'locationName' => 'fault', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Prefix' => [ 'shape' => 'String', 'locationName' => 'prefix', ], 'State' => [ 'shape' => 'DatafeedSubscriptionState', 'locationName' => 'state', ], ], ], 'SpotFleetLaunchSpecification' => [ 'type' => 'structure', 'members' => [ 'SecurityGroups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'AddressingType' => [ 'shape' => 'String', 'locationName' => 'addressingType', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfileSpecification', 'locationName' => 'iamInstanceProfile', ], 'ImageId' => [ 'shape' => 'ImageId', 'locationName' => 'imageId', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'KernelId' => [ 'shape' => 'String', 'locationName' => 'kernelId', ], 'KeyName' => [ 'shape' => 'KeyPairName', 'locationName' => 'keyName', ], 'Monitoring' => [ 'shape' => 'SpotFleetMonitoring', 'locationName' => 'monitoring', ], 'NetworkInterfaces' => [ 'shape' => 'InstanceNetworkInterfaceSpecificationList', 'locationName' => 'networkInterfaceSet', ], 'Placement' => [ 'shape' => 'SpotPlacement', 'locationName' => 'placement', ], 'RamdiskId' => [ 'shape' => 'String', 'locationName' => 'ramdiskId', ], 'SpotPrice' => [ 'shape' => 'String', 'locationName' => 'spotPrice', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'UserData' => [ 'shape' => 'SensitiveUserData', 'locationName' => 'userData', ], 'WeightedCapacity' => [ 'shape' => 'Double', 'locationName' => 'weightedCapacity', ], 'TagSpecifications' => [ 'shape' => 'SpotFleetTagSpecificationList', 'locationName' => 'tagSpecificationSet', ], 'InstanceRequirements' => [ 'shape' => 'InstanceRequirements', 'locationName' => 'instanceRequirements', ], ], ], 'SpotFleetMonitoring' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], ], ], 'SpotFleetRequestConfig' => [ 'type' => 'structure', 'members' => [ 'ActivityStatus' => [ 'shape' => 'ActivityStatus', 'locationName' => 'activityStatus', ], 'CreateTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'createTime', ], 'SpotFleetRequestConfig' => [ 'shape' => 'SpotFleetRequestConfigData', 'locationName' => 'spotFleetRequestConfig', ], 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], 'SpotFleetRequestState' => [ 'shape' => 'BatchState', 'locationName' => 'spotFleetRequestState', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'SpotFleetRequestConfigData' => [ 'type' => 'structure', 'required' => [ 'IamFleetRole', 'TargetCapacity', ], 'members' => [ 'AllocationStrategy' => [ 'shape' => 'AllocationStrategy', 'locationName' => 'allocationStrategy', ], 'OnDemandAllocationStrategy' => [ 'shape' => 'OnDemandAllocationStrategy', 'locationName' => 'onDemandAllocationStrategy', ], 'SpotMaintenanceStrategies' => [ 'shape' => 'SpotMaintenanceStrategies', 'locationName' => 'spotMaintenanceStrategies', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'ExcessCapacityTerminationPolicy' => [ 'shape' => 'ExcessCapacityTerminationPolicy', 'locationName' => 'excessCapacityTerminationPolicy', ], 'FulfilledCapacity' => [ 'shape' => 'Double', 'locationName' => 'fulfilledCapacity', ], 'OnDemandFulfilledCapacity' => [ 'shape' => 'Double', 'locationName' => 'onDemandFulfilledCapacity', ], 'IamFleetRole' => [ 'shape' => 'String', 'locationName' => 'iamFleetRole', ], 'LaunchSpecifications' => [ 'shape' => 'LaunchSpecsList', 'locationName' => 'launchSpecifications', ], 'LaunchTemplateConfigs' => [ 'shape' => 'LaunchTemplateConfigList', 'locationName' => 'launchTemplateConfigs', ], 'SpotPrice' => [ 'shape' => 'String', 'locationName' => 'spotPrice', ], 'TargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'targetCapacity', ], 'OnDemandTargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'onDemandTargetCapacity', ], 'OnDemandMaxTotalPrice' => [ 'shape' => 'String', 'locationName' => 'onDemandMaxTotalPrice', ], 'SpotMaxTotalPrice' => [ 'shape' => 'String', 'locationName' => 'spotMaxTotalPrice', ], 'TerminateInstancesWithExpiration' => [ 'shape' => 'Boolean', 'locationName' => 'terminateInstancesWithExpiration', ], 'Type' => [ 'shape' => 'FleetType', 'locationName' => 'type', ], 'ValidFrom' => [ 'shape' => 'DateTime', 'locationName' => 'validFrom', ], 'ValidUntil' => [ 'shape' => 'DateTime', 'locationName' => 'validUntil', ], 'ReplaceUnhealthyInstances' => [ 'shape' => 'Boolean', 'locationName' => 'replaceUnhealthyInstances', ], 'InstanceInterruptionBehavior' => [ 'shape' => 'InstanceInterruptionBehavior', 'locationName' => 'instanceInterruptionBehavior', ], 'LoadBalancersConfig' => [ 'shape' => 'LoadBalancersConfig', 'locationName' => 'loadBalancersConfig', ], 'InstancePoolsToUseCount' => [ 'shape' => 'Integer', 'locationName' => 'instancePoolsToUseCount', ], 'Context' => [ 'shape' => 'String', 'locationName' => 'context', ], 'TargetCapacityUnitType' => [ 'shape' => 'TargetCapacityUnitType', 'locationName' => 'targetCapacityUnitType', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], ], ], 'SpotFleetRequestConfigSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotFleetRequestConfig', 'locationName' => 'item', ], ], 'SpotFleetRequestId' => [ 'type' => 'string', ], 'SpotFleetRequestIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotFleetRequestId', 'locationName' => 'item', ], ], 'SpotFleetTagSpecification' => [ 'type' => 'structure', 'members' => [ 'ResourceType' => [ 'shape' => 'ResourceType', 'locationName' => 'resourceType', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tag', ], ], ], 'SpotFleetTagSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotFleetTagSpecification', 'locationName' => 'item', ], ], 'SpotInstanceInterruptionBehavior' => [ 'type' => 'string', 'enum' => [ 'hibernate', 'stop', 'terminate', ], ], 'SpotInstanceRequest' => [ 'type' => 'structure', 'members' => [ 'ActualBlockHourlyPrice' => [ 'shape' => 'String', 'locationName' => 'actualBlockHourlyPrice', ], 'AvailabilityZoneGroup' => [ 'shape' => 'String', 'locationName' => 'availabilityZoneGroup', ], 'BlockDurationMinutes' => [ 'shape' => 'Integer', 'locationName' => 'blockDurationMinutes', ], 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'Fault' => [ 'shape' => 'SpotInstanceStateFault', 'locationName' => 'fault', ], 'InstanceId' => [ 'shape' => 'InstanceId', 'locationName' => 'instanceId', ], 'LaunchGroup' => [ 'shape' => 'String', 'locationName' => 'launchGroup', ], 'LaunchSpecification' => [ 'shape' => 'LaunchSpecification', 'locationName' => 'launchSpecification', ], 'LaunchedAvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'launchedAvailabilityZone', ], 'ProductDescription' => [ 'shape' => 'RIProductDescription', 'locationName' => 'productDescription', ], 'SpotInstanceRequestId' => [ 'shape' => 'String', 'locationName' => 'spotInstanceRequestId', ], 'SpotPrice' => [ 'shape' => 'String', 'locationName' => 'spotPrice', ], 'State' => [ 'shape' => 'SpotInstanceState', 'locationName' => 'state', ], 'Status' => [ 'shape' => 'SpotInstanceStatus', 'locationName' => 'status', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'Type' => [ 'shape' => 'SpotInstanceType', 'locationName' => 'type', ], 'ValidFrom' => [ 'shape' => 'DateTime', 'locationName' => 'validFrom', ], 'ValidUntil' => [ 'shape' => 'DateTime', 'locationName' => 'validUntil', ], 'InstanceInterruptionBehavior' => [ 'shape' => 'InstanceInterruptionBehavior', 'locationName' => 'instanceInterruptionBehavior', ], ], ], 'SpotInstanceRequestId' => [ 'type' => 'string', ], 'SpotInstanceRequestIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotInstanceRequestId', 'locationName' => 'SpotInstanceRequestId', ], ], 'SpotInstanceRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotInstanceRequest', 'locationName' => 'item', ], ], 'SpotInstanceState' => [ 'type' => 'string', 'enum' => [ 'open', 'active', 'closed', 'cancelled', 'failed', 'disabled', ], ], 'SpotInstanceStateFault' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'SpotInstanceStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], 'UpdateTime' => [ 'shape' => 'DateTime', 'locationName' => 'updateTime', ], ], ], 'SpotInstanceType' => [ 'type' => 'string', 'enum' => [ 'one-time', 'persistent', ], ], 'SpotMaintenanceStrategies' => [ 'type' => 'structure', 'members' => [ 'CapacityRebalance' => [ 'shape' => 'SpotCapacityRebalance', 'locationName' => 'capacityRebalance', ], ], ], 'SpotMarketOptions' => [ 'type' => 'structure', 'members' => [ 'MaxPrice' => [ 'shape' => 'String', ], 'SpotInstanceType' => [ 'shape' => 'SpotInstanceType', ], 'BlockDurationMinutes' => [ 'shape' => 'Integer', ], 'ValidUntil' => [ 'shape' => 'DateTime', ], 'InstanceInterruptionBehavior' => [ 'shape' => 'InstanceInterruptionBehavior', ], ], ], 'SpotOptions' => [ 'type' => 'structure', 'members' => [ 'AllocationStrategy' => [ 'shape' => 'SpotAllocationStrategy', 'locationName' => 'allocationStrategy', ], 'MaintenanceStrategies' => [ 'shape' => 'FleetSpotMaintenanceStrategies', 'locationName' => 'maintenanceStrategies', ], 'InstanceInterruptionBehavior' => [ 'shape' => 'SpotInstanceInterruptionBehavior', 'locationName' => 'instanceInterruptionBehavior', ], 'InstancePoolsToUseCount' => [ 'shape' => 'Integer', 'locationName' => 'instancePoolsToUseCount', ], 'SingleInstanceType' => [ 'shape' => 'Boolean', 'locationName' => 'singleInstanceType', ], 'SingleAvailabilityZone' => [ 'shape' => 'Boolean', 'locationName' => 'singleAvailabilityZone', ], 'MinTargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'minTargetCapacity', ], 'MaxTotalPrice' => [ 'shape' => 'String', 'locationName' => 'maxTotalPrice', ], ], ], 'SpotOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'AllocationStrategy' => [ 'shape' => 'SpotAllocationStrategy', ], 'MaintenanceStrategies' => [ 'shape' => 'FleetSpotMaintenanceStrategiesRequest', ], 'InstanceInterruptionBehavior' => [ 'shape' => 'SpotInstanceInterruptionBehavior', ], 'InstancePoolsToUseCount' => [ 'shape' => 'Integer', ], 'SingleInstanceType' => [ 'shape' => 'Boolean', ], 'SingleAvailabilityZone' => [ 'shape' => 'Boolean', ], 'MinTargetCapacity' => [ 'shape' => 'Integer', ], 'MaxTotalPrice' => [ 'shape' => 'String', ], ], ], 'SpotPlacement' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'GroupName' => [ 'shape' => 'PlacementGroupName', 'locationName' => 'groupName', ], 'Tenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'tenancy', ], ], ], 'SpotPlacementScore' => [ 'type' => 'structure', 'members' => [ 'Region' => [ 'shape' => 'String', 'locationName' => 'region', ], 'AvailabilityZoneId' => [ 'shape' => 'String', 'locationName' => 'availabilityZoneId', ], 'Score' => [ 'shape' => 'Integer', 'locationName' => 'score', ], ], ], 'SpotPlacementScores' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotPlacementScore', 'locationName' => 'item', ], ], 'SpotPlacementScoresMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 10, ], 'SpotPlacementScoresTargetCapacity' => [ 'type' => 'integer', 'max' => 2000000000, 'min' => 1, ], 'SpotPrice' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'ProductDescription' => [ 'shape' => 'RIProductDescription', 'locationName' => 'productDescription', ], 'SpotPrice' => [ 'shape' => 'String', 'locationName' => 'spotPrice', ], 'Timestamp' => [ 'shape' => 'DateTime', 'locationName' => 'timestamp', ], ], ], 'SpotPriceHistoryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotPrice', 'locationName' => 'item', ], ], 'SpreadLevel' => [ 'type' => 'string', 'enum' => [ 'host', 'rack', ], ], 'StaleIpPermission' => [ 'type' => 'structure', 'members' => [ 'FromPort' => [ 'shape' => 'Integer', 'locationName' => 'fromPort', ], 'IpProtocol' => [ 'shape' => 'String', 'locationName' => 'ipProtocol', ], 'IpRanges' => [ 'shape' => 'IpRanges', 'locationName' => 'ipRanges', ], 'PrefixListIds' => [ 'shape' => 'PrefixListIdSet', 'locationName' => 'prefixListIds', ], 'ToPort' => [ 'shape' => 'Integer', 'locationName' => 'toPort', ], 'UserIdGroupPairs' => [ 'shape' => 'UserIdGroupPairSet', 'locationName' => 'groups', ], ], ], 'StaleIpPermissionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'StaleIpPermission', 'locationName' => 'item', ], ], 'StaleSecurityGroup' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'StaleIpPermissions' => [ 'shape' => 'StaleIpPermissionSet', 'locationName' => 'staleIpPermissions', ], 'StaleIpPermissionsEgress' => [ 'shape' => 'StaleIpPermissionSet', 'locationName' => 'staleIpPermissionsEgress', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'StaleSecurityGroupSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'StaleSecurityGroup', 'locationName' => 'item', ], ], 'StartInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'AdditionalInfo' => [ 'shape' => 'String', 'locationName' => 'additionalInfo', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'StartInstancesResult' => [ 'type' => 'structure', 'members' => [ 'StartingInstances' => [ 'shape' => 'InstanceStateChangeList', 'locationName' => 'instancesSet', ], ], ], 'StartNetworkInsightsAccessScopeAnalysisRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInsightsAccessScopeId', 'ClientToken', ], 'members' => [ 'NetworkInsightsAccessScopeId' => [ 'shape' => 'NetworkInsightsAccessScopeId', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'StartNetworkInsightsAccessScopeAnalysisResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAccessScopeAnalysis' => [ 'shape' => 'NetworkInsightsAccessScopeAnalysis', 'locationName' => 'networkInsightsAccessScopeAnalysis', ], ], ], 'StartNetworkInsightsAnalysisRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInsightsPathId', 'ClientToken', ], 'members' => [ 'NetworkInsightsPathId' => [ 'shape' => 'NetworkInsightsPathId', ], 'AdditionalAccounts' => [ 'shape' => 'ValueStringList', 'locationName' => 'AdditionalAccount', ], 'FilterInArns' => [ 'shape' => 'ArnList', 'locationName' => 'FilterInArn', ], 'DryRun' => [ 'shape' => 'Boolean', ], 'TagSpecifications' => [ 'shape' => 'TagSpecificationList', 'locationName' => 'TagSpecification', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], ], ], 'StartNetworkInsightsAnalysisResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInsightsAnalysis' => [ 'shape' => 'NetworkInsightsAnalysis', 'locationName' => 'networkInsightsAnalysis', ], ], ], 'StartVpcEndpointServicePrivateDnsVerificationRequest' => [ 'type' => 'structure', 'required' => [ 'ServiceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ServiceId' => [ 'shape' => 'VpcEndpointServiceId', ], ], ], 'StartVpcEndpointServicePrivateDnsVerificationResult' => [ 'type' => 'structure', 'members' => [ 'ReturnValue' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'State' => [ 'type' => 'string', 'enum' => [ 'PendingAcceptance', 'Pending', 'Available', 'Deleting', 'Deleted', 'Rejected', 'Failed', 'Expired', ], ], 'StateReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'StaticSourcesSupportValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'StatisticType' => [ 'type' => 'string', 'enum' => [ 'p50', ], ], 'Status' => [ 'type' => 'string', 'enum' => [ 'MoveInProgress', 'InVpc', 'InClassic', ], ], 'StatusName' => [ 'type' => 'string', 'enum' => [ 'reachability', ], ], 'StatusType' => [ 'type' => 'string', 'enum' => [ 'passed', 'failed', 'insufficient-data', 'initializing', ], ], 'StopInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'Hibernate' => [ 'shape' => 'Boolean', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Force' => [ 'shape' => 'Boolean', 'locationName' => 'force', ], ], ], 'StopInstancesResult' => [ 'type' => 'structure', 'members' => [ 'StoppingInstances' => [ 'shape' => 'InstanceStateChangeList', 'locationName' => 'instancesSet', ], ], ], 'Storage' => [ 'type' => 'structure', 'members' => [ 'S3' => [ 'shape' => 'S3Storage', ], ], ], 'StorageLocation' => [ 'type' => 'structure', 'members' => [ 'Bucket' => [ 'shape' => 'String', ], 'Key' => [ 'shape' => 'String', ], ], ], 'StorageTier' => [ 'type' => 'string', 'enum' => [ 'archive', 'standard', ], ], 'StoreImageTaskResult' => [ 'type' => 'structure', 'members' => [ 'AmiId' => [ 'shape' => 'String', 'locationName' => 'amiId', ], 'TaskStartTime' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'taskStartTime', ], 'Bucket' => [ 'shape' => 'String', 'locationName' => 'bucket', ], 'S3objectKey' => [ 'shape' => 'String', 'locationName' => 's3objectKey', ], 'ProgressPercentage' => [ 'shape' => 'Integer', 'locationName' => 'progressPercentage', ], 'StoreTaskState' => [ 'shape' => 'String', 'locationName' => 'storeTaskState', ], 'StoreTaskFailureReason' => [ 'shape' => 'String', 'locationName' => 'storeTaskFailureReason', ], ], ], 'StoreImageTaskResultSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'StoreImageTaskResult', 'locationName' => 'item', ], ], 'String' => [ 'type' => 'string', ], 'StringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'StringType' => [ 'type' => 'string', 'max' => 64000, 'min' => 0, ], 'Subnet' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'AvailabilityZoneId' => [ 'shape' => 'String', 'locationName' => 'availabilityZoneId', ], 'AvailableIpAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'availableIpAddressCount', ], 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'DefaultForAz' => [ 'shape' => 'Boolean', 'locationName' => 'defaultForAz', ], 'EnableLniAtDeviceIndex' => [ 'shape' => 'Integer', 'locationName' => 'enableLniAtDeviceIndex', ], 'MapPublicIpOnLaunch' => [ 'shape' => 'Boolean', 'locationName' => 'mapPublicIpOnLaunch', ], 'MapCustomerOwnedIpOnLaunch' => [ 'shape' => 'Boolean', 'locationName' => 'mapCustomerOwnedIpOnLaunch', ], 'CustomerOwnedIpv4Pool' => [ 'shape' => 'CoipPoolId', 'locationName' => 'customerOwnedIpv4Pool', ], 'State' => [ 'shape' => 'SubnetState', 'locationName' => 'state', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'AssignIpv6AddressOnCreation' => [ 'shape' => 'Boolean', 'locationName' => 'assignIpv6AddressOnCreation', ], 'Ipv6CidrBlockAssociationSet' => [ 'shape' => 'SubnetIpv6CidrBlockAssociationSet', 'locationName' => 'ipv6CidrBlockAssociationSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'SubnetArn' => [ 'shape' => 'String', 'locationName' => 'subnetArn', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'EnableDns64' => [ 'shape' => 'Boolean', 'locationName' => 'enableDns64', ], 'Ipv6Native' => [ 'shape' => 'Boolean', 'locationName' => 'ipv6Native', ], 'PrivateDnsNameOptionsOnLaunch' => [ 'shape' => 'PrivateDnsNameOptionsOnLaunch', 'locationName' => 'privateDnsNameOptionsOnLaunch', ], ], ], 'SubnetAssociation' => [ 'type' => 'structure', 'members' => [ 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'State' => [ 'shape' => 'TransitGatewayMulitcastDomainAssociationState', 'locationName' => 'state', ], ], ], 'SubnetAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetAssociation', 'locationName' => 'item', ], ], 'SubnetCidrAssociationId' => [ 'type' => 'string', ], 'SubnetCidrBlockState' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'SubnetCidrBlockStateCode', 'locationName' => 'state', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], ], ], 'SubnetCidrBlockStateCode' => [ 'type' => 'string', 'enum' => [ 'associating', 'associated', 'disassociating', 'disassociated', 'failing', 'failed', ], ], 'SubnetCidrReservation' => [ 'type' => 'structure', 'members' => [ 'SubnetCidrReservationId' => [ 'shape' => 'SubnetCidrReservationId', 'locationName' => 'subnetCidrReservationId', ], 'SubnetId' => [ 'shape' => 'SubnetId', 'locationName' => 'subnetId', ], 'Cidr' => [ 'shape' => 'String', 'locationName' => 'cidr', ], 'ReservationType' => [ 'shape' => 'SubnetCidrReservationType', 'locationName' => 'reservationType', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'SubnetCidrReservationId' => [ 'type' => 'string', ], 'SubnetCidrReservationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetCidrReservation', 'locationName' => 'item', ], ], 'SubnetCidrReservationType' => [ 'type' => 'string', 'enum' => [ 'prefix', 'explicit', ], ], 'SubnetConfiguration' => [ 'type' => 'structure', 'members' => [ 'SubnetId' => [ 'shape' => 'SubnetId', ], 'Ipv4' => [ 'shape' => 'String', ], 'Ipv6' => [ 'shape' => 'String', ], ], ], 'SubnetConfigurationsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetConfiguration', 'locationName' => 'item', ], ], 'SubnetId' => [ 'type' => 'string', ], 'SubnetIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetId', 'locationName' => 'SubnetId', ], ], 'SubnetIpv6CidrBlockAssociation' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'SubnetCidrAssociationId', 'locationName' => 'associationId', ], 'Ipv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'ipv6CidrBlock', ], 'Ipv6CidrBlockState' => [ 'shape' => 'SubnetCidrBlockState', 'locationName' => 'ipv6CidrBlockState', ], ], ], 'SubnetIpv6CidrBlockAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetIpv6CidrBlockAssociation', 'locationName' => 'item', ], ], 'SubnetList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Subnet', 'locationName' => 'item', ], ], 'SubnetState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'unavailable', ], ], 'Subscription' => [ 'type' => 'structure', 'members' => [ 'Source' => [ 'shape' => 'String', 'locationName' => 'source', ], 'Destination' => [ 'shape' => 'String', 'locationName' => 'destination', ], 'Metric' => [ 'shape' => 'MetricType', 'locationName' => 'metric', ], 'Statistic' => [ 'shape' => 'StatisticType', 'locationName' => 'statistic', ], 'Period' => [ 'shape' => 'PeriodType', 'locationName' => 'period', ], ], ], 'SubscriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Subscription', 'locationName' => 'item', ], ], 'SuccessfulInstanceCreditSpecificationItem' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], ], ], 'SuccessfulInstanceCreditSpecificationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SuccessfulInstanceCreditSpecificationItem', 'locationName' => 'item', ], ], 'SuccessfulQueuedPurchaseDeletion' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], ], ], 'SuccessfulQueuedPurchaseDeletionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SuccessfulQueuedPurchaseDeletion', 'locationName' => 'item', ], ], 'SummaryStatus' => [ 'type' => 'string', 'enum' => [ 'ok', 'impaired', 'insufficient-data', 'not-applicable', 'initializing', ], ], 'SupportedAdditionalProcessorFeature' => [ 'type' => 'string', 'enum' => [ 'amd-sev-snp', ], ], 'SupportedAdditionalProcessorFeatureList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SupportedAdditionalProcessorFeature', 'locationName' => 'item', ], ], 'SupportedIpAddressTypes' => [ 'type' => 'list', 'member' => [ 'shape' => 'ServiceConnectivityType', 'locationName' => 'item', ], 'max' => 2, 'min' => 0, ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', 'locationName' => 'key', ], 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'TagDescription' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', 'locationName' => 'key', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'ResourceType', 'locationName' => 'resourceType', ], 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'TagDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagDescription', 'locationName' => 'item', ], ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', 'locationName' => 'item', ], ], 'TagSpecification' => [ 'type' => 'structure', 'members' => [ 'ResourceType' => [ 'shape' => 'ResourceType', 'locationName' => 'resourceType', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'Tag', ], ], ], 'TagSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagSpecification', 'locationName' => 'item', ], ], 'TaggableResourceId' => [ 'type' => 'string', ], 'TargetCapacitySpecification' => [ 'type' => 'structure', 'members' => [ 'TotalTargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'totalTargetCapacity', ], 'OnDemandTargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'onDemandTargetCapacity', ], 'SpotTargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'spotTargetCapacity', ], 'DefaultTargetCapacityType' => [ 'shape' => 'DefaultTargetCapacityType', 'locationName' => 'defaultTargetCapacityType', ], 'TargetCapacityUnitType' => [ 'shape' => 'TargetCapacityUnitType', 'locationName' => 'targetCapacityUnitType', ], ], ], 'TargetCapacitySpecificationRequest' => [ 'type' => 'structure', 'required' => [ 'TotalTargetCapacity', ], 'members' => [ 'TotalTargetCapacity' => [ 'shape' => 'Integer', ], 'OnDemandTargetCapacity' => [ 'shape' => 'Integer', ], 'SpotTargetCapacity' => [ 'shape' => 'Integer', ], 'DefaultTargetCapacityType' => [ 'shape' => 'DefaultTargetCapacityType', ], 'TargetCapacityUnitType' => [ 'shape' => 'TargetCapacityUnitType', ], ], ], 'TargetCapacityUnitType' => [ 'type' => 'string', 'enum' => [ 'vcpu', 'memory-mib', 'units', ], ], 'TargetConfiguration' => [ 'type' => 'structure', 'members' => [ 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'OfferingId' => [ 'shape' => 'String', 'locationName' => 'offeringId', ], ], ], 'TargetConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'OfferingId', ], 'members' => [ 'InstanceCount' => [ 'shape' => 'Integer', ], 'OfferingId' => [ 'shape' => 'ReservedInstancesOfferingId', ], ], ], 'TargetConfigurationRequestSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TargetConfigurationRequest', 'locationName' => 'TargetConfigurationRequest', ], ], 'TargetGroup' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', 'locationName' => 'arn', ], ], ], 'TargetGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'TargetGroup', 'locationName' => 'item', ], 'max' => 5, 'min' => 1, ], 'TargetGroupsConfig' => [ 'type' => 'structure', 'members' => [ 'TargetGroups' => [ 'shape' => 'TargetGroups', 'locationName' => 'targetGroups', ], ], ], 'TargetNetwork' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'TargetNetworkId' => [ 'shape' => 'String', 'locationName' => 'targetNetworkId', ], 'ClientVpnEndpointId' => [ 'shape' => 'String', 'locationName' => 'clientVpnEndpointId', ], 'Status' => [ 'shape' => 'AssociationStatus', 'locationName' => 'status', ], 'SecurityGroups' => [ 'shape' => 'ValueStringList', 'locationName' => 'securityGroups', ], ], ], 'TargetNetworkSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TargetNetwork', 'locationName' => 'item', ], ], 'TargetReservationValue' => [ 'type' => 'structure', 'members' => [ 'ReservationValue' => [ 'shape' => 'ReservationValue', 'locationName' => 'reservationValue', ], 'TargetConfiguration' => [ 'shape' => 'TargetConfiguration', 'locationName' => 'targetConfiguration', ], ], ], 'TargetReservationValueSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TargetReservationValue', 'locationName' => 'item', ], ], 'TargetStorageTier' => [ 'type' => 'string', 'enum' => [ 'archive', ], ], 'TelemetryStatus' => [ 'type' => 'string', 'enum' => [ 'UP', 'DOWN', ], ], 'Tenancy' => [ 'type' => 'string', 'enum' => [ 'default', 'dedicated', 'host', ], ], 'TerminateClientVpnConnectionsRequest' => [ 'type' => 'structure', 'required' => [ 'ClientVpnEndpointId', ], 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'ClientVpnEndpointId', ], 'ConnectionId' => [ 'shape' => 'String', ], 'Username' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'TerminateClientVpnConnectionsResult' => [ 'type' => 'structure', 'members' => [ 'ClientVpnEndpointId' => [ 'shape' => 'String', 'locationName' => 'clientVpnEndpointId', ], 'Username' => [ 'shape' => 'String', 'locationName' => 'username', ], 'ConnectionStatuses' => [ 'shape' => 'TerminateConnectionStatusSet', 'locationName' => 'connectionStatuses', ], ], ], 'TerminateConnectionStatus' => [ 'type' => 'structure', 'members' => [ 'ConnectionId' => [ 'shape' => 'String', 'locationName' => 'connectionId', ], 'PreviousStatus' => [ 'shape' => 'ClientVpnConnectionStatus', 'locationName' => 'previousStatus', ], 'CurrentStatus' => [ 'shape' => 'ClientVpnConnectionStatus', 'locationName' => 'currentStatus', ], ], ], 'TerminateConnectionStatusSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TerminateConnectionStatus', 'locationName' => 'item', ], ], 'TerminateInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'TerminateInstancesResult' => [ 'type' => 'structure', 'members' => [ 'TerminatingInstances' => [ 'shape' => 'InstanceStateChangeList', 'locationName' => 'instancesSet', ], ], ], 'ThreadsPerCore' => [ 'type' => 'integer', ], 'ThreadsPerCoreList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThreadsPerCore', 'locationName' => 'item', ], ], 'ThroughResourcesStatement' => [ 'type' => 'structure', 'members' => [ 'ResourceStatement' => [ 'shape' => 'ResourceStatement', 'locationName' => 'resourceStatement', ], ], ], 'ThroughResourcesStatementList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThroughResourcesStatement', 'locationName' => 'item', ], ], 'ThroughResourcesStatementRequest' => [ 'type' => 'structure', 'members' => [ 'ResourceStatement' => [ 'shape' => 'ResourceStatementRequest', ], ], ], 'ThroughResourcesStatementRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThroughResourcesStatementRequest', 'locationName' => 'item', ], ], 'TieringOperationStatus' => [ 'type' => 'string', 'enum' => [ 'archival-in-progress', 'archival-completed', 'archival-failed', 'temporary-restore-in-progress', 'temporary-restore-completed', 'temporary-restore-failed', 'permanent-restore-in-progress', 'permanent-restore-completed', 'permanent-restore-failed', ], ], 'TotalLocalStorageGB' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Double', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Double', 'locationName' => 'max', ], ], ], 'TotalLocalStorageGBRequest' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Double', ], 'Max' => [ 'shape' => 'Double', ], ], ], 'TpmSupportValues' => [ 'type' => 'string', 'enum' => [ 'v2.0', ], ], 'TrafficDirection' => [ 'type' => 'string', 'enum' => [ 'ingress', 'egress', ], ], 'TrafficMirrorFilter' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilterId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorFilterId', ], 'IngressFilterRules' => [ 'shape' => 'TrafficMirrorFilterRuleList', 'locationName' => 'ingressFilterRuleSet', ], 'EgressFilterRules' => [ 'shape' => 'TrafficMirrorFilterRuleList', 'locationName' => 'egressFilterRuleSet', ], 'NetworkServices' => [ 'shape' => 'TrafficMirrorNetworkServiceList', 'locationName' => 'networkServiceSet', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TrafficMirrorFilterId' => [ 'type' => 'string', ], 'TrafficMirrorFilterIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorFilterId', 'locationName' => 'item', ], ], 'TrafficMirrorFilterRule' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorFilterRuleId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorFilterRuleId', ], 'TrafficMirrorFilterId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorFilterId', ], 'TrafficDirection' => [ 'shape' => 'TrafficDirection', 'locationName' => 'trafficDirection', ], 'RuleNumber' => [ 'shape' => 'Integer', 'locationName' => 'ruleNumber', ], 'RuleAction' => [ 'shape' => 'TrafficMirrorRuleAction', 'locationName' => 'ruleAction', ], 'Protocol' => [ 'shape' => 'Integer', 'locationName' => 'protocol', ], 'DestinationPortRange' => [ 'shape' => 'TrafficMirrorPortRange', 'locationName' => 'destinationPortRange', ], 'SourcePortRange' => [ 'shape' => 'TrafficMirrorPortRange', 'locationName' => 'sourcePortRange', ], 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'SourceCidrBlock' => [ 'shape' => 'String', 'locationName' => 'sourceCidrBlock', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], ], ], 'TrafficMirrorFilterRuleField' => [ 'type' => 'string', 'enum' => [ 'destination-port-range', 'source-port-range', 'protocol', 'description', ], ], 'TrafficMirrorFilterRuleFieldList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorFilterRuleField', ], ], 'TrafficMirrorFilterRuleIdWithResolver' => [ 'type' => 'string', ], 'TrafficMirrorFilterRuleList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorFilterRule', 'locationName' => 'item', ], ], 'TrafficMirrorFilterSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorFilter', 'locationName' => 'item', ], ], 'TrafficMirrorNetworkService' => [ 'type' => 'string', 'enum' => [ 'amazon-dns', ], ], 'TrafficMirrorNetworkServiceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorNetworkService', 'locationName' => 'item', ], ], 'TrafficMirrorPortRange' => [ 'type' => 'structure', 'members' => [ 'FromPort' => [ 'shape' => 'Integer', 'locationName' => 'fromPort', ], 'ToPort' => [ 'shape' => 'Integer', 'locationName' => 'toPort', ], ], ], 'TrafficMirrorPortRangeRequest' => [ 'type' => 'structure', 'members' => [ 'FromPort' => [ 'shape' => 'Integer', ], 'ToPort' => [ 'shape' => 'Integer', ], ], ], 'TrafficMirrorRuleAction' => [ 'type' => 'string', 'enum' => [ 'accept', 'reject', ], ], 'TrafficMirrorSession' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorSessionId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorSessionId', ], 'TrafficMirrorTargetId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorTargetId', ], 'TrafficMirrorFilterId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorFilterId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'PacketLength' => [ 'shape' => 'Integer', 'locationName' => 'packetLength', ], 'SessionNumber' => [ 'shape' => 'Integer', 'locationName' => 'sessionNumber', ], 'VirtualNetworkId' => [ 'shape' => 'Integer', 'locationName' => 'virtualNetworkId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TrafficMirrorSessionField' => [ 'type' => 'string', 'enum' => [ 'packet-length', 'description', 'virtual-network-id', ], ], 'TrafficMirrorSessionFieldList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorSessionField', ], ], 'TrafficMirrorSessionId' => [ 'type' => 'string', ], 'TrafficMirrorSessionIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorSessionId', 'locationName' => 'item', ], ], 'TrafficMirrorSessionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorSession', 'locationName' => 'item', ], ], 'TrafficMirrorTarget' => [ 'type' => 'structure', 'members' => [ 'TrafficMirrorTargetId' => [ 'shape' => 'String', 'locationName' => 'trafficMirrorTargetId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'NetworkLoadBalancerArn' => [ 'shape' => 'String', 'locationName' => 'networkLoadBalancerArn', ], 'Type' => [ 'shape' => 'TrafficMirrorTargetType', 'locationName' => 'type', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'GatewayLoadBalancerEndpointId' => [ 'shape' => 'String', 'locationName' => 'gatewayLoadBalancerEndpointId', ], ], ], 'TrafficMirrorTargetId' => [ 'type' => 'string', ], 'TrafficMirrorTargetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorTargetId', 'locationName' => 'item', ], ], 'TrafficMirrorTargetSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficMirrorTarget', 'locationName' => 'item', ], ], 'TrafficMirrorTargetType' => [ 'type' => 'string', 'enum' => [ 'network-interface', 'network-load-balancer', 'gateway-load-balancer-endpoint', ], ], 'TrafficMirroringMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'TrafficType' => [ 'type' => 'string', 'enum' => [ 'ACCEPT', 'REJECT', 'ALL', ], ], 'TransitAssociationGatewayId' => [ 'type' => 'string', ], 'TransitGateway' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'TransitGatewayArn' => [ 'shape' => 'String', 'locationName' => 'transitGatewayArn', ], 'State' => [ 'shape' => 'TransitGatewayState', 'locationName' => 'state', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Options' => [ 'shape' => 'TransitGatewayOptions', 'locationName' => 'options', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayAssociation' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', 'locationName' => 'transitGatewayRouteTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'State' => [ 'shape' => 'TransitGatewayAssociationState', 'locationName' => 'state', ], ], ], 'TransitGatewayAssociationState' => [ 'type' => 'string', 'enum' => [ 'associating', 'associated', 'disassociating', 'disassociated', ], ], 'TransitGatewayAttachment' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'TransitGatewayOwnerId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayOwnerId', ], 'ResourceOwnerId' => [ 'shape' => 'String', 'locationName' => 'resourceOwnerId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'State' => [ 'shape' => 'TransitGatewayAttachmentState', 'locationName' => 'state', ], 'Association' => [ 'shape' => 'TransitGatewayAttachmentAssociation', 'locationName' => 'association', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayAttachmentAssociation' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayRouteTableId', ], 'State' => [ 'shape' => 'TransitGatewayAssociationState', 'locationName' => 'state', ], ], ], 'TransitGatewayAttachmentBgpConfiguration' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAsn' => [ 'shape' => 'Long', 'locationName' => 'transitGatewayAsn', ], 'PeerAsn' => [ 'shape' => 'Long', 'locationName' => 'peerAsn', ], 'TransitGatewayAddress' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAddress', ], 'PeerAddress' => [ 'shape' => 'String', 'locationName' => 'peerAddress', ], 'BgpStatus' => [ 'shape' => 'BgpStatus', 'locationName' => 'bgpStatus', ], ], ], 'TransitGatewayAttachmentBgpConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayAttachmentBgpConfiguration', 'locationName' => 'item', ], ], 'TransitGatewayAttachmentId' => [ 'type' => 'string', ], 'TransitGatewayAttachmentIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayAttachmentId', ], ], 'TransitGatewayAttachmentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayAttachment', 'locationName' => 'item', ], ], 'TransitGatewayAttachmentPropagation' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayRouteTableId', ], 'State' => [ 'shape' => 'TransitGatewayPropagationState', 'locationName' => 'state', ], ], ], 'TransitGatewayAttachmentPropagationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayAttachmentPropagation', 'locationName' => 'item', ], ], 'TransitGatewayAttachmentResourceType' => [ 'type' => 'string', 'enum' => [ 'vpc', 'vpn', 'direct-connect-gateway', 'connect', 'peering', 'tgw-peering', ], ], 'TransitGatewayAttachmentState' => [ 'type' => 'string', 'enum' => [ 'initiating', 'initiatingRequest', 'pendingAcceptance', 'rollingBack', 'pending', 'available', 'modifying', 'deleting', 'deleted', 'failed', 'rejected', 'rejecting', 'failing', ], ], 'TransitGatewayCidrBlockStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'TransitGatewayConnect' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', 'locationName' => 'transitGatewayAttachmentId', ], 'TransportTransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', 'locationName' => 'transportTransitGatewayAttachmentId', ], 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', 'locationName' => 'transitGatewayId', ], 'State' => [ 'shape' => 'TransitGatewayAttachmentState', 'locationName' => 'state', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Options' => [ 'shape' => 'TransitGatewayConnectOptions', 'locationName' => 'options', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayConnectList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayConnect', 'locationName' => 'item', ], ], 'TransitGatewayConnectOptions' => [ 'type' => 'structure', 'members' => [ 'Protocol' => [ 'shape' => 'ProtocolValue', 'locationName' => 'protocol', ], ], ], 'TransitGatewayConnectPeer' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', 'locationName' => 'transitGatewayAttachmentId', ], 'TransitGatewayConnectPeerId' => [ 'shape' => 'TransitGatewayConnectPeerId', 'locationName' => 'transitGatewayConnectPeerId', ], 'State' => [ 'shape' => 'TransitGatewayConnectPeerState', 'locationName' => 'state', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'ConnectPeerConfiguration' => [ 'shape' => 'TransitGatewayConnectPeerConfiguration', 'locationName' => 'connectPeerConfiguration', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayConnectPeerConfiguration' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAddress' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAddress', ], 'PeerAddress' => [ 'shape' => 'String', 'locationName' => 'peerAddress', ], 'InsideCidrBlocks' => [ 'shape' => 'InsideCidrBlocksStringList', 'locationName' => 'insideCidrBlocks', ], 'Protocol' => [ 'shape' => 'ProtocolValue', 'locationName' => 'protocol', ], 'BgpConfigurations' => [ 'shape' => 'TransitGatewayAttachmentBgpConfigurationList', 'locationName' => 'bgpConfigurations', ], ], ], 'TransitGatewayConnectPeerId' => [ 'type' => 'string', ], 'TransitGatewayConnectPeerIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayConnectPeerId', 'locationName' => 'item', ], ], 'TransitGatewayConnectPeerList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayConnectPeer', 'locationName' => 'item', ], ], 'TransitGatewayConnectPeerState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'deleting', 'deleted', ], ], 'TransitGatewayConnectRequestBgpOptions' => [ 'type' => 'structure', 'members' => [ 'PeerAsn' => [ 'shape' => 'Long', ], ], ], 'TransitGatewayId' => [ 'type' => 'string', ], 'TransitGatewayIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayId', 'locationName' => 'item', ], ], 'TransitGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGateway', 'locationName' => 'item', ], ], 'TransitGatewayMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 5, ], 'TransitGatewayMulitcastDomainAssociationState' => [ 'type' => 'string', 'enum' => [ 'pendingAcceptance', 'associating', 'associated', 'disassociating', 'disassociated', 'rejected', 'failed', ], ], 'TransitGatewayMulticastDeregisteredGroupMembers' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayMulticastDomainId', ], 'DeregisteredNetworkInterfaceIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'deregisteredNetworkInterfaceIds', ], 'GroupIpAddress' => [ 'shape' => 'String', 'locationName' => 'groupIpAddress', ], ], ], 'TransitGatewayMulticastDeregisteredGroupSources' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayMulticastDomainId', ], 'DeregisteredNetworkInterfaceIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'deregisteredNetworkInterfaceIds', ], 'GroupIpAddress' => [ 'shape' => 'String', 'locationName' => 'groupIpAddress', ], ], ], 'TransitGatewayMulticastDomain' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayMulticastDomainId', ], 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'TransitGatewayMulticastDomainArn' => [ 'shape' => 'String', 'locationName' => 'transitGatewayMulticastDomainArn', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Options' => [ 'shape' => 'TransitGatewayMulticastDomainOptions', 'locationName' => 'options', ], 'State' => [ 'shape' => 'TransitGatewayMulticastDomainState', 'locationName' => 'state', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayMulticastDomainAssociation' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'ResourceOwnerId' => [ 'shape' => 'String', 'locationName' => 'resourceOwnerId', ], 'Subnet' => [ 'shape' => 'SubnetAssociation', 'locationName' => 'subnet', ], ], ], 'TransitGatewayMulticastDomainAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayMulticastDomainAssociation', 'locationName' => 'item', ], ], 'TransitGatewayMulticastDomainAssociations' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayMulticastDomainId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'ResourceOwnerId' => [ 'shape' => 'String', 'locationName' => 'resourceOwnerId', ], 'Subnets' => [ 'shape' => 'SubnetAssociationList', 'locationName' => 'subnets', ], ], ], 'TransitGatewayMulticastDomainId' => [ 'type' => 'string', ], 'TransitGatewayMulticastDomainIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayMulticastDomainId', 'locationName' => 'item', ], ], 'TransitGatewayMulticastDomainList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayMulticastDomain', 'locationName' => 'item', ], ], 'TransitGatewayMulticastDomainOptions' => [ 'type' => 'structure', 'members' => [ 'Igmpv2Support' => [ 'shape' => 'Igmpv2SupportValue', 'locationName' => 'igmpv2Support', ], 'StaticSourcesSupport' => [ 'shape' => 'StaticSourcesSupportValue', 'locationName' => 'staticSourcesSupport', ], 'AutoAcceptSharedAssociations' => [ 'shape' => 'AutoAcceptSharedAssociationsValue', 'locationName' => 'autoAcceptSharedAssociations', ], ], ], 'TransitGatewayMulticastDomainState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'deleting', 'deleted', ], ], 'TransitGatewayMulticastGroup' => [ 'type' => 'structure', 'members' => [ 'GroupIpAddress' => [ 'shape' => 'String', 'locationName' => 'groupIpAddress', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'ResourceOwnerId' => [ 'shape' => 'String', 'locationName' => 'resourceOwnerId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'GroupMember' => [ 'shape' => 'Boolean', 'locationName' => 'groupMember', ], 'GroupSource' => [ 'shape' => 'Boolean', 'locationName' => 'groupSource', ], 'MemberType' => [ 'shape' => 'MembershipType', 'locationName' => 'memberType', ], 'SourceType' => [ 'shape' => 'MembershipType', 'locationName' => 'sourceType', ], ], ], 'TransitGatewayMulticastGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayMulticastGroup', 'locationName' => 'item', ], ], 'TransitGatewayMulticastRegisteredGroupMembers' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayMulticastDomainId', ], 'RegisteredNetworkInterfaceIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'registeredNetworkInterfaceIds', ], 'GroupIpAddress' => [ 'shape' => 'String', 'locationName' => 'groupIpAddress', ], ], ], 'TransitGatewayMulticastRegisteredGroupSources' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayMulticastDomainId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayMulticastDomainId', ], 'RegisteredNetworkInterfaceIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'registeredNetworkInterfaceIds', ], 'GroupIpAddress' => [ 'shape' => 'String', 'locationName' => 'groupIpAddress', ], ], ], 'TransitGatewayNetworkInterfaceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'item', ], ], 'TransitGatewayOptions' => [ 'type' => 'structure', 'members' => [ 'AmazonSideAsn' => [ 'shape' => 'Long', 'locationName' => 'amazonSideAsn', ], 'TransitGatewayCidrBlocks' => [ 'shape' => 'ValueStringList', 'locationName' => 'transitGatewayCidrBlocks', ], 'AutoAcceptSharedAttachments' => [ 'shape' => 'AutoAcceptSharedAttachmentsValue', 'locationName' => 'autoAcceptSharedAttachments', ], 'DefaultRouteTableAssociation' => [ 'shape' => 'DefaultRouteTableAssociationValue', 'locationName' => 'defaultRouteTableAssociation', ], 'AssociationDefaultRouteTableId' => [ 'shape' => 'String', 'locationName' => 'associationDefaultRouteTableId', ], 'DefaultRouteTablePropagation' => [ 'shape' => 'DefaultRouteTablePropagationValue', 'locationName' => 'defaultRouteTablePropagation', ], 'PropagationDefaultRouteTableId' => [ 'shape' => 'String', 'locationName' => 'propagationDefaultRouteTableId', ], 'VpnEcmpSupport' => [ 'shape' => 'VpnEcmpSupportValue', 'locationName' => 'vpnEcmpSupport', ], 'DnsSupport' => [ 'shape' => 'DnsSupportValue', 'locationName' => 'dnsSupport', ], 'SecurityGroupReferencingSupport' => [ 'shape' => 'SecurityGroupReferencingSupportValue', 'locationName' => 'securityGroupReferencingSupport', ], 'MulticastSupport' => [ 'shape' => 'MulticastSupportValue', 'locationName' => 'multicastSupport', ], ], ], 'TransitGatewayPeeringAttachment' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'AccepterTransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'accepterTransitGatewayAttachmentId', ], 'RequesterTgwInfo' => [ 'shape' => 'PeeringTgwInfo', 'locationName' => 'requesterTgwInfo', ], 'AccepterTgwInfo' => [ 'shape' => 'PeeringTgwInfo', 'locationName' => 'accepterTgwInfo', ], 'Options' => [ 'shape' => 'TransitGatewayPeeringAttachmentOptions', 'locationName' => 'options', ], 'Status' => [ 'shape' => 'PeeringAttachmentStatus', 'locationName' => 'status', ], 'State' => [ 'shape' => 'TransitGatewayAttachmentState', 'locationName' => 'state', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayPeeringAttachmentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayPeeringAttachment', 'locationName' => 'item', ], ], 'TransitGatewayPeeringAttachmentOptions' => [ 'type' => 'structure', 'members' => [ 'DynamicRouting' => [ 'shape' => 'DynamicRoutingValue', 'locationName' => 'dynamicRouting', ], ], ], 'TransitGatewayPolicyRule' => [ 'type' => 'structure', 'members' => [ 'SourceCidrBlock' => [ 'shape' => 'String', 'locationName' => 'sourceCidrBlock', ], 'SourcePortRange' => [ 'shape' => 'String', 'locationName' => 'sourcePortRange', ], 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'DestinationPortRange' => [ 'shape' => 'String', 'locationName' => 'destinationPortRange', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], 'MetaData' => [ 'shape' => 'TransitGatewayPolicyRuleMetaData', 'locationName' => 'metaData', ], ], ], 'TransitGatewayPolicyRuleMetaData' => [ 'type' => 'structure', 'members' => [ 'MetaDataKey' => [ 'shape' => 'String', 'locationName' => 'metaDataKey', ], 'MetaDataValue' => [ 'shape' => 'String', 'locationName' => 'metaDataValue', ], ], ], 'TransitGatewayPolicyTable' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPolicyTableId' => [ 'shape' => 'TransitGatewayPolicyTableId', 'locationName' => 'transitGatewayPolicyTableId', ], 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', 'locationName' => 'transitGatewayId', ], 'State' => [ 'shape' => 'TransitGatewayPolicyTableState', 'locationName' => 'state', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayPolicyTableAssociation' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayPolicyTableId' => [ 'shape' => 'TransitGatewayPolicyTableId', 'locationName' => 'transitGatewayPolicyTableId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'State' => [ 'shape' => 'TransitGatewayAssociationState', 'locationName' => 'state', ], ], ], 'TransitGatewayPolicyTableAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayPolicyTableAssociation', 'locationName' => 'item', ], ], 'TransitGatewayPolicyTableEntry' => [ 'type' => 'structure', 'members' => [ 'PolicyRuleNumber' => [ 'shape' => 'String', 'locationName' => 'policyRuleNumber', ], 'PolicyRule' => [ 'shape' => 'TransitGatewayPolicyRule', 'locationName' => 'policyRule', ], 'TargetRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', 'locationName' => 'targetRouteTableId', ], ], ], 'TransitGatewayPolicyTableEntryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayPolicyTableEntry', 'locationName' => 'item', ], ], 'TransitGatewayPolicyTableId' => [ 'type' => 'string', ], 'TransitGatewayPolicyTableIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayPolicyTableId', 'locationName' => 'item', ], ], 'TransitGatewayPolicyTableList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayPolicyTable', 'locationName' => 'item', ], ], 'TransitGatewayPolicyTableState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'deleting', 'deleted', ], ], 'TransitGatewayPrefixListAttachment' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], ], ], 'TransitGatewayPrefixListReference' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', 'locationName' => 'transitGatewayRouteTableId', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', 'locationName' => 'prefixListId', ], 'PrefixListOwnerId' => [ 'shape' => 'String', 'locationName' => 'prefixListOwnerId', ], 'State' => [ 'shape' => 'TransitGatewayPrefixListReferenceState', 'locationName' => 'state', ], 'Blackhole' => [ 'shape' => 'Boolean', 'locationName' => 'blackhole', ], 'TransitGatewayAttachment' => [ 'shape' => 'TransitGatewayPrefixListAttachment', 'locationName' => 'transitGatewayAttachment', ], ], ], 'TransitGatewayPrefixListReferenceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayPrefixListReference', 'locationName' => 'item', ], ], 'TransitGatewayPrefixListReferenceState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'modifying', 'deleting', ], ], 'TransitGatewayPropagation' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'TransitGatewayRouteTableId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayRouteTableId', ], 'State' => [ 'shape' => 'TransitGatewayPropagationState', 'locationName' => 'state', ], 'TransitGatewayRouteTableAnnouncementId' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementId', 'locationName' => 'transitGatewayRouteTableAnnouncementId', ], ], ], 'TransitGatewayPropagationState' => [ 'type' => 'string', 'enum' => [ 'enabling', 'enabled', 'disabling', 'disabled', ], ], 'TransitGatewayRequestOptions' => [ 'type' => 'structure', 'members' => [ 'AmazonSideAsn' => [ 'shape' => 'Long', ], 'AutoAcceptSharedAttachments' => [ 'shape' => 'AutoAcceptSharedAttachmentsValue', ], 'DefaultRouteTableAssociation' => [ 'shape' => 'DefaultRouteTableAssociationValue', ], 'DefaultRouteTablePropagation' => [ 'shape' => 'DefaultRouteTablePropagationValue', ], 'VpnEcmpSupport' => [ 'shape' => 'VpnEcmpSupportValue', ], 'DnsSupport' => [ 'shape' => 'DnsSupportValue', ], 'SecurityGroupReferencingSupport' => [ 'shape' => 'SecurityGroupReferencingSupportValue', ], 'MulticastSupport' => [ 'shape' => 'MulticastSupportValue', ], 'TransitGatewayCidrBlocks' => [ 'shape' => 'TransitGatewayCidrBlockStringList', ], ], ], 'TransitGatewayRoute' => [ 'type' => 'structure', 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'PrefixListId' => [ 'shape' => 'PrefixListResourceId', 'locationName' => 'prefixListId', ], 'TransitGatewayRouteTableAnnouncementId' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementId', 'locationName' => 'transitGatewayRouteTableAnnouncementId', ], 'TransitGatewayAttachments' => [ 'shape' => 'TransitGatewayRouteAttachmentList', 'locationName' => 'transitGatewayAttachments', ], 'Type' => [ 'shape' => 'TransitGatewayRouteType', 'locationName' => 'type', ], 'State' => [ 'shape' => 'TransitGatewayRouteState', 'locationName' => 'state', ], ], ], 'TransitGatewayRouteAttachment' => [ 'type' => 'structure', 'members' => [ 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], ], ], 'TransitGatewayRouteAttachmentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayRouteAttachment', 'locationName' => 'item', ], ], 'TransitGatewayRouteList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayRoute', 'locationName' => 'item', ], ], 'TransitGatewayRouteState' => [ 'type' => 'string', 'enum' => [ 'pending', 'active', 'blackhole', 'deleting', 'deleted', ], ], 'TransitGatewayRouteTable' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayRouteTableId', ], 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'State' => [ 'shape' => 'TransitGatewayRouteTableState', 'locationName' => 'state', ], 'DefaultAssociationRouteTable' => [ 'shape' => 'Boolean', 'locationName' => 'defaultAssociationRouteTable', ], 'DefaultPropagationRouteTable' => [ 'shape' => 'Boolean', 'locationName' => 'defaultPropagationRouteTable', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayRouteTableAnnouncement' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayRouteTableAnnouncementId' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementId', 'locationName' => 'transitGatewayRouteTableAnnouncementId', ], 'TransitGatewayId' => [ 'shape' => 'TransitGatewayId', 'locationName' => 'transitGatewayId', ], 'CoreNetworkId' => [ 'shape' => 'String', 'locationName' => 'coreNetworkId', ], 'PeerTransitGatewayId' => [ 'shape' => 'TransitGatewayId', 'locationName' => 'peerTransitGatewayId', ], 'PeerCoreNetworkId' => [ 'shape' => 'String', 'locationName' => 'peerCoreNetworkId', ], 'PeeringAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', 'locationName' => 'peeringAttachmentId', ], 'AnnouncementDirection' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementDirection', 'locationName' => 'announcementDirection', ], 'TransitGatewayRouteTableId' => [ 'shape' => 'TransitGatewayRouteTableId', 'locationName' => 'transitGatewayRouteTableId', ], 'State' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementState', 'locationName' => 'state', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayRouteTableAnnouncementDirection' => [ 'type' => 'string', 'enum' => [ 'outgoing', 'incoming', ], ], 'TransitGatewayRouteTableAnnouncementId' => [ 'type' => 'string', ], 'TransitGatewayRouteTableAnnouncementIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementId', 'locationName' => 'item', ], ], 'TransitGatewayRouteTableAnnouncementList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayRouteTableAnnouncement', 'locationName' => 'item', ], ], 'TransitGatewayRouteTableAnnouncementState' => [ 'type' => 'string', 'enum' => [ 'available', 'pending', 'failing', 'failed', 'deleting', 'deleted', ], ], 'TransitGatewayRouteTableAssociation' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'State' => [ 'shape' => 'TransitGatewayAssociationState', 'locationName' => 'state', ], ], ], 'TransitGatewayRouteTableAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayRouteTableAssociation', 'locationName' => 'item', ], ], 'TransitGatewayRouteTableId' => [ 'type' => 'string', ], 'TransitGatewayRouteTableIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayRouteTableId', 'locationName' => 'item', ], ], 'TransitGatewayRouteTableList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayRouteTable', 'locationName' => 'item', ], ], 'TransitGatewayRouteTablePropagation' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'TransitGatewayAttachmentResourceType', 'locationName' => 'resourceType', ], 'State' => [ 'shape' => 'TransitGatewayPropagationState', 'locationName' => 'state', ], 'TransitGatewayRouteTableAnnouncementId' => [ 'shape' => 'TransitGatewayRouteTableAnnouncementId', 'locationName' => 'transitGatewayRouteTableAnnouncementId', ], ], ], 'TransitGatewayRouteTablePropagationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayRouteTablePropagation', 'locationName' => 'item', ], ], 'TransitGatewayRouteTableRoute' => [ 'type' => 'structure', 'members' => [ 'DestinationCidr' => [ 'shape' => 'String', 'locationName' => 'destinationCidr', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'RouteOrigin' => [ 'shape' => 'String', 'locationName' => 'routeOrigin', ], 'PrefixListId' => [ 'shape' => 'String', 'locationName' => 'prefixListId', ], 'AttachmentId' => [ 'shape' => 'String', 'locationName' => 'attachmentId', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'String', 'locationName' => 'resourceType', ], ], ], 'TransitGatewayRouteTableState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'deleting', 'deleted', ], ], 'TransitGatewayRouteType' => [ 'type' => 'string', 'enum' => [ 'static', 'propagated', ], ], 'TransitGatewayState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'modifying', 'deleting', 'deleted', ], ], 'TransitGatewaySubnetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetId', 'locationName' => 'item', ], ], 'TransitGatewayVpcAttachment' => [ 'type' => 'structure', 'members' => [ 'TransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayAttachmentId', ], 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'VpcOwnerId' => [ 'shape' => 'String', 'locationName' => 'vpcOwnerId', ], 'State' => [ 'shape' => 'TransitGatewayAttachmentState', 'locationName' => 'state', ], 'SubnetIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'subnetIds', ], 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'Options' => [ 'shape' => 'TransitGatewayVpcAttachmentOptions', 'locationName' => 'options', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TransitGatewayVpcAttachmentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransitGatewayVpcAttachment', 'locationName' => 'item', ], ], 'TransitGatewayVpcAttachmentOptions' => [ 'type' => 'structure', 'members' => [ 'DnsSupport' => [ 'shape' => 'DnsSupportValue', 'locationName' => 'dnsSupport', ], 'SecurityGroupReferencingSupport' => [ 'shape' => 'SecurityGroupReferencingSupportValue', 'locationName' => 'securityGroupReferencingSupport', ], 'Ipv6Support' => [ 'shape' => 'Ipv6SupportValue', 'locationName' => 'ipv6Support', ], 'ApplianceModeSupport' => [ 'shape' => 'ApplianceModeSupportValue', 'locationName' => 'applianceModeSupport', ], ], ], 'TransportProtocol' => [ 'type' => 'string', 'enum' => [ 'tcp', 'udp', ], ], 'TrunkInterfaceAssociation' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'TrunkInterfaceAssociationId', 'locationName' => 'associationId', ], 'BranchInterfaceId' => [ 'shape' => 'String', 'locationName' => 'branchInterfaceId', ], 'TrunkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'trunkInterfaceId', ], 'InterfaceProtocol' => [ 'shape' => 'InterfaceProtocolType', 'locationName' => 'interfaceProtocol', ], 'VlanId' => [ 'shape' => 'Integer', 'locationName' => 'vlanId', ], 'GreKey' => [ 'shape' => 'Integer', 'locationName' => 'greKey', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'TrunkInterfaceAssociationId' => [ 'type' => 'string', ], 'TrunkInterfaceAssociationIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrunkInterfaceAssociationId', 'locationName' => 'item', ], ], 'TrunkInterfaceAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrunkInterfaceAssociation', 'locationName' => 'item', ], ], 'TrustProviderType' => [ 'type' => 'string', 'enum' => [ 'user', 'device', ], ], 'TunnelInsideIpVersion' => [ 'type' => 'string', 'enum' => [ 'ipv4', 'ipv6', ], ], 'TunnelOption' => [ 'type' => 'structure', 'members' => [ 'OutsideIpAddress' => [ 'shape' => 'String', 'locationName' => 'outsideIpAddress', ], 'TunnelInsideCidr' => [ 'shape' => 'String', 'locationName' => 'tunnelInsideCidr', ], 'TunnelInsideIpv6Cidr' => [ 'shape' => 'String', 'locationName' => 'tunnelInsideIpv6Cidr', ], 'PreSharedKey' => [ 'shape' => 'preSharedKey', 'locationName' => 'preSharedKey', ], 'Phase1LifetimeSeconds' => [ 'shape' => 'Integer', 'locationName' => 'phase1LifetimeSeconds', ], 'Phase2LifetimeSeconds' => [ 'shape' => 'Integer', 'locationName' => 'phase2LifetimeSeconds', ], 'RekeyMarginTimeSeconds' => [ 'shape' => 'Integer', 'locationName' => 'rekeyMarginTimeSeconds', ], 'RekeyFuzzPercentage' => [ 'shape' => 'Integer', 'locationName' => 'rekeyFuzzPercentage', ], 'ReplayWindowSize' => [ 'shape' => 'Integer', 'locationName' => 'replayWindowSize', ], 'DpdTimeoutSeconds' => [ 'shape' => 'Integer', 'locationName' => 'dpdTimeoutSeconds', ], 'DpdTimeoutAction' => [ 'shape' => 'String', 'locationName' => 'dpdTimeoutAction', ], 'Phase1EncryptionAlgorithms' => [ 'shape' => 'Phase1EncryptionAlgorithmsList', 'locationName' => 'phase1EncryptionAlgorithmSet', ], 'Phase2EncryptionAlgorithms' => [ 'shape' => 'Phase2EncryptionAlgorithmsList', 'locationName' => 'phase2EncryptionAlgorithmSet', ], 'Phase1IntegrityAlgorithms' => [ 'shape' => 'Phase1IntegrityAlgorithmsList', 'locationName' => 'phase1IntegrityAlgorithmSet', ], 'Phase2IntegrityAlgorithms' => [ 'shape' => 'Phase2IntegrityAlgorithmsList', 'locationName' => 'phase2IntegrityAlgorithmSet', ], 'Phase1DHGroupNumbers' => [ 'shape' => 'Phase1DHGroupNumbersList', 'locationName' => 'phase1DHGroupNumberSet', ], 'Phase2DHGroupNumbers' => [ 'shape' => 'Phase2DHGroupNumbersList', 'locationName' => 'phase2DHGroupNumberSet', ], 'IkeVersions' => [ 'shape' => 'IKEVersionsList', 'locationName' => 'ikeVersionSet', ], 'StartupAction' => [ 'shape' => 'String', 'locationName' => 'startupAction', ], 'LogOptions' => [ 'shape' => 'VpnTunnelLogOptions', 'locationName' => 'logOptions', ], 'EnableTunnelLifecycleControl' => [ 'shape' => 'Boolean', 'locationName' => 'enableTunnelLifecycleControl', ], ], ], 'TunnelOptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TunnelOption', 'locationName' => 'item', ], ], 'UnassignIpv6AddressesRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'Ipv6Addresses' => [ 'shape' => 'Ipv6AddressList', 'locationName' => 'ipv6Addresses', ], 'Ipv6Prefixes' => [ 'shape' => 'IpPrefixList', 'locationName' => 'Ipv6Prefix', ], 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], ], ], 'UnassignIpv6AddressesResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'UnassignedIpv6Addresses' => [ 'shape' => 'Ipv6AddressList', 'locationName' => 'unassignedIpv6Addresses', ], 'UnassignedIpv6Prefixes' => [ 'shape' => 'IpPrefixList', 'locationName' => 'unassignedIpv6PrefixSet', ], ], ], 'UnassignPrivateIpAddressesRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'PrivateIpAddresses' => [ 'shape' => 'PrivateIpAddressStringList', 'locationName' => 'privateIpAddress', ], 'Ipv4Prefixes' => [ 'shape' => 'IpPrefixList', 'locationName' => 'Ipv4Prefix', ], ], ], 'UnassignPrivateNatGatewayAddressRequest' => [ 'type' => 'structure', 'required' => [ 'NatGatewayId', 'PrivateIpAddresses', ], 'members' => [ 'NatGatewayId' => [ 'shape' => 'NatGatewayId', ], 'PrivateIpAddresses' => [ 'shape' => 'IpList', 'locationName' => 'PrivateIpAddress', ], 'MaxDrainDurationSeconds' => [ 'shape' => 'DrainSeconds', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'UnassignPrivateNatGatewayAddressResult' => [ 'type' => 'structure', 'members' => [ 'NatGatewayId' => [ 'shape' => 'NatGatewayId', 'locationName' => 'natGatewayId', ], 'NatGatewayAddresses' => [ 'shape' => 'NatGatewayAddressList', 'locationName' => 'natGatewayAddressSet', ], ], ], 'UnlimitedSupportedInstanceFamily' => [ 'type' => 'string', 'enum' => [ 't2', 't3', 't3a', 't4g', ], ], 'UnlockSnapshotRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', ], 'members' => [ 'SnapshotId' => [ 'shape' => 'SnapshotId', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'UnlockSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], ], ], 'UnmonitorInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'UnmonitorInstancesResult' => [ 'type' => 'structure', 'members' => [ 'InstanceMonitorings' => [ 'shape' => 'InstanceMonitoringList', 'locationName' => 'instancesSet', ], ], ], 'UnsuccessfulInstanceCreditSpecificationErrorCode' => [ 'type' => 'string', 'enum' => [ 'InvalidInstanceID.Malformed', 'InvalidInstanceID.NotFound', 'IncorrectInstanceState', 'InstanceCreditSpecification.NotSupported', ], ], 'UnsuccessfulInstanceCreditSpecificationItem' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Error' => [ 'shape' => 'UnsuccessfulInstanceCreditSpecificationItemError', 'locationName' => 'error', ], ], ], 'UnsuccessfulInstanceCreditSpecificationItemError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'UnsuccessfulInstanceCreditSpecificationErrorCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'UnsuccessfulInstanceCreditSpecificationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'UnsuccessfulInstanceCreditSpecificationItem', 'locationName' => 'item', ], ], 'UnsuccessfulItem' => [ 'type' => 'structure', 'members' => [ 'Error' => [ 'shape' => 'UnsuccessfulItemError', 'locationName' => 'error', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], ], ], 'UnsuccessfulItemError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'UnsuccessfulItemList' => [ 'type' => 'list', 'member' => [ 'shape' => 'UnsuccessfulItem', 'locationName' => 'item', ], ], 'UnsuccessfulItemSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'UnsuccessfulItem', 'locationName' => 'item', ], ], 'UpdateSecurityGroupRuleDescriptionsEgressRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'GroupId' => [ 'shape' => 'SecurityGroupId', ], 'GroupName' => [ 'shape' => 'SecurityGroupName', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', ], 'SecurityGroupRuleDescriptions' => [ 'shape' => 'SecurityGroupRuleDescriptionList', 'locationName' => 'SecurityGroupRuleDescription', ], ], ], 'UpdateSecurityGroupRuleDescriptionsEgressResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'UpdateSecurityGroupRuleDescriptionsIngressRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'GroupId' => [ 'shape' => 'SecurityGroupId', ], 'GroupName' => [ 'shape' => 'SecurityGroupName', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', ], 'SecurityGroupRuleDescriptions' => [ 'shape' => 'SecurityGroupRuleDescriptionList', 'locationName' => 'SecurityGroupRuleDescription', ], ], ], 'UpdateSecurityGroupRuleDescriptionsIngressResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'UsageClassType' => [ 'type' => 'string', 'enum' => [ 'spot', 'on-demand', 'capacity-block', ], ], 'UsageClassTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'UsageClassType', 'locationName' => 'item', ], ], 'UserBucket' => [ 'type' => 'structure', 'members' => [ 'S3Bucket' => [ 'shape' => 'String', ], 'S3Key' => [ 'shape' => 'String', ], ], ], 'UserBucketDetails' => [ 'type' => 'structure', 'members' => [ 'S3Bucket' => [ 'shape' => 'String', 'locationName' => 's3Bucket', ], 'S3Key' => [ 'shape' => 'String', 'locationName' => 's3Key', ], ], ], 'UserData' => [ 'type' => 'structure', 'members' => [ 'Data' => [ 'shape' => 'String', 'locationName' => 'data', ], ], 'sensitive' => true, ], 'UserGroupStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'UserGroup', ], ], 'UserIdGroupPair' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'PeeringStatus' => [ 'shape' => 'String', 'locationName' => 'peeringStatus', ], 'UserId' => [ 'shape' => 'String', 'locationName' => 'userId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], ], ], 'UserIdGroupPairList' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserIdGroupPair', 'locationName' => 'item', ], ], 'UserIdGroupPairSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserIdGroupPair', 'locationName' => 'item', ], ], 'UserIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'UserId', ], ], 'UserTrustProviderType' => [ 'type' => 'string', 'enum' => [ 'iam-identity-center', 'oidc', ], ], 'VCpuCount' => [ 'type' => 'integer', ], 'VCpuCountRange' => [ 'type' => 'structure', 'members' => [ 'Min' => [ 'shape' => 'Integer', 'locationName' => 'min', ], 'Max' => [ 'shape' => 'Integer', 'locationName' => 'max', ], ], ], 'VCpuCountRangeRequest' => [ 'type' => 'structure', 'required' => [ 'Min', ], 'members' => [ 'Min' => [ 'shape' => 'Integer', ], 'Max' => [ 'shape' => 'Integer', ], ], ], 'VCpuInfo' => [ 'type' => 'structure', 'members' => [ 'DefaultVCpus' => [ 'shape' => 'VCpuCount', 'locationName' => 'defaultVCpus', ], 'DefaultCores' => [ 'shape' => 'CoreCount', 'locationName' => 'defaultCores', ], 'DefaultThreadsPerCore' => [ 'shape' => 'ThreadsPerCore', 'locationName' => 'defaultThreadsPerCore', ], 'ValidCores' => [ 'shape' => 'CoreCountList', 'locationName' => 'validCores', ], 'ValidThreadsPerCore' => [ 'shape' => 'ThreadsPerCoreList', 'locationName' => 'validThreadsPerCore', ], ], ], 'ValidationError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'ValidationWarning' => [ 'type' => 'structure', 'members' => [ 'Errors' => [ 'shape' => 'ErrorSet', 'locationName' => 'errorSet', ], ], ], 'ValueStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'VerifiedAccessEndpoint' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessInstanceId', ], 'VerifiedAccessGroupId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessGroupId', ], 'VerifiedAccessEndpointId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessEndpointId', ], 'ApplicationDomain' => [ 'shape' => 'String', 'locationName' => 'applicationDomain', ], 'EndpointType' => [ 'shape' => 'VerifiedAccessEndpointType', 'locationName' => 'endpointType', ], 'AttachmentType' => [ 'shape' => 'VerifiedAccessEndpointAttachmentType', 'locationName' => 'attachmentType', ], 'DomainCertificateArn' => [ 'shape' => 'String', 'locationName' => 'domainCertificateArn', ], 'EndpointDomain' => [ 'shape' => 'String', 'locationName' => 'endpointDomain', ], 'DeviceValidationDomain' => [ 'shape' => 'String', 'locationName' => 'deviceValidationDomain', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdList', 'locationName' => 'securityGroupIdSet', ], 'LoadBalancerOptions' => [ 'shape' => 'VerifiedAccessEndpointLoadBalancerOptions', 'locationName' => 'loadBalancerOptions', ], 'NetworkInterfaceOptions' => [ 'shape' => 'VerifiedAccessEndpointEniOptions', 'locationName' => 'networkInterfaceOptions', ], 'Status' => [ 'shape' => 'VerifiedAccessEndpointStatus', 'locationName' => 'status', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'CreationTime' => [ 'shape' => 'String', 'locationName' => 'creationTime', ], 'LastUpdatedTime' => [ 'shape' => 'String', 'locationName' => 'lastUpdatedTime', ], 'DeletionTime' => [ 'shape' => 'String', 'locationName' => 'deletionTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationResponse', 'locationName' => 'sseSpecification', ], ], ], 'VerifiedAccessEndpointAttachmentType' => [ 'type' => 'string', 'enum' => [ 'vpc', ], ], 'VerifiedAccessEndpointEniOptions' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'NetworkInterfaceId', 'locationName' => 'networkInterfaceId', ], 'Protocol' => [ 'shape' => 'VerifiedAccessEndpointProtocol', 'locationName' => 'protocol', ], 'Port' => [ 'shape' => 'VerifiedAccessEndpointPortNumber', 'locationName' => 'port', ], ], ], 'VerifiedAccessEndpointId' => [ 'type' => 'string', ], 'VerifiedAccessEndpointIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessEndpointId', 'locationName' => 'item', ], ], 'VerifiedAccessEndpointList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessEndpoint', 'locationName' => 'item', ], ], 'VerifiedAccessEndpointLoadBalancerOptions' => [ 'type' => 'structure', 'members' => [ 'Protocol' => [ 'shape' => 'VerifiedAccessEndpointProtocol', 'locationName' => 'protocol', ], 'Port' => [ 'shape' => 'VerifiedAccessEndpointPortNumber', 'locationName' => 'port', ], 'LoadBalancerArn' => [ 'shape' => 'String', 'locationName' => 'loadBalancerArn', ], 'SubnetIds' => [ 'shape' => 'VerifiedAccessEndpointSubnetIdList', 'locationName' => 'subnetIdSet', ], ], ], 'VerifiedAccessEndpointPortNumber' => [ 'type' => 'integer', 'max' => 65535, 'min' => 1, ], 'VerifiedAccessEndpointProtocol' => [ 'type' => 'string', 'enum' => [ 'http', 'https', ], ], 'VerifiedAccessEndpointStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'VerifiedAccessEndpointStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'VerifiedAccessEndpointStatusCode' => [ 'type' => 'string', 'enum' => [ 'pending', 'active', 'updating', 'deleting', 'deleted', ], ], 'VerifiedAccessEndpointSubnetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetId', 'locationName' => 'item', ], ], 'VerifiedAccessEndpointType' => [ 'type' => 'string', 'enum' => [ 'load-balancer', 'network-interface', ], ], 'VerifiedAccessGroup' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessGroupId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessGroupId', ], 'VerifiedAccessInstanceId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessInstanceId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Owner' => [ 'shape' => 'String', 'locationName' => 'owner', ], 'VerifiedAccessGroupArn' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessGroupArn', ], 'CreationTime' => [ 'shape' => 'String', 'locationName' => 'creationTime', ], 'LastUpdatedTime' => [ 'shape' => 'String', 'locationName' => 'lastUpdatedTime', ], 'DeletionTime' => [ 'shape' => 'String', 'locationName' => 'deletionTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationResponse', 'locationName' => 'sseSpecification', ], ], ], 'VerifiedAccessGroupId' => [ 'type' => 'string', ], 'VerifiedAccessGroupIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessGroupId', 'locationName' => 'item', ], ], 'VerifiedAccessGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessGroup', 'locationName' => 'item', ], ], 'VerifiedAccessInstance' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessInstanceId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'VerifiedAccessTrustProviders' => [ 'shape' => 'VerifiedAccessTrustProviderCondensedList', 'locationName' => 'verifiedAccessTrustProviderSet', ], 'CreationTime' => [ 'shape' => 'String', 'locationName' => 'creationTime', ], 'LastUpdatedTime' => [ 'shape' => 'String', 'locationName' => 'lastUpdatedTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'FipsEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'fipsEnabled', ], ], ], 'VerifiedAccessInstanceId' => [ 'type' => 'string', ], 'VerifiedAccessInstanceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessInstanceId', 'locationName' => 'item', ], ], 'VerifiedAccessInstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessInstance', 'locationName' => 'item', ], ], 'VerifiedAccessInstanceLoggingConfiguration' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessInstanceId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessInstanceId', ], 'AccessLogs' => [ 'shape' => 'VerifiedAccessLogs', 'locationName' => 'accessLogs', ], ], ], 'VerifiedAccessInstanceLoggingConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessInstanceLoggingConfiguration', 'locationName' => 'item', ], ], 'VerifiedAccessLogCloudWatchLogsDestination' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], 'DeliveryStatus' => [ 'shape' => 'VerifiedAccessLogDeliveryStatus', 'locationName' => 'deliveryStatus', ], 'LogGroup' => [ 'shape' => 'String', 'locationName' => 'logGroup', ], ], ], 'VerifiedAccessLogCloudWatchLogsDestinationOptions' => [ 'type' => 'structure', 'required' => [ 'Enabled', ], 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], 'LogGroup' => [ 'shape' => 'String', ], ], ], 'VerifiedAccessLogDeliveryStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'VerifiedAccessLogDeliveryStatusCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'VerifiedAccessLogDeliveryStatusCode' => [ 'type' => 'string', 'enum' => [ 'success', 'failed', ], ], 'VerifiedAccessLogKinesisDataFirehoseDestination' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], 'DeliveryStatus' => [ 'shape' => 'VerifiedAccessLogDeliveryStatus', 'locationName' => 'deliveryStatus', ], 'DeliveryStream' => [ 'shape' => 'String', 'locationName' => 'deliveryStream', ], ], ], 'VerifiedAccessLogKinesisDataFirehoseDestinationOptions' => [ 'type' => 'structure', 'required' => [ 'Enabled', ], 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], 'DeliveryStream' => [ 'shape' => 'String', ], ], ], 'VerifiedAccessLogOptions' => [ 'type' => 'structure', 'members' => [ 'S3' => [ 'shape' => 'VerifiedAccessLogS3DestinationOptions', ], 'CloudWatchLogs' => [ 'shape' => 'VerifiedAccessLogCloudWatchLogsDestinationOptions', ], 'KinesisDataFirehose' => [ 'shape' => 'VerifiedAccessLogKinesisDataFirehoseDestinationOptions', ], 'LogVersion' => [ 'shape' => 'String', ], 'IncludeTrustContext' => [ 'shape' => 'Boolean', ], ], ], 'VerifiedAccessLogS3Destination' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], 'DeliveryStatus' => [ 'shape' => 'VerifiedAccessLogDeliveryStatus', 'locationName' => 'deliveryStatus', ], 'BucketName' => [ 'shape' => 'String', 'locationName' => 'bucketName', ], 'Prefix' => [ 'shape' => 'String', 'locationName' => 'prefix', ], 'BucketOwner' => [ 'shape' => 'String', 'locationName' => 'bucketOwner', ], ], ], 'VerifiedAccessLogS3DestinationOptions' => [ 'type' => 'structure', 'required' => [ 'Enabled', ], 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], 'BucketName' => [ 'shape' => 'String', ], 'Prefix' => [ 'shape' => 'String', ], 'BucketOwner' => [ 'shape' => 'String', ], ], ], 'VerifiedAccessLogs' => [ 'type' => 'structure', 'members' => [ 'S3' => [ 'shape' => 'VerifiedAccessLogS3Destination', 'locationName' => 's3', ], 'CloudWatchLogs' => [ 'shape' => 'VerifiedAccessLogCloudWatchLogsDestination', 'locationName' => 'cloudWatchLogs', ], 'KinesisDataFirehose' => [ 'shape' => 'VerifiedAccessLogKinesisDataFirehoseDestination', 'locationName' => 'kinesisDataFirehose', ], 'LogVersion' => [ 'shape' => 'String', 'locationName' => 'logVersion', ], 'IncludeTrustContext' => [ 'shape' => 'Boolean', 'locationName' => 'includeTrustContext', ], ], ], 'VerifiedAccessSseSpecificationRequest' => [ 'type' => 'structure', 'members' => [ 'CustomerManagedKeyEnabled' => [ 'shape' => 'Boolean', ], 'KmsKeyArn' => [ 'shape' => 'KmsKeyArn', ], ], ], 'VerifiedAccessSseSpecificationResponse' => [ 'type' => 'structure', 'members' => [ 'CustomerManagedKeyEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'customerManagedKeyEnabled', ], 'KmsKeyArn' => [ 'shape' => 'KmsKeyArn', 'locationName' => 'kmsKeyArn', ], ], ], 'VerifiedAccessTrustProvider' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProviderId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessTrustProviderId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'TrustProviderType' => [ 'shape' => 'TrustProviderType', 'locationName' => 'trustProviderType', ], 'UserTrustProviderType' => [ 'shape' => 'UserTrustProviderType', 'locationName' => 'userTrustProviderType', ], 'DeviceTrustProviderType' => [ 'shape' => 'DeviceTrustProviderType', 'locationName' => 'deviceTrustProviderType', ], 'OidcOptions' => [ 'shape' => 'OidcOptions', 'locationName' => 'oidcOptions', ], 'DeviceOptions' => [ 'shape' => 'DeviceOptions', 'locationName' => 'deviceOptions', ], 'PolicyReferenceName' => [ 'shape' => 'String', 'locationName' => 'policyReferenceName', ], 'CreationTime' => [ 'shape' => 'String', 'locationName' => 'creationTime', ], 'LastUpdatedTime' => [ 'shape' => 'String', 'locationName' => 'lastUpdatedTime', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'SseSpecification' => [ 'shape' => 'VerifiedAccessSseSpecificationResponse', 'locationName' => 'sseSpecification', ], ], ], 'VerifiedAccessTrustProviderCondensed' => [ 'type' => 'structure', 'members' => [ 'VerifiedAccessTrustProviderId' => [ 'shape' => 'String', 'locationName' => 'verifiedAccessTrustProviderId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'TrustProviderType' => [ 'shape' => 'TrustProviderType', 'locationName' => 'trustProviderType', ], 'UserTrustProviderType' => [ 'shape' => 'UserTrustProviderType', 'locationName' => 'userTrustProviderType', ], 'DeviceTrustProviderType' => [ 'shape' => 'DeviceTrustProviderType', 'locationName' => 'deviceTrustProviderType', ], ], ], 'VerifiedAccessTrustProviderCondensedList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessTrustProviderCondensed', 'locationName' => 'item', ], ], 'VerifiedAccessTrustProviderId' => [ 'type' => 'string', ], 'VerifiedAccessTrustProviderIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessTrustProviderId', 'locationName' => 'item', ], ], 'VerifiedAccessTrustProviderList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAccessTrustProvider', 'locationName' => 'item', ], ], 'VersionDescription' => [ 'type' => 'string', 'max' => 255, 'min' => 0, ], 'VersionStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'VgwTelemetry' => [ 'type' => 'structure', 'members' => [ 'AcceptedRouteCount' => [ 'shape' => 'Integer', 'locationName' => 'acceptedRouteCount', ], 'LastStatusChange' => [ 'shape' => 'DateTime', 'locationName' => 'lastStatusChange', ], 'OutsideIpAddress' => [ 'shape' => 'String', 'locationName' => 'outsideIpAddress', ], 'Status' => [ 'shape' => 'TelemetryStatus', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'CertificateArn' => [ 'shape' => 'String', 'locationName' => 'certificateArn', ], ], ], 'VgwTelemetryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VgwTelemetry', 'locationName' => 'item', ], ], 'VirtualizationType' => [ 'type' => 'string', 'enum' => [ 'hvm', 'paravirtual', ], ], 'VirtualizationTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VirtualizationType', 'locationName' => 'item', ], ], 'VirtualizationTypeSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'VirtualizationType', 'locationName' => 'item', ], 'max' => 2, 'min' => 0, ], 'Volume' => [ 'type' => 'structure', 'members' => [ 'Attachments' => [ 'shape' => 'VolumeAttachmentList', 'locationName' => 'attachmentSet', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'Size' => [ 'shape' => 'Integer', 'locationName' => 'size', ], 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'State' => [ 'shape' => 'VolumeState', 'locationName' => 'status', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'Iops' => [ 'shape' => 'Integer', 'locationName' => 'iops', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VolumeType' => [ 'shape' => 'VolumeType', 'locationName' => 'volumeType', ], 'FastRestored' => [ 'shape' => 'Boolean', 'locationName' => 'fastRestored', ], 'MultiAttachEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'multiAttachEnabled', ], 'Throughput' => [ 'shape' => 'Integer', 'locationName' => 'throughput', ], 'SseType' => [ 'shape' => 'SSEType', 'locationName' => 'sseType', ], ], ], 'VolumeAttachment' => [ 'type' => 'structure', 'members' => [ 'AttachTime' => [ 'shape' => 'DateTime', 'locationName' => 'attachTime', ], 'Device' => [ 'shape' => 'String', 'locationName' => 'device', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'State' => [ 'shape' => 'VolumeAttachmentState', 'locationName' => 'status', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'AssociatedResource' => [ 'shape' => 'String', 'locationName' => 'associatedResource', ], 'InstanceOwningService' => [ 'shape' => 'String', 'locationName' => 'instanceOwningService', ], ], ], 'VolumeAttachmentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeAttachment', 'locationName' => 'item', ], ], 'VolumeAttachmentState' => [ 'type' => 'string', 'enum' => [ 'attaching', 'attached', 'detaching', 'detached', 'busy', ], ], 'VolumeAttributeName' => [ 'type' => 'string', 'enum' => [ 'autoEnableIO', 'productCodes', ], ], 'VolumeDetail' => [ 'type' => 'structure', 'required' => [ 'Size', ], 'members' => [ 'Size' => [ 'shape' => 'Long', 'locationName' => 'size', ], ], ], 'VolumeId' => [ 'type' => 'string', ], 'VolumeIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeId', 'locationName' => 'VolumeId', ], ], 'VolumeIdWithResolver' => [ 'type' => 'string', ], 'VolumeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Volume', 'locationName' => 'item', ], ], 'VolumeModification' => [ 'type' => 'structure', 'members' => [ 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'ModificationState' => [ 'shape' => 'VolumeModificationState', 'locationName' => 'modificationState', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'TargetSize' => [ 'shape' => 'Integer', 'locationName' => 'targetSize', ], 'TargetIops' => [ 'shape' => 'Integer', 'locationName' => 'targetIops', ], 'TargetVolumeType' => [ 'shape' => 'VolumeType', 'locationName' => 'targetVolumeType', ], 'TargetThroughput' => [ 'shape' => 'Integer', 'locationName' => 'targetThroughput', ], 'TargetMultiAttachEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'targetMultiAttachEnabled', ], 'OriginalSize' => [ 'shape' => 'Integer', 'locationName' => 'originalSize', ], 'OriginalIops' => [ 'shape' => 'Integer', 'locationName' => 'originalIops', ], 'OriginalVolumeType' => [ 'shape' => 'VolumeType', 'locationName' => 'originalVolumeType', ], 'OriginalThroughput' => [ 'shape' => 'Integer', 'locationName' => 'originalThroughput', ], 'OriginalMultiAttachEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'originalMultiAttachEnabled', ], 'Progress' => [ 'shape' => 'Long', 'locationName' => 'progress', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], 'EndTime' => [ 'shape' => 'DateTime', 'locationName' => 'endTime', ], ], ], 'VolumeModificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeModification', 'locationName' => 'item', ], ], 'VolumeModificationState' => [ 'type' => 'string', 'enum' => [ 'modifying', 'optimizing', 'completed', 'failed', ], ], 'VolumeState' => [ 'type' => 'string', 'enum' => [ 'creating', 'available', 'in-use', 'deleting', 'deleted', 'error', ], ], 'VolumeStatusAction' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'EventId' => [ 'shape' => 'String', 'locationName' => 'eventId', ], 'EventType' => [ 'shape' => 'String', 'locationName' => 'eventType', ], ], ], 'VolumeStatusActionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeStatusAction', 'locationName' => 'item', ], ], 'VolumeStatusAttachmentStatus' => [ 'type' => 'structure', 'members' => [ 'IoPerformance' => [ 'shape' => 'String', 'locationName' => 'ioPerformance', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], ], ], 'VolumeStatusAttachmentStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeStatusAttachmentStatus', 'locationName' => 'item', ], ], 'VolumeStatusDetails' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'VolumeStatusName', 'locationName' => 'name', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], ], ], 'VolumeStatusDetailsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeStatusDetails', 'locationName' => 'item', ], ], 'VolumeStatusEvent' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'EventId' => [ 'shape' => 'String', 'locationName' => 'eventId', ], 'EventType' => [ 'shape' => 'String', 'locationName' => 'eventType', ], 'NotAfter' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'notAfter', ], 'NotBefore' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'notBefore', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], ], ], 'VolumeStatusEventsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeStatusEvent', 'locationName' => 'item', ], ], 'VolumeStatusInfo' => [ 'type' => 'structure', 'members' => [ 'Details' => [ 'shape' => 'VolumeStatusDetailsList', 'locationName' => 'details', ], 'Status' => [ 'shape' => 'VolumeStatusInfoStatus', 'locationName' => 'status', ], ], ], 'VolumeStatusInfoStatus' => [ 'type' => 'string', 'enum' => [ 'ok', 'impaired', 'insufficient-data', ], ], 'VolumeStatusItem' => [ 'type' => 'structure', 'members' => [ 'Actions' => [ 'shape' => 'VolumeStatusActionsList', 'locationName' => 'actionsSet', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'OutpostArn' => [ 'shape' => 'String', 'locationName' => 'outpostArn', ], 'Events' => [ 'shape' => 'VolumeStatusEventsList', 'locationName' => 'eventsSet', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'VolumeStatus' => [ 'shape' => 'VolumeStatusInfo', 'locationName' => 'volumeStatus', ], 'AttachmentStatuses' => [ 'shape' => 'VolumeStatusAttachmentStatusList', 'locationName' => 'attachmentStatuses', ], ], ], 'VolumeStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeStatusItem', 'locationName' => 'item', ], ], 'VolumeStatusName' => [ 'type' => 'string', 'enum' => [ 'io-enabled', 'io-performance', ], ], 'VolumeType' => [ 'type' => 'string', 'enum' => [ 'standard', 'io1', 'io2', 'gp2', 'sc1', 'st1', 'gp3', ], ], 'Vpc' => [ 'type' => 'structure', 'members' => [ 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'DhcpOptionsId' => [ 'shape' => 'String', 'locationName' => 'dhcpOptionsId', ], 'State' => [ 'shape' => 'VpcState', 'locationName' => 'state', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'InstanceTenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'instanceTenancy', ], 'Ipv6CidrBlockAssociationSet' => [ 'shape' => 'VpcIpv6CidrBlockAssociationSet', 'locationName' => 'ipv6CidrBlockAssociationSet', ], 'CidrBlockAssociationSet' => [ 'shape' => 'VpcCidrBlockAssociationSet', 'locationName' => 'cidrBlockAssociationSet', ], 'IsDefault' => [ 'shape' => 'Boolean', 'locationName' => 'isDefault', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'VpcAttachment' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'AttachmentStatus', 'locationName' => 'state', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'VpcAttachmentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcAttachment', 'locationName' => 'item', ], ], 'VpcAttributeName' => [ 'type' => 'string', 'enum' => [ 'enableDnsSupport', 'enableDnsHostnames', 'enableNetworkAddressUsageMetrics', ], ], 'VpcCidrAssociationId' => [ 'type' => 'string', ], 'VpcCidrBlockAssociation' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'CidrBlockState' => [ 'shape' => 'VpcCidrBlockState', 'locationName' => 'cidrBlockState', ], ], ], 'VpcCidrBlockAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcCidrBlockAssociation', 'locationName' => 'item', ], ], 'VpcCidrBlockState' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'VpcCidrBlockStateCode', 'locationName' => 'state', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], ], ], 'VpcCidrBlockStateCode' => [ 'type' => 'string', 'enum' => [ 'associating', 'associated', 'disassociating', 'disassociated', 'failing', 'failed', ], ], 'VpcClassicLink' => [ 'type' => 'structure', 'members' => [ 'ClassicLinkEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'classicLinkEnabled', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'VpcClassicLinkIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcId', 'locationName' => 'VpcId', ], ], 'VpcClassicLinkList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcClassicLink', 'locationName' => 'item', ], ], 'VpcEndpoint' => [ 'type' => 'structure', 'members' => [ 'VpcEndpointId' => [ 'shape' => 'String', 'locationName' => 'vpcEndpointId', ], 'VpcEndpointType' => [ 'shape' => 'VpcEndpointType', 'locationName' => 'vpcEndpointType', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'ServiceName' => [ 'shape' => 'String', 'locationName' => 'serviceName', ], 'State' => [ 'shape' => 'State', 'locationName' => 'state', ], 'PolicyDocument' => [ 'shape' => 'String', 'locationName' => 'policyDocument', ], 'RouteTableIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'routeTableIdSet', ], 'SubnetIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'subnetIdSet', ], 'Groups' => [ 'shape' => 'GroupIdentifierSet', 'locationName' => 'groupSet', ], 'IpAddressType' => [ 'shape' => 'IpAddressType', 'locationName' => 'ipAddressType', ], 'DnsOptions' => [ 'shape' => 'DnsOptions', 'locationName' => 'dnsOptions', ], 'PrivateDnsEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'privateDnsEnabled', ], 'RequesterManaged' => [ 'shape' => 'Boolean', 'locationName' => 'requesterManaged', ], 'NetworkInterfaceIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'networkInterfaceIdSet', ], 'DnsEntries' => [ 'shape' => 'DnsEntrySet', 'locationName' => 'dnsEntrySet', ], 'CreationTimestamp' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'creationTimestamp', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'LastError' => [ 'shape' => 'LastError', 'locationName' => 'lastError', ], ], ], 'VpcEndpointConnection' => [ 'type' => 'structure', 'members' => [ 'ServiceId' => [ 'shape' => 'String', 'locationName' => 'serviceId', ], 'VpcEndpointId' => [ 'shape' => 'String', 'locationName' => 'vpcEndpointId', ], 'VpcEndpointOwner' => [ 'shape' => 'String', 'locationName' => 'vpcEndpointOwner', ], 'VpcEndpointState' => [ 'shape' => 'State', 'locationName' => 'vpcEndpointState', ], 'CreationTimestamp' => [ 'shape' => 'MillisecondDateTime', 'locationName' => 'creationTimestamp', ], 'DnsEntries' => [ 'shape' => 'DnsEntrySet', 'locationName' => 'dnsEntrySet', ], 'NetworkLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'networkLoadBalancerArnSet', ], 'GatewayLoadBalancerArns' => [ 'shape' => 'ValueStringList', 'locationName' => 'gatewayLoadBalancerArnSet', ], 'IpAddressType' => [ 'shape' => 'IpAddressType', 'locationName' => 'ipAddressType', ], 'VpcEndpointConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcEndpointConnectionId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'VpcEndpointConnectionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcEndpointConnection', 'locationName' => 'item', ], ], 'VpcEndpointId' => [ 'type' => 'string', ], 'VpcEndpointIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcEndpointId', 'locationName' => 'item', ], ], 'VpcEndpointRouteTableIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RouteTableId', 'locationName' => 'item', ], ], 'VpcEndpointSecurityGroupIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', 'locationName' => 'item', ], ], 'VpcEndpointServiceId' => [ 'type' => 'string', ], 'VpcEndpointServiceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcEndpointServiceId', 'locationName' => 'item', ], ], 'VpcEndpointSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcEndpoint', 'locationName' => 'item', ], ], 'VpcEndpointSubnetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetId', 'locationName' => 'item', ], ], 'VpcEndpointType' => [ 'type' => 'string', 'enum' => [ 'Interface', 'Gateway', 'GatewayLoadBalancer', ], ], 'VpcFlowLogId' => [ 'type' => 'string', ], 'VpcId' => [ 'type' => 'string', ], 'VpcIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcId', 'locationName' => 'VpcId', ], ], 'VpcIpv6CidrBlockAssociation' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'Ipv6CidrBlock' => [ 'shape' => 'String', 'locationName' => 'ipv6CidrBlock', ], 'Ipv6CidrBlockState' => [ 'shape' => 'VpcCidrBlockState', 'locationName' => 'ipv6CidrBlockState', ], 'NetworkBorderGroup' => [ 'shape' => 'String', 'locationName' => 'networkBorderGroup', ], 'Ipv6Pool' => [ 'shape' => 'String', 'locationName' => 'ipv6Pool', ], ], ], 'VpcIpv6CidrBlockAssociationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcIpv6CidrBlockAssociation', 'locationName' => 'item', ], ], 'VpcList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Vpc', 'locationName' => 'item', ], ], 'VpcPeeringConnection' => [ 'type' => 'structure', 'members' => [ 'AccepterVpcInfo' => [ 'shape' => 'VpcPeeringConnectionVpcInfo', 'locationName' => 'accepterVpcInfo', ], 'ExpirationTime' => [ 'shape' => 'DateTime', 'locationName' => 'expirationTime', ], 'RequesterVpcInfo' => [ 'shape' => 'VpcPeeringConnectionVpcInfo', 'locationName' => 'requesterVpcInfo', ], 'Status' => [ 'shape' => 'VpcPeeringConnectionStateReason', 'locationName' => 'status', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], ], ], 'VpcPeeringConnectionId' => [ 'type' => 'string', ], 'VpcPeeringConnectionIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcPeeringConnectionId', 'locationName' => 'item', ], ], 'VpcPeeringConnectionIdWithResolver' => [ 'type' => 'string', ], 'VpcPeeringConnectionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcPeeringConnection', 'locationName' => 'item', ], ], 'VpcPeeringConnectionOptionsDescription' => [ 'type' => 'structure', 'members' => [ 'AllowDnsResolutionFromRemoteVpc' => [ 'shape' => 'Boolean', 'locationName' => 'allowDnsResolutionFromRemoteVpc', ], 'AllowEgressFromLocalClassicLinkToRemoteVpc' => [ 'shape' => 'Boolean', 'locationName' => 'allowEgressFromLocalClassicLinkToRemoteVpc', ], 'AllowEgressFromLocalVpcToRemoteClassicLink' => [ 'shape' => 'Boolean', 'locationName' => 'allowEgressFromLocalVpcToRemoteClassicLink', ], ], ], 'VpcPeeringConnectionStateReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'VpcPeeringConnectionStateReasonCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'VpcPeeringConnectionStateReasonCode' => [ 'type' => 'string', 'enum' => [ 'initiating-request', 'pending-acceptance', 'active', 'deleted', 'rejected', 'failed', 'expired', 'provisioning', 'deleting', ], ], 'VpcPeeringConnectionVpcInfo' => [ 'type' => 'structure', 'members' => [ 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'Ipv6CidrBlockSet' => [ 'shape' => 'Ipv6CidrBlockSet', 'locationName' => 'ipv6CidrBlockSet', ], 'CidrBlockSet' => [ 'shape' => 'CidrBlockSet', 'locationName' => 'cidrBlockSet', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'PeeringOptions' => [ 'shape' => 'VpcPeeringConnectionOptionsDescription', 'locationName' => 'peeringOptions', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'Region' => [ 'shape' => 'String', 'locationName' => 'region', ], ], ], 'VpcState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', ], ], 'VpcTenancy' => [ 'type' => 'string', 'enum' => [ 'default', ], ], 'VpnConnection' => [ 'type' => 'structure', 'members' => [ 'CustomerGatewayConfiguration' => [ 'shape' => 'customerGatewayConfiguration', 'locationName' => 'customerGatewayConfiguration', ], 'CustomerGatewayId' => [ 'shape' => 'String', 'locationName' => 'customerGatewayId', ], 'Category' => [ 'shape' => 'String', 'locationName' => 'category', ], 'State' => [ 'shape' => 'VpnState', 'locationName' => 'state', ], 'Type' => [ 'shape' => 'GatewayType', 'locationName' => 'type', ], 'VpnConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpnConnectionId', ], 'VpnGatewayId' => [ 'shape' => 'String', 'locationName' => 'vpnGatewayId', ], 'TransitGatewayId' => [ 'shape' => 'String', 'locationName' => 'transitGatewayId', ], 'CoreNetworkArn' => [ 'shape' => 'String', 'locationName' => 'coreNetworkArn', ], 'CoreNetworkAttachmentArn' => [ 'shape' => 'String', 'locationName' => 'coreNetworkAttachmentArn', ], 'GatewayAssociationState' => [ 'shape' => 'GatewayAssociationState', 'locationName' => 'gatewayAssociationState', ], 'Options' => [ 'shape' => 'VpnConnectionOptions', 'locationName' => 'options', ], 'Routes' => [ 'shape' => 'VpnStaticRouteList', 'locationName' => 'routes', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VgwTelemetry' => [ 'shape' => 'VgwTelemetryList', 'locationName' => 'vgwTelemetry', ], ], ], 'VpnConnectionDeviceSampleConfiguration' => [ 'type' => 'string', 'sensitive' => true, ], 'VpnConnectionDeviceType' => [ 'type' => 'structure', 'members' => [ 'VpnConnectionDeviceTypeId' => [ 'shape' => 'String', 'locationName' => 'vpnConnectionDeviceTypeId', ], 'Vendor' => [ 'shape' => 'String', 'locationName' => 'vendor', ], 'Platform' => [ 'shape' => 'String', 'locationName' => 'platform', ], 'Software' => [ 'shape' => 'String', 'locationName' => 'software', ], ], ], 'VpnConnectionDeviceTypeId' => [ 'type' => 'string', ], 'VpnConnectionDeviceTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpnConnectionDeviceType', 'locationName' => 'item', ], ], 'VpnConnectionId' => [ 'type' => 'string', ], 'VpnConnectionIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpnConnectionId', 'locationName' => 'VpnConnectionId', ], ], 'VpnConnectionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpnConnection', 'locationName' => 'item', ], ], 'VpnConnectionOptions' => [ 'type' => 'structure', 'members' => [ 'EnableAcceleration' => [ 'shape' => 'Boolean', 'locationName' => 'enableAcceleration', ], 'StaticRoutesOnly' => [ 'shape' => 'Boolean', 'locationName' => 'staticRoutesOnly', ], 'LocalIpv4NetworkCidr' => [ 'shape' => 'String', 'locationName' => 'localIpv4NetworkCidr', ], 'RemoteIpv4NetworkCidr' => [ 'shape' => 'String', 'locationName' => 'remoteIpv4NetworkCidr', ], 'LocalIpv6NetworkCidr' => [ 'shape' => 'String', 'locationName' => 'localIpv6NetworkCidr', ], 'RemoteIpv6NetworkCidr' => [ 'shape' => 'String', 'locationName' => 'remoteIpv6NetworkCidr', ], 'OutsideIpAddressType' => [ 'shape' => 'String', 'locationName' => 'outsideIpAddressType', ], 'TransportTransitGatewayAttachmentId' => [ 'shape' => 'String', 'locationName' => 'transportTransitGatewayAttachmentId', ], 'TunnelInsideIpVersion' => [ 'shape' => 'TunnelInsideIpVersion', 'locationName' => 'tunnelInsideIpVersion', ], 'TunnelOptions' => [ 'shape' => 'TunnelOptionsList', 'locationName' => 'tunnelOptionSet', ], ], ], 'VpnConnectionOptionsSpecification' => [ 'type' => 'structure', 'members' => [ 'EnableAcceleration' => [ 'shape' => 'Boolean', ], 'StaticRoutesOnly' => [ 'shape' => 'Boolean', 'locationName' => 'staticRoutesOnly', ], 'TunnelInsideIpVersion' => [ 'shape' => 'TunnelInsideIpVersion', ], 'TunnelOptions' => [ 'shape' => 'VpnTunnelOptionsSpecificationsList', ], 'LocalIpv4NetworkCidr' => [ 'shape' => 'String', ], 'RemoteIpv4NetworkCidr' => [ 'shape' => 'String', ], 'LocalIpv6NetworkCidr' => [ 'shape' => 'String', ], 'RemoteIpv6NetworkCidr' => [ 'shape' => 'String', ], 'OutsideIpAddressType' => [ 'shape' => 'String', ], 'TransportTransitGatewayAttachmentId' => [ 'shape' => 'TransitGatewayAttachmentId', ], ], ], 'VpnEcmpSupportValue' => [ 'type' => 'string', 'enum' => [ 'enable', 'disable', ], ], 'VpnGateway' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'State' => [ 'shape' => 'VpnState', 'locationName' => 'state', ], 'Type' => [ 'shape' => 'GatewayType', 'locationName' => 'type', ], 'VpcAttachments' => [ 'shape' => 'VpcAttachmentList', 'locationName' => 'attachments', ], 'VpnGatewayId' => [ 'shape' => 'String', 'locationName' => 'vpnGatewayId', ], 'AmazonSideAsn' => [ 'shape' => 'Long', 'locationName' => 'amazonSideAsn', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'VpnGatewayId' => [ 'type' => 'string', ], 'VpnGatewayIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpnGatewayId', 'locationName' => 'VpnGatewayId', ], ], 'VpnGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpnGateway', 'locationName' => 'item', ], ], 'VpnProtocol' => [ 'type' => 'string', 'enum' => [ 'openvpn', ], ], 'VpnState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'deleting', 'deleted', ], ], 'VpnStaticRoute' => [ 'type' => 'structure', 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'Source' => [ 'shape' => 'VpnStaticRouteSource', 'locationName' => 'source', ], 'State' => [ 'shape' => 'VpnState', 'locationName' => 'state', ], ], ], 'VpnStaticRouteList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpnStaticRoute', 'locationName' => 'item', ], ], 'VpnStaticRouteSource' => [ 'type' => 'string', 'enum' => [ 'Static', ], ], 'VpnTunnelLogOptions' => [ 'type' => 'structure', 'members' => [ 'CloudWatchLogOptions' => [ 'shape' => 'CloudWatchLogOptions', 'locationName' => 'cloudWatchLogOptions', ], ], ], 'VpnTunnelLogOptionsSpecification' => [ 'type' => 'structure', 'members' => [ 'CloudWatchLogOptions' => [ 'shape' => 'CloudWatchLogOptionsSpecification', ], ], ], 'VpnTunnelOptionsSpecification' => [ 'type' => 'structure', 'members' => [ 'TunnelInsideCidr' => [ 'shape' => 'String', ], 'TunnelInsideIpv6Cidr' => [ 'shape' => 'String', ], 'PreSharedKey' => [ 'shape' => 'preSharedKey', ], 'Phase1LifetimeSeconds' => [ 'shape' => 'Integer', ], 'Phase2LifetimeSeconds' => [ 'shape' => 'Integer', ], 'RekeyMarginTimeSeconds' => [ 'shape' => 'Integer', ], 'RekeyFuzzPercentage' => [ 'shape' => 'Integer', ], 'ReplayWindowSize' => [ 'shape' => 'Integer', ], 'DPDTimeoutSeconds' => [ 'shape' => 'Integer', ], 'DPDTimeoutAction' => [ 'shape' => 'String', ], 'Phase1EncryptionAlgorithms' => [ 'shape' => 'Phase1EncryptionAlgorithmsRequestList', 'locationName' => 'Phase1EncryptionAlgorithm', ], 'Phase2EncryptionAlgorithms' => [ 'shape' => 'Phase2EncryptionAlgorithmsRequestList', 'locationName' => 'Phase2EncryptionAlgorithm', ], 'Phase1IntegrityAlgorithms' => [ 'shape' => 'Phase1IntegrityAlgorithmsRequestList', 'locationName' => 'Phase1IntegrityAlgorithm', ], 'Phase2IntegrityAlgorithms' => [ 'shape' => 'Phase2IntegrityAlgorithmsRequestList', 'locationName' => 'Phase2IntegrityAlgorithm', ], 'Phase1DHGroupNumbers' => [ 'shape' => 'Phase1DHGroupNumbersRequestList', 'locationName' => 'Phase1DHGroupNumber', ], 'Phase2DHGroupNumbers' => [ 'shape' => 'Phase2DHGroupNumbersRequestList', 'locationName' => 'Phase2DHGroupNumber', ], 'IKEVersions' => [ 'shape' => 'IKEVersionsRequestList', 'locationName' => 'IKEVersion', ], 'StartupAction' => [ 'shape' => 'String', ], 'LogOptions' => [ 'shape' => 'VpnTunnelLogOptionsSpecification', ], 'EnableTunnelLifecycleControl' => [ 'shape' => 'Boolean', ], ], ], 'VpnTunnelOptionsSpecificationsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpnTunnelOptionsSpecification', ], ], 'WeekDay' => [ 'type' => 'string', 'enum' => [ 'sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', ], ], 'WithdrawByoipCidrRequest' => [ 'type' => 'structure', 'required' => [ 'Cidr', ], 'members' => [ 'Cidr' => [ 'shape' => 'String', ], 'DryRun' => [ 'shape' => 'Boolean', ], ], ], 'WithdrawByoipCidrResult' => [ 'type' => 'structure', 'members' => [ 'ByoipCidr' => [ 'shape' => 'ByoipCidr', 'locationName' => 'byoipCidr', ], ], ], 'ZoneIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ZoneId', ], ], 'ZoneNameStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ZoneName', ], ], 'customerGatewayConfiguration' => [ 'type' => 'string', 'sensitive' => true, ], 'preSharedKey' => [ 'type' => 'string', 'sensitive' => true, ], 'scope' => [ 'type' => 'string', 'enum' => [ 'Availability Zone', 'Region', ], ], 'snapshotTierStatusSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SnapshotTierStatus', 'locationName' => 'item', ], ], 'totalFpgaMemory' => [ 'type' => 'integer', ], 'totalGpuMemory' => [ 'type' => 'integer', ], 'totalInferenceMemory' => [ 'type' => 'integer', ], ],]; diff --git a/src/data/ec2/2016-11-15/docs-2.json b/src/data/ec2/2016-11-15/docs-2.json index 757d895eb4..8e29845c27 100644 --- a/src/data/ec2/2016-11-15/docs-2.json +++ b/src/data/ec2/2016-11-15/docs-2.json @@ -10215,6 +10215,12 @@ "refs": { } }, + "GetNetworkInsightsAccessScopeAnalysisFindingsMaxResults": { + "base": null, + "refs": { + "GetNetworkInsightsAccessScopeAnalysisFindingsRequest$MaxResults": "

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

" + } + }, "GetNetworkInsightsAccessScopeAnalysisFindingsRequest": { "base": null, "refs": { @@ -15524,8 +15530,7 @@ "DescribeNetworkInsightsAccessScopeAnalysesRequest$MaxResults": "

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

", "DescribeNetworkInsightsAccessScopesRequest$MaxResults": "

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

", "DescribeNetworkInsightsAnalysesRequest$MaxResults": "

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

", - "DescribeNetworkInsightsPathsRequest$MaxResults": "

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

", - "GetNetworkInsightsAccessScopeAnalysisFindingsRequest$MaxResults": "

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

" + "DescribeNetworkInsightsPathsRequest$MaxResults": "

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

" } }, "NetworkInsightsPath": { diff --git a/src/data/ec2/2016-11-15/docs-2.json.php b/src/data/ec2/2016-11-15/docs-2.json.php index 1f424b06d6..cc295a19c6 100644 --- a/src/data/ec2/2016-11-15/docs-2.json.php +++ b/src/data/ec2/2016-11-15/docs-2.json.php @@ -1,3 +1,3 @@ '2.0', 'service' => 'Amazon Elastic Compute Cloud

Amazon Elastic Compute Cloud (Amazon EC2) provides secure and resizable computing capacity in the Amazon Web Services Cloud. Using Amazon EC2 eliminates the need to invest in hardware up front, so you can develop and deploy applications faster. Amazon Virtual Private Cloud (Amazon VPC) enables you to provision a logically isolated section of the Amazon Web Services Cloud where you can launch Amazon Web Services resources in a virtual network that you\'ve defined. Amazon Elastic Block Store (Amazon EBS) provides block level storage volumes for use with EC2 instances. EBS volumes are highly available and reliable storage volumes that can be attached to any running instance and used like a hard drive.

To learn more, see the following resources:

', 'operations' => [ 'AcceptAddressTransfer' => '

Accepts an Elastic IP address transfer. For more information, see Accept a transferred Elastic IP address in the Amazon Virtual Private Cloud User Guide.

', 'AcceptReservedInstancesExchangeQuote' => '

Accepts the Convertible Reserved Instance exchange quote described in the GetReservedInstancesExchangeQuote call.

', 'AcceptTransitGatewayMulticastDomainAssociations' => '

Accepts a request to associate subnets with a transit gateway multicast domain.

', 'AcceptTransitGatewayPeeringAttachment' => '

Accepts a transit gateway peering attachment request. The peering attachment must be in the pendingAcceptance state.

', 'AcceptTransitGatewayVpcAttachment' => '

Accepts a request to attach a VPC to a transit gateway.

The VPC attachment must be in the pendingAcceptance state. Use DescribeTransitGatewayVpcAttachments to view your pending VPC attachment requests. Use RejectTransitGatewayVpcAttachment to reject a VPC attachment request.

', 'AcceptVpcEndpointConnections' => '

Accepts connection requests to your VPC endpoint service.

', 'AcceptVpcPeeringConnection' => '

Accept a VPC peering connection request. To accept a request, the VPC peering connection must be in the pending-acceptance state, and you must be the owner of the peer VPC. Use DescribeVpcPeeringConnections to view your outstanding VPC peering connection requests.

For an inter-Region VPC peering connection request, you must accept the VPC peering connection in the Region of the accepter VPC.

', 'AdvertiseByoipCidr' => '

Advertises an IPv4 or IPv6 address range that is provisioned for use with your Amazon Web Services resources through bring your own IP addresses (BYOIP).

You can perform this operation at most once every 10 seconds, even if you specify different address ranges each time.

We recommend that you stop advertising the BYOIP CIDR from other locations when you advertise it from Amazon Web Services. To minimize down time, you can configure your Amazon Web Services resources to use an address from a BYOIP CIDR before it is advertised, and then simultaneously stop advertising it from the current location and start advertising it through Amazon Web Services.

It can take a few minutes before traffic to the specified addresses starts routing to Amazon Web Services because of BGP propagation delays.

To stop advertising the BYOIP CIDR, use WithdrawByoipCidr.

', 'AllocateAddress' => '

Allocates an Elastic IP address to your Amazon Web Services account. After you allocate the Elastic IP address you can associate it with an instance or network interface. After you release an Elastic IP address, it is released to the IP address pool and can be allocated to a different Amazon Web Services account.

You can allocate an Elastic IP address from an address pool owned by Amazon Web Services or from an address pool created from a public IPv4 address range that you have brought to Amazon Web Services for use with your Amazon Web Services resources using bring your own IP addresses (BYOIP). For more information, see Bring Your Own IP Addresses (BYOIP) in the Amazon Elastic Compute Cloud User Guide.

If you release an Elastic IP address, you might be able to recover it. You cannot recover an Elastic IP address that you released after it is allocated to another Amazon Web Services account. To attempt to recover an Elastic IP address that you released, specify it in this operation.

For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide.

You can allocate a carrier IP address which is a public IP address from a telecommunication carrier, to a network interface which resides in a subnet in a Wavelength Zone (for example an EC2 instance).

', 'AllocateHosts' => '

Allocates a Dedicated Host to your account. At a minimum, specify the supported instance type or instance family, the Availability Zone in which to allocate the host, and the number of hosts to allocate.

', 'AllocateIpamPoolCidr' => '

Allocate a CIDR from an IPAM pool. The Region you use should be the IPAM pool locale. The locale is the Amazon Web Services Region where this IPAM pool is available for allocations.

In IPAM, an allocation is a CIDR assignment from an IPAM pool to another IPAM pool or to a resource. For more information, see Allocate CIDRs in the Amazon VPC IPAM User Guide.

This action creates an allocation with strong consistency. The returned CIDR will not overlap with any other allocations from the same pool.

', 'ApplySecurityGroupsToClientVpnTargetNetwork' => '

Applies a security group to the association between the target network and the Client VPN endpoint. This action replaces the existing security groups with the specified security groups.

', 'AssignIpv6Addresses' => '

Assigns one or more IPv6 addresses to the specified network interface. You can specify one or more specific IPv6 addresses, or you can specify the number of IPv6 addresses to be automatically assigned from within the subnet\'s IPv6 CIDR block range. You can assign as many IPv6 addresses to a network interface as you can assign private IPv4 addresses, and the limit varies per instance type. For information, see IP Addresses Per Network Interface Per Instance Type in the Amazon Elastic Compute Cloud User Guide.

You must specify either the IPv6 addresses or the IPv6 address count in the request.

You can optionally use Prefix Delegation on the network interface. You must specify either the IPV6 Prefix Delegation prefixes, or the IPv6 Prefix Delegation count. For information, see Assigning prefixes to Amazon EC2 network interfaces in the Amazon Elastic Compute Cloud User Guide.

', 'AssignPrivateIpAddresses' => '

Assigns one or more secondary private IP addresses to the specified network interface.

You can specify one or more specific secondary IP addresses, or you can specify the number of secondary IP addresses to be automatically assigned within the subnet\'s CIDR block range. The number of secondary IP addresses that you can assign to an instance varies by instance type. For information about instance types, see Instance Types in the Amazon Elastic Compute Cloud User Guide. For more information about Elastic IP addresses, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide.

When you move a secondary private IP address to another network interface, any Elastic IP address that is associated with the IP address is also moved.

Remapping an IP address is an asynchronous operation. When you move an IP address from one network interface to another, check network/interfaces/macs/mac/local-ipv4s in the instance metadata to confirm that the remapping is complete.

You must specify either the IP addresses or the IP address count in the request.

You can optionally use Prefix Delegation on the network interface. You must specify either the IPv4 Prefix Delegation prefixes, or the IPv4 Prefix Delegation count. For information, see Assigning prefixes to Amazon EC2 network interfaces in the Amazon Elastic Compute Cloud User Guide.

', 'AssignPrivateNatGatewayAddress' => '

Assigns one or more private IPv4 addresses to a private NAT gateway. For more information, see Work with NAT gateways in the Amazon VPC User Guide.

', 'AssociateAddress' => '

Associates an Elastic IP address, or carrier IP address (for instances that are in subnets in Wavelength Zones) with an instance or a network interface. Before you can use an Elastic IP address, you must allocate it to your account.

If the Elastic IP address is already associated with a different instance, it is disassociated from that instance and associated with the specified instance. If you associate an Elastic IP address with an instance that has an existing Elastic IP address, the existing address is disassociated from the instance, but remains allocated to your account.

[Subnets in Wavelength Zones] You can associate an IP address from the telecommunication carrier to the instance or network interface.

You cannot associate an Elastic IP address with an interface in a different network border group.

This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn\'t return an error, and you may be charged for each time the Elastic IP address is remapped to the same instance. For more information, see the Elastic IP Addresses section of Amazon EC2 Pricing.

', 'AssociateClientVpnTargetNetwork' => '

Associates a target network with a Client VPN endpoint. A target network is a subnet in a VPC. You can associate multiple subnets from the same VPC with a Client VPN endpoint. You can associate only one subnet in each Availability Zone. We recommend that you associate at least two subnets to provide Availability Zone redundancy.

If you specified a VPC when you created the Client VPN endpoint or if you have previous subnet associations, the specified subnet must be in the same VPC. To specify a subnet that\'s in a different VPC, you must first modify the Client VPN endpoint (ModifyClientVpnEndpoint) and change the VPC that\'s associated with it.

', 'AssociateDhcpOptions' => '

Associates a set of DHCP options (that you\'ve previously created) with the specified VPC, or associates no DHCP options with the VPC.

After you associate the options with the VPC, any existing instances and all new instances that you launch in that VPC use the options. You don\'t need to restart or relaunch the instances. They automatically pick up the changes within a few hours, depending on how frequently the instance renews its DHCP lease. You can explicitly renew the lease using the operating system on the instance.

For more information, see DHCP options sets in the Amazon VPC User Guide.

', 'AssociateEnclaveCertificateIamRole' => '

Associates an Identity and Access Management (IAM) role with an Certificate Manager (ACM) certificate. This enables the certificate to be used by the ACM for Nitro Enclaves application inside an enclave. For more information, see Certificate Manager for Nitro Enclaves in the Amazon Web Services Nitro Enclaves User Guide.

When the IAM role is associated with the ACM certificate, the certificate, certificate chain, and encrypted private key are placed in an Amazon S3 location that only the associated IAM role can access. The private key of the certificate is encrypted with an Amazon Web Services managed key that has an attached attestation-based key policy.

To enable the IAM role to access the Amazon S3 object, you must grant it permission to call s3:GetObject on the Amazon S3 bucket returned by the command. To enable the IAM role to access the KMS key, you must grant it permission to call kms:Decrypt on the KMS key returned by the command. For more information, see Grant the role permission to access the certificate and encryption key in the Amazon Web Services Nitro Enclaves User Guide.

', 'AssociateIamInstanceProfile' => '

Associates an IAM instance profile with a running or stopped instance. You cannot associate more than one IAM instance profile with an instance.

', 'AssociateInstanceEventWindow' => '

Associates one or more targets with an event window. Only one type of target (instance IDs, Dedicated Host IDs, or tags) can be specified with an event window.

For more information, see Define event windows for scheduled events in the Amazon EC2 User Guide.

', 'AssociateIpamByoasn' => '

Associates your Autonomous System Number (ASN) with a BYOIP CIDR that you own in the same Amazon Web Services Region. For more information, see Tutorial: Bring your ASN to IPAM in the Amazon VPC IPAM guide.

After the association succeeds, the ASN is eligible for advertisement. You can view the association with DescribeByoipCidrs. You can advertise the CIDR with AdvertiseByoipCidr.

', 'AssociateIpamResourceDiscovery' => '

Associates an IPAM resource discovery with an Amazon VPC IPAM. A resource discovery is an IPAM component that enables IPAM to manage and monitor resources that belong to the owning account.

', 'AssociateNatGatewayAddress' => '

Associates Elastic IP addresses (EIPs) and private IPv4 addresses with a public NAT gateway. For more information, see Work with NAT gateways in the Amazon VPC User Guide.

By default, you can associate up to 2 Elastic IP addresses per public NAT gateway. You can increase the limit by requesting a quota adjustment. For more information, see Elastic IP address quotas in the Amazon VPC User Guide.

When you associate an EIP or secondary EIPs with a public NAT gateway, the network border group of the EIPs must match the network border group of the Availability Zone (AZ) that the public NAT gateway is in. If it\'s not the same, the EIP will fail to associate. You can see the network border group for the subnet\'s AZ by viewing the details of the subnet. Similarly, you can view the network border group of an EIP by viewing the details of the EIP address. For more information about network border groups and EIPs, see Allocate an Elastic IP address in the Amazon VPC User Guide.

', 'AssociateRouteTable' => '

Associates a subnet in your VPC or an internet gateway or virtual private gateway attached to your VPC with a route table in your VPC. This association causes traffic from the subnet or gateway to be routed according to the routes in the route table. The action returns an association ID, which you need in order to disassociate the route table later. A route table can be associated with multiple subnets.

For more information, see Route tables in the Amazon VPC User Guide.

', 'AssociateSubnetCidrBlock' => '

Associates a CIDR block with your subnet. You can only associate a single IPv6 CIDR block with your subnet.

', 'AssociateTransitGatewayMulticastDomain' => '

Associates the specified subnets and transit gateway attachments with the specified transit gateway multicast domain.

The transit gateway attachment must be in the available state before you can add a resource. Use DescribeTransitGatewayAttachments to see the state of the attachment.

', 'AssociateTransitGatewayPolicyTable' => '

Associates the specified transit gateway attachment with a transit gateway policy table.

', 'AssociateTransitGatewayRouteTable' => '

Associates the specified attachment with the specified transit gateway route table. You can associate only one route table with an attachment.

', 'AssociateTrunkInterface' => '

Associates a branch network interface with a trunk network interface.

Before you create the association, run the create-network-interface command and set --interface-type to trunk. You must also create a network interface for each branch network interface that you want to associate with the trunk network interface.

', 'AssociateVpcCidrBlock' => '

Associates a CIDR block with your VPC. You can associate a secondary IPv4 CIDR block, an Amazon-provided IPv6 CIDR block, or an IPv6 CIDR block from an IPv6 address pool that you provisioned through bring your own IP addresses (BYOIP).

You must specify one of the following in the request: an IPv4 CIDR block, an IPv6 pool, or an Amazon-provided IPv6 CIDR block.

For more information about associating CIDR blocks with your VPC and applicable restrictions, see IP addressing for your VPCs and subnets in the Amazon VPC User Guide.

', 'AttachClassicLinkVpc' => '

This action is deprecated.

Links an EC2-Classic instance to a ClassicLink-enabled VPC through one or more of the VPC security groups. You cannot link an EC2-Classic instance to more than one VPC at a time. You can only link an instance that\'s in the running state. An instance is automatically unlinked from a VPC when it\'s stopped - you can link it to the VPC again when you restart it.

After you\'ve linked an instance, you cannot change the VPC security groups that are associated with it. To change the security groups, you must first unlink the instance, and then link it again.

Linking your instance to a VPC is sometimes referred to as attaching your instance.

', 'AttachInternetGateway' => '

Attaches an internet gateway or a virtual private gateway to a VPC, enabling connectivity between the internet and the VPC. For more information, see Internet gateways in the Amazon VPC User Guide.

', 'AttachNetworkInterface' => '

Attaches a network interface to an instance.

', 'AttachVerifiedAccessTrustProvider' => '

Attaches the specified Amazon Web Services Verified Access trust provider to the specified Amazon Web Services Verified Access instance.

', 'AttachVolume' => '

Attaches an EBS volume to a running or stopped instance and exposes it to the instance with the specified device name.

Encrypted EBS volumes must be attached to instances that support Amazon EBS encryption. For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

After you attach an EBS volume, you must make it available. For more information, see Make an EBS volume available for use.

If a volume has an Amazon Web Services Marketplace product code:

  • The volume can be attached only to a stopped instance.

  • Amazon Web Services Marketplace product codes are copied from the volume to the instance.

  • You must be subscribed to the product.

  • The instance type and operating system of the instance must support the product. For example, you can\'t detach a volume from a Windows instance and attach it to a Linux instance.

For more information, see Attach an Amazon EBS volume to an instance in the Amazon Elastic Compute Cloud User Guide.

', 'AttachVpnGateway' => '

Attaches a virtual private gateway to a VPC. You can attach one virtual private gateway to one VPC at a time.

For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.

', 'AuthorizeClientVpnIngress' => '

Adds an ingress authorization rule to a Client VPN endpoint. Ingress authorization rules act as firewall rules that grant access to networks. You must configure ingress authorization rules to enable clients to access resources in Amazon Web Services or on-premises networks.

', 'AuthorizeSecurityGroupEgress' => '

Adds the specified outbound (egress) rules to a security group for use with a VPC.

An outbound rule permits instances to send traffic to the specified IPv4 or IPv6 CIDR address ranges, or to the instances that are associated with the specified source security groups. When specifying an outbound rule for your security group in a VPC, the IpPermissions must include a destination for the traffic.

You specify a protocol for each rule (for example, TCP). For the TCP and UDP protocols, you must also specify the destination port or port range. For the ICMP protocol, you must also specify the ICMP type and code. You can use -1 for the type or code to mean all types or all codes.

Rule changes are propagated to affected instances as quickly as possible. However, a small delay might occur.

For information about VPC security group quotas, see Amazon VPC quotas.

If you want to reference a security group across VPCs attached to a transit gateway using the security group referencing feature, note that you can only reference security groups for ingress rules. You cannot reference a security group for egress rules.

', 'AuthorizeSecurityGroupIngress' => '

Adds the specified inbound (ingress) rules to a security group.

An inbound rule permits instances to receive traffic from the specified IPv4 or IPv6 CIDR address range, or from the instances that are associated with the specified destination security groups. When specifying an inbound rule for your security group in a VPC, the IpPermissions must include a source for the traffic.

You specify a protocol for each rule (for example, TCP). For TCP and UDP, you must also specify the destination port or port range. For ICMP/ICMPv6, you must also specify the ICMP/ICMPv6 type and code. You can use -1 to mean all types or all codes.

Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.

For more information about VPC security group quotas, see Amazon VPC quotas.

', 'BundleInstance' => '

Bundles an Amazon instance store-backed Windows instance.

During bundling, only the root device volume (C:\\) is bundled. Data on other instance store volumes is not preserved.

This action is not applicable for Linux/Unix instances or Windows instances that are backed by Amazon EBS.

', 'CancelBundleTask' => '

Cancels a bundling operation for an instance store-backed Windows instance.

', 'CancelCapacityReservation' => '

Cancels the specified Capacity Reservation, releases the reserved capacity, and changes the Capacity Reservation\'s state to cancelled.

Instances running in the reserved capacity continue running until you stop them. Stopped instances that target the Capacity Reservation can no longer launch. Modify these instances to either target a different Capacity Reservation, launch On-Demand Instance capacity, or run in any open Capacity Reservation that has matching attributes and sufficient capacity.

', 'CancelCapacityReservationFleets' => '

Cancels one or more Capacity Reservation Fleets. When you cancel a Capacity Reservation Fleet, the following happens:

  • The Capacity Reservation Fleet\'s status changes to cancelled.

  • The individual Capacity Reservations in the Fleet are cancelled. Instances running in the Capacity Reservations at the time of cancelling the Fleet continue to run in shared capacity.

  • The Fleet stops creating new Capacity Reservations.

', 'CancelConversionTask' => '

Cancels an active conversion task. The task can be the import of an instance or volume. The action removes all artifacts of the conversion, including a partially uploaded volume or instance. If the conversion is complete or is in the process of transferring the final disk image, the command fails and returns an exception.

For more information, see Importing a Virtual Machine Using the Amazon EC2 CLI.

', 'CancelExportTask' => '

Cancels an active export task. The request removes all artifacts of the export, including any partially-created Amazon S3 objects. If the export task is complete or is in the process of transferring the final disk image, the command fails and returns an error.

', 'CancelImageLaunchPermission' => '

Removes your Amazon Web Services account from the launch permissions for the specified AMI. For more information, see Cancel having an AMI shared with your Amazon Web Services account in the Amazon EC2 User Guide.

', 'CancelImportTask' => '

Cancels an in-process import virtual machine or import snapshot task.

', 'CancelReservedInstancesListing' => '

Cancels the specified Reserved Instance listing in the Reserved Instance Marketplace.

For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide.

', 'CancelSpotFleetRequests' => '

Cancels the specified Spot Fleet requests.

After you cancel a Spot Fleet request, the Spot Fleet launches no new instances.

You must also specify whether a canceled Spot Fleet request should terminate its instances. If you choose to terminate the instances, the Spot Fleet request enters the cancelled_terminating state. Otherwise, the Spot Fleet request enters the cancelled_running state and the instances continue to run until they are interrupted or you terminate them manually.

', 'CancelSpotInstanceRequests' => '

Cancels one or more Spot Instance requests.

Canceling a Spot Instance request does not terminate running Spot Instances associated with the request.

', 'ConfirmProductInstance' => '

Determines whether a product code is associated with an instance. This action can only be used by the owner of the product code. It is useful when a product code owner must verify whether another user\'s instance is eligible for support.

', 'CopyFpgaImage' => '

Copies the specified Amazon FPGA Image (AFI) to the current Region.

', 'CopyImage' => '

Initiates the copy of an AMI. You can copy an AMI from one Region to another, or from a Region to an Outpost. You can\'t copy an AMI from an Outpost to a Region, from one Outpost to another, or within the same Outpost. To copy an AMI to another partition, see CreateStoreImageTask.

To copy an AMI from one Region to another, specify the source Region using the SourceRegion parameter, and specify the destination Region using its endpoint. Copies of encrypted backing snapshots for the AMI are encrypted. Copies of unencrypted backing snapshots remain unencrypted, unless you set Encrypted during the copy operation. You cannot create an unencrypted copy of an encrypted backing snapshot.

To copy an AMI from a Region to an Outpost, specify the source Region using the SourceRegion parameter, and specify the ARN of the destination Outpost using DestinationOutpostArn. Backing snapshots copied to an Outpost are encrypted by default using the default encryption key for the Region, or a different key that you specify in the request using KmsKeyId. Outposts do not support unencrypted snapshots. For more information, Amazon EBS local snapshots on Outposts in the Amazon EC2 User Guide.

For more information about the prerequisites and limits when copying an AMI, see Copy an AMI in the Amazon EC2 User Guide.

', 'CopySnapshot' => '

Copies a point-in-time snapshot of an EBS volume and stores it in Amazon S3. You can copy a snapshot within the same Region, from one Region to another, or from a Region to an Outpost. You can\'t copy a snapshot from an Outpost to a Region, from one Outpost to another, or within the same Outpost.

You can use the snapshot to create EBS volumes or Amazon Machine Images (AMIs).

When copying snapshots to a Region, copies of encrypted EBS snapshots remain encrypted. Copies of unencrypted snapshots remain unencrypted, unless you enable encryption for the snapshot copy operation. By default, encrypted snapshot copies use the default Key Management Service (KMS) KMS key; however, you can specify a different KMS key. To copy an encrypted snapshot that has been shared from another account, you must have permissions for the KMS key used to encrypt the snapshot.

Snapshots copied to an Outpost are encrypted by default using the default encryption key for the Region, or a different key that you specify in the request using KmsKeyId. Outposts do not support unencrypted snapshots. For more information, Amazon EBS local snapshots on Outposts in the Amazon Elastic Compute Cloud User Guide.

Snapshots created by copying another snapshot have an arbitrary volume ID that should not be used for any purpose.

For more information, see Copy an Amazon EBS snapshot in the Amazon Elastic Compute Cloud User Guide.

', 'CreateCapacityReservation' => '

Creates a new Capacity Reservation with the specified attributes.

Capacity Reservations enable you to reserve capacity for your Amazon EC2 instances in a specific Availability Zone for any duration. This gives you the flexibility to selectively add capacity reservations and still get the Regional RI discounts for that usage. By creating Capacity Reservations, you ensure that you always have access to Amazon EC2 capacity when you need it, for as long as you need it. For more information, see Capacity Reservations in the Amazon EC2 User Guide.

Your request to create a Capacity Reservation could fail if Amazon EC2 does not have sufficient capacity to fulfill the request. If your request fails due to Amazon EC2 capacity constraints, either try again at a later time, try in a different Availability Zone, or request a smaller capacity reservation. If your application is flexible across instance types and sizes, try to create a Capacity Reservation with different instance attributes.

Your request could also fail if the requested quantity exceeds your On-Demand Instance limit for the selected instance type. If your request fails due to limit constraints, increase your On-Demand Instance limit for the required instance type and try again. For more information about increasing your instance limits, see Amazon EC2 Service Quotas in the Amazon EC2 User Guide.

', 'CreateCapacityReservationFleet' => '

Creates a Capacity Reservation Fleet. For more information, see Create a Capacity Reservation Fleet in the Amazon EC2 User Guide.

', 'CreateCarrierGateway' => '

Creates a carrier gateway. For more information about carrier gateways, see Carrier gateways in the Amazon Web Services Wavelength Developer Guide.

', 'CreateClientVpnEndpoint' => '

Creates a Client VPN endpoint. A Client VPN endpoint is the resource you create and configure to enable and manage client VPN sessions. It is the destination endpoint at which all client VPN sessions are terminated.

', 'CreateClientVpnRoute' => '

Adds a route to a network to a Client VPN endpoint. Each Client VPN endpoint has a route table that describes the available destination network routes. Each route in the route table specifies the path for traffic to specific resources or networks.

', 'CreateCoipCidr' => '

Creates a range of customer-owned IP addresses.

', 'CreateCoipPool' => '

Creates a pool of customer-owned IP (CoIP) addresses.

', 'CreateCustomerGateway' => '

Provides information to Amazon Web Services about your customer gateway device. The customer gateway device is the appliance at your end of the VPN connection. You must provide the IP address of the customer gateway device’s external interface. The IP address must be static and can be behind a device performing network address translation (NAT).

For devices that use Border Gateway Protocol (BGP), you can also provide the device\'s BGP Autonomous System Number (ASN). You can use an existing ASN assigned to your network. If you don\'t have an ASN already, you can use a private ASN. For more information, see Customer gateway options for your Site-to-Site VPN connection in the Amazon Web Services Site-to-Site VPN User Guide.

To create more than one customer gateway with the same VPN type, IP address, and BGP ASN, specify a unique device name for each customer gateway. An identical request returns information about the existing customer gateway; it doesn\'t create a new customer gateway.

', 'CreateDefaultSubnet' => '

Creates a default subnet with a size /20 IPv4 CIDR block in the specified Availability Zone in your default VPC. You can have only one default subnet per Availability Zone. For more information, see Create a default subnet in the Amazon VPC User Guide.

', 'CreateDefaultVpc' => '

Creates a default VPC with a size /16 IPv4 CIDR block and a default subnet in each Availability Zone. For more information about the components of a default VPC, see Default VPCs in the Amazon VPC User Guide. You cannot specify the components of the default VPC yourself.

If you deleted your previous default VPC, you can create a default VPC. You cannot have more than one default VPC per Region.

', 'CreateDhcpOptions' => '

Creates a set of DHCP options for your VPC. After creating the set, you must associate it with the VPC, causing all existing and new instances that you launch in the VPC to use this set of DHCP options. The following are the individual DHCP options you can specify. For more information about the options, see RFC 2132.

  • domain-name-servers - The IP addresses of up to four domain name servers, or AmazonProvidedDNS. The default DHCP option set specifies AmazonProvidedDNS. If specifying more than one domain name server, specify the IP addresses in a single parameter, separated by commas. To have your instance receive a custom DNS hostname as specified in domain-name, you must set domain-name-servers to a custom DNS server.

  • domain-name - If you\'re using AmazonProvidedDNS in us-east-1, specify ec2.internal. If you\'re using AmazonProvidedDNS in another Region, specify region.compute.internal (for example, ap-northeast-1.compute.internal). Otherwise, specify a domain name (for example, ExampleCompany.com). This value is used to complete unqualified DNS hostnames. Important: Some Linux operating systems accept multiple domain names separated by spaces. However, Windows and other Linux operating systems treat the value as a single domain, which results in unexpected behavior. If your DHCP options set is associated with a VPC that has instances with multiple operating systems, specify only one domain name.

  • ntp-servers - The IP addresses of up to four Network Time Protocol (NTP) servers.

  • netbios-name-servers - The IP addresses of up to four NetBIOS name servers.

  • netbios-node-type - The NetBIOS node type (1, 2, 4, or 8). We recommend that you specify 2 (broadcast and multicast are not currently supported). For more information about these node types, see RFC 2132.

Your VPC automatically starts out with a set of DHCP options that includes only a DNS server that we provide (AmazonProvidedDNS). If you create a set of options, and if your VPC has an internet gateway, make sure to set the domain-name-servers option either to AmazonProvidedDNS or to a domain name server of your choice. For more information, see DHCP options sets in the Amazon VPC User Guide.

', 'CreateEgressOnlyInternetGateway' => '

[IPv6 only] Creates an egress-only internet gateway for your VPC. An egress-only internet gateway is used to enable outbound communication over IPv6 from instances in your VPC to the internet, and prevents hosts outside of your VPC from initiating an IPv6 connection with your instance.

', 'CreateFleet' => '

Creates an EC2 Fleet that contains the configuration information for On-Demand Instances and Spot Instances. Instances are launched immediately if there is available capacity.

A single EC2 Fleet can include multiple launch specifications that vary by instance type, AMI, Availability Zone, or subnet.

For more information, see EC2 Fleet in the Amazon EC2 User Guide.

', 'CreateFlowLogs' => '

Creates one or more flow logs to capture information about IP traffic for a specific network interface, subnet, or VPC.

Flow log data for a monitored network interface is recorded as flow log records, which are log events consisting of fields that describe the traffic flow. For more information, see Flow log records in the Amazon Virtual Private Cloud User Guide.

When publishing to CloudWatch Logs, flow log records are published to a log group, and each network interface has a unique log stream in the log group. When publishing to Amazon S3, flow log records for all of the monitored network interfaces are published to a single log file object that is stored in the specified bucket.

For more information, see VPC Flow Logs in the Amazon Virtual Private Cloud User Guide.

', 'CreateFpgaImage' => '

Creates an Amazon FPGA Image (AFI) from the specified design checkpoint (DCP).

The create operation is asynchronous. To verify that the AFI is ready for use, check the output logs.

An AFI contains the FPGA bitstream that is ready to download to an FPGA. You can securely deploy an AFI on multiple FPGA-accelerated instances. For more information, see the Amazon Web Services FPGA Hardware Development Kit.

', 'CreateImage' => '

Creates an Amazon EBS-backed AMI from an Amazon EBS-backed instance that is either running or stopped.

If you customized your instance with instance store volumes or Amazon EBS volumes in addition to the root device volume, the new AMI contains block device mapping information for those volumes. When you launch an instance from this new AMI, the instance automatically launches with those additional volumes.

For more information, see Create an Amazon EBS-backed Linux AMI in the Amazon Elastic Compute Cloud User Guide.

', 'CreateInstanceConnectEndpoint' => '

Creates an EC2 Instance Connect Endpoint.

An EC2 Instance Connect Endpoint allows you to connect to an instance, without requiring the instance to have a public IPv4 address. For more information, see Connect to your instances without requiring a public IPv4 address using EC2 Instance Connect Endpoint in the Amazon EC2 User Guide.

', 'CreateInstanceEventWindow' => '

Creates an event window in which scheduled events for the associated Amazon EC2 instances can run.

You can define either a set of time ranges or a cron expression when creating the event window, but not both. All event window times are in UTC.

You can create up to 200 event windows per Amazon Web Services Region.

When you create the event window, targets (instance IDs, Dedicated Host IDs, or tags) are not yet associated with it. To ensure that the event window can be used, you must associate one or more targets with it by using the AssociateInstanceEventWindow API.

Event windows are applicable only for scheduled events that stop, reboot, or terminate instances.

Event windows are not applicable for:

  • Expedited scheduled events and network maintenance events.

  • Unscheduled maintenance such as AutoRecovery and unplanned reboots.

For more information, see Define event windows for scheduled events in the Amazon EC2 User Guide.

', 'CreateInstanceExportTask' => '

Exports a running or stopped instance to an Amazon S3 bucket.

For information about the prerequisites for your Amazon S3 bucket, supported operating systems, image formats, and known limitations for the types of instances you can export, see Exporting an instance as a VM Using VM Import/Export in the VM Import/Export User Guide.

', 'CreateInternetGateway' => '

Creates an internet gateway for use with a VPC. After creating the internet gateway, you attach it to a VPC using AttachInternetGateway.

For more information, see Internet gateways in the Amazon VPC User Guide.

', 'CreateIpam' => '

Create an IPAM. Amazon VPC IP Address Manager (IPAM) is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across Amazon Web Services Regions and accounts throughout your Amazon Web Services Organization.

For more information, see Create an IPAM in the Amazon VPC IPAM User Guide.

', 'CreateIpamPool' => '

Create an IP address pool for Amazon VPC IP Address Manager (IPAM). In IPAM, a pool is a collection of contiguous IP addresses CIDRs. Pools enable you to organize your IP addresses according to your routing and security needs. For example, if you have separate routing and security needs for development and production applications, you can create a pool for each.

For more information, see Create a top-level pool in the Amazon VPC IPAM User Guide.

', 'CreateIpamResourceDiscovery' => '

Creates an IPAM resource discovery. A resource discovery is an IPAM component that enables IPAM to manage and monitor resources that belong to the owning account.

', 'CreateIpamScope' => '

Create an IPAM scope. In IPAM, a scope is the highest-level container within IPAM. An IPAM contains two default scopes. Each scope represents the IP space for a single network. The private scope is intended for all private IP address space. The public scope is intended for all public IP address space. Scopes enable you to reuse IP addresses across multiple unconnected networks without causing IP address overlap or conflict.

For more information, see Add a scope in the Amazon VPC IPAM User Guide.

', 'CreateKeyPair' => '

Creates an ED25519 or 2048-bit RSA key pair with the specified name and in the specified PEM or PPK format. Amazon EC2 stores the public key and displays the private key for you to save to a file. The private key is returned as an unencrypted PEM encoded PKCS#1 private key or an unencrypted PPK formatted private key for use with PuTTY. If a key with the specified name already exists, Amazon EC2 returns an error.

The key pair returned to you is available only in the Amazon Web Services Region in which you create it. If you prefer, you can create your own key pair using a third-party tool and upload it to any Region using ImportKeyPair.

You can have up to 5,000 key pairs per Amazon Web Services Region.

For more information, see Amazon EC2 key pairs in the Amazon Elastic Compute Cloud User Guide.

', 'CreateLaunchTemplate' => '

Creates a launch template.

A launch template contains the parameters to launch an instance. When you launch an instance using RunInstances, you can specify a launch template instead of providing the launch parameters in the request. For more information, see Launch an instance from a launch template in the Amazon Elastic Compute Cloud User Guide.

If you want to clone an existing launch template as the basis for creating a new launch template, you can use the Amazon EC2 console. The API, SDKs, and CLI do not support cloning a template. For more information, see Create a launch template from an existing launch template in the Amazon Elastic Compute Cloud User Guide.

', 'CreateLaunchTemplateVersion' => '

Creates a new version of a launch template. You can specify an existing version of launch template from which to base the new version.

Launch template versions are numbered in the order in which they are created. You cannot specify, change, or replace the numbering of launch template versions.

Launch templates are immutable; after you create a launch template, you can\'t modify it. Instead, you can create a new version of the launch template that includes any changes you require.

For more information, see Modify a launch template (manage launch template versions) in the Amazon Elastic Compute Cloud User Guide.

', 'CreateLocalGatewayRoute' => '

Creates a static route for the specified local gateway route table. You must specify one of the following targets:

  • LocalGatewayVirtualInterfaceGroupId

  • NetworkInterfaceId

', 'CreateLocalGatewayRouteTable' => '

Creates a local gateway route table.

', 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation' => '

Creates a local gateway route table virtual interface group association.

', 'CreateLocalGatewayRouteTableVpcAssociation' => '

Associates the specified VPC with the specified local gateway route table.

', 'CreateManagedPrefixList' => '

Creates a managed prefix list. You can specify one or more entries for the prefix list. Each entry consists of a CIDR block and an optional description.

', 'CreateNatGateway' => '

Creates a NAT gateway in the specified subnet. This action creates a network interface in the specified subnet with a private IP address from the IP address range of the subnet. You can create either a public NAT gateway or a private NAT gateway.

With a public NAT gateway, internet-bound traffic from a private subnet can be routed to the NAT gateway, so that instances in a private subnet can connect to the internet.

With a private NAT gateway, private communication is routed across VPCs and on-premises networks through a transit gateway or virtual private gateway. Common use cases include running large workloads behind a small pool of allowlisted IPv4 addresses, preserving private IPv4 addresses, and communicating between overlapping networks.

For more information, see NAT gateways in the Amazon VPC User Guide.

When you create a public NAT gateway and assign it an EIP or secondary EIPs, the network border group of the EIPs must match the network border group of the Availability Zone (AZ) that the public NAT gateway is in. If it\'s not the same, the NAT gateway will fail to launch. You can see the network border group for the subnet\'s AZ by viewing the details of the subnet. Similarly, you can view the network border group of an EIP by viewing the details of the EIP address. For more information about network border groups and EIPs, see Allocate an Elastic IP address in the Amazon VPC User Guide.

', 'CreateNetworkAcl' => '

Creates a network ACL in a VPC. Network ACLs provide an optional layer of security (in addition to security groups) for the instances in your VPC.

For more information, see Network ACLs in the Amazon VPC User Guide.

', 'CreateNetworkAclEntry' => '

Creates an entry (a rule) in a network ACL with the specified rule number. Each network ACL has a set of numbered ingress rules and a separate set of numbered egress rules. When determining whether a packet should be allowed in or out of a subnet associated with the ACL, we process the entries in the ACL according to the rule numbers, in ascending order. Each network ACL has a set of ingress rules and a separate set of egress rules.

We recommend that you leave room between the rule numbers (for example, 100, 110, 120, ...), and not number them one right after the other (for example, 101, 102, 103, ...). This makes it easier to add a rule between existing ones without having to renumber the rules.

After you add an entry, you can\'t modify it; you must either replace it, or create an entry and delete the old one.

For more information about network ACLs, see Network ACLs in the Amazon VPC User Guide.

', 'CreateNetworkInsightsAccessScope' => '

Creates a Network Access Scope.

Amazon Web Services Network Access Analyzer enables cloud networking and cloud operations teams to verify that their networks on Amazon Web Services conform to their network security and governance objectives. For more information, see the Amazon Web Services Network Access Analyzer Guide.

', 'CreateNetworkInsightsPath' => '

Creates a path to analyze for reachability.

Reachability Analyzer enables you to analyze and debug network reachability between two resources in your virtual private cloud (VPC). For more information, see the Reachability Analyzer Guide.

', 'CreateNetworkInterface' => '

Creates a network interface in the specified subnet.

The number of IP addresses you can assign to a network interface varies by instance type. For more information, see IP Addresses Per ENI Per Instance Type in the Amazon Virtual Private Cloud User Guide.

For more information about network interfaces, see Elastic network interfaces in the Amazon Elastic Compute Cloud User Guide.

', 'CreateNetworkInterfacePermission' => '

Grants an Amazon Web Services-authorized account permission to attach the specified network interface to an instance in their account.

You can grant permission to a single Amazon Web Services account only, and only one account at a time.

', 'CreatePlacementGroup' => '

Creates a placement group in which to launch instances. The strategy of the placement group determines how the instances are organized within the group.

A cluster placement group is a logical grouping of instances within a single Availability Zone that benefit from low network latency, high network throughput. A spread placement group places instances on distinct hardware. A partition placement group places groups of instances in different partitions, where instances in one partition do not share the same hardware with instances in another partition.

For more information, see Placement groups in the Amazon EC2 User Guide.

', 'CreatePublicIpv4Pool' => '

Creates a public IPv4 address pool. A public IPv4 pool is an EC2 IP address pool required for the public IPv4 CIDRs that you own and bring to Amazon Web Services to manage with IPAM. IPv6 addresses you bring to Amazon Web Services, however, use IPAM pools only. To monitor the status of pool creation, use DescribePublicIpv4Pools.

', 'CreateReplaceRootVolumeTask' => '

Replaces the EBS-backed root volume for a running instance with a new volume that is restored to the original root volume\'s launch state, that is restored to a specific snapshot taken from the original root volume, or that is restored from an AMI that has the same key characteristics as that of the instance.

For more information, see Replace a root volume in the Amazon Elastic Compute Cloud User Guide.

', 'CreateReservedInstancesListing' => '

Creates a listing for Amazon EC2 Standard Reserved Instances to be sold in the Reserved Instance Marketplace. You can submit one Standard Reserved Instance listing at a time. To get a list of your Standard Reserved Instances, you can use the DescribeReservedInstances operation.

Only Standard Reserved Instances can be sold in the Reserved Instance Marketplace. Convertible Reserved Instances cannot be sold.

The Reserved Instance Marketplace matches sellers who want to resell Standard Reserved Instance capacity that they no longer need with buyers who want to purchase additional capacity. Reserved Instances bought and sold through the Reserved Instance Marketplace work like any other Reserved Instances.

To sell your Standard Reserved Instances, you must first register as a seller in the Reserved Instance Marketplace. After completing the registration process, you can create a Reserved Instance Marketplace listing of some or all of your Standard Reserved Instances, and specify the upfront price to receive for them. Your Standard Reserved Instance listings then become available for purchase. To view the details of your Standard Reserved Instance listing, you can use the DescribeReservedInstancesListings operation.

For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide.

', 'CreateRestoreImageTask' => '

Starts a task that restores an AMI from an Amazon S3 object that was previously created by using CreateStoreImageTask.

To use this API, you must have the required permissions. For more information, see Permissions for storing and restoring AMIs using Amazon S3 in the Amazon EC2 User Guide.

For more information, see Store and restore an AMI using Amazon S3 in the Amazon EC2 User Guide.

', 'CreateRoute' => '

Creates a route in a route table within a VPC.

You must specify either a destination CIDR block or a prefix list ID. You must also specify exactly one of the resources from the parameter list.

When determining how to route traffic, we use the route with the most specific match. For example, traffic is destined for the IPv4 address 192.0.2.3, and the route table includes the following two IPv4 routes:

  • 192.0.2.0/24 (goes to some target A)

  • 192.0.2.0/28 (goes to some target B)

Both routes apply to the traffic destined for 192.0.2.3. However, the second route in the list covers a smaller number of IP addresses and is therefore more specific, so we use that route to determine where to target the traffic.

For more information about route tables, see Route tables in the Amazon VPC User Guide.

', 'CreateRouteTable' => '

Creates a route table for the specified VPC. After you create a route table, you can add routes and associate the table with a subnet.

For more information, see Route tables in the Amazon VPC User Guide.

', 'CreateSecurityGroup' => '

Creates a security group.

A security group acts as a virtual firewall for your instance to control inbound and outbound traffic. For more information, see Amazon EC2 security groups in the Amazon Elastic Compute Cloud User Guide and Security groups for your VPC in the Amazon Virtual Private Cloud User Guide.

When you create a security group, you specify a friendly name of your choice. You can\'t have two security groups for the same VPC with the same name.

You have a default security group for use in your VPC. If you don\'t specify a security group when you launch an instance, the instance is launched into the appropriate default security group. A default security group includes a default rule that grants instances unrestricted network access to each other.

You can add or remove rules from your security groups using AuthorizeSecurityGroupIngress, AuthorizeSecurityGroupEgress, RevokeSecurityGroupIngress, and RevokeSecurityGroupEgress.

For more information about VPC security group limits, see Amazon VPC Limits.

', 'CreateSnapshot' => '

Creates a snapshot of an EBS volume and stores it in Amazon S3. You can use snapshots for backups, to make copies of EBS volumes, and to save data before shutting down an instance.

You can create snapshots of volumes in a Region and volumes on an Outpost. If you create a snapshot of a volume in a Region, the snapshot must be stored in the same Region as the volume. If you create a snapshot of a volume on an Outpost, the snapshot can be stored on the same Outpost as the volume, or in the Region for that Outpost.

When a snapshot is created, any Amazon Web Services Marketplace product codes that are associated with the source volume are propagated to the snapshot.

You can take a snapshot of an attached volume that is in use. However, snapshots only capture data that has been written to your Amazon EBS volume at the time the snapshot command is issued; this might exclude any data that has been cached by any applications or the operating system. If you can pause any file systems on the volume long enough to take a snapshot, your snapshot should be complete. However, if you cannot pause all file writes to the volume, you should unmount the volume from within the instance, issue the snapshot command, and then remount the volume to ensure a consistent and complete snapshot. You may remount and use your volume while the snapshot status is pending.

When you create a snapshot for an EBS volume that serves as a root device, we recommend that you stop the instance before taking the snapshot.

Snapshots that are taken from encrypted volumes are automatically encrypted. Volumes that are created from encrypted snapshots are also automatically encrypted. Your encrypted volumes and any associated snapshots always remain protected.

You can tag your snapshots during creation. For more information, see Tag your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide.

For more information, see Amazon Elastic Block Store and Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

', 'CreateSnapshots' => '

Creates crash-consistent snapshots of multiple EBS volumes and stores the data in S3. Volumes are chosen by specifying an instance. Any attached volumes will produce one snapshot each that is crash-consistent across the instance.

You can include all of the volumes currently attached to the instance, or you can exclude the root volume or specific data (non-root) volumes from the multi-volume snapshot set.

You can create multi-volume snapshots of instances in a Region and instances on an Outpost. If you create snapshots from an instance in a Region, the snapshots must be stored in the same Region as the instance. If you create snapshots from an instance on an Outpost, the snapshots can be stored on the same Outpost as the instance, or in the Region for that Outpost.

', 'CreateSpotDatafeedSubscription' => '

Creates a data feed for Spot Instances, enabling you to view Spot Instance usage logs. You can create one data feed per Amazon Web Services account. For more information, see Spot Instance data feed in the Amazon EC2 User Guide for Linux Instances.

', 'CreateStoreImageTask' => '

Stores an AMI as a single object in an Amazon S3 bucket.

To use this API, you must have the required permissions. For more information, see Permissions for storing and restoring AMIs using Amazon S3 in the Amazon EC2 User Guide.

For more information, see Store and restore an AMI using Amazon S3 in the Amazon EC2 User Guide.

', 'CreateSubnet' => '

Creates a subnet in the specified VPC. For an IPv4 only subnet, specify an IPv4 CIDR block. If the VPC has an IPv6 CIDR block, you can create an IPv6 only subnet or a dual stack subnet instead. For an IPv6 only subnet, specify an IPv6 CIDR block. For a dual stack subnet, specify both an IPv4 CIDR block and an IPv6 CIDR block.

A subnet CIDR block must not overlap the CIDR block of an existing subnet in the VPC. After you create a subnet, you can\'t change its CIDR block.

The allowed size for an IPv4 subnet is between a /28 netmask (16 IP addresses) and a /16 netmask (65,536 IP addresses). Amazon Web Services reserves both the first four and the last IPv4 address in each subnet\'s CIDR block. They\'re not available for your use.

If you\'ve associated an IPv6 CIDR block with your VPC, you can associate an IPv6 CIDR block with a subnet when you create it.

If you add more than one subnet to a VPC, they\'re set up in a star topology with a logical router in the middle.

When you stop an instance in a subnet, it retains its private IPv4 address. It\'s therefore possible to have a subnet with no running instances (they\'re all stopped), but no remaining IP addresses available.

For more information, see Subnets in the Amazon VPC User Guide.

', 'CreateSubnetCidrReservation' => '

Creates a subnet CIDR reservation. For more information, see Subnet CIDR reservations in the Amazon Virtual Private Cloud User Guide and Assign prefixes to network interfaces in the Amazon Elastic Compute Cloud User Guide.

', 'CreateTags' => '

Adds or overwrites only the specified tags for the specified Amazon EC2 resource or resources. When you specify an existing tag key, the value is overwritten with the new value. Each resource can have a maximum of 50 tags. Each tag consists of a key and optional value. Tag keys must be unique per resource.

For more information about tags, see Tag your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide. For more information about creating IAM policies that control users\' access to resources based on tags, see Supported resource-level permissions for Amazon EC2 API actions in the Amazon Elastic Compute Cloud User Guide.

', 'CreateTrafficMirrorFilter' => '

Creates a Traffic Mirror filter.

A Traffic Mirror filter is a set of rules that defines the traffic to mirror.

By default, no traffic is mirrored. To mirror traffic, use CreateTrafficMirrorFilterRule to add Traffic Mirror rules to the filter. The rules you add define what traffic gets mirrored. You can also use ModifyTrafficMirrorFilterNetworkServices to mirror supported network services.

', 'CreateTrafficMirrorFilterRule' => '

Creates a Traffic Mirror filter rule.

A Traffic Mirror rule defines the Traffic Mirror source traffic to mirror.

You need the Traffic Mirror filter ID when you create the rule.

', 'CreateTrafficMirrorSession' => '

Creates a Traffic Mirror session.

A Traffic Mirror session actively copies packets from a Traffic Mirror source to a Traffic Mirror target. Create a filter, and then assign it to the session to define a subset of the traffic to mirror, for example all TCP traffic.

The Traffic Mirror source and the Traffic Mirror target (monitoring appliances) can be in the same VPC, or in a different VPC connected via VPC peering or a transit gateway.

By default, no traffic is mirrored. Use CreateTrafficMirrorFilter to create filter rules that specify the traffic to mirror.

', 'CreateTrafficMirrorTarget' => '

Creates a target for your Traffic Mirror session.

A Traffic Mirror target is the destination for mirrored traffic. The Traffic Mirror source and the Traffic Mirror target (monitoring appliances) can be in the same VPC, or in different VPCs connected via VPC peering or a transit gateway.

A Traffic Mirror target can be a network interface, a Network Load Balancer, or a Gateway Load Balancer endpoint.

To use the target in a Traffic Mirror session, use CreateTrafficMirrorSession.

', 'CreateTransitGateway' => '

Creates a transit gateway.

You can use a transit gateway to interconnect your virtual private clouds (VPC) and on-premises networks. After the transit gateway enters the available state, you can attach your VPCs and VPN connections to the transit gateway.

To attach your VPCs, use CreateTransitGatewayVpcAttachment.

To attach a VPN connection, use CreateCustomerGateway to create a customer gateway and specify the ID of the customer gateway and the ID of the transit gateway in a call to CreateVpnConnection.

When you create a transit gateway, we create a default transit gateway route table and use it as the default association route table and the default propagation route table. You can use CreateTransitGatewayRouteTable to create additional transit gateway route tables. If you disable automatic route propagation, we do not create a default transit gateway route table. You can use EnableTransitGatewayRouteTablePropagation to propagate routes from a resource attachment to a transit gateway route table. If you disable automatic associations, you can use AssociateTransitGatewayRouteTable to associate a resource attachment with a transit gateway route table.

', 'CreateTransitGatewayConnect' => '

Creates a Connect attachment from a specified transit gateway attachment. A Connect attachment is a GRE-based tunnel attachment that you can use to establish a connection between a transit gateway and an appliance.

A Connect attachment uses an existing VPC or Amazon Web Services Direct Connect attachment as the underlying transport mechanism.

', 'CreateTransitGatewayConnectPeer' => '

Creates a Connect peer for a specified transit gateway Connect attachment between a transit gateway and an appliance.

The peer address and transit gateway address must be the same IP address family (IPv4 or IPv6).

For more information, see Connect peers in the Transit Gateways Guide.

', 'CreateTransitGatewayMulticastDomain' => '

Creates a multicast domain using the specified transit gateway.

The transit gateway must be in the available state before you create a domain. Use DescribeTransitGateways to see the state of transit gateway.

', 'CreateTransitGatewayPeeringAttachment' => '

Requests a transit gateway peering attachment between the specified transit gateway (requester) and a peer transit gateway (accepter). The peer transit gateway can be in your account or a different Amazon Web Services account.

After you create the peering attachment, the owner of the accepter transit gateway must accept the attachment request.

', 'CreateTransitGatewayPolicyTable' => '

Creates a transit gateway policy table.

', 'CreateTransitGatewayPrefixListReference' => '

Creates a reference (route) to a prefix list in a specified transit gateway route table.

', 'CreateTransitGatewayRoute' => '

Creates a static route for the specified transit gateway route table.

', 'CreateTransitGatewayRouteTable' => '

Creates a route table for the specified transit gateway.

', 'CreateTransitGatewayRouteTableAnnouncement' => '

Advertises a new transit gateway route table.

', 'CreateTransitGatewayVpcAttachment' => '

Attaches the specified VPC to the specified transit gateway.

If you attach a VPC with a CIDR range that overlaps the CIDR range of a VPC that is already attached, the new VPC CIDR range is not propagated to the default propagation route table.

To send VPC traffic to an attached transit gateway, add a route to the VPC route table using CreateRoute.

', 'CreateVerifiedAccessEndpoint' => '

An Amazon Web Services Verified Access endpoint is where you define your application along with an optional endpoint-level access policy.

', 'CreateVerifiedAccessGroup' => '

An Amazon Web Services Verified Access group is a collection of Amazon Web Services Verified Access endpoints who\'s associated applications have similar security requirements. Each instance within a Verified Access group shares an Verified Access policy. For example, you can group all Verified Access instances associated with "sales" applications together and use one common Verified Access policy.

', 'CreateVerifiedAccessInstance' => '

An Amazon Web Services Verified Access instance is a regional entity that evaluates application requests and grants access only when your security requirements are met.

', 'CreateVerifiedAccessTrustProvider' => '

A trust provider is a third-party entity that creates, maintains, and manages identity information for users and devices. When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

', 'CreateVolume' => '

Creates an EBS volume that can be attached to an instance in the same Availability Zone.

You can create a new empty volume or restore a volume from an EBS snapshot. Any Amazon Web Services Marketplace product codes from the snapshot are propagated to the volume.

You can create encrypted volumes. Encrypted volumes must be attached to instances that support Amazon EBS encryption. Volumes that are created from encrypted snapshots are also automatically encrypted. For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

You can tag your volumes during creation. For more information, see Tag your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide.

For more information, see Create an Amazon EBS volume in the Amazon Elastic Compute Cloud User Guide.

', 'CreateVpc' => '

Creates a VPC with the specified CIDR blocks. For more information, see IP addressing for your VPCs and subnets in the Amazon VPC User Guide.

You can optionally request an IPv6 CIDR block for the VPC. You can request an Amazon-provided IPv6 CIDR block from Amazon\'s pool of IPv6 addresses or an IPv6 CIDR block from an IPv6 address pool that you provisioned through bring your own IP addresses (BYOIP).

By default, each instance that you launch in the VPC has the default DHCP options, which include only a default DNS server that we provide (AmazonProvidedDNS). For more information, see DHCP option sets in the Amazon VPC User Guide.

You can specify the instance tenancy value for the VPC when you create it. You can\'t change this value for the VPC after you create it. For more information, see Dedicated Instances in the Amazon EC2 User Guide.

', 'CreateVpcEndpoint' => '

Creates a VPC endpoint. A VPC endpoint provides a private connection between the specified VPC and the specified endpoint service. You can use an endpoint service provided by Amazon Web Services, an Amazon Web Services Marketplace Partner, or another Amazon Web Services account. For more information, see the Amazon Web Services PrivateLink User Guide.

', 'CreateVpcEndpointConnectionNotification' => '

Creates a connection notification for a specified VPC endpoint or VPC endpoint service. A connection notification notifies you of specific endpoint events. You must create an SNS topic to receive notifications. For more information, see Create a Topic in the Amazon Simple Notification Service Developer Guide.

You can create a connection notification for interface endpoints only.

', 'CreateVpcEndpointServiceConfiguration' => '

Creates a VPC endpoint service to which service consumers (Amazon Web Services accounts, users, and IAM roles) can connect.

Before you create an endpoint service, you must create one of the following for your service:

If you set the private DNS name, you must prove that you own the private DNS domain name.

For more information, see the Amazon Web Services PrivateLink Guide.

', 'CreateVpcPeeringConnection' => '

Requests a VPC peering connection between two VPCs: a requester VPC that you own and an accepter VPC with which to create the connection. The accepter VPC can belong to another Amazon Web Services account and can be in a different Region to the requester VPC. The requester VPC and accepter VPC cannot have overlapping CIDR blocks.

Limitations and rules apply to a VPC peering connection. For more information, see the limitations section in the VPC Peering Guide.

The owner of the accepter VPC must accept the peering request to activate the peering connection. The VPC peering connection request expires after 7 days, after which it cannot be accepted or rejected.

If you create a VPC peering connection request between VPCs with overlapping CIDR blocks, the VPC peering connection has a status of failed.

', 'CreateVpnConnection' => '

Creates a VPN connection between an existing virtual private gateway or transit gateway and a customer gateway. The supported connection type is ipsec.1.

The response includes information that you need to give to your network administrator to configure your customer gateway.

We strongly recommend that you use HTTPS when calling this operation because the response contains sensitive cryptographic information for configuring your customer gateway device.

If you decide to shut down your VPN connection for any reason and later create a new VPN connection, you must reconfigure your customer gateway with the new information returned from this call.

This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn\'t return an error.

For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.

', 'CreateVpnConnectionRoute' => '

Creates a static route associated with a VPN connection between an existing virtual private gateway and a VPN customer gateway. The static route allows traffic to be routed from the virtual private gateway to the VPN customer gateway.

For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.

', 'CreateVpnGateway' => '

Creates a virtual private gateway. A virtual private gateway is the endpoint on the VPC side of your VPN connection. You can create a virtual private gateway before creating the VPC itself.

For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.

', 'DeleteCarrierGateway' => '

Deletes a carrier gateway.

If you do not delete the route that contains the carrier gateway as the Target, the route is a blackhole route. For information about how to delete a route, see DeleteRoute.

', 'DeleteClientVpnEndpoint' => '

Deletes the specified Client VPN endpoint. You must disassociate all target networks before you can delete a Client VPN endpoint.

', 'DeleteClientVpnRoute' => '

Deletes a route from a Client VPN endpoint. You can only delete routes that you manually added using the CreateClientVpnRoute action. You cannot delete routes that were automatically added when associating a subnet. To remove routes that have been automatically added, disassociate the target subnet from the Client VPN endpoint.

', 'DeleteCoipCidr' => '

Deletes a range of customer-owned IP addresses.

', 'DeleteCoipPool' => '

Deletes a pool of customer-owned IP (CoIP) addresses.

', 'DeleteCustomerGateway' => '

Deletes the specified customer gateway. You must delete the VPN connection before you can delete the customer gateway.

', 'DeleteDhcpOptions' => '

Deletes the specified set of DHCP options. You must disassociate the set of DHCP options before you can delete it. You can disassociate the set of DHCP options by associating either a new set of options or the default set of options with the VPC.

', 'DeleteEgressOnlyInternetGateway' => '

Deletes an egress-only internet gateway.

', 'DeleteFleets' => '

Deletes the specified EC2 Fleets.

After you delete an EC2 Fleet, it launches no new instances.

You must also specify whether a deleted EC2 Fleet should terminate its instances. If you choose to terminate the instances, the EC2 Fleet enters the deleted_terminating state. Otherwise, the EC2 Fleet enters the deleted_running state, and the instances continue to run until they are interrupted or you terminate them manually.

For instant fleets, EC2 Fleet must terminate the instances when the fleet is deleted. A deleted instant fleet with running instances is not supported.

Restrictions

  • You can delete up to 25 instant fleets in a single request. If you exceed this number, no instant fleets are deleted and an error is returned. There is no restriction on the number of fleets of type maintain or request that can be deleted in a single request.

  • Up to 1000 instances can be terminated in a single request to delete instant fleets.

For more information, see Delete an EC2 Fleet in the Amazon EC2 User Guide.

', 'DeleteFlowLogs' => '

Deletes one or more flow logs.

', 'DeleteFpgaImage' => '

Deletes the specified Amazon FPGA Image (AFI).

', 'DeleteInstanceConnectEndpoint' => '

Deletes the specified EC2 Instance Connect Endpoint.

', 'DeleteInstanceEventWindow' => '

Deletes the specified event window.

For more information, see Define event windows for scheduled events in the Amazon EC2 User Guide.

', 'DeleteInternetGateway' => '

Deletes the specified internet gateway. You must detach the internet gateway from the VPC before you can delete it.

', 'DeleteIpam' => '

Delete an IPAM. Deleting an IPAM removes all monitored data associated with the IPAM including the historical data for CIDRs.

For more information, see Delete an IPAM in the Amazon VPC IPAM User Guide.

', 'DeleteIpamPool' => '

Delete an IPAM pool.

You cannot delete an IPAM pool if there are allocations in it or CIDRs provisioned to it. To release allocations, see ReleaseIpamPoolAllocation. To deprovision pool CIDRs, see DeprovisionIpamPoolCidr.

For more information, see Delete a pool in the Amazon VPC IPAM User Guide.

', 'DeleteIpamResourceDiscovery' => '

Deletes an IPAM resource discovery. A resource discovery is an IPAM component that enables IPAM to manage and monitor resources that belong to the owning account.

', 'DeleteIpamScope' => '

Delete the scope for an IPAM. You cannot delete the default scopes.

For more information, see Delete a scope in the Amazon VPC IPAM User Guide.

', 'DeleteKeyPair' => '

Deletes the specified key pair, by removing the public key from Amazon EC2.

', 'DeleteLaunchTemplate' => '

Deletes a launch template. Deleting a launch template deletes all of its versions.

', 'DeleteLaunchTemplateVersions' => '

Deletes one or more versions of a launch template.

You can\'t delete the default version of a launch template; you must first assign a different version as the default. If the default version is the only version for the launch template, you must delete the entire launch template using DeleteLaunchTemplate.

You can delete up to 200 launch template versions in a single request. To delete more than 200 versions in a single request, use DeleteLaunchTemplate, which deletes the launch template and all of its versions.

For more information, see Delete a launch template version in the EC2 User Guide.

', 'DeleteLocalGatewayRoute' => '

Deletes the specified route from the specified local gateway route table.

', 'DeleteLocalGatewayRouteTable' => '

Deletes a local gateway route table.

', 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation' => '

Deletes a local gateway route table virtual interface group association.

', 'DeleteLocalGatewayRouteTableVpcAssociation' => '

Deletes the specified association between a VPC and local gateway route table.

', 'DeleteManagedPrefixList' => '

Deletes the specified managed prefix list. You must first remove all references to the prefix list in your resources.

', 'DeleteNatGateway' => '

Deletes the specified NAT gateway. Deleting a public NAT gateway disassociates its Elastic IP address, but does not release the address from your account. Deleting a NAT gateway does not delete any NAT gateway routes in your route tables.

', 'DeleteNetworkAcl' => '

Deletes the specified network ACL. You can\'t delete the ACL if it\'s associated with any subnets. You can\'t delete the default network ACL.

', 'DeleteNetworkAclEntry' => '

Deletes the specified ingress or egress entry (rule) from the specified network ACL.

', 'DeleteNetworkInsightsAccessScope' => '

Deletes the specified Network Access Scope.

', 'DeleteNetworkInsightsAccessScopeAnalysis' => '

Deletes the specified Network Access Scope analysis.

', 'DeleteNetworkInsightsAnalysis' => '

Deletes the specified network insights analysis.

', 'DeleteNetworkInsightsPath' => '

Deletes the specified path.

', 'DeleteNetworkInterface' => '

Deletes the specified network interface. You must detach the network interface before you can delete it.

', 'DeleteNetworkInterfacePermission' => '

Deletes a permission for a network interface. By default, you cannot delete the permission if the account for which you\'re removing the permission has attached the network interface to an instance. However, you can force delete the permission, regardless of any attachment.

', 'DeletePlacementGroup' => '

Deletes the specified placement group. You must terminate all instances in the placement group before you can delete the placement group. For more information, see Placement groups in the Amazon EC2 User Guide.

', 'DeletePublicIpv4Pool' => '

Delete a public IPv4 pool. A public IPv4 pool is an EC2 IP address pool required for the public IPv4 CIDRs that you own and bring to Amazon Web Services to manage with IPAM. IPv6 addresses you bring to Amazon Web Services, however, use IPAM pools only.

', 'DeleteQueuedReservedInstances' => '

Deletes the queued purchases for the specified Reserved Instances.

', 'DeleteRoute' => '

Deletes the specified route from the specified route table.

', 'DeleteRouteTable' => '

Deletes the specified route table. You must disassociate the route table from any subnets before you can delete it. You can\'t delete the main route table.

', 'DeleteSecurityGroup' => '

Deletes a security group.

If you attempt to delete a security group that is associated with an instance or network interface or is referenced by another security group, the operation fails with DependencyViolation.

', 'DeleteSnapshot' => '

Deletes the specified snapshot.

When you make periodic snapshots of a volume, the snapshots are incremental, and only the blocks on the device that have changed since your last snapshot are saved in the new snapshot. When you delete a snapshot, only the data not needed for any other snapshot is removed. So regardless of which prior snapshots have been deleted, all active snapshots will have access to all the information needed to restore the volume.

You cannot delete a snapshot of the root device of an EBS volume used by a registered AMI. You must first de-register the AMI before you can delete the snapshot.

For more information, see Delete an Amazon EBS snapshot in the Amazon Elastic Compute Cloud User Guide.

', 'DeleteSpotDatafeedSubscription' => '

Deletes the data feed for Spot Instances.

', 'DeleteSubnet' => '

Deletes the specified subnet. You must terminate all running instances in the subnet before you can delete the subnet.

', 'DeleteSubnetCidrReservation' => '

Deletes a subnet CIDR reservation.

', 'DeleteTags' => '

Deletes the specified set of tags from the specified set of resources.

To list the current tags, use DescribeTags. For more information about tags, see Tag your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide.

', 'DeleteTrafficMirrorFilter' => '

Deletes the specified Traffic Mirror filter.

You cannot delete a Traffic Mirror filter that is in use by a Traffic Mirror session.

', 'DeleteTrafficMirrorFilterRule' => '

Deletes the specified Traffic Mirror rule.

', 'DeleteTrafficMirrorSession' => '

Deletes the specified Traffic Mirror session.

', 'DeleteTrafficMirrorTarget' => '

Deletes the specified Traffic Mirror target.

You cannot delete a Traffic Mirror target that is in use by a Traffic Mirror session.

', 'DeleteTransitGateway' => '

Deletes the specified transit gateway.

', 'DeleteTransitGatewayConnect' => '

Deletes the specified Connect attachment. You must first delete any Connect peers for the attachment.

', 'DeleteTransitGatewayConnectPeer' => '

Deletes the specified Connect peer.

', 'DeleteTransitGatewayMulticastDomain' => '

Deletes the specified transit gateway multicast domain.

', 'DeleteTransitGatewayPeeringAttachment' => '

Deletes a transit gateway peering attachment.

', 'DeleteTransitGatewayPolicyTable' => '

Deletes the specified transit gateway policy table.

', 'DeleteTransitGatewayPrefixListReference' => '

Deletes a reference (route) to a prefix list in a specified transit gateway route table.

', 'DeleteTransitGatewayRoute' => '

Deletes the specified route from the specified transit gateway route table.

', 'DeleteTransitGatewayRouteTable' => '

Deletes the specified transit gateway route table. You must disassociate the route table from any transit gateway route tables before you can delete it.

', 'DeleteTransitGatewayRouteTableAnnouncement' => '

Advertises to the transit gateway that a transit gateway route table is deleted.

', 'DeleteTransitGatewayVpcAttachment' => '

Deletes the specified VPC attachment.

', 'DeleteVerifiedAccessEndpoint' => '

Delete an Amazon Web Services Verified Access endpoint.

', 'DeleteVerifiedAccessGroup' => '

Delete an Amazon Web Services Verified Access group.

', 'DeleteVerifiedAccessInstance' => '

Delete an Amazon Web Services Verified Access instance.

', 'DeleteVerifiedAccessTrustProvider' => '

Delete an Amazon Web Services Verified Access trust provider.

', 'DeleteVolume' => '

Deletes the specified EBS volume. The volume must be in the available state (not attached to an instance).

The volume can remain in the deleting state for several minutes.

For more information, see Delete an Amazon EBS volume in the Amazon Elastic Compute Cloud User Guide.

', 'DeleteVpc' => '

Deletes the specified VPC. You must detach or delete all gateways and resources that are associated with the VPC before you can delete it. For example, you must terminate all instances running in the VPC, delete all security groups associated with the VPC (except the default one), delete all route tables associated with the VPC (except the default one), and so on. When you delete the VPC, it deletes the VPC\'s default security group, network ACL, and route table.

', 'DeleteVpcEndpointConnectionNotifications' => '

Deletes the specified VPC endpoint connection notifications.

', 'DeleteVpcEndpointServiceConfigurations' => '

Deletes the specified VPC endpoint service configurations. Before you can delete an endpoint service configuration, you must reject any Available or PendingAcceptance interface endpoint connections that are attached to the service.

', 'DeleteVpcEndpoints' => '

Deletes the specified VPC endpoints.

When you delete a gateway endpoint, we delete the endpoint routes in the route tables for the endpoint.

When you delete a Gateway Load Balancer endpoint, we delete its endpoint network interfaces. You can only delete Gateway Load Balancer endpoints when the routes that are associated with the endpoint are deleted.

When you delete an interface endpoint, we delete its endpoint network interfaces.

', 'DeleteVpcPeeringConnection' => '

Deletes a VPC peering connection. Either the owner of the requester VPC or the owner of the accepter VPC can delete the VPC peering connection if it\'s in the active state. The owner of the requester VPC can delete a VPC peering connection in the pending-acceptance state. You cannot delete a VPC peering connection that\'s in the failed or rejected state.

', 'DeleteVpnConnection' => '

Deletes the specified VPN connection.

If you\'re deleting the VPC and its associated components, we recommend that you detach the virtual private gateway from the VPC and delete the VPC before deleting the VPN connection. If you believe that the tunnel credentials for your VPN connection have been compromised, you can delete the VPN connection and create a new one that has new keys, without needing to delete the VPC or virtual private gateway. If you create a new VPN connection, you must reconfigure the customer gateway device using the new configuration information returned with the new VPN connection ID.

For certificate-based authentication, delete all Certificate Manager (ACM) private certificates used for the Amazon Web Services-side tunnel endpoints for the VPN connection before deleting the VPN connection.

', 'DeleteVpnConnectionRoute' => '

Deletes the specified static route associated with a VPN connection between an existing virtual private gateway and a VPN customer gateway. The static route allows traffic to be routed from the virtual private gateway to the VPN customer gateway.

', 'DeleteVpnGateway' => '

Deletes the specified virtual private gateway. You must first detach the virtual private gateway from the VPC. Note that you don\'t need to delete the virtual private gateway if you plan to delete and recreate the VPN connection between your VPC and your network.

', 'DeprovisionByoipCidr' => '

Releases the specified address range that you provisioned for use with your Amazon Web Services resources through bring your own IP addresses (BYOIP) and deletes the corresponding address pool.

Before you can release an address range, you must stop advertising it using WithdrawByoipCidr and you must not have any IP addresses allocated from its address range.

', 'DeprovisionIpamByoasn' => '

Deprovisions your Autonomous System Number (ASN) from your Amazon Web Services account. This action can only be called after any BYOIP CIDR associations are removed from your Amazon Web Services account with DisassociateIpamByoasn. For more information, see Tutorial: Bring your ASN to IPAM in the Amazon VPC IPAM guide.

', 'DeprovisionIpamPoolCidr' => '

Deprovision a CIDR provisioned from an IPAM pool. If you deprovision a CIDR from a pool that has a source pool, the CIDR is recycled back into the source pool. For more information, see Deprovision pool CIDRs in the Amazon VPC IPAM User Guide.

', 'DeprovisionPublicIpv4PoolCidr' => '

Deprovision a CIDR from a public IPv4 pool.

', 'DeregisterImage' => '

Deregisters the specified AMI. After you deregister an AMI, it can\'t be used to launch new instances.

If you deregister an AMI that matches a Recycle Bin retention rule, the AMI is retained in the Recycle Bin for the specified retention period. For more information, see Recycle Bin in the Amazon EC2 User Guide.

When you deregister an AMI, it doesn\'t affect any instances that you\'ve already launched from the AMI. You\'ll continue to incur usage costs for those instances until you terminate them.

When you deregister an Amazon EBS-backed AMI, it doesn\'t affect the snapshot that was created for the root volume of the instance during the AMI creation process. When you deregister an instance store-backed AMI, it doesn\'t affect the files that you uploaded to Amazon S3 when you created the AMI.

', 'DeregisterInstanceEventNotificationAttributes' => '

Deregisters tag keys to prevent tags that have the specified tag keys from being included in scheduled event notifications for resources in the Region.

', 'DeregisterTransitGatewayMulticastGroupMembers' => '

Deregisters the specified members (network interfaces) from the transit gateway multicast group.

', 'DeregisterTransitGatewayMulticastGroupSources' => '

Deregisters the specified sources (network interfaces) from the transit gateway multicast group.

', 'DescribeAccountAttributes' => '

Describes attributes of your Amazon Web Services account. The following are the supported account attributes:

  • default-vpc: The ID of the default VPC for your account, or none.

  • max-instances: This attribute is no longer supported. The returned value does not reflect your actual vCPU limit for running On-Demand Instances. For more information, see On-Demand Instance Limits in the Amazon Elastic Compute Cloud User Guide.

  • max-elastic-ips: The maximum number of Elastic IP addresses that you can allocate.

  • supported-platforms: This attribute is deprecated.

  • vpc-max-elastic-ips: The maximum number of Elastic IP addresses that you can allocate.

  • vpc-max-security-groups-per-interface: The maximum number of security groups that you can assign to a network interface.

', 'DescribeAddressTransfers' => '

Describes an Elastic IP address transfer. For more information, see Transfer Elastic IP addresses in the Amazon Virtual Private Cloud User Guide.

When you transfer an Elastic IP address, there is a two-step handshake between the source and transfer Amazon Web Services accounts. When the source account starts the transfer, the transfer account has seven days to accept the Elastic IP address transfer. During those seven days, the source account can view the pending transfer by using this action. After seven days, the transfer expires and ownership of the Elastic IP address returns to the source account. Accepted transfers are visible to the source account for three days after the transfers have been accepted.

', 'DescribeAddresses' => '

Describes the specified Elastic IP addresses or all of your Elastic IP addresses.

', 'DescribeAddressesAttribute' => '

Describes the attributes of the specified Elastic IP addresses. For requirements, see Using reverse DNS for email applications.

', 'DescribeAggregateIdFormat' => '

Describes the longer ID format settings for all resource types in a specific Region. This request is useful for performing a quick audit to determine whether a specific Region is fully opted in for longer IDs (17-character IDs).

This request only returns information about resource types that support longer IDs.

The following resource types support longer IDs: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | instance | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | reservation | route-table | route-table-association | security-group | snapshot | subnet | subnet-cidr-block-association | volume | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway.

', 'DescribeAvailabilityZones' => '

Describes the Availability Zones, Local Zones, and Wavelength Zones that are available to you. If there is an event impacting a zone, you can use this request to view the state and any provided messages for that zone.

For more information about Availability Zones, Local Zones, and Wavelength Zones, see Regions and zones in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeAwsNetworkPerformanceMetricSubscriptions' => '

Describes the current Infrastructure Performance metric subscriptions.

', 'DescribeBundleTasks' => '

Describes the specified bundle tasks or all of your bundle tasks.

Completed bundle tasks are listed for only a limited time. If your bundle task is no longer in the list, you can still register an AMI from it. Just use RegisterImage with the Amazon S3 bucket name and image manifest name you provided to the bundle task.

', 'DescribeByoipCidrs' => '

Describes the IP address ranges that were specified in calls to ProvisionByoipCidr.

To describe the address pools that were created when you provisioned the address ranges, use DescribePublicIpv4Pools or DescribeIpv6Pools.

', 'DescribeCapacityBlockOfferings' => '

Describes Capacity Block offerings available for purchase. With Capacity Blocks, you purchase a specific instance type for a period of time.

', 'DescribeCapacityReservationFleets' => '

Describes one or more Capacity Reservation Fleets.

', 'DescribeCapacityReservations' => '

Describes one or more of your Capacity Reservations. The results describe only the Capacity Reservations in the Amazon Web Services Region that you\'re currently using.

', 'DescribeCarrierGateways' => '

Describes one or more of your carrier gateways.

', 'DescribeClassicLinkInstances' => '

This action is deprecated.

Describes one or more of your linked EC2-Classic instances. This request only returns information about EC2-Classic instances linked to a VPC through ClassicLink. You cannot use this request to return information about other instances.

', 'DescribeClientVpnAuthorizationRules' => '

Describes the authorization rules for a specified Client VPN endpoint.

', 'DescribeClientVpnConnections' => '

Describes active client connections and connections that have been terminated within the last 60 minutes for the specified Client VPN endpoint.

', 'DescribeClientVpnEndpoints' => '

Describes one or more Client VPN endpoints in the account.

', 'DescribeClientVpnRoutes' => '

Describes the routes for the specified Client VPN endpoint.

', 'DescribeClientVpnTargetNetworks' => '

Describes the target networks associated with the specified Client VPN endpoint.

', 'DescribeCoipPools' => '

Describes the specified customer-owned address pools or all of your customer-owned address pools.

', 'DescribeConversionTasks' => '

Describes the specified conversion tasks or all your conversion tasks. For more information, see the VM Import/Export User Guide.

For information about the import manifest referenced by this API action, see VM Import Manifest.

', 'DescribeCustomerGateways' => '

Describes one or more of your VPN customer gateways.

For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.

', 'DescribeDhcpOptions' => '

Describes one or more of your DHCP options sets.

For more information, see DHCP options sets in the Amazon VPC User Guide.

', 'DescribeEgressOnlyInternetGateways' => '

Describes one or more of your egress-only internet gateways.

', 'DescribeElasticGpus' => '

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

Describes the Elastic Graphics accelerator associated with your instances. For more information about Elastic Graphics, see Amazon Elastic Graphics.

', 'DescribeExportImageTasks' => '

Describes the specified export image tasks or all of your export image tasks.

', 'DescribeExportTasks' => '

Describes the specified export instance tasks or all of your export instance tasks.

', 'DescribeFastLaunchImages' => '

Describe details for Windows AMIs that are configured for Windows fast launch.

', 'DescribeFastSnapshotRestores' => '

Describes the state of fast snapshot restores for your snapshots.

', 'DescribeFleetHistory' => '

Describes the events for the specified EC2 Fleet during the specified time.

EC2 Fleet events are delayed by up to 30 seconds before they can be described. This ensures that you can query by the last evaluated time and not miss a recorded event. EC2 Fleet events are available for 48 hours.

For more information, see Monitor fleet events using Amazon EventBridge in the Amazon EC2 User Guide.

', 'DescribeFleetInstances' => '

Describes the running instances for the specified EC2 Fleet.

For more information, see Monitor your EC2 Fleet in the Amazon EC2 User Guide.

', 'DescribeFleets' => '

Describes the specified EC2 Fleets or all of your EC2 Fleets.

For more information, see Monitor your EC2 Fleet in the Amazon EC2 User Guide.

', 'DescribeFlowLogs' => '

Describes one or more flow logs.

To view the published flow log records, you must view the log destination. For example, the CloudWatch Logs log group, the Amazon S3 bucket, or the Kinesis Data Firehose delivery stream.

', 'DescribeFpgaImageAttribute' => '

Describes the specified attribute of the specified Amazon FPGA Image (AFI).

', 'DescribeFpgaImages' => '

Describes the Amazon FPGA Images (AFIs) available to you. These include public AFIs, private AFIs that you own, and AFIs owned by other Amazon Web Services accounts for which you have load permissions.

', 'DescribeHostReservationOfferings' => '

Describes the Dedicated Host reservations that are available to purchase.

The results describe all of the Dedicated Host reservation offerings, including offerings that might not match the instance family and Region of your Dedicated Hosts. When purchasing an offering, ensure that the instance family and Region of the offering matches that of the Dedicated Hosts with which it is to be associated. For more information about supported instance types, see Dedicated Hosts in the Amazon EC2 User Guide.

', 'DescribeHostReservations' => '

Describes reservations that are associated with Dedicated Hosts in your account.

', 'DescribeHosts' => '

Describes the specified Dedicated Hosts or all your Dedicated Hosts.

The results describe only the Dedicated Hosts in the Region you\'re currently using. All listed instances consume capacity on your Dedicated Host. Dedicated Hosts that have recently been released are listed with the state released.

', 'DescribeIamInstanceProfileAssociations' => '

Describes your IAM instance profile associations.

', 'DescribeIdFormat' => '

Describes the ID format settings for your resources on a per-Region basis, for example, to view which resource types are enabled for longer IDs. This request only returns information about resource types whose ID formats can be modified; it does not return information about other resource types.

The following resource types support longer IDs: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | instance | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | reservation | route-table | route-table-association | security-group | snapshot | subnet | subnet-cidr-block-association | volume | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway.

These settings apply to the IAM user who makes the request; they do not apply to the entire Amazon Web Services account. By default, an IAM user defaults to the same settings as the root user, unless they explicitly override the settings by running the ModifyIdFormat command. Resources created with longer IDs are visible to all IAM users, regardless of these settings and provided that they have permission to use the relevant Describe command for the resource type.

', 'DescribeIdentityIdFormat' => '

Describes the ID format settings for resources for the specified IAM user, IAM role, or root user. For example, you can view the resource types that are enabled for longer IDs. This request only returns information about resource types whose ID formats can be modified; it does not return information about other resource types. For more information, see Resource IDs in the Amazon Elastic Compute Cloud User Guide.

The following resource types support longer IDs: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | instance | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | reservation | route-table | route-table-association | security-group | snapshot | subnet | subnet-cidr-block-association | volume | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway.

These settings apply to the principal specified in the request. They do not apply to the principal that makes the request.

', 'DescribeImageAttribute' => '

Describes the specified attribute of the specified AMI. You can specify only one attribute at a time.

', 'DescribeImages' => '

Describes the specified images (AMIs, AKIs, and ARIs) available to you or all of the images available to you.

The images available to you include public images, private images that you own, and private images owned by other Amazon Web Services accounts for which you have explicit launch permissions.

Recently deregistered images appear in the returned results for a short interval and then return empty results. After all instances that reference a deregistered AMI are terminated, specifying the ID of the image will eventually return an error indicating that the AMI ID cannot be found.

', 'DescribeImportImageTasks' => '

Displays details about an import virtual machine or import snapshot tasks that are already created.

', 'DescribeImportSnapshotTasks' => '

Describes your import snapshot tasks.

', 'DescribeInstanceAttribute' => '

Describes the specified attribute of the specified instance. You can specify only one attribute at a time. Valid attribute values are: instanceType | kernel | ramdisk | userData | disableApiTermination | instanceInitiatedShutdownBehavior | rootDeviceName | blockDeviceMapping | productCodes | sourceDestCheck | groupSet | ebsOptimized | sriovNetSupport

', 'DescribeInstanceConnectEndpoints' => '

Describes the specified EC2 Instance Connect Endpoints or all EC2 Instance Connect Endpoints.

', 'DescribeInstanceCreditSpecifications' => '

Describes the credit option for CPU usage of the specified burstable performance instances. The credit options are standard and unlimited.

If you do not specify an instance ID, Amazon EC2 returns burstable performance instances with the unlimited credit option, as well as instances that were previously configured as T2, T3, and T3a with the unlimited credit option. For example, if you resize a T2 instance, while it is configured as unlimited, to an M4 instance, Amazon EC2 returns the M4 instance.

If you specify one or more instance IDs, Amazon EC2 returns the credit option (standard or unlimited) of those instances. If you specify an instance ID that is not valid, such as an instance that is not a burstable performance instance, an error is returned.

Recently terminated instances might appear in the returned results. This interval is usually less than one hour.

If an Availability Zone is experiencing a service disruption and you specify instance IDs in the affected zone, or do not specify any instance IDs at all, the call fails. If you specify only instance IDs in an unaffected zone, the call works normally.

For more information, see Burstable performance instances in the Amazon EC2 User Guide.

', 'DescribeInstanceEventNotificationAttributes' => '

Describes the tag keys that are registered to appear in scheduled event notifications for resources in the current Region.

', 'DescribeInstanceEventWindows' => '

Describes the specified event windows or all event windows.

If you specify event window IDs, the output includes information for only the specified event windows. If you specify filters, the output includes information for only those event windows that meet the filter criteria. If you do not specify event windows IDs or filters, the output includes information for all event windows, which can affect performance. We recommend that you use pagination to ensure that the operation returns quickly and successfully.

For more information, see Define event windows for scheduled events in the Amazon EC2 User Guide.

', 'DescribeInstanceStatus' => '

Describes the status of the specified instances or all of your instances. By default, only running instances are described, unless you specifically indicate to return the status of all instances.

Instance status includes the following components:

  • Status checks - Amazon EC2 performs status checks on running EC2 instances to identify hardware and software issues. For more information, see Status checks for your instances and Troubleshoot instances with failed status checks in the Amazon EC2 User Guide.

  • Scheduled events - Amazon EC2 can schedule events (such as reboot, stop, or terminate) for your instances related to hardware issues, software updates, or system maintenance. For more information, see Scheduled events for your instances in the Amazon EC2 User Guide.

  • Instance state - You can manage your instances from the moment you launch them through their termination. For more information, see Instance lifecycle in the Amazon EC2 User Guide.

', 'DescribeInstanceTopology' => '

Describes a tree-based hierarchy that represents the physical host placement of your EC2 instances within an Availability Zone or Local Zone. You can use this information to determine the relative proximity of your EC2 instances within the Amazon Web Services network to support your tightly coupled workloads.

Limitations

  • Supported zones

    • Availability Zone

    • Local Zone

  • Supported instance types

    • hpc6a.48xlarge | hpc6id.32xlarge | hpc7a.12xlarge | hpc7a.24xlarge | hpc7a.48xlarge | hpc7a.96xlarge | hpc7g.4xlarge | hpc7g.8xlarge | hpc7g.16xlarge

    • p3dn.24xlarge | p4d.24xlarge | p4de.24xlarge | p5.48xlarge

    • trn1.2xlarge | trn1.32xlarge | trn1n.32xlarge

For more information, see Amazon EC2 instance topology in the Amazon EC2 User Guide.

', 'DescribeInstanceTypeOfferings' => '

Returns a list of all instance types offered. The results can be filtered by location (Region or Availability Zone). If no location is specified, the instance types offered in the current Region are returned.

', 'DescribeInstanceTypes' => '

Describes the details of the instance types that are offered in a location. The results can be filtered by the attributes of the instance types.

', 'DescribeInstances' => '

Describes the specified instances or all instances.

If you specify instance IDs, the output includes information for only the specified instances. If you specify filters, the output includes information for only those instances that meet the filter criteria. If you do not specify instance IDs or filters, the output includes information for all instances, which can affect performance. We recommend that you use pagination to ensure that the operation returns quickly and successfully.

If you specify an instance ID that is not valid, an error is returned. If you specify an instance that you do not own, it is not included in the output.

Recently terminated instances might appear in the returned results. This interval is usually less than one hour.

If you describe instances in the rare case where an Availability Zone is experiencing a service disruption and you specify instance IDs that are in the affected zone, or do not specify any instance IDs at all, the call fails. If you describe instances and specify only instance IDs that are in an unaffected zone, the call works normally.

', 'DescribeInternetGateways' => '

Describes one or more of your internet gateways.

', 'DescribeIpamByoasn' => '

Describes your Autonomous System Numbers (ASNs), their provisioning statuses, and the BYOIP CIDRs with which they are associated. For more information, see Tutorial: Bring your ASN to IPAM in the Amazon VPC IPAM guide.

', 'DescribeIpamPools' => '

Get information about your IPAM pools.

', 'DescribeIpamResourceDiscoveries' => '

Describes IPAM resource discoveries. A resource discovery is an IPAM component that enables IPAM to manage and monitor resources that belong to the owning account.

', 'DescribeIpamResourceDiscoveryAssociations' => '

Describes resource discovery association with an Amazon VPC IPAM. An associated resource discovery is a resource discovery that has been associated with an IPAM..

', 'DescribeIpamScopes' => '

Get information about your IPAM scopes.

', 'DescribeIpams' => '

Get information about your IPAM pools.

For more information, see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'DescribeIpv6Pools' => '

Describes your IPv6 address pools.

', 'DescribeKeyPairs' => '

Describes the specified key pairs or all of your key pairs.

For more information about key pairs, see Amazon EC2 key pairs in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeLaunchTemplateVersions' => '

Describes one or more versions of a specified launch template. You can describe all versions, individual versions, or a range of versions. You can also describe all the latest versions or all the default versions of all the launch templates in your account.

', 'DescribeLaunchTemplates' => '

Describes one or more launch templates.

', 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations' => '

Describes the associations between virtual interface groups and local gateway route tables.

', 'DescribeLocalGatewayRouteTableVpcAssociations' => '

Describes the specified associations between VPCs and local gateway route tables.

', 'DescribeLocalGatewayRouteTables' => '

Describes one or more local gateway route tables. By default, all local gateway route tables are described. Alternatively, you can filter the results.

', 'DescribeLocalGatewayVirtualInterfaceGroups' => '

Describes the specified local gateway virtual interface groups.

', 'DescribeLocalGatewayVirtualInterfaces' => '

Describes the specified local gateway virtual interfaces.

', 'DescribeLocalGateways' => '

Describes one or more local gateways. By default, all local gateways are described. Alternatively, you can filter the results.

', 'DescribeLockedSnapshots' => '

Describes the lock status for a snapshot.

', 'DescribeManagedPrefixLists' => '

Describes your managed prefix lists and any Amazon Web Services-managed prefix lists.

To view the entries for your prefix list, use GetManagedPrefixListEntries.

', 'DescribeMovingAddresses' => '

This action is deprecated.

Describes your Elastic IP addresses that are being moved from or being restored to the EC2-Classic platform. This request does not return information about any other Elastic IP addresses in your account.

', 'DescribeNatGateways' => '

Describes one or more of your NAT gateways.

', 'DescribeNetworkAcls' => '

Describes one or more of your network ACLs.

For more information, see Network ACLs in the Amazon VPC User Guide.

', 'DescribeNetworkInsightsAccessScopeAnalyses' => '

Describes the specified Network Access Scope analyses.

', 'DescribeNetworkInsightsAccessScopes' => '

Describes the specified Network Access Scopes.

', 'DescribeNetworkInsightsAnalyses' => '

Describes one or more of your network insights analyses.

', 'DescribeNetworkInsightsPaths' => '

Describes one or more of your paths.

', 'DescribeNetworkInterfaceAttribute' => '

Describes a network interface attribute. You can specify only one attribute at a time.

', 'DescribeNetworkInterfacePermissions' => '

Describes the permissions for your network interfaces.

', 'DescribeNetworkInterfaces' => '

Describes one or more of your network interfaces.

If you have a large number of network interfaces, the operation fails unless you use pagination or one of the following filters: group-id, mac-address, private-dns-name, private-ip-address, private-dns-name, subnet-id, or vpc-id.

', 'DescribePlacementGroups' => '

Describes the specified placement groups or all of your placement groups. For more information, see Placement groups in the Amazon EC2 User Guide.

', 'DescribePrefixLists' => '

Describes available Amazon Web Services services in a prefix list format, which includes the prefix list name and prefix list ID of the service and the IP address range for the service.

We recommend that you use DescribeManagedPrefixLists instead.

', 'DescribePrincipalIdFormat' => '

Describes the ID format settings for the root user and all IAM roles and IAM users that have explicitly specified a longer ID (17-character ID) preference.

By default, all IAM roles and IAM users default to the same ID settings as the root user, unless they explicitly override the settings. This request is useful for identifying those IAM users and IAM roles that have overridden the default ID settings.

The following resource types support longer IDs: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | instance | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | reservation | route-table | route-table-association | security-group | snapshot | subnet | subnet-cidr-block-association | volume | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway.

', 'DescribePublicIpv4Pools' => '

Describes the specified IPv4 address pools.

', 'DescribeRegions' => '

Describes the Regions that are enabled for your account, or all Regions.

For a list of the Regions supported by Amazon EC2, see Amazon Elastic Compute Cloud endpoints and quotas.

For information about enabling and disabling Regions for your account, see Managing Amazon Web Services Regions in the Amazon Web Services General Reference.

', 'DescribeReplaceRootVolumeTasks' => '

Describes a root volume replacement task. For more information, see Replace a root volume in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeReservedInstances' => '

Describes one or more of the Reserved Instances that you purchased.

For more information about Reserved Instances, see Reserved Instances in the Amazon EC2 User Guide.

', 'DescribeReservedInstancesListings' => '

Describes your account\'s Reserved Instance listings in the Reserved Instance Marketplace.

The Reserved Instance Marketplace matches sellers who want to resell Reserved Instance capacity that they no longer need with buyers who want to purchase additional capacity. Reserved Instances bought and sold through the Reserved Instance Marketplace work like any other Reserved Instances.

As a seller, you choose to list some or all of your Reserved Instances, and you specify the upfront price to receive for them. Your Reserved Instances are then listed in the Reserved Instance Marketplace and are available for purchase.

As a buyer, you specify the configuration of the Reserved Instance to purchase, and the Marketplace matches what you\'re searching for with what\'s available. The Marketplace first sells the lowest priced Reserved Instances to you, and continues to sell available Reserved Instance listings to you until your demand is met. You are charged based on the total price of all of the listings that you purchase.

For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide.

', 'DescribeReservedInstancesModifications' => '

Describes the modifications made to your Reserved Instances. If no parameter is specified, information about all your Reserved Instances modification requests is returned. If a modification ID is specified, only information about the specific modification is returned.

For more information, see Modifying Reserved Instances in the Amazon EC2 User Guide.

', 'DescribeReservedInstancesOfferings' => '

Describes Reserved Instance offerings that are available for purchase. With Reserved Instances, you purchase the right to launch instances for a period of time. During that time period, you do not receive insufficient capacity errors, and you pay a lower usage rate than the rate charged for On-Demand instances for the actual time used.

If you have listed your own Reserved Instances for sale in the Reserved Instance Marketplace, they will be excluded from these results. This is to ensure that you do not purchase your own Reserved Instances.

For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide.

', 'DescribeRouteTables' => '

Describes one or more of your route tables.

Each subnet in your VPC must be associated with a route table. If a subnet is not explicitly associated with any route table, it is implicitly associated with the main route table. This command does not return the subnet ID for implicit associations.

For more information, see Route tables in the Amazon VPC User Guide.

', 'DescribeScheduledInstanceAvailability' => '

Finds available schedules that meet the specified criteria.

You can search for an available schedule no more than 3 months in advance. You must meet the minimum required duration of 1,200 hours per year. For example, the minimum daily schedule is 4 hours, the minimum weekly schedule is 24 hours, and the minimum monthly schedule is 100 hours.

After you find a schedule that meets your needs, call PurchaseScheduledInstances to purchase Scheduled Instances with that schedule.

', 'DescribeScheduledInstances' => '

Describes the specified Scheduled Instances or all your Scheduled Instances.

', 'DescribeSecurityGroupReferences' => '

Describes the VPCs on the other side of a VPC peering connection or the VPCs attached to a transit gateway that are referencing the security groups you\'ve specified in this request.

', 'DescribeSecurityGroupRules' => '

Describes one or more of your security group rules.

', 'DescribeSecurityGroups' => '

Describes the specified security groups or all of your security groups.

', 'DescribeSnapshotAttribute' => '

Describes the specified attribute of the specified snapshot. You can specify only one attribute at a time.

For more information about EBS snapshots, see Amazon EBS snapshots in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeSnapshotTierStatus' => '

Describes the storage tier status of one or more Amazon EBS snapshots.

', 'DescribeSnapshots' => '

Describes the specified EBS snapshots available to you or all of the EBS snapshots available to you.

The snapshots available to you include public snapshots, private snapshots that you own, and private snapshots owned by other Amazon Web Services accounts for which you have explicit create volume permissions.

The create volume permissions fall into the following categories:

  • public: The owner of the snapshot granted create volume permissions for the snapshot to the all group. All Amazon Web Services accounts have create volume permissions for these snapshots.

  • explicit: The owner of the snapshot granted create volume permissions to a specific Amazon Web Services account.

  • implicit: An Amazon Web Services account has implicit create volume permissions for all snapshots it owns.

The list of snapshots returned can be filtered by specifying snapshot IDs, snapshot owners, or Amazon Web Services accounts with create volume permissions. If no options are specified, Amazon EC2 returns all snapshots for which you have create volume permissions.

If you specify one or more snapshot IDs, only snapshots that have the specified IDs are returned. If you specify an invalid snapshot ID, an error is returned. If you specify a snapshot ID for which you do not have access, it is not included in the returned results.

If you specify one or more snapshot owners using the OwnerIds option, only snapshots from the specified owners and for which you have access are returned. The results can include the Amazon Web Services account IDs of the specified owners, amazon for snapshots owned by Amazon, or self for snapshots that you own.

If you specify a list of restorable users, only snapshots with create snapshot permissions for those users are returned. You can specify Amazon Web Services account IDs (if you own the snapshots), self for snapshots for which you own or have explicit permissions, or all for public snapshots.

If you are describing a long list of snapshots, we recommend that you paginate the output to make the list more manageable. For more information, see Pagination.

To get the state of fast snapshot restores for a snapshot, use DescribeFastSnapshotRestores.

For more information about EBS snapshots, see Amazon EBS snapshots in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeSpotDatafeedSubscription' => '

Describes the data feed for Spot Instances. For more information, see Spot Instance data feed in the Amazon EC2 User Guide for Linux Instances.

', 'DescribeSpotFleetInstances' => '

Describes the running instances for the specified Spot Fleet.

', 'DescribeSpotFleetRequestHistory' => '

Describes the events for the specified Spot Fleet request during the specified time.

Spot Fleet events are delayed by up to 30 seconds before they can be described. This ensures that you can query by the last evaluated time and not miss a recorded event. Spot Fleet events are available for 48 hours.

For more information, see Monitor fleet events using Amazon EventBridge in the Amazon EC2 User Guide.

', 'DescribeSpotFleetRequests' => '

Describes your Spot Fleet requests.

Spot Fleet requests are deleted 48 hours after they are canceled and their instances are terminated.

', 'DescribeSpotInstanceRequests' => '

Describes the specified Spot Instance requests.

You can use DescribeSpotInstanceRequests to find a running Spot Instance by examining the response. If the status of the Spot Instance is fulfilled, the instance ID appears in the response and contains the identifier of the instance. Alternatively, you can use DescribeInstances with a filter to look for instances where the instance lifecycle is spot.

We recommend that you set MaxResults to a value between 5 and 1000 to limit the number of items returned. This paginates the output, which makes the list more manageable and returns the items faster. If the list of items exceeds your MaxResults value, then that number of items is returned along with a NextToken value that can be passed to a subsequent DescribeSpotInstanceRequests request to retrieve the remaining items.

Spot Instance requests are deleted four hours after they are canceled and their instances are terminated.

', 'DescribeSpotPriceHistory' => '

Describes the Spot price history. For more information, see Spot Instance pricing history in the Amazon EC2 User Guide for Linux Instances.

When you specify a start and end time, the operation returns the prices of the instance types within that time range. It also returns the last price change before the start time, which is the effective price as of the start time.

', 'DescribeStaleSecurityGroups' => '

Describes the stale security group rules for security groups in a specified VPC. Rules are stale when they reference a deleted security group in the same VPC, peered VPC, or in separate VPCs attached to a transit gateway (with security group referencing support enabled). Rules can also be stale if they reference a security group in a peer VPC for which the VPC peering connection has been deleted or if they reference a security group in a VPC that has been detached from a transit gateway.

', 'DescribeStoreImageTasks' => '

Describes the progress of the AMI store tasks. You can describe the store tasks for specified AMIs. If you don\'t specify the AMIs, you get a paginated list of store tasks from the last 31 days.

For each AMI task, the response indicates if the task is InProgress, Completed, or Failed. For tasks InProgress, the response shows the estimated progress as a percentage.

Tasks are listed in reverse chronological order. Currently, only tasks from the past 31 days can be viewed.

To use this API, you must have the required permissions. For more information, see Permissions for storing and restoring AMIs using Amazon S3 in the Amazon EC2 User Guide.

For more information, see Store and restore an AMI using Amazon S3 in the Amazon EC2 User Guide.

', 'DescribeSubnets' => '

Describes one or more of your subnets.

For more information, see Subnets in the Amazon VPC User Guide.

', 'DescribeTags' => '

Describes the specified tags for your EC2 resources.

For more information about tags, see Tag your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeTrafficMirrorFilters' => '

Describes one or more Traffic Mirror filters.

', 'DescribeTrafficMirrorSessions' => '

Describes one or more Traffic Mirror sessions. By default, all Traffic Mirror sessions are described. Alternatively, you can filter the results.

', 'DescribeTrafficMirrorTargets' => '

Information about one or more Traffic Mirror targets.

', 'DescribeTransitGatewayAttachments' => '

Describes one or more attachments between resources and transit gateways. By default, all attachments are described. Alternatively, you can filter the results by attachment ID, attachment state, resource ID, or resource owner.

', 'DescribeTransitGatewayConnectPeers' => '

Describes one or more Connect peers.

', 'DescribeTransitGatewayConnects' => '

Describes one or more Connect attachments.

', 'DescribeTransitGatewayMulticastDomains' => '

Describes one or more transit gateway multicast domains.

', 'DescribeTransitGatewayPeeringAttachments' => '

Describes your transit gateway peering attachments.

', 'DescribeTransitGatewayPolicyTables' => '

Describes one or more transit gateway route policy tables.

', 'DescribeTransitGatewayRouteTableAnnouncements' => '

Describes one or more transit gateway route table advertisements.

', 'DescribeTransitGatewayRouteTables' => '

Describes one or more transit gateway route tables. By default, all transit gateway route tables are described. Alternatively, you can filter the results.

', 'DescribeTransitGatewayVpcAttachments' => '

Describes one or more VPC attachments. By default, all VPC attachments are described. Alternatively, you can filter the results.

', 'DescribeTransitGateways' => '

Describes one or more transit gateways. By default, all transit gateways are described. Alternatively, you can filter the results.

', 'DescribeTrunkInterfaceAssociations' => '

Describes one or more network interface trunk associations.

', 'DescribeVerifiedAccessEndpoints' => '

Describes the specified Amazon Web Services Verified Access endpoints.

', 'DescribeVerifiedAccessGroups' => '

Describes the specified Verified Access groups.

', 'DescribeVerifiedAccessInstanceLoggingConfigurations' => '

Describes the specified Amazon Web Services Verified Access instances.

', 'DescribeVerifiedAccessInstances' => '

Describes the specified Amazon Web Services Verified Access instances.

', 'DescribeVerifiedAccessTrustProviders' => '

Describes the specified Amazon Web Services Verified Access trust providers.

', 'DescribeVolumeAttribute' => '

Describes the specified attribute of the specified volume. You can specify only one attribute at a time.

For more information about EBS volumes, see Amazon EBS volumes in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeVolumeStatus' => '

Describes the status of the specified volumes. Volume status provides the result of the checks performed on your volumes to determine events that can impair the performance of your volumes. The performance of a volume can be affected if an issue occurs on the volume\'s underlying host. If the volume\'s underlying host experiences a power outage or system issue, after the system is restored, there could be data inconsistencies on the volume. Volume events notify you if this occurs. Volume actions notify you if any action needs to be taken in response to the event.

The DescribeVolumeStatus operation provides the following information about the specified volumes:

Status: Reflects the current status of the volume. The possible values are ok, impaired , warning, or insufficient-data. If all checks pass, the overall status of the volume is ok. If the check fails, the overall status is impaired. If the status is insufficient-data, then the checks might still be taking place on your volume at the time. We recommend that you retry the request. For more information about volume status, see Monitor the status of your volumes in the Amazon Elastic Compute Cloud User Guide.

Events: Reflect the cause of a volume status and might require you to take action. For example, if your volume returns an impaired status, then the volume event might be potential-data-inconsistency. This means that your volume has been affected by an issue with the underlying host, has all I/O operations disabled, and might have inconsistent data.

Actions: Reflect the actions you might have to take in response to an event. For example, if the status of the volume is impaired and the volume event shows potential-data-inconsistency, then the action shows enable-volume-io. This means that you may want to enable the I/O operations for the volume by calling the EnableVolumeIO action and then check the volume for data consistency.

Volume status is based on the volume status checks, and does not reflect the volume state. Therefore, volume status does not indicate volumes in the error state (for example, when a volume is incapable of accepting I/O.)

', 'DescribeVolumes' => '

Describes the specified EBS volumes or all of your EBS volumes.

If you are describing a long list of volumes, we recommend that you paginate the output to make the list more manageable. For more information, see Pagination.

For more information about EBS volumes, see Amazon EBS volumes in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeVolumesModifications' => '

Describes the most recent volume modification request for the specified EBS volumes.

If a volume has never been modified, some information in the output will be null. If a volume has been modified more than once, the output includes only the most recent modification request.

You can also use CloudWatch Events to check the status of a modification to an EBS volume. For information about CloudWatch Events, see the Amazon CloudWatch Events User Guide. For more information, see Monitor the progress of volume modifications in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeVpcAttribute' => '

Describes the specified attribute of the specified VPC. You can specify only one attribute at a time.

', 'DescribeVpcClassicLink' => '

This action is deprecated.

Describes the ClassicLink status of the specified VPCs.

', 'DescribeVpcClassicLinkDnsSupport' => '

This action is deprecated.

Describes the ClassicLink DNS support status of one or more VPCs. If enabled, the DNS hostname of a linked EC2-Classic instance resolves to its private IP address when addressed from an instance in the VPC to which it\'s linked. Similarly, the DNS hostname of an instance in a VPC resolves to its private IP address when addressed from a linked EC2-Classic instance.

', 'DescribeVpcEndpointConnectionNotifications' => '

Describes the connection notifications for VPC endpoints and VPC endpoint services.

', 'DescribeVpcEndpointConnections' => '

Describes the VPC endpoint connections to your VPC endpoint services, including any endpoints that are pending your acceptance.

', 'DescribeVpcEndpointServiceConfigurations' => '

Describes the VPC endpoint service configurations in your account (your services).

', 'DescribeVpcEndpointServicePermissions' => '

Describes the principals (service consumers) that are permitted to discover your VPC endpoint service.

', 'DescribeVpcEndpointServices' => '

Describes available services to which you can create a VPC endpoint.

When the service provider and the consumer have different accounts in multiple Availability Zones, and the consumer views the VPC endpoint service information, the response only includes the common Availability Zones. For example, when the service provider account uses us-east-1a and us-east-1c and the consumer uses us-east-1a and us-east-1b, the response includes the VPC endpoint services in the common Availability Zone, us-east-1a.

', 'DescribeVpcEndpoints' => '

Describes your VPC endpoints.

', 'DescribeVpcPeeringConnections' => '

Describes one or more of your VPC peering connections.

', 'DescribeVpcs' => '

Describes one or more of your VPCs.

', 'DescribeVpnConnections' => '

Describes one or more of your VPN connections.

For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.

', 'DescribeVpnGateways' => '

Describes one or more of your virtual private gateways.

For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.

', 'DetachClassicLinkVpc' => '

This action is deprecated.

Unlinks (detaches) a linked EC2-Classic instance from a VPC. After the instance has been unlinked, the VPC security groups are no longer associated with it. An instance is automatically unlinked from a VPC when it\'s stopped.

', 'DetachInternetGateway' => '

Detaches an internet gateway from a VPC, disabling connectivity between the internet and the VPC. The VPC must not contain any running instances with Elastic IP addresses or public IPv4 addresses.

', 'DetachNetworkInterface' => '

Detaches a network interface from an instance.

', 'DetachVerifiedAccessTrustProvider' => '

Detaches the specified Amazon Web Services Verified Access trust provider from the specified Amazon Web Services Verified Access instance.

', 'DetachVolume' => '

Detaches an EBS volume from an instance. Make sure to unmount any file systems on the device within your operating system before detaching the volume. Failure to do so can result in the volume becoming stuck in the busy state while detaching. If this happens, detachment can be delayed indefinitely until you unmount the volume, force detachment, reboot the instance, or all three. If an EBS volume is the root device of an instance, it can\'t be detached while the instance is running. To detach the root volume, stop the instance first.

When a volume with an Amazon Web Services Marketplace product code is detached from an instance, the product code is no longer associated with the instance.

You can\'t detach or force detach volumes that are attached to Amazon ECS or Fargate tasks. Attempting to do this results in the UnsupportedOperationException exception with the Unable to detach volume attached to ECS tasks error message.

For more information, see Detach an Amazon EBS volume in the Amazon Elastic Compute Cloud User Guide.

', 'DetachVpnGateway' => '

Detaches a virtual private gateway from a VPC. You do this if you\'re planning to turn off the VPC and not use it anymore. You can confirm a virtual private gateway has been completely detached from a VPC by describing the virtual private gateway (any attachments to the virtual private gateway are also described).

You must wait for the attachment\'s state to switch to detached before you can delete the VPC or attach a different VPC to the virtual private gateway.

', 'DisableAddressTransfer' => '

Disables Elastic IP address transfer. For more information, see Transfer Elastic IP addresses in the Amazon Virtual Private Cloud User Guide.

', 'DisableAwsNetworkPerformanceMetricSubscription' => '

Disables Infrastructure Performance metric subscriptions.

', 'DisableEbsEncryptionByDefault' => '

Disables EBS encryption by default for your account in the current Region.

After you disable encryption by default, you can still create encrypted volumes by enabling encryption when you create each volume.

Disabling encryption by default does not change the encryption status of your existing volumes.

For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

', 'DisableFastLaunch' => '

Discontinue Windows fast launch for a Windows AMI, and clean up existing pre-provisioned snapshots. After you disable Windows fast launch, the AMI uses the standard launch process for each new instance. Amazon EC2 must remove all pre-provisioned snapshots before you can enable Windows fast launch again.

You can only change these settings for Windows AMIs that you own or that have been shared with you.

', 'DisableFastSnapshotRestores' => '

Disables fast snapshot restores for the specified snapshots in the specified Availability Zones.

', 'DisableImage' => '

Sets the AMI state to disabled and removes all launch permissions from the AMI. A disabled AMI can\'t be used for instance launches.

A disabled AMI can\'t be shared. If an AMI was public or previously shared, it is made private. If an AMI was shared with an Amazon Web Services account, organization, or Organizational Unit, they lose access to the disabled AMI.

A disabled AMI does not appear in DescribeImages API calls by default.

Only the AMI owner can disable an AMI.

You can re-enable a disabled AMI using EnableImage.

For more information, see Disable an AMI in the Amazon EC2 User Guide.

', 'DisableImageBlockPublicAccess' => '

Disables block public access for AMIs at the account level in the specified Amazon Web Services Region. This removes the block public access restriction from your account. With the restriction removed, you can publicly share your AMIs in the specified Amazon Web Services Region.

The API can take up to 10 minutes to configure this setting. During this time, if you run GetImageBlockPublicAccessState, the response will be block-new-sharing. When the API has completed the configuration, the response will be unblocked.

For more information, see Block public access to your AMIs in the Amazon EC2 User Guide.

', 'DisableImageDeprecation' => '

Cancels the deprecation of the specified AMI.

For more information, see Deprecate an AMI in the Amazon EC2 User Guide.

', 'DisableIpamOrganizationAdminAccount' => '

Disable the IPAM account. For more information, see Enable integration with Organizations in the Amazon VPC IPAM User Guide.

', 'DisableSerialConsoleAccess' => '

Disables access to the EC2 serial console of all instances for your account. By default, access to the EC2 serial console is disabled for your account. For more information, see Manage account access to the EC2 serial console in the Amazon EC2 User Guide.

', 'DisableSnapshotBlockPublicAccess' => '

Disables the block public access for snapshots setting at the account level for the specified Amazon Web Services Region. After you disable block public access for snapshots in a Region, users can publicly share snapshots in that Region.

If block public access is enabled in block-all-sharing mode, and you disable block public access, all snapshots that were previously publicly shared are no longer treated as private and they become publicly accessible again.

For more information, see Block public access for snapshots in the Amazon Elastic Compute Cloud User Guide .

', 'DisableTransitGatewayRouteTablePropagation' => '

Disables the specified resource attachment from propagating routes to the specified propagation route table.

', 'DisableVgwRoutePropagation' => '

Disables a virtual private gateway (VGW) from propagating routes to a specified route table of a VPC.

', 'DisableVpcClassicLink' => '

This action is deprecated.

Disables ClassicLink for a VPC. You cannot disable ClassicLink for a VPC that has EC2-Classic instances linked to it.

', 'DisableVpcClassicLinkDnsSupport' => '

This action is deprecated.

Disables ClassicLink DNS support for a VPC. If disabled, DNS hostnames resolve to public IP addresses when addressed between a linked EC2-Classic instance and instances in the VPC to which it\'s linked.

You must specify a VPC ID in the request.

', 'DisassociateAddress' => '

Disassociates an Elastic IP address from the instance or network interface it\'s associated with.

This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn\'t return an error.

', 'DisassociateClientVpnTargetNetwork' => '

Disassociates a target network from the specified Client VPN endpoint. When you disassociate the last target network from a Client VPN, the following happens:

  • The route that was automatically added for the VPC is deleted

  • All active client connections are terminated

  • New client connections are disallowed

  • The Client VPN endpoint\'s status changes to pending-associate

', 'DisassociateEnclaveCertificateIamRole' => '

Disassociates an IAM role from an Certificate Manager (ACM) certificate. Disassociating an IAM role from an ACM certificate removes the Amazon S3 object that contains the certificate, certificate chain, and encrypted private key from the Amazon S3 bucket. It also revokes the IAM role\'s permission to use the KMS key used to encrypt the private key. This effectively revokes the role\'s permission to use the certificate.

', 'DisassociateIamInstanceProfile' => '

Disassociates an IAM instance profile from a running or stopped instance.

Use DescribeIamInstanceProfileAssociations to get the association ID.

', 'DisassociateInstanceEventWindow' => '

Disassociates one or more targets from an event window.

For more information, see Define event windows for scheduled events in the Amazon EC2 User Guide.

', 'DisassociateIpamByoasn' => '

Remove the association between your Autonomous System Number (ASN) and your BYOIP CIDR. You may want to use this action to disassociate an ASN from a CIDR or if you want to swap ASNs. For more information, see Tutorial: Bring your ASN to IPAM in the Amazon VPC IPAM guide.

', 'DisassociateIpamResourceDiscovery' => '

Disassociates a resource discovery from an Amazon VPC IPAM. A resource discovery is an IPAM component that enables IPAM to manage and monitor resources that belong to the owning account.

', 'DisassociateNatGatewayAddress' => '

Disassociates secondary Elastic IP addresses (EIPs) from a public NAT gateway. You cannot disassociate your primary EIP. For more information, see Edit secondary IP address associations in the Amazon VPC User Guide.

While disassociating is in progress, you cannot associate/disassociate additional EIPs while the connections are being drained. You are, however, allowed to delete the NAT gateway.

An EIP is released only at the end of MaxDrainDurationSeconds. It stays associated and supports the existing connections but does not support any new connections (new connections are distributed across the remaining associated EIPs). As the existing connections drain out, the EIPs (and the corresponding private IP addresses mapped to them) are released.

', 'DisassociateRouteTable' => '

Disassociates a subnet or gateway from a route table.

After you perform this action, the subnet no longer uses the routes in the route table. Instead, it uses the routes in the VPC\'s main route table. For more information about route tables, see Route tables in the Amazon VPC User Guide.

', 'DisassociateSubnetCidrBlock' => '

Disassociates a CIDR block from a subnet. Currently, you can disassociate an IPv6 CIDR block only. You must detach or delete all gateways and resources that are associated with the CIDR block before you can disassociate it.

', 'DisassociateTransitGatewayMulticastDomain' => '

Disassociates the specified subnets from the transit gateway multicast domain.

', 'DisassociateTransitGatewayPolicyTable' => '

Removes the association between an an attachment and a policy table.

', 'DisassociateTransitGatewayRouteTable' => '

Disassociates a resource attachment from a transit gateway route table.

', 'DisassociateTrunkInterface' => '

Removes an association between a branch network interface with a trunk network interface.

', 'DisassociateVpcCidrBlock' => '

Disassociates a CIDR block from a VPC. To disassociate the CIDR block, you must specify its association ID. You can get the association ID by using DescribeVpcs. You must detach or delete all gateways and resources that are associated with the CIDR block before you can disassociate it.

You cannot disassociate the CIDR block with which you originally created the VPC (the primary CIDR block).

', 'EnableAddressTransfer' => '

Enables Elastic IP address transfer. For more information, see Transfer Elastic IP addresses in the Amazon Virtual Private Cloud User Guide.

', 'EnableAwsNetworkPerformanceMetricSubscription' => '

Enables Infrastructure Performance subscriptions.

', 'EnableEbsEncryptionByDefault' => '

Enables EBS encryption by default for your account in the current Region.

After you enable encryption by default, the EBS volumes that you create are always encrypted, either using the default KMS key or the KMS key that you specified when you created each volume. For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

You can specify the default KMS key for encryption by default using ModifyEbsDefaultKmsKeyId or ResetEbsDefaultKmsKeyId.

Enabling encryption by default has no effect on the encryption status of your existing volumes.

After you enable encryption by default, you can no longer launch instances using instance types that do not support encryption. For more information, see Supported instance types.

', 'EnableFastLaunch' => '

When you enable Windows fast launch for a Windows AMI, images are pre-provisioned, using snapshots to launch instances up to 65% faster. To create the optimized Windows image, Amazon EC2 launches an instance and runs through Sysprep steps, rebooting as required. Then it creates a set of reserved snapshots that are used for subsequent launches. The reserved snapshots are automatically replenished as they are used, depending on your settings for launch frequency.

You can only change these settings for Windows AMIs that you own or that have been shared with you.

', 'EnableFastSnapshotRestores' => '

Enables fast snapshot restores for the specified snapshots in the specified Availability Zones.

You get the full benefit of fast snapshot restores after they enter the enabled state. To get the current state of fast snapshot restores, use DescribeFastSnapshotRestores. To disable fast snapshot restores, use DisableFastSnapshotRestores.

For more information, see Amazon EBS fast snapshot restore in the Amazon Elastic Compute Cloud User Guide.

', 'EnableImage' => '

Re-enables a disabled AMI. The re-enabled AMI is marked as available and can be used for instance launches, appears in describe operations, and can be shared. Amazon Web Services accounts, organizations, and Organizational Units that lost access to the AMI when it was disabled do not regain access automatically. Once the AMI is available, it can be shared with them again.

Only the AMI owner can re-enable a disabled AMI.

For more information, see Disable an AMI in the Amazon EC2 User Guide.

', 'EnableImageBlockPublicAccess' => '

Enables block public access for AMIs at the account level in the specified Amazon Web Services Region. This prevents the public sharing of your AMIs. However, if you already have public AMIs, they will remain publicly available.

The API can take up to 10 minutes to configure this setting. During this time, if you run GetImageBlockPublicAccessState, the response will be unblocked. When the API has completed the configuration, the response will be block-new-sharing.

For more information, see Block public access to your AMIs in the Amazon EC2 User Guide.

', 'EnableImageDeprecation' => '

Enables deprecation of the specified AMI at the specified date and time.

For more information, see Deprecate an AMI in the Amazon EC2 User Guide.

', 'EnableIpamOrganizationAdminAccount' => '

Enable an Organizations member account as the IPAM admin account. You cannot select the Organizations management account as the IPAM admin account. For more information, see Enable integration with Organizations in the Amazon VPC IPAM User Guide.

', 'EnableReachabilityAnalyzerOrganizationSharing' => '

Establishes a trust relationship between Reachability Analyzer and Organizations. This operation must be performed by the management account for the organization.

After you establish a trust relationship, a user in the management account or a delegated administrator account can run a cross-account analysis using resources from the member accounts.

', 'EnableSerialConsoleAccess' => '

Enables access to the EC2 serial console of all instances for your account. By default, access to the EC2 serial console is disabled for your account. For more information, see Manage account access to the EC2 serial console in the Amazon EC2 User Guide.

', 'EnableSnapshotBlockPublicAccess' => '

Enables or modifies the block public access for snapshots setting at the account level for the specified Amazon Web Services Region. After you enable block public access for snapshots in a Region, users can no longer request public sharing for snapshots in that Region. Snapshots that are already publicly shared are either treated as private or they remain publicly shared, depending on the State that you specify.

If block public access is enabled in block-all-sharing mode, and you change the mode to block-new-sharing, all snapshots that were previously publicly shared are no longer treated as private and they become publicly accessible again.

For more information, see Block public access for snapshots in the Amazon Elastic Compute Cloud User Guide.

', 'EnableTransitGatewayRouteTablePropagation' => '

Enables the specified attachment to propagate routes to the specified propagation route table.

', 'EnableVgwRoutePropagation' => '

Enables a virtual private gateway (VGW) to propagate routes to the specified route table of a VPC.

', 'EnableVolumeIO' => '

Enables I/O operations for a volume that had I/O operations disabled because the data on the volume was potentially inconsistent.

', 'EnableVpcClassicLink' => '

This action is deprecated.

Enables a VPC for ClassicLink. You can then link EC2-Classic instances to your ClassicLink-enabled VPC to allow communication over private IP addresses. You cannot enable your VPC for ClassicLink if any of your VPC route tables have existing routes for address ranges within the 10.0.0.0/8 IP address range, excluding local routes for VPCs in the 10.0.0.0/16 and 10.1.0.0/16 IP address ranges.

', 'EnableVpcClassicLinkDnsSupport' => '

This action is deprecated.

Enables a VPC to support DNS hostname resolution for ClassicLink. If enabled, the DNS hostname of a linked EC2-Classic instance resolves to its private IP address when addressed from an instance in the VPC to which it\'s linked. Similarly, the DNS hostname of an instance in a VPC resolves to its private IP address when addressed from a linked EC2-Classic instance.

You must specify a VPC ID in the request.

', 'ExportClientVpnClientCertificateRevocationList' => '

Downloads the client certificate revocation list for the specified Client VPN endpoint.

', 'ExportClientVpnClientConfiguration' => '

Downloads the contents of the Client VPN endpoint configuration file for the specified Client VPN endpoint. The Client VPN endpoint configuration file includes the Client VPN endpoint and certificate information clients need to establish a connection with the Client VPN endpoint.

', 'ExportImage' => '

Exports an Amazon Machine Image (AMI) to a VM file. For more information, see Exporting a VM directly from an Amazon Machine Image (AMI) in the VM Import/Export User Guide.

', 'ExportTransitGatewayRoutes' => '

Exports routes from the specified transit gateway route table to the specified S3 bucket. By default, all routes are exported. Alternatively, you can filter by CIDR range.

The routes are saved to the specified bucket in a JSON file. For more information, see Export Route Tables to Amazon S3 in Transit Gateways.

', 'GetAssociatedEnclaveCertificateIamRoles' => '

Returns the IAM roles that are associated with the specified ACM (ACM) certificate. It also returns the name of the Amazon S3 bucket and the Amazon S3 object key where the certificate, certificate chain, and encrypted private key bundle are stored, and the ARN of the KMS key that\'s used to encrypt the private key.

', 'GetAssociatedIpv6PoolCidrs' => '

Gets information about the IPv6 CIDR block associations for a specified IPv6 address pool.

', 'GetAwsNetworkPerformanceData' => '

Gets network performance data.

', 'GetCapacityReservationUsage' => '

Gets usage information about a Capacity Reservation. If the Capacity Reservation is shared, it shows usage information for the Capacity Reservation owner and each Amazon Web Services account that is currently using the shared capacity. If the Capacity Reservation is not shared, it shows only the Capacity Reservation owner\'s usage.

', 'GetCoipPoolUsage' => '

Describes the allocations from the specified customer-owned address pool.

', 'GetConsoleOutput' => '

Gets the console output for the specified instance. For Linux instances, the instance console output displays the exact console output that would normally be displayed on a physical monitor attached to a computer. For Windows instances, the instance console output includes the last three system event log errors.

By default, the console output returns buffered information that was posted shortly after an instance transition state (start, stop, reboot, or terminate). This information is available for at least one hour after the most recent post. Only the most recent 64 KB of console output is available.

You can optionally retrieve the latest serial console output at any time during the instance lifecycle. This option is supported on instance types that use the Nitro hypervisor.

For more information, see Instance console output in the Amazon EC2 User Guide.

', 'GetConsoleScreenshot' => '

Retrieve a JPG-format screenshot of a running instance to help with troubleshooting.

The returned content is Base64-encoded.

', 'GetDefaultCreditSpecification' => '

Describes the default credit option for CPU usage of a burstable performance instance family.

For more information, see Burstable performance instances in the Amazon EC2 User Guide.

', 'GetEbsDefaultKmsKeyId' => '

Describes the default KMS key for EBS encryption by default for your account in this Region. You can change the default KMS key for encryption by default using ModifyEbsDefaultKmsKeyId or ResetEbsDefaultKmsKeyId.

For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

', 'GetEbsEncryptionByDefault' => '

Describes whether EBS encryption by default is enabled for your account in the current Region.

For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

', 'GetFlowLogsIntegrationTemplate' => '

Generates a CloudFormation template that streamlines and automates the integration of VPC flow logs with Amazon Athena. This make it easier for you to query and gain insights from VPC flow logs data. Based on the information that you provide, we configure resources in the template to do the following:

  • Create a table in Athena that maps fields to a custom log format

  • Create a Lambda function that updates the table with new partitions on a daily, weekly, or monthly basis

  • Create a table partitioned between two timestamps in the past

  • Create a set of named queries in Athena that you can use to get started quickly

GetFlowLogsIntegrationTemplate does not support integration between Amazon Web Services Transit Gateway Flow Logs and Amazon Athena.

', 'GetGroupsForCapacityReservation' => '

Lists the resource groups to which a Capacity Reservation has been added.

', 'GetHostReservationPurchasePreview' => '

Preview a reservation purchase with configurations that match those of your Dedicated Host. You must have active Dedicated Hosts in your account before you purchase a reservation.

This is a preview of the PurchaseHostReservation action and does not result in the offering being purchased.

', 'GetImageBlockPublicAccessState' => '

Gets the current state of block public access for AMIs at the account level in the specified Amazon Web Services Region.

For more information, see Block public access to your AMIs in the Amazon EC2 User Guide.

', 'GetInstanceTypesFromInstanceRequirements' => '

Returns a list of instance types with the specified instance attributes. You can use the response to preview the instance types without launching instances. Note that the response does not consider capacity.

When you specify multiple parameters, you get instance types that satisfy all of the specified parameters. If you specify multiple values for a parameter, you get instance types that satisfy any of the specified values.

For more information, see Preview instance types with specified attributes, Attribute-based instance type selection for EC2 Fleet, Attribute-based instance type selection for Spot Fleet, and Spot placement score in the Amazon EC2 User Guide, and Creating an Auto Scaling group using attribute-based instance type selection in the Amazon EC2 Auto Scaling User Guide.

', 'GetInstanceUefiData' => '

A binary representation of the UEFI variable store. Only non-volatile variables are stored. This is a base64 encoded and zlib compressed binary value that must be properly encoded.

When you use register-image to create an AMI, you can create an exact copy of your variable store by passing the UEFI data in the UefiData parameter. You can modify the UEFI data by using the python-uefivars tool on GitHub. You can use the tool to convert the UEFI data into a human-readable format (JSON), which you can inspect and modify, and then convert back into the binary format to use with register-image.

For more information, see UEFI Secure Boot in the Amazon EC2 User Guide.

', 'GetIpamAddressHistory' => '

Retrieve historical information about a CIDR within an IPAM scope. For more information, see View the history of IP addresses in the Amazon VPC IPAM User Guide.

', 'GetIpamDiscoveredAccounts' => '

Gets IPAM discovered accounts. A discovered account is an Amazon Web Services account that is monitored under a resource discovery. If you have integrated IPAM with Amazon Web Services Organizations, all accounts in the organization are discovered accounts. Only the IPAM account can get all discovered accounts in the organization.

', 'GetIpamDiscoveredPublicAddresses' => '

Gets the public IP addresses that have been discovered by IPAM.

', 'GetIpamDiscoveredResourceCidrs' => '

Returns the resource CIDRs that are monitored as part of a resource discovery. A discovered resource is a resource CIDR monitored under a resource discovery. The following resources can be discovered: VPCs, Public IPv4 pools, VPC subnets, and Elastic IP addresses.

', 'GetIpamPoolAllocations' => '

Get a list of all the CIDR allocations in an IPAM pool. The Region you use should be the IPAM pool locale. The locale is the Amazon Web Services Region where this IPAM pool is available for allocations.

If you use this action after AllocateIpamPoolCidr or ReleaseIpamPoolAllocation, note that all EC2 API actions follow an eventual consistency model.

', 'GetIpamPoolCidrs' => '

Get the CIDRs provisioned to an IPAM pool.

', 'GetIpamResourceCidrs' => '

Returns resource CIDRs managed by IPAM in a given scope. If an IPAM is associated with more than one resource discovery, the resource CIDRs across all of the resource discoveries is returned. A resource discovery is an IPAM component that enables IPAM to manage and monitor resources that belong to the owning account.

', 'GetLaunchTemplateData' => '

Retrieves the configuration data of the specified instance. You can use this data to create a launch template.

This action calls on other describe actions to get instance information. Depending on your instance configuration, you may need to allow the following actions in your IAM policy: DescribeSpotInstanceRequests, DescribeInstanceCreditSpecifications, DescribeVolumes, and DescribeInstanceAttribute. Or, you can allow describe* depending on your instance requirements.

', 'GetManagedPrefixListAssociations' => '

Gets information about the resources that are associated with the specified managed prefix list.

', 'GetManagedPrefixListEntries' => '

Gets information about the entries for a specified managed prefix list.

', 'GetNetworkInsightsAccessScopeAnalysisFindings' => '

Gets the findings for the specified Network Access Scope analysis.

', 'GetNetworkInsightsAccessScopeContent' => '

Gets the content for the specified Network Access Scope.

', 'GetPasswordData' => '

Retrieves the encrypted administrator password for a running Windows instance.

The Windows password is generated at boot by the EC2Config service or EC2Launch scripts (Windows Server 2016 and later). This usually only happens the first time an instance is launched. For more information, see EC2Config and EC2Launch in the Amazon EC2 User Guide.

For the EC2Config service, the password is not generated for rebundled AMIs unless Ec2SetPassword is enabled before bundling.

The password is encrypted using the key pair that you specified when you launched the instance. You must provide the corresponding key pair file.

When you launch an instance, password generation and encryption may take a few minutes. If you try to retrieve the password before it\'s available, the output returns an empty string. We recommend that you wait up to 15 minutes after launching an instance before trying to retrieve the generated password.

', 'GetReservedInstancesExchangeQuote' => '

Returns a quote and exchange information for exchanging one or more specified Convertible Reserved Instances for a new Convertible Reserved Instance. If the exchange cannot be performed, the reason is returned in the response. Use AcceptReservedInstancesExchangeQuote to perform the exchange.

', 'GetSecurityGroupsForVpc' => '

Gets security groups that can be associated by the Amazon Web Services account making the request with network interfaces in the specified VPC.

', 'GetSerialConsoleAccessStatus' => '

Retrieves the access status of your account to the EC2 serial console of all instances. By default, access to the EC2 serial console is disabled for your account. For more information, see Manage account access to the EC2 serial console in the Amazon EC2 User Guide.

', 'GetSnapshotBlockPublicAccessState' => '

Gets the current state of block public access for snapshots setting for the account and Region.

For more information, see Block public access for snapshots in the Amazon Elastic Compute Cloud User Guide.

', 'GetSpotPlacementScores' => '

Calculates the Spot placement score for a Region or Availability Zone based on the specified target capacity and compute requirements.

You can specify your compute requirements either by using InstanceRequirementsWithMetadata and letting Amazon EC2 choose the optimal instance types to fulfill your Spot request, or you can specify the instance types by using InstanceTypes.

For more information, see Spot placement score in the Amazon EC2 User Guide.

', 'GetSubnetCidrReservations' => '

Gets information about the subnet CIDR reservations.

', 'GetTransitGatewayAttachmentPropagations' => '

Lists the route tables to which the specified resource attachment propagates routes.

', 'GetTransitGatewayMulticastDomainAssociations' => '

Gets information about the associations for the transit gateway multicast domain.

', 'GetTransitGatewayPolicyTableAssociations' => '

Gets a list of the transit gateway policy table associations.

', 'GetTransitGatewayPolicyTableEntries' => '

Returns a list of transit gateway policy table entries.

', 'GetTransitGatewayPrefixListReferences' => '

Gets information about the prefix list references in a specified transit gateway route table.

', 'GetTransitGatewayRouteTableAssociations' => '

Gets information about the associations for the specified transit gateway route table.

', 'GetTransitGatewayRouteTablePropagations' => '

Gets information about the route table propagations for the specified transit gateway route table.

', 'GetVerifiedAccessEndpointPolicy' => '

Get the Verified Access policy associated with the endpoint.

', 'GetVerifiedAccessGroupPolicy' => '

Shows the contents of the Verified Access policy associated with the group.

', 'GetVpnConnectionDeviceSampleConfiguration' => '

Download an Amazon Web Services-provided sample configuration file to be used with the customer gateway device specified for your Site-to-Site VPN connection.

', 'GetVpnConnectionDeviceTypes' => '

Obtain a list of customer gateway devices for which sample configuration files can be provided. The request has no additional parameters. You can also see the list of device types with sample configuration files available under Your customer gateway device in the Amazon Web Services Site-to-Site VPN User Guide.

', 'GetVpnTunnelReplacementStatus' => '

Get details of available tunnel endpoint maintenance.

', 'ImportClientVpnClientCertificateRevocationList' => '

Uploads a client certificate revocation list to the specified Client VPN endpoint. Uploading a client certificate revocation list overwrites the existing client certificate revocation list.

Uploading a client certificate revocation list resets existing client connections.

', 'ImportImage' => '

To import your virtual machines (VMs) with a console-based experience, you can use the Import virtual machine images to Amazon Web Services template in the Migration Hub Orchestrator console. For more information, see the Migration Hub Orchestrator User Guide .

Import single or multi-volume disk images or EBS snapshots into an Amazon Machine Image (AMI).

Amazon Web Services VM Import/Export strongly recommends specifying a value for either the --license-type or --usage-operation parameter when you create a new VM Import task. This ensures your operating system is licensed appropriately and your billing is optimized.

For more information, see Importing a VM as an image using VM Import/Export in the VM Import/Export User Guide.

', 'ImportInstance' => '

We recommend that you use the ImportImage API. For more information, see Importing a VM as an image using VM Import/Export in the VM Import/Export User Guide.

Creates an import instance task using metadata from the specified disk image.

This API action is not supported by the Command Line Interface (CLI). For information about using the Amazon EC2 CLI, which is deprecated, see Importing a VM to Amazon EC2 in the Amazon EC2 CLI Reference PDF file.

This API action supports only single-volume VMs. To import multi-volume VMs, use ImportImage instead.

For information about the import manifest referenced by this API action, see VM Import Manifest.

', 'ImportKeyPair' => '

Imports the public key from an RSA or ED25519 key pair that you created with a third-party tool. Compare this with CreateKeyPair, in which Amazon Web Services creates the key pair and gives the keys to you (Amazon Web Services keeps a copy of the public key). With ImportKeyPair, you create the key pair and give Amazon Web Services just the public key. The private key is never transferred between you and Amazon Web Services.

For more information about key pairs, see Amazon EC2 key pairs in the Amazon Elastic Compute Cloud User Guide.

', 'ImportSnapshot' => '

Imports a disk into an EBS snapshot.

For more information, see Importing a disk as a snapshot using VM Import/Export in the VM Import/Export User Guide.

', 'ImportVolume' => '

Creates an import volume task using metadata from the specified disk image.

This API action supports only single-volume VMs. To import multi-volume VMs, use ImportImage instead. To import a disk to a snapshot, use ImportSnapshot instead.

This API action is not supported by the Command Line Interface (CLI). For information about using the Amazon EC2 CLI, which is deprecated, see Importing Disks to Amazon EBS in the Amazon EC2 CLI Reference PDF file.

For information about the import manifest referenced by this API action, see VM Import Manifest.

', 'ListImagesInRecycleBin' => '

Lists one or more AMIs that are currently in the Recycle Bin. For more information, see Recycle Bin in the Amazon EC2 User Guide.

', 'ListSnapshotsInRecycleBin' => '

Lists one or more snapshots that are currently in the Recycle Bin.

', 'LockSnapshot' => '

Locks an Amazon EBS snapshot in either governance or compliance mode to protect it against accidental or malicious deletions for a specific duration. A locked snapshot can\'t be deleted.

You can also use this action to modify the lock settings for a snapshot that is already locked. The allowed modifications depend on the lock mode and lock state:

  • If the snapshot is locked in governance mode, you can modify the lock mode and the lock duration or lock expiration date.

  • If the snapshot is locked in compliance mode and it is in the cooling-off period, you can modify the lock mode and the lock duration or lock expiration date.

  • If the snapshot is locked in compliance mode and the cooling-off period has lapsed, you can only increase the lock duration or extend the lock expiration date.

', 'ModifyAddressAttribute' => '

Modifies an attribute of the specified Elastic IP address. For requirements, see Using reverse DNS for email applications.

', 'ModifyAvailabilityZoneGroup' => '

Changes the opt-in status of the Local Zone and Wavelength Zone group for your account.

Use DescribeAvailabilityZones to view the value for GroupName.

', 'ModifyCapacityReservation' => '

Modifies a Capacity Reservation\'s capacity and the conditions under which it is to be released. You cannot change a Capacity Reservation\'s instance type, EBS optimization, instance store settings, platform, Availability Zone, or instance eligibility. If you need to modify any of these attributes, we recommend that you cancel the Capacity Reservation, and then create a new one with the required attributes.

', 'ModifyCapacityReservationFleet' => '

Modifies a Capacity Reservation Fleet.

When you modify the total target capacity of a Capacity Reservation Fleet, the Fleet automatically creates new Capacity Reservations, or modifies or cancels existing Capacity Reservations in the Fleet to meet the new total target capacity. When you modify the end date for the Fleet, the end dates for all of the individual Capacity Reservations in the Fleet are updated accordingly.

', 'ModifyClientVpnEndpoint' => '

Modifies the specified Client VPN endpoint. Modifying the DNS server resets existing client connections.

', 'ModifyDefaultCreditSpecification' => '

Modifies the default credit option for CPU usage of burstable performance instances. The default credit option is set at the account level per Amazon Web Services Region, and is specified per instance family. All new burstable performance instances in the account launch using the default credit option.

ModifyDefaultCreditSpecification is an asynchronous operation, which works at an Amazon Web Services Region level and modifies the credit option for each Availability Zone. All zones in a Region are updated within five minutes. But if instances are launched during this operation, they might not get the new credit option until the zone is updated. To verify whether the update has occurred, you can call GetDefaultCreditSpecification and check DefaultCreditSpecification for updates.

For more information, see Burstable performance instances in the Amazon EC2 User Guide.

', 'ModifyEbsDefaultKmsKeyId' => '

Changes the default KMS key for EBS encryption by default for your account in this Region.

Amazon Web Services creates a unique Amazon Web Services managed KMS key in each Region for use with encryption by default. If you change the default KMS key to a symmetric customer managed KMS key, it is used instead of the Amazon Web Services managed KMS key. To reset the default KMS key to the Amazon Web Services managed KMS key for EBS, use ResetEbsDefaultKmsKeyId. Amazon EBS does not support asymmetric KMS keys.

If you delete or disable the customer managed KMS key that you specified for use with encryption by default, your instances will fail to launch.

For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

', 'ModifyFleet' => '

Modifies the specified EC2 Fleet.

You can only modify an EC2 Fleet request of type maintain.

While the EC2 Fleet is being modified, it is in the modifying state.

To scale up your EC2 Fleet, increase its target capacity. The EC2 Fleet launches the additional Spot Instances according to the allocation strategy for the EC2 Fleet request. If the allocation strategy is lowest-price, the EC2 Fleet launches instances using the Spot Instance pool with the lowest price. If the allocation strategy is diversified, the EC2 Fleet distributes the instances across the Spot Instance pools. If the allocation strategy is capacity-optimized, EC2 Fleet launches instances from Spot Instance pools with optimal capacity for the number of instances that are launching.

To scale down your EC2 Fleet, decrease its target capacity. First, the EC2 Fleet cancels any open requests that exceed the new target capacity. You can request that the EC2 Fleet terminate Spot Instances until the size of the fleet no longer exceeds the new target capacity. If the allocation strategy is lowest-price, the EC2 Fleet terminates the instances with the highest price per unit. If the allocation strategy is capacity-optimized, the EC2 Fleet terminates the instances in the Spot Instance pools that have the least available Spot Instance capacity. If the allocation strategy is diversified, the EC2 Fleet terminates instances across the Spot Instance pools. Alternatively, you can request that the EC2 Fleet keep the fleet at its current size, but not replace any Spot Instances that are interrupted or that you terminate manually.

If you are finished with your EC2 Fleet for now, but will use it again later, you can set the target capacity to 0.

', 'ModifyFpgaImageAttribute' => '

Modifies the specified attribute of the specified Amazon FPGA Image (AFI).

', 'ModifyHosts' => '

Modify the auto-placement setting of a Dedicated Host. When auto-placement is enabled, any instances that you launch with a tenancy of host but without a specific host ID are placed onto any available Dedicated Host in your account that has auto-placement enabled. When auto-placement is disabled, you need to provide a host ID to have the instance launch onto a specific host. If no host ID is provided, the instance is launched onto a suitable host with auto-placement enabled.

You can also use this API action to modify a Dedicated Host to support either multiple instance types in an instance family, or to support a specific instance type only.

', 'ModifyIdFormat' => '

Modifies the ID format for the specified resource on a per-Region basis. You can specify that resources should receive longer IDs (17-character IDs) when they are created.

This request can only be used to modify longer ID settings for resource types that are within the opt-in period. Resources currently in their opt-in period include: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | route-table | route-table-association | security-group | subnet | subnet-cidr-block-association | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway.

This setting applies to the IAM user who makes the request; it does not apply to the entire Amazon Web Services account. By default, an IAM user defaults to the same settings as the root user. If you\'re using this action as the root user, then these settings apply to the entire account, unless an IAM user explicitly overrides these settings for themselves. For more information, see Resource IDs in the Amazon Elastic Compute Cloud User Guide.

Resources created with longer IDs are visible to all IAM roles and users, regardless of these settings and provided that they have permission to use the relevant Describe command for the resource type.

', 'ModifyIdentityIdFormat' => '

Modifies the ID format of a resource for a specified IAM user, IAM role, or the root user for an account; or all IAM users, IAM roles, and the root user for an account. You can specify that resources should receive longer IDs (17-character IDs) when they are created.

This request can only be used to modify longer ID settings for resource types that are within the opt-in period. Resources currently in their opt-in period include: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | route-table | route-table-association | security-group | subnet | subnet-cidr-block-association | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway.

For more information, see Resource IDs in the Amazon Elastic Compute Cloud User Guide.

This setting applies to the principal specified in the request; it does not apply to the principal that makes the request.

Resources created with longer IDs are visible to all IAM roles and users, regardless of these settings and provided that they have permission to use the relevant Describe command for the resource type.

', 'ModifyImageAttribute' => '

Modifies the specified attribute of the specified AMI. You can specify only one attribute at a time.

To specify the attribute, you can use the Attribute parameter, or one of the following parameters: Description, ImdsSupport, or LaunchPermission.

Images with an Amazon Web Services Marketplace product code cannot be made public.

To enable the SriovNetSupport enhanced networking attribute of an image, enable SriovNetSupport on an instance and create an AMI from the instance.

', 'ModifyInstanceAttribute' => '

Modifies the specified attribute of the specified instance. You can specify only one attribute at a time.

Note: Using this action to change the security groups associated with an elastic network interface (ENI) attached to an instance can result in an error if the instance has more than one ENI. To change the security groups associated with an ENI attached to an instance that has multiple ENIs, we recommend that you use the ModifyNetworkInterfaceAttribute action.

To modify some attributes, the instance must be stopped. For more information, see Modify a stopped instance in the Amazon EC2 User Guide.

', 'ModifyInstanceCapacityReservationAttributes' => '

Modifies the Capacity Reservation settings for a stopped instance. Use this action to configure an instance to target a specific Capacity Reservation, run in any open Capacity Reservation with matching attributes, or run On-Demand Instance capacity.

', 'ModifyInstanceCreditSpecification' => '

Modifies the credit option for CPU usage on a running or stopped burstable performance instance. The credit options are standard and unlimited.

For more information, see Burstable performance instances in the Amazon EC2 User Guide.

', 'ModifyInstanceEventStartTime' => '

Modifies the start time for a scheduled Amazon EC2 instance event.

', 'ModifyInstanceEventWindow' => '

Modifies the specified event window.

You can define either a set of time ranges or a cron expression when modifying the event window, but not both.

To modify the targets associated with the event window, use the AssociateInstanceEventWindow and DisassociateInstanceEventWindow API.

If Amazon Web Services has already scheduled an event, modifying an event window won\'t change the time of the scheduled event.

For more information, see Define event windows for scheduled events in the Amazon EC2 User Guide.

', 'ModifyInstanceMaintenanceOptions' => '

Modifies the recovery behavior of your instance to disable simplified automatic recovery or set the recovery behavior to default. The default configuration will not enable simplified automatic recovery for an unsupported instance type. For more information, see Simplified automatic recovery.

', 'ModifyInstanceMetadataOptions' => '

Modify the instance metadata parameters on a running or stopped instance. When you modify the parameters on a stopped instance, they are applied when the instance is started. When you modify the parameters on a running instance, the API responds with a state of “pending”. After the parameter modifications are successfully applied to the instance, the state of the modifications changes from “pending” to “applied” in subsequent describe-instances API calls. For more information, see Instance metadata and user data in the Amazon EC2 User Guide.

', 'ModifyInstancePlacement' => '

Modifies the placement attributes for a specified instance. You can do the following:

  • Modify the affinity between an instance and a Dedicated Host. When affinity is set to host and the instance is not associated with a specific Dedicated Host, the next time the instance is launched, it is automatically associated with the host on which it lands. If the instance is restarted or rebooted, this relationship persists.

  • Change the Dedicated Host with which an instance is associated.

  • Change the instance tenancy of an instance.

  • Move an instance to or from a placement group.

At least one attribute for affinity, host ID, tenancy, or placement group name must be specified in the request. Affinity and tenancy can be modified in the same request.

To modify the host ID, tenancy, placement group, or partition for an instance, the instance must be in the stopped state.

', 'ModifyIpam' => '

Modify the configurations of an IPAM.

', 'ModifyIpamPool' => '

Modify the configurations of an IPAM pool.

For more information, see Modify a pool in the Amazon VPC IPAM User Guide.

', 'ModifyIpamResourceCidr' => '

Modify a resource CIDR. You can use this action to transfer resource CIDRs between scopes and ignore resource CIDRs that you do not want to manage. If set to false, the resource will not be tracked for overlap, it cannot be auto-imported into a pool, and it will be removed from any pool it has an allocation in.

For more information, see Move resource CIDRs between scopes and Change the monitoring state of resource CIDRs in the Amazon VPC IPAM User Guide.

', 'ModifyIpamResourceDiscovery' => '

Modifies a resource discovery. A resource discovery is an IPAM component that enables IPAM to manage and monitor resources that belong to the owning account.

', 'ModifyIpamScope' => '

Modify an IPAM scope.

', 'ModifyLaunchTemplate' => '

Modifies a launch template. You can specify which version of the launch template to set as the default version. When launching an instance, the default version applies when a launch template version is not specified.

', 'ModifyLocalGatewayRoute' => '

Modifies the specified local gateway route.

', 'ModifyManagedPrefixList' => '

Modifies the specified managed prefix list.

Adding or removing entries in a prefix list creates a new version of the prefix list. Changing the name of the prefix list does not affect the version.

If you specify a current version number that does not match the true current version number, the request fails.

', 'ModifyNetworkInterfaceAttribute' => '

Modifies the specified network interface attribute. You can specify only one attribute at a time. You can use this action to attach and detach security groups from an existing EC2 instance.

', 'ModifyPrivateDnsNameOptions' => '

Modifies the options for instance hostnames for the specified instance.

', 'ModifyReservedInstances' => '

Modifies the configuration of your Reserved Instances, such as the Availability Zone, instance count, or instance type. The Reserved Instances to be modified must be identical, except for Availability Zone, network platform, and instance type.

For more information, see Modifying Reserved Instances in the Amazon EC2 User Guide.

', 'ModifySecurityGroupRules' => '

Modifies the rules of a security group.

', 'ModifySnapshotAttribute' => '

Adds or removes permission settings for the specified snapshot. You may add or remove specified Amazon Web Services account IDs from a snapshot\'s list of create volume permissions, but you cannot do both in a single operation. If you need to both add and remove account IDs for a snapshot, you must use multiple operations. You can make up to 500 modifications to a snapshot in a single operation.

Encrypted snapshots and snapshots with Amazon Web Services Marketplace product codes cannot be made public. Snapshots encrypted with your default KMS key cannot be shared with other accounts.

For more information about modifying snapshot permissions, see Share a snapshot in the Amazon Elastic Compute Cloud User Guide.

', 'ModifySnapshotTier' => '

Archives an Amazon EBS snapshot. When you archive a snapshot, it is converted to a full snapshot that includes all of the blocks of data that were written to the volume at the time the snapshot was created, and moved from the standard tier to the archive tier. For more information, see Archive Amazon EBS snapshots in the Amazon Elastic Compute Cloud User Guide.

', 'ModifySpotFleetRequest' => '

Modifies the specified Spot Fleet request.

You can only modify a Spot Fleet request of type maintain.

While the Spot Fleet request is being modified, it is in the modifying state.

To scale up your Spot Fleet, increase its target capacity. The Spot Fleet launches the additional Spot Instances according to the allocation strategy for the Spot Fleet request. If the allocation strategy is lowestPrice, the Spot Fleet launches instances using the Spot Instance pool with the lowest price. If the allocation strategy is diversified, the Spot Fleet distributes the instances across the Spot Instance pools. If the allocation strategy is capacityOptimized, Spot Fleet launches instances from Spot Instance pools with optimal capacity for the number of instances that are launching.

To scale down your Spot Fleet, decrease its target capacity. First, the Spot Fleet cancels any open requests that exceed the new target capacity. You can request that the Spot Fleet terminate Spot Instances until the size of the fleet no longer exceeds the new target capacity. If the allocation strategy is lowestPrice, the Spot Fleet terminates the instances with the highest price per unit. If the allocation strategy is capacityOptimized, the Spot Fleet terminates the instances in the Spot Instance pools that have the least available Spot Instance capacity. If the allocation strategy is diversified, the Spot Fleet terminates instances across the Spot Instance pools. Alternatively, you can request that the Spot Fleet keep the fleet at its current size, but not replace any Spot Instances that are interrupted or that you terminate manually.

If you are finished with your Spot Fleet for now, but will use it again later, you can set the target capacity to 0.

', 'ModifySubnetAttribute' => '

Modifies a subnet attribute. You can only modify one attribute at a time.

Use this action to modify subnets on Amazon Web Services Outposts.

  • To modify a subnet on an Outpost rack, set both MapCustomerOwnedIpOnLaunch and CustomerOwnedIpv4Pool. These two parameters act as a single attribute.

  • To modify a subnet on an Outpost server, set either EnableLniAtDeviceIndex or DisableLniAtDeviceIndex.

For more information about Amazon Web Services Outposts, see the following:

', 'ModifyTrafficMirrorFilterNetworkServices' => '

Allows or restricts mirroring network services.

By default, Amazon DNS network services are not eligible for Traffic Mirror. Use AddNetworkServices to add network services to a Traffic Mirror filter. When a network service is added to the Traffic Mirror filter, all traffic related to that network service will be mirrored. When you no longer want to mirror network services, use RemoveNetworkServices to remove the network services from the Traffic Mirror filter.

', 'ModifyTrafficMirrorFilterRule' => '

Modifies the specified Traffic Mirror rule.

DestinationCidrBlock and SourceCidrBlock must both be an IPv4 range or an IPv6 range.

', 'ModifyTrafficMirrorSession' => '

Modifies a Traffic Mirror session.

', 'ModifyTransitGateway' => '

Modifies the specified transit gateway. When you modify a transit gateway, the modified options are applied to new transit gateway attachments only. Your existing transit gateway attachments are not modified.

', 'ModifyTransitGatewayPrefixListReference' => '

Modifies a reference (route) to a prefix list in a specified transit gateway route table.

', 'ModifyTransitGatewayVpcAttachment' => '

Modifies the specified VPC attachment.

', 'ModifyVerifiedAccessEndpoint' => '

Modifies the configuration of the specified Amazon Web Services Verified Access endpoint.

', 'ModifyVerifiedAccessEndpointPolicy' => '

Modifies the specified Amazon Web Services Verified Access endpoint policy.

', 'ModifyVerifiedAccessGroup' => '

Modifies the specified Amazon Web Services Verified Access group configuration.

', 'ModifyVerifiedAccessGroupPolicy' => '

Modifies the specified Amazon Web Services Verified Access group policy.

', 'ModifyVerifiedAccessInstance' => '

Modifies the configuration of the specified Amazon Web Services Verified Access instance.

', 'ModifyVerifiedAccessInstanceLoggingConfiguration' => '

Modifies the logging configuration for the specified Amazon Web Services Verified Access instance.

', 'ModifyVerifiedAccessTrustProvider' => '

Modifies the configuration of the specified Amazon Web Services Verified Access trust provider.

', 'ModifyVolume' => '

You can modify several parameters of an existing EBS volume, including volume size, volume type, and IOPS capacity. If your EBS volume is attached to a current-generation EC2 instance type, you might be able to apply these changes without stopping the instance or detaching the volume from it. For more information about modifying EBS volumes, see Amazon EBS Elastic Volumes (Linux instances) or Amazon EBS Elastic Volumes (Windows instances).

When you complete a resize operation on your volume, you need to extend the volume\'s file-system size to take advantage of the new storage capacity. For more information, see Extend a Linux file system or Extend a Windows file system.

You can use CloudWatch Events to check the status of a modification to an EBS volume. For information about CloudWatch Events, see the Amazon CloudWatch Events User Guide. You can also track the status of a modification using DescribeVolumesModifications. For information about tracking status changes using either method, see Monitor the progress of volume modifications.

With previous-generation instance types, resizing an EBS volume might require detaching and reattaching the volume or stopping and restarting the instance.

After modifying a volume, you must wait at least six hours and ensure that the volume is in the in-use or available state before you can modify the same volume. This is sometimes referred to as a cooldown period.

', 'ModifyVolumeAttribute' => '

Modifies a volume attribute.

By default, all I/O operations for the volume are suspended when the data on the volume is determined to be potentially inconsistent, to prevent undetectable, latent data corruption. The I/O access to the volume can be resumed by first enabling I/O access and then checking the data consistency on your volume.

You can change the default behavior to resume I/O operations. We recommend that you change this only for boot volumes or for volumes that are stateless or disposable.

', 'ModifyVpcAttribute' => '

Modifies the specified attribute of the specified VPC.

', 'ModifyVpcEndpoint' => '

Modifies attributes of a specified VPC endpoint. The attributes that you can modify depend on the type of VPC endpoint (interface, gateway, or Gateway Load Balancer). For more information, see the Amazon Web Services PrivateLink Guide.

', 'ModifyVpcEndpointConnectionNotification' => '

Modifies a connection notification for VPC endpoint or VPC endpoint service. You can change the SNS topic for the notification, or the events for which to be notified.

', 'ModifyVpcEndpointServiceConfiguration' => '

Modifies the attributes of your VPC endpoint service configuration. You can change the Network Load Balancers or Gateway Load Balancers for your service, and you can specify whether acceptance is required for requests to connect to your endpoint service through an interface VPC endpoint.

If you set or modify the private DNS name, you must prove that you own the private DNS domain name.

', 'ModifyVpcEndpointServicePayerResponsibility' => '

Modifies the payer responsibility for your VPC endpoint service.

', 'ModifyVpcEndpointServicePermissions' => '

Modifies the permissions for your VPC endpoint service. You can add or remove permissions for service consumers (Amazon Web Services accounts, users, and IAM roles) to connect to your endpoint service.

If you grant permissions to all principals, the service is public. Any users who know the name of a public service can send a request to attach an endpoint. If the service does not require manual approval, attachments are automatically approved.

', 'ModifyVpcPeeringConnectionOptions' => '

Modifies the VPC peering connection options on one side of a VPC peering connection.

If the peered VPCs are in the same Amazon Web Services account, you can enable DNS resolution for queries from the local VPC. This ensures that queries from the local VPC resolve to private IP addresses in the peer VPC. This option is not available if the peered VPCs are in different Amazon Web Services accounts or different Regions. For peered VPCs in different Amazon Web Services accounts, each Amazon Web Services account owner must initiate a separate request to modify the peering connection options. For inter-region peering connections, you must use the Region for the requester VPC to modify the requester VPC peering options and the Region for the accepter VPC to modify the accepter VPC peering options. To verify which VPCs are the accepter and the requester for a VPC peering connection, use the DescribeVpcPeeringConnections command.

', 'ModifyVpcTenancy' => '

Modifies the instance tenancy attribute of the specified VPC. You can change the instance tenancy attribute of a VPC to default only. You cannot change the instance tenancy attribute to dedicated.

After you modify the tenancy of the VPC, any new instances that you launch into the VPC have a tenancy of default, unless you specify otherwise during launch. The tenancy of any existing instances in the VPC is not affected.

For more information, see Dedicated Instances in the Amazon EC2 User Guide.

', 'ModifyVpnConnection' => '

Modifies the customer gateway or the target gateway of an Amazon Web Services Site-to-Site VPN connection. To modify the target gateway, the following migration options are available:

  • An existing virtual private gateway to a new virtual private gateway

  • An existing virtual private gateway to a transit gateway

  • An existing transit gateway to a new transit gateway

  • An existing transit gateway to a virtual private gateway

Before you perform the migration to the new gateway, you must configure the new gateway. Use CreateVpnGateway to create a virtual private gateway, or CreateTransitGateway to create a transit gateway.

This step is required when you migrate from a virtual private gateway with static routes to a transit gateway.

You must delete the static routes before you migrate to the new gateway.

Keep a copy of the static route before you delete it. You will need to add back these routes to the transit gateway after the VPN connection migration is complete.

After you migrate to the new gateway, you might need to modify your VPC route table. Use CreateRoute and DeleteRoute to make the changes described in Update VPC route tables in the Amazon Web Services Site-to-Site VPN User Guide.

When the new gateway is a transit gateway, modify the transit gateway route table to allow traffic between the VPC and the Amazon Web Services Site-to-Site VPN connection. Use CreateTransitGatewayRoute to add the routes.

If you deleted VPN static routes, you must add the static routes to the transit gateway route table.

After you perform this operation, the VPN endpoint\'s IP addresses on the Amazon Web Services side and the tunnel options remain intact. Your Amazon Web Services Site-to-Site VPN connection will be temporarily unavailable for a brief period while we provision the new endpoints.

', 'ModifyVpnConnectionOptions' => '

Modifies the connection options for your Site-to-Site VPN connection.

When you modify the VPN connection options, the VPN endpoint IP addresses on the Amazon Web Services side do not change, and the tunnel options do not change. Your VPN connection will be temporarily unavailable for a brief period while the VPN connection is updated.

', 'ModifyVpnTunnelCertificate' => '

Modifies the VPN tunnel endpoint certificate.

', 'ModifyVpnTunnelOptions' => '

Modifies the options for a VPN tunnel in an Amazon Web Services Site-to-Site VPN connection. You can modify multiple options for a tunnel in a single request, but you can only modify one tunnel at a time. For more information, see Site-to-Site VPN tunnel options for your Site-to-Site VPN connection in the Amazon Web Services Site-to-Site VPN User Guide.

', 'MonitorInstances' => '

Enables detailed monitoring for a running instance. Otherwise, basic monitoring is enabled. For more information, see Monitor your instances using CloudWatch in the Amazon EC2 User Guide.

To disable detailed monitoring, see UnmonitorInstances.

', 'MoveAddressToVpc' => '

This action is deprecated.

Moves an Elastic IP address from the EC2-Classic platform to the EC2-VPC platform. The Elastic IP address must be allocated to your account for more than 24 hours, and it must not be associated with an instance. After the Elastic IP address is moved, it is no longer available for use in the EC2-Classic platform, unless you move it back using the RestoreAddressToClassic request. You cannot move an Elastic IP address that was originally allocated for use in the EC2-VPC platform to the EC2-Classic platform.

', 'MoveByoipCidrToIpam' => '

Move a BYOIPv4 CIDR to IPAM from a public IPv4 pool.

If you already have a BYOIPv4 CIDR with Amazon Web Services, you can move the CIDR to IPAM from a public IPv4 pool. You cannot move an IPv6 CIDR to IPAM. If you are bringing a new IP address to Amazon Web Services for the first time, complete the steps in Tutorial: BYOIP address CIDRs to IPAM.

', 'ProvisionByoipCidr' => '

Provisions an IPv4 or IPv6 address range for use with your Amazon Web Services resources through bring your own IP addresses (BYOIP) and creates a corresponding address pool. After the address range is provisioned, it is ready to be advertised using AdvertiseByoipCidr.

Amazon Web Services verifies that you own the address range and are authorized to advertise it. You must ensure that the address range is registered to you and that you created an RPKI ROA to authorize Amazon ASNs 16509 and 14618 to advertise the address range. For more information, see Bring your own IP addresses (BYOIP) in the Amazon Elastic Compute Cloud User Guide.

Provisioning an address range is an asynchronous operation, so the call returns immediately, but the address range is not ready to use until its status changes from pending-provision to provisioned. To monitor the status of an address range, use DescribeByoipCidrs. To allocate an Elastic IP address from your IPv4 address pool, use AllocateAddress with either the specific address from the address pool or the ID of the address pool.

', 'ProvisionIpamByoasn' => '

Provisions your Autonomous System Number (ASN) for use in your Amazon Web Services account. This action requires authorization context for Amazon to bring the ASN to an Amazon Web Services account. For more information, see Tutorial: Bring your ASN to IPAM in the Amazon VPC IPAM guide.

', 'ProvisionIpamPoolCidr' => '

Provision a CIDR to an IPAM pool. You can use this action to provision new CIDRs to a top-level pool or to transfer a CIDR from a top-level pool to a pool within it.

For more information, see Provision CIDRs to pools in the Amazon VPC IPAM User Guide.

', 'ProvisionPublicIpv4PoolCidr' => '

Provision a CIDR to a public IPv4 pool.

For more information about IPAM, see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'PurchaseCapacityBlock' => '

Purchase the Capacity Block for use with your account. With Capacity Blocks you ensure GPU capacity is available for machine learning (ML) workloads. You must specify the ID of the Capacity Block offering you are purchasing.

', 'PurchaseHostReservation' => '

Purchase a reservation with configurations that match those of your Dedicated Host. You must have active Dedicated Hosts in your account before you purchase a reservation. This action results in the specified reservation being purchased and charged to your account.

', 'PurchaseReservedInstancesOffering' => '

Purchases a Reserved Instance for use with your account. With Reserved Instances, you pay a lower hourly rate compared to On-Demand instance pricing.

Use DescribeReservedInstancesOfferings to get a list of Reserved Instance offerings that match your specifications. After you\'ve purchased a Reserved Instance, you can check for your new Reserved Instance with DescribeReservedInstances.

To queue a purchase for a future date and time, specify a purchase time. If you do not specify a purchase time, the default is the current time.

For more information, see Reserved Instances and Reserved Instance Marketplace in the Amazon EC2 User Guide.

', 'PurchaseScheduledInstances' => '

You can no longer purchase Scheduled Instances.

Purchases the Scheduled Instances with the specified schedule.

Scheduled Instances enable you to purchase Amazon EC2 compute capacity by the hour for a one-year term. Before you can purchase a Scheduled Instance, you must call DescribeScheduledInstanceAvailability to check for available schedules and obtain a purchase token. After you purchase a Scheduled Instance, you must call RunScheduledInstances during each scheduled time period.

After you purchase a Scheduled Instance, you can\'t cancel, modify, or resell your purchase.

', 'RebootInstances' => '

Requests a reboot of the specified instances. This operation is asynchronous; it only queues a request to reboot the specified instances. The operation succeeds if the instances are valid and belong to you. Requests to reboot terminated instances are ignored.

If an instance does not cleanly shut down within a few minutes, Amazon EC2 performs a hard reboot.

For more information about troubleshooting, see Troubleshoot an unreachable instance in the Amazon EC2 User Guide.

', 'RegisterImage' => '

Registers an AMI. When you\'re creating an AMI, this is the final step you must complete before you can launch an instance from the AMI. For more information about creating AMIs, see Create your own AMI in the Amazon Elastic Compute Cloud User Guide.

For Amazon EBS-backed instances, CreateImage creates and registers the AMI in a single request, so you don\'t have to register the AMI yourself. We recommend that you always use CreateImage unless you have a specific reason to use RegisterImage.

If needed, you can deregister an AMI at any time. Any modifications you make to an AMI backed by an instance store volume invalidates its registration. If you make changes to an image, deregister the previous image and register the new image.

Register a snapshot of a root device volume

You can use RegisterImage to create an Amazon EBS-backed Linux AMI from a snapshot of a root device volume. You specify the snapshot using a block device mapping. You can\'t set the encryption state of the volume using the block device mapping. If the snapshot is encrypted, or encryption by default is enabled, the root volume of an instance launched from the AMI is encrypted.

For more information, see Create a Linux AMI from a snapshot and Use encryption with Amazon EBS-backed AMIs in the Amazon Elastic Compute Cloud User Guide.

Amazon Web Services Marketplace product codes

If any snapshots have Amazon Web Services Marketplace product codes, they are copied to the new AMI.

Windows and some Linux distributions, such as Red Hat Enterprise Linux (RHEL) and SUSE Linux Enterprise Server (SLES), use the Amazon EC2 billing product code associated with an AMI to verify the subscription status for package updates. To create a new AMI for operating systems that require a billing product code, instead of registering the AMI, do the following to preserve the billing product code association:

  1. Launch an instance from an existing AMI with that billing product code.

  2. Customize the instance.

  3. Create an AMI from the instance using CreateImage.

If you purchase a Reserved Instance to apply to an On-Demand Instance that was launched from an AMI with a billing product code, make sure that the Reserved Instance has the matching billing product code. If you purchase a Reserved Instance without the matching billing product code, the Reserved Instance will not be applied to the On-Demand Instance. For information about how to obtain the platform details and billing information of an AMI, see Understand AMI billing information in the Amazon EC2 User Guide.

', 'RegisterInstanceEventNotificationAttributes' => '

Registers a set of tag keys to include in scheduled event notifications for your resources.

To remove tags, use DeregisterInstanceEventNotificationAttributes.

', 'RegisterTransitGatewayMulticastGroupMembers' => '

Registers members (network interfaces) with the transit gateway multicast group. A member is a network interface associated with a supported EC2 instance that receives multicast traffic. For information about supported instances, see Multicast Consideration in Amazon VPC Transit Gateways.

After you add the members, use SearchTransitGatewayMulticastGroups to verify that the members were added to the transit gateway multicast group.

', 'RegisterTransitGatewayMulticastGroupSources' => '

Registers sources (network interfaces) with the specified transit gateway multicast group.

A multicast source is a network interface attached to a supported instance that sends multicast traffic. For information about supported instances, see Multicast Considerations in Amazon VPC Transit Gateways.

After you add the source, use SearchTransitGatewayMulticastGroups to verify that the source was added to the multicast group.

', 'RejectTransitGatewayMulticastDomainAssociations' => '

Rejects a request to associate cross-account subnets with a transit gateway multicast domain.

', 'RejectTransitGatewayPeeringAttachment' => '

Rejects a transit gateway peering attachment request.

', 'RejectTransitGatewayVpcAttachment' => '

Rejects a request to attach a VPC to a transit gateway.

The VPC attachment must be in the pendingAcceptance state. Use DescribeTransitGatewayVpcAttachments to view your pending VPC attachment requests. Use AcceptTransitGatewayVpcAttachment to accept a VPC attachment request.

', 'RejectVpcEndpointConnections' => '

Rejects VPC endpoint connection requests to your VPC endpoint service.

', 'RejectVpcPeeringConnection' => '

Rejects a VPC peering connection request. The VPC peering connection must be in the pending-acceptance state. Use the DescribeVpcPeeringConnections request to view your outstanding VPC peering connection requests. To delete an active VPC peering connection, or to delete a VPC peering connection request that you initiated, use DeleteVpcPeeringConnection.

', 'ReleaseAddress' => '

Releases the specified Elastic IP address.

[Default VPC] Releasing an Elastic IP address automatically disassociates it from any instance that it\'s associated with. To disassociate an Elastic IP address without releasing it, use DisassociateAddress.

[Nondefault VPC] You must use DisassociateAddress to disassociate the Elastic IP address before you can release it. Otherwise, Amazon EC2 returns an error (InvalidIPAddress.InUse).

After releasing an Elastic IP address, it is released to the IP address pool. Be sure to update your DNS records and any servers or devices that communicate with the address. If you attempt to release an Elastic IP address that you already released, you\'ll get an AuthFailure error if the address is already allocated to another Amazon Web Services account.

After you release an Elastic IP address, you might be able to recover it. For more information, see AllocateAddress.

', 'ReleaseHosts' => '

When you no longer want to use an On-Demand Dedicated Host it can be released. On-Demand billing is stopped and the host goes into released state. The host ID of Dedicated Hosts that have been released can no longer be specified in another request, for example, to modify the host. You must stop or terminate all instances on a host before it can be released.

When Dedicated Hosts are released, it may take some time for them to stop counting toward your limit and you may receive capacity errors when trying to allocate new Dedicated Hosts. Wait a few minutes and then try again.

Released hosts still appear in a DescribeHosts response.

', 'ReleaseIpamPoolAllocation' => '

Release an allocation within an IPAM pool. The Region you use should be the IPAM pool locale. The locale is the Amazon Web Services Region where this IPAM pool is available for allocations. You can only use this action to release manual allocations. To remove an allocation for a resource without deleting the resource, set its monitored state to false using ModifyIpamResourceCidr. For more information, see Release an allocation in the Amazon VPC IPAM User Guide.

All EC2 API actions follow an eventual consistency model.

', 'ReplaceIamInstanceProfileAssociation' => '

Replaces an IAM instance profile for the specified running instance. You can use this action to change the IAM instance profile that\'s associated with an instance without having to disassociate the existing IAM instance profile first.

Use DescribeIamInstanceProfileAssociations to get the association ID.

', 'ReplaceNetworkAclAssociation' => '

Changes which network ACL a subnet is associated with. By default when you create a subnet, it\'s automatically associated with the default network ACL. For more information, see Network ACLs in the Amazon VPC User Guide.

This is an idempotent operation.

', 'ReplaceNetworkAclEntry' => '

Replaces an entry (rule) in a network ACL. For more information, see Network ACLs in the Amazon VPC User Guide.

', 'ReplaceRoute' => '

Replaces an existing route within a route table in a VPC.

You must specify either a destination CIDR block or a prefix list ID. You must also specify exactly one of the resources from the parameter list, or reset the local route to its default target.

For more information, see Route tables in the Amazon VPC User Guide.

', 'ReplaceRouteTableAssociation' => '

Changes the route table associated with a given subnet, internet gateway, or virtual private gateway in a VPC. After the operation completes, the subnet or gateway uses the routes in the new route table. For more information about route tables, see Route tables in the Amazon VPC User Guide.

You can also use this operation to change which table is the main route table in the VPC. Specify the main route table\'s association ID and the route table ID of the new main route table.

', 'ReplaceTransitGatewayRoute' => '

Replaces the specified route in the specified transit gateway route table.

', 'ReplaceVpnTunnel' => '

Trigger replacement of specified VPN tunnel.

', 'ReportInstanceStatus' => '

Submits feedback about the status of an instance. The instance must be in the running state. If your experience with the instance differs from the instance status returned by DescribeInstanceStatus, use ReportInstanceStatus to report your experience with the instance. Amazon EC2 collects this information to improve the accuracy of status checks.

Use of this action does not change the value returned by DescribeInstanceStatus.

', 'RequestSpotFleet' => '

Creates a Spot Fleet request.

The Spot Fleet request specifies the total target capacity and the On-Demand target capacity. Amazon EC2 calculates the difference between the total capacity and On-Demand capacity, and launches the difference as Spot capacity.

You can submit a single request that includes multiple launch specifications that vary by instance type, AMI, Availability Zone, or subnet.

By default, the Spot Fleet requests Spot Instances in the Spot Instance pool where the price per unit is the lowest. Each launch specification can include its own instance weighting that reflects the value of the instance type to your application workload.

Alternatively, you can specify that the Spot Fleet distribute the target capacity across the Spot pools included in its launch specifications. By ensuring that the Spot Instances in your Spot Fleet are in different Spot pools, you can improve the availability of your fleet.

You can specify tags for the Spot Fleet request and instances launched by the fleet. You cannot tag other resource types in a Spot Fleet request because only the spot-fleet-request and instance resource types are supported.

For more information, see Spot Fleet requests in the Amazon EC2 User Guide.

We strongly discourage using the RequestSpotFleet API because it is a legacy API with no planned investment. For options for requesting Spot Instances, see Which is the best Spot request method to use? in the Amazon EC2 User Guide.

', 'RequestSpotInstances' => '

Creates a Spot Instance request.

For more information, see Spot Instance requests in the Amazon EC2 User Guide for Linux Instances.

We strongly discourage using the RequestSpotInstances API because it is a legacy API with no planned investment. For options for requesting Spot Instances, see Which is the best Spot request method to use? in the Amazon EC2 User Guide for Linux Instances.

', 'ResetAddressAttribute' => '

Resets the attribute of the specified IP address. For requirements, see Using reverse DNS for email applications.

', 'ResetEbsDefaultKmsKeyId' => '

Resets the default KMS key for EBS encryption for your account in this Region to the Amazon Web Services managed KMS key for EBS.

After resetting the default KMS key to the Amazon Web Services managed KMS key, you can continue to encrypt by a customer managed KMS key by specifying it when you create the volume. For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

', 'ResetFpgaImageAttribute' => '

Resets the specified attribute of the specified Amazon FPGA Image (AFI) to its default value. You can only reset the load permission attribute.

', 'ResetImageAttribute' => '

Resets an attribute of an AMI to its default value.

', 'ResetInstanceAttribute' => '

Resets an attribute of an instance to its default value. To reset the kernel or ramdisk, the instance must be in a stopped state. To reset the sourceDestCheck, the instance can be either running or stopped.

The sourceDestCheck attribute controls whether source/destination checking is enabled. The default value is true, which means checking is enabled. This value must be false for a NAT instance to perform NAT. For more information, see NAT Instances in the Amazon VPC User Guide.

', 'ResetNetworkInterfaceAttribute' => '

Resets a network interface attribute. You can specify only one attribute at a time.

', 'ResetSnapshotAttribute' => '

Resets permission settings for the specified snapshot.

For more information about modifying snapshot permissions, see Share a snapshot in the Amazon Elastic Compute Cloud User Guide.

', 'RestoreAddressToClassic' => '

This action is deprecated.

Restores an Elastic IP address that was previously moved to the EC2-VPC platform back to the EC2-Classic platform. You cannot move an Elastic IP address that was originally allocated for use in EC2-VPC. The Elastic IP address must not be associated with an instance or network interface.

', 'RestoreImageFromRecycleBin' => '

Restores an AMI from the Recycle Bin. For more information, see Recycle Bin in the Amazon EC2 User Guide.

', 'RestoreManagedPrefixListVersion' => '

Restores the entries from a previous version of a managed prefix list to a new version of the prefix list.

', 'RestoreSnapshotFromRecycleBin' => '

Restores a snapshot from the Recycle Bin. For more information, see Restore snapshots from the Recycle Bin in the Amazon Elastic Compute Cloud User Guide.

', 'RestoreSnapshotTier' => '

Restores an archived Amazon EBS snapshot for use temporarily or permanently, or modifies the restore period or restore type for a snapshot that was previously temporarily restored.

For more information see Restore an archived snapshot and modify the restore period or restore type for a temporarily restored snapshot in the Amazon Elastic Compute Cloud User Guide.

', 'RevokeClientVpnIngress' => '

Removes an ingress authorization rule from a Client VPN endpoint.

', 'RevokeSecurityGroupEgress' => '

Removes the specified outbound (egress) rules from the specified security group.

You can specify rules using either rule IDs or security group rule properties. If you use rule properties, the values that you specify (for example, ports) must match the existing rule\'s values exactly. Each rule has a protocol, from and to ports, and destination (CIDR range, security group, or prefix list). For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code. If the security group rule has a description, you do not need to specify the description to revoke the rule.

For a default VPC, if the values you specify do not match the existing rule\'s values, no error is returned, and the output describes the security group rules that were not revoked.

Amazon Web Services recommends that you describe the security group to verify that the rules were removed.

Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.

', 'RevokeSecurityGroupIngress' => '

Removes the specified inbound (ingress) rules from a security group.

You can specify rules using either rule IDs or security group rule properties. If you use rule properties, the values that you specify (for example, ports) must match the existing rule\'s values exactly. Each rule has a protocol, from and to ports, and source (CIDR range, security group, or prefix list). For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code. If the security group rule has a description, you do not need to specify the description to revoke the rule.

For a default VPC, if the values you specify do not match the existing rule\'s values, no error is returned, and the output describes the security group rules that were not revoked.

For a non-default VPC, if the values you specify do not match the existing rule\'s values, an InvalidPermission.NotFound client error is returned, and no rules are revoked.

Amazon Web Services recommends that you describe the security group to verify that the rules were removed.

Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.

', 'RunInstances' => '

Launches the specified number of instances using an AMI for which you have permissions.

You can specify a number of options, or leave the default options. The following rules apply:

  • If you don\'t specify a subnet ID, we choose a default subnet from your default VPC for you. If you don\'t have a default VPC, you must specify a subnet ID in the request.

  • All instances have a network interface with a primary private IPv4 address. If you don\'t specify this address, we choose one from the IPv4 range of your subnet.

  • Not all instance types support IPv6 addresses. For more information, see Instance types.

  • If you don\'t specify a security group ID, we use the default security group. For more information, see Security groups.

  • If any of the AMIs have a product code attached for which the user has not subscribed, the request fails.

You can create a launch template, which is a resource that contains the parameters to launch an instance. When you launch an instance using RunInstances, you can specify the launch template instead of specifying the launch parameters.

To ensure faster instance launches, break up large requests into smaller batches. For example, create five separate launch requests for 100 instances each instead of one launch request for 500 instances.

An instance is ready for you to use when it\'s in the running state. You can check the state of your instance using DescribeInstances. You can tag instances and EBS volumes during launch, after launch, or both. For more information, see CreateTags and Tagging your Amazon EC2 resources.

Linux instances have access to the public key of the key pair at boot. You can use this key to provide secure access to the instance. Amazon EC2 public images use this feature to provide secure access without passwords. For more information, see Key pairs.

For troubleshooting, see What to do if an instance immediately terminates, and Troubleshooting connecting to your instance.

', 'RunScheduledInstances' => '

Launches the specified Scheduled Instances.

Before you can launch a Scheduled Instance, you must purchase it and obtain an identifier using PurchaseScheduledInstances.

You must launch a Scheduled Instance during its scheduled time period. You can\'t stop or reboot a Scheduled Instance, but you can terminate it as needed. If you terminate a Scheduled Instance before the current scheduled time period ends, you can launch it again after a few minutes. For more information, see Scheduled Instances in the Amazon EC2 User Guide.

', 'SearchLocalGatewayRoutes' => '

Searches for routes in the specified local gateway route table.

', 'SearchTransitGatewayMulticastGroups' => '

Searches one or more transit gateway multicast groups and returns the group membership information.

', 'SearchTransitGatewayRoutes' => '

Searches for routes in the specified transit gateway route table.

', 'SendDiagnosticInterrupt' => '

Sends a diagnostic interrupt to the specified Amazon EC2 instance to trigger a kernel panic (on Linux instances), or a blue screen/stop error (on Windows instances). For instances based on Intel and AMD processors, the interrupt is received as a non-maskable interrupt (NMI).

In general, the operating system crashes and reboots when a kernel panic or stop error is triggered. The operating system can also be configured to perform diagnostic tasks, such as generating a memory dump file, loading a secondary kernel, or obtaining a call trace.

Before sending a diagnostic interrupt to your instance, ensure that its operating system is configured to perform the required diagnostic tasks.

For more information about configuring your operating system to generate a crash dump when a kernel panic or stop error occurs, see Send a diagnostic interrupt (for advanced users) (Linux instances) or Send a diagnostic interrupt (for advanced users) (Windows instances).

', 'StartInstances' => '

Starts an Amazon EBS-backed instance that you\'ve previously stopped.

Instances that use Amazon EBS volumes as their root devices can be quickly stopped and started. When an instance is stopped, the compute resources are released and you are not billed for instance usage. However, your root partition Amazon EBS volume remains and continues to persist your data, and you are charged for Amazon EBS volume usage. You can restart your instance at any time. Every time you start your instance, Amazon EC2 charges a one-minute minimum for instance usage, and thereafter charges per second for instance usage.

Before stopping an instance, make sure it is in a state from which it can be restarted. Stopping an instance does not preserve data stored in RAM.

Performing this operation on an instance that uses an instance store as its root device returns an error.

If you attempt to start a T3 instance with host tenancy and the unlimited CPU credit option, the request fails. The unlimited CPU credit option is not supported on Dedicated Hosts. Before you start the instance, either change its CPU credit option to standard, or change its tenancy to default or dedicated.

For more information, see Stop and start your instance in the Amazon EC2 User Guide.

', 'StartNetworkInsightsAccessScopeAnalysis' => '

Starts analyzing the specified Network Access Scope.

', 'StartNetworkInsightsAnalysis' => '

Starts analyzing the specified path. If the path is reachable, the operation returns the shortest feasible path.

', 'StartVpcEndpointServicePrivateDnsVerification' => '

Initiates the verification process to prove that the service provider owns the private DNS name domain for the endpoint service.

The service provider must successfully perform the verification before the consumer can use the name to access the service.

Before the service provider runs this command, they must add a record to the DNS server.

', 'StopInstances' => '

Stops an Amazon EBS-backed instance. For more information, see Stop and start your instance in the Amazon EC2 User Guide.

You can use the Stop action to hibernate an instance if the instance is enabled for hibernation and it meets the hibernation prerequisites. For more information, see Hibernate your instance in the Amazon EC2 User Guide.

We don\'t charge usage for a stopped instance, or data transfer fees; however, your root partition Amazon EBS volume remains and continues to persist your data, and you are charged for Amazon EBS volume usage. Every time you start your instance, Amazon EC2 charges a one-minute minimum for instance usage, and thereafter charges per second for instance usage.

You can\'t stop or hibernate instance store-backed instances. You can\'t use the Stop action to hibernate Spot Instances, but you can specify that Amazon EC2 should hibernate Spot Instances when they are interrupted. For more information, see Hibernating interrupted Spot Instances in the Amazon EC2 User Guide.

When you stop or hibernate an instance, we shut it down. You can restart your instance at any time. Before stopping or hibernating an instance, make sure it is in a state from which it can be restarted. Stopping an instance does not preserve data stored in RAM, but hibernating an instance does preserve data stored in RAM. If an instance cannot hibernate successfully, a normal shutdown occurs.

Stopping and hibernating an instance is different to rebooting or terminating it. For example, when you stop or hibernate an instance, the root device and any other devices attached to the instance persist. When you terminate an instance, the root device and any other devices attached during the instance launch are automatically deleted. For more information about the differences between rebooting, stopping, hibernating, and terminating instances, see Instance lifecycle in the Amazon EC2 User Guide.

When you stop an instance, we attempt to shut it down forcibly after a short while. If your instance appears stuck in the stopping state after a period of time, there may be an issue with the underlying host computer. For more information, see Troubleshoot stopping your instance in the Amazon EC2 User Guide.

', 'TerminateClientVpnConnections' => '

Terminates active Client VPN endpoint connections. This action can be used to terminate a specific client connection, or up to five connections established by a specific user.

', 'TerminateInstances' => '

Shuts down the specified instances. This operation is idempotent; if you terminate an instance more than once, each call succeeds.

If you specify multiple instances and the request fails (for example, because of a single incorrect instance ID), none of the instances are terminated.

If you terminate multiple instances across multiple Availability Zones, and one or more of the specified instances are enabled for termination protection, the request fails with the following results:

  • The specified instances that are in the same Availability Zone as the protected instance are not terminated.

  • The specified instances that are in different Availability Zones, where no other specified instances are protected, are successfully terminated.

For example, say you have the following instances:

  • Instance A: us-east-1a; Not protected

  • Instance B: us-east-1a; Not protected

  • Instance C: us-east-1b; Protected

  • Instance D: us-east-1b; not protected

If you attempt to terminate all of these instances in the same request, the request reports failure with the following results:

  • Instance A and Instance B are successfully terminated because none of the specified instances in us-east-1a are enabled for termination protection.

  • Instance C and Instance D fail to terminate because at least one of the specified instances in us-east-1b (Instance C) is enabled for termination protection.

Terminated instances remain visible after termination (for approximately one hour).

By default, Amazon EC2 deletes all EBS volumes that were attached when the instance launched. Volumes attached after instance launch continue running.

You can stop, start, and terminate EBS-backed instances. You can only terminate instance store-backed instances. What happens to an instance differs if you stop it or terminate it. For example, when you stop an instance, the root device and any other devices attached to the instance persist. When you terminate an instance, any attached EBS volumes with the DeleteOnTermination block device mapping parameter set to true are automatically deleted. For more information about the differences between stopping and terminating instances, see Instance lifecycle in the Amazon EC2 User Guide.

For more information about troubleshooting, see Troubleshooting terminating your instance in the Amazon EC2 User Guide.

', 'UnassignIpv6Addresses' => '

Unassigns one or more IPv6 addresses IPv4 Prefix Delegation prefixes from a network interface.

', 'UnassignPrivateIpAddresses' => '

Unassigns one or more secondary private IP addresses, or IPv4 Prefix Delegation prefixes from a network interface.

', 'UnassignPrivateNatGatewayAddress' => '

Unassigns secondary private IPv4 addresses from a private NAT gateway. You cannot unassign your primary private IP. For more information, see Edit secondary IP address associations in the Amazon VPC User Guide.

While unassigning is in progress, you cannot assign/unassign additional IP addresses while the connections are being drained. You are, however, allowed to delete the NAT gateway.

A private IP address will only be released at the end of MaxDrainDurationSeconds. The private IP addresses stay associated and support the existing connections, but do not support any new connections (new connections are distributed across the remaining assigned private IP address). After the existing connections drain out, the private IP addresses are released.

', 'UnlockSnapshot' => '

Unlocks a snapshot that is locked in governance mode or that is locked in compliance mode but still in the cooling-off period. You can\'t unlock a snapshot that is locked in compliance mode after the cooling-off period has expired.

', 'UnmonitorInstances' => '

Disables detailed monitoring for a running instance. For more information, see Monitoring your instances and volumes in the Amazon EC2 User Guide.

', 'UpdateSecurityGroupRuleDescriptionsEgress' => '

Updates the description of an egress (outbound) security group rule. You can replace an existing description, or add a description to a rule that did not have one previously. You can remove a description for a security group rule by omitting the description parameter in the request.

', 'UpdateSecurityGroupRuleDescriptionsIngress' => '

Updates the description of an ingress (inbound) security group rule. You can replace an existing description, or add a description to a rule that did not have one previously. You can remove a description for a security group rule by omitting the description parameter in the request.

', 'WithdrawByoipCidr' => '

Stops advertising an address range that is provisioned as an address pool.

You can perform this operation at most once every 10 seconds, even if you specify different address ranges each time.

It can take a few minutes before traffic to the specified addresses stops routing to Amazon Web Services because of BGP propagation delays.

', ], 'shapes' => [ 'AcceleratorCount' => [ 'base' => '

The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia chips) on an instance.

', 'refs' => [ 'InstanceRequirements$AcceleratorCount' => '

The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia chips) on an instance.

To exclude accelerator-enabled instance types, set Max to 0.

Default: No minimum or maximum limits

', ], ], 'AcceleratorCountRequest' => [ 'base' => '

The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia chips) on an instance. To exclude accelerator-enabled instance types, set Max to 0.

', 'refs' => [ 'InstanceRequirementsRequest$AcceleratorCount' => '

The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia chips) on an instance.

To exclude accelerator-enabled instance types, set Max to 0.

Default: No minimum or maximum limits

', ], ], 'AcceleratorManufacturer' => [ 'base' => NULL, 'refs' => [ 'AcceleratorManufacturerSet$member' => NULL, ], ], 'AcceleratorManufacturerSet' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$AcceleratorManufacturers' => '

Indicates whether instance types must have accelerators by specific manufacturers.

  • For instance types with Amazon Web Services devices, specify amazon-web-services.

  • For instance types with AMD devices, specify amd.

  • For instance types with Habana devices, specify habana.

  • For instance types with NVIDIA devices, specify nvidia.

  • For instance types with Xilinx devices, specify xilinx.

Default: Any manufacturer

', 'InstanceRequirementsRequest$AcceleratorManufacturers' => '

Indicates whether instance types must have accelerators by specific manufacturers.

  • For instance types with Amazon Web Services devices, specify amazon-web-services.

  • For instance types with AMD devices, specify amd.

  • For instance types with Habana devices, specify habana.

  • For instance types with NVIDIA devices, specify nvidia.

  • For instance types with Xilinx devices, specify xilinx.

Default: Any manufacturer

', ], ], 'AcceleratorName' => [ 'base' => NULL, 'refs' => [ 'AcceleratorNameSet$member' => NULL, ], ], 'AcceleratorNameSet' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$AcceleratorNames' => '

The accelerators that must be on the instance type.

  • For instance types with NVIDIA A10G GPUs, specify a10g.

  • For instance types with NVIDIA A100 GPUs, specify a100.

  • For instance types with NVIDIA H100 GPUs, specify h100.

  • For instance types with Amazon Web Services Inferentia chips, specify inferentia.

  • For instance types with NVIDIA GRID K520 GPUs, specify k520.

  • For instance types with NVIDIA K80 GPUs, specify k80.

  • For instance types with NVIDIA M60 GPUs, specify m60.

  • For instance types with AMD Radeon Pro V520 GPUs, specify radeon-pro-v520.

  • For instance types with NVIDIA T4 GPUs, specify t4.

  • For instance types with NVIDIA T4G GPUs, specify t4g.

  • For instance types with Xilinx VU9P FPGAs, specify vu9p.

  • For instance types with NVIDIA V100 GPUs, specify v100.

Default: Any accelerator

', 'InstanceRequirementsRequest$AcceleratorNames' => '

The accelerators that must be on the instance type.

  • For instance types with NVIDIA A10G GPUs, specify a10g.

  • For instance types with NVIDIA A100 GPUs, specify a100.

  • For instance types with NVIDIA H100 GPUs, specify h100.

  • For instance types with Amazon Web Services Inferentia chips, specify inferentia.

  • For instance types with NVIDIA GRID K520 GPUs, specify k520.

  • For instance types with NVIDIA K80 GPUs, specify k80.

  • For instance types with NVIDIA M60 GPUs, specify m60.

  • For instance types with AMD Radeon Pro V520 GPUs, specify radeon-pro-v520.

  • For instance types with NVIDIA T4 GPUs, specify t4.

  • For instance types with NVIDIA T4G GPUs, specify t4g.

  • For instance types with Xilinx VU9P FPGAs, specify vu9p.

  • For instance types with NVIDIA V100 GPUs, specify v100.

Default: Any accelerator

', ], ], 'AcceleratorTotalMemoryMiB' => [ 'base' => '

The minimum and maximum amount of total accelerator memory, in MiB.

', 'refs' => [ 'InstanceRequirements$AcceleratorTotalMemoryMiB' => '

The minimum and maximum amount of total accelerator memory, in MiB.

Default: No minimum or maximum limits

', ], ], 'AcceleratorTotalMemoryMiBRequest' => [ 'base' => '

The minimum and maximum amount of total accelerator memory, in MiB.

', 'refs' => [ 'InstanceRequirementsRequest$AcceleratorTotalMemoryMiB' => '

The minimum and maximum amount of total accelerator memory, in MiB.

Default: No minimum or maximum limits

', ], ], 'AcceleratorType' => [ 'base' => NULL, 'refs' => [ 'AcceleratorTypeSet$member' => NULL, ], ], 'AcceleratorTypeSet' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$AcceleratorTypes' => '

The accelerator types that must be on the instance type.

  • For instance types with GPU accelerators, specify gpu.

  • For instance types with FPGA accelerators, specify fpga.

  • For instance types with inference accelerators, specify inference.

Default: Any accelerator type

', 'InstanceRequirementsRequest$AcceleratorTypes' => '

The accelerator types that must be on the instance type.

  • To include instance types with GPU hardware, specify gpu.

  • To include instance types with FPGA hardware, specify fpga.

  • To include instance types with inference hardware, specify inference.

Default: Any accelerator type

', ], ], 'AcceptAddressTransferRequest' => [ 'base' => NULL, 'refs' => [], ], 'AcceptAddressTransferResult' => [ 'base' => NULL, 'refs' => [], ], 'AcceptReservedInstancesExchangeQuoteRequest' => [ 'base' => '

Contains the parameters for accepting the quote.

', 'refs' => [], ], 'AcceptReservedInstancesExchangeQuoteResult' => [ 'base' => '

The result of the exchange and whether it was successful.

', 'refs' => [], ], 'AcceptTransitGatewayMulticastDomainAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'AcceptTransitGatewayMulticastDomainAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'AcceptTransitGatewayPeeringAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'AcceptTransitGatewayPeeringAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'AcceptTransitGatewayVpcAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'AcceptTransitGatewayVpcAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'AcceptVpcEndpointConnectionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'AcceptVpcEndpointConnectionsResult' => [ 'base' => NULL, 'refs' => [], ], 'AcceptVpcPeeringConnectionRequest' => [ 'base' => NULL, 'refs' => [], ], 'AcceptVpcPeeringConnectionResult' => [ 'base' => NULL, 'refs' => [], ], 'AccessScopeAnalysisFinding' => [ 'base' => '

Describes a finding for a Network Access Scope.

', 'refs' => [ 'AccessScopeAnalysisFindingList$member' => NULL, ], ], 'AccessScopeAnalysisFindingList' => [ 'base' => NULL, 'refs' => [ 'GetNetworkInsightsAccessScopeAnalysisFindingsResult$AnalysisFindings' => '

The findings associated with Network Access Scope Analysis.

', ], ], 'AccessScopePath' => [ 'base' => '

Describes a path.

', 'refs' => [ 'AccessScopePathList$member' => NULL, ], ], 'AccessScopePathList' => [ 'base' => NULL, 'refs' => [ 'NetworkInsightsAccessScopeContent$MatchPaths' => '

The paths to match.

', 'NetworkInsightsAccessScopeContent$ExcludePaths' => '

The paths to exclude.

', ], ], 'AccessScopePathListRequest' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInsightsAccessScopeRequest$MatchPaths' => '

The paths to match.

', 'CreateNetworkInsightsAccessScopeRequest$ExcludePaths' => '

The paths to exclude.

', ], ], 'AccessScopePathRequest' => [ 'base' => '

Describes a path.

', 'refs' => [ 'AccessScopePathListRequest$member' => NULL, ], ], 'AccountAttribute' => [ 'base' => '

Describes an account attribute.

', 'refs' => [ 'AccountAttributeList$member' => NULL, ], ], 'AccountAttributeList' => [ 'base' => NULL, 'refs' => [ 'DescribeAccountAttributesResult$AccountAttributes' => '

Information about the account attributes.

', ], ], 'AccountAttributeName' => [ 'base' => NULL, 'refs' => [ 'AccountAttributeNameStringList$member' => NULL, ], ], 'AccountAttributeNameStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeAccountAttributesRequest$AttributeNames' => '

The account attribute names.

', ], ], 'AccountAttributeValue' => [ 'base' => '

Describes a value of an account attribute.

', 'refs' => [ 'AccountAttributeValueList$member' => NULL, ], ], 'AccountAttributeValueList' => [ 'base' => NULL, 'refs' => [ 'AccountAttribute$AttributeValues' => '

The values for the account attribute.

', ], ], 'ActiveInstance' => [ 'base' => '

Describes a running instance in a Spot Fleet.

', 'refs' => [ 'ActiveInstanceSet$member' => NULL, ], ], 'ActiveInstanceSet' => [ 'base' => NULL, 'refs' => [ 'DescribeFleetInstancesResult$ActiveInstances' => '

The running instances. This list is refreshed periodically and might be out of date.

', 'DescribeSpotFleetInstancesResponse$ActiveInstances' => '

The running instances. This list is refreshed periodically and might be out of date.

', ], ], 'ActivityStatus' => [ 'base' => NULL, 'refs' => [ 'SpotFleetRequestConfig$ActivityStatus' => '

The progress of the Spot Fleet request. If there is an error, the status is error. After all requests are placed, the status is pending_fulfillment. If the size of the fleet is equal to or greater than its target capacity, the status is fulfilled. If the size of the fleet is decreased, the status is pending_termination while Spot Instances are terminating.

', ], ], 'AddIpamOperatingRegion' => [ 'base' => '

Add an operating Region to an IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

For more information about operating Regions, see Create an IPAM in the Amazon VPC IPAM User Guide.

', 'refs' => [ 'AddIpamOperatingRegionSet$member' => NULL, ], ], 'AddIpamOperatingRegionSet' => [ 'base' => NULL, 'refs' => [ 'CreateIpamRequest$OperatingRegions' => '

The operating Regions for the IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

For more information about operating Regions, see Create an IPAM in the Amazon VPC IPAM User Guide.

', 'CreateIpamResourceDiscoveryRequest$OperatingRegions' => '

Operating Regions for the IPAM resource discovery. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

', 'ModifyIpamRequest$AddOperatingRegions' => '

Choose the operating Regions for the IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

For more information about operating Regions, see Create an IPAM in the Amazon VPC IPAM User Guide.

', 'ModifyIpamResourceDiscoveryRequest$AddOperatingRegions' => '

Add operating Regions to the resource discovery. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

', ], ], 'AddPrefixListEntries' => [ 'base' => NULL, 'refs' => [ 'CreateManagedPrefixListRequest$Entries' => '

One or more entries for the prefix list.

', 'ModifyManagedPrefixListRequest$AddEntries' => '

One or more entries to add to the prefix list.

', ], ], 'AddPrefixListEntry' => [ 'base' => '

An entry for a prefix list.

', 'refs' => [ 'AddPrefixListEntries$member' => NULL, ], ], 'AddedPrincipal' => [ 'base' => '

Describes a principal.

', 'refs' => [ 'AddedPrincipalSet$member' => NULL, ], ], 'AddedPrincipalSet' => [ 'base' => NULL, 'refs' => [ 'ModifyVpcEndpointServicePermissionsResult$AddedPrincipals' => '

Information about the added principals.

', ], ], 'AdditionalDetail' => [ 'base' => '

Describes an additional detail for a path analysis. For more information, see Reachability Analyzer additional detail codes.

', 'refs' => [ 'AdditionalDetailList$member' => NULL, ], ], 'AdditionalDetailList' => [ 'base' => NULL, 'refs' => [ 'PathComponent$AdditionalDetails' => '

The additional details.

', ], ], 'Address' => [ 'base' => '

Describes an Elastic IP address, or a carrier IP address.

', 'refs' => [ 'AddressList$member' => NULL, ], ], 'AddressAttribute' => [ 'base' => '

The attributes associated with an Elastic IP address.

', 'refs' => [ 'AddressSet$member' => NULL, 'ModifyAddressAttributeResult$Address' => '

Information about the Elastic IP address.

', 'ResetAddressAttributeResult$Address' => '

Information about the IP address.

', ], ], 'AddressAttributeName' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressesAttributeRequest$Attribute' => '

The attribute of the IP address.

', 'ResetAddressAttributeRequest$Attribute' => '

The attribute of the IP address.

', ], ], 'AddressFamily' => [ 'base' => NULL, 'refs' => [ 'CreateIpamPoolRequest$AddressFamily' => '

The IP protocol assigned to this IPAM pool. You must choose either IPv4 or IPv6 protocol for a pool.

', 'IpamPool$AddressFamily' => '

The address family of the pool.

', ], ], 'AddressList' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressesResult$Addresses' => '

Information about the Elastic IP addresses.

', ], ], 'AddressMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressesAttributeRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'AddressSet' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressesAttributeResult$Addresses' => '

Information about the IP addresses.

', ], ], 'AddressTransfer' => [ 'base' => '

Details on the Elastic IP address transfer. For more information, see Transfer Elastic IP addresses in the Amazon Virtual Private Cloud User Guide.

', 'refs' => [ 'AcceptAddressTransferResult$AddressTransfer' => '

An Elastic IP address transfer.

', 'AddressTransferList$member' => NULL, 'DisableAddressTransferResult$AddressTransfer' => '

An Elastic IP address transfer.

', 'EnableAddressTransferResult$AddressTransfer' => '

An Elastic IP address transfer.

', ], ], 'AddressTransferList' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressTransfersResult$AddressTransfers' => '

The Elastic IP address transfer.

', ], ], 'AddressTransferStatus' => [ 'base' => NULL, 'refs' => [ 'AddressTransfer$AddressTransferStatus' => '

The Elastic IP address transfer status.

', ], ], 'AdvertiseByoipCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'AdvertiseByoipCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'Affinity' => [ 'base' => NULL, 'refs' => [ 'ModifyInstancePlacementRequest$Affinity' => '

The affinity setting for the instance.

', ], ], 'AllocateAddressRequest' => [ 'base' => NULL, 'refs' => [], ], 'AllocateAddressResult' => [ 'base' => NULL, 'refs' => [], ], 'AllocateHostsRequest' => [ 'base' => NULL, 'refs' => [], ], 'AllocateHostsResult' => [ 'base' => '

Contains the output of AllocateHosts.

', 'refs' => [], ], 'AllocateIpamPoolCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'AllocateIpamPoolCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'AllocationId' => [ 'base' => NULL, 'refs' => [ 'AddressAttribute$AllocationId' => '

[EC2-VPC] The allocation ID.

', 'AllocationIdList$member' => NULL, 'AllocationIds$member' => NULL, 'AssociateAddressRequest$AllocationId' => '

The allocation ID. This is required.

', 'CreateNatGatewayRequest$AllocationId' => '

[Public NAT gateways only] The allocation ID of an Elastic IP address to associate with the NAT gateway. You cannot specify an Elastic IP address with a private NAT gateway. If the Elastic IP address is associated with another resource, you must first disassociate it.

', 'DisableAddressTransferRequest$AllocationId' => '

The allocation ID of an Elastic IP address.

', 'EnableAddressTransferRequest$AllocationId' => '

The allocation ID of an Elastic IP address.

', 'ModifyAddressAttributeRequest$AllocationId' => '

[EC2-VPC] The allocation ID.

', 'ReleaseAddressRequest$AllocationId' => '

The allocation ID. This parameter is required.

', 'ResetAddressAttributeRequest$AllocationId' => '

[EC2-VPC] The allocation ID.

', ], ], 'AllocationIdList' => [ 'base' => NULL, 'refs' => [ 'AssociateNatGatewayAddressRequest$AllocationIds' => '

The allocation IDs of EIPs that you want to associate with your NAT gateway.

', 'CreateNatGatewayRequest$SecondaryAllocationIds' => '

Secondary EIP allocation IDs. For more information, see Create a NAT gateway in the Amazon VPC User Guide.

', 'DescribeAddressTransfersRequest$AllocationIds' => '

The allocation IDs of Elastic IP addresses.

', 'DescribeAddressesRequest$AllocationIds' => '

Information about the allocation IDs.

', ], ], 'AllocationIds' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressesAttributeRequest$AllocationIds' => '

[EC2-VPC] The allocation IDs.

', ], ], 'AllocationState' => [ 'base' => NULL, 'refs' => [ 'Host$State' => '

The Dedicated Host\'s state.

', ], ], 'AllocationStrategy' => [ 'base' => NULL, 'refs' => [ 'SpotFleetRequestConfigData$AllocationStrategy' => '

The strategy that determines how to allocate the target Spot Instance capacity across the Spot Instance pools specified by the Spot Fleet launch configuration. For more information, see Allocation strategies for Spot Instances in the Amazon EC2 User Guide.

priceCapacityOptimized (recommended)

Spot Fleet identifies the pools with the highest capacity availability for the number of instances that are launching. This means that we will request Spot Instances from the pools that we believe have the lowest chance of interruption in the near term. Spot Fleet then requests Spot Instances from the lowest priced of these pools.

capacityOptimized

Spot Fleet identifies the pools with the highest capacity availability for the number of instances that are launching. This means that we will request Spot Instances from the pools that we believe have the lowest chance of interruption in the near term. To give certain instance types a higher chance of launching first, use capacityOptimizedPrioritized. Set a priority for each instance type by using the Priority parameter for LaunchTemplateOverrides. You can assign the same priority to different LaunchTemplateOverrides. EC2 implements the priorities on a best-effort basis, but optimizes for capacity first. capacityOptimizedPrioritized is supported only if your Spot Fleet uses a launch template. Note that if the OnDemandAllocationStrategy is set to prioritized, the same priority is applied when fulfilling On-Demand capacity.

diversified

Spot Fleet requests instances from all of the Spot Instance pools that you specify.

lowestPrice

Spot Fleet requests instances from the lowest priced Spot Instance pool that has available capacity. If the lowest priced pool doesn\'t have available capacity, the Spot Instances come from the next lowest priced pool that has available capacity. If a pool runs out of capacity before fulfilling your desired capacity, Spot Fleet will continue to fulfill your request by drawing from the next lowest priced pool. To ensure that your desired capacity is met, you might receive Spot Instances from several pools. Because this strategy only considers instance price and not capacity availability, it might lead to high interruption rates.

Default: lowestPrice

', ], ], 'AllocationType' => [ 'base' => NULL, 'refs' => [ 'CapacityAllocation$AllocationType' => '

The usage type. used indicates that the instance capacity is in use by instances that are running in the Capacity Reservation.

', ], ], 'AllowedInstanceType' => [ 'base' => NULL, 'refs' => [ 'AllowedInstanceTypeSet$member' => NULL, ], ], 'AllowedInstanceTypeSet' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$AllowedInstanceTypes' => '

The instance types to apply your specified attributes against. All other instance types are ignored, even if they match your specified attributes.

You can use strings with one or more wild cards, represented by an asterisk (*), to allow an instance type, size, or generation. The following are examples: m5.8xlarge, c5*.*, m5a.*, r*, *3*.

For example, if you specify c5*,Amazon EC2 will allow the entire C5 instance family, which includes all C5a and C5n instance types. If you specify m5a.*, Amazon EC2 will allow all the M5a instance types, but not the M5n instance types.

If you specify AllowedInstanceTypes, you can\'t specify ExcludedInstanceTypes.

Default: All instance types

', 'InstanceRequirementsRequest$AllowedInstanceTypes' => '

The instance types to apply your specified attributes against. All other instance types are ignored, even if they match your specified attributes.

You can use strings with one or more wild cards, represented by an asterisk (*), to allow an instance type, size, or generation. The following are examples: m5.8xlarge, c5*.*, m5a.*, r*, *3*.

For example, if you specify c5*,Amazon EC2 will allow the entire C5 instance family, which includes all C5a and C5n instance types. If you specify m5a.*, Amazon EC2 will allow all the M5a instance types, but not the M5n instance types.

If you specify AllowedInstanceTypes, you can\'t specify ExcludedInstanceTypes.

Default: All instance types

', ], ], 'AllowedPrincipal' => [ 'base' => '

Describes a principal.

', 'refs' => [ 'AllowedPrincipalSet$member' => NULL, ], ], 'AllowedPrincipalSet' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcEndpointServicePermissionsResult$AllowedPrincipals' => '

Information about the allowed principals.

', ], ], 'AllowsMultipleInstanceTypes' => [ 'base' => NULL, 'refs' => [ 'Host$AllowsMultipleInstanceTypes' => '

Indicates whether the Dedicated Host supports multiple instance types of the same instance family. If the value is on, the Dedicated Host supports multiple instance types in the instance family. If the value is off, the Dedicated Host supports a single instance type only.

', ], ], 'AlternatePathHint' => [ 'base' => '

Describes an potential intermediate component of a feasible path.

', 'refs' => [ 'AlternatePathHintList$member' => NULL, ], ], 'AlternatePathHintList' => [ 'base' => NULL, 'refs' => [ 'NetworkInsightsAnalysis$AlternatePathHints' => '

Potential intermediate components.

', ], ], 'AmdSevSnpSpecification' => [ 'base' => NULL, 'refs' => [ 'CpuOptions$AmdSevSnp' => '

Indicates whether the instance is enabled for AMD SEV-SNP. For more information, see AMD SEV-SNP.

', 'CpuOptionsRequest$AmdSevSnp' => '

Indicates whether to enable the instance for AMD SEV-SNP. AMD SEV-SNP is supported with M6a, R6a, and C6a instance types only. For more information, see AMD SEV-SNP.

', 'LaunchTemplateCpuOptions$AmdSevSnp' => '

Indicates whether the instance is enabled for AMD SEV-SNP. For more information, see AMD SEV-SNP.

', 'LaunchTemplateCpuOptionsRequest$AmdSevSnp' => '

Indicates whether to enable the instance for AMD SEV-SNP. AMD SEV-SNP is supported with M6a, R6a, and C6a instance types only. For more information, see AMD SEV-SNP.

', ], ], 'AnalysisAclRule' => [ 'base' => '

Describes a network access control (ACL) rule.

', 'refs' => [ 'Explanation$AclRule' => '

The network ACL rule.

', 'PathComponent$AclRule' => '

The network ACL rule.

', ], ], 'AnalysisComponent' => [ 'base' => '

Describes a path component.

', 'refs' => [ 'AdditionalDetail$Component' => '

The path component.

', 'AdditionalDetail$VpcEndpointService' => '

The VPC endpoint service.

', 'AnalysisComponentList$member' => NULL, 'AnalysisLoadBalancerTarget$Instance' => '

Information about the instance.

', 'Explanation$Acl' => '

The network ACL.

', 'Explanation$AttachedTo' => '

The resource to which the component is attached.

', 'Explanation$Component' => '

The component.

', 'Explanation$CustomerGateway' => '

The customer gateway.

', 'Explanation$Destination' => '

The destination.

', 'Explanation$DestinationVpc' => '

The destination VPC.

', 'Explanation$IngressRouteTable' => '

The route table.

', 'Explanation$InternetGateway' => '

The internet gateway.

', 'Explanation$LoadBalancerTargetGroup' => '

The target group.

', 'Explanation$ElasticLoadBalancerListener' => '

The load balancer listener.

', 'Explanation$NatGateway' => '

The NAT gateway.

', 'Explanation$NetworkInterface' => '

The network interface.

', 'Explanation$VpcPeeringConnection' => '

The VPC peering connection.

', 'Explanation$PrefixList' => '

The prefix list.

', 'Explanation$RouteTable' => '

The route table.

', 'Explanation$SecurityGroup' => '

The security group.

', 'Explanation$SourceVpc' => '

The source VPC.

', 'Explanation$Subnet' => '

The subnet.

', 'Explanation$SubnetRouteTable' => '

The route table for the subnet.

', 'Explanation$Vpc' => '

The component VPC.

', 'Explanation$VpcEndpoint' => '

The VPC endpoint.

', 'Explanation$VpnConnection' => '

The VPN connection.

', 'Explanation$VpnGateway' => '

The VPN gateway.

', 'Explanation$TransitGateway' => '

The transit gateway.

', 'Explanation$TransitGatewayRouteTable' => '

The transit gateway route table.

', 'Explanation$TransitGatewayAttachment' => '

The transit gateway attachment.

', 'PathComponent$AttachedTo' => '

The resource to which the path component is attached.

', 'PathComponent$Component' => '

The component.

', 'PathComponent$DestinationVpc' => '

The destination VPC.

', 'PathComponent$SourceVpc' => '

The source VPC.

', 'PathComponent$Subnet' => '

The subnet.

', 'PathComponent$Vpc' => '

The component VPC.

', 'PathComponent$TransitGateway' => '

The transit gateway.

', 'PathComponent$ElasticLoadBalancerListener' => '

The load balancer listener.

', ], ], 'AnalysisComponentList' => [ 'base' => NULL, 'refs' => [ 'AdditionalDetail$LoadBalancers' => '

The load balancers.

', 'Explanation$LoadBalancerTargetGroups' => '

The target groups.

', 'Explanation$SecurityGroups' => '

The security groups.

', ], ], 'AnalysisLoadBalancerListener' => [ 'base' => '

Describes a load balancer listener.

', 'refs' => [ 'Explanation$ClassicLoadBalancerListener' => '

The listener for a Classic Load Balancer.

', ], ], 'AnalysisLoadBalancerTarget' => [ 'base' => '

Describes a load balancer target.

', 'refs' => [ 'Explanation$LoadBalancerTarget' => '

The target.

', ], ], 'AnalysisPacketHeader' => [ 'base' => '

Describes a header. Reflects any changes made by a component as traffic passes through. The fields of an inbound header are null except for the first component of a path.

', 'refs' => [ 'PathComponent$OutboundHeader' => '

The outbound header.

', 'PathComponent$InboundHeader' => '

The inbound header.

', ], ], 'AnalysisRouteTableRoute' => [ 'base' => '

Describes a route table route.

', 'refs' => [ 'Explanation$RouteTableRoute' => '

The route table route.

', 'PathComponent$RouteTableRoute' => '

The route table route.

', ], ], 'AnalysisSecurityGroupRule' => [ 'base' => '

Describes a security group rule.

', 'refs' => [ 'Explanation$SecurityGroupRule' => '

The security group rule.

', 'PathComponent$SecurityGroupRule' => '

The security group rule.

', ], ], 'AnalysisStatus' => [ 'base' => NULL, 'refs' => [ 'GetNetworkInsightsAccessScopeAnalysisFindingsResult$AnalysisStatus' => '

The status of Network Access Scope Analysis.

', 'NetworkInsightsAccessScopeAnalysis$Status' => '

The status.

', 'NetworkInsightsAnalysis$Status' => '

The status of the network insights analysis.

', ], ], 'ApplianceModeSupportValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayVpcAttachmentRequestOptions$ApplianceModeSupport' => '

Enable or disable support for appliance mode. If enabled, a traffic flow between a source and destination uses the same Availability Zone for the VPC attachment for the lifetime of that flow. The default is disable.

', 'ModifyTransitGatewayVpcAttachmentRequestOptions$ApplianceModeSupport' => '

Enable or disable support for appliance mode. If enabled, a traffic flow between a source and destination uses the same Availability Zone for the VPC attachment for the lifetime of that flow. The default is disable.

', 'TransitGatewayVpcAttachmentOptions$ApplianceModeSupport' => '

Indicates whether appliance mode support is enabled.

', ], ], 'ApplySecurityGroupsToClientVpnTargetNetworkRequest' => [ 'base' => NULL, 'refs' => [], ], 'ApplySecurityGroupsToClientVpnTargetNetworkResult' => [ 'base' => NULL, 'refs' => [], ], 'ArchitectureType' => [ 'base' => NULL, 'refs' => [ 'ArchitectureTypeList$member' => NULL, 'ArchitectureTypeSet$member' => NULL, ], ], 'ArchitectureTypeList' => [ 'base' => NULL, 'refs' => [ 'ProcessorInfo$SupportedArchitectures' => '

The architectures supported by the instance type.

', ], ], 'ArchitectureTypeSet' => [ 'base' => NULL, 'refs' => [ 'GetInstanceTypesFromInstanceRequirementsRequest$ArchitectureTypes' => '

The processor architecture type.

', 'InstanceRequirementsWithMetadataRequest$ArchitectureTypes' => '

The architecture type.

', ], ], 'ArchitectureValues' => [ 'base' => NULL, 'refs' => [ 'Image$Architecture' => '

The architecture of the image.

', 'ImportInstanceLaunchSpecification$Architecture' => '

The architecture of the instance.

', 'Instance$Architecture' => '

The architecture of the image.

', 'RegisterImageRequest$Architecture' => '

The architecture of the AMI.

Default: For Amazon EBS-backed AMIs, i386. For instance store-backed AMIs, the architecture specified in the manifest file.

', ], ], 'ArnList' => [ 'base' => NULL, 'refs' => [ 'NetworkInsightsAnalysis$FilterInArns' => '

The Amazon Resource Names (ARN) of the resources that the path must traverse.

', 'StartNetworkInsightsAnalysisRequest$FilterInArns' => '

The Amazon Resource Names (ARN) of the resources that the path must traverse.

', ], ], 'AsnAssociation' => [ 'base' => '

An Autonomous System Number (ASN) and BYOIP CIDR association.

', 'refs' => [ 'AsnAssociationSet$member' => NULL, 'AssociateIpamByoasnResult$AsnAssociation' => '

The ASN and BYOIP CIDR association.

', 'DisassociateIpamByoasnResult$AsnAssociation' => '

An ASN and BYOIP CIDR association.

', ], ], 'AsnAssociationSet' => [ 'base' => NULL, 'refs' => [ 'ByoipCidr$AsnAssociations' => '

The BYOIP CIDR associations with ASNs.

', ], ], 'AsnAssociationState' => [ 'base' => NULL, 'refs' => [ 'AsnAssociation$State' => '

The association\'s state.

', ], ], 'AsnAuthorizationContext' => [ 'base' => '

Provides authorization for Amazon to bring an Autonomous System Number (ASN) to a specific Amazon Web Services account using bring your own ASN (BYOASN). For details on the format of the message and signature, see Tutorial: Bring your ASN to IPAM in the Amazon VPC IPAM guide.

', 'refs' => [ 'ProvisionIpamByoasnRequest$AsnAuthorizationContext' => '

An ASN authorization context.

', ], ], 'AsnState' => [ 'base' => NULL, 'refs' => [ 'Byoasn$State' => '

The provisioning state of the BYOASN.

', ], ], 'AssetId' => [ 'base' => NULL, 'refs' => [ 'AssetIdList$member' => NULL, 'Host$AssetId' => '

The ID of the Outpost hardware asset on which the Dedicated Host is allocated.

', ], ], 'AssetIdList' => [ 'base' => NULL, 'refs' => [ 'AllocateHostsRequest$AssetIds' => '

The IDs of the Outpost hardware assets on which to allocate the Dedicated Hosts. Targeting specific hardware assets on an Outpost can help to minimize latency between your workloads. This parameter is supported only if you specify OutpostArn. If you are allocating the Dedicated Hosts in a Region, omit this parameter.

  • If you specify this parameter, you can omit Quantity. In this case, Amazon EC2 allocates a Dedicated Host on each specified hardware asset.

  • If you specify both AssetIds and Quantity, then the value for Quantity must be equal to the number of asset IDs specified.

', ], ], 'AssignIpv6AddressesRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssignIpv6AddressesResult' => [ 'base' => NULL, 'refs' => [], ], 'AssignPrivateIpAddressesRequest' => [ 'base' => '

Contains the parameters for AssignPrivateIpAddresses.

', 'refs' => [], ], 'AssignPrivateIpAddressesResult' => [ 'base' => NULL, 'refs' => [], ], 'AssignPrivateNatGatewayAddressRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssignPrivateNatGatewayAddressResult' => [ 'base' => NULL, 'refs' => [], ], 'AssignedPrivateIpAddress' => [ 'base' => '

Describes the private IP addresses assigned to a network interface.

', 'refs' => [ 'AssignedPrivateIpAddressList$member' => NULL, ], ], 'AssignedPrivateIpAddressList' => [ 'base' => NULL, 'refs' => [ 'AssignPrivateIpAddressesResult$AssignedPrivateIpAddresses' => '

The private IP addresses assigned to the network interface.

', ], ], 'AssociateAddressRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateAddressResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateClientVpnTargetNetworkRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateClientVpnTargetNetworkResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateDhcpOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateEnclaveCertificateIamRoleRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateEnclaveCertificateIamRoleResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateIamInstanceProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateIamInstanceProfileResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateInstanceEventWindowRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateInstanceEventWindowResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateIpamByoasnRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateIpamByoasnResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateIpamResourceDiscoveryRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateIpamResourceDiscoveryResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateNatGatewayAddressRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateNatGatewayAddressResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateRouteTableResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateSubnetCidrBlockRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateSubnetCidrBlockResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTransitGatewayMulticastDomainRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTransitGatewayMulticastDomainResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTransitGatewayPolicyTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTransitGatewayPolicyTableResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTransitGatewayRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTransitGatewayRouteTableResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTrunkInterfaceRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTrunkInterfaceResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateVpcCidrBlockRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateVpcCidrBlockResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociatedNetworkType' => [ 'base' => NULL, 'refs' => [ 'AssociatedTargetNetwork$NetworkType' => '

The target network type.

', ], ], 'AssociatedRole' => [ 'base' => '

Information about the associated IAM roles.

', 'refs' => [ 'AssociatedRolesList$member' => NULL, ], ], 'AssociatedRolesList' => [ 'base' => NULL, 'refs' => [ 'GetAssociatedEnclaveCertificateIamRolesResult$AssociatedRoles' => '

Information about the associated IAM roles.

', ], ], 'AssociatedTargetNetwork' => [ 'base' => '

Describes a target network that is associated with a Client VPN endpoint. A target network is a subnet in a VPC.

', 'refs' => [ 'AssociatedTargetNetworkSet$member' => NULL, ], ], 'AssociatedTargetNetworkSet' => [ 'base' => NULL, 'refs' => [ 'ClientVpnEndpoint$AssociatedTargetNetworks' => '

Information about the associated target networks. A target network is a subnet in a VPC.

', ], ], 'AssociationIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeIamInstanceProfileAssociationsRequest$AssociationIds' => '

The IAM instance profile associations.

', ], ], 'AssociationStatus' => [ 'base' => '

Describes the state of a target network association.

', 'refs' => [ 'AssociateClientVpnTargetNetworkResult$Status' => '

The current state of the target network association.

', 'DisassociateClientVpnTargetNetworkResult$Status' => '

The current state of the target network association.

', 'TargetNetwork$Status' => '

The current state of the target network association.

', ], ], 'AssociationStatusCode' => [ 'base' => NULL, 'refs' => [ 'AssociationStatus$Code' => '

The state of the target network association.

', ], ], 'AthenaIntegration' => [ 'base' => '

Describes integration options for Amazon Athena.

', 'refs' => [ 'AthenaIntegrationsSet$member' => NULL, ], ], 'AthenaIntegrationsSet' => [ 'base' => NULL, 'refs' => [ 'IntegrateServices$AthenaIntegrations' => '

Information about the integration with Amazon Athena.

', ], ], 'AttachClassicLinkVpcRequest' => [ 'base' => NULL, 'refs' => [], ], 'AttachClassicLinkVpcResult' => [ 'base' => NULL, 'refs' => [], ], 'AttachInternetGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'AttachNetworkInterfaceRequest' => [ 'base' => '

Contains the parameters for AttachNetworkInterface.

', 'refs' => [], ], 'AttachNetworkInterfaceResult' => [ 'base' => '

Contains the output of AttachNetworkInterface.

', 'refs' => [], ], 'AttachVerifiedAccessTrustProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'AttachVerifiedAccessTrustProviderResult' => [ 'base' => NULL, 'refs' => [], ], 'AttachVolumeRequest' => [ 'base' => NULL, 'refs' => [], ], 'AttachVpnGatewayRequest' => [ 'base' => '

Contains the parameters for AttachVpnGateway.

', 'refs' => [], ], 'AttachVpnGatewayResult' => [ 'base' => '

Contains the output of AttachVpnGateway.

', 'refs' => [], ], 'AttachmentEnaSrdSpecification' => [ 'base' => '

ENA Express uses Amazon Web Services Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled.

To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it.

', 'refs' => [ 'NetworkInterfaceAttachment$EnaSrdSpecification' => '

Configures ENA Express for the network interface that this action attaches to the instance.

', ], ], 'AttachmentEnaSrdUdpSpecification' => [ 'base' => '

ENA Express is compatible with both TCP and UDP transport protocols. When it\'s enabled, TCP traffic automatically uses it. However, some UDP-based applications are designed to handle network packets that are out of order, without a need for retransmission, such as live video broadcasting or other near-real-time applications. For UDP traffic, you can specify whether to use ENA Express, based on your application environment needs.

', 'refs' => [ 'AttachmentEnaSrdSpecification$EnaSrdUdpSpecification' => '

Configures ENA Express for UDP network traffic.

', ], ], 'AttachmentStatus' => [ 'base' => NULL, 'refs' => [ 'EbsInstanceBlockDevice$Status' => '

The attachment state.

', 'InstanceNetworkInterfaceAttachment$Status' => '

The attachment state.

', 'InternetGatewayAttachment$State' => '

The current state of the attachment. For an internet gateway, the state is available when attached to a VPC; otherwise, this value is not returned.

', 'NetworkInterfaceAttachment$Status' => '

The attachment state.

', 'VpcAttachment$State' => '

The current state of the attachment.

', ], ], 'AttributeBooleanValue' => [ 'base' => '

Describes a value for a resource attribute that is a Boolean value.

', 'refs' => [ 'DescribeNetworkInterfaceAttributeResult$SourceDestCheck' => '

Indicates whether source/destination checking is enabled.

', 'DescribeVolumeAttributeResult$AutoEnableIO' => '

The state of autoEnableIO attribute.

', 'DescribeVpcAttributeResult$EnableDnsHostnames' => '

Indicates whether the instances launched in the VPC get DNS hostnames. If this attribute is true, instances in the VPC get DNS hostnames; otherwise, they do not.

', 'DescribeVpcAttributeResult$EnableDnsSupport' => '

Indicates whether DNS resolution is enabled for the VPC. If this attribute is true, the Amazon DNS server resolves DNS hostnames for your instances to their corresponding IP addresses; otherwise, it does not.

', 'DescribeVpcAttributeResult$EnableNetworkAddressUsageMetrics' => '

Indicates whether Network Address Usage metrics are enabled for your VPC.

', 'InstanceAttribute$DisableApiTermination' => '

If the value is true, you can\'t terminate the instance through the Amazon EC2 console, CLI, or API; otherwise, you can.

', 'InstanceAttribute$EnaSupport' => '

Indicates whether enhanced networking with ENA is enabled.

', 'InstanceAttribute$EbsOptimized' => '

Indicates whether the instance is optimized for Amazon EBS I/O.

', 'InstanceAttribute$SourceDestCheck' => '

Enable or disable source/destination checks, which ensure that the instance is either the source or the destination of any traffic that it receives. If the value is true, source/destination checks are enabled; otherwise, they are disabled. The default value is true. You must disable source/destination checks if the instance runs services such as network address translation, routing, or firewalls.

', 'InstanceAttribute$DisableApiStop' => '

To enable the instance for Amazon Web Services Stop Protection, set this parameter to true; otherwise, set it to false.

', 'ModifyInstanceAttributeRequest$SourceDestCheck' => '

Enable or disable source/destination checks, which ensure that the instance is either the source or the destination of any traffic that it receives. If the value is true, source/destination checks are enabled; otherwise, they are disabled. The default value is true. You must disable source/destination checks if the instance runs services such as network address translation, routing, or firewalls.

', 'ModifyInstanceAttributeRequest$DisableApiTermination' => '

If the value is true, you can\'t terminate the instance using the Amazon EC2 console, CLI, or API; otherwise, you can. You cannot use this parameter for Spot Instances.

', 'ModifyInstanceAttributeRequest$EbsOptimized' => '

Specifies whether the instance is optimized for Amazon EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal EBS I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS Optimized instance.

', 'ModifyInstanceAttributeRequest$EnaSupport' => '

Set to true to enable enhanced networking with ENA for the instance.

This option is supported only for HVM instances. Specifying this option with a PV instance can make it unreachable.

', 'ModifyInstanceAttributeRequest$DisableApiStop' => '

Indicates whether an instance is enabled for stop protection. For more information, see Stop Protection.

', 'ModifyNetworkInterfaceAttributeRequest$SourceDestCheck' => '

Enable or disable source/destination checks, which ensure that the instance is either the source or the destination of any traffic that it receives. If the value is true, source/destination checks are enabled; otherwise, they are disabled. The default value is true. You must disable source/destination checks if the instance runs services such as network address translation, routing, or firewalls.

', 'ModifySubnetAttributeRequest$AssignIpv6AddressOnCreation' => '

Specify true to indicate that network interfaces created in the specified subnet should be assigned an IPv6 address. This includes a network interface that\'s created when launching an instance into the subnet (the instance therefore receives an IPv6 address).

If you enable the IPv6 addressing feature for your subnet, your network interface or instance only receives an IPv6 address if it\'s created using version 2016-11-15 or later of the Amazon EC2 API.

', 'ModifySubnetAttributeRequest$MapPublicIpOnLaunch' => '

Specify true to indicate that network interfaces attached to instances created in the specified subnet should be assigned a public IPv4 address.

Starting on February 1, 2024, Amazon Web Services will charge for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the Public IPv4 Address tab on the Amazon VPC pricing page.

', 'ModifySubnetAttributeRequest$MapCustomerOwnedIpOnLaunch' => '

Specify true to indicate that network interfaces attached to instances created in the specified subnet should be assigned a customer-owned IPv4 address.

When this value is true, you must specify the customer-owned IP pool using CustomerOwnedIpv4Pool.

', 'ModifySubnetAttributeRequest$EnableDns64' => '

Indicates whether DNS queries made to the Amazon-provided DNS Resolver in this subnet should return synthetic IPv6 addresses for IPv4-only destinations.

', 'ModifySubnetAttributeRequest$EnableResourceNameDnsARecordOnLaunch' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS A records.

', 'ModifySubnetAttributeRequest$EnableResourceNameDnsAAAARecordOnLaunch' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.

', 'ModifySubnetAttributeRequest$DisableLniAtDeviceIndex' => '

Specify true to indicate that local network interfaces at the current position should be disabled.

', 'ModifyVolumeAttributeRequest$AutoEnableIO' => '

Indicates whether the volume should be auto-enabled for I/O operations.

', 'ModifyVpcAttributeRequest$EnableDnsHostnames' => '

Indicates whether the instances launched in the VPC get DNS hostnames. If enabled, instances in the VPC get DNS hostnames; otherwise, they do not.

You cannot modify the DNS resolution and DNS hostnames attributes in the same request. Use separate requests for each attribute. You can only enable DNS hostnames if you\'ve enabled DNS support.

', 'ModifyVpcAttributeRequest$EnableDnsSupport' => '

Indicates whether the DNS resolution is supported for the VPC. If enabled, queries to the Amazon provided DNS server at the 169.254.169.253 IP address, or the reserved IP address at the base of the VPC network range "plus two" succeed. If disabled, the Amazon provided DNS service in the VPC that resolves public DNS hostnames to IP addresses is not enabled.

You cannot modify the DNS resolution and DNS hostnames attributes in the same request. Use separate requests for each attribute.

', 'ModifyVpcAttributeRequest$EnableNetworkAddressUsageMetrics' => '

Indicates whether Network Address Usage metrics are enabled for your VPC.

', ], ], 'AttributeValue' => [ 'base' => '

Describes a value for a resource attribute that is a String.

', 'refs' => [ 'DescribeNetworkInterfaceAttributeResult$Description' => '

The description of the network interface.

', 'DhcpConfigurationValueList$member' => NULL, 'ImageAttribute$Description' => '

A description for the AMI.

', 'ImageAttribute$KernelId' => '

The kernel ID.

', 'ImageAttribute$RamdiskId' => '

The RAM disk ID.

', 'ImageAttribute$SriovNetSupport' => '

Indicates whether enhanced networking with the Intel 82599 Virtual Function interface is enabled.

', 'ImageAttribute$BootMode' => '

The boot mode.

', 'ImageAttribute$TpmSupport' => '

If the image is configured for NitroTPM support, the value is v2.0.

', 'ImageAttribute$UefiData' => '

Base64 representation of the non-volatile UEFI variable store. To retrieve the UEFI data, use the GetInstanceUefiData command. You can inspect and modify the UEFI data by using the python-uefivars tool on GitHub. For more information, see UEFI Secure Boot in the Amazon EC2 User Guide.

', 'ImageAttribute$LastLaunchedTime' => '

The date and time, in ISO 8601 date-time format, when the AMI was last used to launch an EC2 instance. When the AMI is used to launch an instance, there is a 24-hour delay before that usage is reported.

lastLaunchedTime data is available starting April 2017.

', 'ImageAttribute$ImdsSupport' => '

If v2.0, it indicates that IMDSv2 is specified in the AMI. Instances launched from this AMI will have HttpTokens automatically set to required so that, by default, the instance requires that IMDSv2 is used when requesting instance metadata. In addition, HttpPutResponseHopLimit is set to 2. For more information, see Configure the AMI in the Amazon EC2 User Guide.

', 'InstanceAttribute$InstanceInitiatedShutdownBehavior' => '

Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the operating system command for system shutdown).

', 'InstanceAttribute$InstanceType' => '

The instance type.

', 'InstanceAttribute$KernelId' => '

The kernel ID.

', 'InstanceAttribute$RamdiskId' => '

The RAM disk ID.

', 'InstanceAttribute$RootDeviceName' => '

The device name of the root device volume (for example, /dev/sda1).

', 'InstanceAttribute$SriovNetSupport' => '

Indicates whether enhanced networking with the Intel 82599 Virtual Function interface is enabled.

', 'InstanceAttribute$UserData' => '

The user data.

', 'ModifyImageAttributeRequest$Description' => '

A new description for the AMI.

', 'ModifyImageAttributeRequest$ImdsSupport' => '

Set to v2.0 to indicate that IMDSv2 is specified in the AMI. Instances launched from this AMI will have HttpTokens automatically set to required so that, by default, the instance requires that IMDSv2 is used when requesting instance metadata. In addition, HttpPutResponseHopLimit is set to 2. For more information, see Configure the AMI in the Amazon EC2 User Guide.

Do not use this parameter unless your AMI software supports IMDSv2. After you set the value to v2.0, you can\'t undo it. The only way to “reset” your AMI is to create a new AMI from the underlying snapshot.

', 'ModifyInstanceAttributeRequest$InstanceInitiatedShutdownBehavior' => '

Specifies whether an instance stops or terminates when you initiate shutdown from the instance (using the operating system command for system shutdown).

', 'ModifyInstanceAttributeRequest$InstanceType' => '

Changes the instance type to the specified value. For more information, see Instance types in the Amazon EC2 User Guide. If the instance type is not valid, the error returned is InvalidInstanceAttributeValue.

', 'ModifyInstanceAttributeRequest$Kernel' => '

Changes the instance\'s kernel to the specified value. We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see PV-GRUB.

', 'ModifyInstanceAttributeRequest$Ramdisk' => '

Changes the instance\'s RAM disk to the specified value. We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see PV-GRUB.

', 'ModifyInstanceAttributeRequest$SriovNetSupport' => '

Set to simple to enable enhanced networking with the Intel 82599 Virtual Function interface for the instance.

There is no way to disable enhanced networking with the Intel 82599 Virtual Function interface at this time.

This option is supported only for HVM instances. Specifying this option with a PV instance can make it unreachable.

', 'ModifyNetworkInterfaceAttributeRequest$Description' => '

A description for the network interface.

', ], ], 'AuthorizationRule' => [ 'base' => '

Information about an authorization rule.

', 'refs' => [ 'AuthorizationRuleSet$member' => NULL, ], ], 'AuthorizationRuleSet' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnAuthorizationRulesResult$AuthorizationRules' => '

Information about the authorization rules.

', ], ], 'AuthorizeClientVpnIngressRequest' => [ 'base' => NULL, 'refs' => [], ], 'AuthorizeClientVpnIngressResult' => [ 'base' => NULL, 'refs' => [], ], 'AuthorizeSecurityGroupEgressRequest' => [ 'base' => NULL, 'refs' => [], ], 'AuthorizeSecurityGroupEgressResult' => [ 'base' => NULL, 'refs' => [], ], 'AuthorizeSecurityGroupIngressRequest' => [ 'base' => NULL, 'refs' => [], ], 'AuthorizeSecurityGroupIngressResult' => [ 'base' => NULL, 'refs' => [], ], 'AutoAcceptSharedAssociationsValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayMulticastDomainRequestOptions$AutoAcceptSharedAssociations' => '

Indicates whether to automatically accept cross-account subnet associations that are associated with the transit gateway multicast domain.

', 'TransitGatewayMulticastDomainOptions$AutoAcceptSharedAssociations' => '

Indicates whether to automatically cross-account subnet associations that are associated with the transit gateway multicast domain.

', ], ], 'AutoAcceptSharedAttachmentsValue' => [ 'base' => NULL, 'refs' => [ 'ModifyTransitGatewayOptions$AutoAcceptSharedAttachments' => '

Enable or disable automatic acceptance of attachment requests.

', 'TransitGatewayOptions$AutoAcceptSharedAttachments' => '

Indicates whether attachment requests are automatically accepted.

', 'TransitGatewayRequestOptions$AutoAcceptSharedAttachments' => '

Enable or disable automatic acceptance of attachment requests. Disabled by default.

', ], ], 'AutoPlacement' => [ 'base' => NULL, 'refs' => [ 'AllocateHostsRequest$AutoPlacement' => '

Indicates whether the host accepts any untargeted instance launches that match its instance type configuration, or if it only accepts Host tenancy instance launches that specify its unique host ID. For more information, see Understanding auto-placement and affinity in the Amazon EC2 User Guide.

Default: on

', 'Host$AutoPlacement' => '

Whether auto-placement is on or off.

', 'ModifyHostsRequest$AutoPlacement' => '

Specify whether to enable or disable auto-placement.

', ], ], 'AutoRecoveryFlag' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$AutoRecoverySupported' => '

Indicates whether Amazon CloudWatch action based recovery is supported.

', ], ], 'AvailabilityZone' => [ 'base' => '

Describes Availability Zones, Local Zones, and Wavelength Zones.

', 'refs' => [ 'AvailabilityZoneList$member' => NULL, ], ], 'AvailabilityZoneId' => [ 'base' => NULL, 'refs' => [ 'CreateCapacityReservationRequest$AvailabilityZoneId' => '

The ID of the Availability Zone in which to create the Capacity Reservation.

', ], ], 'AvailabilityZoneList' => [ 'base' => NULL, 'refs' => [ 'DescribeAvailabilityZonesResult$AvailabilityZones' => '

Information about the Availability Zones, Local Zones, and Wavelength Zones.

', ], ], 'AvailabilityZoneMessage' => [ 'base' => '

Describes a message about an Availability Zone, Local Zone, or Wavelength Zone.

', 'refs' => [ 'AvailabilityZoneMessageList$member' => NULL, ], ], 'AvailabilityZoneMessageList' => [ 'base' => NULL, 'refs' => [ 'AvailabilityZone$Messages' => '

Any messages about the Availability Zone, Local Zone, or Wavelength Zone.

', ], ], 'AvailabilityZoneName' => [ 'base' => NULL, 'refs' => [ 'CreateCapacityReservationRequest$AvailabilityZone' => '

The Availability Zone in which to create the Capacity Reservation.

', 'CreateDefaultSubnetRequest$AvailabilityZone' => '

The Availability Zone in which to create the default subnet.

', 'CreateVolumeRequest$AvailabilityZone' => '

The ID of the Availability Zone in which to create the volume. For example, us-east-1a.

', ], ], 'AvailabilityZoneOptInStatus' => [ 'base' => NULL, 'refs' => [ 'AvailabilityZone$OptInStatus' => '

For Availability Zones, this parameter always has the value of opt-in-not-required.

For Local Zones and Wavelength Zones, this parameter is the opt-in status. The possible values are opted-in, and not-opted-in.

', ], ], 'AvailabilityZoneState' => [ 'base' => NULL, 'refs' => [ 'AvailabilityZone$State' => '

The state of the Availability Zone, Local Zone, or Wavelength Zone. This value is always available.

', ], ], 'AvailabilityZoneStringList' => [ 'base' => NULL, 'refs' => [ 'DisableFastSnapshotRestoresRequest$AvailabilityZones' => '

One or more Availability Zones. For example, us-east-2a.

', 'EnableFastSnapshotRestoresRequest$AvailabilityZones' => '

One or more Availability Zones. For example, us-east-2a.

', ], ], 'AvailableCapacity' => [ 'base' => '

The capacity information for instances that can be launched onto the Dedicated Host.

', 'refs' => [ 'Host$AvailableCapacity' => '

Information about the instances running on the Dedicated Host.

', ], ], 'AvailableInstanceCapacityList' => [ 'base' => NULL, 'refs' => [ 'AvailableCapacity$AvailableInstanceCapacity' => '

The number of instances that can be launched onto the Dedicated Host depending on the host\'s available capacity. For Dedicated Hosts that support multiple instance types, this parameter represents the number of instances for each instance size that is supported on the host.

', ], ], 'BareMetal' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$BareMetal' => '

Indicates whether bare metal instance types must be included, excluded, or required.

  • To include bare metal instance types, specify included.

  • To require only bare metal instance types, specify required.

  • To exclude bare metal instance types, specify excluded.

Default: excluded

', 'InstanceRequirementsRequest$BareMetal' => '

Indicates whether bare metal instance types must be included, excluded, or required.

  • To include bare metal instance types, specify included.

  • To require only bare metal instance types, specify required.

  • To exclude bare metal instance types, specify excluded.

Default: excluded

', ], ], 'BareMetalFlag' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$BareMetal' => '

Indicates whether the instance is a bare metal instance type.

', ], ], 'BaselineBandwidthInGbps' => [ 'base' => NULL, 'refs' => [ 'NetworkCardInfo$BaselineBandwidthInGbps' => '

The baseline network performance of the network card, in Gbps.

', ], ], 'BaselineBandwidthInMbps' => [ 'base' => NULL, 'refs' => [ 'EbsOptimizedInfo$BaselineBandwidthInMbps' => '

The baseline bandwidth performance for an EBS-optimized instance type, in Mbps.

', ], ], 'BaselineEbsBandwidthMbps' => [ 'base' => '

The minimum and maximum baseline bandwidth to Amazon EBS, in Mbps. For more information, see Amazon EBS–optimized instances in the Amazon EC2 User Guide.

', 'refs' => [ 'InstanceRequirements$BaselineEbsBandwidthMbps' => '

The minimum and maximum baseline bandwidth to Amazon EBS, in Mbps. For more information, see Amazon EBS–optimized instances in the Amazon EC2 User Guide.

Default: No minimum or maximum limits

', ], ], 'BaselineEbsBandwidthMbpsRequest' => [ 'base' => '

The minimum and maximum baseline bandwidth to Amazon EBS, in Mbps. For more information, see Amazon EBS–optimized instances in the Amazon EC2 User Guide.

', 'refs' => [ 'InstanceRequirementsRequest$BaselineEbsBandwidthMbps' => '

The minimum and maximum baseline bandwidth to Amazon EBS, in Mbps. For more information, see Amazon EBS–optimized instances in the Amazon EC2 User Guide.

Default: No minimum or maximum limits

', ], ], 'BaselineIops' => [ 'base' => NULL, 'refs' => [ 'EbsOptimizedInfo$BaselineIops' => '

The baseline input/output storage operations per seconds for an EBS-optimized instance type.

', ], ], 'BaselineThroughputInMBps' => [ 'base' => NULL, 'refs' => [ 'EbsOptimizedInfo$BaselineThroughputInMBps' => '

The baseline throughput performance for an EBS-optimized instance type, in MB/s.

', ], ], 'BatchState' => [ 'base' => NULL, 'refs' => [ 'CancelSpotFleetRequestsSuccessItem$CurrentSpotFleetRequestState' => '

The current state of the Spot Fleet request.

', 'CancelSpotFleetRequestsSuccessItem$PreviousSpotFleetRequestState' => '

The previous state of the Spot Fleet request.

', 'SpotFleetRequestConfig$SpotFleetRequestState' => '

The state of the Spot Fleet request.

', ], ], 'BgpStatus' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayAttachmentBgpConfiguration$BgpStatus' => '

The BGP status.

', ], ], 'BillingProductList' => [ 'base' => NULL, 'refs' => [ 'RegisterImageRequest$BillingProducts' => '

The billing product codes. Your account must be authorized to specify billing product codes.

If your account is not authorized to specify billing product codes, you can publish AMIs that include billable software and list them on the Amazon Web Services Marketplace. You must first register as a seller on the Amazon Web Services Marketplace. For more information, see Getting started as a seller and AMI-based products in the Amazon Web Services Marketplace Seller Guide.

', ], ], 'Blob' => [ 'base' => NULL, 'refs' => [ 'BlobAttributeValue$Value' => NULL, 'ImportKeyPairRequest$PublicKeyMaterial' => '

The public key. For API calls, the text must be base64-encoded. For command line tools, base64 encoding is performed for you.

', 'S3Storage$UploadPolicy' => '

An Amazon S3 upload policy that gives Amazon EC2 permission to upload items into Amazon S3 on your behalf.

', ], ], 'BlobAttributeValue' => [ 'base' => NULL, 'refs' => [ 'ModifyInstanceAttributeRequest$UserData' => '

Changes the instance\'s user data to the specified value. If you are using an Amazon Web Services SDK or command line tool, base64-encoding is performed for you, and you can load the text from a file. Otherwise, you must provide base64-encoded text.

', ], ], 'BlockDeviceMapping' => [ 'base' => '

Describes a block device mapping, which defines the EBS volumes and instance store volumes to attach to an instance at launch.

', 'refs' => [ 'BlockDeviceMappingList$member' => NULL, 'BlockDeviceMappingRequestList$member' => NULL, ], ], 'BlockDeviceMappingList' => [ 'base' => NULL, 'refs' => [ 'Image$BlockDeviceMappings' => '

Any block device mapping entries.

', 'ImageAttribute$BlockDeviceMappings' => '

The block device mapping entries.

', 'LaunchSpecification$BlockDeviceMappings' => '

The block device mapping entries.

', 'RequestSpotLaunchSpecification$BlockDeviceMappings' => '

The block device mapping entries. You can\'t specify both a snapshot ID and an encryption value. This is because only blank volumes can be encrypted on creation. If a snapshot is the basis for a volume, it is not blank and its encryption status is used for the volume encryption status.

', 'SpotFleetLaunchSpecification$BlockDeviceMappings' => '

One or more block devices that are mapped to the Spot Instances. You can\'t specify both a snapshot ID and an encryption value. This is because only blank volumes can be encrypted on creation. If a snapshot is the basis for a volume, it is not blank and its encryption status is used for the volume encryption status.

', ], ], 'BlockDeviceMappingRequestList' => [ 'base' => NULL, 'refs' => [ 'CreateImageRequest$BlockDeviceMappings' => '

The block device mappings.

When using the CreateImage action:

  • You can\'t change the volume size using the VolumeSize parameter. If you want a different volume size, you must first change the volume size of the source instance.

  • You can\'t modify the encryption status of existing volumes or snapshots. To create an AMI with volumes or snapshots that have a different encryption status (for example, where the source volume and snapshots are unencrypted, and you want to create an AMI with encrypted volumes or snapshots), use the CopyImage action.

  • The only option that can be changed for existing mappings or snapshots is DeleteOnTermination.

', 'RegisterImageRequest$BlockDeviceMappings' => '

The block device mapping entries.

If you specify an Amazon EBS volume using the ID of an Amazon EBS snapshot, you can\'t specify the encryption state of the volume.

If you create an AMI on an Outpost, then all backing snapshots must be on the same Outpost or in the Region of that Outpost. AMIs on an Outpost that include local snapshots can be used to launch instances on the same Outpost only. For more information, Amazon EBS local snapshots on Outposts in the Amazon EC2 User Guide.

', 'RunInstancesRequest$BlockDeviceMappings' => '

The block device mapping, which defines the EBS volumes and instance store volumes to attach to the instance at launch. For more information, see Block device mappings in the Amazon EC2 User Guide.

', ], ], 'Boolean' => [ 'base' => NULL, 'refs' => [ 'AcceptAddressTransferRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AcceptReservedInstancesExchangeQuoteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AcceptTransitGatewayMulticastDomainAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AcceptTransitGatewayPeeringAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AcceptTransitGatewayVpcAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AcceptVpcEndpointConnectionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AcceptVpcPeeringConnectionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AdvertiseByoipCidrRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AllocateAddressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AllocateIpamPoolCidrRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AllocateIpamPoolCidrRequest$PreviewNextCidr' => '

A preview of the next available CIDR in a pool.

', 'AnalysisAclRule$Egress' => '

Indicates whether the rule is an outbound rule.

', 'ApplySecurityGroupsToClientVpnTargetNetworkRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssignPrivateIpAddressesRequest$AllowReassignment' => '

Indicates whether to allow an IP address that is already assigned to another network interface or instance to be reassigned to the specified network interface.

', 'AssignPrivateNatGatewayAddressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateAddressRequest$AllowReassociation' => '

Reassociation is automatic, but you can specify false to ensure the operation fails if the Elastic IP address is already associated with another resource.

', 'AssociateAddressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateClientVpnTargetNetworkRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateDhcpOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateEnclaveCertificateIamRoleRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateInstanceEventWindowRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateIpamByoasnRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateIpamResourceDiscoveryRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateNatGatewayAddressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateTransitGatewayMulticastDomainRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateTransitGatewayPolicyTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateTransitGatewayRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateTrunkInterfaceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateVpcCidrBlockRequest$AmazonProvidedIpv6CidrBlock' => '

Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length for the VPC. You cannot specify the range of IPv6 addresses or the size of the CIDR block.

', 'AttachClassicLinkVpcRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AttachClassicLinkVpcResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'AttachInternetGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AttachNetworkInterfaceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AttachVerifiedAccessTrustProviderRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AttachVolumeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AttachVpnGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AttachmentEnaSrdSpecification$EnaSrdEnabled' => '

Indicates whether ENA Express is enabled for the network interface.

', 'AttachmentEnaSrdUdpSpecification$EnaSrdUdpEnabled' => '

Indicates whether UDP traffic to and from the instance uses ENA Express. To specify this setting, you must first enable ENA Express.

', 'AttributeBooleanValue$Value' => '

The attribute value. The valid values are true or false.

', 'AuthorizationRule$AccessAll' => '

Indicates whether the authorization rule grants access to all clients.

', 'AuthorizeClientVpnIngressRequest$AuthorizeAllGroups' => '

Indicates whether to grant access to all clients. Specify true to grant all clients who successfully establish a VPN connection access to the network. Must be set to true if AccessGroupId is not specified.

', 'AuthorizeClientVpnIngressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AuthorizeSecurityGroupEgressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AuthorizeSecurityGroupEgressResult$Return' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'AuthorizeSecurityGroupIngressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AuthorizeSecurityGroupIngressResult$Return' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'BundleInstanceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CancelBundleTaskRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CancelCapacityReservationFleetsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CancelCapacityReservationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CancelCapacityReservationResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'CancelConversionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CancelImageLaunchPermissionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CancelImageLaunchPermissionResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'CancelImportTaskRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CancelSpotFleetRequestsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CancelSpotFleetRequestsRequest$TerminateInstances' => '

Indicates whether to terminate the associated instances when the Spot Fleet request is canceled. The default is to terminate the instances.

To let the instances continue to run after the Spot Fleet request is canceled, specify no-terminate-instances.

', 'CancelSpotInstanceRequestsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CapacityReservation$EbsOptimized' => '

Indicates whether the Capacity Reservation supports EBS-optimized instances. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS- optimized instance.

', 'CapacityReservation$EphemeralStorage' => '

Deprecated.

', 'ClassicLinkDnsSupport$ClassicLinkDnsSupported' => '

Indicates whether ClassicLink DNS support is enabled for the VPC.

', 'ClientConnectOptions$Enabled' => '

Indicates whether client connect options are enabled. The default is false (not enabled).

', 'ClientConnectResponseOptions$Enabled' => '

Indicates whether client connect options are enabled.

', 'ClientLoginBannerOptions$Enabled' => '

Enable or disable a customizable text banner that will be displayed on Amazon Web Services provided clients when a VPN session is established.

Valid values: true | false

Default value: false

', 'ClientLoginBannerResponseOptions$Enabled' => '

Current state of text banner feature.

Valid values: true | false

', 'ClientVpnEndpoint$SplitTunnel' => '

Indicates whether split-tunnel is enabled in the Client VPN endpoint.

For information about split-tunnel VPN endpoints, see Split-Tunnel Client VPN endpoint in the Client VPN Administrator Guide.

', 'CloudWatchLogOptions$LogEnabled' => '

Status of VPN tunnel logging feature. Default value is False.

Valid values: True | False

', 'CloudWatchLogOptionsSpecification$LogEnabled' => '

Enable or disable VPN tunnel logging feature. Default value is False.

Valid values: True | False

', 'ConfirmProductInstanceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ConfirmProductInstanceResult$Return' => '

The return value of the request. Returns true if the specified product code is owned by the requester and associated with the specified instance.

', 'ConnectionLogOptions$Enabled' => '

Indicates whether connection logging is enabled.

', 'ConnectionLogResponseOptions$Enabled' => '

Indicates whether client connection logging is enabled for the Client VPN endpoint.

', 'CopyFpgaImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CopyImageRequest$Encrypted' => '

Specifies whether the destination snapshots of the copied image should be encrypted. You can encrypt a copy of an unencrypted snapshot, but you cannot create an unencrypted copy of an encrypted snapshot. The default KMS key for Amazon EBS is used unless you specify a non-default Key Management Service (KMS) KMS key using KmsKeyId. For more information, see Amazon EBS encryption in the Amazon EC2 User Guide.

', 'CopyImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CopyImageRequest$CopyImageTags' => '

Indicates whether to include your user-defined AMI tags when copying the AMI.

The following tags will not be copied:

  • System tags (prefixed with aws:)

  • For public and shared AMIs, user-defined tags that are attached by other Amazon Web Services accounts

Default: Your user-defined AMI tags are not copied.

', 'CopySnapshotRequest$Encrypted' => '

To encrypt a copy of an unencrypted snapshot if encryption by default is not enabled, enable encryption using this parameter. Otherwise, omit this parameter. Encrypted snapshots are encrypted, even if you omit this parameter and encryption by default is not enabled. You cannot set this parameter to false. For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

', 'CopySnapshotRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateCapacityReservationFleetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateCapacityReservationRequest$EbsOptimized' => '

Indicates whether the Capacity Reservation supports EBS-optimized instances. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS- optimized instance.

', 'CreateCapacityReservationRequest$EphemeralStorage' => '

Deprecated.

', 'CreateCapacityReservationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateCarrierGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateClientVpnEndpointRequest$SplitTunnel' => '

Indicates whether split-tunnel is enabled on the Client VPN endpoint.

By default, split-tunnel on a VPN endpoint is disabled.

For information about split-tunnel VPN endpoints, see Split-tunnel Client VPN endpoint in the Client VPN Administrator Guide.

', 'CreateClientVpnEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateClientVpnRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateCoipCidrRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateCoipPoolRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateCustomerGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateDefaultSubnetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateDefaultSubnetRequest$Ipv6Native' => '

Indicates whether to create an IPv6 only subnet. If you already have a default subnet for this Availability Zone, you must delete it before you can create an IPv6 only subnet.

', 'CreateDefaultVpcRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateDhcpOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateEgressOnlyInternetGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateFleetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateFleetRequest$TerminateInstancesWithExpiration' => '

Indicates whether running instances should be terminated when the EC2 Fleet expires.

', 'CreateFleetRequest$ReplaceUnhealthyInstances' => '

Indicates whether EC2 Fleet should replace unhealthy Spot Instances. Supported only for fleets of type maintain. For more information, see EC2 Fleet health checks in the Amazon EC2 User Guide.

', 'CreateFlowLogsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateFpgaImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateImageRequest$NoReboot' => '

Indicates whether or not the instance should be automatically rebooted before creating the image. Specify one of the following values:

  • true - The instance is not rebooted before creating the image. This creates crash-consistent snapshots that include only the data that has been written to the volumes at the time the snapshots are created. Buffered data and data in memory that has not yet been written to the volumes is not included in the snapshots.

  • false - The instance is rebooted before creating the image. This ensures that all buffered data and data in memory is written to the volumes before the snapshots are created.

Default: false

', 'CreateInstanceConnectEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateInstanceConnectEndpointRequest$PreserveClientIp' => '

Indicates whether your client\'s IP address is preserved as the source. The value is true or false.

  • If true, your client\'s IP address is used when you connect to a resource.

  • If false, the elastic network interface IP address is used when you connect to a resource.

Default: true

', 'CreateInstanceEventWindowRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateInternetGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateIpamPoolRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateIpamPoolRequest$AutoImport' => '

If selected, IPAM will continuously look for resources within the CIDR range of this pool and automatically import them as allocations into your IPAM. The CIDRs that will be allocated for these resources must not already be allocated to other resources in order for the import to succeed. IPAM will import a CIDR regardless of its compliance with the pool\'s allocation rules, so a resource might be imported and subsequently marked as noncompliant. If IPAM discovers multiple CIDRs that overlap, IPAM will import the largest CIDR only. If IPAM discovers multiple CIDRs with matching CIDRs, IPAM will randomly import one of them only.

A locale must be set on the pool for this feature to work.

', 'CreateIpamPoolRequest$PubliclyAdvertisable' => '

Determines if the pool is publicly advertisable. This option is not available for pools with AddressFamily set to ipv4.

', 'CreateIpamRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateIpamResourceDiscoveryRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateIpamScopeRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateKeyPairRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateLaunchTemplateRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateLaunchTemplateVersionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateLaunchTemplateVersionRequest$ResolveAlias' => '

If true, and if a Systems Manager parameter is specified for ImageId, the AMI ID is displayed in the response for imageID. For more information, see Use a Systems Manager parameter instead of an AMI ID in the Amazon Elastic Compute Cloud User Guide.

Default: false

', 'CreateLocalGatewayRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateLocalGatewayRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateLocalGatewayRouteTableVpcAssociationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateManagedPrefixListRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateNatGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateNetworkAclEntryRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateNetworkAclEntryRequest$Egress' => '

Indicates whether this is an egress rule (rule is applied to traffic leaving the subnet).

', 'CreateNetworkAclRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateNetworkInsightsAccessScopeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateNetworkInsightsPathRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateNetworkInterfacePermissionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateNetworkInterfaceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateNetworkInterfaceRequest$EnablePrimaryIpv6' => '

If you’re creating a network interface in a dual-stack or IPv6-only subnet, you have the option to assign a primary IPv6 IP address. A primary IPv6 address is an IPv6 GUA address associated with an ENI that you have enabled to use a primary IPv6 address. Use this option if the instance that this ENI will be attached to relies on its IPv6 address not changing. Amazon Web Services will automatically assign an IPv6 address associated with the ENI attached to your instance to be the primary IPv6 address. Once you enable an IPv6 GUA address to be a primary IPv6, you cannot disable it. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. If you have multiple IPv6 addresses associated with an ENI attached to your instance and you enable a primary IPv6 address, the first IPv6 GUA address associated with the ENI becomes the primary IPv6 address.

', 'CreatePlacementGroupRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreatePublicIpv4PoolRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateReplaceRootVolumeTaskRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateReplaceRootVolumeTaskRequest$DeleteReplacedRootVolume' => '

Indicates whether to automatically delete the original root volume after the root volume replacement task completes. To delete the original root volume, specify true. If you choose to keep the original root volume after the replacement task completes, you must manually delete it when you no longer need it.

', 'CreateRestoreImageTaskRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateRouteResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'CreateRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateSecurityGroupRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateSnapshotRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateSnapshotsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateSpotDatafeedSubscriptionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateStoreImageTaskRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateSubnetCidrReservationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateSubnetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateSubnetRequest$Ipv6Native' => '

Indicates whether to create an IPv6 only subnet.

', 'CreateTagsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTrafficMirrorFilterRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTrafficMirrorFilterRuleRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTrafficMirrorSessionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTrafficMirrorTargetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayConnectPeerRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayConnectRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayMulticastDomainRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayPeeringAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayPolicyTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayPrefixListReferenceRequest$Blackhole' => '

Indicates whether to drop traffic that matches this route.

', 'CreateTransitGatewayPrefixListReferenceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayRouteRequest$Blackhole' => '

Indicates whether to drop traffic that matches this route.

', 'CreateTransitGatewayRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayRouteTableAnnouncementRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayVpcAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVerifiedAccessEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVerifiedAccessGroupRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVerifiedAccessInstanceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVerifiedAccessInstanceRequest$FIPSEnabled' => '

Enable or disable support for Federal Information Processing Standards (FIPS) on the instance.

', 'CreateVerifiedAccessTrustProviderRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVolumeRequest$Encrypted' => '

Indicates whether the volume should be encrypted. The effect of setting the encryption state to true depends on the volume origin (new or from a snapshot), starting encryption state, ownership, and whether encryption by default is enabled. For more information, see Encryption by default in the Amazon Elastic Compute Cloud User Guide.

Encrypted Amazon EBS volumes must be attached to instances that support Amazon EBS encryption. For more information, see Supported instance types.

', 'CreateVolumeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVolumeRequest$MultiAttachEnabled' => '

Indicates whether to enable Amazon EBS Multi-Attach. If you enable Multi-Attach, you can attach the volume to up to 16 Instances built on the Nitro System in the same Availability Zone. This parameter is supported with io1 and io2 volumes only. For more information, see Amazon EBS Multi-Attach in the Amazon Elastic Compute Cloud User Guide.

', 'CreateVpcEndpointConnectionNotificationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVpcEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVpcEndpointRequest$PrivateDnsEnabled' => '

(Interface endpoint) Indicates whether to associate a private hosted zone with the specified VPC. The private hosted zone contains a record set for the default public DNS name for the service for the Region (for example, kinesis.us-east-1.amazonaws.com), which resolves to the private IP addresses of the endpoint network interfaces in the VPC. This enables you to make requests to the default public DNS name for the service instead of the public DNS names that are automatically generated by the VPC endpoint service.

To use a private hosted zone, you must set the following VPC attributes to true: enableDnsHostnames and enableDnsSupport. Use ModifyVpcAttribute to set the VPC attributes.

Default: true

', 'CreateVpcEndpointServiceConfigurationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVpcEndpointServiceConfigurationRequest$AcceptanceRequired' => '

Indicates whether requests from service consumers to create an endpoint to your service must be accepted manually.

', 'CreateVpcPeeringConnectionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVpcRequest$AmazonProvidedIpv6CidrBlock' => '

Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length for the VPC. You cannot specify the range of IP addresses, or the size of the CIDR block.

', 'CreateVpcRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVpnConnectionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVpnGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteCarrierGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteClientVpnEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteClientVpnRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteCoipCidrRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteCoipPoolRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteCustomerGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteDhcpOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteEgressOnlyInternetGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteEgressOnlyInternetGatewayResult$ReturnCode' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DeleteFleetsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteFleetsRequest$TerminateInstances' => '

Indicates whether to terminate the associated instances when the EC2 Fleet is deleted. The default is to terminate the instances.

To let the instances continue to run after the EC2 Fleet is deleted, specify no-terminate-instances. Supported only for fleets of type maintain and request.

For instant fleets, you cannot specify NoTerminateInstances. A deleted instant fleet with running instances is not supported.

', 'DeleteFlowLogsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteFpgaImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteFpgaImageResult$Return' => '

Is true if the request succeeds, and an error otherwise.

', 'DeleteInstanceConnectEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteInstanceEventWindowRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteInstanceEventWindowRequest$ForceDelete' => '

Specify true to force delete the event window. Use the force delete parameter if the event window is currently associated with targets.

', 'DeleteInternetGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteIpamPoolRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteIpamPoolRequest$Cascade' => '

Enables you to quickly delete an IPAM pool and all resources within that pool, including provisioned CIDRs, allocations, and other pools.

You can only use this option to delete pools in the private scope or pools in the public scope with a source resource. A source resource is a resource used to provision CIDRs to a resource planning pool.

', 'DeleteIpamRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteIpamRequest$Cascade' => '

Enables you to quickly delete an IPAM, private scopes, pools in private scopes, and any allocations in the pools in private scopes. You cannot delete the IPAM with this option if there is a pool in your public scope. If you use this option, IPAM does the following:

  • Deallocates any CIDRs allocated to VPC resources (such as VPCs) in pools in private scopes.

    No VPC resources are deleted as a result of enabling this option. The CIDR associated with the resource will no longer be allocated from an IPAM pool, but the CIDR itself will remain unchanged.

  • Deprovisions all IPv4 CIDRs provisioned to IPAM pools in private scopes.

  • Deletes all IPAM pools in private scopes.

  • Deletes all non-default private scopes in the IPAM.

  • Deletes the default public and private scopes and the IPAM.

', 'DeleteIpamResourceDiscoveryRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteIpamScopeRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteKeyPairRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteKeyPairResult$Return' => '

Is true if the request succeeds, and an error otherwise.

', 'DeleteLaunchTemplateRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteLaunchTemplateVersionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteLocalGatewayRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteLocalGatewayRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteLocalGatewayRouteTableVpcAssociationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteManagedPrefixListRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNatGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNetworkAclEntryRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNetworkAclEntryRequest$Egress' => '

Indicates whether the rule is an egress rule.

', 'DeleteNetworkAclRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNetworkInsightsAccessScopeAnalysisRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNetworkInsightsAccessScopeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNetworkInsightsAnalysisRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNetworkInsightsPathRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNetworkInterfacePermissionRequest$Force' => '

Specify true to remove the permission even if the network interface is attached to an instance.

', 'DeleteNetworkInterfacePermissionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNetworkInterfacePermissionResult$Return' => '

Returns true if the request succeeds, otherwise returns an error.

', 'DeleteNetworkInterfaceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeletePlacementGroupRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeletePublicIpv4PoolRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeletePublicIpv4PoolResult$ReturnValue' => '

Information about the result of deleting the public IPv4 pool.

', 'DeleteQueuedReservedInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteSecurityGroupRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteSnapshotRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteSpotDatafeedSubscriptionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteSubnetCidrReservationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteSubnetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTagsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTrafficMirrorFilterRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTrafficMirrorFilterRuleRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTrafficMirrorSessionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTrafficMirrorTargetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayConnectPeerRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayConnectRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayMulticastDomainRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayPeeringAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayPolicyTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayPrefixListReferenceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayRouteTableAnnouncementRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayVpcAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVerifiedAccessEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVerifiedAccessGroupRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVerifiedAccessInstanceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVerifiedAccessTrustProviderRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVolumeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVpcEndpointConnectionNotificationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVpcEndpointServiceConfigurationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVpcEndpointsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVpcPeeringConnectionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVpcPeeringConnectionResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DeleteVpcRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVpnConnectionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVpnGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeprovisionByoipCidrRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeprovisionIpamByoasnRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeprovisionIpamPoolCidrRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeprovisionPublicIpv4PoolCidrRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeregisterImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeregisterInstanceEventNotificationAttributesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeregisterInstanceTagAttributeRequest$IncludeAllTagsOfInstance' => '

Indicates whether to deregister all tag keys in the current Region. Specify false to deregister all tag keys.

', 'DeregisterTransitGatewayMulticastGroupMembersRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeregisterTransitGatewayMulticastGroupSourcesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeAccountAttributesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeAddressTransfersRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeAddressesAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeAddressesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeAggregateIdFormatRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeAggregateIdFormatResult$UseLongIdsAggregated' => '

Indicates whether all resource types in the Region are configured to use longer IDs. This value is only true if all users are configured to use longer IDs for all resources types in the Region.

', 'DescribeAvailabilityZonesRequest$AllAvailabilityZones' => '

Include all Availability Zones, Local Zones, and Wavelength Zones regardless of your opt-in status.

If you do not use this parameter, the results include only the zones for the Regions where you have chosen the option to opt in.

', 'DescribeAvailabilityZonesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeAwsNetworkPerformanceMetricSubscriptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeBundleTasksRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeByoipCidrsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeCapacityBlockOfferingsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeCapacityReservationFleetsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeCapacityReservationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeCarrierGatewaysRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeClassicLinkInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeClientVpnAuthorizationRulesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeClientVpnConnectionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeClientVpnEndpointsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeClientVpnRoutesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeClientVpnTargetNetworksRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeCoipPoolsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeConversionTasksRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeCustomerGatewaysRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeDhcpOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeEgressOnlyInternetGatewaysRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeElasticGpusRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeExportImageTasksRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeFastLaunchImagesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeFastSnapshotRestoresRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeFleetHistoryRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeFleetInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeFleetsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeFlowLogsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeFpgaImageAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeFpgaImagesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeImageAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeImagesRequest$IncludeDeprecated' => '

Specifies whether to include deprecated AMIs.

Default: No deprecated AMIs are included in the response.

If you are the AMI owner, all deprecated AMIs appear in the response regardless of what you specify for this parameter.

', 'DescribeImagesRequest$IncludeDisabled' => '

Specifies whether to include disabled AMIs.

Default: No disabled AMIs are included in the response.

', 'DescribeImagesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeImportImageTasksRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeImportSnapshotTasksRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceConnectEndpointsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceCreditSpecificationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceEventNotificationAttributesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceEventWindowsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceStatusRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceStatusRequest$IncludeAllInstances' => '

When true, includes the health status for all instances. When false, includes the health status for running instances only.

Default: false

', 'DescribeInstanceTopologyRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceTypeOfferingsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceTypesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInternetGatewaysRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeIpamByoasnRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeIpamPoolsRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeIpamResourceDiscoveriesRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeIpamResourceDiscoveryAssociationsRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeIpamScopesRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeIpamsRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeIpv6PoolsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeKeyPairsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeKeyPairsRequest$IncludePublicKey' => '

If true, the public key material is included in the response.

Default: false

', 'DescribeLaunchTemplateVersionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeLaunchTemplateVersionsRequest$ResolveAlias' => '

If true, and if a Systems Manager parameter is specified for ImageId, the AMI ID is displayed in the response for imageId.

If false, and if a Systems Manager parameter is specified for ImageId, the parameter is displayed in the response for imageId.

For more information, see Use a Systems Manager parameter instead of an AMI ID in the Amazon Elastic Compute Cloud User Guide.

Default: false

', 'DescribeLaunchTemplatesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeLocalGatewayRouteTableVpcAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeLocalGatewayRouteTablesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeLocalGatewayVirtualInterfaceGroupsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeLocalGatewayVirtualInterfacesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeLocalGatewaysRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeLockedSnapshotsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeManagedPrefixListsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeMovingAddressesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeNatGatewaysRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeNetworkAclsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeNetworkInsightsAccessScopeAnalysesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeNetworkInsightsAccessScopesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeNetworkInsightsAnalysesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeNetworkInsightsPathsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeNetworkInterfaceAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeNetworkInterfacesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribePlacementGroupsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribePrefixListsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribePrincipalIdFormatRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeRegionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeRegionsRequest$AllRegions' => '

Indicates whether to display all Regions, including Regions that are disabled for your account.

', 'DescribeReplaceRootVolumeTasksRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeReservedInstancesOfferingsRequest$IncludeMarketplace' => '

Include Reserved Instance Marketplace offerings in the response.

', 'DescribeReservedInstancesOfferingsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeReservedInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeRouteTablesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeScheduledInstanceAvailabilityRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeScheduledInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSecurityGroupReferencesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSecurityGroupRulesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSecurityGroupsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSnapshotAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSnapshotTierStatusRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSnapshotsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSpotDatafeedSubscriptionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSpotFleetInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSpotFleetRequestHistoryRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSpotFleetRequestsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSpotInstanceRequestsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSpotPriceHistoryRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeStaleSecurityGroupsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeStoreImageTasksRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSubnetsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTagsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTrafficMirrorFiltersRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTrafficMirrorSessionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTrafficMirrorTargetsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayAttachmentsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayConnectPeersRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayConnectsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayMulticastDomainsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayPeeringAttachmentsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayPolicyTablesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayRouteTableAnnouncementsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayRouteTablesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayVpcAttachmentsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewaysRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTrunkInterfaceAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVerifiedAccessEndpointsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVerifiedAccessGroupsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVerifiedAccessInstanceLoggingConfigurationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVerifiedAccessInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVerifiedAccessTrustProvidersRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVolumeAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVolumeStatusRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVolumesModificationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVolumesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcClassicLinkRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcEndpointConnectionNotificationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcEndpointConnectionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcEndpointServiceConfigurationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcEndpointServicePermissionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcEndpointServicesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcEndpointsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcPeeringConnectionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpnConnectionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpnGatewaysRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DestinationOptionsRequest$HiveCompatiblePartitions' => '

Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3. The default is false.

', 'DestinationOptionsRequest$PerHourPartition' => '

Indicates whether to partition the flow log per hour. This reduces the cost and response time for queries. The default is false.

', 'DestinationOptionsResponse$HiveCompatiblePartitions' => '

Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3.

', 'DestinationOptionsResponse$PerHourPartition' => '

Indicates whether to partition the flow log per hour.

', 'DetachClassicLinkVpcRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DetachClassicLinkVpcResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DetachInternetGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DetachNetworkInterfaceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DetachNetworkInterfaceRequest$Force' => '

Specifies whether to force a detachment.

  • Use the Force parameter only as a last resort to detach a network interface from a failed instance.

  • If you use the Force parameter to detach a network interface, you might not be able to attach a different network interface to the same index on the instance without first stopping and starting the instance.

  • If you force the detachment of a network interface, the instance metadata might not get updated. This means that the attributes associated with the detached network interface might still be visible. The instance metadata will get updated when you stop and start the instance.

', 'DetachVerifiedAccessTrustProviderRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DetachVolumeRequest$Force' => '

Forces detachment if the previous detachment attempt did not occur cleanly (for example, logging into an instance, unmounting the volume, and detaching normally). This option can lead to data loss or a corrupted file system. Use this option only as a last resort to detach a volume from a failed instance. The instance won\'t have an opportunity to flush file system caches or file system metadata. If you use this option, you must perform file system check and repair procedures.

', 'DetachVolumeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DetachVpnGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableAddressTransferRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableAwsNetworkPerformanceMetricSubscriptionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableAwsNetworkPerformanceMetricSubscriptionResult$Output' => '

Indicates whether the unsubscribe action was successful.

', 'DisableEbsEncryptionByDefaultRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableEbsEncryptionByDefaultResult$EbsEncryptionByDefault' => '

The updated status of encryption by default.

', 'DisableFastLaunchRequest$Force' => '

Forces the image settings to turn off Windows fast launch for your Windows AMI. This parameter overrides any errors that are encountered while cleaning up resources in your account.

', 'DisableFastLaunchRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableFastSnapshotRestoresRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableImageBlockPublicAccessRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableImageDeprecationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableImageDeprecationResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DisableImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableImageResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DisableIpamOrganizationAdminAccountRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableIpamOrganizationAdminAccountResult$Success' => '

The result of disabling the IPAM account.

', 'DisableSerialConsoleAccessRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableSerialConsoleAccessResult$SerialConsoleAccessEnabled' => '

If true, access to the EC2 serial console of all instances is enabled for your account. If false, access to the EC2 serial console of all instances is disabled for your account.

', 'DisableSnapshotBlockPublicAccessRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableTransitGatewayRouteTablePropagationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableVgwRoutePropagationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableVpcClassicLinkDnsSupportResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DisableVpcClassicLinkRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableVpcClassicLinkResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DisassociateAddressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateClientVpnTargetNetworkRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateEnclaveCertificateIamRoleRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateEnclaveCertificateIamRoleResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DisassociateInstanceEventWindowRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateIpamByoasnRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateIpamResourceDiscoveryRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateNatGatewayAddressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateTransitGatewayMulticastDomainRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateTransitGatewayPolicyTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateTransitGatewayRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateTrunkInterfaceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateTrunkInterfaceResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DnsOptions$PrivateDnsOnlyForInboundResolverEndpoint' => '

Indicates whether to enable private DNS only for inbound endpoints.

', 'DnsOptionsSpecification$PrivateDnsOnlyForInboundResolverEndpoint' => '

Indicates whether to enable private DNS only for inbound endpoints. This option is available only for services that support both gateway and interface endpoints. It routes traffic that originates from the VPC to the gateway endpoint and traffic that originates from on-premises to the interface endpoint.

', 'DnsServersOptionsModifyStructure$Enabled' => '

Indicates whether DNS servers should be used. Specify False to delete the existing DNS servers.

', 'EbsBlockDevice$DeleteOnTermination' => '

Indicates whether the EBS volume is deleted on instance termination. For more information, see Preserving Amazon EBS volumes on instance termination in the Amazon EC2 User Guide.

', 'EbsBlockDevice$Encrypted' => '

Indicates whether the encryption state of an EBS volume is changed while being restored from a backing snapshot. The effect of setting the encryption state to true depends on the volume origin (new or from a snapshot), starting encryption state, ownership, and whether encryption by default is enabled. For more information, see Amazon EBS encryption in the Amazon EC2 User Guide.

In no case can you remove encryption from an encrypted volume.

Encrypted volumes can only be attached to instances that support Amazon EBS encryption. For more information, see Supported instance types.

This parameter is not returned by DescribeImageAttribute.

For CreateImage and RegisterImage, whether you can include this parameter, and the allowed values differ depending on the type of block device mapping you are creating.

  • If you are creating a block device mapping for a new (empty) volume, you can include this parameter, and specify either true for an encrypted volume, or false for an unencrypted volume. If you omit this parameter, it defaults to false (unencrypted).

  • If you are creating a block device mapping from an existing encrypted or unencrypted snapshot, you must omit this parameter. If you include this parameter, the request will fail, regardless of the value that you specify.

  • If you are creating a block device mapping from an existing unencrypted volume, you can include this parameter, but you must specify false. If you specify true, the request will fail. In this case, we recommend that you omit the parameter.

  • If you are creating a block device mapping from an existing encrypted volume, you can include this parameter, and specify either true or false. However, if you specify false, the parameter is ignored and the block device mapping is always encrypted. In this case, we recommend that you omit the parameter.

', 'EbsInstanceBlockDevice$DeleteOnTermination' => '

Indicates whether the volume is deleted on instance termination.

', 'EbsInstanceBlockDeviceSpecification$DeleteOnTermination' => '

Indicates whether the volume is deleted on instance termination.

', 'Ec2InstanceConnectEndpoint$PreserveClientIp' => '

Indicates whether your client\'s IP address is preserved as the source. The value is true or false.

  • If true, your client\'s IP address is used when you connect to a resource.

  • If false, the elastic network interface IP address is used when you connect to a resource.

Default: true

', 'EnaSrdSpecification$EnaSrdEnabled' => '

Indicates whether ENA Express is enabled for the network interface.

', 'EnaSrdSpecificationRequest$EnaSrdEnabled' => '

Specifies whether ENA Express is enabled for the network interface when you launch an instance from your launch template.

', 'EnaSrdUdpSpecification$EnaSrdUdpEnabled' => '

Indicates whether UDP traffic to and from the instance uses ENA Express. To specify this setting, you must first enable ENA Express.

', 'EnaSrdUdpSpecificationRequest$EnaSrdUdpEnabled' => '

Indicates whether UDP traffic uses ENA Express for your instance. To ensure that UDP traffic can use ENA Express when you launch an instance, you must also set EnaSrdEnabled in the EnaSrdSpecificationRequest to true in your launch template.

', 'EnableAddressTransferRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableAwsNetworkPerformanceMetricSubscriptionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableAwsNetworkPerformanceMetricSubscriptionResult$Output' => '

Indicates whether the subscribe action was successful.

', 'EnableEbsEncryptionByDefaultRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableEbsEncryptionByDefaultResult$EbsEncryptionByDefault' => '

The updated status of encryption by default.

', 'EnableFastLaunchRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableFastSnapshotRestoresRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableImageBlockPublicAccessRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableImageDeprecationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableImageDeprecationResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'EnableImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableImageResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'EnableIpamOrganizationAdminAccountRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableIpamOrganizationAdminAccountResult$Success' => '

The result of enabling the IPAM account.

', 'EnableReachabilityAnalyzerOrganizationSharingRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableReachabilityAnalyzerOrganizationSharingResult$ReturnValue' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'EnableSerialConsoleAccessRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableSerialConsoleAccessResult$SerialConsoleAccessEnabled' => '

If true, access to the EC2 serial console of all instances is enabled for your account. If false, access to the EC2 serial console of all instances is disabled for your account.

', 'EnableSnapshotBlockPublicAccessRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableTransitGatewayRouteTablePropagationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableVgwRoutePropagationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableVolumeIORequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableVpcClassicLinkDnsSupportResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'EnableVpcClassicLinkRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableVpcClassicLinkResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'EnclaveOptions$Enabled' => '

If this parameter is set to true, the instance is enabled for Amazon Web Services Nitro Enclaves; otherwise, it is not enabled for Amazon Web Services Nitro Enclaves.

', 'EnclaveOptionsRequest$Enabled' => '

To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to true.

', 'ExportClientVpnClientCertificateRevocationListRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ExportClientVpnClientConfigurationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ExportImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ExportTransitGatewayRoutesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'FleetCapacityReservation$EbsOptimized' => '

Indicates whether the Capacity Reservation reserves capacity for EBS-optimized instance types.

', 'FleetData$TerminateInstancesWithExpiration' => '

Indicates whether running instances should be terminated when the EC2 Fleet expires.

', 'FleetData$ReplaceUnhealthyInstances' => '

Indicates whether EC2 Fleet should replace unhealthy Spot Instances. Supported only for fleets of type maintain. For more information, see EC2 Fleet health checks in the Amazon EC2 User Guide.

', 'FpgaImage$Public' => '

Indicates whether the AFI is public.

', 'FpgaImage$DataRetentionSupport' => '

Indicates whether data retention support is enabled for the AFI.

', 'GetAssociatedEnclaveCertificateIamRolesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetAssociatedIpv6PoolCidrsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetAwsNetworkPerformanceDataRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetCapacityReservationUsageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetCoipPoolUsageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetConsoleOutputRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetConsoleOutputRequest$Latest' => '

When enabled, retrieves the latest console output for the instance.

Default: disabled (false)

', 'GetConsoleScreenshotRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetConsoleScreenshotRequest$WakeUp' => '

When set to true, acts as keystroke input and wakes up an instance that\'s in standby or "sleep" mode.

', 'GetDefaultCreditSpecificationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetEbsDefaultKmsKeyIdRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetEbsEncryptionByDefaultRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetEbsEncryptionByDefaultResult$EbsEncryptionByDefault' => '

Indicates whether encryption by default is enabled.

', 'GetFlowLogsIntegrationTemplateRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetGroupsForCapacityReservationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetImageBlockPublicAccessStateRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetInstanceTypesFromInstanceRequirementsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetInstanceUefiDataRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetIpamAddressHistoryRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetIpamDiscoveredAccountsRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetIpamDiscoveredPublicAddressesRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetIpamDiscoveredResourceCidrsRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetIpamPoolAllocationsRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetIpamPoolCidrsRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetIpamResourceCidrsRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetLaunchTemplateDataRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetManagedPrefixListAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetManagedPrefixListEntriesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetNetworkInsightsAccessScopeAnalysisFindingsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetNetworkInsightsAccessScopeContentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetPasswordDataRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetReservedInstancesExchangeQuoteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetReservedInstancesExchangeQuoteResult$IsValidExchange' => '

If true, the exchange is valid. If false, the exchange cannot be completed.

', 'GetSecurityGroupsForVpcRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetSerialConsoleAccessStatusRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetSerialConsoleAccessStatusResult$SerialConsoleAccessEnabled' => '

If true, access to the EC2 serial console of all instances is enabled for your account. If false, access to the EC2 serial console of all instances is disabled for your account.

', 'GetSnapshotBlockPublicAccessStateRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetSpotPlacementScoresRequest$SingleAvailabilityZone' => '

Specify true so that the response returns a list of scored Availability Zones. Otherwise, the response returns a list of scored Regions.

A list of scored Availability Zones is useful if you want to launch all of your Spot capacity into a single Availability Zone.

', 'GetSpotPlacementScoresRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetSubnetCidrReservationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetTransitGatewayAttachmentPropagationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetTransitGatewayMulticastDomainAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetTransitGatewayPolicyTableAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetTransitGatewayPolicyTableEntriesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetTransitGatewayPrefixListReferencesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetTransitGatewayRouteTableAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetTransitGatewayRouteTablePropagationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetVerifiedAccessEndpointPolicyRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetVerifiedAccessEndpointPolicyResult$PolicyEnabled' => '

The status of the Verified Access policy.

', 'GetVerifiedAccessGroupPolicyRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetVerifiedAccessGroupPolicyResult$PolicyEnabled' => '

The status of the Verified Access policy.

', 'GetVpnConnectionDeviceSampleConfigurationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetVpnConnectionDeviceTypesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetVpnTunnelReplacementStatusRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'HibernationOptions$Configured' => '

If true, your instance is enabled for hibernation; otherwise, it is not enabled for hibernation.

', 'HibernationOptionsRequest$Configured' => '

Set to true to enable your instance for hibernation.

For Spot Instances, if you set Configured to true, either omit the InstanceInterruptionBehavior parameter (for SpotMarketOptions ), or set it to hibernate. When Configured is true:

  • If you omit InstanceInterruptionBehavior, it defaults to hibernate.

  • If you set InstanceInterruptionBehavior to a value other than hibernate, you\'ll get an error.

Default: false

', 'Host$MemberOfServiceLinkedResourceGroup' => '

Indicates whether the Dedicated Host is in a host resource group. If memberOfServiceLinkedResourceGroup is true, the host is in a host resource group; otherwise, it is not.

', 'IdFormat$UseLongIds' => '

Indicates whether longer IDs (17-character IDs) are enabled for the resource.

', 'Image$Public' => '

Indicates whether the image has public launch permissions. The value is true if this image has public launch permissions or false if it has only implicit and explicit launch permissions.

', 'Image$EnaSupport' => '

Specifies whether enhanced networking with ENA is enabled.

', 'ImportClientVpnClientCertificateRevocationListRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ImportClientVpnClientCertificateRevocationListResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ImportImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ImportImageRequest$Encrypted' => '

Specifies whether the destination AMI of the imported image should be encrypted. The default KMS key for EBS is used unless you specify a non-default KMS key using KmsKeyId. For more information, see Amazon EBS Encryption in the Amazon Elastic Compute Cloud User Guide.

', 'ImportImageResult$Encrypted' => '

Indicates whether the AMI is encrypted.

', 'ImportImageTask$Encrypted' => '

Indicates whether the image is encrypted.

', 'ImportInstanceLaunchSpecification$Monitoring' => '

Indicates whether monitoring is enabled.

', 'ImportInstanceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ImportKeyPairRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ImportSnapshotRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ImportSnapshotRequest$Encrypted' => '

Specifies whether the destination snapshot of the imported image should be encrypted. The default KMS key for EBS is used unless you specify a non-default KMS key using KmsKeyId. For more information, see Amazon EBS Encryption in the Amazon Elastic Compute Cloud User Guide.

', 'ImportVolumeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'Instance$EbsOptimized' => '

Indicates whether the instance is optimized for Amazon EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS Optimized instance.

', 'Instance$EnaSupport' => '

Specifies whether enhanced networking with ENA is enabled.

', 'Instance$SourceDestCheck' => '

Indicates whether source/destination checking is enabled.

', 'InstanceAttachmentEnaSrdSpecification$EnaSrdEnabled' => '

Indicates whether ENA Express is enabled for the network interface.

', 'InstanceAttachmentEnaSrdUdpSpecification$EnaSrdUdpEnabled' => '

Indicates whether UDP traffic to and from the instance uses ENA Express. To specify this setting, you must first enable ENA Express.

', 'InstanceIpv6Address$IsPrimaryIpv6' => '

Determines if an IPv6 address associated with a network interface is the primary IPv6 address. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. For more information, see RunInstances.

', 'InstanceNetworkInterface$SourceDestCheck' => '

Indicates whether source/destination checking is enabled.

', 'InstanceNetworkInterfaceAttachment$DeleteOnTermination' => '

Indicates whether the network interface is deleted when the instance is terminated.

', 'InstanceNetworkInterfaceSpecification$AssociatePublicIpAddress' => '

Indicates whether to assign a public IPv4 address to an instance you launch in a VPC. The public IP address can only be assigned to a network interface for eth0, and can only be assigned to a new network interface, not an existing one. You cannot specify more than one network interface in the request. If launching into a default subnet, the default value is true.

Starting on February 1, 2024, Amazon Web Services will charge for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the Public IPv4 Address tab on the Amazon VPC pricing page.

', 'InstanceNetworkInterfaceSpecification$DeleteOnTermination' => '

If set to true, the interface is deleted when the instance is terminated. You can specify true only if creating a new network interface when launching an instance.

', 'InstanceNetworkInterfaceSpecification$AssociateCarrierIpAddress' => '

Indicates whether to assign a carrier IP address to the network interface.

You can only assign a carrier IP address to a network interface that is in a subnet in a Wavelength Zone. For more information about carrier IP addresses, see Carrier IP address in the Amazon Web Services Wavelength Developer Guide.

', 'InstanceNetworkInterfaceSpecification$PrimaryIpv6' => '

The primary IPv6 address of the network interface. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. For more information about primary IPv6 addresses, see RunInstances.

', 'InstancePrivateIpAddress$Primary' => '

Indicates whether this IPv4 address is the primary private IP address of the network interface.

', 'InstanceRequirements$RequireHibernateSupport' => '

Indicates whether instance types must support hibernation for On-Demand Instances.

This parameter is not supported for GetSpotPlacementScores.

Default: false

', 'InstanceRequirementsRequest$RequireHibernateSupport' => '

Indicates whether instance types must support hibernation for On-Demand Instances.

This parameter is not supported for GetSpotPlacementScores.

Default: false

', 'InstanceSpecification$ExcludeBootVolume' => '

Excludes the root volume from being snapshotted.

', 'InstanceTagNotificationAttribute$IncludeAllTagsOfInstance' => '

Indicates wheter all tag keys in the current Region are registered to appear in scheduled event notifications. true indicates that all tag keys in the current Region are registered.

', 'IpamPool$AutoImport' => '

If selected, IPAM will continuously look for resources within the CIDR range of this pool and automatically import them as allocations into your IPAM. The CIDRs that will be allocated for these resources must not already be allocated to other resources in order for the import to succeed. IPAM will import a CIDR regardless of its compliance with the pool\'s allocation rules, so a resource might be imported and subsequently marked as noncompliant. If IPAM discovers multiple CIDRs that overlap, IPAM will import the largest CIDR only. If IPAM discovers multiple CIDRs with matching CIDRs, IPAM will randomly import one of them only.

A locale must be set on the pool for this feature to work.

', 'IpamPool$PubliclyAdvertisable' => '

Determines if a pool is publicly advertisable. This option is not available for pools with AddressFamily set to ipv4.

', 'IpamResourceDiscovery$IsDefault' => '

Defines if the resource discovery is the default. The default resource discovery is the resource discovery automatically created when you create an IPAM.

', 'IpamResourceDiscoveryAssociation$IsDefault' => '

Defines if the resource discovery is the default. When you create an IPAM, a default resource discovery is created for your IPAM and it\'s associated with your IPAM.

', 'IpamScope$IsDefault' => '

Defines if the scope is the default scope or not.

', 'LaunchSpecification$EbsOptimized' => '

Indicates whether the instance is optimized for EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal EBS I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS Optimized instance.

Default: false

', 'LaunchTemplateEbsBlockDevice$Encrypted' => '

Indicates whether the EBS volume is encrypted.

', 'LaunchTemplateEbsBlockDevice$DeleteOnTermination' => '

Indicates whether the EBS volume is deleted on instance termination.

', 'LaunchTemplateEbsBlockDeviceRequest$Encrypted' => '

Indicates whether the EBS volume is encrypted. Encrypted volumes can only be attached to instances that support Amazon EBS encryption. If you are creating a volume from a snapshot, you can\'t specify an encryption value.

', 'LaunchTemplateEbsBlockDeviceRequest$DeleteOnTermination' => '

Indicates whether the EBS volume is deleted on instance termination.

', 'LaunchTemplateEnaSrdSpecification$EnaSrdEnabled' => '

Indicates whether ENA Express is enabled for the network interface.

', 'LaunchTemplateEnaSrdUdpSpecification$EnaSrdUdpEnabled' => '

Indicates whether UDP traffic to and from the instance uses ENA Express. To specify this setting, you must first enable ENA Express.

', 'LaunchTemplateEnclaveOptions$Enabled' => '

If this parameter is set to true, the instance is enabled for Amazon Web Services Nitro Enclaves; otherwise, it is not enabled for Amazon Web Services Nitro Enclaves.

', 'LaunchTemplateEnclaveOptionsRequest$Enabled' => '

To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to true.

', 'LaunchTemplateHibernationOptions$Configured' => '

If this parameter is set to true, the instance is enabled for hibernation; otherwise, it is not enabled for hibernation.

', 'LaunchTemplateHibernationOptionsRequest$Configured' => '

If you set this parameter to true, the instance is enabled for hibernation.

Default: false

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$AssociateCarrierIpAddress' => '

Indicates whether to associate a Carrier IP address with eth0 for a new network interface.

Use this option when you launch an instance in a Wavelength Zone and want to associate a Carrier IP address with the network interface. For more information about Carrier IP addresses, see Carrier IP addresses in the Wavelength Developer Guide.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$AssociatePublicIpAddress' => '

Indicates whether to associate a public IPv4 address with eth0 for a new network interface.

Starting on February 1, 2024, Amazon Web Services will charge for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the Public IPv4 Address tab on the Amazon VPC pricing page.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$DeleteOnTermination' => '

Indicates whether the network interface is deleted when the instance is terminated.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$PrimaryIpv6' => '

The primary IPv6 address of the network interface. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. For more information about primary IPv6 addresses, see RunInstances.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$AssociateCarrierIpAddress' => '

Associates a Carrier IP address with eth0 for a new network interface.

Use this option when you launch an instance in a Wavelength Zone and want to associate a Carrier IP address with the network interface. For more information about Carrier IP addresses, see Carrier IP addresses in the Wavelength Developer Guide.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$AssociatePublicIpAddress' => '

Associates a public IPv4 address with eth0 for a new network interface.

Starting on February 1, 2024, Amazon Web Services will charge for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the Public IPv4 Address tab on the Amazon VPC pricing page.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$DeleteOnTermination' => '

Indicates whether the network interface is deleted when the instance is terminated.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$PrimaryIpv6' => '

The primary IPv6 address of the network interface. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. For more information about primary IPv6 addresses, see RunInstances.

', 'LaunchTemplatePrivateDnsNameOptions$EnableResourceNameDnsARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS A records.

', 'LaunchTemplatePrivateDnsNameOptions$EnableResourceNameDnsAAAARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.

', 'LaunchTemplatePrivateDnsNameOptionsRequest$EnableResourceNameDnsARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS A records.

', 'LaunchTemplatePrivateDnsNameOptionsRequest$EnableResourceNameDnsAAAARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.

', 'LaunchTemplateVersion$DefaultVersion' => '

Indicates whether the version is the default version.

', 'LaunchTemplatesMonitoring$Enabled' => '

Indicates whether detailed monitoring is enabled. Otherwise, basic monitoring is enabled.

', 'LaunchTemplatesMonitoringRequest$Enabled' => '

Specify true to enable detailed monitoring. Otherwise, basic monitoring is enabled.

', 'ListImagesInRecycleBinRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ListSnapshotsInRecycleBinRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'LockSnapshotRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyAddressAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyAvailabilityZoneGroupRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyAvailabilityZoneGroupResult$Return' => '

Is true if the request succeeds, and an error otherwise.

', 'ModifyCapacityReservationFleetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyCapacityReservationFleetRequest$RemoveEndDate' => '

Indicates whether to remove the end date from the Capacity Reservation Fleet. If you remove the end date, the Capacity Reservation Fleet does not expire and it remains active until you explicitly cancel it using the CancelCapacityReservationFleet action.

You can\'t specify RemoveEndDate and EndDate in the same request.

', 'ModifyCapacityReservationFleetResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyCapacityReservationRequest$Accept' => '

Reserved. Capacity Reservations you have created are accepted by default.

', 'ModifyCapacityReservationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyCapacityReservationResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyClientVpnEndpointRequest$SplitTunnel' => '

Indicates whether the VPN is split-tunnel.

For information about split-tunnel VPN endpoints, see Split-tunnel Client VPN endpoint in the Client VPN Administrator Guide.

', 'ModifyClientVpnEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyClientVpnEndpointResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyDefaultCreditSpecificationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyEbsDefaultKmsKeyIdRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyFleetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyFleetResult$Return' => '

If the request succeeds, the response returns true. If the request fails, no response is returned, and instead an error message is returned.

', 'ModifyFpgaImageAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyIdFormatRequest$UseLongIds' => '

Indicate whether the resource should use longer IDs (17-character IDs).

', 'ModifyIdentityIdFormatRequest$UseLongIds' => '

Indicates whether the resource should use longer IDs (17-character IDs)

', 'ModifyImageAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyInstanceAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyInstanceCapacityReservationAttributesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyInstanceCapacityReservationAttributesResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyInstanceCreditSpecificationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyInstanceEventStartTimeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyInstanceEventWindowRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyInstanceMaintenanceOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyInstanceMetadataOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyInstancePlacementResult$Return' => '

Is true if the request succeeds, and an error otherwise.

', 'ModifyIpamPoolRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyIpamPoolRequest$AutoImport' => '

If true, IPAM will continuously look for resources within the CIDR range of this pool and automatically import them as allocations into your IPAM. The CIDRs that will be allocated for these resources must not already be allocated to other resources in order for the import to succeed. IPAM will import a CIDR regardless of its compliance with the pool\'s allocation rules, so a resource might be imported and subsequently marked as noncompliant. If IPAM discovers multiple CIDRs that overlap, IPAM will import the largest CIDR only. If IPAM discovers multiple CIDRs with matching CIDRs, IPAM will randomly import one of them only.

A locale must be set on the pool for this feature to work.

', 'ModifyIpamPoolRequest$ClearAllocationDefaultNetmaskLength' => '

Clear the default netmask length allocation rule for this pool.

', 'ModifyIpamRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyIpamResourceCidrRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyIpamResourceCidrRequest$Monitored' => '

Determines if the resource is monitored by IPAM. If a resource is monitored, the resource is discovered by IPAM and you can view details about the resource’s CIDR.

', 'ModifyIpamResourceDiscoveryRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyIpamScopeRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyLaunchTemplateRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyLocalGatewayRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyManagedPrefixListRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyNetworkInterfaceAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyNetworkInterfaceAttributeRequest$EnablePrimaryIpv6' => '

If you’re modifying a network interface in a dual-stack or IPv6-only subnet, you have the option to assign a primary IPv6 IP address. A primary IPv6 address is an IPv6 GUA address associated with an ENI that you have enabled to use a primary IPv6 address. Use this option if the instance that this ENI will be attached to relies on its IPv6 address not changing. Amazon Web Services will automatically assign an IPv6 address associated with the ENI attached to your instance to be the primary IPv6 address. Once you enable an IPv6 GUA address to be a primary IPv6, you cannot disable it. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. If you have multiple IPv6 addresses associated with an ENI attached to your instance and you enable a primary IPv6 address, the first IPv6 GUA address associated with the ENI becomes the primary IPv6 address.

', 'ModifyPrivateDnsNameOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyPrivateDnsNameOptionsRequest$EnableResourceNameDnsARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS A records.

', 'ModifyPrivateDnsNameOptionsRequest$EnableResourceNameDnsAAAARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.

', 'ModifyPrivateDnsNameOptionsResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifySecurityGroupRulesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifySecurityGroupRulesResult$Return' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'ModifySnapshotAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifySnapshotTierRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifySpotFleetRequestResponse$Return' => '

If the request succeeds, the response returns true. If the request fails, no response is returned, and instead an error message is returned.

', 'ModifyTrafficMirrorFilterNetworkServicesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyTrafficMirrorFilterRuleRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyTrafficMirrorSessionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyTransitGatewayPrefixListReferenceRequest$Blackhole' => '

Indicates whether to drop traffic that matches this route.

', 'ModifyTransitGatewayPrefixListReferenceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyTransitGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyTransitGatewayVpcAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVerifiedAccessEndpointPolicyRequest$PolicyEnabled' => '

The status of the Verified Access policy.

', 'ModifyVerifiedAccessEndpointPolicyRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVerifiedAccessEndpointPolicyResult$PolicyEnabled' => '

The status of the Verified Access policy.

', 'ModifyVerifiedAccessEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVerifiedAccessGroupPolicyRequest$PolicyEnabled' => '

The status of the Verified Access policy.

', 'ModifyVerifiedAccessGroupPolicyRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVerifiedAccessGroupPolicyResult$PolicyEnabled' => '

The status of the Verified Access policy.

', 'ModifyVerifiedAccessGroupRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVerifiedAccessInstanceLoggingConfigurationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVerifiedAccessInstanceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVerifiedAccessTrustProviderRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVolumeAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVolumeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVolumeRequest$MultiAttachEnabled' => '

Specifies whether to enable Amazon EBS Multi-Attach. If you enable Multi-Attach, you can attach the volume to up to 16 Nitro-based instances in the same Availability Zone. This parameter is supported with io1 and io2 volumes only. For more information, see Amazon EBS Multi-Attach in the Amazon Elastic Compute Cloud User Guide.

', 'ModifyVpcEndpointConnectionNotificationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpcEndpointConnectionNotificationResult$ReturnValue' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyVpcEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpcEndpointRequest$ResetPolicy' => '

(Gateway endpoint) Specify true to reset the policy document to the default policy. The default policy allows full access to the service.

', 'ModifyVpcEndpointRequest$PrivateDnsEnabled' => '

(Interface endpoint) Indicates whether a private hosted zone is associated with the VPC.

', 'ModifyVpcEndpointResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyVpcEndpointServiceConfigurationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpcEndpointServiceConfigurationRequest$RemovePrivateDnsName' => '

(Interface endpoint configuration) Removes the private DNS name of the endpoint service.

', 'ModifyVpcEndpointServiceConfigurationRequest$AcceptanceRequired' => '

Indicates whether requests to create an endpoint to your service must be accepted.

', 'ModifyVpcEndpointServiceConfigurationResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyVpcEndpointServicePayerResponsibilityRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpcEndpointServicePayerResponsibilityResult$ReturnValue' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyVpcEndpointServicePermissionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpcEndpointServicePermissionsResult$ReturnValue' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyVpcPeeringConnectionOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpcTenancyRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpcTenancyResult$ReturnValue' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'ModifyVpnConnectionOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpnConnectionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpnTunnelCertificateRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpnTunnelOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpnTunnelOptionsRequest$SkipTunnelReplacement' => '

Choose whether or not to trigger immediate tunnel replacement. This is only applicable when turning on or off EnableTunnelLifecycleControl.

Valid values: True | False

', 'ModifyVpnTunnelOptionsSpecification$EnableTunnelLifecycleControl' => '

Turn on or off tunnel endpoint lifecycle control feature.

', 'MonitorInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'MoveAddressToVpcRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'MoveByoipCidrToIpamRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'NatGatewayAddress$IsPrimary' => '

Defines if the IP address is the primary address.

', 'NetworkAcl$IsDefault' => '

Indicates whether this is the default network ACL for the VPC.

', 'NetworkAclEntry$Egress' => '

Indicates whether the rule is an egress rule (applied to traffic leaving the subnet).

', 'NetworkInsightsAnalysis$NetworkPathFound' => '

Indicates whether the destination is reachable from the source.

', 'NetworkInterface$RequesterManaged' => '

Indicates whether the network interface is being managed by Amazon Web Services.

', 'NetworkInterface$SourceDestCheck' => '

Indicates whether source/destination checking is enabled.

', 'NetworkInterface$DenyAllIgwTraffic' => '

Indicates whether a network interface with an IPv6 address is unreachable from the public internet. If the value is true, inbound traffic from the internet is dropped and you cannot assign an elastic IP address to the network interface. The network interface is reachable from peered VPCs and resources connected through a transit gateway, including on-premises networks.

', 'NetworkInterface$Ipv6Native' => '

Indicates whether this is an IPv6 only network interface.

', 'NetworkInterfaceAttachment$DeleteOnTermination' => '

Indicates whether the network interface is deleted when the instance is terminated.

', 'NetworkInterfaceAttachmentChanges$DeleteOnTermination' => '

Indicates whether the network interface is deleted when the instance is terminated.

', 'NetworkInterfaceIpv6Address$IsPrimaryIpv6' => '

Determines if an IPv6 address associated with a network interface is the primary IPv6 address. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. For more information, see ModifyNetworkInterfaceAttribute.

', 'NetworkInterfacePrivateIpAddress$Primary' => '

Indicates whether this IPv4 address is the primary private IPv4 address of the network interface.

', 'OnDemandOptions$SingleInstanceType' => '

Indicates that the fleet uses a single instance type to launch all On-Demand Instances in the fleet.

Supported only for fleets of type instant.

', 'OnDemandOptions$SingleAvailabilityZone' => '

Indicates that the fleet launches all On-Demand Instances into a single Availability Zone.

Supported only for fleets of type instant.

', 'OnDemandOptionsRequest$SingleInstanceType' => '

Indicates that the fleet uses a single instance type to launch all On-Demand Instances in the fleet.

Supported only for fleets of type instant.

', 'OnDemandOptionsRequest$SingleAvailabilityZone' => '

Indicates that the fleet launches all On-Demand Instances into a single Availability Zone.

Supported only for fleets of type instant.

', 'PeeringConnectionOptions$AllowDnsResolutionFromRemoteVpc' => '

If true, the public DNS hostnames of instances in the specified VPC resolve to private IP addresses when queried from instances in the peer VPC.

', 'PeeringConnectionOptions$AllowEgressFromLocalClassicLinkToRemoteVpc' => '

Deprecated.

', 'PeeringConnectionOptions$AllowEgressFromLocalVpcToRemoteClassicLink' => '

Deprecated.

', 'PeeringConnectionOptionsRequest$AllowDnsResolutionFromRemoteVpc' => '

If true, enables a local VPC to resolve public DNS hostnames to private IP addresses when queried from instances in the peer VPC.

', 'PeeringConnectionOptionsRequest$AllowEgressFromLocalClassicLinkToRemoteVpc' => '

Deprecated.

', 'PeeringConnectionOptionsRequest$AllowEgressFromLocalVpcToRemoteClassicLink' => '

Deprecated.

', 'PriceSchedule$Active' => '

The current price schedule, as determined by the term remaining for the Reserved Instance in the listing.

A specific price schedule is always in effect, but only one price schedule can be active at any time. Take, for example, a Reserved Instance listing that has five months remaining in its term. When you specify price schedules for five months and two months, this means that schedule 1, covering the first three months of the remaining term, will be active during months 5, 4, and 3. Then schedule 2, covering the last two months of the term, will be active for months 2 and 1.

', 'PrivateDnsNameOptionsOnLaunch$EnableResourceNameDnsARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS A records.

', 'PrivateDnsNameOptionsOnLaunch$EnableResourceNameDnsAAAARecord' => '

Indicates whether to respond to DNS queries for instance hostname with DNS AAAA records.

', 'PrivateDnsNameOptionsRequest$EnableResourceNameDnsARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS A records.

', 'PrivateDnsNameOptionsRequest$EnableResourceNameDnsAAAARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.

', 'PrivateDnsNameOptionsResponse$EnableResourceNameDnsARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS A records.

', 'PrivateDnsNameOptionsResponse$EnableResourceNameDnsAAAARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.

', 'PrivateIpAddressSpecification$Primary' => '

Indicates whether the private IPv4 address is the primary private IPv4 address. Only one IPv4 address can be designated as primary.

', 'ProvisionByoipCidrRequest$PubliclyAdvertisable' => '

(IPv6 only) Indicate whether the address range will be publicly advertised to the internet.

Default: true

', 'ProvisionByoipCidrRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ProvisionByoipCidrRequest$MultiRegion' => '

Reserved.

', 'ProvisionIpamByoasnRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ProvisionIpamPoolCidrRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ProvisionPublicIpv4PoolCidrRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'PurchaseCapacityBlockRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'PurchaseReservedInstancesOfferingRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'PurchaseScheduledInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RebootInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RegisterImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RegisterImageRequest$EnaSupport' => '

Set to true to enable enhanced networking with ENA for the AMI and any instances that you launch from the AMI.

This option is supported only for HVM AMIs. Specifying this option with a PV AMI can make instances launched from the AMI unreachable.

', 'RegisterInstanceEventNotificationAttributesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RegisterInstanceTagAttributeRequest$IncludeAllTagsOfInstance' => '

Indicates whether to register all tag keys in the current Region. Specify true to register all tag keys.

', 'RegisterTransitGatewayMulticastGroupMembersRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RegisterTransitGatewayMulticastGroupSourcesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RejectTransitGatewayMulticastDomainAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RejectTransitGatewayPeeringAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RejectTransitGatewayVpcAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RejectVpcEndpointConnectionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RejectVpcPeeringConnectionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RejectVpcPeeringConnectionResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ReleaseAddressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ReleaseIpamPoolAllocationRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ReleaseIpamPoolAllocationResult$Success' => '

Indicates if the release was successful.

', 'ReplaceNetworkAclAssociationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ReplaceNetworkAclEntryRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ReplaceNetworkAclEntryRequest$Egress' => '

Indicates whether to replace the egress rule.

Default: If no value is specified, we replace the ingress rule.

', 'ReplaceRootVolumeTask$DeleteReplacedRootVolume' => '

Indicates whether the original root volume is to be deleted after the root volume replacement task completes.

', 'ReplaceRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ReplaceRouteRequest$LocalTarget' => '

Specifies whether to reset the local route to its default target (local).

', 'ReplaceRouteTableAssociationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ReplaceTransitGatewayRouteRequest$Blackhole' => '

Indicates whether traffic matching this route is to be dropped.

', 'ReplaceTransitGatewayRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ReplaceVpnTunnelRequest$ApplyPendingMaintenance' => '

Trigger pending tunnel endpoint maintenance.

', 'ReplaceVpnTunnelRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ReplaceVpnTunnelResult$Return' => '

Confirmation of replace tunnel operation.

', 'ReportInstanceStatusRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RequestLaunchTemplateData$EbsOptimized' => '

Indicates whether the instance is optimized for Amazon EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal Amazon EBS I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS-optimized instance.

', 'RequestLaunchTemplateData$DisableApiTermination' => '

If you set this parameter to true, you can\'t terminate the instance using the Amazon EC2 console, CLI, or API; otherwise, you can. To change this attribute after launch, use ModifyInstanceAttribute. Alternatively, if you set InstanceInitiatedShutdownBehavior to terminate, you can terminate the instance by running the shutdown command from the instance.

', 'RequestLaunchTemplateData$DisableApiStop' => '

Indicates whether to enable the instance for stop protection. For more information, see Stop protection in the Amazon Elastic Compute Cloud User Guide.

', 'RequestSpotFleetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RequestSpotInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RequestSpotLaunchSpecification$EbsOptimized' => '

Indicates whether the instance is optimized for EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal EBS I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS Optimized instance.

Default: false

', 'ReservationFleetInstanceSpecification$EbsOptimized' => '

Indicates whether the Capacity Reservation Fleet supports EBS-optimized instances types. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using EBS-optimized instance types.

', 'ReservedInstancesOffering$Marketplace' => '

Indicates whether the offering is available through the Reserved Instance Marketplace (resale) or Amazon Web Services. If it\'s a Reserved Instance Marketplace offering, this is true.

', 'ResetAddressAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ResetEbsDefaultKmsKeyIdRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ResetFpgaImageAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ResetFpgaImageAttributeResult$Return' => '

Is true if the request succeeds, and an error otherwise.

', 'ResetImageAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ResetInstanceAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ResetNetworkInterfaceAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ResetSnapshotAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ResponseLaunchTemplateData$EbsOptimized' => '

Indicates whether the instance is optimized for Amazon EBS I/O.

', 'ResponseLaunchTemplateData$DisableApiTermination' => '

If set to true, indicates that the instance cannot be terminated using the Amazon EC2 console, command line tool, or API.

', 'ResponseLaunchTemplateData$DisableApiStop' => '

Indicates whether the instance is enabled for stop protection. For more information, see Stop protection in the Amazon Elastic Compute Cloud User Guide.

', 'RestoreAddressToClassicRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RestoreImageFromRecycleBinRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RestoreImageFromRecycleBinResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'RestoreManagedPrefixListVersionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RestoreSnapshotFromRecycleBinRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RestoreSnapshotFromRecycleBinResult$Encrypted' => '

Indicates whether the snapshot is encrypted.

', 'RestoreSnapshotTierRequest$PermanentRestore' => '

Indicates whether to permanently restore an archived snapshot. To permanently restore an archived snapshot, specify true and omit the RestoreSnapshotTierRequest$TemporaryRestoreDays parameter.

', 'RestoreSnapshotTierRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RestoreSnapshotTierResult$IsPermanentRestore' => '

Indicates whether the snapshot is permanently restored. true indicates a permanent restore. false indicates a temporary restore.

', 'RevokeClientVpnIngressRequest$RevokeAllGroups' => '

Indicates whether access should be revoked for all clients.

', 'RevokeClientVpnIngressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RevokeSecurityGroupEgressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RevokeSecurityGroupEgressResult$Return' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'RevokeSecurityGroupIngressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RevokeSecurityGroupIngressResult$Return' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'RouteTableAssociation$Main' => '

Indicates whether this is the main route table.

', 'RunInstancesMonitoringEnabled$Enabled' => '

Indicates whether detailed monitoring is enabled. Otherwise, basic monitoring is enabled.

', 'RunInstancesRequest$DisableApiTermination' => '

If you set this parameter to true, you can\'t terminate the instance using the Amazon EC2 console, CLI, or API; otherwise, you can. To change this attribute after launch, use ModifyInstanceAttribute. Alternatively, if you set InstanceInitiatedShutdownBehavior to terminate, you can terminate the instance by running the shutdown command from the instance.

Default: false

', 'RunInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RunInstancesRequest$EbsOptimized' => '

Indicates whether the instance is optimized for Amazon EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal Amazon EBS I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS-optimized instance.

Default: false

', 'RunInstancesRequest$DisableApiStop' => '

Indicates whether an instance is enabled for stop protection. For more information, see Stop protection.

', 'RunInstancesRequest$EnablePrimaryIpv6' => '

If you’re launching an instance into a dual-stack or IPv6-only subnet, you can enable assigning a primary IPv6 address. A primary IPv6 address is an IPv6 GUA address associated with an ENI that you have enabled to use a primary IPv6 address. Use this option if an instance relies on its IPv6 address not changing. When you launch the instance, Amazon Web Services will automatically assign an IPv6 address associated with the ENI attached to your instance to be the primary IPv6 address. Once you enable an IPv6 GUA address to be a primary IPv6, you cannot disable it. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. If you have multiple IPv6 addresses associated with an ENI attached to your instance and you enable a primary IPv6 address, the first IPv6 GUA address associated with the ENI becomes the primary IPv6 address.

', 'RunScheduledInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ScheduledInstanceRecurrence$OccurrenceRelativeToEnd' => '

Indicates whether the occurrence is relative to the end of the specified week or month.

', 'ScheduledInstanceRecurrenceRequest$OccurrenceRelativeToEnd' => '

Indicates whether the occurrence is relative to the end of the specified week or month. You can\'t specify this value with a daily schedule.

', 'ScheduledInstancesEbs$DeleteOnTermination' => '

Indicates whether the volume is deleted on instance termination.

', 'ScheduledInstancesEbs$Encrypted' => '

Indicates whether the volume is encrypted. You can attached encrypted volumes only to instances that support them.

', 'ScheduledInstancesLaunchSpecification$EbsOptimized' => '

Indicates whether the instances are optimized for EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal EBS I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS-optimized instance.

Default: false

', 'ScheduledInstancesMonitoring$Enabled' => '

Indicates whether monitoring is enabled.

', 'ScheduledInstancesNetworkInterface$AssociatePublicIpAddress' => '

Indicates whether to assign a public IPv4 address to instances launched in a VPC. The public IPv4 address can only be assigned to a network interface for eth0, and can only be assigned to a new network interface, not an existing one. You cannot specify more than one network interface in the request. If launching into a default subnet, the default value is true.

Starting on February 1, 2024, Amazon Web Services will charge for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the Public IPv4 Address tab on the Amazon VPC pricing page.

', 'ScheduledInstancesNetworkInterface$DeleteOnTermination' => '

Indicates whether to delete the interface when the instance is terminated.

', 'ScheduledInstancesPrivateIpAddressConfig$Primary' => '

Indicates whether this is a primary IPv4 address. Otherwise, this is a secondary IPv4 address.

', 'SearchLocalGatewayRoutesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'SearchTransitGatewayMulticastGroupsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'SearchTransitGatewayRoutesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'SearchTransitGatewayRoutesResult$AdditionalRoutesAvailable' => '

Indicates whether there are additional routes available.

', 'SecurityGroupRule$IsEgress' => '

Indicates whether the security group rule is an outbound rule.

', 'SendDiagnosticInterruptRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ServiceConfiguration$AcceptanceRequired' => '

Indicates whether requests from other Amazon Web Services accounts to create an endpoint to the service must first be accepted.

', 'ServiceConfiguration$ManagesVpcEndpoints' => '

Indicates whether the service manages its VPC endpoints. Management of the service VPC endpoints using the VPC endpoint API is restricted.

', 'ServiceDetail$VpcEndpointPolicySupported' => '

Indicates whether the service supports endpoint policies.

', 'ServiceDetail$AcceptanceRequired' => '

Indicates whether VPC endpoint connection requests to the service must be accepted by the service owner.

', 'ServiceDetail$ManagesVpcEndpoints' => '

Indicates whether the service manages its VPC endpoints. Management of the service VPC endpoints using the VPC endpoint API is restricted.

', 'Snapshot$Encrypted' => '

Indicates whether the snapshot is encrypted.

', 'SnapshotInfo$Encrypted' => '

Indicates whether the snapshot is encrypted.

', 'SnapshotTaskDetail$Encrypted' => '

Indicates whether the snapshot is encrypted.

', 'SpotFleetLaunchSpecification$EbsOptimized' => '

Indicates whether the instances are optimized for EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal EBS I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS Optimized instance.

Default: false

', 'SpotFleetMonitoring$Enabled' => '

Enables monitoring for the instance.

Default: false

', 'SpotFleetRequestConfigData$TerminateInstancesWithExpiration' => '

Indicates whether running Spot Instances are terminated when the Spot Fleet request expires.

', 'SpotFleetRequestConfigData$ReplaceUnhealthyInstances' => '

Indicates whether Spot Fleet should replace unhealthy instances.

', 'SpotOptions$SingleInstanceType' => '

Indicates that the fleet uses a single instance type to launch all Spot Instances in the fleet.

Supported only for fleets of type instant.

', 'SpotOptions$SingleAvailabilityZone' => '

Indicates that the fleet launches all Spot Instances into a single Availability Zone.

Supported only for fleets of type instant.

', 'SpotOptionsRequest$SingleInstanceType' => '

Indicates that the fleet uses a single instance type to launch all Spot Instances in the fleet.

Supported only for fleets of type instant.

', 'SpotOptionsRequest$SingleAvailabilityZone' => '

Indicates that the fleet launches all Spot Instances into a single Availability Zone.

Supported only for fleets of type instant.

', 'StartInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'StartNetworkInsightsAccessScopeAnalysisRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'StartNetworkInsightsAnalysisRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'StartVpcEndpointServicePrivateDnsVerificationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'StartVpcEndpointServicePrivateDnsVerificationResult$ReturnValue' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'StopInstancesRequest$Hibernate' => '

Hibernates the instance if the instance was enabled for hibernation at launch. If the instance cannot hibernate successfully, a normal shutdown occurs. For more information, see Hibernate your instance in the Amazon EC2 User Guide.

Default: false

', 'StopInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'StopInstancesRequest$Force' => '

Forces the instances to stop. The instances do not have an opportunity to flush file system caches or file system metadata. If you use this option, you must perform file system check and repair procedures. This option is not recommended for Windows instances.

Default: false

', 'Subnet$DefaultForAz' => '

Indicates whether this is the default subnet for the Availability Zone.

', 'Subnet$MapPublicIpOnLaunch' => '

Indicates whether instances launched in this subnet receive a public IPv4 address.

Starting on February 1, 2024, Amazon Web Services will charge for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the Public IPv4 Address tab on the Amazon VPC pricing page.

', 'Subnet$MapCustomerOwnedIpOnLaunch' => '

Indicates whether a network interface created in this subnet (including a network interface created by RunInstances) receives a customer-owned IPv4 address.

', 'Subnet$AssignIpv6AddressOnCreation' => '

Indicates whether a network interface created in this subnet (including a network interface created by RunInstances) receives an IPv6 address.

', 'Subnet$EnableDns64' => '

Indicates whether DNS queries made to the Amazon-provided DNS Resolver in this subnet should return synthetic IPv6 addresses for IPv4-only destinations.

', 'Subnet$Ipv6Native' => '

Indicates whether this is an IPv6 only subnet.

', 'TerminateClientVpnConnectionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'TerminateInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'TransitGatewayMulticastGroup$GroupMember' => '

Indicates that the resource is a transit gateway multicast group member.

', 'TransitGatewayMulticastGroup$GroupSource' => '

Indicates that the resource is a transit gateway multicast group member.

', 'TransitGatewayPrefixListReference$Blackhole' => '

Indicates whether traffic that matches this route is dropped.

', 'TransitGatewayRouteTable$DefaultAssociationRouteTable' => '

Indicates whether this is the default association route table for the transit gateway.

', 'TransitGatewayRouteTable$DefaultPropagationRouteTable' => '

Indicates whether this is the default propagation route table for the transit gateway.

', 'TunnelOption$EnableTunnelLifecycleControl' => '

Status of tunnel endpoint lifecycle control feature.

', 'UnassignPrivateNatGatewayAddressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'UnlockSnapshotRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'UnmonitorInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'UpdateSecurityGroupRuleDescriptionsEgressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'UpdateSecurityGroupRuleDescriptionsEgressResult$Return' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'UpdateSecurityGroupRuleDescriptionsIngressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'UpdateSecurityGroupRuleDescriptionsIngressResult$Return' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'VerifiedAccessInstance$FipsEnabled' => '

Indicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance.

', 'VerifiedAccessLogCloudWatchLogsDestination$Enabled' => '

Indicates whether logging is enabled.

', 'VerifiedAccessLogCloudWatchLogsDestinationOptions$Enabled' => '

Indicates whether logging is enabled.

', 'VerifiedAccessLogKinesisDataFirehoseDestination$Enabled' => '

Indicates whether logging is enabled.

', 'VerifiedAccessLogKinesisDataFirehoseDestinationOptions$Enabled' => '

Indicates whether logging is enabled.

', 'VerifiedAccessLogOptions$IncludeTrustContext' => '

Indicates whether to include trust data sent by trust providers in the logs.

', 'VerifiedAccessLogS3Destination$Enabled' => '

Indicates whether logging is enabled.

', 'VerifiedAccessLogS3DestinationOptions$Enabled' => '

Indicates whether logging is enabled.

', 'VerifiedAccessLogs$IncludeTrustContext' => '

Indicates whether trust data is included in the logs.

', 'VerifiedAccessSseSpecificationRequest$CustomerManagedKeyEnabled' => '

Enable or disable the use of customer managed KMS keys for server side encryption.

Valid values: True | False

', 'VerifiedAccessSseSpecificationResponse$CustomerManagedKeyEnabled' => '

Indicates whether customer managed KMS keys are in use for server side encryption.

Valid values: True | False

', 'Volume$Encrypted' => '

Indicates whether the volume is encrypted.

', 'Volume$FastRestored' => '

Indicates whether the volume was created using fast snapshot restore.

', 'Volume$MultiAttachEnabled' => '

Indicates whether Amazon EBS Multi-Attach is enabled.

', 'VolumeAttachment$DeleteOnTermination' => '

Indicates whether the EBS volume is deleted on instance termination.

', 'VolumeModification$TargetMultiAttachEnabled' => '

The target setting for Amazon EBS Multi-Attach.

', 'VolumeModification$OriginalMultiAttachEnabled' => '

The original setting for Amazon EBS Multi-Attach.

', 'Vpc$IsDefault' => '

Indicates whether the VPC is the default VPC.

', 'VpcClassicLink$ClassicLinkEnabled' => '

Indicates whether the VPC is enabled for ClassicLink.

', 'VpcEndpoint$PrivateDnsEnabled' => '

(Interface endpoint) Indicates whether the VPC is associated with a private hosted zone.

', 'VpcEndpoint$RequesterManaged' => '

Indicates whether the endpoint is being managed by its service.

', 'VpcPeeringConnectionOptionsDescription$AllowDnsResolutionFromRemoteVpc' => '

Indicates whether a local VPC can resolve public DNS hostnames to private IP addresses when queried from instances in a peer VPC.

', 'VpcPeeringConnectionOptionsDescription$AllowEgressFromLocalClassicLinkToRemoteVpc' => '

Deprecated.

', 'VpcPeeringConnectionOptionsDescription$AllowEgressFromLocalVpcToRemoteClassicLink' => '

Deprecated.

', 'VpnConnectionOptions$EnableAcceleration' => '

Indicates whether acceleration is enabled for the VPN connection.

', 'VpnConnectionOptions$StaticRoutesOnly' => '

Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don\'t support BGP.

', 'VpnConnectionOptionsSpecification$EnableAcceleration' => '

Indicate whether to enable acceleration for the VPN connection.

Default: false

', 'VpnConnectionOptionsSpecification$StaticRoutesOnly' => '

Indicate whether the VPN connection uses static routes only. If you are creating a VPN connection for a device that does not support BGP, you must specify true. Use CreateVpnConnectionRoute to create a static route.

Default: false

', 'VpnTunnelOptionsSpecification$EnableTunnelLifecycleControl' => '

Turn on or off tunnel endpoint lifecycle control feature.

', 'WithdrawByoipCidrRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', ], ], 'BootModeType' => [ 'base' => NULL, 'refs' => [ 'BootModeTypeList$member' => NULL, ], ], 'BootModeTypeList' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$SupportedBootModes' => '

The supported boot modes. For more information, see Boot modes in the Amazon EC2 User Guide.

', ], ], 'BootModeValues' => [ 'base' => NULL, 'refs' => [ 'Image$BootMode' => '

The boot mode of the image. For more information, see Boot modes in the Amazon EC2 User Guide.

', 'ImportImageRequest$BootMode' => '

The boot mode of the virtual machine.

The uefi-preferred boot mode isn\'t supported for importing images. For more information, see Boot modes in the VM Import/Export User Guide.

', 'ImportImageTask$BootMode' => '

The boot mode of the virtual machine.

', 'Instance$BootMode' => '

The boot mode that was specified by the AMI. If the value is uefi-preferred, the AMI supports both UEFI and Legacy BIOS. The currentInstanceBootMode parameter is the boot mode that is used to boot the instance at launch or start.

The operating system contained in the AMI must be configured to support the specified boot mode.

For more information, see Boot modes in the Amazon EC2 User Guide.

', 'RegisterImageRequest$BootMode' => '

The boot mode of the AMI. A value of uefi-preferred indicates that the AMI supports both UEFI and Legacy BIOS.

The operating system contained in the AMI must be configured to support the specified boot mode.

For more information, see Boot modes in the Amazon EC2 User Guide.

', ], ], 'BoxedDouble' => [ 'base' => NULL, 'refs' => [ 'IpamDiscoveredResourceCidr$IpUsage' => '

The percentage of IP address space in use. To convert the decimal to a percentage, multiply the decimal by 100. Note the following:

  • For resources that are VPCs, this is the percentage of IP address space in the VPC that\'s taken up by subnet CIDRs.

  • For resources that are subnets, if the subnet has an IPv4 CIDR provisioned to it, this is the percentage of IPv4 address space in the subnet that\'s in use. If the subnet has an IPv6 CIDR provisioned to it, the percentage of IPv6 address space in use is not represented. The percentage of IPv6 address space in use cannot currently be calculated.

  • For resources that are public IPv4 pools, this is the percentage of IP address space in the pool that\'s been allocated to Elastic IP addresses (EIPs).

', 'IpamResourceCidr$IpUsage' => '

The percentage of IP address space in use. To convert the decimal to a percentage, multiply the decimal by 100. Note the following:

  • For resources that are VPCs, this is the percentage of IP address space in the VPC that\'s taken up by subnet CIDRs.

  • For resources that are subnets, if the subnet has an IPv4 CIDR provisioned to it, this is the percentage of IPv4 address space in the subnet that\'s in use. If the subnet has an IPv6 CIDR provisioned to it, the percentage of IPv6 address space in use is not represented. The percentage of IPv6 address space in use cannot currently be calculated.

  • For resources that are public IPv4 pools, this is the percentage of IP address space in the pool that\'s been allocated to Elastic IP addresses (EIPs).

', ], ], 'BundleId' => [ 'base' => NULL, 'refs' => [ 'BundleIdStringList$member' => NULL, 'CancelBundleTaskRequest$BundleId' => '

The ID of the bundle task.

', ], ], 'BundleIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeBundleTasksRequest$BundleIds' => '

The bundle task IDs.

Default: Describes all your bundle tasks.

', ], ], 'BundleInstanceRequest' => [ 'base' => '

Contains the parameters for BundleInstance.

', 'refs' => [], ], 'BundleInstanceResult' => [ 'base' => '

Contains the output of BundleInstance.

', 'refs' => [], ], 'BundleTask' => [ 'base' => '

Describes a bundle task.

', 'refs' => [ 'BundleInstanceResult$BundleTask' => '

Information about the bundle task.

', 'BundleTaskList$member' => NULL, 'CancelBundleTaskResult$BundleTask' => '

Information about the bundle task.

', ], ], 'BundleTaskError' => [ 'base' => '

Describes an error for BundleInstance.

', 'refs' => [ 'BundleTask$BundleTaskError' => '

If the task fails, a description of the error.

', ], ], 'BundleTaskList' => [ 'base' => NULL, 'refs' => [ 'DescribeBundleTasksResult$BundleTasks' => '

Information about the bundle tasks.

', ], ], 'BundleTaskState' => [ 'base' => NULL, 'refs' => [ 'BundleTask$State' => '

The state of the task.

', ], ], 'BurstablePerformance' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$BurstablePerformance' => '

Indicates whether burstable performance T instance types are included, excluded, or required. For more information, see Burstable performance instances.

  • To include burstable performance instance types, specify included.

  • To require only burstable performance instance types, specify required.

  • To exclude burstable performance instance types, specify excluded.

Default: excluded

', 'InstanceRequirementsRequest$BurstablePerformance' => '

Indicates whether burstable performance T instance types are included, excluded, or required. For more information, see Burstable performance instances.

  • To include burstable performance instance types, specify included.

  • To require only burstable performance instance types, specify required.

  • To exclude burstable performance instance types, specify excluded.

Default: excluded

', ], ], 'BurstablePerformanceFlag' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$BurstablePerformanceSupported' => '

Indicates whether the instance type is a burstable performance T instance type. For more information, see Burstable performance instances.

', ], ], 'Byoasn' => [ 'base' => '

The Autonomous System Number (ASN) and BYOIP CIDR association.

', 'refs' => [ 'ByoasnSet$member' => NULL, 'DeprovisionIpamByoasnResult$Byoasn' => '

An ASN and BYOIP CIDR association.

', 'ProvisionIpamByoasnResult$Byoasn' => '

An ASN and BYOIP CIDR association.

', ], ], 'ByoasnSet' => [ 'base' => NULL, 'refs' => [ 'DescribeIpamByoasnResult$Byoasns' => '

ASN and BYOIP CIDR associations.

', ], ], 'ByoipCidr' => [ 'base' => '

Information about an address range that is provisioned for use with your Amazon Web Services resources through bring your own IP addresses (BYOIP).

', 'refs' => [ 'AdvertiseByoipCidrResult$ByoipCidr' => '

Information about the address range.

', 'ByoipCidrSet$member' => NULL, 'DeprovisionByoipCidrResult$ByoipCidr' => '

Information about the address range.

', 'MoveByoipCidrToIpamResult$ByoipCidr' => '

The BYOIP CIDR.

', 'ProvisionByoipCidrResult$ByoipCidr' => '

Information about the address range.

', 'WithdrawByoipCidrResult$ByoipCidr' => '

Information about the address pool.

', ], ], 'ByoipCidrSet' => [ 'base' => NULL, 'refs' => [ 'DescribeByoipCidrsResult$ByoipCidrs' => '

Information about your address ranges.

', ], ], 'ByoipCidrState' => [ 'base' => NULL, 'refs' => [ 'ByoipCidr$State' => '

The state of the address pool.

', ], ], 'CancelBatchErrorCode' => [ 'base' => NULL, 'refs' => [ 'CancelSpotFleetRequestsError$Code' => '

The error code.

', ], ], 'CancelBundleTaskRequest' => [ 'base' => '

Contains the parameters for CancelBundleTask.

', 'refs' => [], ], 'CancelBundleTaskResult' => [ 'base' => '

Contains the output of CancelBundleTask.

', 'refs' => [], ], 'CancelCapacityReservationFleetError' => [ 'base' => '

Describes a Capacity Reservation Fleet cancellation error.

', 'refs' => [ 'FailedCapacityReservationFleetCancellationResult$CancelCapacityReservationFleetError' => '

Information about the Capacity Reservation Fleet cancellation error.

', ], ], 'CancelCapacityReservationFleetErrorCode' => [ 'base' => NULL, 'refs' => [ 'CancelCapacityReservationFleetError$Code' => '

The error code.

', ], ], 'CancelCapacityReservationFleetErrorMessage' => [ 'base' => NULL, 'refs' => [ 'CancelCapacityReservationFleetError$Message' => '

The error message.

', ], ], 'CancelCapacityReservationFleetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelCapacityReservationFleetsResult' => [ 'base' => NULL, 'refs' => [], ], 'CancelCapacityReservationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelCapacityReservationResult' => [ 'base' => NULL, 'refs' => [], ], 'CancelConversionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelExportTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelImageLaunchPermissionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelImageLaunchPermissionResult' => [ 'base' => NULL, 'refs' => [], ], 'CancelImportTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelImportTaskResult' => [ 'base' => NULL, 'refs' => [], ], 'CancelReservedInstancesListingRequest' => [ 'base' => '

Contains the parameters for CancelReservedInstancesListing.

', 'refs' => [], ], 'CancelReservedInstancesListingResult' => [ 'base' => '

Contains the output of CancelReservedInstancesListing.

', 'refs' => [], ], 'CancelSpotFleetRequestsError' => [ 'base' => '

Describes a Spot Fleet error.

', 'refs' => [ 'CancelSpotFleetRequestsErrorItem$Error' => '

The error.

', ], ], 'CancelSpotFleetRequestsErrorItem' => [ 'base' => '

Describes a Spot Fleet request that was not successfully canceled.

', 'refs' => [ 'CancelSpotFleetRequestsErrorSet$member' => NULL, ], ], 'CancelSpotFleetRequestsErrorSet' => [ 'base' => NULL, 'refs' => [ 'CancelSpotFleetRequestsResponse$UnsuccessfulFleetRequests' => '

Information about the Spot Fleet requests that are not successfully canceled.

', ], ], 'CancelSpotFleetRequestsRequest' => [ 'base' => '

Contains the parameters for CancelSpotFleetRequests.

', 'refs' => [], ], 'CancelSpotFleetRequestsResponse' => [ 'base' => '

Contains the output of CancelSpotFleetRequests.

', 'refs' => [], ], 'CancelSpotFleetRequestsSuccessItem' => [ 'base' => '

Describes a Spot Fleet request that was successfully canceled.

', 'refs' => [ 'CancelSpotFleetRequestsSuccessSet$member' => NULL, ], ], 'CancelSpotFleetRequestsSuccessSet' => [ 'base' => NULL, 'refs' => [ 'CancelSpotFleetRequestsResponse$SuccessfulFleetRequests' => '

Information about the Spot Fleet requests that are successfully canceled.

', ], ], 'CancelSpotInstanceRequestState' => [ 'base' => NULL, 'refs' => [ 'CancelledSpotInstanceRequest$State' => '

The state of the Spot Instance request.

', ], ], 'CancelSpotInstanceRequestsRequest' => [ 'base' => '

Contains the parameters for CancelSpotInstanceRequests.

', 'refs' => [], ], 'CancelSpotInstanceRequestsResult' => [ 'base' => '

Contains the output of CancelSpotInstanceRequests.

', 'refs' => [], ], 'CancelledSpotInstanceRequest' => [ 'base' => '

Describes a request to cancel a Spot Instance.

', 'refs' => [ 'CancelledSpotInstanceRequestList$member' => NULL, ], ], 'CancelledSpotInstanceRequestList' => [ 'base' => NULL, 'refs' => [ 'CancelSpotInstanceRequestsResult$CancelledSpotInstanceRequests' => '

The Spot Instance requests.

', ], ], 'CapacityAllocation' => [ 'base' => '

Information about instance capacity usage for a Capacity Reservation.

', 'refs' => [ 'CapacityAllocations$member' => NULL, ], ], 'CapacityAllocations' => [ 'base' => NULL, 'refs' => [ 'CapacityReservation$CapacityAllocations' => '

Information about instance capacity usage.

', ], ], 'CapacityBlockOffering' => [ 'base' => '

The recommended Capacity Block that fits your search requirements.

', 'refs' => [ 'CapacityBlockOfferingSet$member' => NULL, ], ], 'CapacityBlockOfferingSet' => [ 'base' => NULL, 'refs' => [ 'DescribeCapacityBlockOfferingsResult$CapacityBlockOfferings' => '

The recommended Capacity Block offering for the dates specified.

', ], ], 'CapacityReservation' => [ 'base' => '

Describes a Capacity Reservation.

', 'refs' => [ 'CapacityReservationSet$member' => NULL, 'CreateCapacityReservationResult$CapacityReservation' => '

Information about the Capacity Reservation.

', 'PurchaseCapacityBlockResult$CapacityReservation' => '

The Capacity Reservation.

', ], ], 'CapacityReservationFleet' => [ 'base' => '

Information about a Capacity Reservation Fleet.

', 'refs' => [ 'CapacityReservationFleetSet$member' => NULL, ], ], 'CapacityReservationFleetCancellationState' => [ 'base' => '

Describes a Capacity Reservation Fleet that was successfully cancelled.

', 'refs' => [ 'CapacityReservationFleetCancellationStateSet$member' => NULL, ], ], 'CapacityReservationFleetCancellationStateSet' => [ 'base' => NULL, 'refs' => [ 'CancelCapacityReservationFleetsResult$SuccessfulFleetCancellations' => '

Information about the Capacity Reservation Fleets that were successfully cancelled.

', ], ], 'CapacityReservationFleetId' => [ 'base' => NULL, 'refs' => [ 'CapacityReservationFleet$CapacityReservationFleetId' => '

The ID of the Capacity Reservation Fleet.

', 'CapacityReservationFleetCancellationState$CapacityReservationFleetId' => '

The ID of the Capacity Reservation Fleet that was successfully cancelled.

', 'CapacityReservationFleetIdSet$member' => NULL, 'CreateCapacityReservationFleetResult$CapacityReservationFleetId' => '

The ID of the Capacity Reservation Fleet.

', 'FailedCapacityReservationFleetCancellationResult$CapacityReservationFleetId' => '

The ID of the Capacity Reservation Fleet that could not be cancelled.

', 'ModifyCapacityReservationFleetRequest$CapacityReservationFleetId' => '

The ID of the Capacity Reservation Fleet to modify.

', ], ], 'CapacityReservationFleetIdSet' => [ 'base' => NULL, 'refs' => [ 'CancelCapacityReservationFleetsRequest$CapacityReservationFleetIds' => '

The IDs of the Capacity Reservation Fleets to cancel.

', 'DescribeCapacityReservationFleetsRequest$CapacityReservationFleetIds' => '

The IDs of the Capacity Reservation Fleets to describe.

', ], ], 'CapacityReservationFleetSet' => [ 'base' => NULL, 'refs' => [ 'DescribeCapacityReservationFleetsResult$CapacityReservationFleets' => '

Information about the Capacity Reservation Fleets.

', ], ], 'CapacityReservationFleetState' => [ 'base' => NULL, 'refs' => [ 'CapacityReservationFleet$State' => '

The state of the Capacity Reservation Fleet. Possible states include:

  • submitted - The Capacity Reservation Fleet request has been submitted and Amazon Elastic Compute Cloud is preparing to create the Capacity Reservations.

  • modifying - The Capacity Reservation Fleet is being modified. The Fleet remains in this state until the modification is complete.

  • active - The Capacity Reservation Fleet has fulfilled its total target capacity and it is attempting to maintain this capacity. The Fleet remains in this state until it is modified or deleted.

  • partially_fulfilled - The Capacity Reservation Fleet has partially fulfilled its total target capacity. There is insufficient Amazon EC2 to fulfill the total target capacity. The Fleet is attempting to asynchronously fulfill its total target capacity.

  • expiring - The Capacity Reservation Fleet has reach its end date and it is in the process of expiring. One or more of its Capacity reservations might still be active.

  • expired - The Capacity Reservation Fleet has reach its end date. The Fleet and its Capacity Reservations are expired. The Fleet can\'t create new Capacity Reservations.

  • cancelling - The Capacity Reservation Fleet is in the process of being cancelled. One or more of its Capacity reservations might still be active.

  • cancelled - The Capacity Reservation Fleet has been manually cancelled. The Fleet and its Capacity Reservations are cancelled and the Fleet can\'t create new Capacity Reservations.

  • failed - The Capacity Reservation Fleet failed to reserve capacity for the specified instance types.

', 'CapacityReservationFleetCancellationState$CurrentFleetState' => '

The current state of the Capacity Reservation Fleet.

', 'CapacityReservationFleetCancellationState$PreviousFleetState' => '

The previous state of the Capacity Reservation Fleet.

', 'CreateCapacityReservationFleetResult$State' => '

The status of the Capacity Reservation Fleet.

', ], ], 'CapacityReservationGroup' => [ 'base' => '

Describes a resource group to which a Capacity Reservation has been added.

', 'refs' => [ 'CapacityReservationGroupSet$member' => NULL, ], ], 'CapacityReservationGroupSet' => [ 'base' => NULL, 'refs' => [ 'GetGroupsForCapacityReservationResult$CapacityReservationGroups' => '

Information about the resource groups to which the Capacity Reservation has been added.

', ], ], 'CapacityReservationId' => [ 'base' => NULL, 'refs' => [ 'CancelCapacityReservationRequest$CapacityReservationId' => '

The ID of the Capacity Reservation to be cancelled.

', 'CapacityReservationIdSet$member' => NULL, 'CapacityReservationTarget$CapacityReservationId' => '

The ID of the Capacity Reservation in which to run the instance.

', 'FleetCapacityReservation$CapacityReservationId' => '

The ID of the Capacity Reservation.

', 'GetCapacityReservationUsageRequest$CapacityReservationId' => '

The ID of the Capacity Reservation.

', 'GetGroupsForCapacityReservationRequest$CapacityReservationId' => '

The ID of the Capacity Reservation. If you specify a Capacity Reservation that is shared with you, the operation returns only Capacity Reservation groups that you own.

', 'ModifyCapacityReservationRequest$CapacityReservationId' => '

The ID of the Capacity Reservation.

', ], ], 'CapacityReservationIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeCapacityReservationsRequest$CapacityReservationIds' => '

The ID of the Capacity Reservation.

', ], ], 'CapacityReservationInstancePlatform' => [ 'base' => NULL, 'refs' => [ 'CapacityReservation$InstancePlatform' => '

The type of operating system for which the Capacity Reservation reserves capacity.

', 'CreateCapacityReservationRequest$InstancePlatform' => '

The type of operating system for which to reserve capacity.

', 'FleetCapacityReservation$InstancePlatform' => '

The type of operating system for which the Capacity Reservation reserves capacity.

', 'PurchaseCapacityBlockRequest$InstancePlatform' => '

The type of operating system for which to reserve capacity.

', 'ReservationFleetInstanceSpecification$InstancePlatform' => '

The type of operating system for which the Capacity Reservation Fleet reserves capacity.

', ], ], 'CapacityReservationOptions' => [ 'base' => '

Describes the strategy for using unused Capacity Reservations for fulfilling On-Demand capacity.

This strategy can only be used if the EC2 Fleet is of type instant.

For more information about Capacity Reservations, see On-Demand Capacity Reservations in the Amazon EC2 User Guide. For examples of using Capacity Reservations in an EC2 Fleet, see EC2 Fleet example configurations in the Amazon EC2 User Guide.

', 'refs' => [ 'OnDemandOptions$CapacityReservationOptions' => '

The strategy for using unused Capacity Reservations for fulfilling On-Demand capacity.

Supported only for fleets of type instant.

', ], ], 'CapacityReservationOptionsRequest' => [ 'base' => '

Describes the strategy for using unused Capacity Reservations for fulfilling On-Demand capacity.

This strategy can only be used if the EC2 Fleet is of type instant.

For more information about Capacity Reservations, see On-Demand Capacity Reservations in the Amazon EC2 User Guide. For examples of using Capacity Reservations in an EC2 Fleet, see EC2 Fleet example configurations in the Amazon EC2 User Guide.

', 'refs' => [ 'OnDemandOptionsRequest$CapacityReservationOptions' => '

The strategy for using unused Capacity Reservations for fulfilling On-Demand capacity.

Supported only for fleets of type instant.

', ], ], 'CapacityReservationPreference' => [ 'base' => NULL, 'refs' => [ 'CapacityReservationSpecification$CapacityReservationPreference' => '

Indicates the instance\'s Capacity Reservation preferences. Possible preferences include:

  • open - The instance can run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).

  • none - The instance avoids running in a Capacity Reservation even if one is available. The instance runs as an On-Demand Instance.

', 'CapacityReservationSpecificationResponse$CapacityReservationPreference' => '

Describes the instance\'s Capacity Reservation preferences. Possible preferences include:

  • open - The instance can run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).

  • none - The instance avoids running in a Capacity Reservation even if one is available. The instance runs in On-Demand capacity.

', 'LaunchTemplateCapacityReservationSpecificationRequest$CapacityReservationPreference' => '

Indicates the instance\'s Capacity Reservation preferences. Possible preferences include:

  • open - The instance can run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).

  • none - The instance avoids running in a Capacity Reservation even if one is available. The instance runs in On-Demand capacity.

', 'LaunchTemplateCapacityReservationSpecificationResponse$CapacityReservationPreference' => '

Indicates the instance\'s Capacity Reservation preferences. Possible preferences include:

  • open - The instance can run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).

  • none - The instance avoids running in a Capacity Reservation even if one is available. The instance runs in On-Demand capacity.

', ], ], 'CapacityReservationSet' => [ 'base' => NULL, 'refs' => [ 'DescribeCapacityReservationsResult$CapacityReservations' => '

Information about the Capacity Reservations.

', ], ], 'CapacityReservationSpecification' => [ 'base' => '

Describes an instance\'s Capacity Reservation targeting option. You can specify only one parameter at a time. If you specify CapacityReservationPreference and CapacityReservationTarget, the request fails.

Use the CapacityReservationPreference parameter to configure the instance to run as an On-Demand Instance or to run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone). Use the CapacityReservationTarget parameter to explicitly target a specific Capacity Reservation or a Capacity Reservation group.

', 'refs' => [ 'ModifyInstanceCapacityReservationAttributesRequest$CapacityReservationSpecification' => '

Information about the Capacity Reservation targeting option.

', 'RunInstancesRequest$CapacityReservationSpecification' => '

Information about the Capacity Reservation targeting option. If you do not specify this parameter, the instance\'s Capacity Reservation preference defaults to open, which enables it to run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).

', ], ], 'CapacityReservationSpecificationResponse' => [ 'base' => '

Describes the instance\'s Capacity Reservation targeting preferences. The action returns the capacityReservationPreference response element if the instance is configured to run in On-Demand capacity, or if it is configured in run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone). The action returns the capacityReservationTarget response element if the instance explicily targets a specific Capacity Reservation or Capacity Reservation group.

', 'refs' => [ 'Instance$CapacityReservationSpecification' => '

Information about the Capacity Reservation targeting option.

', ], ], 'CapacityReservationState' => [ 'base' => NULL, 'refs' => [ 'CapacityReservation$State' => '

The current state of the Capacity Reservation. A Capacity Reservation can be in one of the following states:

  • active - The Capacity Reservation is active and the capacity is available for your use.

  • expired - The Capacity Reservation expired automatically at the date and time specified in your request. The reserved capacity is no longer available for your use.

  • cancelled - The Capacity Reservation was cancelled. The reserved capacity is no longer available for your use.

  • pending - The Capacity Reservation request was successful but the capacity provisioning is still pending.

  • failed - The Capacity Reservation request has failed. A request might fail due to invalid request parameters, capacity constraints, or instance limit constraints. Failed requests are retained for 60 minutes.

', 'GetCapacityReservationUsageResult$State' => '

The current state of the Capacity Reservation. A Capacity Reservation can be in one of the following states:

  • active - The Capacity Reservation is active and the capacity is available for your use.

  • expired - The Capacity Reservation expired automatically at the date and time specified in your request. The reserved capacity is no longer available for your use.

  • cancelled - The Capacity Reservation was cancelled. The reserved capacity is no longer available for your use.

  • pending - The Capacity Reservation request was successful but the capacity provisioning is still pending.

  • failed - The Capacity Reservation request has failed. A request might fail due to invalid request parameters, capacity constraints, or instance limit constraints. Failed requests are retained for 60 minutes.

', ], ], 'CapacityReservationTarget' => [ 'base' => '

Describes a target Capacity Reservation or Capacity Reservation group.

', 'refs' => [ 'CapacityReservationSpecification$CapacityReservationTarget' => '

Information about the target Capacity Reservation or Capacity Reservation group.

', 'LaunchTemplateCapacityReservationSpecificationRequest$CapacityReservationTarget' => '

Information about the target Capacity Reservation or Capacity Reservation group.

', ], ], 'CapacityReservationTargetResponse' => [ 'base' => '

Describes a target Capacity Reservation or Capacity Reservation group.

', 'refs' => [ 'CapacityReservationSpecificationResponse$CapacityReservationTarget' => '

Information about the targeted Capacity Reservation or Capacity Reservation group.

', 'LaunchTemplateCapacityReservationSpecificationResponse$CapacityReservationTarget' => '

Information about the target Capacity Reservation or Capacity Reservation group.

', ], ], 'CapacityReservationTenancy' => [ 'base' => NULL, 'refs' => [ 'CapacityBlockOffering$Tenancy' => '

The tenancy of the Capacity Block.

', 'CapacityReservation$Tenancy' => '

Indicates the tenancy of the Capacity Reservation. A Capacity Reservation can have one of the following tenancy settings:

  • default - The Capacity Reservation is created on hardware that is shared with other Amazon Web Services accounts.

  • dedicated - The Capacity Reservation is created on single-tenant hardware that is dedicated to a single Amazon Web Services account.

', 'CreateCapacityReservationRequest$Tenancy' => '

Indicates the tenancy of the Capacity Reservation. A Capacity Reservation can have one of the following tenancy settings:

  • default - The Capacity Reservation is created on hardware that is shared with other Amazon Web Services accounts.

  • dedicated - The Capacity Reservation is created on single-tenant hardware that is dedicated to a single Amazon Web Services account.

', ], ], 'CapacityReservationType' => [ 'base' => NULL, 'refs' => [ 'CapacityReservation$ReservationType' => '

The type of Capacity Reservation.

', ], ], 'CarrierGateway' => [ 'base' => '

Describes a carrier gateway.

', 'refs' => [ 'CarrierGatewaySet$member' => NULL, 'CreateCarrierGatewayResult$CarrierGateway' => '

Information about the carrier gateway.

', 'DeleteCarrierGatewayResult$CarrierGateway' => '

Information about the carrier gateway.

', ], ], 'CarrierGatewayId' => [ 'base' => NULL, 'refs' => [ 'CarrierGateway$CarrierGatewayId' => '

The ID of the carrier gateway.

', 'CarrierGatewayIdSet$member' => NULL, 'CreateRouteRequest$CarrierGatewayId' => '

The ID of the carrier gateway.

You can only use this option when the VPC contains a subnet which is associated with a Wavelength Zone.

', 'DeleteCarrierGatewayRequest$CarrierGatewayId' => '

The ID of the carrier gateway.

', 'ReplaceRouteRequest$CarrierGatewayId' => '

[IPv4 traffic only] The ID of a carrier gateway.

', 'Route$CarrierGatewayId' => '

The ID of the carrier gateway.

', ], ], 'CarrierGatewayIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeCarrierGatewaysRequest$CarrierGatewayIds' => '

One or more carrier gateway IDs.

', ], ], 'CarrierGatewayMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeCarrierGatewaysRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'CarrierGatewaySet' => [ 'base' => NULL, 'refs' => [ 'DescribeCarrierGatewaysResult$CarrierGateways' => '

Information about the carrier gateway.

', ], ], 'CarrierGatewayState' => [ 'base' => NULL, 'refs' => [ 'CarrierGateway$State' => '

The state of the carrier gateway.

', ], ], 'CertificateArn' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointRequest$DomainCertificateArn' => '

The ARN of the public TLS/SSL certificate in Amazon Web Services Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.

', ], ], 'CertificateAuthentication' => [ 'base' => '

Information about the client certificate used for authentication.

', 'refs' => [ 'ClientVpnAuthentication$MutualAuthentication' => '

Information about the authentication certificates, if applicable.

', ], ], 'CertificateAuthenticationRequest' => [ 'base' => '

Information about the client certificate to be used for authentication.

', 'refs' => [ 'ClientVpnAuthenticationRequest$MutualAuthentication' => '

Information about the authentication certificates to be used, if applicable. You must provide this information if Type is certificate-authentication.

', ], ], 'CertificateId' => [ 'base' => NULL, 'refs' => [ 'AssociateEnclaveCertificateIamRoleRequest$CertificateArn' => '

The ARN of the ACM certificate with which to associate the IAM role.

', 'DisassociateEnclaveCertificateIamRoleRequest$CertificateArn' => '

The ARN of the ACM certificate from which to disassociate the IAM role.

', 'GetAssociatedEnclaveCertificateIamRolesRequest$CertificateArn' => '

The ARN of the ACM certificate for which to view the associated IAM roles, encryption keys, and Amazon S3 object information.

', ], ], 'CidrAuthorizationContext' => [ 'base' => '

Provides authorization for Amazon to bring a specific IP address range to a specific Amazon Web Services account using bring your own IP addresses (BYOIP). For more information, see Configuring your BYOIP address range in the Amazon Elastic Compute Cloud User Guide.

', 'refs' => [ 'ProvisionByoipCidrRequest$CidrAuthorizationContext' => '

A signed document that proves that you are authorized to bring the specified IP address range to Amazon using BYOIP.

', ], ], 'CidrBlock' => [ 'base' => '

Describes an IPv4 CIDR block.

', 'refs' => [ 'CidrBlockSet$member' => NULL, ], ], 'CidrBlockSet' => [ 'base' => NULL, 'refs' => [ 'VpcPeeringConnectionVpcInfo$CidrBlockSet' => '

Information about the IPv4 CIDR blocks for the VPC.

', ], ], 'ClassicLinkDnsSupport' => [ 'base' => '

Deprecated.

Describes the ClassicLink DNS support status of a VPC.

', 'refs' => [ 'ClassicLinkDnsSupportList$member' => NULL, ], ], 'ClassicLinkDnsSupportList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcClassicLinkDnsSupportResult$Vpcs' => '

Information about the ClassicLink DNS support status of the VPCs.

', ], ], 'ClassicLinkInstance' => [ 'base' => '

Deprecated.

Describes a linked EC2-Classic instance.

', 'refs' => [ 'ClassicLinkInstanceList$member' => NULL, ], ], 'ClassicLinkInstanceList' => [ 'base' => NULL, 'refs' => [ 'DescribeClassicLinkInstancesResult$Instances' => '

Information about one or more linked EC2-Classic instances.

', ], ], 'ClassicLoadBalancer' => [ 'base' => '

Describes a Classic Load Balancer.

', 'refs' => [ 'ClassicLoadBalancers$member' => NULL, ], ], 'ClassicLoadBalancers' => [ 'base' => NULL, 'refs' => [ 'ClassicLoadBalancersConfig$ClassicLoadBalancers' => '

One or more Classic Load Balancers.

', ], ], 'ClassicLoadBalancersConfig' => [ 'base' => '

Describes the Classic Load Balancers to attach to a Spot Fleet. Spot Fleet registers the running Spot Instances with these Classic Load Balancers.

', 'refs' => [ 'LoadBalancersConfig$ClassicLoadBalancersConfig' => '

The Classic Load Balancers.

', ], ], 'ClientCertificateRevocationListStatus' => [ 'base' => '

Describes the state of a client certificate revocation list.

', 'refs' => [ 'ExportClientVpnClientCertificateRevocationListResult$Status' => '

The current state of the client certificate revocation list.

', ], ], 'ClientCertificateRevocationListStatusCode' => [ 'base' => NULL, 'refs' => [ 'ClientCertificateRevocationListStatus$Code' => '

The state of the client certificate revocation list.

', ], ], 'ClientConnectOptions' => [ 'base' => '

The options for managing connection authorization for new client connections.

', 'refs' => [ 'CreateClientVpnEndpointRequest$ClientConnectOptions' => '

The options for managing connection authorization for new client connections.

', 'ModifyClientVpnEndpointRequest$ClientConnectOptions' => '

The options for managing connection authorization for new client connections.

', ], ], 'ClientConnectResponseOptions' => [ 'base' => '

The options for managing connection authorization for new client connections.

', 'refs' => [ 'ClientVpnEndpoint$ClientConnectOptions' => '

The options for managing connection authorization for new client connections.

', ], ], 'ClientData' => [ 'base' => '

Describes the client-specific data.

', 'refs' => [ 'ImportImageRequest$ClientData' => '

The client-specific data.

', 'ImportSnapshotRequest$ClientData' => '

The client-specific data.

', ], ], 'ClientLoginBannerOptions' => [ 'base' => '

Options for enabling a customizable text banner that will be displayed on Amazon Web Services provided clients when a VPN session is established.

', 'refs' => [ 'CreateClientVpnEndpointRequest$ClientLoginBannerOptions' => '

Options for enabling a customizable text banner that will be displayed on Amazon Web Services provided clients when a VPN session is established.

', 'ModifyClientVpnEndpointRequest$ClientLoginBannerOptions' => '

Options for enabling a customizable text banner that will be displayed on Amazon Web Services provided clients when a VPN session is established.

', ], ], 'ClientLoginBannerResponseOptions' => [ 'base' => '

Current state of options for customizable text banner that will be displayed on Amazon Web Services provided clients when a VPN session is established.

', 'refs' => [ 'ClientVpnEndpoint$ClientLoginBannerOptions' => '

Options for enabling a customizable text banner that will be displayed on Amazon Web Services provided clients when a VPN session is established.

', ], ], 'ClientSecretType' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessTrustProviderOidcOptions$ClientSecret' => '

The client secret.

', 'ModifyVerifiedAccessTrustProviderOidcOptions$ClientSecret' => '

The client secret.

', 'OidcOptions$ClientSecret' => '

The client secret.

', ], ], 'ClientVpnAuthentication' => [ 'base' => '

Describes the authentication methods used by a Client VPN endpoint. For more information, see Authentication in the Client VPN Administrator Guide.

', 'refs' => [ 'ClientVpnAuthenticationList$member' => NULL, ], ], 'ClientVpnAuthenticationList' => [ 'base' => NULL, 'refs' => [ 'ClientVpnEndpoint$AuthenticationOptions' => '

Information about the authentication method used by the Client VPN endpoint.

', ], ], 'ClientVpnAuthenticationRequest' => [ 'base' => '

Describes the authentication method to be used by a Client VPN endpoint. For more information, see Authentication in the Client VPN Administrator Guide.

', 'refs' => [ 'ClientVpnAuthenticationRequestList$member' => NULL, ], ], 'ClientVpnAuthenticationRequestList' => [ 'base' => NULL, 'refs' => [ 'CreateClientVpnEndpointRequest$AuthenticationOptions' => '

Information about the authentication method to be used to authenticate clients.

', ], ], 'ClientVpnAuthenticationType' => [ 'base' => NULL, 'refs' => [ 'ClientVpnAuthentication$Type' => '

The authentication type used.

', 'ClientVpnAuthenticationRequest$Type' => '

The type of client authentication to be used.

', ], ], 'ClientVpnAuthorizationRuleStatus' => [ 'base' => '

Describes the state of an authorization rule.

', 'refs' => [ 'AuthorizationRule$Status' => '

The current state of the authorization rule.

', 'AuthorizeClientVpnIngressResult$Status' => '

The current state of the authorization rule.

', 'RevokeClientVpnIngressResult$Status' => '

The current state of the authorization rule.

', ], ], 'ClientVpnAuthorizationRuleStatusCode' => [ 'base' => NULL, 'refs' => [ 'ClientVpnAuthorizationRuleStatus$Code' => '

The state of the authorization rule.

', ], ], 'ClientVpnConnection' => [ 'base' => '

Describes a client connection.

', 'refs' => [ 'ClientVpnConnectionSet$member' => NULL, ], ], 'ClientVpnConnectionSet' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnConnectionsResult$Connections' => '

Information about the active and terminated client connections.

', ], ], 'ClientVpnConnectionStatus' => [ 'base' => '

Describes the status of a client connection.

', 'refs' => [ 'ClientVpnConnection$Status' => '

The current state of the client connection.

', 'TerminateConnectionStatus$PreviousStatus' => '

The state of the client connection.

', 'TerminateConnectionStatus$CurrentStatus' => '

A message about the status of the client connection, if applicable.

', ], ], 'ClientVpnConnectionStatusCode' => [ 'base' => NULL, 'refs' => [ 'ClientVpnConnectionStatus$Code' => '

The state of the client connection.

', ], ], 'ClientVpnEndpoint' => [ 'base' => '

Describes a Client VPN endpoint.

', 'refs' => [ 'EndpointSet$member' => NULL, ], ], 'ClientVpnEndpointAttributeStatus' => [ 'base' => '

Describes the status of the Client VPN endpoint attribute.

', 'refs' => [ 'ClientConnectResponseOptions$Status' => '

The status of any updates to the client connect options.

', ], ], 'ClientVpnEndpointAttributeStatusCode' => [ 'base' => NULL, 'refs' => [ 'ClientVpnEndpointAttributeStatus$Code' => '

The status code.

', ], ], 'ClientVpnEndpointId' => [ 'base' => NULL, 'refs' => [ 'ApplySecurityGroupsToClientVpnTargetNetworkRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'AssociateClientVpnTargetNetworkRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'AuthorizeClientVpnIngressRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'ClientVpnEndpointIdList$member' => NULL, 'CreateClientVpnRouteRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint to which to add the route.

', 'DeleteClientVpnEndpointRequest$ClientVpnEndpointId' => '

The ID of the Client VPN to be deleted.

', 'DeleteClientVpnRouteRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint from which the route is to be deleted.

', 'DescribeClientVpnAuthorizationRulesRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'DescribeClientVpnConnectionsRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'DescribeClientVpnRoutesRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'DescribeClientVpnTargetNetworksRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'DisassociateClientVpnTargetNetworkRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint from which to disassociate the target network.

', 'ExportClientVpnClientCertificateRevocationListRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'ExportClientVpnClientConfigurationRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'ImportClientVpnClientCertificateRevocationListRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint to which the client certificate revocation list applies.

', 'ModifyClientVpnEndpointRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint to modify.

', 'RevokeClientVpnIngressRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint with which the authorization rule is associated.

', 'TerminateClientVpnConnectionsRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint to which the client is connected.

', ], ], 'ClientVpnEndpointIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnEndpointsRequest$ClientVpnEndpointIds' => '

The ID of the Client VPN endpoint.

', ], ], 'ClientVpnEndpointStatus' => [ 'base' => '

Describes the state of a Client VPN endpoint.

', 'refs' => [ 'ClientVpnEndpoint$Status' => '

The current state of the Client VPN endpoint.

', 'CreateClientVpnEndpointResult$Status' => '

The current state of the Client VPN endpoint.

', 'DeleteClientVpnEndpointResult$Status' => '

The current state of the Client VPN endpoint.

', ], ], 'ClientVpnEndpointStatusCode' => [ 'base' => NULL, 'refs' => [ 'ClientVpnEndpointStatus$Code' => '

The state of the Client VPN endpoint. Possible states include:

  • pending-associate - The Client VPN endpoint has been created but no target networks have been associated. The Client VPN endpoint cannot accept connections.

  • available - The Client VPN endpoint has been created and a target network has been associated. The Client VPN endpoint can accept connections.

  • deleting - The Client VPN endpoint is being deleted. The Client VPN endpoint cannot accept connections.

  • deleted - The Client VPN endpoint has been deleted. The Client VPN endpoint cannot accept connections.

', ], ], 'ClientVpnRoute' => [ 'base' => '

Information about a Client VPN endpoint route.

', 'refs' => [ 'ClientVpnRouteSet$member' => NULL, ], ], 'ClientVpnRouteSet' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnRoutesResult$Routes' => '

Information about the Client VPN endpoint routes.

', ], ], 'ClientVpnRouteStatus' => [ 'base' => '

Describes the state of a Client VPN endpoint route.

', 'refs' => [ 'ClientVpnRoute$Status' => '

The current state of the route.

', 'CreateClientVpnRouteResult$Status' => '

The current state of the route.

', 'DeleteClientVpnRouteResult$Status' => '

The current state of the route.

', ], ], 'ClientVpnRouteStatusCode' => [ 'base' => NULL, 'refs' => [ 'ClientVpnRouteStatus$Code' => '

The state of the Client VPN endpoint route.

', ], ], 'ClientVpnSecurityGroupIdSet' => [ 'base' => NULL, 'refs' => [ 'ApplySecurityGroupsToClientVpnTargetNetworkRequest$SecurityGroupIds' => '

The IDs of the security groups to apply to the associated target network. Up to 5 security groups can be applied to an associated target network.

', 'ApplySecurityGroupsToClientVpnTargetNetworkResult$SecurityGroupIds' => '

The IDs of the applied security groups.

', 'ClientVpnEndpoint$SecurityGroupIds' => '

The IDs of the security groups for the target network.

', 'CreateClientVpnEndpointRequest$SecurityGroupIds' => '

The IDs of one or more security groups to apply to the target network. You must also specify the ID of the VPC that contains the security groups.

', 'ModifyClientVpnEndpointRequest$SecurityGroupIds' => '

The IDs of one or more security groups to apply to the target network.

', ], ], 'CloudWatchLogGroupArn' => [ 'base' => NULL, 'refs' => [ 'CloudWatchLogOptionsSpecification$LogGroupArn' => '

The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.

', ], ], 'CloudWatchLogOptions' => [ 'base' => '

Options for sending VPN tunnel logs to CloudWatch.

', 'refs' => [ 'VpnTunnelLogOptions$CloudWatchLogOptions' => '

Options for sending VPN tunnel logs to CloudWatch.

', ], ], 'CloudWatchLogOptionsSpecification' => [ 'base' => '

Options for sending VPN tunnel logs to CloudWatch.

', 'refs' => [ 'VpnTunnelLogOptionsSpecification$CloudWatchLogOptions' => '

Options for sending VPN tunnel logs to CloudWatch.

', ], ], 'CoipAddressUsage' => [ 'base' => '

Describes address usage for a customer-owned address pool.

', 'refs' => [ 'CoipAddressUsageSet$member' => NULL, ], ], 'CoipAddressUsageSet' => [ 'base' => NULL, 'refs' => [ 'GetCoipPoolUsageResult$CoipAddressUsages' => '

Information about the address usage.

', ], ], 'CoipCidr' => [ 'base' => '

Information about a customer-owned IP address range.

', 'refs' => [ 'CreateCoipCidrResult$CoipCidr' => '

Information about a range of customer-owned IP addresses.

', 'DeleteCoipCidrResult$CoipCidr' => '

Information about a range of customer-owned IP addresses.

', ], ], 'CoipPool' => [ 'base' => '

Describes a customer-owned address pool.

', 'refs' => [ 'CoipPoolSet$member' => NULL, 'CreateCoipPoolResult$CoipPool' => '

Information about the CoIP address pool.

', 'DeleteCoipPoolResult$CoipPool' => '

Information about the CoIP address pool.

', ], ], 'CoipPoolId' => [ 'base' => NULL, 'refs' => [ 'LocalGatewayRoute$CoipPoolId' => '

The ID of the customer-owned address pool.

', 'ModifySubnetAttributeRequest$CustomerOwnedIpv4Pool' => '

The customer-owned IPv4 address pool associated with the subnet.

You must set this value when you specify true for MapCustomerOwnedIpOnLaunch.

', 'Subnet$CustomerOwnedIpv4Pool' => '

The customer-owned IPv4 address pool associated with the subnet.

', ], ], 'CoipPoolIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeCoipPoolsRequest$PoolIds' => '

The IDs of the address pools.

', ], ], 'CoipPoolMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeCoipPoolsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetCoipPoolUsageRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'CoipPoolSet' => [ 'base' => NULL, 'refs' => [ 'DescribeCoipPoolsResult$CoipPools' => '

Information about the address pools.

', ], ], 'ComponentAccount' => [ 'base' => NULL, 'refs' => [ 'Explanation$ComponentAccount' => '

The Amazon Web Services account for the component.

', ], ], 'ComponentRegion' => [ 'base' => NULL, 'refs' => [ 'Explanation$ComponentRegion' => '

The Region for the component.

', ], ], 'ConfirmProductInstanceRequest' => [ 'base' => NULL, 'refs' => [], ], 'ConfirmProductInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'ConnectionLogOptions' => [ 'base' => '

Describes the client connection logging options for the Client VPN endpoint.

', 'refs' => [ 'CreateClientVpnEndpointRequest$ConnectionLogOptions' => '

Information about the client connection logging options.

If you enable client connection logging, data about client connections is sent to a Cloudwatch Logs log stream. The following information is logged:

  • Client connection requests

  • Client connection results (successful and unsuccessful)

  • Reasons for unsuccessful client connection requests

  • Client connection termination time

', 'ModifyClientVpnEndpointRequest$ConnectionLogOptions' => '

Information about the client connection logging options.

If you enable client connection logging, data about client connections is sent to a Cloudwatch Logs log stream. The following information is logged:

  • Client connection requests

  • Client connection results (successful and unsuccessful)

  • Reasons for unsuccessful client connection requests

  • Client connection termination time

', ], ], 'ConnectionLogResponseOptions' => [ 'base' => '

Information about the client connection logging options for a Client VPN endpoint.

', 'refs' => [ 'ClientVpnEndpoint$ConnectionLogOptions' => '

Information about the client connection logging options for the Client VPN endpoint.

', ], ], 'ConnectionNotification' => [ 'base' => '

Describes a connection notification for a VPC endpoint or VPC endpoint service.

', 'refs' => [ 'ConnectionNotificationSet$member' => NULL, 'CreateVpcEndpointConnectionNotificationResult$ConnectionNotification' => '

Information about the notification.

', ], ], 'ConnectionNotificationId' => [ 'base' => NULL, 'refs' => [ 'ConnectionNotificationIdsList$member' => NULL, 'DescribeVpcEndpointConnectionNotificationsRequest$ConnectionNotificationId' => '

The ID of the notification.

', 'ModifyVpcEndpointConnectionNotificationRequest$ConnectionNotificationId' => '

The ID of the notification.

', ], ], 'ConnectionNotificationIdsList' => [ 'base' => NULL, 'refs' => [ 'DeleteVpcEndpointConnectionNotificationsRequest$ConnectionNotificationIds' => '

The IDs of the notifications.

', ], ], 'ConnectionNotificationSet' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcEndpointConnectionNotificationsResult$ConnectionNotificationSet' => '

The notifications.

', ], ], 'ConnectionNotificationState' => [ 'base' => NULL, 'refs' => [ 'ConnectionNotification$ConnectionNotificationState' => '

The state of the notification.

', ], ], 'ConnectionNotificationType' => [ 'base' => NULL, 'refs' => [ 'ConnectionNotification$ConnectionNotificationType' => '

The type of notification.

', ], ], 'ConnectionTrackingConfiguration' => [ 'base' => '

A security group connection tracking configuration that enables you to set the idle timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', 'refs' => [ 'NetworkInterface$ConnectionTrackingConfiguration' => '

A security group connection tracking configuration that enables you to set the timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'ConnectionTrackingSpecification' => [ 'base' => '

A security group connection tracking specification that enables you to set the idle timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', 'refs' => [ 'LaunchTemplateInstanceNetworkInterfaceSpecification$ConnectionTrackingSpecification' => '

A security group connection tracking specification that enables you to set the timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'ConnectionTrackingSpecificationRequest' => [ 'base' => '

A security group connection tracking specification request that enables you to set the idle timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', 'refs' => [ 'CreateNetworkInterfaceRequest$ConnectionTrackingSpecification' => '

A connection tracking specification for the network interface.

', 'InstanceNetworkInterfaceSpecification$ConnectionTrackingSpecification' => '

A security group connection tracking specification that enables you to set the timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$ConnectionTrackingSpecification' => '

A security group connection tracking specification that enables you to set the timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', 'ModifyNetworkInterfaceAttributeRequest$ConnectionTrackingSpecification' => '

A connection tracking specification.

', ], ], 'ConnectionTrackingSpecificationResponse' => [ 'base' => '

A security group connection tracking specification response that enables you to set the idle timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', 'refs' => [ 'InstanceNetworkInterface$ConnectionTrackingConfiguration' => '

A security group connection tracking configuration that enables you to set the timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'ConnectivityType' => [ 'base' => NULL, 'refs' => [ 'CreateNatGatewayRequest$ConnectivityType' => '

Indicates whether the NAT gateway supports public or private connectivity. The default is public connectivity.

', 'NatGateway$ConnectivityType' => '

Indicates whether the NAT gateway supports public or private connectivity.

', ], ], 'ContainerFormat' => [ 'base' => NULL, 'refs' => [ 'ExportToS3Task$ContainerFormat' => '

The container format used to combine disk images with metadata (such as OVF). If absent, only the disk image is exported.

', 'ExportToS3TaskSpecification$ContainerFormat' => '

The container format used to combine disk images with metadata (such as OVF). If absent, only the disk image is exported.

', ], ], 'ConversionIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeConversionTasksRequest$ConversionTaskIds' => '

The conversion task IDs.

', ], ], 'ConversionTask' => [ 'base' => '

Describes a conversion task.

', 'refs' => [ 'DescribeConversionTaskList$member' => NULL, 'ImportInstanceResult$ConversionTask' => '

Information about the conversion task.

', 'ImportVolumeResult$ConversionTask' => '

Information about the conversion task.

', ], ], 'ConversionTaskId' => [ 'base' => NULL, 'refs' => [ 'CancelConversionRequest$ConversionTaskId' => '

The ID of the conversion task.

', 'ConversionIdStringList$member' => NULL, ], ], 'ConversionTaskState' => [ 'base' => NULL, 'refs' => [ 'ConversionTask$State' => '

The state of the conversion task.

', ], ], 'CoolOffPeriodRequestHours' => [ 'base' => NULL, 'refs' => [ 'LockSnapshotRequest$CoolOffPeriod' => '

The cooling-off period during which you can unlock the snapshot or modify the lock settings after locking the snapshot in compliance mode, in hours. After the cooling-off period expires, you can\'t unlock or delete the snapshot, decrease the lock duration, or change the lock mode. You can increase the lock duration after the cooling-off period expires.

The cooling-off period is optional when locking a snapshot in compliance mode. If you are locking the snapshot in governance mode, omit this parameter.

To lock the snapshot in compliance mode immediately without a cooling-off period, omit this parameter.

If you are extending the lock duration for a snapshot that is locked in compliance mode after the cooling-off period has expired, omit this parameter. If you specify a cooling-period in a such a request, the request fails.

Allowed values: Min 1, max 72.

', ], ], 'CoolOffPeriodResponseHours' => [ 'base' => NULL, 'refs' => [ 'LockSnapshotResult$CoolOffPeriod' => '

The compliance mode cooling-off period, in hours.

', 'LockedSnapshotsInfo$CoolOffPeriod' => '

The compliance mode cooling-off period, in hours.

', ], ], 'CopyFpgaImageRequest' => [ 'base' => NULL, 'refs' => [], ], 'CopyFpgaImageResult' => [ 'base' => NULL, 'refs' => [], ], 'CopyImageRequest' => [ 'base' => '

Contains the parameters for CopyImage.

', 'refs' => [], ], 'CopyImageResult' => [ 'base' => '

Contains the output of CopyImage.

', 'refs' => [], ], 'CopySnapshotRequest' => [ 'base' => NULL, 'refs' => [], ], 'CopySnapshotRequestPSU' => [ 'base' => NULL, 'refs' => [ 'CopySnapshotRequest$PresignedUrl' => '

When you copy an encrypted source snapshot using the Amazon EC2 Query API, you must supply a pre-signed URL. This parameter is optional for unencrypted snapshots. For more information, see Query requests.

The PresignedUrl should use the snapshot source endpoint, the CopySnapshot action, and include the SourceRegion, SourceSnapshotId, and DestinationRegion parameters. The PresignedUrl must be signed using Amazon Web Services Signature Version 4. Because EBS snapshots are stored in Amazon S3, the signing algorithm for this parameter uses the same logic that is described in Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4) in the Amazon Simple Storage Service API Reference. An invalid or improperly signed PresignedUrl will cause the copy operation to fail asynchronously, and the snapshot will move to an error state.

', ], ], 'CopySnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'CopyTagsFromSource' => [ 'base' => NULL, 'refs' => [ 'CreateSnapshotsRequest$CopyTagsFromSource' => '

Copies the tags from the specified volume to corresponding snapshot.

', ], ], 'CoreCount' => [ 'base' => NULL, 'refs' => [ 'CoreCountList$member' => NULL, 'VCpuInfo$DefaultCores' => '

The default number of cores for the instance type.

', ], ], 'CoreCountList' => [ 'base' => NULL, 'refs' => [ 'VCpuInfo$ValidCores' => '

The valid number of cores that can be configured for the instance type.

', ], ], 'CoreNetworkArn' => [ 'base' => NULL, 'refs' => [ 'CreateRouteRequest$CoreNetworkArn' => '

The Amazon Resource Name (ARN) of the core network.

', 'ReplaceRouteRequest$CoreNetworkArn' => '

The Amazon Resource Name (ARN) of the core network.

', 'Route$CoreNetworkArn' => '

The Amazon Resource Name (ARN) of the core network.

', ], ], 'CpuManufacturer' => [ 'base' => NULL, 'refs' => [ 'CpuManufacturerSet$member' => NULL, ], ], 'CpuManufacturerName' => [ 'base' => NULL, 'refs' => [ 'ProcessorInfo$Manufacturer' => '

The manufacturer of the processor.

', ], ], 'CpuManufacturerSet' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$CpuManufacturers' => '

The CPU manufacturers to include.

  • For instance types with Intel CPUs, specify intel.

  • For instance types with AMD CPUs, specify amd.

  • For instance types with Amazon Web Services CPUs, specify amazon-web-services.

Don\'t confuse the CPU manufacturer with the CPU architecture. Instances will be launched with a compatible CPU architecture based on the Amazon Machine Image (AMI) that you specify in your launch template.

Default: Any manufacturer

', 'InstanceRequirementsRequest$CpuManufacturers' => '

The CPU manufacturers to include.

  • For instance types with Intel CPUs, specify intel.

  • For instance types with AMD CPUs, specify amd.

  • For instance types with Amazon Web Services CPUs, specify amazon-web-services.

Don\'t confuse the CPU manufacturer with the CPU architecture. Instances will be launched with a compatible CPU architecture based on the Amazon Machine Image (AMI) that you specify in your launch template.

Default: Any manufacturer

', ], ], 'CpuOptions' => [ 'base' => '

The CPU options for the instance.

', 'refs' => [ 'Instance$CpuOptions' => '

The CPU options for the instance.

', ], ], 'CpuOptionsRequest' => [ 'base' => '

The CPU options for the instance. Both the core count and threads per core must be specified in the request.

', 'refs' => [ 'RunInstancesRequest$CpuOptions' => '

The CPU options for the instance. For more information, see Optimize CPU options in the Amazon EC2 User Guide.

', ], ], 'CreateCapacityReservationFleetRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateCapacityReservationFleetResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateCapacityReservationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateCapacityReservationResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateCarrierGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateCarrierGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateClientVpnEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateClientVpnEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateClientVpnRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateClientVpnRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateCoipCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateCoipCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateCoipPoolRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateCoipPoolResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateCustomerGatewayRequest' => [ 'base' => '

Contains the parameters for CreateCustomerGateway.

', 'refs' => [], ], 'CreateCustomerGatewayResult' => [ 'base' => '

Contains the output of CreateCustomerGateway.

', 'refs' => [], ], 'CreateDefaultSubnetRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateDefaultSubnetResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDefaultVpcRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateDefaultVpcResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDhcpOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateDhcpOptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateEgressOnlyInternetGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateEgressOnlyInternetGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateFleetError' => [ 'base' => '

Describes the instances that could not be launched by the fleet.

', 'refs' => [ 'CreateFleetErrorsSet$member' => NULL, ], ], 'CreateFleetErrorsSet' => [ 'base' => NULL, 'refs' => [ 'CreateFleetResult$Errors' => '

Information about the instances that could not be launched by the fleet. Supported only for fleets of type instant.

', ], ], 'CreateFleetInstance' => [ 'base' => '

Describes the instances that were launched by the fleet.

', 'refs' => [ 'CreateFleetInstancesSet$member' => NULL, ], ], 'CreateFleetInstancesSet' => [ 'base' => NULL, 'refs' => [ 'CreateFleetResult$Instances' => '

Information about the instances that were launched by the fleet. Supported only for fleets of type instant.

', ], ], 'CreateFleetRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateFleetResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateFlowLogsRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateFlowLogsResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateFpgaImageRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateFpgaImageResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateImageRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateImageResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateInstanceConnectEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateInstanceConnectEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateInstanceEventWindowRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateInstanceEventWindowResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateInstanceExportTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateInstanceExportTaskResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateInternetGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateInternetGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateIpamPoolRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateIpamPoolResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateIpamRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateIpamResourceDiscoveryRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateIpamResourceDiscoveryResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateIpamResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateIpamScopeRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateIpamScopeResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateKeyPairRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateLaunchTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateLaunchTemplateResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateLaunchTemplateVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateLaunchTemplateVersionResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateLocalGatewayRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateLocalGatewayRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateLocalGatewayRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateLocalGatewayRouteTableResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateLocalGatewayRouteTableVpcAssociationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateLocalGatewayRouteTableVpcAssociationResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateManagedPrefixListRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateManagedPrefixListResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateNatGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateNatGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkAclEntryRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkAclRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkAclResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkInsightsAccessScopeRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkInsightsAccessScopeResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkInsightsPathRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkInsightsPathResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkInterfacePermissionRequest' => [ 'base' => '

Contains the parameters for CreateNetworkInterfacePermission.

', 'refs' => [], ], 'CreateNetworkInterfacePermissionResult' => [ 'base' => '

Contains the output of CreateNetworkInterfacePermission.

', 'refs' => [], ], 'CreateNetworkInterfaceRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkInterfaceResult' => [ 'base' => NULL, 'refs' => [], ], 'CreatePlacementGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreatePlacementGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CreatePublicIpv4PoolRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreatePublicIpv4PoolResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateReplaceRootVolumeTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateReplaceRootVolumeTaskResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateReservedInstancesListingRequest' => [ 'base' => '

Contains the parameters for CreateReservedInstancesListing.

', 'refs' => [], ], 'CreateReservedInstancesListingResult' => [ 'base' => '

Contains the output of CreateReservedInstancesListing.

', 'refs' => [], ], 'CreateRestoreImageTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateRestoreImageTaskResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateRouteTableResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateSecurityGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateSecurityGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateSnapshotRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateSnapshotsRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateSnapshotsResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateSpotDatafeedSubscriptionRequest' => [ 'base' => '

Contains the parameters for CreateSpotDatafeedSubscription.

', 'refs' => [], ], 'CreateSpotDatafeedSubscriptionResult' => [ 'base' => '

Contains the output of CreateSpotDatafeedSubscription.

', 'refs' => [], ], 'CreateStoreImageTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateStoreImageTaskResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateSubnetCidrReservationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateSubnetCidrReservationResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateSubnetRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateSubnetResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTagsRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTrafficMirrorFilterRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTrafficMirrorFilterResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTrafficMirrorFilterRuleRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTrafficMirrorFilterRuleResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTrafficMirrorSessionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTrafficMirrorSessionResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTrafficMirrorTargetRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTrafficMirrorTargetResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayConnectPeerRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayConnectPeerResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayConnectRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayConnectRequestOptions' => [ 'base' => '

The options for a Connect attachment.

', 'refs' => [ 'CreateTransitGatewayConnectRequest$Options' => '

The Connect attachment options.

', ], ], 'CreateTransitGatewayConnectResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayMulticastDomainRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayMulticastDomainRequestOptions' => [ 'base' => '

The options for the transit gateway multicast domain.

', 'refs' => [ 'CreateTransitGatewayMulticastDomainRequest$Options' => '

The options for the transit gateway multicast domain.

', ], ], 'CreateTransitGatewayMulticastDomainResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayPeeringAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayPeeringAttachmentRequestOptions' => [ 'base' => '

Describes whether dynamic routing is enabled or disabled for the transit gateway peering request.

', 'refs' => [ 'CreateTransitGatewayPeeringAttachmentRequest$Options' => '

Requests a transit gateway peering attachment.

', ], ], 'CreateTransitGatewayPeeringAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayPolicyTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayPolicyTableResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayPrefixListReferenceRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayPrefixListReferenceResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayRouteTableAnnouncementRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayRouteTableAnnouncementResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayRouteTableResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayVpcAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayVpcAttachmentRequestOptions' => [ 'base' => '

Describes the options for a VPC attachment.

', 'refs' => [ 'CreateTransitGatewayVpcAttachmentRequest$Options' => '

The VPC attachment options.

', ], ], 'CreateTransitGatewayVpcAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVerifiedAccessEndpointEniOptions' => [ 'base' => '

Describes the network interface options when creating an Amazon Web Services Verified Access endpoint using the network-interface type.

', 'refs' => [ 'CreateVerifiedAccessEndpointRequest$NetworkInterfaceOptions' => '

The network interface details. This parameter is required if the endpoint type is network-interface.

', ], ], 'CreateVerifiedAccessEndpointLoadBalancerOptions' => [ 'base' => '

Describes the load balancer options when creating an Amazon Web Services Verified Access endpoint using the load-balancer type.

', 'refs' => [ 'CreateVerifiedAccessEndpointRequest$LoadBalancerOptions' => '

The load balancer details. This parameter is required if the endpoint type is load-balancer.

', ], ], 'CreateVerifiedAccessEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVerifiedAccessEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVerifiedAccessEndpointSubnetIdList' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointLoadBalancerOptions$SubnetIds' => '

The IDs of the subnets.

', ], ], 'CreateVerifiedAccessGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVerifiedAccessGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVerifiedAccessInstanceRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVerifiedAccessInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVerifiedAccessTrustProviderDeviceOptions' => [ 'base' => '

Describes the options when creating an Amazon Web Services Verified Access trust provider using the device type.

', 'refs' => [ 'CreateVerifiedAccessTrustProviderRequest$DeviceOptions' => '

The options for a device-based trust provider. This parameter is required when the provider type is device.

', ], ], 'CreateVerifiedAccessTrustProviderOidcOptions' => [ 'base' => '

Describes the options when creating an Amazon Web Services Verified Access trust provider using the user type.

', 'refs' => [ 'CreateVerifiedAccessTrustProviderRequest$OidcOptions' => '

The options for a OpenID Connect-compatible user-identity trust provider. This parameter is required when the provider type is user.

', ], ], 'CreateVerifiedAccessTrustProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVerifiedAccessTrustProviderResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVolumePermission' => [ 'base' => '

Describes the user or group to be added or removed from the list of create volume permissions for a volume.

', 'refs' => [ 'CreateVolumePermissionList$member' => NULL, ], ], 'CreateVolumePermissionList' => [ 'base' => NULL, 'refs' => [ 'CreateVolumePermissionModifications$Add' => '

Adds the specified Amazon Web Services account ID or group to the list.

', 'CreateVolumePermissionModifications$Remove' => '

Removes the specified Amazon Web Services account ID or group from the list.

', 'DescribeSnapshotAttributeResult$CreateVolumePermissions' => '

The users and groups that have the permissions for creating volumes from the snapshot.

', ], ], 'CreateVolumePermissionModifications' => [ 'base' => '

Describes modifications to the list of create volume permissions for a volume.

', 'refs' => [ 'ModifySnapshotAttributeRequest$CreateVolumePermission' => '

A JSON representation of the snapshot attribute modification.

', ], ], 'CreateVolumeRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcEndpointConnectionNotificationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcEndpointConnectionNotificationResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcEndpointServiceConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcEndpointServiceConfigurationResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcPeeringConnectionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcPeeringConnectionResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpnConnectionRequest' => [ 'base' => '

Contains the parameters for CreateVpnConnection.

', 'refs' => [], ], 'CreateVpnConnectionResult' => [ 'base' => '

Contains the output of CreateVpnConnection.

', 'refs' => [], ], 'CreateVpnConnectionRouteRequest' => [ 'base' => '

Contains the parameters for CreateVpnConnectionRoute.

', 'refs' => [], ], 'CreateVpnGatewayRequest' => [ 'base' => '

Contains the parameters for CreateVpnGateway.

', 'refs' => [], ], 'CreateVpnGatewayResult' => [ 'base' => '

Contains the output of CreateVpnGateway.

', 'refs' => [], ], 'CreditSpecification' => [ 'base' => '

Describes the credit option for CPU usage of a T instance.

', 'refs' => [ 'ResponseLaunchTemplateData$CreditSpecification' => '

The credit option for CPU usage of the instance.

', ], ], 'CreditSpecificationRequest' => [ 'base' => '

The credit option for CPU usage of a T instance.

', 'refs' => [ 'RequestLaunchTemplateData$CreditSpecification' => '

The credit option for CPU usage of the instance. Valid only for T instances.

', 'RunInstancesRequest$CreditSpecification' => '

The credit option for CPU usage of the burstable performance instance. Valid values are standard and unlimited. To change this attribute after launch, use ModifyInstanceCreditSpecification. For more information, see Burstable performance instances in the Amazon EC2 User Guide.

Default: standard (T2 instances) or unlimited (T3/T3a/T4g instances)

For T3 instances with host tenancy, only standard is supported.

', ], ], 'CurrencyCodeValues' => [ 'base' => NULL, 'refs' => [ 'GetHostReservationPurchasePreviewResult$CurrencyCode' => '

The currency in which the totalUpfrontPrice and totalHourlyPrice amounts are specified. At this time, the only supported currency is USD.

', 'HostOffering$CurrencyCode' => '

The currency of the offering.

', 'HostReservation$CurrencyCode' => '

The currency in which the upfrontPrice and hourlyPrice amounts are specified. At this time, the only supported currency is USD.

', 'PriceSchedule$CurrencyCode' => '

The currency for transacting the Reserved Instance resale. At this time, the only supported currency is USD.

', 'PriceScheduleSpecification$CurrencyCode' => '

The currency for transacting the Reserved Instance resale. At this time, the only supported currency is USD.

', 'Purchase$CurrencyCode' => '

The currency in which the UpfrontPrice and HourlyPrice amounts are specified. At this time, the only supported currency is USD.

', 'PurchaseHostReservationRequest$CurrencyCode' => '

The currency in which the totalUpfrontPrice, LimitPrice, and totalHourlyPrice amounts are specified. At this time, the only supported currency is USD.

', 'PurchaseHostReservationResult$CurrencyCode' => '

The currency in which the totalUpfrontPrice and totalHourlyPrice amounts are specified. At this time, the only supported currency is USD.

', 'ReservedInstanceLimitPrice$CurrencyCode' => '

The currency in which the limitPrice amount is specified. At this time, the only supported currency is USD.

', 'ReservedInstances$CurrencyCode' => '

The currency of the Reserved Instance. It\'s specified using ISO 4217 standard currency codes. At this time, the only supported currency is USD.

', 'ReservedInstancesOffering$CurrencyCode' => '

The currency of the Reserved Instance offering you are purchasing. It\'s specified using ISO 4217 standard currency codes. At this time, the only supported currency is USD.

', ], ], 'CurrentGenerationFlag' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$CurrentGeneration' => '

Indicates whether the instance type is current generation.

', ], ], 'CustomerGateway' => [ 'base' => '

Describes a customer gateway.

', 'refs' => [ 'CreateCustomerGatewayResult$CustomerGateway' => '

Information about the customer gateway.

', 'CustomerGatewayList$member' => NULL, ], ], 'CustomerGatewayId' => [ 'base' => NULL, 'refs' => [ 'CreateVpnConnectionRequest$CustomerGatewayId' => '

The ID of the customer gateway.

', 'CustomerGatewayIdStringList$member' => NULL, 'DeleteCustomerGatewayRequest$CustomerGatewayId' => '

The ID of the customer gateway.

', 'GetVpnTunnelReplacementStatusResult$CustomerGatewayId' => '

The ID of the customer gateway.

', 'ModifyVpnConnectionRequest$CustomerGatewayId' => '

The ID of the customer gateway at your end of the VPN connection.

', ], ], 'CustomerGatewayIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeCustomerGatewaysRequest$CustomerGatewayIds' => '

One or more customer gateway IDs.

Default: Describes all your customer gateways.

', ], ], 'CustomerGatewayList' => [ 'base' => NULL, 'refs' => [ 'DescribeCustomerGatewaysResult$CustomerGateways' => '

Information about one or more customer gateways.

', ], ], 'DITMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTypesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DITOMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTypeOfferingsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DataQueries' => [ 'base' => NULL, 'refs' => [ 'GetAwsNetworkPerformanceDataRequest$DataQueries' => '

A list of network performance data queries.

', ], ], 'DataQuery' => [ 'base' => '

A query used for retrieving network health data.

', 'refs' => [ 'DataQueries$member' => NULL, ], ], 'DataResponse' => [ 'base' => '

The response to a DataQuery.

', 'refs' => [ 'DataResponses$member' => NULL, ], ], 'DataResponses' => [ 'base' => NULL, 'refs' => [ 'GetAwsNetworkPerformanceDataResult$DataResponses' => '

The list of data responses.

', ], ], 'DatafeedSubscriptionState' => [ 'base' => NULL, 'refs' => [ 'SpotDatafeedSubscription$State' => '

The state of the Spot Instance data feed subscription.

', ], ], 'DateTime' => [ 'base' => NULL, 'refs' => [ 'BundleTask$StartTime' => '

The time this task started.

', 'BundleTask$UpdateTime' => '

The time of the most recent update for the task.

', 'CapacityReservation$EndDate' => '

The date and time at which the Capacity Reservation expires. When a Capacity Reservation expires, the reserved capacity is released and you can no longer launch instances into it. The Capacity Reservation\'s state changes to expired when it reaches its end date and time.

', 'CapacityReservation$CreateDate' => '

The date and time at which the Capacity Reservation was created.

', 'ClientData$UploadEnd' => '

The time that the disk upload ends.

', 'ClientData$UploadStart' => '

The time that the disk upload starts.

', 'CreateCapacityReservationRequest$EndDate' => '

The date and time at which the Capacity Reservation expires. When a Capacity Reservation expires, the reserved capacity is released and you can no longer launch instances into it. The Capacity Reservation\'s state changes to expired when it reaches its end date and time.

You must provide an EndDate value if EndDateType is limited. Omit EndDate if EndDateType is unlimited.

If the EndDateType is limited, the Capacity Reservation is cancelled within an hour from the specified time. For example, if you specify 5/31/2019, 13:30:55, the Capacity Reservation is guaranteed to end between 13:30:55 and 14:30:55 on 5/31/2019.

', 'CreateFleetRequest$ValidFrom' => '

The start date and time of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). The default is to start fulfilling the request immediately.

', 'CreateFleetRequest$ValidUntil' => '

The end date and time of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). At this point, no new EC2 Fleet requests are placed or able to fulfill the request. If no value is specified, the request remains until you cancel it.

', 'DescribeFleetHistoryRequest$StartTime' => '

The start date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'DescribeFleetHistoryResult$LastEvaluatedTime' => '

The last date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). All records up to this time were retrieved.

If nextToken indicates that there are more items, this value is not present.

', 'DescribeFleetHistoryResult$StartTime' => '

The start date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'DescribeSpotFleetRequestHistoryRequest$StartTime' => '

The starting date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'DescribeSpotFleetRequestHistoryResponse$LastEvaluatedTime' => '

The last date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). All records up to this time were retrieved.

If nextToken indicates that there are more items, this value is not present.

', 'DescribeSpotFleetRequestHistoryResponse$StartTime' => '

The starting date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'DescribeSpotPriceHistoryRequest$EndTime' => '

The date and time, up to the current date, from which to stop retrieving the price history data, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'DescribeSpotPriceHistoryRequest$StartTime' => '

The date and time, up to the past 90 days, from which to start retrieving the price history data, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'EbsInstanceBlockDevice$AttachTime' => '

The time stamp when the attachment initiated.

', 'ElasticInferenceAcceleratorAssociation$ElasticInferenceAcceleratorAssociationTime' => '

The time at which the elastic inference accelerator is associated with an instance.

', 'FleetData$CreateTime' => '

The creation date and time of the EC2 Fleet.

', 'FleetData$ValidFrom' => '

The start date and time of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). The default is to start fulfilling the request immediately.

', 'FleetData$ValidUntil' => '

The end date and time of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). At this point, no new instance requests are placed or able to fulfill the request. The default end date is 7 days from the current date.

', 'FpgaImage$CreateTime' => '

The date and time the AFI was created.

', 'FpgaImage$UpdateTime' => '

The time of the most recent update to the AFI.

', 'GetConsoleOutputResult$Timestamp' => '

The time at which the output was last updated.

', 'GetPasswordDataResult$Timestamp' => '

The time the data was last updated.

', 'GetReservedInstancesExchangeQuoteResult$OutputReservedInstancesWillExpireAt' => '

The new end date of the reservation term.

', 'HistoryRecord$Timestamp' => '

The date and time of the event, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'HistoryRecordEntry$Timestamp' => '

The date and time of the event, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'Host$AllocationTime' => '

The time that the Dedicated Host was allocated.

', 'Host$ReleaseTime' => '

The time that the Dedicated Host was released.

', 'HostReservation$End' => '

The date and time that the reservation ends.

', 'HostReservation$Start' => '

The date and time that the reservation started.

', 'IamInstanceProfileAssociation$Timestamp' => '

The time the IAM instance profile was associated with the instance.

', 'IdFormat$Deadline' => '

The date in UTC at which you are permanently switched over to using longer IDs. If a deadline is not yet available for this resource type, this field is not returned.

', 'Instance$LaunchTime' => '

The time the instance was launched.

', 'InstanceNetworkInterfaceAttachment$AttachTime' => '

The time stamp when the attachment initiated.

', 'InstanceStatusDetails$ImpairedSince' => '

The time when a status check failed. For an instance that was launched and impaired, this is the time when the instance was launched.

', 'InstanceStatusEvent$NotAfter' => '

The latest scheduled end time for the event.

', 'InstanceStatusEvent$NotBefore' => '

The earliest scheduled start time for the event.

', 'InstanceStatusEvent$NotBeforeDeadline' => '

The deadline for starting the event.

', 'LaunchTemplate$CreateTime' => '

The time launch template was created.

', 'LaunchTemplateSpotMarketOptions$ValidUntil' => '

The end date of the request. For a one-time request, the request remains active until all instances launch, the request is canceled, or this date is reached. If the request is persistent, it remains active until it is canceled or this date and time is reached.

', 'LaunchTemplateSpotMarketOptionsRequest$ValidUntil' => '

The end date of the request, in UTC format (YYYY-MM-DDTHH:MM:SSZ). Supported only for persistent requests.

  • For a persistent request, the request remains active until the ValidUntil date and time is reached. Otherwise, the request remains active until you cancel it.

  • For a one-time request, ValidUntil is not supported. The request remains active until all instances launch or you cancel the request.

Default: 7 days from the current date

', 'LaunchTemplateVersion$CreateTime' => '

The time the version was created.

', 'ModifyCapacityReservationRequest$EndDate' => '

The date and time at which the Capacity Reservation expires. When a Capacity Reservation expires, the reserved capacity is released and you can no longer launch instances into it. The Capacity Reservation\'s state changes to expired when it reaches its end date and time.

The Capacity Reservation is cancelled within an hour from the specified time. For example, if you specify 5/31/2019, 13:30:55, the Capacity Reservation is guaranteed to end between 13:30:55 and 14:30:55 on 5/31/2019.

You must provide an EndDate value if EndDateType is limited. Omit EndDate if EndDateType is unlimited.

', 'ModifyInstanceEventStartTimeRequest$NotBefore' => '

The new date and time when the event will take place.

', 'NatGateway$CreateTime' => '

The date and time the NAT gateway was created.

', 'NatGateway$DeleteTime' => '

The date and time the NAT gateway was deleted, if applicable.

', 'NetworkInterfaceAttachment$AttachTime' => '

The timestamp indicating when the attachment initiated.

', 'ProvisionedBandwidth$ProvisionTime' => '

Reserved. If you need to sustain traffic greater than the documented limits, contact us through the Support Center.

', 'ProvisionedBandwidth$RequestTime' => '

Reserved. If you need to sustain traffic greater than the documented limits, contact us through the Support Center.

', 'PurchaseReservedInstancesOfferingRequest$PurchaseTime' => '

The time at which to purchase the Reserved Instance, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'ReportInstanceStatusRequest$EndTime' => '

The time at which the reported instance health state ended.

', 'ReportInstanceStatusRequest$StartTime' => '

The time at which the reported instance health state began.

', 'RequestSpotInstancesRequest$ValidFrom' => '

The start date of the request. If this is a one-time request, the request becomes active at this date and time and remains active until all instances launch, the request expires, or the request is canceled. If the request is persistent, the request becomes active at this date and time and remains active until it expires or is canceled.

The specified start date and time cannot be equal to the current date and time. You must specify a start date and time that occurs after the current date and time.

', 'RequestSpotInstancesRequest$ValidUntil' => '

The end date of the request, in UTC format (YYYY-MM-DDTHH:MM:SSZ).

  • For a persistent request, the request remains active until the ValidUntil date and time is reached. Otherwise, the request remains active until you cancel it.

  • For a one-time request, the request remains active until all instances launch, the request is canceled, or the ValidUntil date and time is reached. By default, the request is valid for 7 days from the date the request was created.

', 'ReservedInstances$End' => '

The time when the Reserved Instance expires.

', 'ReservedInstances$Start' => '

The date and time the Reserved Instance started.

', 'ReservedInstancesListing$CreateDate' => '

The time the listing was created.

', 'ReservedInstancesListing$UpdateDate' => '

The last modified timestamp of the listing.

', 'ReservedInstancesModification$CreateDate' => '

The time when the modification request was created.

', 'ReservedInstancesModification$EffectiveDate' => '

The time for the modification to become effective.

', 'ReservedInstancesModification$UpdateDate' => '

The time when the modification request was last updated.

', 'ScheduledInstance$CreateDate' => '

The date when the Scheduled Instance was purchased.

', 'ScheduledInstance$NextSlotStartTime' => '

The time for the next schedule to start.

', 'ScheduledInstance$PreviousSlotEndTime' => '

The time that the previous schedule ended or will end.

', 'ScheduledInstance$TermEndDate' => '

The end date for the Scheduled Instance.

', 'ScheduledInstance$TermStartDate' => '

The start date for the Scheduled Instance.

', 'ScheduledInstanceAvailability$FirstSlotStartTime' => '

The time period for the first schedule to start.

', 'SlotDateTimeRangeRequest$EarliestTime' => '

The earliest date and time, in UTC, for the Scheduled Instance to start.

', 'SlotDateTimeRangeRequest$LatestTime' => '

The latest date and time, in UTC, for the Scheduled Instance to start. This value must be later than or equal to the earliest date and at most three months in the future.

', 'SlotStartTimeRangeRequest$EarliestTime' => '

The earliest date and time, in UTC, for the Scheduled Instance to start.

', 'SlotStartTimeRangeRequest$LatestTime' => '

The latest date and time, in UTC, for the Scheduled Instance to start.

', 'Snapshot$StartTime' => '

The time stamp when the snapshot was initiated.

', 'SpotFleetRequestConfigData$ValidFrom' => '

The start date and time of the request, in UTC format (YYYY-MM-DDTHH:MM:SSZ). By default, Amazon EC2 starts fulfilling the request immediately.

', 'SpotFleetRequestConfigData$ValidUntil' => '

The end date and time of the request, in UTC format (YYYY-MM-DDTHH:MM:SSZ). After the end date and time, no new Spot Instance requests are placed or able to fulfill the request. If no value is specified, the Spot Fleet request remains until you cancel it.

', 'SpotInstanceRequest$CreateTime' => '

The date and time when the Spot Instance request was created, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'SpotInstanceRequest$ValidFrom' => '

The start date of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). The request becomes active at this date and time.

', 'SpotInstanceRequest$ValidUntil' => '

The end date of the request, in UTC format (YYYY-MM-DDTHH:MM:SSZ).

  • For a persistent request, the request remains active until the validUntil date and time is reached. Otherwise, the request remains active until you cancel it.

  • For a one-time request, the request remains active until all instances launch, the request is canceled, or the validUntil date and time is reached. By default, the request is valid for 7 days from the date the request was created.

', 'SpotInstanceStatus$UpdateTime' => '

The date and time of the most recent status update, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'SpotMarketOptions$ValidUntil' => '

The end date of the request, in UTC format (YYYY-MM-DDTHH:MM:SSZ). Supported only for persistent requests.

  • For a persistent request, the request remains active until the ValidUntil date and time is reached. Otherwise, the request remains active until you cancel it.

  • For a one-time request, ValidUntil is not supported. The request remains active until all instances launch or you cancel the request.

', 'SpotPrice$Timestamp' => '

The date and time the request was created, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'TransitGateway$CreationTime' => '

The creation time.

', 'TransitGatewayAttachment$CreationTime' => '

The creation time.

', 'TransitGatewayConnect$CreationTime' => '

The creation time.

', 'TransitGatewayConnectPeer$CreationTime' => '

The creation time.

', 'TransitGatewayMulticastDomain$CreationTime' => '

The time the transit gateway multicast domain was created.

', 'TransitGatewayPeeringAttachment$CreationTime' => '

The time the transit gateway peering attachment was created.

', 'TransitGatewayPolicyTable$CreationTime' => '

The timestamp when the transit gateway policy table was created.

', 'TransitGatewayRouteTable$CreationTime' => '

The creation time.

', 'TransitGatewayRouteTableAnnouncement$CreationTime' => '

The timestamp when the transit gateway route table announcement was created.

', 'TransitGatewayVpcAttachment$CreationTime' => '

The creation time.

', 'VgwTelemetry$LastStatusChange' => '

The date and time of the last change in status. This field is updated when changes in IKE (Phase 1), IPSec (Phase 2), or BGP status are detected.

', 'Volume$CreateTime' => '

The time stamp when volume creation was initiated.

', 'VolumeAttachment$AttachTime' => '

The time stamp when the attachment initiated.

', 'VolumeModification$StartTime' => '

The modification start time.

', 'VolumeModification$EndTime' => '

The modification completion or failure time.

', 'VpcPeeringConnection$ExpirationTime' => '

The time that an unaccepted VPC peering connection will expire.

', ], ], 'DedicatedHostFlag' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$DedicatedHostsSupported' => '

Indicates whether Dedicated Hosts are supported on the instance type.

', ], ], 'DedicatedHostId' => [ 'base' => NULL, 'refs' => [ 'DedicatedHostIdList$member' => NULL, 'LaunchTemplatePlacementRequest$HostId' => '

The ID of the Dedicated Host for the instance.

', 'ModifyInstancePlacementRequest$HostId' => '

The ID of the Dedicated Host with which to associate the instance.

', 'RequestHostIdList$member' => NULL, 'RequestHostIdSet$member' => NULL, ], ], 'DedicatedHostIdList' => [ 'base' => NULL, 'refs' => [ 'InstanceEventWindowAssociationRequest$DedicatedHostIds' => '

The IDs of the Dedicated Hosts to associate with the event window.

', 'InstanceEventWindowAssociationTarget$DedicatedHostIds' => '

The IDs of the Dedicated Hosts associated with the event window.

', 'InstanceEventWindowDisassociationRequest$DedicatedHostIds' => '

The IDs of the Dedicated Hosts to disassociate from the event window.

', ], ], 'DefaultNetworkCardIndex' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$DefaultNetworkCardIndex' => '

The index of the default network card, starting at 0.

', ], ], 'DefaultRouteTableAssociationValue' => [ 'base' => NULL, 'refs' => [ 'ModifyTransitGatewayOptions$DefaultRouteTableAssociation' => '

Enable or disable automatic association with the default association route table.

', 'TransitGatewayOptions$DefaultRouteTableAssociation' => '

Indicates whether resource attachments are automatically associated with the default association route table.

', 'TransitGatewayRequestOptions$DefaultRouteTableAssociation' => '

Enable or disable automatic association with the default association route table. Enabled by default.

', ], ], 'DefaultRouteTablePropagationValue' => [ 'base' => NULL, 'refs' => [ 'ModifyTransitGatewayOptions$DefaultRouteTablePropagation' => '

Enable or disable automatic propagation of routes to the default propagation route table.

', 'TransitGatewayOptions$DefaultRouteTablePropagation' => '

Indicates whether resource attachments automatically propagate routes to the default propagation route table.

', 'TransitGatewayRequestOptions$DefaultRouteTablePropagation' => '

Enable or disable automatic propagation of routes to the default propagation route table. Enabled by default.

', ], ], 'DefaultTargetCapacityType' => [ 'base' => NULL, 'refs' => [ 'TargetCapacitySpecification$DefaultTargetCapacityType' => '

The default target capacity type.

', 'TargetCapacitySpecificationRequest$DefaultTargetCapacityType' => '

The default target capacity type.

', ], ], 'DefaultingDhcpOptionsId' => [ 'base' => NULL, 'refs' => [ 'AssociateDhcpOptionsRequest$DhcpOptionsId' => '

The ID of the DHCP options set, or default to associate no DHCP options with the VPC.

', ], ], 'DeleteCarrierGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCarrierGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteClientVpnEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteClientVpnEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteClientVpnRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteClientVpnRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCoipCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCoipCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCoipPoolRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCoipPoolResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCustomerGatewayRequest' => [ 'base' => '

Contains the parameters for DeleteCustomerGateway.

', 'refs' => [], ], 'DeleteDhcpOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteEgressOnlyInternetGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteEgressOnlyInternetGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFleetError' => [ 'base' => '

Describes an EC2 Fleet error.

', 'refs' => [ 'DeleteFleetErrorItem$Error' => '

The error.

', ], ], 'DeleteFleetErrorCode' => [ 'base' => NULL, 'refs' => [ 'DeleteFleetError$Code' => '

The error code.

', ], ], 'DeleteFleetErrorItem' => [ 'base' => '

Describes an EC2 Fleet that was not successfully deleted.

', 'refs' => [ 'DeleteFleetErrorSet$member' => NULL, ], ], 'DeleteFleetErrorSet' => [ 'base' => NULL, 'refs' => [ 'DeleteFleetsResult$UnsuccessfulFleetDeletions' => '

Information about the EC2 Fleets that are not successfully deleted.

', ], ], 'DeleteFleetSuccessItem' => [ 'base' => '

Describes an EC2 Fleet that was successfully deleted.

', 'refs' => [ 'DeleteFleetSuccessSet$member' => NULL, ], ], 'DeleteFleetSuccessSet' => [ 'base' => NULL, 'refs' => [ 'DeleteFleetsResult$SuccessfulFleetDeletions' => '

Information about the EC2 Fleets that are successfully deleted.

', ], ], 'DeleteFleetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFleetsResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFlowLogsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFlowLogsResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFpgaImageRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFpgaImageResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteInstanceConnectEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteInstanceConnectEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteInstanceEventWindowRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteInstanceEventWindowResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteInternetGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIpamPoolRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIpamPoolResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIpamRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIpamResourceDiscoveryRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIpamResourceDiscoveryResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIpamResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIpamScopeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIpamScopeResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteKeyPairRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteKeyPairResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLaunchTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLaunchTemplateResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLaunchTemplateVersionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLaunchTemplateVersionsResponseErrorItem' => [ 'base' => '

Describes a launch template version that could not be deleted.

', 'refs' => [ 'DeleteLaunchTemplateVersionsResponseErrorSet$member' => NULL, ], ], 'DeleteLaunchTemplateVersionsResponseErrorSet' => [ 'base' => NULL, 'refs' => [ 'DeleteLaunchTemplateVersionsResult$UnsuccessfullyDeletedLaunchTemplateVersions' => '

Information about the launch template versions that could not be deleted.

', ], ], 'DeleteLaunchTemplateVersionsResponseSuccessItem' => [ 'base' => '

Describes a launch template version that was successfully deleted.

', 'refs' => [ 'DeleteLaunchTemplateVersionsResponseSuccessSet$member' => NULL, ], ], 'DeleteLaunchTemplateVersionsResponseSuccessSet' => [ 'base' => NULL, 'refs' => [ 'DeleteLaunchTemplateVersionsResult$SuccessfullyDeletedLaunchTemplateVersions' => '

Information about the launch template versions that were successfully deleted.

', ], ], 'DeleteLaunchTemplateVersionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLocalGatewayRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLocalGatewayRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLocalGatewayRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLocalGatewayRouteTableResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLocalGatewayRouteTableVpcAssociationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLocalGatewayRouteTableVpcAssociationResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteManagedPrefixListRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteManagedPrefixListResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNatGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNatGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkAclEntryRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkAclRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInsightsAccessScopeAnalysisRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInsightsAccessScopeAnalysisResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInsightsAccessScopeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInsightsAccessScopeResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInsightsAnalysisRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInsightsAnalysisResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInsightsPathRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInsightsPathResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInterfacePermissionRequest' => [ 'base' => '

Contains the parameters for DeleteNetworkInterfacePermission.

', 'refs' => [], ], 'DeleteNetworkInterfacePermissionResult' => [ 'base' => '

Contains the output for DeleteNetworkInterfacePermission.

', 'refs' => [], ], 'DeleteNetworkInterfaceRequest' => [ 'base' => '

Contains the parameters for DeleteNetworkInterface.

', 'refs' => [], ], 'DeletePlacementGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeletePublicIpv4PoolRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeletePublicIpv4PoolResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteQueuedReservedInstancesError' => [ 'base' => '

Describes the error for a Reserved Instance whose queued purchase could not be deleted.

', 'refs' => [ 'FailedQueuedPurchaseDeletion$Error' => '

The error.

', ], ], 'DeleteQueuedReservedInstancesErrorCode' => [ 'base' => NULL, 'refs' => [ 'DeleteQueuedReservedInstancesError$Code' => '

The error code.

', ], ], 'DeleteQueuedReservedInstancesIdList' => [ 'base' => NULL, 'refs' => [ 'DeleteQueuedReservedInstancesRequest$ReservedInstancesIds' => '

The IDs of the Reserved Instances.

', ], ], 'DeleteQueuedReservedInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteQueuedReservedInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteSecurityGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteSnapshotRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteSpotDatafeedSubscriptionRequest' => [ 'base' => '

Contains the parameters for DeleteSpotDatafeedSubscription.

', 'refs' => [], ], 'DeleteSubnetCidrReservationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteSubnetCidrReservationResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteSubnetRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTagsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTrafficMirrorFilterRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTrafficMirrorFilterResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTrafficMirrorFilterRuleRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTrafficMirrorFilterRuleResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTrafficMirrorSessionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTrafficMirrorSessionResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTrafficMirrorTargetRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTrafficMirrorTargetResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayConnectPeerRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayConnectPeerResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayConnectRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayConnectResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayMulticastDomainRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayMulticastDomainResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayPeeringAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayPeeringAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayPolicyTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayPolicyTableResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayPrefixListReferenceRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayPrefixListReferenceResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayRouteTableAnnouncementRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayRouteTableAnnouncementResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayRouteTableResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayVpcAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayVpcAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVerifiedAccessEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVerifiedAccessEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVerifiedAccessGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVerifiedAccessGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVerifiedAccessInstanceRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVerifiedAccessInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVerifiedAccessTrustProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVerifiedAccessTrustProviderResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVolumeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcEndpointConnectionNotificationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcEndpointConnectionNotificationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcEndpointServiceConfigurationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcEndpointServiceConfigurationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcEndpointsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcEndpointsResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcPeeringConnectionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcPeeringConnectionResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpnConnectionRequest' => [ 'base' => '

Contains the parameters for DeleteVpnConnection.

', 'refs' => [], ], 'DeleteVpnConnectionRouteRequest' => [ 'base' => '

Contains the parameters for DeleteVpnConnectionRoute.

', 'refs' => [], ], 'DeleteVpnGatewayRequest' => [ 'base' => '

Contains the parameters for DeleteVpnGateway.

', 'refs' => [], ], 'DeprovisionByoipCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeprovisionByoipCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'DeprovisionIpamByoasnRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeprovisionIpamByoasnResult' => [ 'base' => NULL, 'refs' => [], ], 'DeprovisionIpamPoolCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeprovisionIpamPoolCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'DeprovisionPublicIpv4PoolCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeprovisionPublicIpv4PoolCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'DeprovisionedAddressSet' => [ 'base' => NULL, 'refs' => [ 'DeprovisionPublicIpv4PoolCidrResult$DeprovisionedAddresses' => '

The deprovisioned CIDRs.

', ], ], 'DeregisterImageRequest' => [ 'base' => '

Contains the parameters for DeregisterImage.

', 'refs' => [], ], 'DeregisterInstanceEventNotificationAttributesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeregisterInstanceEventNotificationAttributesResult' => [ 'base' => NULL, 'refs' => [], ], 'DeregisterInstanceTagAttributeRequest' => [ 'base' => '

Information about the tag keys to deregister for the current Region. You can either specify individual tag keys or deregister all tag keys in the current Region. You must specify either IncludeAllTagsOfInstance or InstanceTagKeys in the request

', 'refs' => [ 'DeregisterInstanceEventNotificationAttributesRequest$InstanceTagAttribute' => '

Information about the tag keys to deregister.

', ], ], 'DeregisterTransitGatewayMulticastGroupMembersRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeregisterTransitGatewayMulticastGroupMembersResult' => [ 'base' => NULL, 'refs' => [], ], 'DeregisterTransitGatewayMulticastGroupSourcesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeregisterTransitGatewayMulticastGroupSourcesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAccountAttributesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAccountAttributesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAddressTransfersMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressTransfersRequest$MaxResults' => '

The maximum number of address transfers to return in one page of results.

', ], ], 'DescribeAddressTransfersRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAddressTransfersResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAddressesAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAddressesAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAddressesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAddressesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAggregateIdFormatRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAggregateIdFormatResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAvailabilityZonesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAvailabilityZonesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAwsNetworkPerformanceMetricSubscriptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAwsNetworkPerformanceMetricSubscriptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeBundleTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeBundleTasksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeByoipCidrsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeByoipCidrsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'DescribeByoipCidrsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeByoipCidrsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCapacityBlockOfferingsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeCapacityBlockOfferingsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeCapacityBlockOfferingsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCapacityBlockOfferingsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCapacityReservationFleetsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeCapacityReservationFleetsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeCapacityReservationFleetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCapacityReservationFleetsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCapacityReservationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeCapacityReservationsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeCapacityReservationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCapacityReservationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCarrierGatewaysRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCarrierGatewaysResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClassicLinkInstancesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeClassicLinkInstancesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

Constraint: If the value is greater than 1000, we return only 1000 items.

', ], ], 'DescribeClassicLinkInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClassicLinkInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnAuthorizationRulesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnAuthorizationRulesRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the nextToken value.

', ], ], 'DescribeClientVpnAuthorizationRulesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnAuthorizationRulesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnConnectionsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnConnectionsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the nextToken value.

', ], ], 'DescribeClientVpnConnectionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnConnectionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnEndpointMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnEndpointsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the nextToken value.

', ], ], 'DescribeClientVpnEndpointsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnEndpointsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnRoutesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnRoutesRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the nextToken value.

', ], ], 'DescribeClientVpnRoutesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnRoutesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnTargetNetworksMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnTargetNetworksRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the nextToken value.

', ], ], 'DescribeClientVpnTargetNetworksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnTargetNetworksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCoipPoolsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCoipPoolsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeConversionTaskList' => [ 'base' => NULL, 'refs' => [ 'DescribeConversionTasksResult$ConversionTasks' => '

Information about the conversion tasks.

', ], ], 'DescribeConversionTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeConversionTasksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCustomerGatewaysRequest' => [ 'base' => '

Contains the parameters for DescribeCustomerGateways.

', 'refs' => [], ], 'DescribeCustomerGatewaysResult' => [ 'base' => '

Contains the output of DescribeCustomerGateways.

', 'refs' => [], ], 'DescribeDhcpOptionsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeDhcpOptionsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeDhcpOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDhcpOptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeEgressOnlyInternetGatewaysMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeEgressOnlyInternetGatewaysRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeEgressOnlyInternetGatewaysRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeEgressOnlyInternetGatewaysResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeElasticGpusMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeElasticGpusRequest$MaxResults' => '

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value. This value can be between 5 and 1000.

', ], ], 'DescribeElasticGpusRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeElasticGpusResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeExportImageTasksMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeExportImageTasksRequest$MaxResults' => '

The maximum number of results to return in a single call.

', ], ], 'DescribeExportImageTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeExportImageTasksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeExportTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeExportTasksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFastLaunchImagesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFastLaunchImagesRequestMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeFastLaunchImagesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeFastLaunchImagesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFastLaunchImagesSuccessItem' => [ 'base' => '

Describe details about a Windows image with Windows fast launch enabled that meets the requested criteria. Criteria are defined by the DescribeFastLaunchImages action filters.

', 'refs' => [ 'DescribeFastLaunchImagesSuccessSet$member' => NULL, ], ], 'DescribeFastLaunchImagesSuccessSet' => [ 'base' => NULL, 'refs' => [ 'DescribeFastLaunchImagesResult$FastLaunchImages' => '

A collection of details about the fast-launch enabled Windows images that meet the requested criteria.

', ], ], 'DescribeFastSnapshotRestoreSuccessItem' => [ 'base' => '

Describes fast snapshot restores for a snapshot.

', 'refs' => [ 'DescribeFastSnapshotRestoreSuccessSet$member' => NULL, ], ], 'DescribeFastSnapshotRestoreSuccessSet' => [ 'base' => NULL, 'refs' => [ 'DescribeFastSnapshotRestoresResult$FastSnapshotRestores' => '

Information about the state of fast snapshot restores.

', ], ], 'DescribeFastSnapshotRestoresMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeFastSnapshotRestoresRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeFastSnapshotRestoresRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFastSnapshotRestoresResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFleetError' => [ 'base' => '

Describes the instances that could not be launched by the fleet.

', 'refs' => [ 'DescribeFleetsErrorSet$member' => NULL, ], ], 'DescribeFleetHistoryRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFleetHistoryResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFleetInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFleetInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFleetsErrorSet' => [ 'base' => NULL, 'refs' => [ 'FleetData$Errors' => '

Information about the instances that could not be launched by the fleet. Valid only when Type is set to instant.

', ], ], 'DescribeFleetsInstances' => [ 'base' => '

Describes the instances that were launched by the fleet.

', 'refs' => [ 'DescribeFleetsInstancesSet$member' => NULL, ], ], 'DescribeFleetsInstancesSet' => [ 'base' => NULL, 'refs' => [ 'FleetData$Instances' => '

Information about the instances that were launched by the fleet. Valid only when Type is set to instant.

', ], ], 'DescribeFleetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFleetsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFlowLogsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFlowLogsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFpgaImageAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFpgaImageAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFpgaImagesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeFpgaImagesRequest$MaxResults' => '

The maximum number of results to return in a single call.

', ], ], 'DescribeFpgaImagesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFpgaImagesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeHostReservationOfferingsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeHostReservationOfferingsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeHostReservationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeHostReservationOfferingsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the returned nextToken value. This value can be between 5 and 500. If maxResults is given a larger value than 500, you receive an error.

', ], ], 'DescribeHostReservationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeHostReservationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeHostsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeHostsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIamInstanceProfileAssociationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeIamInstanceProfileAssociationsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeIamInstanceProfileAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIamInstanceProfileAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIdFormatRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIdFormatResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIdentityIdFormatRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIdentityIdFormatResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeImageAttributeRequest' => [ 'base' => '

Contains the parameters for DescribeImageAttribute.

', 'refs' => [], ], 'DescribeImagesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeImagesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeImportImageTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeImportImageTasksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeImportSnapshotTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeImportSnapshotTasksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceConnectEndpointsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceConnectEndpointsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceCreditSpecificationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceCreditSpecificationsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

You cannot specify this parameter and the instance IDs parameter in the same call.

', ], ], 'DescribeInstanceCreditSpecificationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceCreditSpecificationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceEventNotificationAttributesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceEventNotificationAttributesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceEventWindowsRequest' => [ 'base' => 'Describe instance event windows by InstanceEventWindow.', 'refs' => [], ], 'DescribeInstanceEventWindowsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceStatusRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceStatusResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceTopologyGroupNameSet' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTopologyRequest$GroupNames' => '

The name of the placement group that each instance is in.

Constraints: Maximum 100 explicitly specified placement group names.

', ], ], 'DescribeInstanceTopologyInstanceIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTopologyRequest$InstanceIds' => '

The instance IDs.

Default: Describes all your instances.

Constraints: Maximum 100 explicitly specified instance IDs.

', ], ], 'DescribeInstanceTopologyMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTopologyRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

You can\'t specify this parameter and the instance IDs parameter in the same request.

Default: 20

', ], ], 'DescribeInstanceTopologyRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceTopologyResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceTypeOfferingsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceTypeOfferingsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceTypesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceTypesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInternetGatewaysMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeInternetGatewaysRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeInternetGatewaysRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInternetGatewaysResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamByoasnMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeIpamByoasnRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'DescribeIpamByoasnRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamByoasnResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamPoolsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamPoolsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamResourceDiscoveriesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamResourceDiscoveriesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamResourceDiscoveryAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamResourceDiscoveryAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamScopesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamScopesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpv6PoolsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpv6PoolsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeKeyPairsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeKeyPairsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLaunchTemplateVersionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLaunchTemplateVersionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLaunchTemplatesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeLaunchTemplatesRequest$MaxResults' => '

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value. This value can be between 1 and 200.

', ], ], 'DescribeLaunchTemplatesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLaunchTemplatesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayRouteTableVpcAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayRouteTableVpcAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayRouteTablesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayRouteTablesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayVirtualInterfaceGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayVirtualInterfaceGroupsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayVirtualInterfacesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayVirtualInterfacesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewaysRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewaysResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLockedSnapshotsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeLockedSnapshotsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeLockedSnapshotsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLockedSnapshotsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeManagedPrefixListsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeManagedPrefixListsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeMovingAddressesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeMovingAddressesRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results of the initial request can be seen by sending another request with the returned NextToken value. This value can be between 5 and 1000; if MaxResults is given a value outside of this range, an error is returned.

Default: If no value is provided, the default is 1000.

', ], ], 'DescribeMovingAddressesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeMovingAddressesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNatGatewaysMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeNatGatewaysRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeNatGatewaysRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNatGatewaysResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkAclsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkAclsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeNetworkAclsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkAclsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInsightsAccessScopeAnalysesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInsightsAccessScopeAnalysesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInsightsAccessScopesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInsightsAccessScopesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInsightsAnalysesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInsightsAnalysesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInsightsPathsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInsightsPathsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInterfaceAttributeRequest' => [ 'base' => '

Contains the parameters for DescribeNetworkInterfaceAttribute.

', 'refs' => [], ], 'DescribeNetworkInterfaceAttributeResult' => [ 'base' => '

Contains the output of DescribeNetworkInterfaceAttribute.

', 'refs' => [], ], 'DescribeNetworkInterfacePermissionsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInterfacePermissionsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. If this parameter is not specified, up to 50 results are returned by default. For more information, see Pagination.

', ], ], 'DescribeNetworkInterfacePermissionsRequest' => [ 'base' => '

Contains the parameters for DescribeNetworkInterfacePermissions.

', 'refs' => [], ], 'DescribeNetworkInterfacePermissionsResult' => [ 'base' => '

Contains the output for DescribeNetworkInterfacePermissions.

', 'refs' => [], ], 'DescribeNetworkInterfacesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInterfacesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. You cannot specify this parameter and the network interface IDs parameter in the same request. For more information, see Pagination.

', ], ], 'DescribeNetworkInterfacesRequest' => [ 'base' => '

Contains the parameters for DescribeNetworkInterfaces.

', 'refs' => [], ], 'DescribeNetworkInterfacesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribePlacementGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribePlacementGroupsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribePrefixListsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribePrefixListsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribePrincipalIdFormatMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribePrincipalIdFormatRequest$MaxResults' => '

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value.

', ], ], 'DescribePrincipalIdFormatRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribePrincipalIdFormatResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribePublicIpv4PoolsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribePublicIpv4PoolsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeRegionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeRegionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeReplaceRootVolumeTasksMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeReplaceRootVolumeTasksRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeReplaceRootVolumeTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeReplaceRootVolumeTasksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeReservedInstancesListingsRequest' => [ 'base' => '

Contains the parameters for DescribeReservedInstancesListings.

', 'refs' => [], ], 'DescribeReservedInstancesListingsResult' => [ 'base' => '

Contains the output of DescribeReservedInstancesListings.

', 'refs' => [], ], 'DescribeReservedInstancesModificationsRequest' => [ 'base' => '

Contains the parameters for DescribeReservedInstancesModifications.

', 'refs' => [], ], 'DescribeReservedInstancesModificationsResult' => [ 'base' => '

Contains the output of DescribeReservedInstancesModifications.

', 'refs' => [], ], 'DescribeReservedInstancesOfferingsRequest' => [ 'base' => '

Contains the parameters for DescribeReservedInstancesOfferings.

', 'refs' => [], ], 'DescribeReservedInstancesOfferingsResult' => [ 'base' => '

Contains the output of DescribeReservedInstancesOfferings.

', 'refs' => [], ], 'DescribeReservedInstancesRequest' => [ 'base' => '

Contains the parameters for DescribeReservedInstances.

', 'refs' => [], ], 'DescribeReservedInstancesResult' => [ 'base' => '

Contains the output for DescribeReservedInstances.

', 'refs' => [], ], 'DescribeRouteTablesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeRouteTablesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeRouteTablesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeRouteTablesResult' => [ 'base' => '

Contains the output of DescribeRouteTables.

', 'refs' => [], ], 'DescribeScheduledInstanceAvailabilityMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeScheduledInstanceAvailabilityRequest$MaxResults' => '

The maximum number of results to return in a single call. This value can be between 5 and 300. The default value is 300. To retrieve the remaining results, make another call with the returned NextToken value.

', ], ], 'DescribeScheduledInstanceAvailabilityRequest' => [ 'base' => '

Contains the parameters for DescribeScheduledInstanceAvailability.

', 'refs' => [], ], 'DescribeScheduledInstanceAvailabilityResult' => [ 'base' => '

Contains the output of DescribeScheduledInstanceAvailability.

', 'refs' => [], ], 'DescribeScheduledInstancesRequest' => [ 'base' => '

Contains the parameters for DescribeScheduledInstances.

', 'refs' => [], ], 'DescribeScheduledInstancesResult' => [ 'base' => '

Contains the output of DescribeScheduledInstances.

', 'refs' => [], ], 'DescribeSecurityGroupReferencesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSecurityGroupReferencesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSecurityGroupRulesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeSecurityGroupRulesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. This value can be between 5 and 1000. If this parameter is not specified, then all items are returned. For more information, see Pagination.

', ], ], 'DescribeSecurityGroupRulesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSecurityGroupRulesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSecurityGroupsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeSecurityGroupsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. This value can be between 5 and 1000. If this parameter is not specified, then all items are returned. For more information, see Pagination.

', ], ], 'DescribeSecurityGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSecurityGroupsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSnapshotAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSnapshotAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSnapshotTierStatusMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeSnapshotTierStatusRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeSnapshotTierStatusRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSnapshotTierStatusResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSnapshotsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSnapshotsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSpotDatafeedSubscriptionRequest' => [ 'base' => '

Contains the parameters for DescribeSpotDatafeedSubscription.

', 'refs' => [], ], 'DescribeSpotDatafeedSubscriptionResult' => [ 'base' => '

Contains the output of DescribeSpotDatafeedSubscription.

', 'refs' => [], ], 'DescribeSpotFleetInstancesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotFleetInstancesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeSpotFleetInstancesRequest' => [ 'base' => '

Contains the parameters for DescribeSpotFleetInstances.

', 'refs' => [], ], 'DescribeSpotFleetInstancesResponse' => [ 'base' => '

Contains the output of DescribeSpotFleetInstances.

', 'refs' => [], ], 'DescribeSpotFleetRequestHistoryMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotFleetRequestHistoryRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeSpotFleetRequestHistoryRequest' => [ 'base' => '

Contains the parameters for DescribeSpotFleetRequestHistory.

', 'refs' => [], ], 'DescribeSpotFleetRequestHistoryResponse' => [ 'base' => '

Contains the output of DescribeSpotFleetRequestHistory.

', 'refs' => [], ], 'DescribeSpotFleetRequestsRequest' => [ 'base' => '

Contains the parameters for DescribeSpotFleetRequests.

', 'refs' => [], ], 'DescribeSpotFleetRequestsResponse' => [ 'base' => '

Contains the output of DescribeSpotFleetRequests.

', 'refs' => [], ], 'DescribeSpotInstanceRequestsRequest' => [ 'base' => '

Contains the parameters for DescribeSpotInstanceRequests.

', 'refs' => [], ], 'DescribeSpotInstanceRequestsResult' => [ 'base' => '

Contains the output of DescribeSpotInstanceRequests.

', 'refs' => [], ], 'DescribeSpotPriceHistoryRequest' => [ 'base' => '

Contains the parameters for DescribeSpotPriceHistory.

', 'refs' => [], ], 'DescribeSpotPriceHistoryResult' => [ 'base' => '

Contains the output of DescribeSpotPriceHistory.

', 'refs' => [], ], 'DescribeStaleSecurityGroupsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeStaleSecurityGroupsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeStaleSecurityGroupsNextToken' => [ 'base' => NULL, 'refs' => [ 'DescribeStaleSecurityGroupsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', ], ], 'DescribeStaleSecurityGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeStaleSecurityGroupsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeStoreImageTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeStoreImageTasksRequestMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeStoreImageTasksRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

You cannot specify this parameter and the ImageIds parameter in the same call.

', ], ], 'DescribeStoreImageTasksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSubnetsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeSubnetsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeSubnetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSubnetsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTagsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTagsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTrafficMirrorFiltersRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTrafficMirrorFiltersResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTrafficMirrorSessionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTrafficMirrorSessionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTrafficMirrorTargetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTrafficMirrorTargetsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayAttachmentsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayAttachmentsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayConnectPeersRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayConnectPeersResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayConnectsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayConnectsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayMulticastDomainsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayMulticastDomainsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayPeeringAttachmentsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayPeeringAttachmentsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayPolicyTablesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayPolicyTablesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayRouteTableAnnouncementsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayRouteTableAnnouncementsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayRouteTablesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayRouteTablesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayVpcAttachmentsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayVpcAttachmentsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewaysRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewaysResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTrunkInterfaceAssociationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeTrunkInterfaceAssociationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'DescribeTrunkInterfaceAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTrunkInterfaceAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessEndpointsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessEndpointsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'DescribeVerifiedAccessEndpointsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessEndpointsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessGroupMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessGroupsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'DescribeVerifiedAccessGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessGroupsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessInstanceLoggingConfigurationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessInstanceLoggingConfigurationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'DescribeVerifiedAccessInstanceLoggingConfigurationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessInstanceLoggingConfigurationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessInstancesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessInstancesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'DescribeVerifiedAccessInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessTrustProvidersMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessTrustProvidersRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'DescribeVerifiedAccessTrustProvidersRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessTrustProvidersResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVolumeAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVolumeAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVolumeStatusRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVolumeStatusResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVolumesModificationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVolumesModificationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVolumesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVolumesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcClassicLinkDnsSupportMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcClassicLinkDnsSupportRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeVpcClassicLinkDnsSupportNextToken' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcClassicLinkDnsSupportRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeVpcClassicLinkDnsSupportResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', ], ], 'DescribeVpcClassicLinkDnsSupportRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcClassicLinkDnsSupportResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcClassicLinkRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcClassicLinkResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointConnectionNotificationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointConnectionNotificationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointConnectionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointConnectionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointServiceConfigurationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointServiceConfigurationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointServicePermissionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointServicePermissionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointServicesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointServicesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcPeeringConnectionsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcPeeringConnectionsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeVpcPeeringConnectionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcPeeringConnectionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeVpcsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpnConnectionsRequest' => [ 'base' => '

Contains the parameters for DescribeVpnConnections.

', 'refs' => [], ], 'DescribeVpnConnectionsResult' => [ 'base' => '

Contains the output of DescribeVpnConnections.

', 'refs' => [], ], 'DescribeVpnGatewaysRequest' => [ 'base' => '

Contains the parameters for DescribeVpnGateways.

', 'refs' => [], ], 'DescribeVpnGatewaysResult' => [ 'base' => '

Contains the output of DescribeVpnGateways.

', 'refs' => [], ], 'DestinationFileFormat' => [ 'base' => NULL, 'refs' => [ 'DestinationOptionsRequest$FileFormat' => '

The format for the flow log. The default is plain-text.

', 'DestinationOptionsResponse$FileFormat' => '

The format for the flow log.

', ], ], 'DestinationOptionsRequest' => [ 'base' => '

Describes the destination options for a flow log.

', 'refs' => [ 'CreateFlowLogsRequest$DestinationOptions' => '

The destination options.

', ], ], 'DestinationOptionsResponse' => [ 'base' => '

Describes the destination options for a flow log.

', 'refs' => [ 'FlowLog$DestinationOptions' => '

The destination options.

', ], ], 'DetachClassicLinkVpcRequest' => [ 'base' => NULL, 'refs' => [], ], 'DetachClassicLinkVpcResult' => [ 'base' => NULL, 'refs' => [], ], 'DetachInternetGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'DetachNetworkInterfaceRequest' => [ 'base' => '

Contains the parameters for DetachNetworkInterface.

', 'refs' => [], ], 'DetachVerifiedAccessTrustProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'DetachVerifiedAccessTrustProviderResult' => [ 'base' => NULL, 'refs' => [], ], 'DetachVolumeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DetachVpnGatewayRequest' => [ 'base' => '

Contains the parameters for DetachVpnGateway.

', 'refs' => [], ], 'DeviceOptions' => [ 'base' => '

Describes the options for an Amazon Web Services Verified Access device-identity based trust provider.

', 'refs' => [ 'VerifiedAccessTrustProvider$DeviceOptions' => '

The options for device-identity trust provider.

', ], ], 'DeviceTrustProviderType' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessTrustProviderRequest$DeviceTrustProviderType' => '

The type of device-based trust provider. This parameter is required when the provider type is device.

', 'VerifiedAccessTrustProvider$DeviceTrustProviderType' => '

The type of device-based trust provider.

', 'VerifiedAccessTrustProviderCondensed$DeviceTrustProviderType' => '

The type of device-based trust provider.

', ], ], 'DeviceType' => [ 'base' => NULL, 'refs' => [ 'Image$RootDeviceType' => '

The type of root device used by the AMI. The AMI can use an Amazon EBS volume or an instance store volume.

', 'Instance$RootDeviceType' => '

The root device type used by the AMI. The AMI can use an EBS volume or an instance store volume.

', ], ], 'DhcpConfiguration' => [ 'base' => '

Describes a DHCP configuration option.

', 'refs' => [ 'DhcpConfigurationList$member' => NULL, ], ], 'DhcpConfigurationList' => [ 'base' => NULL, 'refs' => [ 'DhcpOptions$DhcpConfigurations' => '

The DHCP options in the set.

', ], ], 'DhcpConfigurationValueList' => [ 'base' => NULL, 'refs' => [ 'DhcpConfiguration$Values' => '

The values for the DHCP option.

', ], ], 'DhcpOptions' => [ 'base' => '

The set of DHCP options.

', 'refs' => [ 'CreateDhcpOptionsResult$DhcpOptions' => '

A set of DHCP options.

', 'DhcpOptionsList$member' => NULL, ], ], 'DhcpOptionsId' => [ 'base' => NULL, 'refs' => [ 'DeleteDhcpOptionsRequest$DhcpOptionsId' => '

The ID of the DHCP options set.

', 'DhcpOptionsIdStringList$member' => NULL, ], ], 'DhcpOptionsIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeDhcpOptionsRequest$DhcpOptionsIds' => '

The IDs of one or more DHCP options sets.

Default: Describes all your DHCP options sets.

', ], ], 'DhcpOptionsList' => [ 'base' => NULL, 'refs' => [ 'DescribeDhcpOptionsResult$DhcpOptions' => '

Information about one or more DHCP options sets.

', ], ], 'DirectoryServiceAuthentication' => [ 'base' => '

Describes an Active Directory.

', 'refs' => [ 'ClientVpnAuthentication$ActiveDirectory' => '

Information about the Active Directory, if applicable.

', ], ], 'DirectoryServiceAuthenticationRequest' => [ 'base' => '

Describes the Active Directory to be used for client authentication.

', 'refs' => [ 'ClientVpnAuthenticationRequest$ActiveDirectory' => '

Information about the Active Directory to be used, if applicable. You must provide this information if Type is directory-service-authentication.

', ], ], 'DisableAddressTransferRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableAddressTransferResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableAwsNetworkPerformanceMetricSubscriptionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableAwsNetworkPerformanceMetricSubscriptionResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableEbsEncryptionByDefaultRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableEbsEncryptionByDefaultResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableFastLaunchRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableFastLaunchResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableFastSnapshotRestoreErrorItem' => [ 'base' => '

Contains information about the errors that occurred when disabling fast snapshot restores.

', 'refs' => [ 'DisableFastSnapshotRestoreErrorSet$member' => NULL, ], ], 'DisableFastSnapshotRestoreErrorSet' => [ 'base' => NULL, 'refs' => [ 'DisableFastSnapshotRestoresResult$Unsuccessful' => '

Information about the snapshots for which fast snapshot restores could not be disabled.

', ], ], 'DisableFastSnapshotRestoreStateError' => [ 'base' => '

Describes an error that occurred when disabling fast snapshot restores.

', 'refs' => [ 'DisableFastSnapshotRestoreStateErrorItem$Error' => '

The error.

', ], ], 'DisableFastSnapshotRestoreStateErrorItem' => [ 'base' => '

Contains information about an error that occurred when disabling fast snapshot restores.

', 'refs' => [ 'DisableFastSnapshotRestoreStateErrorSet$member' => NULL, ], ], 'DisableFastSnapshotRestoreStateErrorSet' => [ 'base' => NULL, 'refs' => [ 'DisableFastSnapshotRestoreErrorItem$FastSnapshotRestoreStateErrors' => '

The errors.

', ], ], 'DisableFastSnapshotRestoreSuccessItem' => [ 'base' => '

Describes fast snapshot restores that were successfully disabled.

', 'refs' => [ 'DisableFastSnapshotRestoreSuccessSet$member' => NULL, ], ], 'DisableFastSnapshotRestoreSuccessSet' => [ 'base' => NULL, 'refs' => [ 'DisableFastSnapshotRestoresResult$Successful' => '

Information about the snapshots for which fast snapshot restores were successfully disabled.

', ], ], 'DisableFastSnapshotRestoresRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableFastSnapshotRestoresResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableImageBlockPublicAccessRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableImageBlockPublicAccessResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableImageDeprecationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableImageDeprecationResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableImageRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableImageResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableIpamOrganizationAdminAccountRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableIpamOrganizationAdminAccountResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableSerialConsoleAccessRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableSerialConsoleAccessResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableSnapshotBlockPublicAccessRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableSnapshotBlockPublicAccessResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableTransitGatewayRouteTablePropagationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableTransitGatewayRouteTablePropagationResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableVgwRoutePropagationRequest' => [ 'base' => '

Contains the parameters for DisableVgwRoutePropagation.

', 'refs' => [], ], 'DisableVpcClassicLinkDnsSupportRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableVpcClassicLinkDnsSupportResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableVpcClassicLinkRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableVpcClassicLinkResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateAddressRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateClientVpnTargetNetworkRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateClientVpnTargetNetworkResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateEnclaveCertificateIamRoleRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateEnclaveCertificateIamRoleResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateIamInstanceProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateIamInstanceProfileResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateInstanceEventWindowRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateInstanceEventWindowResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateIpamByoasnRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateIpamByoasnResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateIpamResourceDiscoveryRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateIpamResourceDiscoveryResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateNatGatewayAddressRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateNatGatewayAddressResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateSubnetCidrBlockRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateSubnetCidrBlockResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateTransitGatewayMulticastDomainRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateTransitGatewayMulticastDomainResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateTransitGatewayPolicyTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateTransitGatewayPolicyTableResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateTransitGatewayRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateTransitGatewayRouteTableResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateTrunkInterfaceRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateTrunkInterfaceResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateVpcCidrBlockRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateVpcCidrBlockResult' => [ 'base' => NULL, 'refs' => [], ], 'DiskCount' => [ 'base' => NULL, 'refs' => [ 'DiskInfo$Count' => '

The number of disks with this configuration.

', ], ], 'DiskImage' => [ 'base' => '

Describes a disk image.

', 'refs' => [ 'DiskImageList$member' => NULL, ], ], 'DiskImageDescription' => [ 'base' => '

Describes a disk image.

', 'refs' => [ 'ImportInstanceVolumeDetailItem$Image' => '

The image.

', 'ImportVolumeTaskDetails$Image' => '

The image.

', ], ], 'DiskImageDetail' => [ 'base' => '

Describes a disk image.

', 'refs' => [ 'DiskImage$Image' => '

Information about the disk image.

', 'ImportVolumeRequest$Image' => '

The disk image.

', ], ], 'DiskImageFormat' => [ 'base' => NULL, 'refs' => [ 'DiskImageDescription$Format' => '

The disk image format.

', 'DiskImageDetail$Format' => '

The disk image format.

', 'ExportImageRequest$DiskImageFormat' => '

The disk image format.

', 'ExportImageResult$DiskImageFormat' => '

The disk image format for the exported image.

', 'ExportToS3Task$DiskImageFormat' => '

The format for the exported image.

', 'ExportToS3TaskSpecification$DiskImageFormat' => '

The format for the exported image.

', ], ], 'DiskImageList' => [ 'base' => NULL, 'refs' => [ 'ImportInstanceRequest$DiskImages' => '

The disk image.

', ], ], 'DiskImageVolumeDescription' => [ 'base' => '

Describes a disk image volume.

', 'refs' => [ 'ImportInstanceVolumeDetailItem$Volume' => '

The volume.

', 'ImportVolumeTaskDetails$Volume' => '

The volume.

', ], ], 'DiskInfo' => [ 'base' => '

Describes a disk.

', 'refs' => [ 'DiskInfoList$member' => NULL, ], ], 'DiskInfoList' => [ 'base' => NULL, 'refs' => [ 'InstanceStorageInfo$Disks' => '

Describes the disks that are available for the instance type.

', ], ], 'DiskSize' => [ 'base' => NULL, 'refs' => [ 'DiskInfo$SizeInGB' => '

The size of the disk in GB.

', 'InstanceStorageInfo$TotalSizeInGB' => '

The total size of the disks, in GB.

', ], ], 'DiskType' => [ 'base' => NULL, 'refs' => [ 'DiskInfo$Type' => '

The type of disk.

', ], ], 'DnsEntry' => [ 'base' => '

Describes a DNS entry.

', 'refs' => [ 'DnsEntrySet$member' => NULL, ], ], 'DnsEntrySet' => [ 'base' => NULL, 'refs' => [ 'VpcEndpoint$DnsEntries' => '

(Interface endpoint) The DNS entries for the endpoint.

', 'VpcEndpointConnection$DnsEntries' => '

The DNS entries for the VPC endpoint.

', ], ], 'DnsNameState' => [ 'base' => NULL, 'refs' => [ 'PrivateDnsNameConfiguration$State' => '

The verification state of the VPC endpoint service.

>Consumers of the endpoint service can use the private name only when the state is verified.

', 'ServiceDetail$PrivateDnsNameVerificationState' => '

The verification state of the VPC endpoint service.

Consumers of the endpoint service cannot use the private name when the state is not verified.

', ], ], 'DnsOptions' => [ 'base' => '

Describes the DNS options for an endpoint.

', 'refs' => [ 'VpcEndpoint$DnsOptions' => '

The DNS options for the endpoint.

', ], ], 'DnsOptionsSpecification' => [ 'base' => '

Describes the DNS options for an endpoint.

', 'refs' => [ 'CreateVpcEndpointRequest$DnsOptions' => '

The DNS options for the endpoint.

', 'ModifyVpcEndpointRequest$DnsOptions' => '

The DNS options for the endpoint.

', ], ], 'DnsRecordIpType' => [ 'base' => NULL, 'refs' => [ 'DnsOptions$DnsRecordIpType' => '

The DNS records created for the endpoint.

', 'DnsOptionsSpecification$DnsRecordIpType' => '

The DNS records created for the endpoint.

', ], ], 'DnsServersOptionsModifyStructure' => [ 'base' => '

Information about the DNS server to be used.

', 'refs' => [ 'ModifyClientVpnEndpointRequest$DnsServers' => '

Information about the DNS servers to be used by Client VPN connections. A Client VPN endpoint can have up to two DNS servers.

', ], ], 'DnsSupportValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayVpcAttachmentRequestOptions$DnsSupport' => '

Enable or disable DNS support. The default is enable.

', 'ModifyTransitGatewayOptions$DnsSupport' => '

Enable or disable DNS support.

', 'ModifyTransitGatewayVpcAttachmentRequestOptions$DnsSupport' => '

Enable or disable DNS support. The default is enable.

', 'TransitGatewayOptions$DnsSupport' => '

Indicates whether DNS support is enabled.

', 'TransitGatewayRequestOptions$DnsSupport' => '

Enable or disable DNS support. Enabled by default.

', 'TransitGatewayVpcAttachmentOptions$DnsSupport' => '

Indicates whether DNS support is enabled.

', ], ], 'DomainType' => [ 'base' => NULL, 'refs' => [ 'Address$Domain' => '

The network (vpc).

', 'AllocateAddressRequest$Domain' => '

The network (vpc).

', 'AllocateAddressResult$Domain' => '

The network (vpc).

', ], ], 'Double' => [ 'base' => NULL, 'refs' => [ 'CapacityReservationFleet$TotalFulfilledCapacity' => '

The capacity units that have been fulfilled.

', 'ClientData$UploadSize' => '

The size of the uploaded disk image, in GiB.

', 'CreateCapacityReservationFleetResult$TotalFulfilledCapacity' => '

The requested capacity units that have been successfully reserved.

', 'FleetCapacityReservation$FulfilledCapacity' => '

The number of capacity units fulfilled by the Capacity Reservation. For more information, see Total target capacity in the Amazon EC2 User Guide.

', 'FleetData$FulfilledCapacity' => '

The number of units fulfilled by this request compared to the set target capacity.

', 'FleetData$FulfilledOnDemandCapacity' => '

The number of units fulfilled by this request compared to the set target On-Demand capacity.

', 'FleetLaunchTemplateOverrides$WeightedCapacity' => '

The number of units provided by the specified instance type.

', 'FleetLaunchTemplateOverrides$Priority' => '

The priority for the launch template override. The highest priority is launched first.

If the On-Demand AllocationStrategy is set to prioritized, EC2 Fleet uses priority to determine which launch template override to use first in fulfilling On-Demand capacity.

If the Spot AllocationStrategy is set to capacity-optimized-prioritized, EC2 Fleet uses priority on a best-effort basis to determine which launch template override to use in fulfilling Spot capacity, but optimizes for capacity first.

Valid values are whole numbers starting at 0. The lower the number, the higher the priority. If no number is set, the override has the lowest priority. You can set the same priority for different launch template overrides.

', 'FleetLaunchTemplateOverridesRequest$WeightedCapacity' => '

The number of units provided by the specified instance type.

', 'FleetLaunchTemplateOverridesRequest$Priority' => '

The priority for the launch template override. The highest priority is launched first.

If the On-Demand AllocationStrategy is set to prioritized, EC2 Fleet uses priority to determine which launch template override to use first in fulfilling On-Demand capacity.

If the Spot AllocationStrategy is set to capacity-optimized-prioritized, EC2 Fleet uses priority on a best-effort basis to determine which launch template override to use in fulfilling Spot capacity, but optimizes for capacity first.

Valid values are whole numbers starting at 0. The lower the number, the higher the priority. If no number is set, the launch template override has the lowest priority. You can set the same priority for different launch template overrides.

', 'LaunchTemplateOverrides$WeightedCapacity' => '

The number of units provided by the specified instance type.

', 'LaunchTemplateOverrides$Priority' => '

The priority for the launch template override. The highest priority is launched first.

If OnDemandAllocationStrategy is set to prioritized, Spot Fleet uses priority to determine which launch template override to use first in fulfilling On-Demand capacity.

If the Spot AllocationStrategy is set to capacityOptimizedPrioritized, Spot Fleet uses priority on a best-effort basis to determine which launch template override to use in fulfilling Spot capacity, but optimizes for capacity first.

Valid values are whole numbers starting at 0. The lower the number, the higher the priority. If no number is set, the launch template override has the lowest priority. You can set the same priority for different launch template overrides.

', 'MemoryGiBPerVCpu$Min' => '

The minimum amount of memory per vCPU, in GiB. If this parameter is not specified, there is no minimum limit.

', 'MemoryGiBPerVCpu$Max' => '

The maximum amount of memory per vCPU, in GiB. If this parameter is not specified, there is no maximum limit.

', 'MemoryGiBPerVCpuRequest$Min' => '

The minimum amount of memory per vCPU, in GiB. To specify no minimum limit, omit this parameter.

', 'MemoryGiBPerVCpuRequest$Max' => '

The maximum amount of memory per vCPU, in GiB. To specify no maximum limit, omit this parameter.

', 'NetworkBandwidthGbps$Min' => '

The minimum amount of network bandwidth, in Gbps. If this parameter is not specified, there is no minimum limit.

', 'NetworkBandwidthGbps$Max' => '

The maximum amount of network bandwidth, in Gbps. If this parameter is not specified, there is no maximum limit.

', 'NetworkBandwidthGbpsRequest$Min' => '

The minimum amount of network bandwidth, in Gbps. To specify no minimum limit, omit this parameter.

', 'NetworkBandwidthGbpsRequest$Max' => '

The maximum amount of network bandwidth, in Gbps. To specify no maximum limit, omit this parameter.

', 'PriceSchedule$Price' => '

The fixed price for the term.

', 'PriceScheduleSpecification$Price' => '

The fixed price for the term.

', 'PricingDetail$Price' => '

The price per instance.

', 'RecurringCharge$Amount' => '

The amount of the recurring charge.

', 'ReservedInstanceLimitPrice$Amount' => '

Used for Reserved Instance Marketplace offerings. Specifies the limit price on the total order (instanceCount * price).

', 'SnapshotDetail$DiskImageSize' => '

The size of the disk in the snapshot, in GiB.

', 'SnapshotTaskDetail$DiskImageSize' => '

The size of the disk in the snapshot, in GiB.

', 'SpotFleetLaunchSpecification$WeightedCapacity' => '

The number of units provided by the specified instance type. These are the same units that you chose to set the target capacity in terms of instances, or a performance characteristic such as vCPUs, memory, or I/O.

If the target capacity divided by this value is not a whole number, Amazon EC2 rounds the number of instances to the next whole number. If this value is not specified, the default is 1.

', 'SpotFleetRequestConfigData$FulfilledCapacity' => '

The number of units fulfilled by this request compared to the set target capacity. You cannot set this value.

', 'SpotFleetRequestConfigData$OnDemandFulfilledCapacity' => '

The number of On-Demand units fulfilled by this request compared to the set target On-Demand capacity.

', 'TotalLocalStorageGB$Min' => '

The minimum amount of total local storage, in GB. If this parameter is not specified, there is no minimum limit.

', 'TotalLocalStorageGB$Max' => '

The maximum amount of total local storage, in GB. If this parameter is not specified, there is no maximum limit.

', 'TotalLocalStorageGBRequest$Min' => '

The minimum amount of total local storage, in GB. To specify no minimum limit, omit this parameter.

', 'TotalLocalStorageGBRequest$Max' => '

The maximum amount of total local storage, in GB. To specify no maximum limit, omit this parameter.

', ], ], 'DoubleWithConstraints' => [ 'base' => NULL, 'refs' => [ 'FleetCapacityReservation$Weight' => '

The weight of the instance type in the Capacity Reservation Fleet. For more information, see Instance type weight in the Amazon EC2 User Guide.

', 'ReservationFleetInstanceSpecification$Weight' => '

The number of capacity units provided by the specified instance type. This value, together with the total target capacity that you specify for the Fleet determine the number of instances for which the Fleet reserves capacity. Both values are based on units that make sense for your workload. For more information, see Total target capacity in the Amazon EC2 User Guide.

', ], ], 'DrainSeconds' => [ 'base' => NULL, 'refs' => [ 'DisassociateNatGatewayAddressRequest$MaxDrainDurationSeconds' => '

The maximum amount of time to wait (in seconds) before forcibly releasing the IP addresses if connections are still in progress. Default value is 350 seconds.

', 'UnassignPrivateNatGatewayAddressRequest$MaxDrainDurationSeconds' => '

The maximum amount of time to wait (in seconds) before forcibly releasing the IP addresses if connections are still in progress. Default value is 350 seconds.

', ], ], 'DynamicRoutingValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayPeeringAttachmentRequestOptions$DynamicRouting' => '

Indicates whether dynamic routing is enabled or disabled.

', 'TransitGatewayPeeringAttachmentOptions$DynamicRouting' => '

Describes whether dynamic routing is enabled or disabled for the transit gateway peering attachment.

', ], ], 'EbsBlockDevice' => [ 'base' => '

Describes a block device for an EBS volume.

', 'refs' => [ 'BlockDeviceMapping$Ebs' => '

Parameters used to automatically set up EBS volumes when the instance is launched.

', ], ], 'EbsEncryptionSupport' => [ 'base' => NULL, 'refs' => [ 'EbsInfo$EncryptionSupport' => '

Indicates whether Amazon EBS encryption is supported.

', ], ], 'EbsInfo' => [ 'base' => '

Describes the Amazon EBS features supported by the instance type.

', 'refs' => [ 'InstanceTypeInfo$EbsInfo' => '

Describes the Amazon EBS settings for the instance type.

', ], ], 'EbsInstanceBlockDevice' => [ 'base' => '

Describes a parameter used to set up an EBS volume in a block device mapping.

', 'refs' => [ 'InstanceBlockDeviceMapping$Ebs' => '

Parameters used to automatically set up EBS volumes when the instance is launched.

', ], ], 'EbsInstanceBlockDeviceSpecification' => [ 'base' => '

Describes information used to set up an EBS volume specified in a block device mapping.

', 'refs' => [ 'InstanceBlockDeviceMappingSpecification$Ebs' => '

Parameters used to automatically set up EBS volumes when the instance is launched.

', ], ], 'EbsNvmeSupport' => [ 'base' => NULL, 'refs' => [ 'EbsInfo$NvmeSupport' => '

Indicates whether non-volatile memory express (NVMe) is supported.

', ], ], 'EbsOptimizedInfo' => [ 'base' => '

Describes the optimized EBS performance for supported instance types.

', 'refs' => [ 'EbsInfo$EbsOptimizedInfo' => '

Describes the optimized EBS performance for the instance type.

', ], ], 'EbsOptimizedSupport' => [ 'base' => NULL, 'refs' => [ 'EbsInfo$EbsOptimizedSupport' => '

Indicates whether the instance type is Amazon EBS-optimized. For more information, see Amazon EBS-optimized instances in Amazon EC2 User Guide.

', ], ], 'Ec2InstanceConnectEndpoint' => [ 'base' => '

The EC2 Instance Connect Endpoint.

', 'refs' => [ 'CreateInstanceConnectEndpointResult$InstanceConnectEndpoint' => '

Information about the EC2 Instance Connect Endpoint.

', 'DeleteInstanceConnectEndpointResult$InstanceConnectEndpoint' => '

Information about the EC2 Instance Connect Endpoint.

', 'InstanceConnectEndpointSet$member' => NULL, ], ], 'Ec2InstanceConnectEndpointState' => [ 'base' => NULL, 'refs' => [ 'Ec2InstanceConnectEndpoint$State' => '

The current state of the EC2 Instance Connect Endpoint.

', ], ], 'EfaInfo' => [ 'base' => '

Describes the Elastic Fabric Adapters for the instance type.

', 'refs' => [ 'NetworkInfo$EfaInfo' => '

Describes the Elastic Fabric Adapters for the instance type.

', ], ], 'EfaSupportedFlag' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$EfaSupported' => '

Indicates whether Elastic Fabric Adapter (EFA) is supported.

', ], ], 'EgressOnlyInternetGateway' => [ 'base' => '

Describes an egress-only internet gateway.

', 'refs' => [ 'CreateEgressOnlyInternetGatewayResult$EgressOnlyInternetGateway' => '

Information about the egress-only internet gateway.

', 'EgressOnlyInternetGatewayList$member' => NULL, ], ], 'EgressOnlyInternetGatewayId' => [ 'base' => NULL, 'refs' => [ 'CreateRouteRequest$EgressOnlyInternetGatewayId' => '

[IPv6 traffic only] The ID of an egress-only internet gateway.

', 'DeleteEgressOnlyInternetGatewayRequest$EgressOnlyInternetGatewayId' => '

The ID of the egress-only internet gateway.

', 'EgressOnlyInternetGateway$EgressOnlyInternetGatewayId' => '

The ID of the egress-only internet gateway.

', 'EgressOnlyInternetGatewayIdList$member' => NULL, 'ReplaceRouteRequest$EgressOnlyInternetGatewayId' => '

[IPv6 traffic only] The ID of an egress-only internet gateway.

', ], ], 'EgressOnlyInternetGatewayIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeEgressOnlyInternetGatewaysRequest$EgressOnlyInternetGatewayIds' => '

The IDs of the egress-only internet gateways.

', ], ], 'EgressOnlyInternetGatewayList' => [ 'base' => NULL, 'refs' => [ 'DescribeEgressOnlyInternetGatewaysResult$EgressOnlyInternetGateways' => '

Information about the egress-only internet gateways.

', ], ], 'EipAllocationPublicIp' => [ 'base' => NULL, 'refs' => [ 'AssociateAddressRequest$PublicIp' => '

Deprecated.

', 'DisassociateAddressRequest$PublicIp' => '

Deprecated.

', ], ], 'EipAssociationIdList' => [ 'base' => NULL, 'refs' => [ 'DisassociateNatGatewayAddressRequest$AssociationIds' => '

The association IDs of EIPs that have been associated with the NAT gateway.

', ], ], 'ElasticGpuAssociation' => [ 'base' => '

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

Describes the association between an instance and an Elastic Graphics accelerator.

', 'refs' => [ 'ElasticGpuAssociationList$member' => NULL, ], ], 'ElasticGpuAssociationList' => [ 'base' => NULL, 'refs' => [ 'Instance$ElasticGpuAssociations' => '

Deprecated.

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

', ], ], 'ElasticGpuHealth' => [ 'base' => '

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

Describes the status of an Elastic Graphics accelerator.

', 'refs' => [ 'ElasticGpus$ElasticGpuHealth' => '

The status of the Elastic Graphics accelerator.

', ], ], 'ElasticGpuId' => [ 'base' => NULL, 'refs' => [ 'ElasticGpuAssociation$ElasticGpuId' => '

The ID of the Elastic Graphics accelerator.

', 'ElasticGpuIdSet$member' => NULL, ], ], 'ElasticGpuIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeElasticGpusRequest$ElasticGpuIds' => '

The Elastic Graphics accelerator IDs.

', ], ], 'ElasticGpuSet' => [ 'base' => NULL, 'refs' => [ 'DescribeElasticGpusResult$ElasticGpuSet' => '

Information about the Elastic Graphics accelerators.

', ], ], 'ElasticGpuSpecification' => [ 'base' => '

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

A specification for an Elastic Graphics accelerator.

', 'refs' => [ 'ElasticGpuSpecificationList$member' => NULL, 'ElasticGpuSpecifications$member' => NULL, ], ], 'ElasticGpuSpecificationList' => [ 'base' => NULL, 'refs' => [ 'RequestLaunchTemplateData$ElasticGpuSpecifications' => '

Deprecated.

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

', ], ], 'ElasticGpuSpecificationResponse' => [ 'base' => '

Deprecated.

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

', 'refs' => [ 'ElasticGpuSpecificationResponseList$member' => NULL, ], ], 'ElasticGpuSpecificationResponseList' => [ 'base' => NULL, 'refs' => [ 'ResponseLaunchTemplateData$ElasticGpuSpecifications' => '

Deprecated.

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

', ], ], 'ElasticGpuSpecifications' => [ 'base' => NULL, 'refs' => [ 'RunInstancesRequest$ElasticGpuSpecification' => '

Deprecated.

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

', ], ], 'ElasticGpuState' => [ 'base' => NULL, 'refs' => [ 'ElasticGpus$ElasticGpuState' => '

The state of the Elastic Graphics accelerator.

', ], ], 'ElasticGpuStatus' => [ 'base' => NULL, 'refs' => [ 'ElasticGpuHealth$Status' => '

The health status.

', ], ], 'ElasticGpus' => [ 'base' => '

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

Describes an Elastic Graphics accelerator.

', 'refs' => [ 'ElasticGpuSet$member' => NULL, ], ], 'ElasticInferenceAccelerator' => [ 'base' => '

Describes an elastic inference accelerator.

', 'refs' => [ 'ElasticInferenceAccelerators$member' => NULL, ], ], 'ElasticInferenceAcceleratorAssociation' => [ 'base' => '

Describes the association between an instance and an elastic inference accelerator.

', 'refs' => [ 'ElasticInferenceAcceleratorAssociationList$member' => NULL, ], ], 'ElasticInferenceAcceleratorAssociationList' => [ 'base' => NULL, 'refs' => [ 'Instance$ElasticInferenceAcceleratorAssociations' => '

The elastic inference accelerator associated with the instance.

', ], ], 'ElasticInferenceAcceleratorCount' => [ 'base' => NULL, 'refs' => [ 'ElasticInferenceAccelerator$Count' => '

The number of elastic inference accelerators to attach to the instance.

Default: 1

', ], ], 'ElasticInferenceAccelerators' => [ 'base' => NULL, 'refs' => [ 'RunInstancesRequest$ElasticInferenceAccelerators' => '

An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.

You cannot specify accelerators from different generations in the same request.

Starting April 15, 2023, Amazon Web Services will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.

', ], ], 'ElasticIpAssociationId' => [ 'base' => NULL, 'refs' => [ 'DisassociateAddressRequest$AssociationId' => '

The association ID. This parameter is required.

', 'EipAssociationIdList$member' => NULL, ], ], 'EnaSrdSpecification' => [ 'base' => '

ENA Express uses Amazon Web Services Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled.

To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it.

', 'refs' => [ 'AttachNetworkInterfaceRequest$EnaSrdSpecification' => '

Configures ENA Express for the network interface that this action attaches to the instance.

', 'ModifyNetworkInterfaceAttributeRequest$EnaSrdSpecification' => '

Updates the ENA Express configuration for the network interface that’s attached to the instance.

', ], ], 'EnaSrdSpecificationRequest' => [ 'base' => '

Launch instances with ENA Express settings configured from your launch template.

', 'refs' => [ 'InstanceNetworkInterfaceSpecification$EnaSrdSpecification' => '

Specifies the ENA Express settings for the network interface that\'s attached to the instance.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$EnaSrdSpecification' => '

Configure ENA Express settings for your launch template.

', ], ], 'EnaSrdSupported' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$EnaSrdSupported' => '

Indicates whether the instance type supports ENA Express. ENA Express uses Amazon Web Services Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances.

', ], ], 'EnaSrdUdpSpecification' => [ 'base' => '

ENA Express is compatible with both TCP and UDP transport protocols. When it\'s enabled, TCP traffic automatically uses it. However, some UDP-based applications are designed to handle network packets that are out of order, without a need for retransmission, such as live video broadcasting or other near-real-time applications. For UDP traffic, you can specify whether to use ENA Express, based on your application environment needs.

', 'refs' => [ 'EnaSrdSpecification$EnaSrdUdpSpecification' => '

Configures ENA Express for UDP network traffic.

', ], ], 'EnaSrdUdpSpecificationRequest' => [ 'base' => '

Configures ENA Express for UDP network traffic from your launch template.

', 'refs' => [ 'EnaSrdSpecificationRequest$EnaSrdUdpSpecification' => '

Contains ENA Express settings for UDP network traffic in your launch template.

', ], ], 'EnaSupport' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$EnaSupport' => '

Indicates whether Elastic Network Adapter (ENA) is supported.

', ], ], 'EnableAddressTransferRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableAddressTransferResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableAwsNetworkPerformanceMetricSubscriptionRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableAwsNetworkPerformanceMetricSubscriptionResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableEbsEncryptionByDefaultRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableEbsEncryptionByDefaultResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableFastLaunchRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableFastLaunchResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableFastSnapshotRestoreErrorItem' => [ 'base' => '

Contains information about the errors that occurred when enabling fast snapshot restores.

', 'refs' => [ 'EnableFastSnapshotRestoreErrorSet$member' => NULL, ], ], 'EnableFastSnapshotRestoreErrorSet' => [ 'base' => NULL, 'refs' => [ 'EnableFastSnapshotRestoresResult$Unsuccessful' => '

Information about the snapshots for which fast snapshot restores could not be enabled.

', ], ], 'EnableFastSnapshotRestoreStateError' => [ 'base' => '

Describes an error that occurred when enabling fast snapshot restores.

', 'refs' => [ 'EnableFastSnapshotRestoreStateErrorItem$Error' => '

The error.

', ], ], 'EnableFastSnapshotRestoreStateErrorItem' => [ 'base' => '

Contains information about an error that occurred when enabling fast snapshot restores.

', 'refs' => [ 'EnableFastSnapshotRestoreStateErrorSet$member' => NULL, ], ], 'EnableFastSnapshotRestoreStateErrorSet' => [ 'base' => NULL, 'refs' => [ 'EnableFastSnapshotRestoreErrorItem$FastSnapshotRestoreStateErrors' => '

The errors.

', ], ], 'EnableFastSnapshotRestoreSuccessItem' => [ 'base' => '

Describes fast snapshot restores that were successfully enabled.

', 'refs' => [ 'EnableFastSnapshotRestoreSuccessSet$member' => NULL, ], ], 'EnableFastSnapshotRestoreSuccessSet' => [ 'base' => NULL, 'refs' => [ 'EnableFastSnapshotRestoresResult$Successful' => '

Information about the snapshots for which fast snapshot restores were successfully enabled.

', ], ], 'EnableFastSnapshotRestoresRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableFastSnapshotRestoresResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableImageBlockPublicAccessRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableImageBlockPublicAccessResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableImageDeprecationRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableImageDeprecationResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableImageRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableImageResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableIpamOrganizationAdminAccountRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableIpamOrganizationAdminAccountResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableReachabilityAnalyzerOrganizationSharingRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableReachabilityAnalyzerOrganizationSharingResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableSerialConsoleAccessRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableSerialConsoleAccessResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableSnapshotBlockPublicAccessRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableSnapshotBlockPublicAccessResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableTransitGatewayRouteTablePropagationRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableTransitGatewayRouteTablePropagationResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableVgwRoutePropagationRequest' => [ 'base' => '

Contains the parameters for EnableVgwRoutePropagation.

', 'refs' => [], ], 'EnableVolumeIORequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableVpcClassicLinkDnsSupportRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableVpcClassicLinkDnsSupportResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableVpcClassicLinkRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableVpcClassicLinkResult' => [ 'base' => NULL, 'refs' => [], ], 'EnclaveOptions' => [ 'base' => '

Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves.

', 'refs' => [ 'Instance$EnclaveOptions' => '

Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves.

', 'InstanceAttribute$EnclaveOptions' => '

To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to true; otherwise, set it to false.

', ], ], 'EnclaveOptionsRequest' => [ 'base' => '

Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For more information, see What is Amazon Web Services Nitro Enclaves? in the Amazon Web Services Nitro Enclaves User Guide.

', 'refs' => [ 'RunInstancesRequest$EnclaveOptions' => '

Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For more information, see What is Amazon Web Services Nitro Enclaves? in the Amazon Web Services Nitro Enclaves User Guide.

You can\'t enable Amazon Web Services Nitro Enclaves and hibernation on the same instance.

', ], ], 'EncryptionInTransitSupported' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$EncryptionInTransitSupported' => '

Indicates whether the instance type automatically encrypts in-transit traffic between instances.

', ], ], 'EndDateType' => [ 'base' => NULL, 'refs' => [ 'CapacityReservation$EndDateType' => '

Indicates the way in which the Capacity Reservation ends. A Capacity Reservation can have one of the following end types:

  • unlimited - The Capacity Reservation remains active until you explicitly cancel it.

  • limited - The Capacity Reservation expires automatically at a specified date and time.

', 'CreateCapacityReservationRequest$EndDateType' => '

Indicates the way in which the Capacity Reservation ends. A Capacity Reservation can have one of the following end types:

  • unlimited - The Capacity Reservation remains active until you explicitly cancel it. Do not provide an EndDate if the EndDateType is unlimited.

  • limited - The Capacity Reservation expires automatically at a specified date and time. You must provide an EndDate value if the EndDateType value is limited.

', 'ModifyCapacityReservationRequest$EndDateType' => '

Indicates the way in which the Capacity Reservation ends. A Capacity Reservation can have one of the following end types:

  • unlimited - The Capacity Reservation remains active until you explicitly cancel it. Do not provide an EndDate value if EndDateType is unlimited.

  • limited - The Capacity Reservation expires automatically at a specified date and time. You must provide an EndDate value if EndDateType is limited.

', ], ], 'EndpointSet' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnEndpointsResult$ClientVpnEndpoints' => '

Information about the Client VPN endpoints.

', ], ], 'EphemeralNvmeSupport' => [ 'base' => NULL, 'refs' => [ 'InstanceStorageInfo$NvmeSupport' => '

Indicates whether non-volatile memory express (NVMe) is supported.

', ], ], 'ErrorSet' => [ 'base' => NULL, 'refs' => [ 'ValidationWarning$Errors' => '

The error codes and error messages.

', ], ], 'EventCode' => [ 'base' => NULL, 'refs' => [ 'InstanceStatusEvent$Code' => '

The event code.

', ], ], 'EventInformation' => [ 'base' => '

Describes an EC2 Fleet or Spot Fleet event.

', 'refs' => [ 'HistoryRecord$EventInformation' => '

Information about the event.

', 'HistoryRecordEntry$EventInformation' => '

Information about the event.

', ], ], 'EventType' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotFleetRequestHistoryRequest$EventType' => '

The type of events to describe. By default, all events are described.

', 'HistoryRecord$EventType' => '

The event type.

  • error - An error with the Spot Fleet request.

  • fleetRequestChange - A change in the status or configuration of the Spot Fleet request.

  • instanceChange - An instance was launched or terminated.

  • Information - An informational event.

', ], ], 'ExcessCapacityTerminationPolicy' => [ 'base' => NULL, 'refs' => [ 'ModifySpotFleetRequestRequest$ExcessCapacityTerminationPolicy' => '

Indicates whether running instances should be terminated if the target capacity of the Spot Fleet request is decreased below the current size of the Spot Fleet.

Supported only for fleets of type maintain.

', 'SpotFleetRequestConfigData$ExcessCapacityTerminationPolicy' => '

Indicates whether running instances should be terminated if you decrease the target capacity of the Spot Fleet request below the current size of the Spot Fleet.

Supported only for fleets of type maintain.

', ], ], 'ExcludedInstanceType' => [ 'base' => NULL, 'refs' => [ 'ExcludedInstanceTypeSet$member' => NULL, ], ], 'ExcludedInstanceTypeSet' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$ExcludedInstanceTypes' => '

The instance types to exclude.

You can use strings with one or more wild cards, represented by an asterisk (*), to exclude an instance type, size, or generation. The following are examples: m5.8xlarge, c5*.*, m5a.*, r*, *3*.

For example, if you specify c5*,Amazon EC2 will exclude the entire C5 instance family, which includes all C5a and C5n instance types. If you specify m5a.*, Amazon EC2 will exclude all the M5a instance types, but not the M5n instance types.

If you specify ExcludedInstanceTypes, you can\'t specify AllowedInstanceTypes.

Default: No excluded instance types

', 'InstanceRequirementsRequest$ExcludedInstanceTypes' => '

The instance types to exclude.

You can use strings with one or more wild cards, represented by an asterisk (*), to exclude an instance family, type, size, or generation. The following are examples: m5.8xlarge, c5*.*, m5a.*, r*, *3*.

For example, if you specify c5*,Amazon EC2 will exclude the entire C5 instance family, which includes all C5a and C5n instance types. If you specify m5a.*, Amazon EC2 will exclude all the M5a instance types, but not the M5n instance types.

If you specify ExcludedInstanceTypes, you can\'t specify AllowedInstanceTypes.

Default: No excluded instance types

', ], ], 'ExecutableByStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeImagesRequest$ExecutableUsers' => '

Scopes the images by users with explicit launch permissions. Specify an Amazon Web Services account ID, self (the sender of the request), or all (public AMIs).

  • If you specify an Amazon Web Services account ID that is not your own, only AMIs shared with that specific Amazon Web Services account ID are returned. However, AMIs that are shared with the account’s organization or organizational unit (OU) are not returned.

  • If you specify self or your own Amazon Web Services account ID, AMIs shared with your account are returned. In addition, AMIs that are shared with the organization or OU of which you are member are also returned.

  • If you specify all, all public AMIs are returned.

', ], ], 'Explanation' => [ 'base' => '

Describes an explanation code for an unreachable path. For more information, see Reachability Analyzer explanation codes.

', 'refs' => [ 'ExplanationList$member' => NULL, ], ], 'ExplanationList' => [ 'base' => NULL, 'refs' => [ 'NetworkInsightsAnalysis$Explanations' => '

The explanations. For more information, see Reachability Analyzer explanation codes.

', 'PathComponent$Explanations' => '

The explanation codes.

', ], ], 'ExportClientVpnClientCertificateRevocationListRequest' => [ 'base' => NULL, 'refs' => [], ], 'ExportClientVpnClientCertificateRevocationListResult' => [ 'base' => NULL, 'refs' => [], ], 'ExportClientVpnClientConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ExportClientVpnClientConfigurationResult' => [ 'base' => NULL, 'refs' => [], ], 'ExportEnvironment' => [ 'base' => NULL, 'refs' => [ 'CreateInstanceExportTaskRequest$TargetEnvironment' => '

The target virtualization environment.

', 'InstanceExportDetails$TargetEnvironment' => '

The target virtualization environment.

', ], ], 'ExportImageRequest' => [ 'base' => NULL, 'refs' => [], ], 'ExportImageResult' => [ 'base' => NULL, 'refs' => [], ], 'ExportImageTask' => [ 'base' => '

Describes an export image task.

', 'refs' => [ 'ExportImageTaskList$member' => NULL, ], ], 'ExportImageTaskId' => [ 'base' => NULL, 'refs' => [ 'ExportImageTaskIdList$member' => NULL, ], ], 'ExportImageTaskIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeExportImageTasksRequest$ExportImageTaskIds' => '

The IDs of the export image tasks.

', ], ], 'ExportImageTaskList' => [ 'base' => NULL, 'refs' => [ 'DescribeExportImageTasksResult$ExportImageTasks' => '

Information about the export image tasks.

', ], ], 'ExportTask' => [ 'base' => '

Describes an export instance task.

', 'refs' => [ 'CreateInstanceExportTaskResult$ExportTask' => '

Information about the export instance task.

', 'ExportTaskList$member' => NULL, ], ], 'ExportTaskId' => [ 'base' => NULL, 'refs' => [ 'ExportTaskIdStringList$member' => NULL, ], ], 'ExportTaskIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeExportTasksRequest$ExportTaskIds' => '

The export task IDs.

', ], ], 'ExportTaskList' => [ 'base' => NULL, 'refs' => [ 'DescribeExportTasksResult$ExportTasks' => '

Information about the export tasks.

', ], ], 'ExportTaskS3Location' => [ 'base' => '

Describes the destination for an export image task.

', 'refs' => [ 'ExportImageResult$S3ExportLocation' => '

Information about the destination Amazon S3 bucket.

', 'ExportImageTask$S3ExportLocation' => '

Information about the destination Amazon S3 bucket.

', ], ], 'ExportTaskS3LocationRequest' => [ 'base' => '

Describes the destination for an export image task.

', 'refs' => [ 'ExportImageRequest$S3ExportLocation' => '

The Amazon S3 bucket for the destination image. The destination bucket must exist.

', ], ], 'ExportTaskState' => [ 'base' => NULL, 'refs' => [ 'ExportTask$State' => '

The state of the export task.

', ], ], 'ExportToS3Task' => [ 'base' => '

Describes the format and location for the export task.

', 'refs' => [ 'ExportTask$ExportToS3Task' => '

Information about the export task.

', ], ], 'ExportToS3TaskSpecification' => [ 'base' => '

Describes an export instance task.

', 'refs' => [ 'CreateInstanceExportTaskRequest$ExportToS3Task' => '

The format and location for an export instance task.

', ], ], 'ExportTransitGatewayRoutesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ExportTransitGatewayRoutesResult' => [ 'base' => NULL, 'refs' => [], ], 'ExportVmTaskId' => [ 'base' => NULL, 'refs' => [ 'CancelExportTaskRequest$ExportTaskId' => '

The ID of the export task. This is the ID returned by the CreateInstanceExportTask and ExportImage operations.

', ], ], 'FailedCapacityReservationFleetCancellationResult' => [ 'base' => '

Describes a Capacity Reservation Fleet that could not be cancelled.

', 'refs' => [ 'FailedCapacityReservationFleetCancellationResultSet$member' => NULL, ], ], 'FailedCapacityReservationFleetCancellationResultSet' => [ 'base' => NULL, 'refs' => [ 'CancelCapacityReservationFleetsResult$FailedFleetCancellations' => '

Information about the Capacity Reservation Fleets that could not be cancelled.

', ], ], 'FailedQueuedPurchaseDeletion' => [ 'base' => '

Describes a Reserved Instance whose queued purchase was not deleted.

', 'refs' => [ 'FailedQueuedPurchaseDeletionSet$member' => NULL, ], ], 'FailedQueuedPurchaseDeletionSet' => [ 'base' => NULL, 'refs' => [ 'DeleteQueuedReservedInstancesResult$FailedQueuedPurchaseDeletions' => '

Information about the queued purchases that could not be deleted.

', ], ], 'FastLaunchImageIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeFastLaunchImagesRequest$ImageIds' => '

Specify one or more Windows AMI image IDs for the request.

', ], ], 'FastLaunchLaunchTemplateSpecificationRequest' => [ 'base' => '

Request to create a launch template for a Windows fast launch enabled AMI.

Note - You can specify either the LaunchTemplateName or the LaunchTemplateId, but not both.

', 'refs' => [ 'EnableFastLaunchRequest$LaunchTemplate' => '

The launch template to use when launching Windows instances from pre-provisioned snapshots. Launch template parameters can include either the name or ID of the launch template, but not both.

', ], ], 'FastLaunchLaunchTemplateSpecificationResponse' => [ 'base' => '

Identifies the launch template that the AMI uses for Windows fast launch.

', 'refs' => [ 'DescribeFastLaunchImagesSuccessItem$LaunchTemplate' => '

The launch template that the Windows fast launch enabled AMI uses when it launches Windows instances from pre-provisioned snapshots.

', 'DisableFastLaunchResult$LaunchTemplate' => '

The launch template that was used to launch Windows instances from pre-provisioned snapshots.

', 'EnableFastLaunchResult$LaunchTemplate' => '

The launch template that is used when launching Windows instances from pre-provisioned snapshots.

', ], ], 'FastLaunchResourceType' => [ 'base' => NULL, 'refs' => [ 'DescribeFastLaunchImagesSuccessItem$ResourceType' => '

The resource type that Amazon EC2 uses for pre-provisioning the Windows AMI. Supported values include: snapshot.

', 'DisableFastLaunchResult$ResourceType' => '

The pre-provisioning resource type that must be cleaned after turning off Windows fast launch for the Windows AMI. Supported values include: snapshot.

', 'EnableFastLaunchResult$ResourceType' => '

The type of resource that was defined for pre-provisioning the AMI for Windows fast launch.

', ], ], 'FastLaunchSnapshotConfigurationRequest' => [ 'base' => '

Configuration settings for creating and managing pre-provisioned snapshots for a Windows fast launch enabled AMI.

', 'refs' => [ 'EnableFastLaunchRequest$SnapshotConfiguration' => '

Configuration settings for creating and managing the snapshots that are used for pre-provisioning the AMI for Windows fast launch. The associated ResourceType must be snapshot.

', ], ], 'FastLaunchSnapshotConfigurationResponse' => [ 'base' => '

Configuration settings for creating and managing pre-provisioned snapshots for a Windows fast launch enabled Windows AMI.

', 'refs' => [ 'DescribeFastLaunchImagesSuccessItem$SnapshotConfiguration' => '

A group of parameters that are used for pre-provisioning the associated Windows AMI using snapshots.

', 'DisableFastLaunchResult$SnapshotConfiguration' => '

Parameters that were used for Windows fast launch for the Windows AMI before Windows fast launch was disabled. This informs the clean-up process.

', 'EnableFastLaunchResult$SnapshotConfiguration' => '

Settings to create and manage the pre-provisioned snapshots that Amazon EC2 uses for faster launches from the Windows AMI. This property is returned when the associated resourceType is snapshot.

', ], ], 'FastLaunchStateCode' => [ 'base' => NULL, 'refs' => [ 'DescribeFastLaunchImagesSuccessItem$State' => '

The current state of Windows fast launch for the specified Windows AMI.

', 'DisableFastLaunchResult$State' => '

The current state of Windows fast launch for the specified Windows AMI.

', 'EnableFastLaunchResult$State' => '

The current state of Windows fast launch for the specified AMI.

', ], ], 'FastSnapshotRestoreStateCode' => [ 'base' => NULL, 'refs' => [ 'DescribeFastSnapshotRestoreSuccessItem$State' => '

The state of fast snapshot restores.

', 'DisableFastSnapshotRestoreSuccessItem$State' => '

The state of fast snapshot restores for the snapshot.

', 'EnableFastSnapshotRestoreSuccessItem$State' => '

The state of fast snapshot restores.

', ], ], 'FederatedAuthentication' => [ 'base' => '

Describes the IAM SAML identity providers used for federated authentication.

', 'refs' => [ 'ClientVpnAuthentication$FederatedAuthentication' => '

Information about the IAM SAML identity provider, if applicable.

', ], ], 'FederatedAuthenticationRequest' => [ 'base' => '

The IAM SAML identity provider used for federated authentication.

', 'refs' => [ 'ClientVpnAuthenticationRequest$FederatedAuthentication' => '

Information about the IAM SAML identity provider to be used, if applicable. You must provide this information if Type is federated-authentication.

', ], ], 'Filter' => [ 'base' => '

A filter name and value pair that is used to return a more specific list of results from a describe operation. Filters can be used to match a set of resources by specific criteria, such as tags, attributes, or IDs.

If you specify multiple filters, the filters are joined with an AND, and the request returns only results that match all of the specified filters.

', 'refs' => [ 'FilterList$member' => NULL, ], ], 'FilterList' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressesRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

  • allocation-id - The allocation ID for the address.

  • association-id - The association ID for the address.

  • instance-id - The ID of the instance the address is associated with, if any.

  • network-border-group - A unique set of Availability Zones, Local Zones, or Wavelength Zones from where Amazon Web Services advertises IP addresses.

  • network-interface-id - The ID of the network interface that the address is associated with, if any.

  • network-interface-owner-id - The Amazon Web Services account ID of the owner.

  • private-ip-address - The private IP address associated with the Elastic IP address.

  • public-ip - The Elastic IP address, or the carrier IP address.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeAvailabilityZonesRequest$Filters' => '

The filters.

  • group-name - For Availability Zones, use the Region name. For Local Zones, use the name of the group associated with the Local Zone (for example, us-west-2-lax-1) For Wavelength Zones, use the name of the group associated with the Wavelength Zone (for example, us-east-1-wl1-bos-wlz-1).

  • message - The Zone message.

  • opt-in-status - The opt-in status (opted-in | not-opted-in | opt-in-not-required).

  • parent-zone-id - The ID of the zone that handles some of the Local Zone and Wavelength Zone control plane operations, such as API calls.

  • parent-zone-name - The ID of the zone that handles some of the Local Zone and Wavelength Zone control plane operations, such as API calls.

  • region-name - The name of the Region for the Zone (for example, us-east-1).

  • state - The state of the Availability Zone, the Local Zone, or the Wavelength Zone (available).

  • zone-id - The ID of the Availability Zone (for example, use1-az1), the Local Zone (for example, usw2-lax1-az1), or the Wavelength Zone (for example, us-east-1-wl1-bos-wlz-1).

  • zone-name - The name of the Availability Zone (for example, us-east-1a), the Local Zone (for example, us-west-2-lax-1a), or the Wavelength Zone (for example, us-east-1-wl1-bos-wlz-1).

  • zone-type - The type of zone (availability-zone | local-zone | wavelength-zone).

', 'DescribeAwsNetworkPerformanceMetricSubscriptionsRequest$Filters' => '

One or more filters.

', 'DescribeBundleTasksRequest$Filters' => '

The filters.

  • bundle-id - The ID of the bundle task.

  • error-code - If the task failed, the error code returned.

  • error-message - If the task failed, the error message returned.

  • instance-id - The ID of the instance.

  • progress - The level of task completion, as a percentage (for example, 20%).

  • s3-bucket - The Amazon S3 bucket to store the AMI.

  • s3-prefix - The beginning of the AMI name.

  • start-time - The time the task started (for example, 2013-09-15T17:15:20.000Z).

  • state - The state of the task (pending | waiting-for-shutdown | bundling | storing | cancelling | complete | failed).

  • update-time - The time of the most recent update for the task.

', 'DescribeCapacityReservationFleetsRequest$Filters' => '

One or more filters.

  • state - The state of the Fleet (submitted | modifying | active | partially_fulfilled | expiring | expired | cancelling | cancelled | failed).

  • instance-match-criteria - The instance matching criteria for the Fleet. Only open is supported.

  • tenancy - The tenancy of the Fleet (default | dedicated).

  • allocation-strategy - The allocation strategy used by the Fleet. Only prioritized is supported.

', 'DescribeCapacityReservationsRequest$Filters' => '

One or more filters.

  • instance-type - The type of instance for which the Capacity Reservation reserves capacity.

  • owner-id - The ID of the Amazon Web Services account that owns the Capacity Reservation.

  • instance-platform - The type of operating system for which the Capacity Reservation reserves capacity.

  • availability-zone - The Availability Zone of the Capacity Reservation.

  • tenancy - Indicates the tenancy of the Capacity Reservation. A Capacity Reservation can have one of the following tenancy settings:

    • default - The Capacity Reservation is created on hardware that is shared with other Amazon Web Services accounts.

    • dedicated - The Capacity Reservation is created on single-tenant hardware that is dedicated to a single Amazon Web Services account.

  • outpost-arn - The Amazon Resource Name (ARN) of the Outpost on which the Capacity Reservation was created.

  • state - The current state of the Capacity Reservation. A Capacity Reservation can be in one of the following states:

    • active- The Capacity Reservation is active and the capacity is available for your use.

    • expired - The Capacity Reservation expired automatically at the date and time specified in your request. The reserved capacity is no longer available for your use.

    • cancelled - The Capacity Reservation was cancelled. The reserved capacity is no longer available for your use.

    • pending - The Capacity Reservation request was successful but the capacity provisioning is still pending.

    • failed - The Capacity Reservation request has failed. A request might fail due to invalid request parameters, capacity constraints, or instance limit constraints. Failed requests are retained for 60 minutes.

  • start-date - The date and time at which the Capacity Reservation was started.

  • end-date - The date and time at which the Capacity Reservation expires. When a Capacity Reservation expires, the reserved capacity is released and you can no longer launch instances into it. The Capacity Reservation\'s state changes to expired when it reaches its end date and time.

  • end-date-type - Indicates the way in which the Capacity Reservation ends. A Capacity Reservation can have one of the following end types:

    • unlimited - The Capacity Reservation remains active until you explicitly cancel it.

    • limited - The Capacity Reservation expires automatically at a specified date and time.

  • instance-match-criteria - Indicates the type of instance launches that the Capacity Reservation accepts. The options include:

    • open - The Capacity Reservation accepts all instances that have matching attributes (instance type, platform, and Availability Zone). Instances that have matching attributes launch into the Capacity Reservation automatically without specifying any additional parameters.

    • targeted - The Capacity Reservation only accepts instances that have matching attributes (instance type, platform, and Availability Zone), and explicitly target the Capacity Reservation. This ensures that only permitted instances can use the reserved capacity.

  • placement-group-arn - The ARN of the cluster placement group in which the Capacity Reservation was created.

', 'DescribeCarrierGatewaysRequest$Filters' => '

One or more filters.

  • carrier-gateway-id - The ID of the carrier gateway.

  • state - The state of the carrier gateway (pending | failed | available | deleting | deleted).

  • owner-id - The Amazon Web Services account ID of the owner of the carrier gateway.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC associated with the carrier gateway.

', 'DescribeClassicLinkInstancesRequest$Filters' => '

The filters.

  • group-id - The ID of a VPC security group that\'s associated with the instance.

  • instance-id - The ID of the instance.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC to which the instance is linked.

', 'DescribeClientVpnAuthorizationRulesRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

  • description - The description of the authorization rule.

  • destination-cidr - The CIDR of the network to which the authorization rule applies.

  • group-id - The ID of the Active Directory group to which the authorization rule grants access.

', 'DescribeClientVpnConnectionsRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

  • connection-id - The ID of the connection.

  • username - For Active Directory client authentication, the user name of the client who established the client connection.

', 'DescribeClientVpnEndpointsRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

  • endpoint-id - The ID of the Client VPN endpoint.

  • transport-protocol - The transport protocol (tcp | udp).

', 'DescribeClientVpnRoutesRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

  • destination-cidr - The CIDR of the route destination.

  • origin - How the route was associated with the Client VPN endpoint (associate | add-route).

  • target-subnet - The ID of the subnet through which traffic is routed.

', 'DescribeClientVpnTargetNetworksRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

  • association-id - The ID of the association.

  • target-network-id - The ID of the subnet specified as the target network.

  • vpc-id - The ID of the VPC in which the target network is located.

', 'DescribeCoipPoolsRequest$Filters' => '

One or more filters.

  • coip-pool.local-gateway-route-table-id - The ID of the local gateway route table.

  • coip-pool.pool-id - The ID of the address pool.

', 'DescribeCustomerGatewaysRequest$Filters' => '

One or more filters.

  • bgp-asn - The customer gateway\'s Border Gateway Protocol (BGP) Autonomous System Number (ASN).

  • customer-gateway-id - The ID of the customer gateway.

  • ip-address - The IP address of the customer gateway device\'s external interface.

  • state - The state of the customer gateway (pending | available | deleting | deleted).

  • type - The type of customer gateway. Currently, the only supported type is ipsec.1.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeDhcpOptionsRequest$Filters' => '

The filters.

  • dhcp-options-id - The ID of a DHCP options set.

  • key - The key for one of the options (for example, domain-name).

  • value - The value for one of the options.

  • owner-id - The ID of the Amazon Web Services account that owns the DHCP options set.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeEgressOnlyInternetGatewaysRequest$Filters' => '

The filters.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeElasticGpusRequest$Filters' => '

The filters.

  • availability-zone - The Availability Zone in which the Elastic Graphics accelerator resides.

  • elastic-gpu-health - The status of the Elastic Graphics accelerator (OK | IMPAIRED).

  • elastic-gpu-state - The state of the Elastic Graphics accelerator (ATTACHED).

  • elastic-gpu-type - The type of Elastic Graphics accelerator; for example, eg1.medium.

  • instance-id - The ID of the instance to which the Elastic Graphics accelerator is associated.

', 'DescribeExportImageTasksRequest$Filters' => '

Filter tasks using the task-state filter and one of the following values: active, completed, deleting, or deleted.

', 'DescribeExportTasksRequest$Filters' => '

the filters for the export tasks.

', 'DescribeFastLaunchImagesRequest$Filters' => '

Use the following filters to streamline results.

  • resource-type - The resource type for pre-provisioning.

  • owner-id - The owner ID for the pre-provisioning resource.

  • state - The current state of fast launching for the Windows AMI.

', 'DescribeFastSnapshotRestoresRequest$Filters' => '

The filters. The possible values are:

  • availability-zone: The Availability Zone of the snapshot.

  • owner-id: The ID of the Amazon Web Services account that enabled fast snapshot restore on the snapshot.

  • snapshot-id: The ID of the snapshot.

  • state: The state of fast snapshot restores for the snapshot (enabling | optimizing | enabled | disabling | disabled).

', 'DescribeFleetInstancesRequest$Filters' => '

The filters.

  • instance-type - The instance type.

', 'DescribeFleetsRequest$Filters' => '

The filters.

  • activity-status - The progress of the EC2 Fleet ( error | pending-fulfillment | pending-termination | fulfilled).

  • excess-capacity-termination-policy - Indicates whether to terminate running instances if the target capacity is decreased below the current EC2 Fleet size (true | false).

  • fleet-state - The state of the EC2 Fleet (submitted | active | deleted | failed | deleted-running | deleted-terminating | modifying).

  • replace-unhealthy-instances - Indicates whether EC2 Fleet should replace unhealthy instances (true | false).

  • type - The type of request (instant | request | maintain).

', 'DescribeFlowLogsRequest$Filter' => '

One or more filters.

  • deliver-log-status - The status of the logs delivery (SUCCESS | FAILED).

  • log-destination-type - The type of destination for the flow log data (cloud-watch-logs | s3 | kinesis-data-firehose).

  • flow-log-id - The ID of the flow log.

  • log-group-name - The name of the log group.

  • resource-id - The ID of the VPC, subnet, or network interface.

  • traffic-type - The type of traffic (ACCEPT | REJECT | ALL).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeFpgaImagesRequest$Filters' => '

The filters.

  • create-time - The creation time of the AFI.

  • fpga-image-id - The FPGA image identifier (AFI ID).

  • fpga-image-global-id - The global FPGA image identifier (AGFI ID).

  • name - The name of the AFI.

  • owner-id - The Amazon Web Services account ID of the AFI owner.

  • product-code - The product code.

  • shell-version - The version of the Amazon Web Services Shell that was used to create the bitstream.

  • state - The state of the AFI (pending | failed | available | unavailable).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • update-time - The time of the most recent update.

', 'DescribeHostReservationOfferingsRequest$Filter' => '

The filters.

  • instance-family - The instance family of the offering (for example, m4).

  • payment-option - The payment option (NoUpfront | PartialUpfront | AllUpfront).

', 'DescribeHostReservationsRequest$Filter' => '

The filters.

  • instance-family - The instance family (for example, m4).

  • payment-option - The payment option (NoUpfront | PartialUpfront | AllUpfront).

  • state - The state of the reservation (payment-pending | payment-failed | active | retired).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeHostsRequest$Filter' => '

The filters.

  • auto-placement - Whether auto-placement is enabled or disabled (on | off).

  • availability-zone - The Availability Zone of the host.

  • client-token - The idempotency token that you provided when you allocated the host.

  • host-reservation-id - The ID of the reservation assigned to this host.

  • instance-type - The instance type size that the Dedicated Host is configured to support.

  • state - The allocation state of the Dedicated Host (available | under-assessment | permanent-failure | released | released-permanent-failure).

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeIamInstanceProfileAssociationsRequest$Filters' => '

The filters.

  • instance-id - The ID of the instance.

  • state - The state of the association (associating | associated | disassociating).

', 'DescribeImagesRequest$Filters' => '

The filters.

  • architecture - The image architecture (i386 | x86_64 | arm64 | x86_64_mac | arm64_mac).

  • block-device-mapping.delete-on-termination - A Boolean value that indicates whether the Amazon EBS volume is deleted on instance termination.

  • block-device-mapping.device-name - The device name specified in the block device mapping (for example, /dev/sdh or xvdh).

  • block-device-mapping.snapshot-id - The ID of the snapshot used for the Amazon EBS volume.

  • block-device-mapping.volume-size - The volume size of the Amazon EBS volume, in GiB.

  • block-device-mapping.volume-type - The volume type of the Amazon EBS volume (io1 | io2 | gp2 | gp3 | sc1 | st1 | standard).

  • block-device-mapping.encrypted - A Boolean that indicates whether the Amazon EBS volume is encrypted.

  • creation-date - The time when the image was created, in the ISO 8601 format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for example, 2021-09-29T11:04:43.305Z. You can use a wildcard (*), for example, 2021-09-29T*, which matches an entire day.

  • description - The description of the image (provided during image creation).

  • ena-support - A Boolean that indicates whether enhanced networking with ENA is enabled.

  • hypervisor - The hypervisor type (ovm | xen).

  • image-id - The ID of the image.

  • image-type - The image type (machine | kernel | ramdisk).

  • is-public - A Boolean that indicates whether the image is public.

  • kernel-id - The kernel ID.

  • manifest-location - The location of the image manifest.

  • name - The name of the AMI (provided during image creation).

  • owner-alias - The owner alias (amazon | aws-marketplace). The valid aliases are defined in an Amazon-maintained list. This is not the Amazon Web Services account alias that can be set using the IAM console. We recommend that you use the Owner request parameter instead of this filter.

  • owner-id - The Amazon Web Services account ID of the owner. We recommend that you use the Owner request parameter instead of this filter.

  • platform - The platform. The only supported value is windows.

  • product-code - The product code.

  • product-code.type - The type of the product code (marketplace).

  • ramdisk-id - The RAM disk ID.

  • root-device-name - The device name of the root device volume (for example, /dev/sda1).

  • root-device-type - The type of the root device volume (ebs | instance-store).

  • source-instance-id - The ID of the instance that the AMI was created from if the AMI was created using CreateImage. This filter is applicable only if the AMI was created using CreateImage.

  • state - The state of the image (available | pending | failed).

  • state-reason-code - The reason code for the state change.

  • state-reason-message - The message for the state change.

  • sriov-net-support - A value of simple indicates that enhanced networking with the Intel 82599 VF interface is enabled.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • virtualization-type - The virtualization type (paravirtual | hvm).

', 'DescribeImportImageTasksRequest$Filters' => '

Filter tasks using the task-state filter and one of the following values: active, completed, deleting, or deleted.

', 'DescribeImportSnapshotTasksRequest$Filters' => '

The filters.

', 'DescribeInstanceConnectEndpointsRequest$Filters' => '

One or more filters.

  • instance-connect-endpoint-id - The ID of the EC2 Instance Connect Endpoint.

  • state - The state of the EC2 Instance Connect Endpoint (create-in-progress | create-complete | create-failed | delete-in-progress | delete-complete | delete-failed).

  • subnet-id - The ID of the subnet in which the EC2 Instance Connect Endpoint was created.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • tag-value - The value of a tag assigned to the resource. Use this filter to find all resources that have a tag with a specific value, regardless of tag key.

  • vpc-id - The ID of the VPC in which the EC2 Instance Connect Endpoint was created.

', 'DescribeInstanceCreditSpecificationsRequest$Filters' => '

The filters.

  • instance-id - The ID of the instance.

', 'DescribeInstanceEventWindowsRequest$Filters' => '

One or more filters.

  • dedicated-host-id - The event windows associated with the specified Dedicated Host ID.

  • event-window-name - The event windows associated with the specified names.

  • instance-id - The event windows associated with the specified instance ID.

  • instance-tag - The event windows associated with the specified tag and value.

  • instance-tag-key - The event windows associated with the specified tag key, regardless of the value.

  • instance-tag-value - The event windows associated with the specified tag value, regardless of the key.

  • tag:<key> - The key/value combination of a tag assigned to the event window. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value CMX, specify tag:Owner for the filter name and CMX for the filter value.

  • tag-key - The key of a tag assigned to the event window. Use this filter to find all event windows that have a tag with a specific key, regardless of the tag value.

  • tag-value - The value of a tag assigned to the event window. Use this filter to find all event windows that have a tag with a specific value, regardless of the tag key.

', 'DescribeInstanceStatusRequest$Filters' => '

The filters.

  • availability-zone - The Availability Zone of the instance.

  • event.code - The code for the scheduled event (instance-reboot | system-reboot | system-maintenance | instance-retirement | instance-stop).

  • event.description - A description of the event.

  • event.instance-event-id - The ID of the event whose date and time you are modifying.

  • event.not-after - The latest end time for the scheduled event (for example, 2014-09-15T17:15:20.000Z).

  • event.not-before - The earliest start time for the scheduled event (for example, 2014-09-15T17:15:20.000Z).

  • event.not-before-deadline - The deadline for starting the event (for example, 2014-09-15T17:15:20.000Z).

  • instance-state-code - The code for the instance state, as a 16-bit unsigned integer. The high byte is used for internal purposes and should be ignored. The low byte is set based on the state represented. The valid values are 0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping), and 80 (stopped).

  • instance-state-name - The state of the instance (pending | running | shutting-down | terminated | stopping | stopped).

  • instance-status.reachability - Filters on instance status where the name is reachability (passed | failed | initializing | insufficient-data).

  • instance-status.status - The status of the instance (ok | impaired | initializing | insufficient-data | not-applicable).

  • system-status.reachability - Filters on system status where the name is reachability (passed | failed | initializing | insufficient-data).

  • system-status.status - The system status of the instance (ok | impaired | initializing | insufficient-data | not-applicable).

', 'DescribeInstanceTopologyRequest$Filters' => '

The filters.

  • availability-zone - The name of the Availability Zone (for example, us-west-2a) or Local Zone (for example, us-west-2-lax-1b) that the instance is in.

  • instance-type - The instance type (for example, p4d.24xlarge) or instance family (for example, p4d*). You can use the * wildcard to match zero or more characters, or the ? wildcard to match zero or one character.

  • zone-id - The ID of the Availability Zone (for example, usw2-az2) or Local Zone (for example, usw2-lax1-az1) that the instance is in.

', 'DescribeInstanceTypeOfferingsRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

  • location - This depends on the location type. For example, if the location type is region (default), the location is the Region code (for example, us-east-2.)

  • instance-type - The instance type. For example, c5.2xlarge.

', 'DescribeInstanceTypesRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

  • auto-recovery-supported - Indicates whether Amazon CloudWatch action based recovery is supported (true | false).

  • bare-metal - Indicates whether it is a bare metal instance type (true | false).

  • burstable-performance-supported - Indicates whether the instance type is a burstable performance T instance type (true | false).

  • current-generation - Indicates whether this instance type is the latest generation instance type of an instance family (true | false).

  • ebs-info.ebs-optimized-info.baseline-bandwidth-in-mbps - The baseline bandwidth performance for an EBS-optimized instance type, in Mbps.

  • ebs-info.ebs-optimized-info.baseline-iops - The baseline input/output storage operations per second for an EBS-optimized instance type.

  • ebs-info.ebs-optimized-info.baseline-throughput-in-mbps - The baseline throughput performance for an EBS-optimized instance type, in MB/s.

  • ebs-info.ebs-optimized-info.maximum-bandwidth-in-mbps - The maximum bandwidth performance for an EBS-optimized instance type, in Mbps.

  • ebs-info.ebs-optimized-info.maximum-iops - The maximum input/output storage operations per second for an EBS-optimized instance type.

  • ebs-info.ebs-optimized-info.maximum-throughput-in-mbps - The maximum throughput performance for an EBS-optimized instance type, in MB/s.

  • ebs-info.ebs-optimized-support - Indicates whether the instance type is EBS-optimized (supported | unsupported | default).

  • ebs-info.encryption-support - Indicates whether EBS encryption is supported (supported | unsupported).

  • ebs-info.nvme-support - Indicates whether non-volatile memory express (NVMe) is supported for EBS volumes (required | supported | unsupported).

  • free-tier-eligible - Indicates whether the instance type is eligible to use in the free tier (true | false).

  • hibernation-supported - Indicates whether On-Demand hibernation is supported (true | false).

  • hypervisor - The hypervisor (nitro | xen).

  • instance-storage-info.disk.count - The number of local disks.

  • instance-storage-info.disk.size-in-gb - The storage size of each instance storage disk, in GB.

  • instance-storage-info.disk.type - The storage technology for the local instance storage disks (hdd | ssd).

  • instance-storage-info.encryption-support - Indicates whether data is encrypted at rest (required | supported | unsupported).

  • instance-storage-info.nvme-support - Indicates whether non-volatile memory express (NVMe) is supported for instance store (required | supported | unsupported).

  • instance-storage-info.total-size-in-gb - The total amount of storage available from all local instance storage, in GB.

  • instance-storage-supported - Indicates whether the instance type has local instance storage (true | false).

  • instance-type - The instance type (for example c5.2xlarge or c5*).

  • memory-info.size-in-mib - The memory size.

  • network-info.efa-info.maximum-efa-interfaces - The maximum number of Elastic Fabric Adapters (EFAs) per instance.

  • network-info.efa-supported - Indicates whether the instance type supports Elastic Fabric Adapter (EFA) (true | false).

  • network-info.ena-support - Indicates whether Elastic Network Adapter (ENA) is supported or required (required | supported | unsupported).

  • network-info.encryption-in-transit-supported - Indicates whether the instance type automatically encrypts in-transit traffic between instances (true | false).

  • network-info.ipv4-addresses-per-interface - The maximum number of private IPv4 addresses per network interface.

  • network-info.ipv6-addresses-per-interface - The maximum number of private IPv6 addresses per network interface.

  • network-info.ipv6-supported - Indicates whether the instance type supports IPv6 (true | false).

  • network-info.maximum-network-cards - The maximum number of network cards per instance.

  • network-info.maximum-network-interfaces - The maximum number of network interfaces per instance.

  • network-info.network-performance - The network performance (for example, "25 Gigabit").

  • nitro-enclaves-support - Indicates whether Nitro Enclaves is supported (supported | unsupported).

  • nitro-tpm-support - Indicates whether NitroTPM is supported (supported | unsupported).

  • nitro-tpm-info.supported-versions - The supported NitroTPM version (2.0).

  • processor-info.supported-architecture - The CPU architecture (arm64 | i386 | x86_64).

  • processor-info.sustained-clock-speed-in-ghz - The CPU clock speed, in GHz.

  • processor-info.supported-features - The supported CPU features (amd-sev-snp).

  • supported-boot-mode - The boot mode (legacy-bios | uefi).

  • supported-root-device-type - The root device type (ebs | instance-store).

  • supported-usage-class - The usage class (on-demand | spot).

  • supported-virtualization-type - The virtualization type (hvm | paravirtual).

  • vcpu-info.default-cores - The default number of cores for the instance type.

  • vcpu-info.default-threads-per-core - The default number of threads per core for the instance type.

  • vcpu-info.default-vcpus - The default number of vCPUs for the instance type.

  • vcpu-info.valid-cores - The number of cores that can be configured for the instance type.

  • vcpu-info.valid-threads-per-core - The number of threads per core that can be configured for the instance type. For example, "1" or "1,2".

', 'DescribeInstancesRequest$Filters' => '

The filters.

  • affinity - The affinity setting for an instance running on a Dedicated Host (default | host).

  • architecture - The instance architecture (i386 | x86_64 | arm64).

  • availability-zone - The Availability Zone of the instance.

  • block-device-mapping.attach-time - The attach time for an EBS volume mapped to the instance, for example, 2022-09-15T17:15:20.000Z.

  • block-device-mapping.delete-on-termination - A Boolean that indicates whether the EBS volume is deleted on instance termination.

  • block-device-mapping.device-name - The device name specified in the block device mapping (for example, /dev/sdh or xvdh).

  • block-device-mapping.status - The status for the EBS volume (attaching | attached | detaching | detached).

  • block-device-mapping.volume-id - The volume ID of the EBS volume.

  • boot-mode - The boot mode that was specified by the AMI (legacy-bios | uefi | uefi-preferred).

  • capacity-reservation-id - The ID of the Capacity Reservation into which the instance was launched.

  • capacity-reservation-specification.capacity-reservation-preference - The instance\'s Capacity Reservation preference (open | none).

  • capacity-reservation-specification.capacity-reservation-target.capacity-reservation-id - The ID of the targeted Capacity Reservation.

  • capacity-reservation-specification.capacity-reservation-target.capacity-reservation-resource-group-arn - The ARN of the targeted Capacity Reservation group.

  • client-token - The idempotency token you provided when you launched the instance.

  • current-instance-boot-mode - The boot mode that is used to launch the instance at launch or start (legacy-bios | uefi).

  • dns-name - The public DNS name of the instance.

  • ebs-optimized - A Boolean that indicates whether the instance is optimized for Amazon EBS I/O.

  • ena-support - A Boolean that indicates whether the instance is enabled for enhanced networking with ENA.

  • enclave-options.enabled - A Boolean that indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves.

  • hibernation-options.configured - A Boolean that indicates whether the instance is enabled for hibernation. A value of true means that the instance is enabled for hibernation.

  • host-id - The ID of the Dedicated Host on which the instance is running, if applicable.

  • hypervisor - The hypervisor type of the instance (ovm | xen). The value xen is used for both Xen and Nitro hypervisors.

  • iam-instance-profile.arn - The instance profile associated with the instance. Specified as an ARN.

  • iam-instance-profile.id - The instance profile associated with the instance. Specified as an ID.

  • iam-instance-profile.name - The instance profile associated with the instance. Specified as an name.

  • image-id - The ID of the image used to launch the instance.

  • instance-id - The ID of the instance.

  • instance-lifecycle - Indicates whether this is a Spot Instance, a Scheduled Instance, or a Capacity Block (spot | scheduled | capacity-block).

  • instance-state-code - The state of the instance, as a 16-bit unsigned integer. The high byte is used for internal purposes and should be ignored. The low byte is set based on the state represented. The valid values are: 0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping), and 80 (stopped).

  • instance-state-name - The state of the instance (pending | running | shutting-down | terminated | stopping | stopped).

  • instance-type - The type of instance (for example, t2.micro).

  • instance.group-id - The ID of the security group for the instance.

  • instance.group-name - The name of the security group for the instance.

  • ip-address - The public IPv4 address of the instance.

  • ipv6-address - The IPv6 address of the instance.

  • kernel-id - The kernel ID.

  • key-name - The name of the key pair used when the instance was launched.

  • launch-index - When launching multiple instances, this is the index for the instance in the launch group (for example, 0, 1, 2, and so on).

  • launch-time - The time when the instance was launched, in the ISO 8601 format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for example, 2021-09-29T11:04:43.305Z. You can use a wildcard (*), for example, 2021-09-29T*, which matches an entire day.

  • maintenance-options.auto-recovery - The current automatic recovery behavior of the instance (disabled | default).

  • metadata-options.http-endpoint - The status of access to the HTTP metadata endpoint on your instance (enabled | disabled)

  • metadata-options.http-protocol-ipv4 - Indicates whether the IPv4 endpoint is enabled (disabled | enabled).

  • metadata-options.http-protocol-ipv6 - Indicates whether the IPv6 endpoint is enabled (disabled | enabled).

  • metadata-options.http-put-response-hop-limit - The HTTP metadata request put response hop limit (integer, possible values 1 to 64)

  • metadata-options.http-tokens - The metadata request authorization state (optional | required)

  • metadata-options.instance-metadata-tags - The status of access to instance tags from the instance metadata (enabled | disabled)

  • metadata-options.state - The state of the metadata option changes (pending | applied).

  • monitoring-state - Indicates whether detailed monitoring is enabled (disabled | enabled).

  • network-interface.addresses.association.allocation-id - The allocation ID.

  • network-interface.addresses.association.association-id - The association ID.

  • network-interface.addresses.association.carrier-ip - The carrier IP address.

  • network-interface.addresses.association.customer-owned-ip - The customer-owned IP address.

  • network-interface.addresses.association.ip-owner-id - The owner ID of the private IPv4 address associated with the network interface.

  • network-interface.addresses.association.public-dns-name - The public DNS name.

  • network-interface.addresses.association.public-ip - The ID of the association of an Elastic IP address (IPv4) with a network interface.

  • network-interface.addresses.primary - Specifies whether the IPv4 address of the network interface is the primary private IPv4 address.

  • network-interface.addresses.private-dns-name - The private DNS name.

  • network-interface.addresses.private-ip-address - The private IPv4 address associated with the network interface.

  • network-interface.association.allocation-id - The allocation ID returned when you allocated the Elastic IP address (IPv4) for your network interface.

  • network-interface.association.association-id - The association ID returned when the network interface was associated with an IPv4 address.

  • network-interface.association.carrier-ip - The customer-owned IP address.

  • network-interface.association.customer-owned-ip - The customer-owned IP address.

  • network-interface.association.ip-owner-id - The owner of the Elastic IP address (IPv4) associated with the network interface.

  • network-interface.association.public-dns-name - The public DNS name.

  • network-interface.association.public-ip - The address of the Elastic IP address (IPv4) bound to the network interface.

  • network-interface.attachment.attach-time - The time that the network interface was attached to an instance.

  • network-interface.attachment.attachment-id - The ID of the interface attachment.

  • network-interface.attachment.delete-on-termination - Specifies whether the attachment is deleted when an instance is terminated.

  • network-interface.attachment.device-index - The device index to which the network interface is attached.

  • network-interface.attachment.instance-id - The ID of the instance to which the network interface is attached.

  • network-interface.attachment.instance-owner-id - The owner ID of the instance to which the network interface is attached.

  • network-interface.attachment.network-card-index - The index of the network card.

  • network-interface.attachment.status - The status of the attachment (attaching | attached | detaching | detached).

  • network-interface.availability-zone - The Availability Zone for the network interface.

  • network-interface.deny-all-igw-traffic - A Boolean that indicates whether a network interface with an IPv6 address is unreachable from the public internet.

  • network-interface.description - The description of the network interface.

  • network-interface.group-id - The ID of a security group associated with the network interface.

  • network-interface.group-name - The name of a security group associated with the network interface.

  • network-interface.ipv4-prefixes.ipv4-prefix - The IPv4 prefixes that are assigned to the network interface.

  • network-interface.ipv6-address - The IPv6 address associated with the network interface.

  • network-interface.ipv6-addresses.ipv6-address - The IPv6 address associated with the network interface.

  • network-interface.ipv6-addresses.is-primary-ipv6 - A Boolean that indicates whether this is the primary IPv6 address.

  • network-interface.ipv6-native - A Boolean that indicates whether this is an IPv6 only network interface.

  • network-interface.ipv6-prefixes.ipv6-prefix - The IPv6 prefix assigned to the network interface.

  • network-interface.mac-address - The MAC address of the network interface.

  • network-interface.network-interface-id - The ID of the network interface.

  • network-interface.outpost-arn - The ARN of the Outpost.

  • network-interface.owner-id - The ID of the owner of the network interface.

  • network-interface.private-dns-name - The private DNS name of the network interface.

  • network-interface.private-ip-address - The private IPv4 address.

  • network-interface.public-dns-name - The public DNS name.

  • network-interface.requester-id - The requester ID for the network interface.

  • network-interface.requester-managed - Indicates whether the network interface is being managed by Amazon Web Services.

  • network-interface.status - The status of the network interface (available) | in-use).

  • network-interface.source-dest-check - Whether the network interface performs source/destination checking. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the network interface to perform network address translation (NAT) in your VPC.

  • network-interface.subnet-id - The ID of the subnet for the network interface.

  • network-interface.tag-key - The key of a tag assigned to the network interface.

  • network-interface.tag-value - The value of a tag assigned to the network interface.

  • network-interface.vpc-id - The ID of the VPC for the network interface.

  • outpost-arn - The Amazon Resource Name (ARN) of the Outpost.

  • owner-id - The Amazon Web Services account ID of the instance owner.

  • placement-group-name - The name of the placement group for the instance.

  • placement-partition-number - The partition in which the instance is located.

  • platform - The platform. To list only Windows instances, use windows.

  • platform-details - The platform (Linux/UNIX | Red Hat BYOL Linux | Red Hat Enterprise Linux | Red Hat Enterprise Linux with HA | Red Hat Enterprise Linux with SQL Server Standard and HA | Red Hat Enterprise Linux with SQL Server Enterprise and HA | Red Hat Enterprise Linux with SQL Server Standard | Red Hat Enterprise Linux with SQL Server Web | Red Hat Enterprise Linux with SQL Server Enterprise | SQL Server Enterprise | SQL Server Standard | SQL Server Web | SUSE Linux | Ubuntu Pro | Windows | Windows BYOL | Windows with SQL Server Enterprise | Windows with SQL Server Standard | Windows with SQL Server Web).

  • private-dns-name - The private IPv4 DNS name of the instance.

  • private-dns-name-options.enable-resource-name-dns-a-record - A Boolean that indicates whether to respond to DNS queries for instance hostnames with DNS A records.

  • private-dns-name-options.enable-resource-name-dns-aaaa-record - A Boolean that indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.

  • private-dns-name-options.hostname-type - The type of hostname (ip-name | resource-name).

  • private-ip-address - The private IPv4 address of the instance.

  • product-code - The product code associated with the AMI used to launch the instance.

  • product-code.type - The type of product code (devpay | marketplace).

  • ramdisk-id - The RAM disk ID.

  • reason - The reason for the current state of the instance (for example, shows "User Initiated [date]" when you stop or terminate the instance). Similar to the state-reason-code filter.

  • requester-id - The ID of the entity that launched the instance on your behalf (for example, Amazon Web Services Management Console, Auto Scaling, and so on).

  • reservation-id - The ID of the instance\'s reservation. A reservation ID is created any time you launch an instance. A reservation ID has a one-to-one relationship with an instance launch request, but can be associated with more than one instance if you launch multiple instances using the same launch request. For example, if you launch one instance, you get one reservation ID. If you launch ten instances using the same launch request, you also get one reservation ID.

  • root-device-name - The device name of the root device volume (for example, /dev/sda1).

  • root-device-type - The type of the root device volume (ebs | instance-store).

  • source-dest-check - Indicates whether the instance performs source/destination checking. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the instance to perform network address translation (NAT) in your VPC.

  • spot-instance-request-id - The ID of the Spot Instance request.

  • state-reason-code - The reason code for the state change.

  • state-reason-message - A message that describes the state change.

  • subnet-id - The ID of the subnet for the instance.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources that have a tag with a specific key, regardless of the tag value.

  • tenancy - The tenancy of an instance (dedicated | default | host).

  • tpm-support - Indicates if the instance is configured for NitroTPM support (v2.0).

  • usage-operation - The usage operation value for the instance (RunInstances | RunInstances:00g0 | RunInstances:0010 | RunInstances:1010 | RunInstances:1014 | RunInstances:1110 | RunInstances:0014 | RunInstances:0210 | RunInstances:0110 | RunInstances:0100 | RunInstances:0004 | RunInstances:0200 | RunInstances:000g | RunInstances:0g00 | RunInstances:0002 | RunInstances:0800 | RunInstances:0102 | RunInstances:0006 | RunInstances:0202).

  • usage-operation-update-time - The time that the usage operation was last updated, for example, 2022-09-15T17:15:20.000Z.

  • virtualization-type - The virtualization type of the instance (paravirtual | hvm).

  • vpc-id - The ID of the VPC that the instance is running in.

', 'DescribeInternetGatewaysRequest$Filters' => '

The filters.

  • attachment.state - The current state of the attachment between the gateway and the VPC (available). Present only if a VPC is attached.

  • attachment.vpc-id - The ID of an attached VPC.

  • internet-gateway-id - The ID of the Internet gateway.

  • owner-id - The ID of the Amazon Web Services account that owns the internet gateway.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeIpamPoolsRequest$Filters' => '

One or more filters for the request. For more information about filtering, see Filtering CLI output.

', 'DescribeIpamResourceDiscoveriesRequest$Filters' => '

The resource discovery filters.

', 'DescribeIpamResourceDiscoveryAssociationsRequest$Filters' => '

The resource discovery association filters.

', 'DescribeIpamScopesRequest$Filters' => '

One or more filters for the request. For more information about filtering, see Filtering CLI output.

', 'DescribeIpamsRequest$Filters' => '

One or more filters for the request. For more information about filtering, see Filtering CLI output.

', 'DescribeIpv6PoolsRequest$Filters' => '

One or more filters.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeKeyPairsRequest$Filters' => '

The filters.

  • key-pair-id - The ID of the key pair.

  • fingerprint - The fingerprint of the key pair.

  • key-name - The name of the key pair.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'DescribeLaunchTemplateVersionsRequest$Filters' => '

One or more filters.

  • create-time - The time the launch template version was created.

  • ebs-optimized - A boolean that indicates whether the instance is optimized for Amazon EBS I/O.

  • http-endpoint - Indicates whether the HTTP metadata endpoint on your instances is enabled (enabled | disabled).

  • http-protocol-ipv4 - Indicates whether the IPv4 endpoint for the instance metadata service is enabled (enabled | disabled).

  • host-resource-group-arn - The ARN of the host resource group in which to launch the instances.

  • http-tokens - The state of token usage for your instance metadata requests (optional | required).

  • iam-instance-profile - The ARN of the IAM instance profile.

  • image-id - The ID of the AMI.

  • instance-type - The instance type.

  • is-default-version - A boolean that indicates whether the launch template version is the default version.

  • kernel-id - The kernel ID.

  • license-configuration-arn - The ARN of the license configuration.

  • network-card-index - The index of the network card.

  • ram-disk-id - The RAM disk ID.

', 'DescribeLaunchTemplatesRequest$Filters' => '

One or more filters.

  • create-time - The time the launch template was created.

  • launch-template-name - The name of the launch template.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest$Filters' => '

One or more filters.

  • local-gateway-id - The ID of a local gateway.

  • local-gateway-route-table-arn - The Amazon Resource Name (ARN) of the local gateway route table for the virtual interface group.

  • local-gateway-route-table-id - The ID of the local gateway route table.

  • local-gateway-route-table-virtual-interface-group-association-id - The ID of the association.

  • local-gateway-route-table-virtual-interface-group-id - The ID of the virtual interface group.

  • owner-id - The ID of the Amazon Web Services account that owns the local gateway virtual interface group association.

  • state - The state of the association.

', 'DescribeLocalGatewayRouteTableVpcAssociationsRequest$Filters' => '

One or more filters.

  • local-gateway-id - The ID of a local gateway.

  • local-gateway-route-table-arn - The Amazon Resource Name (ARN) of the local gateway route table for the association.

  • local-gateway-route-table-id - The ID of the local gateway route table.

  • local-gateway-route-table-vpc-association-id - The ID of the association.

  • owner-id - The ID of the Amazon Web Services account that owns the local gateway route table for the association.

  • state - The state of the association.

  • vpc-id - The ID of the VPC.

', 'DescribeLocalGatewayRouteTablesRequest$Filters' => '

One or more filters.

  • local-gateway-id - The ID of a local gateway.

  • local-gateway-route-table-arn - The Amazon Resource Name (ARN) of the local gateway route table.

  • local-gateway-route-table-id - The ID of a local gateway route table.

  • outpost-arn - The Amazon Resource Name (ARN) of the Outpost.

  • owner-id - The ID of the Amazon Web Services account that owns the local gateway route table.

  • state - The state of the local gateway route table.

', 'DescribeLocalGatewayVirtualInterfaceGroupsRequest$Filters' => '

One or more filters.

  • local-gateway-id - The ID of a local gateway.

  • local-gateway-virtual-interface-group-id - The ID of the virtual interface group.

  • local-gateway-virtual-interface-id - The ID of the virtual interface.

  • owner-id - The ID of the Amazon Web Services account that owns the local gateway virtual interface group.

', 'DescribeLocalGatewayVirtualInterfacesRequest$Filters' => '

One or more filters.

  • local-address - The local address.

  • local-bgp-asn - The Border Gateway Protocol (BGP) Autonomous System Number (ASN) of the local gateway.

  • local-gateway-id - The ID of the local gateway.

  • local-gateway-virtual-interface-id - The ID of the virtual interface.

  • owner-id - The ID of the Amazon Web Services account that owns the local gateway virtual interface.

  • peer-address - The peer address.

  • peer-bgp-asn - The peer BGP ASN.

  • vlan - The ID of the VLAN.

', 'DescribeLocalGatewaysRequest$Filters' => '

One or more filters.

  • local-gateway-id - The ID of a local gateway.

  • outpost-arn - The Amazon Resource Name (ARN) of the Outpost.

  • owner-id - The ID of the Amazon Web Services account that owns the local gateway.

  • state - The state of the association.

', 'DescribeLockedSnapshotsRequest$Filters' => '

The filters.

  • lock-state - The state of the snapshot lock (compliance-cooloff | governance | compliance | expired).

', 'DescribeManagedPrefixListsRequest$Filters' => '

One or more filters.

  • owner-id - The ID of the prefix list owner.

  • prefix-list-id - The ID of the prefix list.

  • prefix-list-name - The name of the prefix list.

', 'DescribeMovingAddressesRequest$Filters' => '

One or more filters.

  • moving-status - The status of the Elastic IP address (MovingToVpc | RestoringToClassic).

', 'DescribeNatGatewaysRequest$Filter' => '

The filters.

  • nat-gateway-id - The ID of the NAT gateway.

  • state - The state of the NAT gateway (pending | failed | available | deleting | deleted).

  • subnet-id - The ID of the subnet in which the NAT gateway resides.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC in which the NAT gateway resides.

', 'DescribeNetworkAclsRequest$Filters' => '

The filters.

  • association.association-id - The ID of an association ID for the ACL.

  • association.network-acl-id - The ID of the network ACL involved in the association.

  • association.subnet-id - The ID of the subnet involved in the association.

  • default - Indicates whether the ACL is the default network ACL for the VPC.

  • entry.cidr - The IPv4 CIDR range specified in the entry.

  • entry.icmp.code - The ICMP code specified in the entry, if any.

  • entry.icmp.type - The ICMP type specified in the entry, if any.

  • entry.ipv6-cidr - The IPv6 CIDR range specified in the entry.

  • entry.port-range.from - The start of the port range specified in the entry.

  • entry.port-range.to - The end of the port range specified in the entry.

  • entry.protocol - The protocol specified in the entry (tcp | udp | icmp or a protocol number).

  • entry.rule-action - Allows or denies the matching traffic (allow | deny).

  • entry.egress - A Boolean that indicates the type of rule. Specify true for egress rules, or false for ingress rules.

  • entry.rule-number - The number of an entry (in other words, rule) in the set of ACL entries.

  • network-acl-id - The ID of the network ACL.

  • owner-id - The ID of the Amazon Web Services account that owns the network ACL.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC for the network ACL.

', 'DescribeNetworkInsightsAccessScopeAnalysesRequest$Filters' => '

There are no supported filters.

', 'DescribeNetworkInsightsAccessScopesRequest$Filters' => '

There are no supported filters.

', 'DescribeNetworkInsightsAnalysesRequest$Filters' => '

The filters. The following are the possible values:

  • path-found - A Boolean value that indicates whether a feasible path is found.

  • status - The status of the analysis (running | succeeded | failed).

', 'DescribeNetworkInsightsPathsRequest$Filters' => '

The filters. The following are the possible values:

  • destination - The ID of the resource.

  • filter-at-source.source-address - The source IPv4 address at the source.

  • filter-at-source.source-port-range - The source port range at the source.

  • filter-at-source.destination-address - The destination IPv4 address at the source.

  • filter-at-source.destination-port-range - The destination port range at the source.

  • filter-at-destination.source-address - The source IPv4 address at the destination.

  • filter-at-destination.source-port-range - The source port range at the destination.

  • filter-at-destination.destination-address - The destination IPv4 address at the destination.

  • filter-at-destination.destination-port-range - The destination port range at the destination.

  • protocol - The protocol.

  • source - The ID of the resource.

', 'DescribeNetworkInterfacePermissionsRequest$Filters' => '

One or more filters.

  • network-interface-permission.network-interface-permission-id - The ID of the permission.

  • network-interface-permission.network-interface-id - The ID of the network interface.

  • network-interface-permission.aws-account-id - The Amazon Web Services account ID.

  • network-interface-permission.aws-service - The Amazon Web Service.

  • network-interface-permission.permission - The type of permission (INSTANCE-ATTACH | EIP-ASSOCIATE).

', 'DescribeNetworkInterfacesRequest$Filters' => '

One or more filters.

  • association.allocation-id - The allocation ID returned when you allocated the Elastic IP address (IPv4) for your network interface.

  • association.association-id - The association ID returned when the network interface was associated with an IPv4 address.

  • addresses.association.owner-id - The owner ID of the addresses associated with the network interface.

  • addresses.association.public-ip - The association ID returned when the network interface was associated with the Elastic IP address (IPv4).

  • addresses.primary - Whether the private IPv4 address is the primary IP address associated with the network interface.

  • addresses.private-ip-address - The private IPv4 addresses associated with the network interface.

  • association.ip-owner-id - The owner of the Elastic IP address (IPv4) associated with the network interface.

  • association.public-ip - The address of the Elastic IP address (IPv4) bound to the network interface.

  • association.public-dns-name - The public DNS name for the network interface (IPv4).

  • attachment.attach-time - The time that the network interface was attached to an instance.

  • attachment.attachment-id - The ID of the interface attachment.

  • attachment.delete-on-termination - Indicates whether the attachment is deleted when an instance is terminated.

  • attachment.device-index - The device index to which the network interface is attached.

  • attachment.instance-id - The ID of the instance to which the network interface is attached.

  • attachment.instance-owner-id - The owner ID of the instance to which the network interface is attached.

  • attachment.status - The status of the attachment (attaching | attached | detaching | detached).

  • availability-zone - The Availability Zone of the network interface.

  • description - The description of the network interface.

  • group-id - The ID of a security group associated with the network interface.

  • ipv6-addresses.ipv6-address - An IPv6 address associated with the network interface.

  • interface-type - The type of network interface (api_gateway_managed | aws_codestar_connections_managed | branch | ec2_instance_connect_endpoint | efa | efs | gateway_load_balancer | gateway_load_balancer_endpoint | global_accelerator_managed | interface | iot_rules_managed | lambda | load_balancer | nat_gateway | network_load_balancer | quicksight | transit_gateway | trunk | vpc_endpoint).

  • mac-address - The MAC address of the network interface.

  • network-interface-id - The ID of the network interface.

  • owner-id - The Amazon Web Services account ID of the network interface owner.

  • private-dns-name - The private DNS name of the network interface (IPv4).

  • private-ip-address - The private IPv4 address or addresses of the network interface.

  • requester-id - The alias or Amazon Web Services account ID of the principal or service that created the network interface.

  • requester-managed - Indicates whether the network interface is being managed by an Amazon Web Service (for example, Amazon Web Services Management Console, Auto Scaling, and so on).

  • source-dest-check - Indicates whether the network interface performs source/destination checking. A value of true means checking is enabled, and false means checking is disabled. The value must be false for the network interface to perform network address translation (NAT) in your VPC.

  • status - The status of the network interface. If the network interface is not attached to an instance, the status is available; if a network interface is attached to an instance the status is in-use.

  • subnet-id - The ID of the subnet for the network interface.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC for the network interface.

', 'DescribePlacementGroupsRequest$Filters' => '

The filters.

  • group-name - The name of the placement group.

  • group-arn - The Amazon Resource Name (ARN) of the placement group.

  • spread-level - The spread level for the placement group (host | rack).

  • state - The state of the placement group (pending | available | deleting | deleted).

  • strategy - The strategy of the placement group (cluster | spread | partition).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources that have a tag with a specific key, regardless of the tag value.

', 'DescribePrefixListsRequest$Filters' => '

One or more filters.

  • prefix-list-id: The ID of a prefix list.

  • prefix-list-name: The name of a prefix list.

', 'DescribePublicIpv4PoolsRequest$Filters' => '

One or more filters.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeRegionsRequest$Filters' => '

The filters.

  • endpoint - The endpoint of the Region (for example, ec2.us-east-1.amazonaws.com).

  • opt-in-status - The opt-in status of the Region (opt-in-not-required | opted-in | not-opted-in).

  • region-name - The name of the Region (for example, us-east-1).

', 'DescribeReplaceRootVolumeTasksRequest$Filters' => '

Filter to use:

  • instance-id - The ID of the instance for which the root volume replacement task was created.

', 'DescribeReservedInstancesListingsRequest$Filters' => '

One or more filters.

  • reserved-instances-id - The ID of the Reserved Instances.

  • reserved-instances-listing-id - The ID of the Reserved Instances listing.

  • status - The status of the Reserved Instance listing (pending | active | cancelled | closed).

  • status-message - The reason for the status.

', 'DescribeReservedInstancesModificationsRequest$Filters' => '

One or more filters.

  • client-token - The idempotency token for the modification request.

  • create-date - The time when the modification request was created.

  • effective-date - The time when the modification becomes effective.

  • modification-result.reserved-instances-id - The ID for the Reserved Instances created as part of the modification request. This ID is only available when the status of the modification is fulfilled.

  • modification-result.target-configuration.availability-zone - The Availability Zone for the new Reserved Instances.

  • modification-result.target-configuration.instance-count - The number of new Reserved Instances.

  • modification-result.target-configuration.instance-type - The instance type of the new Reserved Instances.

  • reserved-instances-id - The ID of the Reserved Instances modified.

  • reserved-instances-modification-id - The ID of the modification request.

  • status - The status of the Reserved Instances modification request (processing | fulfilled | failed).

  • status-message - The reason for the status.

  • update-date - The time when the modification request was last updated.

', 'DescribeReservedInstancesOfferingsRequest$Filters' => '

One or more filters.

  • availability-zone - The Availability Zone where the Reserved Instance can be used.

  • duration - The duration of the Reserved Instance (for example, one year or three years), in seconds (31536000 | 94608000).

  • fixed-price - The purchase price of the Reserved Instance (for example, 9800.0).

  • instance-type - The instance type that is covered by the reservation.

  • marketplace - Set to true to show only Reserved Instance Marketplace offerings. When this filter is not used, which is the default behavior, all offerings from both Amazon Web Services and the Reserved Instance Marketplace are listed.

  • product-description - The Reserved Instance product platform description (Linux/UNIX | Linux with SQL Server Standard | Linux with SQL Server Web | Linux with SQL Server Enterprise | SUSE Linux | Red Hat Enterprise Linux | Red Hat Enterprise Linux with HA | Windows | Windows with SQL Server Standard | Windows with SQL Server Web | Windows with SQL Server Enterprise).

  • reserved-instances-offering-id - The Reserved Instances offering ID.

  • scope - The scope of the Reserved Instance (Availability Zone or Region).

  • usage-price - The usage price of the Reserved Instance, per hour (for example, 0.84).

', 'DescribeReservedInstancesRequest$Filters' => '

One or more filters.

  • availability-zone - The Availability Zone where the Reserved Instance can be used.

  • duration - The duration of the Reserved Instance (one year or three years), in seconds (31536000 | 94608000).

  • end - The time when the Reserved Instance expires (for example, 2015-08-07T11:54:42.000Z).

  • fixed-price - The purchase price of the Reserved Instance (for example, 9800.0).

  • instance-type - The instance type that is covered by the reservation.

  • scope - The scope of the Reserved Instance (Region or Availability Zone).

  • product-description - The Reserved Instance product platform description (Linux/UNIX | Linux with SQL Server Standard | Linux with SQL Server Web | Linux with SQL Server Enterprise | SUSE Linux | Red Hat Enterprise Linux | Red Hat Enterprise Linux with HA | Windows | Windows with SQL Server Standard | Windows with SQL Server Web | Windows with SQL Server Enterprise).

  • reserved-instances-id - The ID of the Reserved Instance.

  • start - The time at which the Reserved Instance purchase request was placed (for example, 2014-08-07T11:54:42.000Z).

  • state - The state of the Reserved Instance (payment-pending | active | payment-failed | retired).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • usage-price - The usage price of the Reserved Instance, per hour (for example, 0.84).

', 'DescribeRouteTablesRequest$Filters' => '

The filters.

  • association.gateway-id - The ID of the gateway involved in the association.

  • association.route-table-association-id - The ID of an association ID for the route table.

  • association.route-table-id - The ID of the route table involved in the association.

  • association.subnet-id - The ID of the subnet involved in the association.

  • association.main - Indicates whether the route table is the main route table for the VPC (true | false). Route tables that do not have an association ID are not returned in the response.

  • owner-id - The ID of the Amazon Web Services account that owns the route table.

  • route-table-id - The ID of the route table.

  • route.destination-cidr-block - The IPv4 CIDR range specified in a route in the table.

  • route.destination-ipv6-cidr-block - The IPv6 CIDR range specified in a route in the route table.

  • route.destination-prefix-list-id - The ID (prefix) of the Amazon Web Service specified in a route in the table.

  • route.egress-only-internet-gateway-id - The ID of an egress-only Internet gateway specified in a route in the route table.

  • route.gateway-id - The ID of a gateway specified in a route in the table.

  • route.instance-id - The ID of an instance specified in a route in the table.

  • route.nat-gateway-id - The ID of a NAT gateway.

  • route.transit-gateway-id - The ID of a transit gateway.

  • route.origin - Describes how the route was created. CreateRouteTable indicates that the route was automatically created when the route table was created; CreateRoute indicates that the route was manually added to the route table; EnableVgwRoutePropagation indicates that the route was propagated by route propagation.

  • route.state - The state of a route in the route table (active | blackhole). The blackhole state indicates that the route\'s target isn\'t available (for example, the specified gateway isn\'t attached to the VPC, the specified NAT instance has been terminated, and so on).

  • route.vpc-peering-connection-id - The ID of a VPC peering connection specified in a route in the table.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC for the route table.

', 'DescribeScheduledInstanceAvailabilityRequest$Filters' => '

The filters.

  • availability-zone - The Availability Zone (for example, us-west-2a).

  • instance-type - The instance type (for example, c4.large).

  • platform - The platform (Linux/UNIX or Windows).

', 'DescribeScheduledInstancesRequest$Filters' => '

The filters.

  • availability-zone - The Availability Zone (for example, us-west-2a).

  • instance-type - The instance type (for example, c4.large).

  • platform - The platform (Linux/UNIX or Windows).

', 'DescribeSecurityGroupRulesRequest$Filters' => '

One or more filters.

  • group-id - The ID of the security group.

  • security-group-rule-id - The ID of the security group rule.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'DescribeSecurityGroupsRequest$Filters' => '

The filters. If using multiple filters for rules, the results include security groups for which any combination of rules - not necessarily a single rule - match all filters.

  • description - The description of the security group.

  • egress.ip-permission.cidr - An IPv4 CIDR block for an outbound security group rule.

  • egress.ip-permission.from-port - For an outbound rule, the start of port range for the TCP and UDP protocols, or an ICMP type number.

  • egress.ip-permission.group-id - The ID of a security group that has been referenced in an outbound security group rule.

  • egress.ip-permission.group-name - The name of a security group that is referenced in an outbound security group rule.

  • egress.ip-permission.ipv6-cidr - An IPv6 CIDR block for an outbound security group rule.

  • egress.ip-permission.prefix-list-id - The ID of a prefix list to which a security group rule allows outbound access.

  • egress.ip-permission.protocol - The IP protocol for an outbound security group rule (tcp | udp | icmp, a protocol number, or -1 for all protocols).

  • egress.ip-permission.to-port - For an outbound rule, the end of port range for the TCP and UDP protocols, or an ICMP code.

  • egress.ip-permission.user-id - The ID of an Amazon Web Services account that has been referenced in an outbound security group rule.

  • group-id - The ID of the security group.

  • group-name - The name of the security group.

  • ip-permission.cidr - An IPv4 CIDR block for an inbound security group rule.

  • ip-permission.from-port - For an inbound rule, the start of port range for the TCP and UDP protocols, or an ICMP type number.

  • ip-permission.group-id - The ID of a security group that has been referenced in an inbound security group rule.

  • ip-permission.group-name - The name of a security group that is referenced in an inbound security group rule.

  • ip-permission.ipv6-cidr - An IPv6 CIDR block for an inbound security group rule.

  • ip-permission.prefix-list-id - The ID of a prefix list from which a security group rule allows inbound access.

  • ip-permission.protocol - The IP protocol for an inbound security group rule (tcp | udp | icmp, a protocol number, or -1 for all protocols).

  • ip-permission.to-port - For an inbound rule, the end of port range for the TCP and UDP protocols, or an ICMP code.

  • ip-permission.user-id - The ID of an Amazon Web Services account that has been referenced in an inbound security group rule.

  • owner-id - The Amazon Web Services account ID of the owner of the security group.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC specified when the security group was created.

', 'DescribeSnapshotTierStatusRequest$Filters' => '

The filters.

  • snapshot-id - The snapshot ID.

  • volume-id - The ID of the volume the snapshot is for.

  • last-tiering-operation - The state of the last archive or restore action. (archival-in-progress | archival-completed | archival-failed | permanent-restore-in-progress | permanent-restore-completed | permanent-restore-failed | temporary-restore-in-progress | temporary-restore-completed | temporary-restore-failed)

', 'DescribeSnapshotsRequest$Filters' => '

The filters.

  • description - A description of the snapshot.

  • encrypted - Indicates whether the snapshot is encrypted (true | false)

  • owner-alias - The owner alias, from an Amazon-maintained list (amazon). This is not the user-configured Amazon Web Services account alias set using the IAM console. We recommend that you use the related parameter instead of this filter.

  • owner-id - The Amazon Web Services account ID of the owner. We recommend that you use the related parameter instead of this filter.

  • progress - The progress of the snapshot, as a percentage (for example, 80%).

  • snapshot-id - The snapshot ID.

  • start-time - The time stamp when the snapshot was initiated.

  • status - The status of the snapshot (pending | completed | error).

  • storage-tier - The storage tier of the snapshot (archive | standard).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • volume-id - The ID of the volume the snapshot is for.

  • volume-size - The size of the volume, in GiB.

', 'DescribeSpotInstanceRequestsRequest$Filters' => '

The filters.

  • availability-zone-group - The Availability Zone group.

  • create-time - The time stamp when the Spot Instance request was created.

  • fault-code - The fault code related to the request.

  • fault-message - The fault message related to the request.

  • instance-id - The ID of the instance that fulfilled the request.

  • launch-group - The Spot Instance launch group.

  • launch.block-device-mapping.delete-on-termination - Indicates whether the EBS volume is deleted on instance termination.

  • launch.block-device-mapping.device-name - The device name for the volume in the block device mapping (for example, /dev/sdh or xvdh).

  • launch.block-device-mapping.snapshot-id - The ID of the snapshot for the EBS volume.

  • launch.block-device-mapping.volume-size - The size of the EBS volume, in GiB.

  • launch.block-device-mapping.volume-type - The type of EBS volume: gp2 or gp3 for General Purpose SSD, io1 or io2 for Provisioned IOPS SSD, st1 for Throughput Optimized HDD, sc1 for Cold HDD, or standard for Magnetic.

  • launch.group-id - The ID of the security group for the instance.

  • launch.group-name - The name of the security group for the instance.

  • launch.image-id - The ID of the AMI.

  • launch.instance-type - The type of instance (for example, m3.medium).

  • launch.kernel-id - The kernel ID.

  • launch.key-name - The name of the key pair the instance launched with.

  • launch.monitoring-enabled - Whether detailed monitoring is enabled for the Spot Instance.

  • launch.ramdisk-id - The RAM disk ID.

  • launched-availability-zone - The Availability Zone in which the request is launched.

  • network-interface.addresses.primary - Indicates whether the IP address is the primary private IP address.

  • network-interface.delete-on-termination - Indicates whether the network interface is deleted when the instance is terminated.

  • network-interface.description - A description of the network interface.

  • network-interface.device-index - The index of the device for the network interface attachment on the instance.

  • network-interface.group-id - The ID of the security group associated with the network interface.

  • network-interface.network-interface-id - The ID of the network interface.

  • network-interface.private-ip-address - The primary private IP address of the network interface.

  • network-interface.subnet-id - The ID of the subnet for the instance.

  • product-description - The product description associated with the instance (Linux/UNIX | Windows).

  • spot-instance-request-id - The Spot Instance request ID.

  • spot-price - The maximum hourly price for any Spot Instance launched to fulfill the request.

  • state - The state of the Spot Instance request (open | active | closed | cancelled | failed). Spot request status information can help you track your Amazon EC2 Spot Instance requests. For more information, see Spot request status in the Amazon EC2 User Guide for Linux Instances.

  • status-code - The short code describing the most recent evaluation of your Spot Instance request.

  • status-message - The message explaining the status of the Spot Instance request.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • type - The type of Spot Instance request (one-time | persistent).

  • valid-from - The start date of the request.

  • valid-until - The end date of the request.

', 'DescribeSpotPriceHistoryRequest$Filters' => '

The filters.

  • availability-zone - The Availability Zone for which prices should be returned.

  • instance-type - The type of instance (for example, m3.medium).

  • product-description - The product description for the Spot price (Linux/UNIX | Red Hat Enterprise Linux | SUSE Linux | Windows | Linux/UNIX (Amazon VPC) | Red Hat Enterprise Linux (Amazon VPC) | SUSE Linux (Amazon VPC) | Windows (Amazon VPC)).

  • spot-price - The Spot price. The value must match exactly (or use wildcards; greater than or less than comparison is not supported).

  • timestamp - The time stamp of the Spot price history, in UTC format (for example, ddd MMM dd HH:mm:ss UTC YYYY). You can use wildcards (* and ?). Greater than or less than comparison is not supported.

', 'DescribeStoreImageTasksRequest$Filters' => '

The filters.

  • task-state - Returns tasks in a certain state (InProgress | Completed | Failed)

  • bucket - Returns task information for tasks that targeted a specific bucket. For the filter value, specify the bucket name.

When you specify the ImageIds parameter, any filters that you specify are ignored. To use the filters, you must remove the ImageIds parameter.

', 'DescribeSubnetsRequest$Filters' => '

The filters.

  • availability-zone - The Availability Zone for the subnet. You can also use availabilityZone as the filter name.

  • availability-zone-id - The ID of the Availability Zone for the subnet. You can also use availabilityZoneId as the filter name.

  • available-ip-address-count - The number of IPv4 addresses in the subnet that are available.

  • cidr-block - The IPv4 CIDR block of the subnet. The CIDR block you specify must exactly match the subnet\'s CIDR block for information to be returned for the subnet. You can also use cidr or cidrBlock as the filter names.

  • customer-owned-ipv4-pool - The customer-owned IPv4 address pool associated with the subnet.

  • default-for-az - Indicates whether this is the default subnet for the Availability Zone (true | false). You can also use defaultForAz as the filter name.

  • enable-dns64 - Indicates whether DNS queries made to the Amazon-provided DNS Resolver in this subnet should return synthetic IPv6 addresses for IPv4-only destinations.

  • enable-lni-at-device-index - Indicates the device position for local network interfaces in this subnet. For example, 1 indicates local network interfaces in this subnet are the secondary network interface (eth1).

  • ipv6-cidr-block-association.ipv6-cidr-block - An IPv6 CIDR block associated with the subnet.

  • ipv6-cidr-block-association.association-id - An association ID for an IPv6 CIDR block associated with the subnet.

  • ipv6-cidr-block-association.state - The state of an IPv6 CIDR block associated with the subnet.

  • ipv6-native - Indicates whether this is an IPv6 only subnet (true | false).

  • map-customer-owned-ip-on-launch - Indicates whether a network interface created in this subnet (including a network interface created by RunInstances) receives a customer-owned IPv4 address.

  • map-public-ip-on-launch - Indicates whether instances launched in this subnet receive a public IPv4 address.

  • outpost-arn - The Amazon Resource Name (ARN) of the Outpost.

  • owner-id - The ID of the Amazon Web Services account that owns the subnet.

  • private-dns-name-options-on-launch.hostname-type - The type of hostname to assign to instances in the subnet at launch. For IPv4-only and dual-stack (IPv4 and IPv6) subnets, an instance DNS name can be based on the instance IPv4 address (ip-name) or the instance ID (resource-name). For IPv6 only subnets, an instance DNS name must be based on the instance ID (resource-name).

  • private-dns-name-options-on-launch.enable-resource-name-dns-a-record - Indicates whether to respond to DNS queries for instance hostnames with DNS A records.

  • private-dns-name-options-on-launch.enable-resource-name-dns-aaaa-record - Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.

  • state - The state of the subnet (pending | available).

  • subnet-arn - The Amazon Resource Name (ARN) of the subnet.

  • subnet-id - The ID of the subnet.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC for the subnet.

', 'DescribeTagsRequest$Filters' => '

The filters.

  • key - The tag key.

  • resource-id - The ID of the resource.

  • resource-type - The resource type (customer-gateway | dedicated-host | dhcp-options | elastic-ip | fleet | fpga-image | host-reservation | image | instance | internet-gateway | key-pair | launch-template | natgateway | network-acl | network-interface | placement-group | reserved-instances | route-table | security-group | snapshot | spot-instances-request | subnet | volume | vpc | vpc-endpoint | vpc-endpoint-service | vpc-peering-connection | vpn-connection | vpn-gateway).

  • tag:<key> - The key/value combination of the tag. For example, specify "tag:Owner" for the filter name and "TeamA" for the filter value to find resources with the tag "Owner=TeamA".

  • value - The tag value.

', 'DescribeTrafficMirrorFiltersRequest$Filters' => '

One or more filters. The possible values are:

  • description: The Traffic Mirror filter description.

  • traffic-mirror-filter-id: The ID of the Traffic Mirror filter.

', 'DescribeTrafficMirrorSessionsRequest$Filters' => '

One or more filters. The possible values are:

  • description: The Traffic Mirror session description.

  • network-interface-id: The ID of the Traffic Mirror session network interface.

  • owner-id: The ID of the account that owns the Traffic Mirror session.

  • packet-length: The assigned number of packets to mirror.

  • session-number: The assigned session number.

  • traffic-mirror-filter-id: The ID of the Traffic Mirror filter.

  • traffic-mirror-session-id: The ID of the Traffic Mirror session.

  • traffic-mirror-target-id: The ID of the Traffic Mirror target.

  • virtual-network-id: The virtual network ID of the Traffic Mirror session.

', 'DescribeTrafficMirrorTargetsRequest$Filters' => '

One or more filters. The possible values are:

  • description: The Traffic Mirror target description.

  • network-interface-id: The ID of the Traffic Mirror session network interface.

  • network-load-balancer-arn: The Amazon Resource Name (ARN) of the Network Load Balancer that is associated with the session.

  • owner-id: The ID of the account that owns the Traffic Mirror session.

  • traffic-mirror-target-id: The ID of the Traffic Mirror target.

', 'DescribeTransitGatewayAttachmentsRequest$Filters' => '

One or more filters. The possible values are:

  • association.state - The state of the association (associating | associated | disassociating).

  • association.transit-gateway-route-table-id - The ID of the route table for the transit gateway.

  • resource-id - The ID of the resource.

  • resource-owner-id - The ID of the Amazon Web Services account that owns the resource.

  • resource-type - The resource type. Valid values are vpc | vpn | direct-connect-gateway | peering | connect.

  • state - The state of the attachment. Valid values are available | deleted | deleting | failed | failing | initiatingRequest | modifying | pendingAcceptance | pending | rollingBack | rejected | rejecting.

  • transit-gateway-attachment-id - The ID of the attachment.

  • transit-gateway-id - The ID of the transit gateway.

  • transit-gateway-owner-id - The ID of the Amazon Web Services account that owns the transit gateway.

', 'DescribeTransitGatewayConnectPeersRequest$Filters' => '

One or more filters. The possible values are:

  • state - The state of the Connect peer (pending | available | deleting | deleted).

  • transit-gateway-attachment-id - The ID of the attachment.

  • transit-gateway-connect-peer-id - The ID of the Connect peer.

', 'DescribeTransitGatewayConnectsRequest$Filters' => '

One or more filters. The possible values are:

  • options.protocol - The tunnel protocol (gre).

  • state - The state of the attachment (initiating | initiatingRequest | pendingAcceptance | rollingBack | pending | available | modifying | deleting | deleted | failed | rejected | rejecting | failing).

  • transit-gateway-attachment-id - The ID of the Connect attachment.

  • transit-gateway-id - The ID of the transit gateway.

  • transport-transit-gateway-attachment-id - The ID of the transit gateway attachment from which the Connect attachment was created.

', 'DescribeTransitGatewayMulticastDomainsRequest$Filters' => '

One or more filters. The possible values are:

  • state - The state of the transit gateway multicast domain. Valid values are pending | available | deleting | deleted.

  • transit-gateway-id - The ID of the transit gateway.

  • transit-gateway-multicast-domain-id - The ID of the transit gateway multicast domain.

', 'DescribeTransitGatewayPeeringAttachmentsRequest$Filters' => '

One or more filters. The possible values are:

  • transit-gateway-attachment-id - The ID of the transit gateway attachment.

  • local-owner-id - The ID of your Amazon Web Services account.

  • remote-owner-id - The ID of the Amazon Web Services account in the remote Region that owns the transit gateway.

  • state - The state of the peering attachment. Valid values are available | deleted | deleting | failed | failing | initiatingRequest | modifying | pendingAcceptance | pending | rollingBack | rejected | rejecting).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources that have a tag with a specific key, regardless of the tag value.

  • transit-gateway-id - The ID of the transit gateway.

', 'DescribeTransitGatewayPolicyTablesRequest$Filters' => '

The filters associated with the transit gateway policy table.

', 'DescribeTransitGatewayRouteTableAnnouncementsRequest$Filters' => '

The filters associated with the transit gateway policy table.

', 'DescribeTransitGatewayRouteTablesRequest$Filters' => '

One or more filters. The possible values are:

  • default-association-route-table - Indicates whether this is the default association route table for the transit gateway (true | false).

  • default-propagation-route-table - Indicates whether this is the default propagation route table for the transit gateway (true | false).

  • state - The state of the route table (available | deleting | deleted | pending).

  • transit-gateway-id - The ID of the transit gateway.

  • transit-gateway-route-table-id - The ID of the transit gateway route table.

', 'DescribeTransitGatewayVpcAttachmentsRequest$Filters' => '

One or more filters. The possible values are:

  • state - The state of the attachment. Valid values are available | deleted | deleting | failed | failing | initiatingRequest | modifying | pendingAcceptance | pending | rollingBack | rejected | rejecting.

  • transit-gateway-attachment-id - The ID of the attachment.

  • transit-gateway-id - The ID of the transit gateway.

  • vpc-id - The ID of the VPC.

', 'DescribeTransitGatewaysRequest$Filters' => '

One or more filters. The possible values are:

  • options.propagation-default-route-table-id - The ID of the default propagation route table.

  • options.amazon-side-asn - The private ASN for the Amazon side of a BGP session.

  • options.association-default-route-table-id - The ID of the default association route table.

  • options.auto-accept-shared-attachments - Indicates whether there is automatic acceptance of attachment requests (enable | disable).

  • options.default-route-table-association - Indicates whether resource attachments are automatically associated with the default association route table (enable | disable).

  • options.default-route-table-propagation - Indicates whether resource attachments automatically propagate routes to the default propagation route table (enable | disable).

  • options.dns-support - Indicates whether DNS support is enabled (enable | disable).

  • options.vpn-ecmp-support - Indicates whether Equal Cost Multipath Protocol support is enabled (enable | disable).

  • owner-id - The ID of the Amazon Web Services account that owns the transit gateway.

  • state - The state of the transit gateway (available | deleted | deleting | modifying | pending).

  • transit-gateway-id - The ID of the transit gateway.

', 'DescribeTrunkInterfaceAssociationsRequest$Filters' => '

One or more filters.

  • gre-key - The ID of a trunk interface association.

  • interface-protocol - The interface protocol. Valid values are VLAN and GRE.

', 'DescribeVerifiedAccessEndpointsRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

', 'DescribeVerifiedAccessGroupsRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

', 'DescribeVerifiedAccessInstanceLoggingConfigurationsRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

', 'DescribeVerifiedAccessInstancesRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

', 'DescribeVerifiedAccessTrustProvidersRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

', 'DescribeVolumeStatusRequest$Filters' => '

The filters.

  • action.code - The action code for the event (for example, enable-volume-io).

  • action.description - A description of the action.

  • action.event-id - The event ID associated with the action.

  • availability-zone - The Availability Zone of the instance.

  • event.description - A description of the event.

  • event.event-id - The event ID.

  • event.event-type - The event type (for io-enabled: passed | failed; for io-performance: io-performance:degraded | io-performance:severely-degraded | io-performance:stalled).

  • event.not-after - The latest end time for the event.

  • event.not-before - The earliest start time for the event.

  • volume-status.details-name - The cause for volume-status.status (io-enabled | io-performance).

  • volume-status.details-status - The status of volume-status.details-name (for io-enabled: passed | failed; for io-performance: normal | degraded | severely-degraded | stalled).

  • volume-status.status - The status of the volume (ok | impaired | warning | insufficient-data).

', 'DescribeVolumesModificationsRequest$Filters' => '

The filters.

  • modification-state - The current modification state (modifying | optimizing | completed | failed).

  • original-iops - The original IOPS rate of the volume.

  • original-size - The original size of the volume, in GiB.

  • original-volume-type - The original volume type of the volume (standard | io1 | io2 | gp2 | sc1 | st1).

  • originalMultiAttachEnabled - Indicates whether Multi-Attach support was enabled (true | false).

  • start-time - The modification start time.

  • target-iops - The target IOPS rate of the volume.

  • target-size - The target size of the volume, in GiB.

  • target-volume-type - The target volume type of the volume (standard | io1 | io2 | gp2 | sc1 | st1).

  • targetMultiAttachEnabled - Indicates whether Multi-Attach support is to be enabled (true | false).

  • volume-id - The ID of the volume.

', 'DescribeVolumesRequest$Filters' => '

The filters.

  • attachment.attach-time - The time stamp when the attachment initiated.

  • attachment.delete-on-termination - Whether the volume is deleted on instance termination.

  • attachment.device - The device name specified in the block device mapping (for example, /dev/sda1).

  • attachment.instance-id - The ID of the instance the volume is attached to.

  • attachment.status - The attachment state (attaching | attached | detaching).

  • availability-zone - The Availability Zone in which the volume was created.

  • create-time - The time stamp when the volume was created.

  • encrypted - Indicates whether the volume is encrypted (true | false)

  • multi-attach-enabled - Indicates whether the volume is enabled for Multi-Attach (true | false)

  • fast-restored - Indicates whether the volume was created from a snapshot that is enabled for fast snapshot restore (true | false).

  • size - The size of the volume, in GiB.

  • snapshot-id - The snapshot from which the volume was created.

  • status - The state of the volume (creating | available | in-use | deleting | deleted | error).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • volume-id - The volume ID.

  • volume-type - The Amazon EBS volume type (gp2 | gp3 | io1 | io2 | st1 | sc1| standard)

', 'DescribeVpcClassicLinkRequest$Filters' => '

The filters.

  • is-classic-link-enabled - Whether the VPC is enabled for ClassicLink (true | false).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeVpcEndpointConnectionNotificationsRequest$Filters' => '

The filters.

  • connection-notification-arn - The ARN of the SNS topic for the notification.

  • connection-notification-id - The ID of the notification.

  • connection-notification-state - The state of the notification (Enabled | Disabled).

  • connection-notification-type - The type of notification (Topic).

  • service-id - The ID of the endpoint service.

  • vpc-endpoint-id - The ID of the VPC endpoint.

', 'DescribeVpcEndpointConnectionsRequest$Filters' => '

The filters.

  • ip-address-type - The IP address type (ipv4 | ipv6).

  • service-id - The ID of the service.

  • vpc-endpoint-owner - The ID of the Amazon Web Services account ID that owns the endpoint.

  • vpc-endpoint-state - The state of the endpoint (pendingAcceptance | pending | available | deleting | deleted | rejected | failed).

  • vpc-endpoint-id - The ID of the endpoint.

', 'DescribeVpcEndpointServiceConfigurationsRequest$Filters' => '

The filters.

  • service-name - The name of the service.

  • service-id - The ID of the service.

  • service-state - The state of the service (Pending | Available | Deleting | Deleted | Failed).

  • supported-ip-address-types - The IP address type (ipv4 | ipv6).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeVpcEndpointServicePermissionsRequest$Filters' => '

The filters.

  • principal - The ARN of the principal.

  • principal-type - The principal type (All | Service | OrganizationUnit | Account | User | Role).

', 'DescribeVpcEndpointServicesRequest$Filters' => '

The filters.

  • owner - The ID or alias of the Amazon Web Services account that owns the service.

  • service-name - The name of the service.

  • service-type - The type of service (Interface | Gateway | GatewayLoadBalancer).

  • supported-ip-address-types - The IP address type (ipv4 | ipv6).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeVpcEndpointsRequest$Filters' => '

The filters.

  • ip-address-type - The IP address type (ipv4 | ipv6).

  • service-name - The name of the service.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC in which the endpoint resides.

  • vpc-endpoint-id - The ID of the endpoint.

  • vpc-endpoint-state - The state of the endpoint (pendingAcceptance | pending | available | deleting | deleted | rejected | failed).

  • vpc-endpoint-type - The type of VPC endpoint (Interface | Gateway | GatewayLoadBalancer).

', 'DescribeVpcPeeringConnectionsRequest$Filters' => '

The filters.

  • accepter-vpc-info.cidr-block - The IPv4 CIDR block of the accepter VPC.

  • accepter-vpc-info.owner-id - The ID of the Amazon Web Services account that owns the accepter VPC.

  • accepter-vpc-info.vpc-id - The ID of the accepter VPC.

  • expiration-time - The expiration date and time for the VPC peering connection.

  • requester-vpc-info.cidr-block - The IPv4 CIDR block of the requester\'s VPC.

  • requester-vpc-info.owner-id - The ID of the Amazon Web Services account that owns the requester VPC.

  • requester-vpc-info.vpc-id - The ID of the requester VPC.

  • status-code - The status of the VPC peering connection (pending-acceptance | failed | expired | provisioning | active | deleting | deleted | rejected).

  • status-message - A message that provides more information about the status of the VPC peering connection, if applicable.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-peering-connection-id - The ID of the VPC peering connection.

', 'DescribeVpcsRequest$Filters' => '

The filters.

  • cidr - The primary IPv4 CIDR block of the VPC. The CIDR block you specify must exactly match the VPC\'s CIDR block for information to be returned for the VPC. Must contain the slash followed by one or two digits (for example, /28).

  • cidr-block-association.cidr-block - An IPv4 CIDR block associated with the VPC.

  • cidr-block-association.association-id - The association ID for an IPv4 CIDR block associated with the VPC.

  • cidr-block-association.state - The state of an IPv4 CIDR block associated with the VPC.

  • dhcp-options-id - The ID of a set of DHCP options.

  • ipv6-cidr-block-association.ipv6-cidr-block - An IPv6 CIDR block associated with the VPC.

  • ipv6-cidr-block-association.ipv6-pool - The ID of the IPv6 address pool from which the IPv6 CIDR block is allocated.

  • ipv6-cidr-block-association.association-id - The association ID for an IPv6 CIDR block associated with the VPC.

  • ipv6-cidr-block-association.state - The state of an IPv6 CIDR block associated with the VPC.

  • is-default - Indicates whether the VPC is the default VPC.

  • owner-id - The ID of the Amazon Web Services account that owns the VPC.

  • state - The state of the VPC (pending | available).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC.

', 'DescribeVpnConnectionsRequest$Filters' => '

One or more filters.

  • customer-gateway-configuration - The configuration information for the customer gateway.

  • customer-gateway-id - The ID of a customer gateway associated with the VPN connection.

  • state - The state of the VPN connection (pending | available | deleting | deleted).

  • option.static-routes-only - Indicates whether the connection has static routes only. Used for devices that do not support Border Gateway Protocol (BGP).

  • route.destination-cidr-block - The destination CIDR block. This corresponds to the subnet used in a customer data center.

  • bgp-asn - The BGP Autonomous System Number (ASN) associated with a BGP device.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • type - The type of VPN connection. Currently the only supported type is ipsec.1.

  • vpn-connection-id - The ID of the VPN connection.

  • vpn-gateway-id - The ID of a virtual private gateway associated with the VPN connection.

  • transit-gateway-id - The ID of a transit gateway associated with the VPN connection.

', 'DescribeVpnGatewaysRequest$Filters' => '

One or more filters.

  • amazon-side-asn - The Autonomous System Number (ASN) for the Amazon side of the gateway.

  • attachment.state - The current state of the attachment between the gateway and the VPC (attaching | attached | detaching | detached).

  • attachment.vpc-id - The ID of an attached VPC.

  • availability-zone - The Availability Zone for the virtual private gateway (if applicable).

  • state - The state of the virtual private gateway (pending | available | deleting | deleted).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • type - The type of virtual private gateway. Currently the only supported type is ipsec.1.

  • vpn-gateway-id - The ID of the virtual private gateway.

', 'ExportTransitGatewayRoutesRequest$Filters' => '

One or more filters. The possible values are:

  • attachment.transit-gateway-attachment-id - The id of the transit gateway attachment.

  • attachment.resource-id - The resource id of the transit gateway attachment.

  • route-search.exact-match - The exact match of the specified filter.

  • route-search.longest-prefix-match - The longest prefix that matches the route.

  • route-search.subnet-of-match - The routes with a subnet that match the specified CIDR filter.

  • route-search.supernet-of-match - The routes with a CIDR that encompass the CIDR filter. For example, if you have 10.0.1.0/29 and 10.0.1.0/31 routes in your route table and you specify supernet-of-match as 10.0.1.0/30, then the result returns 10.0.1.0/29.

  • state - The state of the route (active | blackhole).

  • transit-gateway-route-destination-cidr-block - The CIDR range.

  • type - The type of route (propagated | static).

', 'GetCoipPoolUsageRequest$Filters' => '

One or more filters.

  • coip-address-usage.allocation-id - The allocation ID of the address.

  • coip-address-usage.aws-account-id - The ID of the Amazon Web Services account that is using the customer-owned IP address.

  • coip-address-usage.aws-service - The Amazon Web Services service that is using the customer-owned IP address.

  • coip-address-usage.co-ip - The customer-owned IP address.

', 'GetIpamDiscoveredAccountsRequest$Filters' => '

Discovered account filters.

', 'GetIpamDiscoveredPublicAddressesRequest$Filters' => '

Filters.

', 'GetIpamDiscoveredResourceCidrsRequest$Filters' => '

Filters.

', 'GetIpamPoolAllocationsRequest$Filters' => '

One or more filters for the request. For more information about filtering, see Filtering CLI output.

', 'GetIpamPoolCidrsRequest$Filters' => '

One or more filters for the request. For more information about filtering, see Filtering CLI output.

', 'GetIpamResourceCidrsRequest$Filters' => '

One or more filters for the request. For more information about filtering, see Filtering CLI output.

', 'GetSecurityGroupsForVpcRequest$Filters' => '

The filters. If using multiple filters, the results include security groups which match all filters.

  • group-id: The security group ID.

  • description: The security group\'s description.

  • group-name: The security group name.

  • owner-id: The security group owner ID.

  • primary-vpc-id: The VPC ID in which the security group was created.

', 'GetSubnetCidrReservationsRequest$Filters' => '

One or more filters.

  • reservationType - The type of reservation (prefix | explicit).

  • subnet-id - The ID of the subnet.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'GetTransitGatewayAttachmentPropagationsRequest$Filters' => '

One or more filters. The possible values are:

  • transit-gateway-route-table-id - The ID of the transit gateway route table.

', 'GetTransitGatewayMulticastDomainAssociationsRequest$Filters' => '

One or more filters. The possible values are:

  • resource-id - The ID of the resource.

  • resource-type - The type of resource. The valid value is: vpc.

  • state - The state of the subnet association. Valid values are associated | associating | disassociated | disassociating.

  • subnet-id - The ID of the subnet.

  • transit-gateway-attachment-id - The id of the transit gateway attachment.

', 'GetTransitGatewayPolicyTableAssociationsRequest$Filters' => '

The filters associated with the transit gateway policy table.

', 'GetTransitGatewayPolicyTableEntriesRequest$Filters' => '

The filters associated with the transit gateway policy table.

', 'GetTransitGatewayPrefixListReferencesRequest$Filters' => '

One or more filters. The possible values are:

  • attachment.resource-id - The ID of the resource for the attachment.

  • attachment.resource-type - The type of resource for the attachment. Valid values are vpc | vpn | direct-connect-gateway | peering.

  • attachment.transit-gateway-attachment-id - The ID of the attachment.

  • is-blackhole - Whether traffic matching the route is blocked (true | false).

  • prefix-list-id - The ID of the prefix list.

  • prefix-list-owner-id - The ID of the owner of the prefix list.

  • state - The state of the prefix list reference (pending | available | modifying | deleting).

', 'GetTransitGatewayRouteTableAssociationsRequest$Filters' => '

One or more filters. The possible values are:

  • resource-id - The ID of the resource.

  • resource-type - The resource type. Valid values are vpc | vpn | direct-connect-gateway | peering | connect.

  • transit-gateway-attachment-id - The ID of the attachment.

', 'GetTransitGatewayRouteTablePropagationsRequest$Filters' => '

One or more filters. The possible values are:

  • resource-id - The ID of the resource.

  • resource-type - The resource type. Valid values are vpc | vpn | direct-connect-gateway | peering | connect.

  • transit-gateway-attachment-id - The ID of the attachment.

', 'SearchLocalGatewayRoutesRequest$Filters' => '

One or more filters.

  • prefix-list-id - The ID of the prefix list.

  • route-search.exact-match - The exact match of the specified filter.

  • route-search.longest-prefix-match - The longest prefix that matches the route.

  • route-search.subnet-of-match - The routes with a subnet that match the specified CIDR filter.

  • route-search.supernet-of-match - The routes with a CIDR that encompass the CIDR filter. For example, if you have 10.0.1.0/29 and 10.0.1.0/31 routes in your route table and you specify supernet-of-match as 10.0.1.0/30, then the result returns 10.0.1.0/29.

  • state - The state of the route.

  • type - The route type.

', 'SearchTransitGatewayMulticastGroupsRequest$Filters' => '

One or more filters. The possible values are:

  • group-ip-address - The IP address of the transit gateway multicast group.

  • is-group-member - The resource is a group member. Valid values are true | false.

  • is-group-source - The resource is a group source. Valid values are true | false.

  • member-type - The member type. Valid values are igmp | static.

  • resource-id - The ID of the resource.

  • resource-type - The type of resource. Valid values are vpc | vpn | direct-connect-gateway | tgw-peering.

  • source-type - The source type. Valid values are igmp | static.

  • subnet-id - The ID of the subnet.

  • transit-gateway-attachment-id - The id of the transit gateway attachment.

', 'SearchTransitGatewayRoutesRequest$Filters' => '

One or more filters. The possible values are:

  • attachment.transit-gateway-attachment-id- The id of the transit gateway attachment.

  • attachment.resource-id - The resource id of the transit gateway attachment.

  • attachment.resource-type - The attachment resource type. Valid values are vpc | vpn | direct-connect-gateway | peering | connect.

  • prefix-list-id - The ID of the prefix list.

  • route-search.exact-match - The exact match of the specified filter.

  • route-search.longest-prefix-match - The longest prefix that matches the route.

  • route-search.subnet-of-match - The routes with a subnet that match the specified CIDR filter.

  • route-search.supernet-of-match - The routes with a CIDR that encompass the CIDR filter. For example, if you have 10.0.1.0/29 and 10.0.1.0/31 routes in your route table and you specify supernet-of-match as 10.0.1.0/30, then the result returns 10.0.1.0/29.

  • state - The state of the route (active | blackhole).

  • type - The type of route (propagated | static).

', ], ], 'FilterPortRange' => [ 'base' => '

Describes a port range.

', 'refs' => [ 'PathFilter$SourcePortRange' => '

The source port range.

', 'PathFilter$DestinationPortRange' => '

The destination port range.

', ], ], 'FindingsFound' => [ 'base' => NULL, 'refs' => [ 'NetworkInsightsAccessScopeAnalysis$FindingsFound' => '

Indicates whether there are findings.

', ], ], 'FirewallStatefulRule' => [ 'base' => '

Describes a stateful rule.

', 'refs' => [ 'Explanation$FirewallStatefulRule' => '

The Network Firewall stateful rule.

', 'PathComponent$FirewallStatefulRule' => '

The Network Firewall stateful rule.

', ], ], 'FirewallStatelessRule' => [ 'base' => '

Describes a stateless rule.

', 'refs' => [ 'Explanation$FirewallStatelessRule' => '

The Network Firewall stateless rule.

', 'PathComponent$FirewallStatelessRule' => '

The Network Firewall stateless rule.

', ], ], 'FleetActivityStatus' => [ 'base' => NULL, 'refs' => [ 'FleetData$ActivityStatus' => '

The progress of the EC2 Fleet. If there is an error, the status is error. After all requests are placed, the status is pending_fulfillment. If the size of the EC2 Fleet is equal to or greater than its target capacity, the status is fulfilled. If the size of the EC2 Fleet is decreased, the status is pending_termination while instances are terminating.

', ], ], 'FleetCapacityReservation' => [ 'base' => '

Information about a Capacity Reservation in a Capacity Reservation Fleet.

', 'refs' => [ 'FleetCapacityReservationSet$member' => NULL, ], ], 'FleetCapacityReservationSet' => [ 'base' => NULL, 'refs' => [ 'CapacityReservationFleet$InstanceTypeSpecifications' => '

Information about the instance types for which to reserve the capacity.

', 'CreateCapacityReservationFleetResult$FleetCapacityReservations' => '

Information about the individual Capacity Reservations in the Capacity Reservation Fleet.

', ], ], 'FleetCapacityReservationTenancy' => [ 'base' => NULL, 'refs' => [ 'CapacityReservationFleet$Tenancy' => '

The tenancy of the Capacity Reservation Fleet. Tenancies include:

  • default - The Capacity Reservation Fleet is created on hardware that is shared with other Amazon Web Services accounts.

  • dedicated - The Capacity Reservation Fleet is created on single-tenant hardware that is dedicated to a single Amazon Web Services account.

', 'CreateCapacityReservationFleetRequest$Tenancy' => '

Indicates the tenancy of the Capacity Reservation Fleet. All Capacity Reservations in the Fleet inherit this tenancy. The Capacity Reservation Fleet can have one of the following tenancy settings:

  • default - The Capacity Reservation Fleet is created on hardware that is shared with other Amazon Web Services accounts.

  • dedicated - The Capacity Reservations are created on single-tenant hardware that is dedicated to a single Amazon Web Services account.

', 'CreateCapacityReservationFleetResult$Tenancy' => '

Indicates the tenancy of Capacity Reservation Fleet.

', ], ], 'FleetCapacityReservationUsageStrategy' => [ 'base' => NULL, 'refs' => [ 'CapacityReservationOptions$UsageStrategy' => '

Indicates whether to use unused Capacity Reservations for fulfilling On-Demand capacity.

If you specify use-capacity-reservations-first, the fleet uses unused Capacity Reservations to fulfill On-Demand capacity up to the target On-Demand capacity. If multiple instance pools have unused Capacity Reservations, the On-Demand allocation strategy (lowest-price or prioritized) is applied. If the number of unused Capacity Reservations is less than the On-Demand target capacity, the remaining On-Demand target capacity is launched according to the On-Demand allocation strategy (lowest-price or prioritized).

If you do not specify a value, the fleet fulfils the On-Demand capacity according to the chosen On-Demand allocation strategy.

', 'CapacityReservationOptionsRequest$UsageStrategy' => '

Indicates whether to use unused Capacity Reservations for fulfilling On-Demand capacity.

If you specify use-capacity-reservations-first, the fleet uses unused Capacity Reservations to fulfill On-Demand capacity up to the target On-Demand capacity. If multiple instance pools have unused Capacity Reservations, the On-Demand allocation strategy (lowest-price or prioritized) is applied. If the number of unused Capacity Reservations is less than the On-Demand target capacity, the remaining On-Demand target capacity is launched according to the On-Demand allocation strategy (lowest-price or prioritized).

If you do not specify a value, the fleet fulfils the On-Demand capacity according to the chosen On-Demand allocation strategy.

', ], ], 'FleetData' => [ 'base' => '

Describes an EC2 Fleet.

', 'refs' => [ 'FleetSet$member' => NULL, ], ], 'FleetEventType' => [ 'base' => NULL, 'refs' => [ 'DescribeFleetHistoryRequest$EventType' => '

The type of events to describe. By default, all events are described.

', 'HistoryRecordEntry$EventType' => '

The event type.

', ], ], 'FleetExcessCapacityTerminationPolicy' => [ 'base' => NULL, 'refs' => [ 'CreateFleetRequest$ExcessCapacityTerminationPolicy' => '

Indicates whether running instances should be terminated if the total target capacity of the EC2 Fleet is decreased below the current size of the EC2 Fleet.

Supported only for fleets of type maintain.

', 'FleetData$ExcessCapacityTerminationPolicy' => '

Indicates whether running instances should be terminated if the target capacity of the EC2 Fleet is decreased below the current size of the EC2 Fleet.

Supported only for fleets of type maintain.

', 'ModifyFleetRequest$ExcessCapacityTerminationPolicy' => '

Indicates whether running instances should be terminated if the total target capacity of the EC2 Fleet is decreased below the current size of the EC2 Fleet.

Supported only for fleets of type maintain.

', ], ], 'FleetId' => [ 'base' => NULL, 'refs' => [ 'CreateFleetResult$FleetId' => '

The ID of the EC2 Fleet.

', 'DeleteFleetErrorItem$FleetId' => '

The ID of the EC2 Fleet.

', 'DeleteFleetSuccessItem$FleetId' => '

The ID of the EC2 Fleet.

', 'DescribeFleetHistoryRequest$FleetId' => '

The ID of the EC2 Fleet.

', 'DescribeFleetHistoryResult$FleetId' => '

The ID of the EC Fleet.

', 'DescribeFleetInstancesRequest$FleetId' => '

The ID of the EC2 Fleet.

', 'DescribeFleetInstancesResult$FleetId' => '

The ID of the EC2 Fleet.

', 'FleetData$FleetId' => '

The ID of the EC2 Fleet.

', 'FleetIdSet$member' => NULL, 'ModifyFleetRequest$FleetId' => '

The ID of the EC2 Fleet.

', ], ], 'FleetIdSet' => [ 'base' => NULL, 'refs' => [ 'DeleteFleetsRequest$FleetIds' => '

The IDs of the EC2 Fleets.

', 'DescribeFleetsRequest$FleetIds' => '

The IDs of the EC2 Fleets.

If a fleet is of type instant, you must specify the fleet ID, otherwise it does not appear in the response.

', ], ], 'FleetInstanceMatchCriteria' => [ 'base' => NULL, 'refs' => [ 'CapacityReservationFleet$InstanceMatchCriteria' => '

Indicates the type of instance launches that the Capacity Reservation Fleet accepts. All Capacity Reservations in the Fleet inherit this instance matching criteria.

Currently, Capacity Reservation Fleets support open instance matching criteria only. This means that instances that have matching attributes (instance type, platform, and Availability Zone) run in the Capacity Reservations automatically. Instances do not need to explicitly target a Capacity Reservation Fleet to use its reserved capacity.

', 'CreateCapacityReservationFleetRequest$InstanceMatchCriteria' => '

Indicates the type of instance launches that the Capacity Reservation Fleet accepts. All Capacity Reservations in the Fleet inherit this instance matching criteria.

Currently, Capacity Reservation Fleets support open instance matching criteria only. This means that instances that have matching attributes (instance type, platform, and Availability Zone) run in the Capacity Reservations automatically. Instances do not need to explicitly target a Capacity Reservation Fleet to use its reserved capacity.

', 'CreateCapacityReservationFleetResult$InstanceMatchCriteria' => '

The instance matching criteria for the Capacity Reservation Fleet.

', ], ], 'FleetLaunchTemplateConfig' => [ 'base' => '

Describes a launch template and overrides.

', 'refs' => [ 'FleetLaunchTemplateConfigList$member' => NULL, ], ], 'FleetLaunchTemplateConfigList' => [ 'base' => NULL, 'refs' => [ 'FleetData$LaunchTemplateConfigs' => '

The launch template and overrides.

', ], ], 'FleetLaunchTemplateConfigListRequest' => [ 'base' => NULL, 'refs' => [ 'CreateFleetRequest$LaunchTemplateConfigs' => '

The configuration for the EC2 Fleet.

', 'ModifyFleetRequest$LaunchTemplateConfigs' => '

The launch template and overrides.

', ], ], 'FleetLaunchTemplateConfigRequest' => [ 'base' => '

Describes a launch template and overrides.

', 'refs' => [ 'FleetLaunchTemplateConfigListRequest$member' => NULL, ], ], 'FleetLaunchTemplateOverrides' => [ 'base' => '

Describes overrides for a launch template.

', 'refs' => [ 'FleetLaunchTemplateOverridesList$member' => NULL, 'LaunchTemplateAndOverridesResponse$Overrides' => '

Any parameters that you specify override the same parameters in the launch template.

', ], ], 'FleetLaunchTemplateOverridesList' => [ 'base' => NULL, 'refs' => [ 'FleetLaunchTemplateConfig$Overrides' => '

Any parameters that you specify override the same parameters in the launch template.

', ], ], 'FleetLaunchTemplateOverridesListRequest' => [ 'base' => NULL, 'refs' => [ 'FleetLaunchTemplateConfigRequest$Overrides' => '

Any parameters that you specify override the same parameters in the launch template.

For fleets of type request and maintain, a maximum of 300 items is allowed across all launch templates.

', ], ], 'FleetLaunchTemplateOverridesRequest' => [ 'base' => '

Describes overrides for a launch template.

', 'refs' => [ 'FleetLaunchTemplateOverridesListRequest$member' => NULL, ], ], 'FleetLaunchTemplateSpecification' => [ 'base' => '

The Amazon EC2 launch template that can be used by a Spot Fleet to configure Amazon EC2 instances. You must specify either the ID or name of the launch template in the request, but not both.

For information about launch templates, see Launch an instance from a launch template in the Amazon EC2 User Guide.

', 'refs' => [ 'FleetLaunchTemplateConfig$LaunchTemplateSpecification' => '

The launch template.

', 'LaunchTemplateAndOverridesResponse$LaunchTemplateSpecification' => '

The launch template.

', 'LaunchTemplateConfig$LaunchTemplateSpecification' => '

The launch template to use. Make sure that the launch template does not contain the NetworkInterfaceId parameter because you can\'t specify a network interface ID in a Spot Fleet.

', ], ], 'FleetLaunchTemplateSpecificationRequest' => [ 'base' => '

The Amazon EC2 launch template that can be used by an EC2 Fleet to configure Amazon EC2 instances. You must specify either the ID or name of the launch template in the request, but not both.

For information about launch templates, see Launch an instance from a launch template in the Amazon EC2 User Guide.

', 'refs' => [ 'FleetLaunchTemplateConfigRequest$LaunchTemplateSpecification' => '

The launch template to use. You must specify either the launch template ID or launch template name in the request.

', ], ], 'FleetOnDemandAllocationStrategy' => [ 'base' => NULL, 'refs' => [ 'OnDemandOptions$AllocationStrategy' => '

The strategy that determines the order of the launch template overrides to use in fulfilling On-Demand capacity.

lowest-price - EC2 Fleet uses price to determine the order, launching the lowest price first.

prioritized - EC2 Fleet uses the priority that you assigned to each launch template override, launching the highest priority first.

Default: lowest-price

', 'OnDemandOptionsRequest$AllocationStrategy' => '

The strategy that determines the order of the launch template overrides to use in fulfilling On-Demand capacity.

lowest-price - EC2 Fleet uses price to determine the order, launching the lowest price first.

prioritized - EC2 Fleet uses the priority that you assigned to each launch template override, launching the highest priority first.

Default: lowest-price

', ], ], 'FleetReplacementStrategy' => [ 'base' => NULL, 'refs' => [ 'FleetSpotCapacityRebalance$ReplacementStrategy' => '

The replacement strategy to use. Only available for fleets of type maintain.

launch - EC2 Fleet launches a new replacement Spot Instance when a rebalance notification is emitted for an existing Spot Instance in the fleet. EC2 Fleet does not terminate the instances that receive a rebalance notification. You can terminate the old instances, or you can leave them running. You are charged for all instances while they are running.

launch-before-terminate - EC2 Fleet launches a new replacement Spot Instance when a rebalance notification is emitted for an existing Spot Instance in the fleet, and then, after a delay that you specify (in TerminationDelay), terminates the instances that received a rebalance notification.

', 'FleetSpotCapacityRebalanceRequest$ReplacementStrategy' => '

The replacement strategy to use. Only available for fleets of type maintain.

launch - EC2 Fleet launches a replacement Spot Instance when a rebalance notification is emitted for an existing Spot Instance in the fleet. EC2 Fleet does not terminate the instances that receive a rebalance notification. You can terminate the old instances, or you can leave them running. You are charged for all instances while they are running.

launch-before-terminate - EC2 Fleet launches a replacement Spot Instance when a rebalance notification is emitted for an existing Spot Instance in the fleet, and then, after a delay that you specify (in TerminationDelay), terminates the instances that received a rebalance notification.

', ], ], 'FleetSet' => [ 'base' => NULL, 'refs' => [ 'DescribeFleetsResult$Fleets' => '

Information about the EC2 Fleets.

', ], ], 'FleetSpotCapacityRebalance' => [ 'base' => '

The strategy to use when Amazon EC2 emits a signal that your Spot Instance is at an elevated risk of being interrupted.

', 'refs' => [ 'FleetSpotMaintenanceStrategies$CapacityRebalance' => '

The strategy to use when Amazon EC2 emits a signal that your Spot Instance is at an elevated risk of being interrupted.

', ], ], 'FleetSpotCapacityRebalanceRequest' => [ 'base' => '

The Spot Instance replacement strategy to use when Amazon EC2 emits a rebalance notification signal that your Spot Instance is at an elevated risk of being interrupted. For more information, see Capacity rebalancing in the Amazon EC2 User Guide.

', 'refs' => [ 'FleetSpotMaintenanceStrategiesRequest$CapacityRebalance' => '

The strategy to use when Amazon EC2 emits a signal that your Spot Instance is at an elevated risk of being interrupted.

', ], ], 'FleetSpotMaintenanceStrategies' => [ 'base' => '

The strategies for managing your Spot Instances that are at an elevated risk of being interrupted.

', 'refs' => [ 'SpotOptions$MaintenanceStrategies' => '

The strategies for managing your workloads on your Spot Instances that will be interrupted. Currently only the capacity rebalance strategy is available.

', ], ], 'FleetSpotMaintenanceStrategiesRequest' => [ 'base' => '

The strategies for managing your Spot Instances that are at an elevated risk of being interrupted.

', 'refs' => [ 'SpotOptionsRequest$MaintenanceStrategies' => '

The strategies for managing your Spot Instances that are at an elevated risk of being interrupted.

', ], ], 'FleetStateCode' => [ 'base' => NULL, 'refs' => [ 'DeleteFleetSuccessItem$CurrentFleetState' => '

The current state of the EC2 Fleet.

', 'DeleteFleetSuccessItem$PreviousFleetState' => '

The previous state of the EC2 Fleet.

', 'FleetData$FleetState' => '

The state of the EC2 Fleet.

', ], ], 'FleetType' => [ 'base' => NULL, 'refs' => [ 'CreateFleetRequest$Type' => '

The fleet type. The default value is maintain.

  • maintain - The EC2 Fleet places an asynchronous request for your desired capacity, and continues to maintain your desired Spot capacity by replenishing interrupted Spot Instances.

  • request - The EC2 Fleet places an asynchronous one-time request for your desired capacity, but does submit Spot requests in alternative capacity pools if Spot capacity is unavailable, and does not maintain Spot capacity if Spot Instances are interrupted.

  • instant - The EC2 Fleet places a synchronous one-time request for your desired capacity, and returns errors for any instances that could not be launched.

For more information, see EC2 Fleet request types in the Amazon EC2 User Guide.

', 'FleetData$Type' => '

The type of request. Indicates whether the EC2 Fleet only requests the target capacity, or also attempts to maintain it. If you request a certain target capacity, EC2 Fleet only places the required requests; it does not attempt to replenish instances if capacity is diminished, and it does not submit requests in alternative capacity pools if capacity is unavailable. To maintain a certain target capacity, EC2 Fleet places the required requests to meet this target capacity. It also automatically replenishes any interrupted Spot Instances. Default: maintain.

', 'SpotFleetRequestConfigData$Type' => '

The type of request. Indicates whether the Spot Fleet only requests the target capacity or also attempts to maintain it. When this value is request, the Spot Fleet only places the required requests. It does not attempt to replenish Spot Instances if capacity is diminished, nor does it submit requests in alternative Spot pools if capacity is not available. When this value is maintain, the Spot Fleet maintains the target capacity. The Spot Fleet places the required requests to meet capacity and automatically replenishes any interrupted instances. Default: maintain. instant is listed but is not used by Spot Fleet.

', ], ], 'Float' => [ 'base' => NULL, 'refs' => [ 'MetricPoint$Value' => NULL, 'ReservedInstances$FixedPrice' => '

The purchase price of the Reserved Instance.

', 'ReservedInstances$UsagePrice' => '

The usage price of the Reserved Instance, per hour.

', 'ReservedInstancesOffering$FixedPrice' => '

The purchase price of the Reserved Instance.

', 'ReservedInstancesOffering$UsagePrice' => '

The usage price of the Reserved Instance, per hour.

', ], ], 'FlowLog' => [ 'base' => '

Describes a flow log.

', 'refs' => [ 'FlowLogSet$member' => NULL, ], ], 'FlowLogIdList' => [ 'base' => NULL, 'refs' => [ 'DeleteFlowLogsRequest$FlowLogIds' => '

One or more flow log IDs.

Constraint: Maximum of 1000 flow log IDs.

', 'DescribeFlowLogsRequest$FlowLogIds' => '

One or more flow log IDs.

Constraint: Maximum of 1000 flow log IDs.

', ], ], 'FlowLogResourceId' => [ 'base' => NULL, 'refs' => [ 'FlowLogResourceIds$member' => NULL, ], ], 'FlowLogResourceIds' => [ 'base' => NULL, 'refs' => [ 'CreateFlowLogsRequest$ResourceIds' => '

The IDs of the resources to monitor. For example, if the resource type is VPC, specify the IDs of the VPCs.

Constraints: Maximum of 25 for transit gateway resource types. Maximum of 1000 for the other resource types.

', ], ], 'FlowLogSet' => [ 'base' => NULL, 'refs' => [ 'DescribeFlowLogsResult$FlowLogs' => '

Information about the flow logs.

', ], ], 'FlowLogsResourceType' => [ 'base' => NULL, 'refs' => [ 'CreateFlowLogsRequest$ResourceType' => '

The type of resource to monitor.

', ], ], 'FpgaDeviceCount' => [ 'base' => NULL, 'refs' => [ 'FpgaDeviceInfo$Count' => '

The count of FPGA accelerators for the instance type.

', ], ], 'FpgaDeviceInfo' => [ 'base' => '

Describes the FPGA accelerator for the instance type.

', 'refs' => [ 'FpgaDeviceInfoList$member' => NULL, ], ], 'FpgaDeviceInfoList' => [ 'base' => NULL, 'refs' => [ 'FpgaInfo$Fpgas' => '

Describes the FPGAs for the instance type.

', ], ], 'FpgaDeviceManufacturerName' => [ 'base' => NULL, 'refs' => [ 'FpgaDeviceInfo$Manufacturer' => '

The manufacturer of the FPGA accelerator.

', ], ], 'FpgaDeviceMemoryInfo' => [ 'base' => '

Describes the memory for the FPGA accelerator for the instance type.

', 'refs' => [ 'FpgaDeviceInfo$MemoryInfo' => '

Describes the memory for the FPGA accelerator for the instance type.

', ], ], 'FpgaDeviceMemorySize' => [ 'base' => NULL, 'refs' => [ 'FpgaDeviceMemoryInfo$SizeInMiB' => '

The size of the memory available to the FPGA accelerator, in MiB.

', ], ], 'FpgaDeviceName' => [ 'base' => NULL, 'refs' => [ 'FpgaDeviceInfo$Name' => '

The name of the FPGA accelerator.

', ], ], 'FpgaImage' => [ 'base' => '

Describes an Amazon FPGA image (AFI).

', 'refs' => [ 'FpgaImageList$member' => NULL, ], ], 'FpgaImageAttribute' => [ 'base' => '

Describes an Amazon FPGA image (AFI) attribute.

', 'refs' => [ 'DescribeFpgaImageAttributeResult$FpgaImageAttribute' => '

Information about the attribute.

', 'ModifyFpgaImageAttributeResult$FpgaImageAttribute' => '

Information about the attribute.

', ], ], 'FpgaImageAttributeName' => [ 'base' => NULL, 'refs' => [ 'DescribeFpgaImageAttributeRequest$Attribute' => '

The AFI attribute.

', 'ModifyFpgaImageAttributeRequest$Attribute' => '

The name of the attribute.

', ], ], 'FpgaImageId' => [ 'base' => NULL, 'refs' => [ 'DeleteFpgaImageRequest$FpgaImageId' => '

The ID of the AFI.

', 'DescribeFpgaImageAttributeRequest$FpgaImageId' => '

The ID of the AFI.

', 'FpgaImageIdList$member' => NULL, 'ModifyFpgaImageAttributeRequest$FpgaImageId' => '

The ID of the AFI.

', 'ResetFpgaImageAttributeRequest$FpgaImageId' => '

The ID of the AFI.

', ], ], 'FpgaImageIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeFpgaImagesRequest$FpgaImageIds' => '

The AFI IDs.

', ], ], 'FpgaImageList' => [ 'base' => NULL, 'refs' => [ 'DescribeFpgaImagesResult$FpgaImages' => '

Information about the FPGA images.

', ], ], 'FpgaImageState' => [ 'base' => '

Describes the state of the bitstream generation process for an Amazon FPGA image (AFI).

', 'refs' => [ 'FpgaImage$State' => '

Information about the state of the AFI.

', ], ], 'FpgaImageStateCode' => [ 'base' => NULL, 'refs' => [ 'FpgaImageState$Code' => '

The state. The following are the possible values:

  • pending - AFI bitstream generation is in progress.

  • available - The AFI is available for use.

  • failed - AFI bitstream generation failed.

  • unavailable - The AFI is no longer available for use.

', ], ], 'FpgaInfo' => [ 'base' => '

Describes the FPGAs for the instance type.

', 'refs' => [ 'InstanceTypeInfo$FpgaInfo' => '

Describes the FPGA accelerator settings for the instance type.

', ], ], 'FreeTierEligibleFlag' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$FreeTierEligible' => '

Indicates whether the instance type is eligible for the free tier.

', ], ], 'GVCDMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetVpnConnectionDeviceTypesRequest$MaxResults' => '

The maximum number of results returned by GetVpnConnectionDeviceTypes in paginated output. When this parameter is used, GetVpnConnectionDeviceTypes only returns MaxResults results in a single page along with a NextToken response element. The remaining results of the initial request can be seen by sending another GetVpnConnectionDeviceTypes request with the returned NextToken value. This value can be between 200 and 1000. If this parameter is not used, then GetVpnConnectionDeviceTypes returns all results.

', ], ], 'GatewayAssociationState' => [ 'base' => NULL, 'refs' => [ 'VpnConnection$GatewayAssociationState' => '

The current state of the gateway association.

', ], ], 'GatewayType' => [ 'base' => NULL, 'refs' => [ 'CreateCustomerGatewayRequest$Type' => '

The type of VPN connection that this customer gateway supports (ipsec.1).

', 'CreateVpnGatewayRequest$Type' => '

The type of VPN connection this virtual private gateway supports.

', 'VpnConnection$Type' => '

The type of VPN connection.

', 'VpnGateway$Type' => '

The type of VPN connection the virtual private gateway supports.

', ], ], 'GetAssociatedEnclaveCertificateIamRolesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetAssociatedEnclaveCertificateIamRolesResult' => [ 'base' => NULL, 'refs' => [], ], 'GetAssociatedIpv6PoolCidrsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetAssociatedIpv6PoolCidrsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetAwsNetworkPerformanceDataRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetAwsNetworkPerformanceDataResult' => [ 'base' => NULL, 'refs' => [], ], 'GetCapacityReservationUsageRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetCapacityReservationUsageRequestMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetCapacityReservationUsageRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'GetCapacityReservationUsageResult' => [ 'base' => NULL, 'refs' => [], ], 'GetCoipPoolUsageRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetCoipPoolUsageResult' => [ 'base' => NULL, 'refs' => [], ], 'GetConsoleOutputRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetConsoleOutputResult' => [ 'base' => NULL, 'refs' => [], ], 'GetConsoleScreenshotRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetConsoleScreenshotResult' => [ 'base' => NULL, 'refs' => [], ], 'GetDefaultCreditSpecificationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetDefaultCreditSpecificationResult' => [ 'base' => NULL, 'refs' => [], ], 'GetEbsDefaultKmsKeyIdRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetEbsDefaultKmsKeyIdResult' => [ 'base' => NULL, 'refs' => [], ], 'GetEbsEncryptionByDefaultRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetEbsEncryptionByDefaultResult' => [ 'base' => NULL, 'refs' => [], ], 'GetFlowLogsIntegrationTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetFlowLogsIntegrationTemplateResult' => [ 'base' => NULL, 'refs' => [], ], 'GetGroupsForCapacityReservationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetGroupsForCapacityReservationRequestMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetGroupsForCapacityReservationRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'GetGroupsForCapacityReservationResult' => [ 'base' => NULL, 'refs' => [], ], 'GetHostReservationPurchasePreviewRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetHostReservationPurchasePreviewResult' => [ 'base' => NULL, 'refs' => [], ], 'GetImageBlockPublicAccessStateRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetImageBlockPublicAccessStateResult' => [ 'base' => NULL, 'refs' => [], ], 'GetInstanceTypesFromInstanceRequirementsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetInstanceTypesFromInstanceRequirementsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetInstanceUefiDataRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetInstanceUefiDataResult' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamAddressHistoryRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamAddressHistoryResult' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamDiscoveredAccountsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamDiscoveredAccountsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamDiscoveredPublicAddressesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamDiscoveredPublicAddressesResult' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamDiscoveredResourceCidrsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamDiscoveredResourceCidrsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamPoolAllocationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetIpamPoolAllocationsRequest$MaxResults' => '

The maximum number of results you would like returned per page.

', ], ], 'GetIpamPoolAllocationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamPoolAllocationsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamPoolCidrsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamPoolCidrsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamResourceCidrsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamResourceCidrsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetLaunchTemplateDataRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetLaunchTemplateDataResult' => [ 'base' => NULL, 'refs' => [], ], 'GetManagedPrefixListAssociationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetManagedPrefixListAssociationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'GetManagedPrefixListAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetManagedPrefixListAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetManagedPrefixListEntriesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetManagedPrefixListEntriesResult' => [ 'base' => NULL, 'refs' => [], ], 'GetNetworkInsightsAccessScopeAnalysisFindingsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetNetworkInsightsAccessScopeAnalysisFindingsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetNetworkInsightsAccessScopeContentRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetNetworkInsightsAccessScopeContentResult' => [ 'base' => NULL, 'refs' => [], ], 'GetPasswordDataRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetPasswordDataResult' => [ 'base' => NULL, 'refs' => [], ], 'GetReservedInstancesExchangeQuoteRequest' => [ 'base' => '

Contains the parameters for GetReservedInstanceExchangeQuote.

', 'refs' => [], ], 'GetReservedInstancesExchangeQuoteResult' => [ 'base' => '

Contains the output of GetReservedInstancesExchangeQuote.

', 'refs' => [], ], 'GetSecurityGroupsForVpcRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSecurityGroupsForVpcRequestMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetSecurityGroupsForVpcRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'GetSecurityGroupsForVpcResult' => [ 'base' => NULL, 'refs' => [], ], 'GetSerialConsoleAccessStatusRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSerialConsoleAccessStatusResult' => [ 'base' => NULL, 'refs' => [], ], 'GetSnapshotBlockPublicAccessStateRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSnapshotBlockPublicAccessStateResult' => [ 'base' => NULL, 'refs' => [], ], 'GetSpotPlacementScoresRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSpotPlacementScoresResult' => [ 'base' => NULL, 'refs' => [], ], 'GetSubnetCidrReservationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetSubnetCidrReservationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'GetSubnetCidrReservationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSubnetCidrReservationsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayAttachmentPropagationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayAttachmentPropagationsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayMulticastDomainAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayMulticastDomainAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayPolicyTableAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayPolicyTableAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayPolicyTableEntriesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayPolicyTableEntriesResult' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayPrefixListReferencesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayPrefixListReferencesResult' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayRouteTableAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayRouteTableAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayRouteTablePropagationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayRouteTablePropagationsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetVerifiedAccessEndpointPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetVerifiedAccessEndpointPolicyResult' => [ 'base' => NULL, 'refs' => [], ], 'GetVerifiedAccessGroupPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetVerifiedAccessGroupPolicyResult' => [ 'base' => NULL, 'refs' => [], ], 'GetVpnConnectionDeviceSampleConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetVpnConnectionDeviceSampleConfigurationResult' => [ 'base' => NULL, 'refs' => [], ], 'GetVpnConnectionDeviceTypesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetVpnConnectionDeviceTypesResult' => [ 'base' => NULL, 'refs' => [], ], 'GetVpnTunnelReplacementStatusRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetVpnTunnelReplacementStatusResult' => [ 'base' => NULL, 'refs' => [], ], 'GpuDeviceCount' => [ 'base' => NULL, 'refs' => [ 'GpuDeviceInfo$Count' => '

The number of GPUs for the instance type.

', ], ], 'GpuDeviceInfo' => [ 'base' => '

Describes the GPU accelerators for the instance type.

', 'refs' => [ 'GpuDeviceInfoList$member' => NULL, ], ], 'GpuDeviceInfoList' => [ 'base' => NULL, 'refs' => [ 'GpuInfo$Gpus' => '

Describes the GPU accelerators for the instance type.

', ], ], 'GpuDeviceManufacturerName' => [ 'base' => NULL, 'refs' => [ 'GpuDeviceInfo$Manufacturer' => '

The manufacturer of the GPU accelerator.

', ], ], 'GpuDeviceMemoryInfo' => [ 'base' => '

Describes the memory available to the GPU accelerator.

', 'refs' => [ 'GpuDeviceInfo$MemoryInfo' => '

Describes the memory available to the GPU accelerator.

', ], ], 'GpuDeviceMemorySize' => [ 'base' => NULL, 'refs' => [ 'GpuDeviceMemoryInfo$SizeInMiB' => '

The size of the memory available to the GPU accelerator, in MiB.

', ], ], 'GpuDeviceName' => [ 'base' => NULL, 'refs' => [ 'GpuDeviceInfo$Name' => '

The name of the GPU accelerator.

', ], ], 'GpuInfo' => [ 'base' => '

Describes the GPU accelerators for the instance type.

', 'refs' => [ 'InstanceTypeInfo$GpuInfo' => '

Describes the GPU accelerator settings for the instance type.

', ], ], 'GroupIdStringList' => [ 'base' => NULL, 'refs' => [ 'AttachClassicLinkVpcRequest$Groups' => '

The IDs of the security groups. You cannot specify security groups from a different VPC.

', 'DescribeSecurityGroupsRequest$GroupIds' => '

The IDs of the security groups. Required for security groups in a nondefault VPC.

Default: Describes all of your security groups.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$Groups' => '

The IDs of one or more security groups.

', 'ModifyInstanceAttributeRequest$Groups' => '

Replaces the security groups of the instance with the specified security groups. You must specify the ID of at least one security group, even if it\'s just the default security group for the VPC.

', ], ], 'GroupIdentifier' => [ 'base' => '

Describes a security group.

', 'refs' => [ 'GroupIdentifierList$member' => NULL, ], ], 'GroupIdentifierList' => [ 'base' => NULL, 'refs' => [ 'ClassicLinkInstance$Groups' => '

The security groups.

', 'DescribeNetworkInterfaceAttributeResult$Groups' => '

The security groups associated with the network interface.

', 'Instance$SecurityGroups' => '

The security groups for the instance.

', 'InstanceAttribute$Groups' => '

The security groups associated with the instance.

', 'InstanceNetworkInterface$Groups' => '

The security groups.

', 'LaunchSpecification$SecurityGroups' => '

The IDs of the security groups.

', 'NetworkInterface$Groups' => '

Any security groups for the network interface.

', 'Reservation$Groups' => '

Not supported.

', 'SpotFleetLaunchSpecification$SecurityGroups' => '

The security groups.

', ], ], 'GroupIdentifierSet' => [ 'base' => NULL, 'refs' => [ 'VpcEndpoint$Groups' => '

(Interface endpoint) Information about the security groups that are associated with the network interface.

', ], ], 'GroupIds' => [ 'base' => NULL, 'refs' => [ 'DescribeSecurityGroupReferencesRequest$GroupId' => '

The IDs of the security groups in your account.

', ], ], 'GroupNameStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeSecurityGroupsRequest$GroupNames' => '

[Default VPC] The names of the security groups. You can specify either the security group name or the security group ID.

Default: Describes all of your security groups.

', 'ModifySnapshotAttributeRequest$GroupNames' => '

The group to modify for the snapshot.

', ], ], 'HibernationFlag' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$HibernationSupported' => '

Indicates whether On-Demand hibernation is supported.

', ], ], 'HibernationOptions' => [ 'base' => '

Indicates whether your instance is configured for hibernation. This parameter is valid only if the instance meets the hibernation prerequisites. For more information, see Hibernate your instance in the Amazon EC2 User Guide.

', 'refs' => [ 'Instance$HibernationOptions' => '

Indicates whether the instance is enabled for hibernation.

', ], ], 'HibernationOptionsRequest' => [ 'base' => '

Indicates whether your instance is configured for hibernation. This parameter is valid only if the instance meets the hibernation prerequisites. For more information, see Hibernate your instance in the Amazon EC2 User Guide.

', 'refs' => [ 'RunInstancesRequest$HibernationOptions' => '

Indicates whether an instance is enabled for hibernation. This parameter is valid only if the instance meets the hibernation prerequisites. For more information, see Hibernate your instance in the Amazon EC2 User Guide.

You can\'t enable hibernation and Amazon Web Services Nitro Enclaves on the same instance.

', ], ], 'HistoryRecord' => [ 'base' => '

Describes an event in the history of the Spot Fleet request.

', 'refs' => [ 'HistoryRecords$member' => NULL, ], ], 'HistoryRecordEntry' => [ 'base' => '

Describes an event in the history of an EC2 Fleet.

', 'refs' => [ 'HistoryRecordSet$member' => NULL, ], ], 'HistoryRecordSet' => [ 'base' => NULL, 'refs' => [ 'DescribeFleetHistoryResult$HistoryRecords' => '

Information about the events in the history of the EC2 Fleet.

', ], ], 'HistoryRecords' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotFleetRequestHistoryResponse$HistoryRecords' => '

Information about the events in the history of the Spot Fleet request.

', ], ], 'Host' => [ 'base' => '

Describes the properties of the Dedicated Host.

', 'refs' => [ 'HostList$member' => NULL, ], ], 'HostInstance' => [ 'base' => '

Describes an instance running on a Dedicated Host.

', 'refs' => [ 'HostInstanceList$member' => NULL, ], ], 'HostInstanceList' => [ 'base' => NULL, 'refs' => [ 'Host$Instances' => '

The IDs and instance type that are currently running on the Dedicated Host.

', ], ], 'HostList' => [ 'base' => NULL, 'refs' => [ 'DescribeHostsResult$Hosts' => '

Information about the Dedicated Hosts.

', ], ], 'HostMaintenance' => [ 'base' => NULL, 'refs' => [ 'AllocateHostsRequest$HostMaintenance' => '

Indicates whether to enable or disable host maintenance for the Dedicated Host. For more information, see Host maintenance in the Amazon EC2 User Guide.

', 'Host$HostMaintenance' => '

Indicates whether host maintenance is enabled or disabled for the Dedicated Host.

', 'ModifyHostsRequest$HostMaintenance' => '

Indicates whether to enable or disable host maintenance for the Dedicated Host. For more information, see Host maintenance in the Amazon EC2 User Guide.

', ], ], 'HostOffering' => [ 'base' => '

Details about the Dedicated Host Reservation offering.

', 'refs' => [ 'HostOfferingSet$member' => NULL, ], ], 'HostOfferingSet' => [ 'base' => NULL, 'refs' => [ 'DescribeHostReservationOfferingsResult$OfferingSet' => '

Information about the offerings.

', ], ], 'HostProperties' => [ 'base' => '

Describes the properties of a Dedicated Host.

', 'refs' => [ 'Host$HostProperties' => '

The hardware specifications of the Dedicated Host.

', ], ], 'HostRecovery' => [ 'base' => NULL, 'refs' => [ 'AllocateHostsRequest$HostRecovery' => '

Indicates whether to enable or disable host recovery for the Dedicated Host. Host recovery is disabled by default. For more information, see Host recovery in the Amazon EC2 User Guide.

Default: off

', 'Host$HostRecovery' => '

Indicates whether host recovery is enabled or disabled for the Dedicated Host.

', 'ModifyHostsRequest$HostRecovery' => '

Indicates whether to enable or disable host recovery for the Dedicated Host. For more information, see Host recovery in the Amazon EC2 User Guide.

', ], ], 'HostReservation' => [ 'base' => '

Details about the Dedicated Host Reservation and associated Dedicated Hosts.

', 'refs' => [ 'HostReservationSet$member' => NULL, ], ], 'HostReservationId' => [ 'base' => NULL, 'refs' => [ 'HostReservation$HostReservationId' => '

The ID of the reservation that specifies the associated Dedicated Hosts.

', 'HostReservationIdSet$member' => NULL, 'Purchase$HostReservationId' => '

The ID of the reservation.

', ], ], 'HostReservationIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeHostReservationsRequest$HostReservationIdSet' => '

The host reservation IDs.

', ], ], 'HostReservationSet' => [ 'base' => NULL, 'refs' => [ 'DescribeHostReservationsResult$HostReservationSet' => '

Details about the reservation\'s configuration.

', ], ], 'HostTenancy' => [ 'base' => NULL, 'refs' => [ 'ModifyInstancePlacementRequest$Tenancy' => '

The tenancy for the instance.

For T3 instances, you must launch the instance on a Dedicated Host to use a tenancy of host. You can\'t change the tenancy from host to dedicated or default. Attempting to make one of these unsupported tenancy changes results in an InvalidRequest error code.

', ], ], 'HostnameType' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplatePrivateDnsNameOptions$HostnameType' => '

The type of hostname to assign to an instance.

', 'LaunchTemplatePrivateDnsNameOptionsRequest$HostnameType' => '

The type of hostname for Amazon EC2 instances. For IPv4 only subnets, an instance DNS name must be based on the instance IPv4 address. For IPv6 native subnets, an instance DNS name must be based on the instance ID. For dual-stack subnets, you can specify whether DNS names use the instance IPv4 address or the instance ID.

', 'ModifyPrivateDnsNameOptionsRequest$PrivateDnsHostnameType' => '

The type of hostname for EC2 instances. For IPv4 only subnets, an instance DNS name must be based on the instance IPv4 address. For IPv6 only subnets, an instance DNS name must be based on the instance ID. For dual-stack subnets, you can specify whether DNS names use the instance IPv4 address or the instance ID.

', 'ModifySubnetAttributeRequest$PrivateDnsHostnameTypeOnLaunch' => '

The type of hostname to assign to instances in the subnet at launch. For IPv4-only and dual-stack (IPv4 and IPv6) subnets, an instance DNS name can be based on the instance IPv4 address (ip-name) or the instance ID (resource-name). For IPv6 only subnets, an instance DNS name must be based on the instance ID (resource-name).

', 'PrivateDnsNameOptionsOnLaunch$HostnameType' => '

The type of hostname for EC2 instances. For IPv4 only subnets, an instance DNS name must be based on the instance IPv4 address. For IPv6 only subnets, an instance DNS name must be based on the instance ID. For dual-stack subnets, you can specify whether DNS names use the instance IPv4 address or the instance ID.

', 'PrivateDnsNameOptionsRequest$HostnameType' => '

The type of hostname for EC2 instances. For IPv4 only subnets, an instance DNS name must be based on the instance IPv4 address. For IPv6 only subnets, an instance DNS name must be based on the instance ID. For dual-stack subnets, you can specify whether DNS names use the instance IPv4 address or the instance ID.

', 'PrivateDnsNameOptionsResponse$HostnameType' => '

The type of hostname to assign to an instance.

', ], ], 'Hour' => [ 'base' => NULL, 'refs' => [ 'InstanceEventWindowTimeRange$StartHour' => '

The hour when the time range begins.

', 'InstanceEventWindowTimeRange$EndHour' => '

The hour when the time range ends.

', 'InstanceEventWindowTimeRangeRequest$StartHour' => '

The hour when the time range begins.

', 'InstanceEventWindowTimeRangeRequest$EndHour' => '

The hour when the time range ends.

', ], ], 'HttpTokensState' => [ 'base' => NULL, 'refs' => [ 'InstanceMetadataOptionsRequest$HttpTokens' => '

Indicates whether IMDSv2 is required.

  • optional - IMDSv2 is optional. You can choose whether to send a session token in your instance metadata retrieval requests. If you retrieve IAM role credentials without a session token, you receive the IMDSv1 role credentials. If you retrieve IAM role credentials using a valid session token, you receive the IMDSv2 role credentials.

  • required - IMDSv2 is required. You must send a session token in your instance metadata retrieval requests. With this option, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available.

Default: If the value of ImdsSupport for the Amazon Machine Image (AMI) for your instance is v2.0, the default is required.

', 'InstanceMetadataOptionsResponse$HttpTokens' => '

Indicates whether IMDSv2 is required.

  • optional - IMDSv2 is optional. You can choose whether to send a session token in your instance metadata retrieval requests. If you retrieve IAM role credentials without a session token, you receive the IMDSv1 role credentials. If you retrieve IAM role credentials using a valid session token, you receive the IMDSv2 role credentials.

  • required - IMDSv2 is required. You must send a session token in your instance metadata retrieval requests. With this option, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available.

', 'ModifyInstanceMetadataOptionsRequest$HttpTokens' => '

Indicates whether IMDSv2 is required.

  • optional - IMDSv2 is optional. You can choose whether to send a session token in your instance metadata retrieval requests. If you retrieve IAM role credentials without a session token, you receive the IMDSv1 role credentials. If you retrieve IAM role credentials using a valid session token, you receive the IMDSv2 role credentials.

  • required - IMDSv2 is required. You must send a session token in your instance metadata retrieval requests. With this option, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available.

Default: If the value of ImdsSupport for the Amazon Machine Image (AMI) for your instance is v2.0, the default is required.

', ], ], 'HypervisorType' => [ 'base' => NULL, 'refs' => [ 'Image$Hypervisor' => '

The hypervisor type of the image. Only xen is supported. ovm is not supported.

', 'Instance$Hypervisor' => '

The hypervisor type of the instance. The value xen is used for both Xen and Nitro hypervisors.

', ], ], 'IKEVersionsList' => [ 'base' => NULL, 'refs' => [ 'TunnelOption$IkeVersions' => '

The IKE versions that are permitted for the VPN tunnel.

', ], ], 'IKEVersionsListValue' => [ 'base' => '

The internet key exchange (IKE) version permitted for the VPN tunnel.

', 'refs' => [ 'IKEVersionsList$member' => NULL, ], ], 'IKEVersionsRequestList' => [ 'base' => NULL, 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$IKEVersions' => '

The IKE versions that are permitted for the VPN tunnel.

Valid values: ikev1 | ikev2

', 'VpnTunnelOptionsSpecification$IKEVersions' => '

The IKE versions that are permitted for the VPN tunnel.

Valid values: ikev1 | ikev2

', ], ], 'IKEVersionsRequestListValue' => [ 'base' => '

The IKE version that is permitted for the VPN tunnel.

', 'refs' => [ 'IKEVersionsRequestList$member' => NULL, ], ], 'IamInstanceProfile' => [ 'base' => '

Describes an IAM instance profile.

', 'refs' => [ 'IamInstanceProfileAssociation$IamInstanceProfile' => '

The IAM instance profile.

', 'Instance$IamInstanceProfile' => '

The IAM instance profile associated with the instance, if applicable.

', ], ], 'IamInstanceProfileAssociation' => [ 'base' => '

Describes an association between an IAM instance profile and an instance.

', 'refs' => [ 'AssociateIamInstanceProfileResult$IamInstanceProfileAssociation' => '

Information about the IAM instance profile association.

', 'DisassociateIamInstanceProfileResult$IamInstanceProfileAssociation' => '

Information about the IAM instance profile association.

', 'IamInstanceProfileAssociationSet$member' => NULL, 'ReplaceIamInstanceProfileAssociationResult$IamInstanceProfileAssociation' => '

Information about the IAM instance profile association.

', ], ], 'IamInstanceProfileAssociationId' => [ 'base' => NULL, 'refs' => [ 'AssociationIdList$member' => NULL, 'DisassociateIamInstanceProfileRequest$AssociationId' => '

The ID of the IAM instance profile association.

', 'ReplaceIamInstanceProfileAssociationRequest$AssociationId' => '

The ID of the existing IAM instance profile association.

', ], ], 'IamInstanceProfileAssociationSet' => [ 'base' => NULL, 'refs' => [ 'DescribeIamInstanceProfileAssociationsResult$IamInstanceProfileAssociations' => '

Information about the IAM instance profile associations.

', ], ], 'IamInstanceProfileAssociationState' => [ 'base' => NULL, 'refs' => [ 'IamInstanceProfileAssociation$State' => '

The state of the association.

', ], ], 'IamInstanceProfileSpecification' => [ 'base' => '

Describes an IAM instance profile.

', 'refs' => [ 'AssociateIamInstanceProfileRequest$IamInstanceProfile' => '

The IAM instance profile.

', 'LaunchSpecification$IamInstanceProfile' => '

The IAM instance profile.

', 'ReplaceIamInstanceProfileAssociationRequest$IamInstanceProfile' => '

The IAM instance profile.

', 'RequestSpotLaunchSpecification$IamInstanceProfile' => '

The IAM instance profile.

', 'RunInstancesRequest$IamInstanceProfile' => '

The name or Amazon Resource Name (ARN) of an IAM instance profile.

', 'SpotFleetLaunchSpecification$IamInstanceProfile' => '

The IAM instance profile.

', ], ], 'IcmpTypeCode' => [ 'base' => '

Describes the ICMP type and code.

', 'refs' => [ 'CreateNetworkAclEntryRequest$IcmpTypeCode' => '

ICMP protocol: The ICMP or ICMPv6 type and code. Required if specifying protocol 1 (ICMP) or protocol 58 (ICMPv6) with an IPv6 CIDR block.

', 'NetworkAclEntry$IcmpTypeCode' => '

ICMP protocol: The ICMP type and code.

', 'ReplaceNetworkAclEntryRequest$IcmpTypeCode' => '

ICMP protocol: The ICMP or ICMPv6 type and code. Required if specifying protocol 1 (ICMP) or protocol 58 (ICMPv6) with an IPv6 CIDR block.

', ], ], 'IdFormat' => [ 'base' => '

Describes the ID format for a resource.

', 'refs' => [ 'IdFormatList$member' => NULL, ], ], 'IdFormatList' => [ 'base' => NULL, 'refs' => [ 'DescribeAggregateIdFormatResult$Statuses' => '

Information about each resource\'s ID format.

', 'DescribeIdFormatResult$Statuses' => '

Information about the ID format for the resource.

', 'DescribeIdentityIdFormatResult$Statuses' => '

Information about the ID format for the resources.

', 'PrincipalIdFormat$Statuses' => '

PrincipalIdFormatStatuses description

', ], ], 'Igmpv2SupportValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayMulticastDomainRequestOptions$Igmpv2Support' => '

Specify whether to enable Internet Group Management Protocol (IGMP) version 2 for the transit gateway multicast domain.

', 'TransitGatewayMulticastDomainOptions$Igmpv2Support' => '

Indicates whether Internet Group Management Protocol (IGMP) version 2 is turned on for the transit gateway multicast domain.

', ], ], 'Image' => [ 'base' => '

Describes an image.

', 'refs' => [ 'ImageList$member' => NULL, ], ], 'ImageAttribute' => [ 'base' => '

Describes an image attribute.

', 'refs' => [], ], 'ImageAttributeName' => [ 'base' => NULL, 'refs' => [ 'DescribeImageAttributeRequest$Attribute' => '

The AMI attribute.

Note: The blockDeviceMapping attribute is deprecated. Using this attribute returns the Client.AuthFailure error. To get information about the block device mappings for an AMI, use the DescribeImages action.

', ], ], 'ImageBlockPublicAccessDisabledState' => [ 'base' => NULL, 'refs' => [ 'DisableImageBlockPublicAccessResult$ImageBlockPublicAccessState' => '

Returns unblocked if the request succeeds; otherwise, it returns an error.

', ], ], 'ImageBlockPublicAccessEnabledState' => [ 'base' => NULL, 'refs' => [ 'EnableImageBlockPublicAccessRequest$ImageBlockPublicAccessState' => '

Specify block-new-sharing to enable block public access for AMIs at the account level in the specified Region. This will block any attempt to publicly share your AMIs in the specified Region.

', 'EnableImageBlockPublicAccessResult$ImageBlockPublicAccessState' => '

Returns block-new-sharing if the request succeeds; otherwise, it returns an error.

', ], ], 'ImageDiskContainer' => [ 'base' => '

Describes the disk container object for an import image task.

', 'refs' => [ 'ImageDiskContainerList$member' => NULL, ], ], 'ImageDiskContainerList' => [ 'base' => NULL, 'refs' => [ 'ImportImageRequest$DiskContainers' => '

Information about the disk containers.

', ], ], 'ImageId' => [ 'base' => NULL, 'refs' => [ 'CancelImageLaunchPermissionRequest$ImageId' => '

The ID of the AMI that was shared with your Amazon Web Services account.

', 'CreateReplaceRootVolumeTaskRequest$ImageId' => '

The ID of the AMI to use to restore the root volume. The specified AMI must have the same product code, billing information, architecture type, and virtualization type as that of the instance.

If you want to restore the replacement volume from a specific snapshot, or if you want to restore it to its launch state, omit this parameter.

', 'CreateStoreImageTaskRequest$ImageId' => '

The ID of the AMI.

', 'DeregisterImageRequest$ImageId' => '

The ID of the AMI.

', 'DescribeFastLaunchImagesSuccessItem$ImageId' => '

The image ID that identifies the Windows fast launch enabled image.

', 'DescribeImageAttributeRequest$ImageId' => '

The ID of the AMI.

', 'DisableFastLaunchRequest$ImageId' => '

Specify the ID of the image for which to disable Windows fast launch.

', 'DisableFastLaunchResult$ImageId' => '

The ID of the image for which Windows fast launch was disabled.

', 'DisableImageDeprecationRequest$ImageId' => '

The ID of the AMI.

', 'DisableImageRequest$ImageId' => '

The ID of the AMI.

', 'EnableFastLaunchRequest$ImageId' => '

Specify the ID of the image for which to enable Windows fast launch.

', 'EnableFastLaunchResult$ImageId' => '

The image ID that identifies the AMI for which Windows fast launch was enabled.

', 'EnableImageDeprecationRequest$ImageId' => '

The ID of the AMI.

', 'EnableImageRequest$ImageId' => '

The ID of the AMI.

', 'ExportImageRequest$ImageId' => '

The ID of the image.

', 'FastLaunchImageIdList$member' => NULL, 'FleetLaunchTemplateOverrides$ImageId' => '

The ID of the AMI. An AMI is required to launch an instance. This parameter is only available for fleets of type instant. For fleets of type maintain and request, you must specify the AMI ID in the launch template.

', 'FleetLaunchTemplateOverridesRequest$ImageId' => '

The ID of the AMI. An AMI is required to launch an instance. This parameter is only available for fleets of type instant. For fleets of type maintain and request, you must specify the AMI ID in the launch template.

', 'ImageIdList$member' => NULL, 'ImageIdStringList$member' => NULL, 'ModifyImageAttributeRequest$ImageId' => '

The ID of the AMI.

', 'ReplaceRootVolumeTask$ImageId' => '

The ID of the AMI used to create the replacement root volume.

', 'RequestLaunchTemplateData$ImageId' => '

The ID of the AMI. Alternatively, you can specify a Systems Manager parameter, which will resolve to an AMI ID on launch.

Valid formats:

  • ami-17characters00000

  • resolve:ssm:parameter-name

  • resolve:ssm:parameter-name:version-number

  • resolve:ssm:parameter-name:label

  • resolve:ssm:public-parameter

Currently, EC2 Fleet and Spot Fleet do not support specifying a Systems Manager parameter. If the launch template will be used by an EC2 Fleet or Spot Fleet, you must specify the AMI ID.

For more information, see Use a Systems Manager parameter instead of an AMI ID in the Amazon Elastic Compute Cloud User Guide.

', 'RequestSpotLaunchSpecification$ImageId' => '

The ID of the AMI.

', 'ResetImageAttributeRequest$ImageId' => '

The ID of the AMI.

', 'RestoreImageFromRecycleBinRequest$ImageId' => '

The ID of the AMI to restore.

', 'RunInstancesRequest$ImageId' => '

The ID of the AMI. An AMI ID is required to launch an instance and must be specified here or in a launch template.

', 'ScheduledInstancesLaunchSpecification$ImageId' => '

The ID of the Amazon Machine Image (AMI).

', 'SpotFleetLaunchSpecification$ImageId' => '

The ID of the AMI.

', ], ], 'ImageIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeStoreImageTasksRequest$ImageIds' => '

The AMI IDs for which to show progress. Up to 20 AMI IDs can be included in a request.

', ], ], 'ImageIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeImagesRequest$ImageIds' => '

The image IDs.

Default: Describes all images available to you.

', 'ListImagesInRecycleBinRequest$ImageIds' => '

The IDs of the AMIs to list. Omit this parameter to list all of the AMIs that are in the Recycle Bin. You can specify up to 20 IDs in a single request.

', ], ], 'ImageList' => [ 'base' => NULL, 'refs' => [ 'DescribeImagesResult$Images' => '

Information about the images.

', ], ], 'ImageRecycleBinInfo' => [ 'base' => '

Information about an AMI that is currently in the Recycle Bin.

', 'refs' => [ 'ImageRecycleBinInfoList$member' => NULL, ], ], 'ImageRecycleBinInfoList' => [ 'base' => NULL, 'refs' => [ 'ListImagesInRecycleBinResult$Images' => '

Information about the AMIs.

', ], ], 'ImageState' => [ 'base' => NULL, 'refs' => [ 'Image$State' => '

The current state of the AMI. If the state is available, the image is successfully registered and can be used to launch an instance.

', ], ], 'ImageTypeValues' => [ 'base' => NULL, 'refs' => [ 'Image$ImageType' => '

The type of image.

', ], ], 'ImdsSupportValues' => [ 'base' => NULL, 'refs' => [ 'Image$ImdsSupport' => '

If v2.0, it indicates that IMDSv2 is specified in the AMI. Instances launched from this AMI will have HttpTokens automatically set to required so that, by default, the instance requires that IMDSv2 is used when requesting instance metadata. In addition, HttpPutResponseHopLimit is set to 2. For more information, see Configure the AMI in the Amazon EC2 User Guide.

', 'RegisterImageRequest$ImdsSupport' => '

Set to v2.0 to indicate that IMDSv2 is specified in the AMI. Instances launched from this AMI will have HttpTokens automatically set to required so that, by default, the instance requires that IMDSv2 is used when requesting instance metadata. In addition, HttpPutResponseHopLimit is set to 2. For more information, see Configure the AMI in the Amazon EC2 User Guide.

If you set the value to v2.0, make sure that your AMI software can support IMDSv2.

', ], ], 'ImportClientVpnClientCertificateRevocationListRequest' => [ 'base' => NULL, 'refs' => [], ], 'ImportClientVpnClientCertificateRevocationListResult' => [ 'base' => NULL, 'refs' => [], ], 'ImportImageLicenseConfigurationRequest' => [ 'base' => '

The request information of license configurations.

', 'refs' => [ 'ImportImageLicenseSpecificationListRequest$member' => NULL, ], ], 'ImportImageLicenseConfigurationResponse' => [ 'base' => '

The response information for license configurations.

', 'refs' => [ 'ImportImageLicenseSpecificationListResponse$member' => NULL, ], ], 'ImportImageLicenseSpecificationListRequest' => [ 'base' => NULL, 'refs' => [ 'ImportImageRequest$LicenseSpecifications' => '

The ARNs of the license configurations.

', ], ], 'ImportImageLicenseSpecificationListResponse' => [ 'base' => NULL, 'refs' => [ 'ImportImageResult$LicenseSpecifications' => '

The ARNs of the license configurations.

', 'ImportImageTask$LicenseSpecifications' => '

The ARNs of the license configurations that are associated with the import image task.

', ], ], 'ImportImageRequest' => [ 'base' => NULL, 'refs' => [], ], 'ImportImageResult' => [ 'base' => NULL, 'refs' => [], ], 'ImportImageTask' => [ 'base' => '

Describes an import image task.

', 'refs' => [ 'ImportImageTaskList$member' => NULL, ], ], 'ImportImageTaskId' => [ 'base' => NULL, 'refs' => [ 'ImportImageResult$ImportTaskId' => '

The task ID of the import image task.

', 'ImportTaskIdList$member' => NULL, ], ], 'ImportImageTaskList' => [ 'base' => NULL, 'refs' => [ 'DescribeImportImageTasksResult$ImportImageTasks' => '

A list of zero or more import image tasks that are currently active or were completed or canceled in the previous 7 days.

', ], ], 'ImportInstanceLaunchSpecification' => [ 'base' => '

Describes the launch specification for VM import.

', 'refs' => [ 'ImportInstanceRequest$LaunchSpecification' => '

The launch specification.

', ], ], 'ImportInstanceRequest' => [ 'base' => NULL, 'refs' => [], ], 'ImportInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'ImportInstanceTaskDetails' => [ 'base' => '

Describes an import instance task.

', 'refs' => [ 'ConversionTask$ImportInstance' => '

If the task is for importing an instance, this contains information about the import instance task.

', ], ], 'ImportInstanceVolumeDetailItem' => [ 'base' => '

Describes an import volume task.

', 'refs' => [ 'ImportInstanceVolumeDetailSet$member' => NULL, ], ], 'ImportInstanceVolumeDetailSet' => [ 'base' => NULL, 'refs' => [ 'ImportInstanceTaskDetails$Volumes' => '

The volumes.

', ], ], 'ImportKeyPairRequest' => [ 'base' => NULL, 'refs' => [], ], 'ImportKeyPairResult' => [ 'base' => NULL, 'refs' => [], ], 'ImportManifestUrl' => [ 'base' => NULL, 'refs' => [ 'DiskImageDescription$ImportManifestUrl' => '

A presigned URL for the import manifest stored in Amazon S3. For information about creating a presigned URL for an Amazon S3 object, read the "Query String Request Authentication Alternative" section of the Authenticating REST Requests topic in the Amazon Simple Storage Service Developer Guide.

For information about the import manifest referenced by this API action, see VM Import Manifest.

', 'DiskImageDetail$ImportManifestUrl' => '

A presigned URL for the import manifest stored in Amazon S3 and presented here as an Amazon S3 presigned URL. For information about creating a presigned URL for an Amazon S3 object, read the "Query String Request Authentication Alternative" section of the Authenticating REST Requests topic in the Amazon Simple Storage Service Developer Guide.

For information about the import manifest referenced by this API action, see VM Import Manifest.

', ], ], 'ImportSnapshotRequest' => [ 'base' => NULL, 'refs' => [], ], 'ImportSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'ImportSnapshotTask' => [ 'base' => '

Describes an import snapshot task.

', 'refs' => [ 'ImportSnapshotTaskList$member' => NULL, ], ], 'ImportSnapshotTaskId' => [ 'base' => NULL, 'refs' => [ 'ImportSnapshotTaskIdList$member' => NULL, ], ], 'ImportSnapshotTaskIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeImportSnapshotTasksRequest$ImportTaskIds' => '

A list of import snapshot task IDs.

', ], ], 'ImportSnapshotTaskList' => [ 'base' => NULL, 'refs' => [ 'DescribeImportSnapshotTasksResult$ImportSnapshotTasks' => '

A list of zero or more import snapshot tasks that are currently active or were completed or canceled in the previous 7 days.

', ], ], 'ImportTaskId' => [ 'base' => NULL, 'refs' => [ 'CancelImportTaskRequest$ImportTaskId' => '

The ID of the import image or import snapshot task to be canceled.

', ], ], 'ImportTaskIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeImportImageTasksRequest$ImportTaskIds' => '

The IDs of the import image tasks.

', ], ], 'ImportVolumeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ImportVolumeResult' => [ 'base' => NULL, 'refs' => [], ], 'ImportVolumeTaskDetails' => [ 'base' => '

Describes an import volume task.

', 'refs' => [ 'ConversionTask$ImportVolume' => '

If the task is for importing a volume, this contains information about the import volume task.

', ], ], 'InferenceAcceleratorInfo' => [ 'base' => '

Describes the Inference accelerators for the instance type.

', 'refs' => [ 'InstanceTypeInfo$InferenceAcceleratorInfo' => '

Describes the Inference accelerator settings for the instance type.

', ], ], 'InferenceDeviceCount' => [ 'base' => NULL, 'refs' => [ 'InferenceDeviceInfo$Count' => '

The number of Inference accelerators for the instance type.

', ], ], 'InferenceDeviceInfo' => [ 'base' => '

Describes the Inference accelerators for the instance type.

', 'refs' => [ 'InferenceDeviceInfoList$member' => NULL, ], ], 'InferenceDeviceInfoList' => [ 'base' => NULL, 'refs' => [ 'InferenceAcceleratorInfo$Accelerators' => '

Describes the Inference accelerators for the instance type.

', ], ], 'InferenceDeviceManufacturerName' => [ 'base' => NULL, 'refs' => [ 'InferenceDeviceInfo$Manufacturer' => '

The manufacturer of the Inference accelerator.

', ], ], 'InferenceDeviceMemoryInfo' => [ 'base' => '

Describes the memory available to the inference accelerator.

', 'refs' => [ 'InferenceDeviceInfo$MemoryInfo' => '

Describes the memory available to the inference accelerator.

', ], ], 'InferenceDeviceMemorySize' => [ 'base' => NULL, 'refs' => [ 'InferenceDeviceMemoryInfo$SizeInMiB' => '

The size of the memory available to the inference accelerator, in MiB.

', ], ], 'InferenceDeviceName' => [ 'base' => NULL, 'refs' => [ 'InferenceDeviceInfo$Name' => '

The name of the Inference accelerator.

', ], ], 'InsideCidrBlocksStringList' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayConnectPeerRequest$InsideCidrBlocks' => '

The range of inside IP addresses that are used for BGP peering. You must specify a size /29 IPv4 CIDR block from the 169.254.0.0/16 range. The first address from the range must be configured on the appliance as the BGP IP address. You can also optionally specify a size /125 IPv6 CIDR block from the fd00::/8 range.

', 'TransitGatewayConnectPeerConfiguration$InsideCidrBlocks' => '

The range of interior BGP peer IP addresses.

', ], ], 'Instance' => [ 'base' => '

Describes an instance.

', 'refs' => [ 'InstanceList$member' => NULL, ], ], 'InstanceAttachmentEnaSrdSpecification' => [ 'base' => '

ENA Express uses Amazon Web Services Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled.

To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it.

', 'refs' => [ 'InstanceNetworkInterfaceAttachment$EnaSrdSpecification' => '

Contains the ENA Express settings for the network interface that\'s attached to the instance.

', ], ], 'InstanceAttachmentEnaSrdUdpSpecification' => [ 'base' => '

ENA Express is compatible with both TCP and UDP transport protocols. When it\'s enabled, TCP traffic automatically uses it. However, some UDP-based applications are designed to handle network packets that are out of order, without a need for retransmission, such as live video broadcasting or other near-real-time applications. For UDP traffic, you can specify whether to use ENA Express, based on your application environment needs.

', 'refs' => [ 'InstanceAttachmentEnaSrdSpecification$EnaSrdUdpSpecification' => '

Configures ENA Express for UDP network traffic.

', ], ], 'InstanceAttribute' => [ 'base' => '

Describes an instance attribute.

', 'refs' => [], ], 'InstanceAttributeName' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceAttributeRequest$Attribute' => '

The instance attribute.

Note: The enaSupport attribute is not supported at this time.

', 'ModifyInstanceAttributeRequest$Attribute' => '

The name of the attribute to modify.

You can modify the following attributes only: disableApiTermination | instanceType | kernel | ramdisk | instanceInitiatedShutdownBehavior | blockDeviceMapping | userData | sourceDestCheck | groupSet | ebsOptimized | sriovNetSupport | enaSupport | nvmeSupport | disableApiStop | enclaveOptions

', 'ResetInstanceAttributeRequest$Attribute' => '

The attribute to reset.

You can only reset the following attributes: kernel | ramdisk | sourceDestCheck.

', ], ], 'InstanceAutoRecoveryState' => [ 'base' => NULL, 'refs' => [ 'InstanceMaintenanceOptions$AutoRecovery' => '

Provides information on the current automatic recovery behavior of your instance.

', 'InstanceMaintenanceOptionsRequest$AutoRecovery' => '

Disables the automatic recovery behavior of your instance or sets it to default. For more information, see Simplified automatic recovery.

', 'ModifyInstanceMaintenanceOptionsRequest$AutoRecovery' => '

Disables the automatic recovery behavior of your instance or sets it to default.

', 'ModifyInstanceMaintenanceOptionsResult$AutoRecovery' => '

Provides information on the current automatic recovery behavior of your instance.

', ], ], 'InstanceBlockDeviceMapping' => [ 'base' => '

Describes a block device mapping.

', 'refs' => [ 'InstanceBlockDeviceMappingList$member' => NULL, ], ], 'InstanceBlockDeviceMappingList' => [ 'base' => NULL, 'refs' => [ 'Instance$BlockDeviceMappings' => '

Any block device mapping entries for the instance.

', 'InstanceAttribute$BlockDeviceMappings' => '

The block device mapping of the instance.

', ], ], 'InstanceBlockDeviceMappingSpecification' => [ 'base' => '

Describes a block device mapping entry.

', 'refs' => [ 'InstanceBlockDeviceMappingSpecificationList$member' => NULL, ], ], 'InstanceBlockDeviceMappingSpecificationList' => [ 'base' => NULL, 'refs' => [ 'ModifyInstanceAttributeRequest$BlockDeviceMappings' => '

Modifies the DeleteOnTermination attribute for volumes that are currently attached. The volume must be owned by the caller. If no value is specified for DeleteOnTermination, the default is true and the volume is deleted when the instance is terminated. You can\'t modify the DeleteOnTermination attribute for volumes that are attached to Fargate tasks.

To add instance store volumes to an Amazon EBS-backed instance, you must add them when you launch the instance. For more information, see Update the block device mapping when launching an instance in the Amazon EC2 User Guide.

', ], ], 'InstanceBootModeValues' => [ 'base' => NULL, 'refs' => [ 'Instance$CurrentInstanceBootMode' => '

The boot mode that is used to boot the instance at launch or start. For more information, see Boot modes in the Amazon EC2 User Guide.

', ], ], 'InstanceCapacity' => [ 'base' => '

Information about the number of instances that can be launched onto the Dedicated Host.

', 'refs' => [ 'AvailableInstanceCapacityList$member' => NULL, ], ], 'InstanceConnectEndpointId' => [ 'base' => NULL, 'refs' => [ 'DeleteInstanceConnectEndpointRequest$InstanceConnectEndpointId' => '

The ID of the EC2 Instance Connect Endpoint to delete.

', 'Ec2InstanceConnectEndpoint$InstanceConnectEndpointId' => '

The ID of the EC2 Instance Connect Endpoint.

', ], ], 'InstanceConnectEndpointMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceConnectEndpointsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'InstanceConnectEndpointSet' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceConnectEndpointsResult$InstanceConnectEndpoints' => '

Information about the EC2 Instance Connect Endpoints.

', ], ], 'InstanceCount' => [ 'base' => '

Describes a Reserved Instance listing state.

', 'refs' => [ 'InstanceCountList$member' => NULL, ], ], 'InstanceCountList' => [ 'base' => NULL, 'refs' => [ 'ReservedInstancesListing$InstanceCounts' => '

The number of instances in this state.

', ], ], 'InstanceCreditSpecification' => [ 'base' => '

Describes the credit option for CPU usage of a burstable performance instance.

', 'refs' => [ 'InstanceCreditSpecificationList$member' => NULL, ], ], 'InstanceCreditSpecificationList' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceCreditSpecificationsResult$InstanceCreditSpecifications' => '

Information about the credit option for CPU usage of an instance.

', ], ], 'InstanceCreditSpecificationListRequest' => [ 'base' => NULL, 'refs' => [ 'ModifyInstanceCreditSpecificationRequest$InstanceCreditSpecifications' => '

Information about the credit option for CPU usage.

', ], ], 'InstanceCreditSpecificationRequest' => [ 'base' => '

Describes the credit option for CPU usage of a burstable performance instance.

', 'refs' => [ 'InstanceCreditSpecificationListRequest$member' => NULL, ], ], 'InstanceEventId' => [ 'base' => NULL, 'refs' => [ 'InstanceStatusEvent$InstanceEventId' => '

The ID of the event.

', ], ], 'InstanceEventWindow' => [ 'base' => '

The event window.

', 'refs' => [ 'AssociateInstanceEventWindowResult$InstanceEventWindow' => '

Information about the event window.

', 'CreateInstanceEventWindowResult$InstanceEventWindow' => '

Information about the event window.

', 'DisassociateInstanceEventWindowResult$InstanceEventWindow' => '

Information about the event window.

', 'InstanceEventWindowSet$member' => NULL, 'ModifyInstanceEventWindowResult$InstanceEventWindow' => '

Information about the event window.

', ], ], 'InstanceEventWindowAssociationRequest' => [ 'base' => '

One or more targets associated with the specified event window. Only one type of target (instance ID, instance tag, or Dedicated Host ID) can be associated with an event window.

', 'refs' => [ 'AssociateInstanceEventWindowRequest$AssociationTarget' => '

One or more targets associated with the specified event window.

', ], ], 'InstanceEventWindowAssociationTarget' => [ 'base' => '

One or more targets associated with the event window.

', 'refs' => [ 'InstanceEventWindow$AssociationTarget' => '

One or more targets associated with the event window.

', ], ], 'InstanceEventWindowCronExpression' => [ 'base' => NULL, 'refs' => [ 'CreateInstanceEventWindowRequest$CronExpression' => '

The cron expression for the event window, for example, * 0-4,20-23 * * 1,5. If you specify a cron expression, you can\'t specify a time range.

Constraints:

  • Only hour and day of the week values are supported.

  • For day of the week values, you can specify either integers 0 through 6, or alternative single values SUN through SAT.

  • The minute, month, and year must be specified by *.

  • The hour value must be one or a multiple range, for example, 0-4 or 0-4,20-23.

  • Each hour range must be >= 2 hours, for example, 0-2 or 20-23.

  • The event window must be >= 4 hours. The combined total time ranges in the event window must be >= 4 hours.

For more information about cron expressions, see cron on the Wikipedia website.

', 'InstanceEventWindow$CronExpression' => '

The cron expression defined for the event window.

', 'ModifyInstanceEventWindowRequest$CronExpression' => '

The cron expression of the event window, for example, * 0-4,20-23 * * 1,5.

Constraints:

  • Only hour and day of the week values are supported.

  • For day of the week values, you can specify either integers 0 through 6, or alternative single values SUN through SAT.

  • The minute, month, and year must be specified by *.

  • The hour value must be one or a multiple range, for example, 0-4 or 0-4,20-23.

  • Each hour range must be >= 2 hours, for example, 0-2 or 20-23.

  • The event window must be >= 4 hours. The combined total time ranges in the event window must be >= 4 hours.

For more information about cron expressions, see cron on the Wikipedia website.

', ], ], 'InstanceEventWindowDisassociationRequest' => [ 'base' => '

The targets to disassociate from the specified event window.

', 'refs' => [ 'DisassociateInstanceEventWindowRequest$AssociationTarget' => '

One or more targets to disassociate from the specified event window.

', ], ], 'InstanceEventWindowId' => [ 'base' => NULL, 'refs' => [ 'AssociateInstanceEventWindowRequest$InstanceEventWindowId' => '

The ID of the event window.

', 'DeleteInstanceEventWindowRequest$InstanceEventWindowId' => '

The ID of the event window.

', 'DisassociateInstanceEventWindowRequest$InstanceEventWindowId' => '

The ID of the event window.

', 'InstanceEventWindow$InstanceEventWindowId' => '

The ID of the event window.

', 'InstanceEventWindowIdSet$member' => NULL, 'InstanceEventWindowStateChange$InstanceEventWindowId' => '

The ID of the event window.

', 'ModifyInstanceEventWindowRequest$InstanceEventWindowId' => '

The ID of the event window.

', ], ], 'InstanceEventWindowIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceEventWindowsRequest$InstanceEventWindowIds' => '

The IDs of the event windows.

', ], ], 'InstanceEventWindowSet' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceEventWindowsResult$InstanceEventWindows' => '

Information about the event windows.

', ], ], 'InstanceEventWindowState' => [ 'base' => NULL, 'refs' => [ 'InstanceEventWindow$State' => '

The current state of the event window.

', 'InstanceEventWindowStateChange$State' => '

The current state of the event window.

', ], ], 'InstanceEventWindowStateChange' => [ 'base' => '

The state of the event window.

', 'refs' => [ 'DeleteInstanceEventWindowResult$InstanceEventWindowState' => '

The state of the event window.

', ], ], 'InstanceEventWindowTimeRange' => [ 'base' => '

The start day and time and the end day and time of the time range, in UTC.

', 'refs' => [ 'InstanceEventWindowTimeRangeList$member' => NULL, ], ], 'InstanceEventWindowTimeRangeList' => [ 'base' => NULL, 'refs' => [ 'InstanceEventWindow$TimeRanges' => '

One or more time ranges defined for the event window.

', ], ], 'InstanceEventWindowTimeRangeRequest' => [ 'base' => '

The start day and time and the end day and time of the time range, in UTC.

', 'refs' => [ 'InstanceEventWindowTimeRangeRequestSet$member' => NULL, ], ], 'InstanceEventWindowTimeRangeRequestSet' => [ 'base' => NULL, 'refs' => [ 'CreateInstanceEventWindowRequest$TimeRanges' => '

The time range for the event window. If you specify a time range, you can\'t specify a cron expression.

', 'ModifyInstanceEventWindowRequest$TimeRanges' => '

The time ranges of the event window.

', ], ], 'InstanceExportDetails' => [ 'base' => '

Describes an instance to export.

', 'refs' => [ 'ExportTask$InstanceExportDetails' => '

Information about the instance to export.

', ], ], 'InstanceFamilyCreditSpecification' => [ 'base' => '

Describes the default credit option for CPU usage of a burstable performance instance family.

', 'refs' => [ 'GetDefaultCreditSpecificationResult$InstanceFamilyCreditSpecification' => '

The default credit option for CPU usage of the instance family.

', 'ModifyDefaultCreditSpecificationResult$InstanceFamilyCreditSpecification' => '

The default credit option for CPU usage of the instance family.

', ], ], 'InstanceGeneration' => [ 'base' => NULL, 'refs' => [ 'InstanceGenerationSet$member' => NULL, ], ], 'InstanceGenerationSet' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$InstanceGenerations' => '

Indicates whether current or previous generation instance types are included. The current generation instance types are recommended for use. Current generation instance types are typically the latest two to three generations in each instance family. For more information, see Instance types in the Amazon EC2 User Guide.

For current generation instance types, specify current.

For previous generation instance types, specify previous.

Default: Current and previous generation instance types

', 'InstanceRequirementsRequest$InstanceGenerations' => '

Indicates whether current or previous generation instance types are included. The current generation instance types are recommended for use. Current generation instance types are typically the latest two to three generations in each instance family. For more information, see Instance types in the Amazon EC2 User Guide.

For current generation instance types, specify current.

For previous generation instance types, specify previous.

Default: Current and previous generation instance types

', ], ], 'InstanceHealthStatus' => [ 'base' => NULL, 'refs' => [ 'ActiveInstance$InstanceHealth' => '

The health status of the instance. If the status of either the instance status check or the system status check is impaired, the health status of the instance is unhealthy. Otherwise, the health status is healthy.

', ], ], 'InstanceId' => [ 'base' => NULL, 'refs' => [ 'AssociateAddressRequest$InstanceId' => '

The ID of the instance. The instance must have exactly one attached network interface. You can specify either the instance ID or the network interface ID, but not both.

', 'AssociateIamInstanceProfileRequest$InstanceId' => '

The ID of the instance.

', 'AttachClassicLinkVpcRequest$InstanceId' => '

The ID of the EC2-Classic instance.

', 'AttachNetworkInterfaceRequest$InstanceId' => '

The ID of the instance.

', 'AttachVolumeRequest$InstanceId' => '

The ID of the instance.

', 'BundleInstanceRequest$InstanceId' => '

The ID of the instance to bundle.

Type: String

Default: None

Required: Yes

', 'ConfirmProductInstanceRequest$InstanceId' => '

The ID of the instance.

', 'CreateImageRequest$InstanceId' => '

The ID of the instance.

', 'CreateInstanceExportTaskRequest$InstanceId' => '

The ID of the instance.

', 'CreateReplaceRootVolumeTaskRequest$InstanceId' => '

The ID of the instance for which to replace the root volume.

', 'CreateRouteRequest$InstanceId' => '

The ID of a NAT instance in your VPC. The operation fails if you specify an instance ID unless exactly one network interface is attached.

', 'DescribeInstanceAttributeRequest$InstanceId' => '

The ID of the instance.

', 'DescribeInstanceTopologyInstanceIdSet$member' => NULL, 'DetachClassicLinkVpcRequest$InstanceId' => '

The ID of the instance to unlink from the VPC.

', 'GetConsoleOutputRequest$InstanceId' => '

The ID of the instance.

', 'GetConsoleScreenshotRequest$InstanceId' => '

The ID of the instance.

', 'GetInstanceUefiDataRequest$InstanceId' => '

The ID of the instance from which to retrieve the UEFI data.

', 'GetInstanceUefiDataResult$InstanceId' => '

The ID of the instance from which to retrieve the UEFI data.

', 'GetLaunchTemplateDataRequest$InstanceId' => '

The ID of the instance.

', 'GetPasswordDataRequest$InstanceId' => '

The ID of the Windows instance.

', 'InstanceCreditSpecificationRequest$InstanceId' => '

The ID of the instance.

', 'InstanceIdList$member' => NULL, 'InstanceIdSet$member' => NULL, 'InstanceIdStringList$member' => NULL, 'InstanceIdsSet$member' => NULL, 'ModifyInstanceAttributeRequest$InstanceId' => '

The ID of the instance.

', 'ModifyInstanceCapacityReservationAttributesRequest$InstanceId' => '

The ID of the instance to be modified.

', 'ModifyInstanceEventStartTimeRequest$InstanceId' => '

The ID of the instance with the scheduled event.

', 'ModifyInstanceMaintenanceOptionsRequest$InstanceId' => '

The ID of the instance.

', 'ModifyInstanceMetadataOptionsRequest$InstanceId' => '

The ID of the instance.

', 'ModifyInstancePlacementRequest$InstanceId' => '

The ID of the instance that you are modifying.

', 'ModifyPrivateDnsNameOptionsRequest$InstanceId' => '

The ID of the instance.

', 'ReplaceRouteRequest$InstanceId' => '

The ID of a NAT instance in your VPC.

', 'ResetInstanceAttributeRequest$InstanceId' => '

The ID of the instance.

', 'SendDiagnosticInterruptRequest$InstanceId' => '

The ID of the instance.

', 'SpotInstanceRequest$InstanceId' => '

The instance ID, if an instance has been launched to fulfill the Spot Instance request.

', ], ], 'InstanceIdForResolver' => [ 'base' => NULL, 'refs' => [ 'DetachVolumeRequest$InstanceId' => '

The ID of the instance. If you are detaching a Multi-Attach enabled volume, you must specify an instance ID.

', ], ], 'InstanceIdList' => [ 'base' => NULL, 'refs' => [ 'InstanceEventWindowAssociationRequest$InstanceIds' => '

The IDs of the instances to associate with the event window. If the instance is on a Dedicated Host, you can\'t specify the Instance ID parameter; you must use the Dedicated Host ID parameter.

', 'InstanceEventWindowAssociationTarget$InstanceIds' => '

The IDs of the instances associated with the event window.

', 'InstanceEventWindowDisassociationRequest$InstanceIds' => '

The IDs of the instances to disassociate from the event window.

', ], ], 'InstanceIdSet' => [ 'base' => NULL, 'refs' => [ 'RunScheduledInstancesResult$InstanceIdSet' => '

The IDs of the newly launched instances.

', ], ], 'InstanceIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeClassicLinkInstancesRequest$InstanceIds' => '

The instance IDs. Must be instances linked to a VPC through ClassicLink.

', 'DescribeInstanceCreditSpecificationsRequest$InstanceIds' => '

The instance IDs.

Default: Describes all your instances.

Constraints: Maximum 1000 explicitly specified instance IDs.

', 'DescribeInstanceStatusRequest$InstanceIds' => '

The instance IDs.

Default: Describes all your instances.

Constraints: Maximum 100 explicitly specified instance IDs.

', 'DescribeInstancesRequest$InstanceIds' => '

The instance IDs.

Default: Describes all your instances.

', 'MonitorInstancesRequest$InstanceIds' => '

The IDs of the instances.

', 'RebootInstancesRequest$InstanceIds' => '

The instance IDs.

', 'ReportInstanceStatusRequest$Instances' => '

The instances.

', 'StartInstancesRequest$InstanceIds' => '

The IDs of the instances.

', 'StopInstancesRequest$InstanceIds' => '

The IDs of the instances.

', 'TerminateInstancesRequest$InstanceIds' => '

The IDs of the instances.

Constraints: Up to 1000 instance IDs. We recommend breaking up this request into smaller batches.

', 'UnmonitorInstancesRequest$InstanceIds' => '

The IDs of the instances.

', ], ], 'InstanceIdWithVolumeResolver' => [ 'base' => NULL, 'refs' => [ 'InstanceSpecification$InstanceId' => '

The instance to specify which volumes should be snapshotted.

', ], ], 'InstanceIdsSet' => [ 'base' => NULL, 'refs' => [ 'CreateFleetInstance$InstanceIds' => '

The IDs of the instances.

', 'DescribeFleetsInstances$InstanceIds' => '

The IDs of the instances.

', ], ], 'InstanceInterruptionBehavior' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateSpotMarketOptions$InstanceInterruptionBehavior' => '

The behavior when a Spot Instance is interrupted.

', 'LaunchTemplateSpotMarketOptionsRequest$InstanceInterruptionBehavior' => '

The behavior when a Spot Instance is interrupted. The default is terminate.

', 'RequestSpotInstancesRequest$InstanceInterruptionBehavior' => '

The behavior when a Spot Instance is interrupted. The default is terminate.

', 'SpotFleetRequestConfigData$InstanceInterruptionBehavior' => '

The behavior when a Spot Instance is interrupted. The default is terminate.

', 'SpotInstanceRequest$InstanceInterruptionBehavior' => '

The behavior when a Spot Instance is interrupted.

', 'SpotMarketOptions$InstanceInterruptionBehavior' => '

The behavior when a Spot Instance is interrupted.

If Configured (for HibernationOptions ) is set to true, the InstanceInterruptionBehavior parameter is automatically set to hibernate. If you set it to stop or terminate, you\'ll get an error.

If Configured (for HibernationOptions ) is set to false or null, the InstanceInterruptionBehavior parameter is automatically set to terminate. You can also set it to stop or hibernate.

For more information, see Interruption behavior in the Amazon EC2 User Guide.

', ], ], 'InstanceIpv4Prefix' => [ 'base' => '

Information about an IPv4 prefix.

', 'refs' => [ 'InstanceIpv4PrefixList$member' => NULL, ], ], 'InstanceIpv4PrefixList' => [ 'base' => NULL, 'refs' => [ 'InstanceNetworkInterface$Ipv4Prefixes' => '

The IPv4 delegated prefixes that are assigned to the network interface.

', ], ], 'InstanceIpv6Address' => [ 'base' => '

Describes an IPv6 address.

', 'refs' => [ 'InstanceIpv6AddressList$member' => NULL, ], ], 'InstanceIpv6AddressList' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInterfaceRequest$Ipv6Addresses' => '

The IPv6 addresses from the IPv6 CIDR block range of your subnet.

You can\'t specify IPv6 addresses using this parameter if you\'ve specified one of the following: a count of IPv6 addresses, specific IPv6 prefixes, or a count of IPv6 prefixes.

', 'InstanceNetworkInterface$Ipv6Addresses' => '

The IPv6 addresses associated with the network interface.

', 'InstanceNetworkInterfaceSpecification$Ipv6Addresses' => '

The IPv6 addresses to assign to the network interface. You cannot specify this option and the option to assign a number of IPv6 addresses in the same request. You cannot specify this option if you\'ve specified a minimum number of instances to launch.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$Ipv6Addresses' => '

The IPv6 addresses for the network interface.

', 'RunInstancesRequest$Ipv6Addresses' => '

The IPv6 addresses from the range of the subnet to associate with the primary network interface. You cannot specify this option and the option to assign a number of IPv6 addresses in the same request. You cannot specify this option if you\'ve specified a minimum number of instances to launch.

You cannot specify this option and the network interfaces option in the same request.

', ], ], 'InstanceIpv6AddressListRequest' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$Ipv6Addresses' => '

One or more specific IPv6 addresses from the IPv6 CIDR block range of your subnet. You can\'t use this option if you\'re specifying a number of IPv6 addresses.

', ], ], 'InstanceIpv6AddressRequest' => [ 'base' => '

Describes an IPv6 address.

', 'refs' => [ 'InstanceIpv6AddressListRequest$member' => NULL, ], ], 'InstanceIpv6Prefix' => [ 'base' => '

Information about an IPv6 prefix.

', 'refs' => [ 'InstanceIpv6PrefixList$member' => NULL, ], ], 'InstanceIpv6PrefixList' => [ 'base' => NULL, 'refs' => [ 'InstanceNetworkInterface$Ipv6Prefixes' => '

The IPv6 delegated prefixes that are assigned to the network interface.

', ], ], 'InstanceLifecycle' => [ 'base' => NULL, 'refs' => [ 'CreateFleetError$Lifecycle' => '

Indicates if the instance that could not be launched was a Spot Instance or On-Demand Instance.

', 'CreateFleetInstance$Lifecycle' => '

Indicates if the instance that was launched is a Spot Instance or On-Demand Instance.

', 'DescribeFleetError$Lifecycle' => '

Indicates if the instance that could not be launched was a Spot Instance or On-Demand Instance.

', 'DescribeFleetsInstances$Lifecycle' => '

Indicates if the instance that was launched is a Spot Instance or On-Demand Instance.

', ], ], 'InstanceLifecycleType' => [ 'base' => NULL, 'refs' => [ 'Instance$InstanceLifecycle' => '

Indicates whether this is a Spot Instance or a Scheduled Instance.

', ], ], 'InstanceList' => [ 'base' => NULL, 'refs' => [ 'Reservation$Instances' => '

The instances.

', ], ], 'InstanceMaintenanceOptions' => [ 'base' => '

The maintenance options for the instance.

', 'refs' => [ 'Instance$MaintenanceOptions' => '

Provides information on the recovery and maintenance options of your instance.

', ], ], 'InstanceMaintenanceOptionsRequest' => [ 'base' => '

The maintenance options for the instance.

', 'refs' => [ 'RunInstancesRequest$MaintenanceOptions' => '

The maintenance and recovery options for the instance.

', ], ], 'InstanceMarketOptionsRequest' => [ 'base' => '

Describes the market (purchasing) option for the instances.

', 'refs' => [ 'RunInstancesRequest$InstanceMarketOptions' => '

The market (purchasing) option for the instances.

For RunInstances, persistent Spot Instance requests are only supported when InstanceInterruptionBehavior is set to either hibernate or stop.

', ], ], 'InstanceMatchCriteria' => [ 'base' => NULL, 'refs' => [ 'CapacityReservation$InstanceMatchCriteria' => '

Indicates the type of instance launches that the Capacity Reservation accepts. The options include:

  • open - The Capacity Reservation accepts all instances that have matching attributes (instance type, platform, and Availability Zone). Instances that have matching attributes launch into the Capacity Reservation automatically without specifying any additional parameters.

  • targeted - The Capacity Reservation only accepts instances that have matching attributes (instance type, platform, and Availability Zone), and explicitly target the Capacity Reservation. This ensures that only permitted instances can use the reserved capacity.

', 'CreateCapacityReservationRequest$InstanceMatchCriteria' => '

Indicates the type of instance launches that the Capacity Reservation accepts. The options include:

  • open - The Capacity Reservation automatically matches all instances that have matching attributes (instance type, platform, and Availability Zone). Instances that have matching attributes run in the Capacity Reservation automatically without specifying any additional parameters.

  • targeted - The Capacity Reservation only accepts instances that have matching attributes (instance type, platform, and Availability Zone), and explicitly target the Capacity Reservation. This ensures that only permitted instances can use the reserved capacity.

Default: open

', ], ], 'InstanceMetadataEndpointState' => [ 'base' => NULL, 'refs' => [ 'InstanceMetadataOptionsRequest$HttpEndpoint' => '

Enables or disables the HTTP metadata endpoint on your instances.

If you specify a value of disabled, you cannot access your instance metadata.

Default: enabled

', 'InstanceMetadataOptionsResponse$HttpEndpoint' => '

Indicates whether the HTTP metadata endpoint on your instances is enabled or disabled.

If the value is disabled, you cannot access your instance metadata.

', 'ModifyInstanceMetadataOptionsRequest$HttpEndpoint' => '

Enables or disables the HTTP metadata endpoint on your instances. If this parameter is not specified, the existing state is maintained.

If you specify a value of disabled, you cannot access your instance metadata.

', ], ], 'InstanceMetadataOptionsRequest' => [ 'base' => '

The metadata options for the instance.

', 'refs' => [ 'RunInstancesRequest$MetadataOptions' => '

The metadata options for the instance. For more information, see Instance metadata and user data.

', ], ], 'InstanceMetadataOptionsResponse' => [ 'base' => '

The metadata options for the instance.

', 'refs' => [ 'Instance$MetadataOptions' => '

The metadata options for the instance.

', 'ModifyInstanceMetadataOptionsResult$InstanceMetadataOptions' => '

The metadata options for the instance.

', ], ], 'InstanceMetadataOptionsState' => [ 'base' => NULL, 'refs' => [ 'InstanceMetadataOptionsResponse$State' => '

The state of the metadata option changes.

pending - The metadata options are being updated and the instance is not ready to process metadata traffic with the new selection.

applied - The metadata options have been successfully applied on the instance.

', ], ], 'InstanceMetadataProtocolState' => [ 'base' => NULL, 'refs' => [ 'InstanceMetadataOptionsRequest$HttpProtocolIpv6' => '

Enables or disables the IPv6 endpoint for the instance metadata service.

', 'InstanceMetadataOptionsResponse$HttpProtocolIpv6' => '

Indicates whether the IPv6 endpoint for the instance metadata service is enabled or disabled.

', 'ModifyInstanceMetadataOptionsRequest$HttpProtocolIpv6' => '

Enables or disables the IPv6 endpoint for the instance metadata service. Applies only if you enabled the HTTP metadata endpoint.

', ], ], 'InstanceMetadataTagsState' => [ 'base' => NULL, 'refs' => [ 'InstanceMetadataOptionsRequest$InstanceMetadataTags' => '

Set to enabled to allow access to instance tags from the instance metadata. Set to disabled to turn off access to instance tags from the instance metadata. For more information, see Work with instance tags using the instance metadata.

Default: disabled

', 'InstanceMetadataOptionsResponse$InstanceMetadataTags' => '

Indicates whether access to instance tags from the instance metadata is enabled or disabled. For more information, see Work with instance tags using the instance metadata.

', 'ModifyInstanceMetadataOptionsRequest$InstanceMetadataTags' => '

Set to enabled to allow access to instance tags from the instance metadata. Set to disabled to turn off access to instance tags from the instance metadata. For more information, see Work with instance tags using the instance metadata.

Default: disabled

', ], ], 'InstanceMonitoring' => [ 'base' => '

Describes the monitoring of an instance.

', 'refs' => [ 'InstanceMonitoringList$member' => NULL, ], ], 'InstanceMonitoringList' => [ 'base' => NULL, 'refs' => [ 'MonitorInstancesResult$InstanceMonitorings' => '

The monitoring information.

', 'UnmonitorInstancesResult$InstanceMonitorings' => '

The monitoring information.

', ], ], 'InstanceNetworkInterface' => [ 'base' => '

Describes a network interface.

', 'refs' => [ 'InstanceNetworkInterfaceList$member' => NULL, ], ], 'InstanceNetworkInterfaceAssociation' => [ 'base' => '

Describes association information for an Elastic IP address (IPv4).

', 'refs' => [ 'InstanceNetworkInterface$Association' => '

The association information for an Elastic IPv4 associated with the network interface.

', 'InstancePrivateIpAddress$Association' => '

The association information for an Elastic IP address for the network interface.

', ], ], 'InstanceNetworkInterfaceAttachment' => [ 'base' => '

Describes a network interface attachment.

', 'refs' => [ 'InstanceNetworkInterface$Attachment' => '

The network interface attachment.

', ], ], 'InstanceNetworkInterfaceList' => [ 'base' => NULL, 'refs' => [ 'Instance$NetworkInterfaces' => '

The network interfaces for the instance.

', ], ], 'InstanceNetworkInterfaceSpecification' => [ 'base' => '

Describes a network interface.

', 'refs' => [ 'InstanceNetworkInterfaceSpecificationList$member' => NULL, ], ], 'InstanceNetworkInterfaceSpecificationList' => [ 'base' => NULL, 'refs' => [ 'LaunchSpecification$NetworkInterfaces' => '

The network interfaces. If you specify a network interface, you must specify subnet IDs and security group IDs using the network interface.

', 'RequestSpotLaunchSpecification$NetworkInterfaces' => '

The network interfaces. If you specify a network interface, you must specify subnet IDs and security group IDs using the network interface.

', 'RunInstancesRequest$NetworkInterfaces' => '

The network interfaces to associate with the instance. If you specify a network interface, you must specify any security groups and subnets as part of the network interface.

', 'SpotFleetLaunchSpecification$NetworkInterfaces' => '

One or more network interfaces. If you specify a network interface, you must specify subnet IDs and security group IDs using the network interface.

SpotFleetLaunchSpecification currently does not support Elastic Fabric Adapter (EFA). To specify an EFA, you must use LaunchTemplateConfig.

', ], ], 'InstancePrivateIpAddress' => [ 'base' => '

Describes a private IPv4 address.

', 'refs' => [ 'InstancePrivateIpAddressList$member' => NULL, ], ], 'InstancePrivateIpAddressList' => [ 'base' => NULL, 'refs' => [ 'InstanceNetworkInterface$PrivateIpAddresses' => '

The private IPv4 addresses associated with the network interface.

', ], ], 'InstanceRequirements' => [ 'base' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with these attributes.

You must specify VCpuCount and MemoryMiB. All other attributes are optional. Any unspecified optional attribute is set to its default.

When you specify multiple attributes, you get instance types that satisfy all of the specified attributes. If you specify multiple values for an attribute, you get instance types that satisfy any of the specified values.

To limit the list of instance types from which Amazon EC2 can identify matching instance types, you can use one of the following parameters, but not both in the same request:

  • AllowedInstanceTypes - The instance types to include in the list. All other instance types are ignored, even if they match your specified attributes.

  • ExcludedInstanceTypes - The instance types to exclude from the list, even if they match your specified attributes.

If you specify InstanceRequirements, you can\'t specify InstanceType.

Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the launch instance wizard or with the RunInstances API, you can\'t specify InstanceRequirements.

For more information, see Create a mixed instances group using attribute-based instance type selection in the Amazon EC2 Auto Scaling User Guide, and also Attribute-based instance type selection for EC2 Fleet, Attribute-based instance type selection for Spot Fleet, and Spot placement score in the Amazon EC2 User Guide.

', 'refs' => [ 'FleetLaunchTemplateOverrides$InstanceRequirements' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes.

If you specify InstanceRequirements, you can\'t specify InstanceType.

', 'LaunchTemplateOverrides$InstanceRequirements' => '

The instance requirements. When you specify instance requirements, Amazon EC2 will identify instance types with the provided requirements, and then use your On-Demand and Spot allocation strategies to launch instances from these instance types, in the same way as when you specify a list of instance types.

If you specify InstanceRequirements, you can\'t specify InstanceType.

', 'ResponseLaunchTemplateData$InstanceRequirements' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with these attributes.

If you specify InstanceRequirements, you can\'t specify InstanceTypes.

', 'SpotFleetLaunchSpecification$InstanceRequirements' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes.

If you specify InstanceRequirements, you can\'t specify InstanceType.

', ], ], 'InstanceRequirementsRequest' => [ 'base' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with these attributes.

You must specify VCpuCount and MemoryMiB. All other attributes are optional. Any unspecified optional attribute is set to its default.

When you specify multiple attributes, you get instance types that satisfy all of the specified attributes. If you specify multiple values for an attribute, you get instance types that satisfy any of the specified values.

To limit the list of instance types from which Amazon EC2 can identify matching instance types, you can use one of the following parameters, but not both in the same request:

  • AllowedInstanceTypes - The instance types to include in the list. All other instance types are ignored, even if they match your specified attributes.

  • ExcludedInstanceTypes - The instance types to exclude from the list, even if they match your specified attributes.

If you specify InstanceRequirements, you can\'t specify InstanceType.

Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the launch instance wizard, or with the RunInstances API or AWS::EC2::Instance Amazon Web Services CloudFormation resource, you can\'t specify InstanceRequirements.

For more information, see Attribute-based instance type selection for EC2 Fleet, Attribute-based instance type selection for Spot Fleet, and Spot placement score in the Amazon EC2 User Guide.

', 'refs' => [ 'FleetLaunchTemplateOverridesRequest$InstanceRequirements' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes.

If you specify InstanceRequirements, you can\'t specify InstanceType.

', 'GetInstanceTypesFromInstanceRequirementsRequest$InstanceRequirements' => '

The attributes required for the instance types.

', 'InstanceRequirementsWithMetadataRequest$InstanceRequirements' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes.

', 'RequestLaunchTemplateData$InstanceRequirements' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with these attributes.

You must specify VCpuCount and MemoryMiB. All other attributes are optional. Any unspecified optional attribute is set to its default.

When you specify multiple attributes, you get instance types that satisfy all of the specified attributes. If you specify multiple values for an attribute, you get instance types that satisfy any of the specified values.

To limit the list of instance types from which Amazon EC2 can identify matching instance types, you can use one of the following parameters, but not both in the same request:

  • AllowedInstanceTypes - The instance types to include in the list. All other instance types are ignored, even if they match your specified attributes.

  • ExcludedInstanceTypes - The instance types to exclude from the list, even if they match your specified attributes.

If you specify InstanceRequirements, you can\'t specify InstanceType.

Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the launch instance wizard, or with the RunInstances API or AWS::EC2::Instance Amazon Web Services CloudFormation resource, you can\'t specify InstanceRequirements.

For more information, see Attribute-based instance type selection for EC2 Fleet, Attribute-based instance type selection for Spot Fleet, and Spot placement score in the Amazon EC2 User Guide.

', ], ], 'InstanceRequirementsWithMetadataRequest' => [ 'base' => '

The architecture type, virtualization type, and other attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes.

If you specify InstanceRequirementsWithMetadataRequest, you can\'t specify InstanceTypes.

', 'refs' => [ 'GetSpotPlacementScoresRequest$InstanceRequirementsWithMetadata' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes.

If you specify InstanceRequirementsWithMetadata, you can\'t specify InstanceTypes.

', ], ], 'InstanceSet' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTopologyResult$Instances' => '

Information about the topology of each instance.

', ], ], 'InstanceSpecification' => [ 'base' => '

The instance details to specify which volumes should be snapshotted.

', 'refs' => [ 'CreateSnapshotsRequest$InstanceSpecification' => '

The instance to specify which volumes should be included in the snapshots.

', ], ], 'InstanceState' => [ 'base' => '

Describes the current state of an instance.

', 'refs' => [ 'Instance$State' => '

The current state of the instance.

', 'InstanceStateChange$CurrentState' => '

The current state of the instance.

', 'InstanceStateChange$PreviousState' => '

The previous state of the instance.

', 'InstanceStatus$InstanceState' => '

The intended state of the instance. DescribeInstanceStatus requires that an instance be in the running state.

', ], ], 'InstanceStateChange' => [ 'base' => '

Describes an instance state change.

', 'refs' => [ 'InstanceStateChangeList$member' => NULL, ], ], 'InstanceStateChangeList' => [ 'base' => NULL, 'refs' => [ 'StartInstancesResult$StartingInstances' => '

Information about the started instances.

', 'StopInstancesResult$StoppingInstances' => '

Information about the stopped instances.

', 'TerminateInstancesResult$TerminatingInstances' => '

Information about the terminated instances.

', ], ], 'InstanceStateName' => [ 'base' => NULL, 'refs' => [ 'InstanceState$Name' => '

The current state of the instance.

', ], ], 'InstanceStatus' => [ 'base' => '

Describes the status of an instance.

', 'refs' => [ 'InstanceStatusList$member' => NULL, ], ], 'InstanceStatusDetails' => [ 'base' => '

Describes the instance status.

', 'refs' => [ 'InstanceStatusDetailsList$member' => NULL, ], ], 'InstanceStatusDetailsList' => [ 'base' => NULL, 'refs' => [ 'InstanceStatusSummary$Details' => '

The system instance health or application instance health.

', ], ], 'InstanceStatusEvent' => [ 'base' => '

Describes a scheduled event for an instance.

', 'refs' => [ 'InstanceStatusEventList$member' => NULL, 'ModifyInstanceEventStartTimeResult$Event' => '

Information about the event.

', ], ], 'InstanceStatusEventList' => [ 'base' => NULL, 'refs' => [ 'InstanceStatus$Events' => '

Any scheduled events associated with the instance.

', ], ], 'InstanceStatusList' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceStatusResult$InstanceStatuses' => '

Information about the status of the instances.

', ], ], 'InstanceStatusSummary' => [ 'base' => '

Describes the status of an instance.

', 'refs' => [ 'InstanceStatus$InstanceStatus' => '

Reports impaired functionality that stems from issues internal to the instance, such as impaired reachability.

', 'InstanceStatus$SystemStatus' => '

Reports impaired functionality that stems from issues related to the systems that support an instance, such as hardware failures and network connectivity problems.

', ], ], 'InstanceStorageEncryptionSupport' => [ 'base' => NULL, 'refs' => [ 'InstanceStorageInfo$EncryptionSupport' => '

Indicates whether data is encrypted at rest.

', ], ], 'InstanceStorageFlag' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$InstanceStorageSupported' => '

Indicates whether instance storage is supported.

', ], ], 'InstanceStorageInfo' => [ 'base' => '

Describes the instance store features that are supported by the instance type.

', 'refs' => [ 'InstanceTypeInfo$InstanceStorageInfo' => '

Describes the instance storage for the instance type.

', ], ], 'InstanceTagKeySet' => [ 'base' => NULL, 'refs' => [ 'DeregisterInstanceTagAttributeRequest$InstanceTagKeys' => '

Information about the tag keys to deregister.

', 'InstanceTagNotificationAttribute$InstanceTagKeys' => '

The registered tag keys.

', 'RegisterInstanceTagAttributeRequest$InstanceTagKeys' => '

The tag keys to register.

', ], ], 'InstanceTagNotificationAttribute' => [ 'base' => '

Describes the registered tag keys for the current Region.

', 'refs' => [ 'DeregisterInstanceEventNotificationAttributesResult$InstanceTagAttribute' => '

The resulting set of tag keys.

', 'DescribeInstanceEventNotificationAttributesResult$InstanceTagAttribute' => '

Information about the registered tag keys.

', 'RegisterInstanceEventNotificationAttributesResult$InstanceTagAttribute' => '

The resulting set of tag keys.

', ], ], 'InstanceTopology' => [ 'base' => '

Information about the instance topology.

', 'refs' => [ 'InstanceSet$member' => NULL, ], ], 'InstanceType' => [ 'base' => NULL, 'refs' => [ 'CreateFleetInstance$InstanceType' => '

The instance type.

', 'DescribeFleetsInstances$InstanceType' => '

The instance type.

', 'DescribeReservedInstancesOfferingsRequest$InstanceType' => '

The instance type that the reservation will cover (for example, m1.small). For more information, see Instance types in the Amazon EC2 User Guide.

', 'FleetCapacityReservation$InstanceType' => '

The instance type for which the Capacity Reservation reserves capacity.

', 'FleetLaunchTemplateOverrides$InstanceType' => '

The instance type.

mac1.metal is not supported as a launch template override.

If you specify InstanceType, you can\'t specify InstanceRequirements.

', 'FleetLaunchTemplateOverridesRequest$InstanceType' => '

The instance type.

mac1.metal is not supported as a launch template override.

If you specify InstanceType, you can\'t specify InstanceRequirements.

', 'ImportInstanceLaunchSpecification$InstanceType' => '

The instance type. For more information about the instance types that you can import, see Instance Types in the VM Import/Export User Guide.

', 'Instance$InstanceType' => '

The instance type.

', 'InstanceTypeInfo$InstanceType' => '

The instance type. For more information, see Instance types in the Amazon EC2 User Guide.

', 'InstanceTypeList$member' => NULL, 'InstanceTypeOffering$InstanceType' => '

The instance type. For more information, see Instance types in the Amazon EC2 User Guide.

', 'LaunchSpecification$InstanceType' => '

The instance type. Only one instance type can be specified.

', 'LaunchTemplateOverrides$InstanceType' => '

The instance type.

', 'RequestInstanceTypeList$member' => NULL, 'RequestLaunchTemplateData$InstanceType' => '

The instance type. For more information, see Instance types in the Amazon Elastic Compute Cloud User Guide.

If you specify InstanceType, you can\'t specify InstanceRequirements.

', 'RequestSpotLaunchSpecification$InstanceType' => '

The instance type. Only one instance type can be specified.

', 'ReservationFleetInstanceSpecification$InstanceType' => '

The instance type for which the Capacity Reservation Fleet reserves capacity.

', 'ReservedInstances$InstanceType' => '

The instance type on which the Reserved Instance can be used.

', 'ReservedInstancesConfiguration$InstanceType' => '

The instance type for the modified Reserved Instances.

', 'ReservedInstancesOffering$InstanceType' => '

The instance type on which the Reserved Instance can be used.

', 'ResponseLaunchTemplateData$InstanceType' => '

The instance type.

', 'RunInstancesRequest$InstanceType' => '

The instance type. For more information, see Instance types in the Amazon EC2 User Guide.

', 'SpotFleetLaunchSpecification$InstanceType' => '

The instance type.

', 'SpotPrice$InstanceType' => '

The instance type.

', ], ], 'InstanceTypeHypervisor' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$Hypervisor' => '

The hypervisor for the instance type.

', ], ], 'InstanceTypeInfo' => [ 'base' => '

Describes the instance type.

', 'refs' => [ 'InstanceTypeInfoList$member' => NULL, ], ], 'InstanceTypeInfoFromInstanceRequirements' => [ 'base' => '

The list of instance types with the specified instance attributes.

', 'refs' => [ 'InstanceTypeInfoFromInstanceRequirementsSet$member' => NULL, ], ], 'InstanceTypeInfoFromInstanceRequirementsSet' => [ 'base' => NULL, 'refs' => [ 'GetInstanceTypesFromInstanceRequirementsResult$InstanceTypes' => '

The instance types with the specified instance attributes.

', ], ], 'InstanceTypeInfoList' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTypesResult$InstanceTypes' => '

The instance type. For more information, see Instance types in the Amazon EC2 User Guide.

', ], ], 'InstanceTypeList' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotPriceHistoryRequest$InstanceTypes' => '

Filters the results by the specified instance types.

', ], ], 'InstanceTypeOffering' => [ 'base' => '

The instance types offered.

', 'refs' => [ 'InstanceTypeOfferingsList$member' => NULL, ], ], 'InstanceTypeOfferingsList' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTypeOfferingsResult$InstanceTypeOfferings' => '

The instance types offered.

', ], ], 'InstanceTypes' => [ 'base' => NULL, 'refs' => [ 'GetSpotPlacementScoresRequest$InstanceTypes' => '

The instance types. We recommend that you specify at least three instance types. If you specify one or two instance types, or specify variations of a single instance type (for example, an m3.xlarge with and without instance storage), the returned placement score will always be low.

If you specify InstanceTypes, you can\'t specify InstanceRequirementsWithMetadata.

', ], ], 'InstanceTypesList' => [ 'base' => NULL, 'refs' => [ 'FpgaImage$InstanceTypes' => '

The instance types supported by the AFI.

', ], ], 'InstanceUsage' => [ 'base' => '

Information about the Capacity Reservation usage.

', 'refs' => [ 'InstanceUsageSet$member' => NULL, ], ], 'InstanceUsageSet' => [ 'base' => NULL, 'refs' => [ 'GetCapacityReservationUsageResult$InstanceUsages' => '

Information about the Capacity Reservation usage.

', ], ], 'Integer' => [ 'base' => NULL, 'refs' => [ 'AcceleratorCount$Min' => '

The minimum number of accelerators. If this parameter is not specified, there is no minimum limit.

', 'AcceleratorCount$Max' => '

The maximum number of accelerators. If this parameter is not specified, there is no maximum limit.

', 'AcceleratorCountRequest$Min' => '

The minimum number of accelerators. To specify no minimum limit, omit this parameter.

', 'AcceleratorCountRequest$Max' => '

The maximum number of accelerators. To specify no maximum limit, omit this parameter. To exclude accelerator-enabled instance types, set Max to 0.

', 'AcceleratorTotalMemoryMiB$Min' => '

The minimum amount of accelerator memory, in MiB. If this parameter is not specified, there is no minimum limit.

', 'AcceleratorTotalMemoryMiB$Max' => '

The maximum amount of accelerator memory, in MiB. If this parameter is not specified, there is no maximum limit.

', 'AcceleratorTotalMemoryMiBRequest$Min' => '

The minimum amount of accelerator memory, in MiB. To specify no minimum limit, omit this parameter.

', 'AcceleratorTotalMemoryMiBRequest$Max' => '

The maximum amount of accelerator memory, in MiB. To specify no maximum limit, omit this parameter.

', 'AllocateHostsRequest$Quantity' => '

The number of Dedicated Hosts to allocate to your account with these parameters. If you are allocating the Dedicated Hosts on an Outpost, and you specify AssetIds, you can omit this parameter. In this case, Amazon EC2 allocates a Dedicated Host on each specified hardware asset. If you specify both AssetIds and Quantity, then the value that you specify for Quantity must be equal to the number of asset IDs specified.

', 'AllocateIpamPoolCidrRequest$NetmaskLength' => '

The netmask length of the CIDR you would like to allocate from the IPAM pool. Note the following:

  • If there is no DefaultNetmaskLength allocation rule set on the pool, you must specify either the NetmaskLength or the CIDR.

  • If the DefaultNetmaskLength allocation rule is set on the pool, you can specify either the NetmaskLength or the CIDR and the DefaultNetmaskLength allocation rule will be ignored.

Possible netmask lengths for IPv4 addresses are 0 - 32. Possible netmask lengths for IPv6 addresses are 0 - 128.

', 'AnalysisAclRule$RuleNumber' => '

The rule number.

', 'AssignIpv6AddressesRequest$Ipv6AddressCount' => '

The number of additional IPv6 addresses to assign to the network interface. The specified number of IPv6 addresses are assigned in addition to the existing IPv6 addresses that are already assigned to the network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range. You can\'t use this option if specifying specific IPv6 addresses.

', 'AssignIpv6AddressesRequest$Ipv6PrefixCount' => '

The number of IPv6 prefixes that Amazon Web Services automatically assigns to the network interface. You cannot use this option if you use the Ipv6Prefixes option.

', 'AssignPrivateIpAddressesRequest$SecondaryPrivateIpAddressCount' => '

The number of secondary IP addresses to assign to the network interface. You can\'t specify this parameter when also specifying private IP addresses.

', 'AssignPrivateIpAddressesRequest$Ipv4PrefixCount' => '

The number of IPv4 prefixes that Amazon Web Services automatically assigns to the network interface. You cannot use this option if you use the Ipv4 Prefixes option.

', 'AssociateTrunkInterfaceRequest$VlanId' => '

The ID of the VLAN. This applies to the VLAN protocol.

', 'AssociateTrunkInterfaceRequest$GreKey' => '

The application key. This applies to the GRE protocol.

', 'AttachNetworkInterfaceRequest$DeviceIndex' => '

The index of the device for the network interface attachment.

', 'AttachNetworkInterfaceRequest$NetworkCardIndex' => '

The index of the network card. Some instance types support multiple network cards. The primary network interface must be assigned to network card index 0. The default is network card index 0.

', 'AttachNetworkInterfaceResult$NetworkCardIndex' => '

The index of the network card.

', 'AuthorizeSecurityGroupEgressRequest$FromPort' => '

Not supported. Use a set of IP permissions to specify the port.

', 'AuthorizeSecurityGroupEgressRequest$ToPort' => '

Not supported. Use a set of IP permissions to specify the port.

', 'AuthorizeSecurityGroupIngressRequest$FromPort' => '

If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP, this is the type number. A value of -1 indicates all ICMP types. If you specify all ICMP types, you must specify all ICMP codes.

Alternatively, use a set of IP permissions to specify multiple rules and a description for the rule.

', 'AuthorizeSecurityGroupIngressRequest$ToPort' => '

If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP, this is the code. A value of -1 indicates all ICMP codes. If you specify all ICMP types, you must specify all ICMP codes.

Alternatively, use a set of IP permissions to specify multiple rules and a description for the rule.

', 'AvailableCapacity$AvailableVCpus' => '

The number of vCPUs available for launching instances onto the Dedicated Host.

', 'BaselineEbsBandwidthMbps$Min' => '

The minimum baseline bandwidth, in Mbps. If this parameter is not specified, there is no minimum limit.

', 'BaselineEbsBandwidthMbps$Max' => '

The maximum baseline bandwidth, in Mbps. If this parameter is not specified, there is no maximum limit.

', 'BaselineEbsBandwidthMbpsRequest$Min' => '

The minimum baseline bandwidth, in Mbps. To specify no minimum limit, omit this parameter.

', 'BaselineEbsBandwidthMbpsRequest$Max' => '

The maximum baseline bandwidth, in Mbps. To specify no maximum limit, omit this parameter.

', 'CapacityAllocation$Count' => '

The amount of instance capacity associated with the usage. For example a value of 4 indicates that instance capacity for 4 instances is currently in use.

', 'CapacityBlockOffering$InstanceCount' => '

The number of instances in the Capacity Block offering.

', 'CapacityBlockOffering$CapacityBlockDurationHours' => '

The amount of time of the Capacity Block reservation in hours.

', 'CapacityReservation$TotalInstanceCount' => '

The total number of instances for which the Capacity Reservation reserves capacity.

', 'CapacityReservation$AvailableInstanceCount' => '

The remaining capacity. Indicates the number of instances that can be launched in the Capacity Reservation.

', 'CapacityReservationFleet$TotalTargetCapacity' => '

The total number of capacity units for which the Capacity Reservation Fleet reserves capacity. For more information, see Total target capacity in the Amazon EC2 User Guide.

', 'ClientVpnEndpoint$VpnPort' => '

The port number for the Client VPN endpoint.

', 'ClientVpnEndpoint$SessionTimeoutHours' => '

The maximum VPN session duration time in hours.

Valid values: 8 | 10 | 12 | 24

Default value: 24

', 'ConnectionTrackingConfiguration$TcpEstablishedTimeout' => '

Timeout (in seconds) for idle TCP connections in an established state. Min: 60 seconds. Max: 432000 seconds (5 days). Default: 432000 seconds. Recommended: Less than 432000 seconds.

', 'ConnectionTrackingConfiguration$UdpStreamTimeout' => '

Timeout (in seconds) for idle UDP flows classified as streams which have seen more than one request-response transaction. Min: 60 seconds. Max: 180 seconds (3 minutes). Default: 180 seconds.

', 'ConnectionTrackingConfiguration$UdpTimeout' => '

Timeout (in seconds) for idle UDP flows that have seen traffic only in a single direction or a single request-response transaction. Min: 30 seconds. Max: 60 seconds. Default: 30 seconds.

', 'ConnectionTrackingSpecification$TcpEstablishedTimeout' => '

Timeout (in seconds) for idle TCP connections in an established state. Min: 60 seconds. Max: 432000 seconds (5 days). Default: 432000 seconds. Recommended: Less than 432000 seconds.

', 'ConnectionTrackingSpecification$UdpTimeout' => '

Timeout (in seconds) for idle UDP flows that have seen traffic only in a single direction or a single request-response transaction. Min: 30 seconds. Max: 60 seconds. Default: 30 seconds.

', 'ConnectionTrackingSpecification$UdpStreamTimeout' => '

Timeout (in seconds) for idle UDP flows classified as streams which have seen more than one request-response transaction. Min: 60 seconds. Max: 180 seconds (3 minutes). Default: 180 seconds.

', 'ConnectionTrackingSpecificationRequest$TcpEstablishedTimeout' => '

Timeout (in seconds) for idle TCP connections in an established state. Min: 60 seconds. Max: 432000 seconds (5 days). Default: 432000 seconds. Recommended: Less than 432000 seconds.

', 'ConnectionTrackingSpecificationRequest$UdpStreamTimeout' => '

Timeout (in seconds) for idle UDP flows classified as streams which have seen more than one request-response transaction. Min: 60 seconds. Max: 180 seconds (3 minutes). Default: 180 seconds.

', 'ConnectionTrackingSpecificationRequest$UdpTimeout' => '

Timeout (in seconds) for idle UDP flows that have seen traffic only in a single direction or a single request-response transaction. Min: 30 seconds. Max: 60 seconds. Default: 30 seconds.

', 'ConnectionTrackingSpecificationResponse$TcpEstablishedTimeout' => '

Timeout (in seconds) for idle TCP connections in an established state. Min: 60 seconds. Max: 432000 seconds (5 days). Default: 432000 seconds. Recommended: Less than 432000 seconds.

', 'ConnectionTrackingSpecificationResponse$UdpStreamTimeout' => '

Timeout (in seconds) for idle UDP flows classified as streams which have seen more than one request-response transaction. Min: 60 seconds. Max: 180 seconds (3 minutes). Default: 180 seconds.

', 'ConnectionTrackingSpecificationResponse$UdpTimeout' => '

Timeout (in seconds) for idle UDP flows that have seen traffic only in a single direction or a single request-response transaction. Min: 30 seconds. Max: 60 seconds. Default: 30 seconds.

', 'CpuOptions$CoreCount' => '

The number of CPU cores for the instance.

', 'CpuOptions$ThreadsPerCore' => '

The number of threads per CPU core.

', 'CpuOptionsRequest$CoreCount' => '

The number of CPU cores for the instance.

', 'CpuOptionsRequest$ThreadsPerCore' => '

The number of threads per CPU core. To disable multithreading for the instance, specify a value of 1. Otherwise, specify the default value of 2.

', 'CreateCapacityReservationFleetRequest$TotalTargetCapacity' => '

The total number of capacity units to be reserved by the Capacity Reservation Fleet. This value, together with the instance type weights that you assign to each instance type used by the Fleet determine the number of instances for which the Fleet reserves capacity. Both values are based on units that make sense for your workload. For more information, see Total target capacity in the Amazon EC2 User Guide.

', 'CreateCapacityReservationFleetResult$TotalTargetCapacity' => '

The total number of capacity units for which the Capacity Reservation Fleet reserves capacity.

', 'CreateCapacityReservationRequest$InstanceCount' => '

The number of instances for which to reserve capacity.

Valid range: 1 - 1000

', 'CreateClientVpnEndpointRequest$VpnPort' => '

The port number to assign to the Client VPN endpoint for TCP and UDP traffic.

Valid Values: 443 | 1194

Default Value: 443

', 'CreateClientVpnEndpointRequest$SessionTimeoutHours' => '

The maximum VPN session duration time in hours.

Valid values: 8 | 10 | 12 | 24

Default value: 24

', 'CreateCustomerGatewayRequest$BgpAsn' => '

For devices that support BGP, the customer gateway\'s BGP ASN.

Default: 65000

', 'CreateFlowLogsRequest$MaxAggregationInterval' => '

The maximum interval of time during which a flow of packets is captured and aggregated into a flow log record. The possible values are 60 seconds (1 minute) or 600 seconds (10 minutes). This parameter must be 60 seconds for transit gateway resource types.

When a network interface is attached to a Nitro-based instance, the aggregation interval is always 60 seconds or less, regardless of the value that you specify.

Default: 600

', 'CreateManagedPrefixListRequest$MaxEntries' => '

The maximum number of entries for the prefix list.

', 'CreateNetworkAclEntryRequest$RuleNumber' => '

The rule number for the entry (for example, 100). ACL entries are processed in ascending order by rule number.

Constraints: Positive integer from 1 to 32766. The range 32767 to 65535 is reserved for internal use.

', 'CreateNetworkInterfaceRequest$Ipv6AddressCount' => '

The number of IPv6 addresses to assign to a network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range.

You can\'t specify a count of IPv6 addresses using this parameter if you\'ve specified one of the following: specific IPv6 addresses, specific IPv6 prefixes, or a count of IPv6 prefixes.

If your subnet has the AssignIpv6AddressOnCreation attribute set, you can override that setting by specifying 0 as the IPv6 address count.

', 'CreateNetworkInterfaceRequest$SecondaryPrivateIpAddressCount' => '

The number of secondary private IPv4 addresses to assign to a network interface. When you specify a number of secondary IPv4 addresses, Amazon EC2 selects these IP addresses within the subnet\'s IPv4 CIDR range. You can\'t specify this option and specify more than one private IP address using privateIpAddresses.

You can\'t specify a count of private IPv4 addresses if you\'ve specified one of the following: specific private IPv4 addresses, specific IPv4 prefixes, or a count of IPv4 prefixes.

', 'CreateNetworkInterfaceRequest$Ipv4PrefixCount' => '

The number of IPv4 prefixes that Amazon Web Services automatically assigns to the network interface.

You can\'t specify a count of IPv4 prefixes if you\'ve specified one of the following: specific IPv4 prefixes, specific private IPv4 addresses, or a count of private IPv4 addresses.

', 'CreateNetworkInterfaceRequest$Ipv6PrefixCount' => '

The number of IPv6 prefixes that Amazon Web Services automatically assigns to the network interface.

You can\'t specify a count of IPv6 prefixes if you\'ve specified one of the following: specific IPv6 prefixes, specific IPv6 addresses, or a count of IPv6 addresses.

', 'CreatePlacementGroupRequest$PartitionCount' => '

The number of partitions. Valid only when Strategy is set to partition.

', 'CreateReservedInstancesListingRequest$InstanceCount' => '

The number of instances that are a part of a Reserved Instance account to be listed in the Reserved Instance Marketplace. This number should be less than or equal to the instance count associated with the Reserved Instance ID specified in this call.

', 'CreateTrafficMirrorFilterRuleRequest$RuleNumber' => '

The number of the Traffic Mirror rule. This number must be unique for each Traffic Mirror rule in a given direction. The rules are processed in ascending order by rule number.

', 'CreateTrafficMirrorFilterRuleRequest$Protocol' => '

The protocol, for example UDP, to assign to the Traffic Mirror rule.

For information about the protocol value, see Protocol Numbers on the Internet Assigned Numbers Authority (IANA) website.

', 'CreateTrafficMirrorSessionRequest$PacketLength' => '

The number of bytes in each packet to mirror. These are bytes after the VXLAN header. Do not specify this parameter when you want to mirror the entire packet. To mirror a subset of the packet, set this to the length (in bytes) that you want to mirror. For example, if you set this value to 100, then the first 100 bytes that meet the filter criteria are copied to the target.

If you do not want to mirror the entire packet, use the PacketLength parameter to specify the number of bytes in each packet to mirror.

For sessions with Network Load Balancer (NLB) Traffic Mirror targets the default PacketLength will be set to 8500. Valid values are 1-8500. Setting a PacketLength greater than 8500 will result in an error response.

', 'CreateTrafficMirrorSessionRequest$SessionNumber' => '

The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.

Valid values are 1-32766.

', 'CreateTrafficMirrorSessionRequest$VirtualNetworkId' => '

The VXLAN ID for the Traffic Mirror session. For more information about the VXLAN protocol, see RFC 7348. If you do not specify a VirtualNetworkId, an account-wide unique id is chosen at random.

', 'CreateVolumeRequest$Iops' => '

The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.

The following are the supported values for each volume type:

  • gp3: 3,000 - 16,000 IOPS

  • io1: 100 - 64,000 IOPS

  • io2: 100 - 256,000 IOPS

For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.

This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS. This parameter is not supported for gp2, st1, sc1, or standard volumes.

', 'CreateVolumeRequest$Size' => '

The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.

The following are the supported volumes sizes for each volume type:

  • gp2 and gp3: 1 - 16,384 GiB

  • io1: 4 - 16,384 GiB

  • io2: 4 - 65,536 GiB

  • st1 and sc1: 125 - 16,384 GiB

  • standard: 1 - 1024 GiB

', 'CreateVolumeRequest$Throughput' => '

The throughput to provision for a volume, with a maximum of 1,000 MiB/s.

This parameter is valid only for gp3 volumes.

Valid Range: Minimum value of 125. Maximum value of 1000.

', 'DeleteNetworkAclEntryRequest$RuleNumber' => '

The rule number of the entry to delete.

', 'DescribeCapacityBlockOfferingsRequest$InstanceCount' => '

The number of instances for which to reserve capacity.

', 'DescribeCapacityBlockOfferingsRequest$CapacityDurationHours' => '

The number of hours for which to reserve Capacity Block.

', 'DescribeElasticGpusResult$MaxResults' => '

The total number of items to return. If the total number of items available is more than the value specified in max-items then a Next-Token will be provided in the output that you can use to resume pagination.

', 'DescribeFastLaunchImagesSuccessItem$MaxParallelLaunches' => '

The maximum number of instances that Amazon EC2 can launch at the same time to create pre-provisioned snapshots for Windows fast launch.

', 'DescribeFleetHistoryRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeFleetInstancesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeFleetsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeFlowLogsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeHostReservationOfferingsRequest$MaxDuration' => '

This is the maximum duration of the reservation to purchase, specified in seconds. Reservations are available in one-year and three-year terms. The number of seconds specified must be the number of seconds in a year (365x24x60x60) times one of the supported durations (1 or 3). For example, specify 94608000 for three years.

', 'DescribeHostReservationOfferingsRequest$MinDuration' => '

This is the minimum duration of the reservation you\'d like to purchase, specified in seconds. Reservations are available in one-year and three-year terms. The number of seconds specified must be the number of seconds in a year (365x24x60x60) times one of the supported durations (1 or 3). For example, specify 31536000 for one year.

', 'DescribeHostReservationsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the returned nextToken value. This value can be between 5 and 500. If maxResults is given a larger value than 500, you receive an error.

', 'DescribeHostsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the returned nextToken value. This value can be between 5 and 500. If maxResults is given a larger value than 500, you receive an error.

You cannot specify this parameter and the host IDs parameter in the same request.

', 'DescribeImagesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeImportImageTasksRequest$MaxResults' => '

The maximum number of results to return in a single call.

', 'DescribeImportSnapshotTasksRequest$MaxResults' => '

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value.

', 'DescribeInstanceStatusRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

You cannot specify this parameter and the instance IDs parameter in the same request.

', 'DescribeInstancesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

You cannot specify this parameter and the instance IDs parameter in the same request.

', 'DescribeLaunchTemplateVersionsRequest$MaxResults' => '

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value. This value can be between 1 and 200.

', 'DescribePrefixListsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeReservedInstancesOfferingsRequest$MaxInstanceCount' => '

The maximum number of instances to filter when searching for offerings.

Default: 20

', 'DescribeReservedInstancesOfferingsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results of the initial request can be seen by sending another request with the returned NextToken value. The maximum is 100.

Default: 100

', 'DescribeScheduledInstanceAvailabilityRequest$MaxSlotDurationInHours' => '

The maximum available duration, in hours. This value must be greater than MinSlotDurationInHours and less than 1,720.

', 'DescribeScheduledInstanceAvailabilityRequest$MinSlotDurationInHours' => '

The minimum available duration, in hours. The minimum required duration is 1,200 hours per year. For example, the minimum daily schedule is 4 hours, the minimum weekly schedule is 24 hours, and the minimum monthly schedule is 100 hours.

', 'DescribeScheduledInstancesRequest$MaxResults' => '

The maximum number of results to return in a single call. This value can be between 5 and 300. The default value is 100. To retrieve the remaining results, make another call with the returned NextToken value.

', 'DescribeSnapshotsRequest$MaxResults' => '

The maximum number of snapshots to return for this request. This value can be between 5 and 1,000; if this value is larger than 1,000, only 1,000 results are returned. If this parameter is not used, then the request returns all snapshots. You cannot specify this parameter and the snapshot IDs parameter in the same request. For more information, see Pagination.

', 'DescribeSpotFleetRequestsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeSpotInstanceRequestsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeSpotPriceHistoryRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeTagsRequest$MaxResults' => '

The maximum number of items to return for this request. This value can be between 5 and 1000. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeVolumeStatusRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. This value can be between 5 and 1,000; if the value is larger than 1,000, only 1,000 results are returned. If this parameter is not used, then all items are returned. You cannot specify this parameter and the volume IDs parameter in the same request. For more information, see Pagination.

', 'DescribeVolumesModificationsRequest$MaxResults' => '

The maximum number of results (up to a limit of 500) to be returned in a paginated request. For more information, see Pagination.

', 'DescribeVolumesRequest$MaxResults' => '

The maximum number of volumes to return for this request. This value can be between 5 and 500; if you specify a value larger than 500, only 500 items are returned. If this parameter is not used, then all items are returned. You cannot specify this parameter and the volume IDs parameter in the same request. For more information, see Pagination.

', 'DescribeVpcEndpointConnectionNotificationsRequest$MaxResults' => '

The maximum number of results to return in a single call. To retrieve the remaining results, make another request with the returned NextToken value.

', 'DescribeVpcEndpointConnectionsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results of the initial request can be seen by sending another request with the returned NextToken value. This value can be between 5 and 1,000; if MaxResults is given a value larger than 1,000, only 1,000 results are returned.

', 'DescribeVpcEndpointServiceConfigurationsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results of the initial request can be seen by sending another request with the returned NextToken value. This value can be between 5 and 1,000; if MaxResults is given a value larger than 1,000, only 1,000 results are returned.

', 'DescribeVpcEndpointServicePermissionsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results of the initial request can be seen by sending another request with the returned NextToken value. This value can be between 5 and 1,000; if MaxResults is given a value larger than 1,000, only 1,000 results are returned.

', 'DescribeVpcEndpointServicesRequest$MaxResults' => '

The maximum number of items to return for this request. The request returns a token that you can specify in a subsequent call to get the next set of results.

Constraint: If the value is greater than 1,000, we return only 1,000 items.

', 'DescribeVpcEndpointsRequest$MaxResults' => '

The maximum number of items to return for this request. The request returns a token that you can specify in a subsequent call to get the next set of results.

Constraint: If the value is greater than 1,000, we return only 1,000 items.

', 'DisableFastLaunchResult$MaxParallelLaunches' => '

The maximum number of instances that Amazon EC2 can launch at the same time to create pre-provisioned snapshots for Windows fast launch.

', 'EbsBlockDevice$Iops' => '

The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.

The following are the supported values for each volume type:

  • gp3: 3,000 - 16,000 IOPS

  • io1: 100 - 64,000 IOPS

  • io2: 100 - 256,000 IOPS

For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.

This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS.

', 'EbsBlockDevice$VolumeSize' => '

The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.

The following are the supported sizes for each volume type:

  • gp2 and gp3: 1 - 16,384 GiB

  • io1: 4 - 16,384 GiB

  • io2: 4 - 65,536 GiB

  • st1 and sc1: 125 - 16,384 GiB

  • standard: 1 - 1024 GiB

', 'EbsBlockDevice$Throughput' => '

The throughput that the volume supports, in MiB/s.

This parameter is valid only for gp3 volumes.

Valid Range: Minimum value of 125. Maximum value of 1000.

', 'EnableFastLaunchRequest$MaxParallelLaunches' => '

The maximum number of instances that Amazon EC2 can launch at the same time to create pre-provisioned snapshots for Windows fast launch. Value must be 6 or greater.

', 'EnableFastLaunchResult$MaxParallelLaunches' => '

The maximum number of instances that Amazon EC2 can launch at the same time to create pre-provisioned snapshots for Windows fast launch.

', 'FastLaunchSnapshotConfigurationRequest$TargetResourceCount' => '

The number of pre-provisioned snapshots to keep on hand for a Windows fast launch enabled AMI.

', 'FastLaunchSnapshotConfigurationResponse$TargetResourceCount' => '

The number of pre-provisioned snapshots requested to keep on hand for a Windows fast launch enabled AMI.

', 'FleetCapacityReservation$TotalInstanceCount' => '

The total number of instances for which the Capacity Reservation reserves capacity.

', 'FleetSpotCapacityRebalance$TerminationDelay' => '

The amount of time (in seconds) that Amazon EC2 waits before terminating the old Spot Instance after launching a new replacement Spot Instance.

Required when ReplacementStrategy is set to launch-before-terminate.

Not valid when ReplacementStrategy is set to launch.

Valid values: Minimum value of 120 seconds. Maximum value of 7200 seconds.

', 'FleetSpotCapacityRebalanceRequest$TerminationDelay' => '

The amount of time (in seconds) that Amazon EC2 waits before terminating the old Spot Instance after launching a new replacement Spot Instance.

Required when ReplacementStrategy is set to launch-before-terminate.

Not valid when ReplacementStrategy is set to launch.

Valid values: Minimum value of 120 seconds. Maximum value of 7200 seconds.

', 'FlowLog$MaxAggregationInterval' => '

The maximum interval of time, in seconds, during which a flow of packets is captured and aggregated into a flow log record.

When a network interface is attached to a Nitro-based instance, the aggregation interval is always 60 seconds (1 minute) or less, regardless of the specified value.

Valid Values: 60 | 600

', 'GetAwsNetworkPerformanceDataRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetCapacityReservationUsageResult$TotalInstanceCount' => '

The number of instances for which the Capacity Reservation reserves capacity.

', 'GetCapacityReservationUsageResult$AvailableInstanceCount' => '

The remaining capacity. Indicates the number of instances that can be launched in the Capacity Reservation.

', 'GetInstanceTypesFromInstanceRequirementsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'HostOffering$Duration' => '

The duration of the offering (in seconds).

', 'HostProperties$Cores' => '

The number of cores on the Dedicated Host.

', 'HostProperties$Sockets' => '

The number of sockets on the Dedicated Host.

', 'HostProperties$TotalVCpus' => '

The total number of vCPUs on the Dedicated Host.

', 'HostReservation$Count' => '

The number of Dedicated Hosts the reservation is associated with.

', 'HostReservation$Duration' => '

The length of the reservation\'s term, specified in seconds. Can be 31536000 (1 year) | 94608000 (3 years).

', 'IcmpTypeCode$Code' => '

The ICMP code. A value of -1 means all codes for the specified ICMP type.

', 'IcmpTypeCode$Type' => '

The ICMP type. A value of -1 means all types.

', 'Instance$AmiLaunchIndex' => '

The AMI launch index, which can be used to find this instance in the launch group.

', 'InstanceCapacity$AvailableCapacity' => '

The number of instances that can be launched onto the Dedicated Host based on the host\'s available capacity.

', 'InstanceCapacity$TotalCapacity' => '

The total number of instances that can be launched onto the Dedicated Host if there are no instances running on it.

', 'InstanceCount$InstanceCount' => '

The number of listed Reserved Instances in the state specified by the state.

', 'InstanceMetadataOptionsRequest$HttpPutResponseHopLimit' => '

The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel.

Default: 1

Possible values: Integers from 1 to 64

', 'InstanceMetadataOptionsResponse$HttpPutResponseHopLimit' => '

The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel.

Default: 1

Possible values: Integers from 1 to 64

', 'InstanceNetworkInterfaceAttachment$DeviceIndex' => '

The index of the device on the instance for the network interface attachment.

', 'InstanceNetworkInterfaceAttachment$NetworkCardIndex' => '

The index of the network card.

', 'InstanceNetworkInterfaceSpecification$DeviceIndex' => '

The position of the network interface in the attachment order. A primary network interface has a device index of 0.

If you specify a network interface when launching an instance, you must specify the device index.

', 'InstanceNetworkInterfaceSpecification$Ipv6AddressCount' => '

A number of IPv6 addresses to assign to the network interface. Amazon EC2 chooses the IPv6 addresses from the range of the subnet. You cannot specify this option and the option to assign specific IPv6 addresses in the same request. You can specify this option if you\'ve specified a minimum number of instances to launch.

', 'InstanceNetworkInterfaceSpecification$SecondaryPrivateIpAddressCount' => '

The number of secondary private IPv4 addresses. You can\'t specify this option and specify more than one private IP address using the private IP addresses option. You cannot specify this option if you\'re launching more than one instance in a RunInstances request.

', 'InstanceNetworkInterfaceSpecification$NetworkCardIndex' => '

The index of the network card. Some instance types support multiple network cards. The primary network interface must be assigned to network card index 0. The default is network card index 0.

If you are using RequestSpotInstances to create Spot Instances, omit this parameter because you can’t specify the network card index when using this API. To specify the network card index, use RunInstances.

', 'InstanceNetworkInterfaceSpecification$Ipv4PrefixCount' => '

The number of IPv4 delegated prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv4Prefix option.

', 'InstanceNetworkInterfaceSpecification$Ipv6PrefixCount' => '

The number of IPv6 delegated prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv6Prefix option.

', 'InstanceRequirements$SpotMaxPricePercentageOverLowestPrice' => '

[Price protection] The price protection threshold for Spot Instances, as a percentage higher than an identified Spot price. The identified Spot price is the Spot price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified Spot price is from the lowest priced current generation instance types, and failing that, from the lowest priced previous generation instance types that match your attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose Spot price exceeds your specified threshold.

The parameter accepts an integer, which Amazon EC2 interprets as a percentage.

To indicate no price protection threshold, specify a high value, such as 999999.

If you set TargetCapacityUnitType to vcpu or memory-mib, the price protection threshold is applied based on the per-vCPU or per-memory price instead of the per-instance price.

This parameter is not supported for GetSpotPlacementScores and GetInstanceTypesFromInstanceRequirements.

Only one of SpotMaxPricePercentageOverLowestPrice or MaxSpotPriceAsPercentageOfOptimalOnDemandPrice can be specified. If you don\'t specify either, then SpotMaxPricePercentageOverLowestPrice is used and the value for that parameter defaults to 100.

Default: 100

', 'InstanceRequirements$OnDemandMaxPricePercentageOverLowestPrice' => '

[Price protection] The price protection threshold for On-Demand Instances, as a percentage higher than an identified On-Demand price. The identified On-Demand price is the price of the lowest priced current generation C, M, or R instance type with your specified attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose price exceeds your specified threshold.

The parameter accepts an integer, which Amazon EC2 interprets as a percentage.

To turn off price protection, specify a high value, such as 999999.

This parameter is not supported for GetSpotPlacementScores and GetInstanceTypesFromInstanceRequirements.

If you set TargetCapacityUnitType to vcpu or memory-mib, the price protection threshold is applied based on the per-vCPU or per-memory price instead of the per-instance price.

Default: 20

', 'InstanceRequirements$MaxSpotPriceAsPercentageOfOptimalOnDemandPrice' => '

[Price protection] The price protection threshold for Spot Instances, as a percentage of an identified On-Demand price. The identified On-Demand price is the price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified price is from the lowest priced current generation instance types, and failing that, from the lowest priced previous generation instance types that match your attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose price exceeds your specified threshold.

The parameter accepts an integer, which Amazon EC2 interprets as a percentage.

To indicate no price protection threshold, specify a high value, such as 999999.

If you set DesiredCapacityType to vcpu or memory-mib, the price protection threshold is based on the per vCPU or per memory price instead of the per instance price.

Only one of SpotMaxPricePercentageOverLowestPrice or MaxSpotPriceAsPercentageOfOptimalOnDemandPrice can be specified. If you don\'t specify either, then SpotMaxPricePercentageOverLowestPrice is used and the value for that parameter defaults to 100.

', 'InstanceRequirementsRequest$SpotMaxPricePercentageOverLowestPrice' => '

[Price protection] The price protection threshold for Spot Instances, as a percentage higher than an identified Spot price. The identified Spot price is the Spot price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified Spot price is from the lowest priced current generation instance types, and failing that, from the lowest priced previous generation instance types that match your attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose Spot price exceeds your specified threshold.

The parameter accepts an integer, which Amazon EC2 interprets as a percentage.

To indicate no price protection threshold, specify a high value, such as 999999.

If you set TargetCapacityUnitType to vcpu or memory-mib, the price protection threshold is applied based on the per-vCPU or per-memory price instead of the per-instance price.

This parameter is not supported for GetSpotPlacementScores and GetInstanceTypesFromInstanceRequirements.

Only one of SpotMaxPricePercentageOverLowestPrice or MaxSpotPriceAsPercentageOfOptimalOnDemandPrice can be specified. If you don\'t specify either, then SpotMaxPricePercentageOverLowestPrice is used and the value for that parameter defaults to 100.

Default: 100

', 'InstanceRequirementsRequest$OnDemandMaxPricePercentageOverLowestPrice' => '

[Price protection] The price protection threshold for On-Demand Instances, as a percentage higher than an identified On-Demand price. The identified On-Demand price is the price of the lowest priced current generation C, M, or R instance type with your specified attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose price exceeds your specified threshold.

The parameter accepts an integer, which Amazon EC2 interprets as a percentage.

To indicate no price protection threshold, specify a high value, such as 999999.

This parameter is not supported for GetSpotPlacementScores and GetInstanceTypesFromInstanceRequirements.

If you set TargetCapacityUnitType to vcpu or memory-mib, the price protection threshold is applied based on the per-vCPU or per-memory price instead of the per-instance price.

Default: 20

', 'InstanceRequirementsRequest$MaxSpotPriceAsPercentageOfOptimalOnDemandPrice' => '

[Price protection] The price protection threshold for Spot Instances, as a percentage of an identified On-Demand price. The identified On-Demand price is the price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified price is from the lowest priced current generation instance types, and failing that, from the lowest priced previous generation instance types that match your attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose price exceeds your specified threshold.

The parameter accepts an integer, which Amazon EC2 interprets as a percentage.

To indicate no price protection threshold, specify a high value, such as 999999.

If you set DesiredCapacityType to vcpu or memory-mib, the price protection threshold is based on the per vCPU or per memory price instead of the per instance price.

Only one of SpotMaxPricePercentageOverLowestPrice or MaxSpotPriceAsPercentageOfOptimalOnDemandPrice can be specified. If you don\'t specify either, then SpotMaxPricePercentageOverLowestPrice is used and the value for that parameter defaults to 100.

', 'InstanceState$Code' => '

The state of the instance as a 16-bit unsigned integer.

The high byte is all of the bits between 2^8 and (2^16)-1, which equals decimal values between 256 and 65,535. These numerical values are used for internal purposes and should be ignored.

The low byte is all of the bits between 2^0 and (2^8)-1, which equals decimal values between 0 and 255.

The valid values for instance-state-code will all be in the range of the low byte and they are:

  • 0 : pending

  • 16 : running

  • 32 : shutting-down

  • 48 : terminated

  • 64 : stopping

  • 80 : stopped

You can ignore the high byte value by zeroing out all of the bits above 2^8 or 256 in decimal.

', 'InstanceUsage$UsedInstanceCount' => '

The number of instances the Amazon Web Services account currently has in the Capacity Reservation.

', 'IpPermission$FromPort' => '

If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP or ICMPv6, this is the type number. A value of -1 indicates all ICMP/ICMPv6 types. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.

', 'IpPermission$ToPort' => '

If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP or ICMPv6, this is the code. A value of -1 indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.

', 'Ipam$ScopeCount' => '

The number of scopes in the IPAM. The scope quota is 5. For more information on quotas, see Quotas in IPAM in the Amazon VPC IPAM User Guide.

', 'Ipam$ResourceDiscoveryAssociationCount' => '

The IPAM\'s resource discovery association count.

', 'IpamPool$PoolDepth' => '

The depth of pools in your IPAM pool. The pool depth quota is 10. For more information, see Quotas in IPAM in the Amazon VPC IPAM User Guide.

', 'IpamPoolCidr$NetmaskLength' => '

The netmask length of the CIDR you\'d like to provision to a pool. Can be used for provisioning Amazon-provided IPv6 CIDRs to top-level pools and for provisioning CIDRs to pools with source pools. Cannot be used to provision BYOIP CIDRs to top-level pools. "NetmaskLength" or "Cidr" is required.

', 'IpamScope$PoolCount' => '

The number of pools in the scope.

', 'LaunchTemplateCpuOptions$CoreCount' => '

The number of CPU cores for the instance.

', 'LaunchTemplateCpuOptions$ThreadsPerCore' => '

The number of threads per CPU core.

', 'LaunchTemplateCpuOptionsRequest$CoreCount' => '

The number of CPU cores for the instance.

', 'LaunchTemplateCpuOptionsRequest$ThreadsPerCore' => '

The number of threads per CPU core. To disable multithreading for the instance, specify a value of 1. Otherwise, specify the default value of 2.

', 'LaunchTemplateEbsBlockDevice$Iops' => '

The number of I/O operations per second (IOPS) that the volume supports.

', 'LaunchTemplateEbsBlockDevice$VolumeSize' => '

The size of the volume, in GiB.

', 'LaunchTemplateEbsBlockDevice$Throughput' => '

The throughput that the volume supports, in MiB/s.

', 'LaunchTemplateEbsBlockDeviceRequest$Iops' => '

The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.

The following are the supported values for each volume type:

  • gp3: 3,000 - 16,000 IOPS

  • io1: 100 - 64,000 IOPS

  • io2: 100 - 256,000 IOPS

For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.

This parameter is supported for io1, io2, and gp3 volumes only.

', 'LaunchTemplateEbsBlockDeviceRequest$VolumeSize' => '

The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:

  • gp2 and gp3: 1 - 16,384 GiB

  • io1: 4 - 16,384 GiB

  • io2: 4 - 65,536 GiB

  • st1 and sc1: 125 - 16,384 GiB

  • standard: 1 - 1024 GiB

', 'LaunchTemplateEbsBlockDeviceRequest$Throughput' => '

The throughput to provision for a gp3 volume, with a maximum of 1,000 MiB/s.

Valid Range: Minimum value of 125. Maximum value of 1000.

', 'LaunchTemplateElasticInferenceAcceleratorResponse$Count' => '

The number of elastic inference accelerators to attach to the instance.

Default: 1

', 'LaunchTemplateInstanceMetadataOptions$HttpPutResponseHopLimit' => '

The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel.

Default: 1

Possible values: Integers from 1 to 64

', 'LaunchTemplateInstanceMetadataOptionsRequest$HttpPutResponseHopLimit' => '

The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel.

Default: 1

Possible values: Integers from 1 to 64

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$DeviceIndex' => '

The device index for the network interface attachment.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$Ipv6AddressCount' => '

The number of IPv6 addresses for the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$SecondaryPrivateIpAddressCount' => '

The number of secondary private IPv4 addresses for the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$NetworkCardIndex' => '

The index of the network card.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$Ipv4PrefixCount' => '

The number of IPv4 prefixes that Amazon Web Services automatically assigned to the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$Ipv6PrefixCount' => '

The number of IPv6 prefixes that Amazon Web Services automatically assigned to the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$DeviceIndex' => '

The device index for the network interface attachment.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$Ipv6AddressCount' => '

The number of IPv6 addresses to assign to a network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range. You can\'t use this option if specifying specific IPv6 addresses.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$SecondaryPrivateIpAddressCount' => '

The number of secondary private IPv4 addresses to assign to a network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$NetworkCardIndex' => '

The index of the network card. Some instance types support multiple network cards. The primary network interface must be assigned to network card index 0. The default is network card index 0.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$Ipv4PrefixCount' => '

The number of IPv4 prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv4Prefix option.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$Ipv6PrefixCount' => '

The number of IPv6 prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv6Prefix option.

', 'LaunchTemplatePlacement$PartitionNumber' => '

The number of the partition the instance should launch in. Valid only if the placement group strategy is set to partition.

', 'LaunchTemplatePlacementRequest$PartitionNumber' => '

The number of the partition the instance should launch in. Valid only if the placement group strategy is set to partition.

', 'LaunchTemplateSpotMarketOptions$BlockDurationMinutes' => '

The required duration for the Spot Instances (also known as Spot blocks), in minutes. This value must be a multiple of 60 (60, 120, 180, 240, 300, or 360).

', 'LaunchTemplateSpotMarketOptionsRequest$BlockDurationMinutes' => '

Deprecated.

', 'LocalGatewayVirtualInterface$Vlan' => '

The ID of the VLAN.

', 'LocalGatewayVirtualInterface$LocalBgpAsn' => '

The Border Gateway Protocol (BGP) Autonomous System Number (ASN) of the local gateway.

', 'LocalGatewayVirtualInterface$PeerBgpAsn' => '

The peer BGP ASN.

', 'ManagedPrefixList$MaxEntries' => '

The maximum number of entries for the prefix list.

', 'MemoryMiB$Min' => '

The minimum amount of memory, in MiB. If this parameter is not specified, there is no minimum limit.

', 'MemoryMiB$Max' => '

The maximum amount of memory, in MiB. If this parameter is not specified, there is no maximum limit.

', 'MemoryMiBRequest$Min' => '

The minimum amount of memory, in MiB. To specify no minimum limit, specify 0.

', 'MemoryMiBRequest$Max' => '

The maximum amount of memory, in MiB. To specify no maximum limit, omit this parameter.

', 'ModifyCapacityReservationFleetRequest$TotalTargetCapacity' => '

The total number of capacity units to be reserved by the Capacity Reservation Fleet. This value, together with the instance type weights that you assign to each instance type used by the Fleet determine the number of instances for which the Fleet reserves capacity. Both values are based on units that make sense for your workload. For more information, see Total target capacity in the Amazon EC2 User Guide.

', 'ModifyCapacityReservationRequest$InstanceCount' => '

The number of instances for which to reserve capacity. The number of instances can\'t be increased or decreased by more than 1000 in a single request.

', 'ModifyClientVpnEndpointRequest$VpnPort' => '

The port number to assign to the Client VPN endpoint for TCP and UDP traffic.

Valid Values: 443 | 1194

Default Value: 443

', 'ModifyClientVpnEndpointRequest$SessionTimeoutHours' => '

The maximum VPN session duration time in hours.

Valid values: 8 | 10 | 12 | 24

Default value: 24

', 'ModifyInstanceMetadataOptionsRequest$HttpPutResponseHopLimit' => '

The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel. If no parameter is specified, the existing state is maintained.

Possible values: Integers from 1 to 64

', 'ModifyInstancePlacementRequest$PartitionNumber' => '

The number of the partition in which to place the instance. Valid only if the placement group strategy is set to partition.

', 'ModifyManagedPrefixListRequest$MaxEntries' => '

The maximum number of entries for the prefix list. You cannot modify the entries of a prefix list and modify the size of a prefix list at the same time.

If any of the resources that reference the prefix list cannot support the new maximum size, the modify operation fails. Check the state message for the IDs of the first ten resources that do not support the new maximum size.

', 'ModifySpotFleetRequestRequest$TargetCapacity' => '

The size of the fleet.

', 'ModifySpotFleetRequestRequest$OnDemandTargetCapacity' => '

The number of On-Demand Instances in the fleet.

', 'ModifySubnetAttributeRequest$EnableLniAtDeviceIndex' => '

Indicates the device position for local network interfaces in this subnet. For example, 1 indicates local network interfaces in this subnet are the secondary network interface (eth1). A local network interface cannot be the primary network interface (eth0).

', 'ModifyTrafficMirrorFilterRuleRequest$RuleNumber' => '

The number of the Traffic Mirror rule. This number must be unique for each Traffic Mirror rule in a given direction. The rules are processed in ascending order by rule number.

', 'ModifyTrafficMirrorFilterRuleRequest$Protocol' => '

The protocol, for example TCP, to assign to the Traffic Mirror rule.

', 'ModifyTrafficMirrorSessionRequest$PacketLength' => '

The number of bytes in each packet to mirror. These are bytes after the VXLAN header. To mirror a subset, set this to the length (in bytes) to mirror. For example, if you set this value to 100, then the first 100 bytes that meet the filter criteria are copied to the target. Do not specify this parameter when you want to mirror the entire packet.

For sessions with Network Load Balancer (NLB) traffic mirror targets, the default PacketLength will be set to 8500. Valid values are 1-8500. Setting a PacketLength greater than 8500 will result in an error response.

', 'ModifyTrafficMirrorSessionRequest$SessionNumber' => '

The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.

Valid values are 1-32766.

', 'ModifyTrafficMirrorSessionRequest$VirtualNetworkId' => '

The virtual network ID of the Traffic Mirror session.

', 'ModifyVolumeRequest$Size' => '

The target size of the volume, in GiB. The target volume size must be greater than or equal to the existing size of the volume.

The following are the supported volumes sizes for each volume type:

  • gp2 and gp3: 1 - 16,384 GiB

  • io1: 4 - 16,384 GiB

  • io2: 4 - 65,536 GiB

  • st1 and sc1: 125 - 16,384 GiB

  • standard: 1 - 1024 GiB

Default: The existing size is retained.

', 'ModifyVolumeRequest$Iops' => '

The target IOPS rate of the volume. This parameter is valid only for gp3, io1, and io2 volumes.

The following are the supported values for each volume type:

  • gp3: 3,000 - 16,000 IOPS

  • io1: 100 - 64,000 IOPS

  • io2: 100 - 256,000 IOPS

For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.

Default: The existing value is retained if you keep the same volume type. If you change the volume type to io1, io2, or gp3, the default is 3,000.

', 'ModifyVolumeRequest$Throughput' => '

The target throughput of the volume, in MiB/s. This parameter is valid only for gp3 volumes. The maximum value is 1,000.

Default: The existing value is retained if the source and target volume type is gp3. Otherwise, the default value is 125.

Valid Range: Minimum value of 125. Maximum value of 1000.

', 'ModifyVpnTunnelOptionsSpecification$Phase1LifetimeSeconds' => '

The lifetime for phase 1 of the IKE negotiation, in seconds.

Constraints: A value between 900 and 28,800.

Default: 28800

', 'ModifyVpnTunnelOptionsSpecification$Phase2LifetimeSeconds' => '

The lifetime for phase 2 of the IKE negotiation, in seconds.

Constraints: A value between 900 and 3,600. The value must be less than the value for Phase1LifetimeSeconds.

Default: 3600

', 'ModifyVpnTunnelOptionsSpecification$RekeyMarginTimeSeconds' => '

The margin time, in seconds, before the phase 2 lifetime expires, during which the Amazon Web Services side of the VPN connection performs an IKE rekey. The exact time of the rekey is randomly selected based on the value for RekeyFuzzPercentage.

Constraints: A value between 60 and half of Phase2LifetimeSeconds.

Default: 270

', 'ModifyVpnTunnelOptionsSpecification$RekeyFuzzPercentage' => '

The percentage of the rekey window (determined by RekeyMarginTimeSeconds) during which the rekey time is randomly selected.

Constraints: A value between 0 and 100.

Default: 100

', 'ModifyVpnTunnelOptionsSpecification$ReplayWindowSize' => '

The number of packets in an IKE replay window.

Constraints: A value between 64 and 2048.

Default: 1024

', 'ModifyVpnTunnelOptionsSpecification$DPDTimeoutSeconds' => '

The number of seconds after which a DPD timeout occurs. A DPD timeout of 40 seconds means that the VPN endpoint will consider the peer dead 30 seconds after the first failed keep-alive.

Constraints: A value greater than or equal to 30.

Default: 40

', 'NetworkAclEntry$RuleNumber' => '

The rule number for the entry. ACL entries are processed in ascending order by rule number.

', 'NetworkInsightsAccessScopeAnalysis$AnalyzedEniCount' => '

The number of network interfaces analyzed.

', 'NetworkInsightsPath$DestinationPort' => '

The destination port.

', 'NetworkInterfaceAttachment$DeviceIndex' => '

The device index of the network interface attachment on the instance.

', 'NetworkInterfaceAttachment$NetworkCardIndex' => '

The index of the network card.

', 'NetworkInterfaceCount$Min' => '

The minimum number of network interfaces. If this parameter is not specified, there is no minimum limit.

', 'NetworkInterfaceCount$Max' => '

The maximum number of network interfaces. If this parameter is not specified, there is no maximum limit.

', 'NetworkInterfaceCountRequest$Min' => '

The minimum number of network interfaces. To specify no minimum limit, omit this parameter.

', 'NetworkInterfaceCountRequest$Max' => '

The maximum number of network interfaces. To specify no maximum limit, omit this parameter.

', 'OccurrenceDayRequestSet$member' => NULL, 'OccurrenceDaySet$member' => NULL, 'OnDemandOptions$MinTargetCapacity' => '

The minimum target capacity for On-Demand Instances in the fleet. If the minimum target capacity is not reached, the fleet launches no instances.

Supported only for fleets of type instant.

At least one of the following must be specified: SingleAvailabilityZone | SingleInstanceType

', 'OnDemandOptionsRequest$MinTargetCapacity' => '

The minimum target capacity for On-Demand Instances in the fleet. If the minimum target capacity is not reached, the fleet launches no instances.

Supported only for fleets of type instant.

At least one of the following must be specified: SingleAvailabilityZone | SingleInstanceType

', 'PathComponent$SequenceNumber' => '

The sequence number.

', 'Phase1DHGroupNumbersListValue$Value' => '

The Diffie-Hellmann group number.

', 'Phase1DHGroupNumbersRequestListValue$Value' => '

The Diffie-Hellmann group number.

', 'Phase2DHGroupNumbersListValue$Value' => '

The Diffie-Hellmann group number.

', 'Phase2DHGroupNumbersRequestListValue$Value' => '

The Diffie-Hellmann group number.

', 'Placement$PartitionNumber' => '

The number of the partition that the instance is in. Valid only if the placement group strategy is set to partition.

This parameter is not supported for CreateFleet.

', 'PlacementGroup$PartitionCount' => '

The number of partitions. Valid only if strategy is set to partition.

', 'PortRange$From' => '

The first port in the range.

', 'PortRange$To' => '

The last port in the range.

', 'PricingDetail$Count' => '

The number of reservations available for the price.

', 'ProvisionIpamPoolCidrRequest$NetmaskLength' => '

The netmask length of the CIDR you\'d like to provision to a pool. Can be used for provisioning Amazon-provided IPv6 CIDRs to top-level pools and for provisioning CIDRs to pools with source pools. Cannot be used to provision BYOIP CIDRs to top-level pools. Either "NetmaskLength" or "Cidr" is required.

', 'ProvisionPublicIpv4PoolCidrRequest$NetmaskLength' => '

The netmask length of the CIDR you would like to allocate to the public IPv4 pool.

', 'PublicIpv4Pool$TotalAddressCount' => '

The total number of addresses.

', 'PublicIpv4Pool$TotalAvailableAddressCount' => '

The total number of available addresses.

', 'PublicIpv4PoolRange$AddressCount' => '

The number of addresses in the range.

', 'PublicIpv4PoolRange$AvailableAddressCount' => '

The number of available addresses in the range.

', 'Purchase$Duration' => '

The duration of the reservation\'s term in seconds.

', 'PurchaseRequest$InstanceCount' => '

The number of instances.

', 'PurchaseReservedInstancesOfferingRequest$InstanceCount' => '

The number of Reserved Instances to purchase.

', 'ReplaceNetworkAclEntryRequest$RuleNumber' => '

The rule number of the entry to replace.

', 'RequestSpotInstancesRequest$BlockDurationMinutes' => '

Deprecated.

', 'RequestSpotInstancesRequest$InstanceCount' => '

The maximum number of Spot Instances to launch.

Default: 1

', 'ReservedInstances$InstanceCount' => '

The number of reservations purchased.

', 'ReservedInstancesConfiguration$InstanceCount' => '

The number of modified Reserved Instances.

This is a required field for a request.

', 'RestoreSnapshotFromRecycleBinResult$VolumeSize' => '

The size of the volume, in GiB.

', 'RestoreSnapshotTierResult$RestoreDuration' => '

For temporary restores only. The number of days for which the archived snapshot is temporarily restored.

', 'RevokeSecurityGroupEgressRequest$FromPort' => '

Not supported. Use a set of IP permissions to specify the port.

', 'RevokeSecurityGroupEgressRequest$ToPort' => '

Not supported. Use a set of IP permissions to specify the port.

', 'RevokeSecurityGroupIngressRequest$FromPort' => '

If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP, this is the type number. A value of -1 indicates all ICMP types.

', 'RevokeSecurityGroupIngressRequest$ToPort' => '

If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP, this is the code. A value of -1 indicates all ICMP codes.

', 'RunInstancesRequest$Ipv6AddressCount' => '

The number of IPv6 addresses to associate with the primary network interface. Amazon EC2 chooses the IPv6 addresses from the range of your subnet. You cannot specify this option and the option to assign specific IPv6 addresses in the same request. You can specify this option if you\'ve specified a minimum number of instances to launch.

You cannot specify this option and the network interfaces option in the same request.

', 'RunInstancesRequest$MaxCount' => '

The maximum number of instances to launch. If you specify more instances than Amazon EC2 can launch in the target Availability Zone, Amazon EC2 launches the largest possible number of instances above MinCount.

Constraints: Between 1 and the maximum number you\'re allowed for the specified instance type. For more information about the default limits, and how to request an increase, see How many instances can I run in Amazon EC2 in the Amazon EC2 FAQ.

', 'RunInstancesRequest$MinCount' => '

The minimum number of instances to launch. If you specify a minimum that is more instances than Amazon EC2 can launch in the target Availability Zone, Amazon EC2 launches no instances.

Constraints: Between 1 and the maximum number you\'re allowed for the specified instance type. For more information about the default limits, and how to request an increase, see How many instances can I run in Amazon EC2 in the Amazon EC2 General FAQ.

', 'RunScheduledInstancesRequest$InstanceCount' => '

The number of instances.

Default: 1

', 'ScheduledInstance$InstanceCount' => '

The number of instances.

', 'ScheduledInstance$SlotDurationInHours' => '

The number of hours in the schedule.

', 'ScheduledInstance$TotalScheduledInstanceHours' => '

The total number of hours for a single instance for the entire term.

', 'ScheduledInstanceAvailability$AvailableInstanceCount' => '

The number of available instances.

', 'ScheduledInstanceAvailability$MaxTermDurationInDays' => '

The maximum term. The only possible value is 365 days.

', 'ScheduledInstanceAvailability$MinTermDurationInDays' => '

The minimum term. The only possible value is 365 days.

', 'ScheduledInstanceAvailability$SlotDurationInHours' => '

The number of hours in the schedule.

', 'ScheduledInstanceAvailability$TotalScheduledInstanceHours' => '

The total number of hours for a single instance for the entire term.

', 'ScheduledInstanceRecurrence$Interval' => '

The interval quantity. The interval unit depends on the value of frequency. For example, every 2 weeks or every 2 months.

', 'ScheduledInstanceRecurrenceRequest$Interval' => '

The interval quantity. The interval unit depends on the value of Frequency. For example, every 2 weeks or every 2 months.

', 'ScheduledInstancesEbs$Iops' => '

The number of I/O operations per second (IOPS) to provision for a gp3, io1, or io2 volume.

', 'ScheduledInstancesEbs$VolumeSize' => '

The size of the volume, in GiB.

Default: If you\'re creating the volume from a snapshot and don\'t specify a volume size, the default is the snapshot size.

', 'ScheduledInstancesNetworkInterface$DeviceIndex' => '

The index of the device for the network interface attachment.

', 'ScheduledInstancesNetworkInterface$Ipv6AddressCount' => '

The number of IPv6 addresses to assign to the network interface. The IPv6 addresses are automatically selected from the subnet range.

', 'ScheduledInstancesNetworkInterface$SecondaryPrivateIpAddressCount' => '

The number of secondary private IPv4 addresses.

', 'SecurityGroupRule$FromPort' => '

If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP or ICMPv6, this is the type number. A value of -1 indicates all ICMP/ICMPv6 types. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.

', 'SecurityGroupRule$ToPort' => '

If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP or ICMPv6, this is the type number. A value of -1 indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.

', 'SecurityGroupRuleRequest$FromPort' => '

If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP or ICMPv6, this is the type number. A value of -1 indicates all ICMP/ICMPv6 types. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.

', 'SecurityGroupRuleRequest$ToPort' => '

If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP or ICMPv6, this is the code. A value of -1 indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.

', 'Snapshot$VolumeSize' => '

The size of the volume, in GiB.

', 'SnapshotInfo$VolumeSize' => '

Size of the volume from which this snapshot was created.

', 'SnapshotTierStatus$LastTieringProgress' => '

The progress of the last archive or restore process, as a percentage.

', 'SpotCapacityRebalance$TerminationDelay' => '

The amount of time (in seconds) that Amazon EC2 waits before terminating the old Spot Instance after launching a new replacement Spot Instance.

Required when ReplacementStrategy is set to launch-before-terminate.

Not valid when ReplacementStrategy is set to launch.

Valid values: Minimum value of 120 seconds. Maximum value of 7200 seconds.

', 'SpotFleetRequestConfigData$TargetCapacity' => '

The number of units to request for the Spot Fleet. You can choose to set the target capacity in terms of instances or a performance characteristic that is important to your application workload, such as vCPUs, memory, or I/O. If the request type is maintain, you can specify a target capacity of 0 and add capacity later.

', 'SpotFleetRequestConfigData$OnDemandTargetCapacity' => '

The number of On-Demand units to request. You can choose to set the target capacity in terms of instances or a performance characteristic that is important to your application workload, such as vCPUs, memory, or I/O. If the request type is maintain, you can specify a target capacity of 0 and add capacity later.

', 'SpotFleetRequestConfigData$InstancePoolsToUseCount' => '

The number of Spot pools across which to allocate your target Spot capacity. Valid only when Spot AllocationStrategy is set to lowest-price. Spot Fleet selects the cheapest Spot pools and evenly allocates your target Spot capacity across the number of Spot pools that you specify.

Note that Spot Fleet attempts to draw Spot Instances from the number of pools that you specify on a best effort basis. If a pool runs out of Spot capacity before fulfilling your target capacity, Spot Fleet will continue to fulfill your request by drawing from the next cheapest pool. To ensure that your target capacity is met, you might receive Spot Instances from more than the number of pools that you specified. Similarly, if most of the pools have no Spot capacity, you might receive your full target capacity from fewer than the number of pools that you specified.

', 'SpotInstanceRequest$BlockDurationMinutes' => '

Deprecated.

', 'SpotMarketOptions$BlockDurationMinutes' => '

Deprecated.

', 'SpotOptions$InstancePoolsToUseCount' => '

The number of Spot pools across which to allocate your target Spot capacity. Supported only when AllocationStrategy is set to lowest-price. EC2 Fleet selects the cheapest Spot pools and evenly allocates your target Spot capacity across the number of Spot pools that you specify.

Note that EC2 Fleet attempts to draw Spot Instances from the number of pools that you specify on a best effort basis. If a pool runs out of Spot capacity before fulfilling your target capacity, EC2 Fleet will continue to fulfill your request by drawing from the next cheapest pool. To ensure that your target capacity is met, you might receive Spot Instances from more than the number of pools that you specified. Similarly, if most of the pools have no Spot capacity, you might receive your full target capacity from fewer than the number of pools that you specified.

', 'SpotOptions$MinTargetCapacity' => '

The minimum target capacity for Spot Instances in the fleet. If the minimum target capacity is not reached, the fleet launches no instances.

Supported only for fleets of type instant.

At least one of the following must be specified: SingleAvailabilityZone | SingleInstanceType

', 'SpotOptionsRequest$InstancePoolsToUseCount' => '

The number of Spot pools across which to allocate your target Spot capacity. Supported only when Spot AllocationStrategy is set to lowest-price. EC2 Fleet selects the cheapest Spot pools and evenly allocates your target Spot capacity across the number of Spot pools that you specify.

Note that EC2 Fleet attempts to draw Spot Instances from the number of pools that you specify on a best effort basis. If a pool runs out of Spot capacity before fulfilling your target capacity, EC2 Fleet will continue to fulfill your request by drawing from the next cheapest pool. To ensure that your target capacity is met, you might receive Spot Instances from more than the number of pools that you specified. Similarly, if most of the pools have no Spot capacity, you might receive your full target capacity from fewer than the number of pools that you specified.

', 'SpotOptionsRequest$MinTargetCapacity' => '

The minimum target capacity for Spot Instances in the fleet. If the minimum target capacity is not reached, the fleet launches no instances.

Supported only for fleets of type instant.

At least one of the following must be specified: SingleAvailabilityZone | SingleInstanceType

', 'SpotPlacementScore$Score' => '

The placement score, on a scale from 1 to 10. A score of 10 indicates that your Spot request is highly likely to succeed in this Region or Availability Zone. A score of 1 indicates that your Spot request is not likely to succeed.

', 'StaleIpPermission$FromPort' => '

The start of the port range for the TCP and UDP protocols, or an ICMP type number. A value of -1 indicates all ICMP types.

', 'StaleIpPermission$ToPort' => '

The end of the port range for the TCP and UDP protocols, or an ICMP type number. A value of -1 indicates all ICMP types.

', 'StoreImageTaskResult$ProgressPercentage' => '

The progress of the task as a percentage.

', 'Subnet$AvailableIpAddressCount' => '

The number of unused private IPv4 addresses in the subnet. The IPv4 addresses for any stopped instances are considered unavailable.

', 'Subnet$EnableLniAtDeviceIndex' => '

Indicates the device position for local network interfaces in this subnet. For example, 1 indicates local network interfaces in this subnet are the secondary network interface (eth1).

', 'TargetCapacitySpecification$TotalTargetCapacity' => '

The number of units to request, filled the default target capacity type.

', 'TargetCapacitySpecification$OnDemandTargetCapacity' => '

The number of On-Demand units to request. If you specify a target capacity for Spot units, you cannot specify a target capacity for On-Demand units.

', 'TargetCapacitySpecification$SpotTargetCapacity' => '

The maximum number of Spot units to launch. If you specify a target capacity for On-Demand units, you cannot specify a target capacity for Spot units.

', 'TargetCapacitySpecificationRequest$TotalTargetCapacity' => '

The number of units to request, filled using the default target capacity type.

', 'TargetCapacitySpecificationRequest$OnDemandTargetCapacity' => '

The number of On-Demand units to request.

', 'TargetCapacitySpecificationRequest$SpotTargetCapacity' => '

The number of Spot units to request.

', 'TargetConfiguration$InstanceCount' => '

The number of instances the Convertible Reserved Instance offering can be applied to. This parameter is reserved and cannot be specified in a request

', 'TargetConfigurationRequest$InstanceCount' => '

The number of instances the Convertible Reserved Instance offering can be applied to. This parameter is reserved and cannot be specified in a request

', 'TrafficMirrorFilterRule$RuleNumber' => '

The rule number of the Traffic Mirror rule.

', 'TrafficMirrorFilterRule$Protocol' => '

The protocol assigned to the Traffic Mirror rule.

', 'TrafficMirrorPortRange$FromPort' => '

The start of the Traffic Mirror port range. This applies to the TCP and UDP protocols.

', 'TrafficMirrorPortRange$ToPort' => '

The end of the Traffic Mirror port range. This applies to the TCP and UDP protocols.

', 'TrafficMirrorPortRangeRequest$FromPort' => '

The first port in the Traffic Mirror port range. This applies to the TCP and UDP protocols.

', 'TrafficMirrorPortRangeRequest$ToPort' => '

The last port in the Traffic Mirror port range. This applies to the TCP and UDP protocols.

', 'TrafficMirrorSession$PacketLength' => '

The number of bytes in each packet to mirror. These are the bytes after the VXLAN header. To mirror a subset, set this to the length (in bytes) to mirror. For example, if you set this value to 100, then the first 100 bytes that meet the filter criteria are copied to the target. Do not specify this parameter when you want to mirror the entire packet

', 'TrafficMirrorSession$SessionNumber' => '

The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.

Valid values are 1-32766.

', 'TrafficMirrorSession$VirtualNetworkId' => '

The virtual network ID associated with the Traffic Mirror session.

', 'TrunkInterfaceAssociation$VlanId' => '

The ID of the VLAN when you use the VLAN protocol.

', 'TrunkInterfaceAssociation$GreKey' => '

The application key when you use the GRE protocol.

', 'TunnelOption$Phase1LifetimeSeconds' => '

The lifetime for phase 1 of the IKE negotiation, in seconds.

', 'TunnelOption$Phase2LifetimeSeconds' => '

The lifetime for phase 2 of the IKE negotiation, in seconds.

', 'TunnelOption$RekeyMarginTimeSeconds' => '

The margin time, in seconds, before the phase 2 lifetime expires, during which the Amazon Web Services side of the VPN connection performs an IKE rekey.

', 'TunnelOption$RekeyFuzzPercentage' => '

The percentage of the rekey window determined by RekeyMarginTimeSeconds during which the rekey time is randomly selected.

', 'TunnelOption$ReplayWindowSize' => '

The number of packets in an IKE replay window.

', 'TunnelOption$DpdTimeoutSeconds' => '

The number of seconds after which a DPD timeout occurs.

', 'VCpuCountRange$Min' => '

The minimum number of vCPUs. If the value is 0, there is no minimum limit.

', 'VCpuCountRange$Max' => '

The maximum number of vCPUs. If this parameter is not specified, there is no maximum limit.

', 'VCpuCountRangeRequest$Min' => '

The minimum number of vCPUs. To specify no minimum limit, specify 0.

', 'VCpuCountRangeRequest$Max' => '

The maximum number of vCPUs. To specify no maximum limit, omit this parameter.

', 'VgwTelemetry$AcceptedRouteCount' => '

The number of accepted routes.

', 'Volume$Size' => '

The size of the volume, in GiBs.

', 'Volume$Iops' => '

The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.

', 'Volume$Throughput' => '

The throughput that the volume supports, in MiB/s.

', 'VolumeModification$TargetSize' => '

The target size of the volume, in GiB.

', 'VolumeModification$TargetIops' => '

The target IOPS rate of the volume.

', 'VolumeModification$TargetThroughput' => '

The target throughput of the volume, in MiB/s.

', 'VolumeModification$OriginalSize' => '

The original size of the volume, in GiB.

', 'VolumeModification$OriginalIops' => '

The original IOPS rate of the volume.

', 'VolumeModification$OriginalThroughput' => '

The original throughput of the volume, in MiB/s.

', 'VpnTunnelOptionsSpecification$Phase1LifetimeSeconds' => '

The lifetime for phase 1 of the IKE negotiation, in seconds.

Constraints: A value between 900 and 28,800.

Default: 28800

', 'VpnTunnelOptionsSpecification$Phase2LifetimeSeconds' => '

The lifetime for phase 2 of the IKE negotiation, in seconds.

Constraints: A value between 900 and 3,600. The value must be less than the value for Phase1LifetimeSeconds.

Default: 3600

', 'VpnTunnelOptionsSpecification$RekeyMarginTimeSeconds' => '

The margin time, in seconds, before the phase 2 lifetime expires, during which the Amazon Web Services side of the VPN connection performs an IKE rekey. The exact time of the rekey is randomly selected based on the value for RekeyFuzzPercentage.

Constraints: A value between 60 and half of Phase2LifetimeSeconds.

Default: 270

', 'VpnTunnelOptionsSpecification$RekeyFuzzPercentage' => '

The percentage of the rekey window (determined by RekeyMarginTimeSeconds) during which the rekey time is randomly selected.

Constraints: A value between 0 and 100.

Default: 100

', 'VpnTunnelOptionsSpecification$ReplayWindowSize' => '

The number of packets in an IKE replay window.

Constraints: A value between 64 and 2048.

Default: 1024

', 'VpnTunnelOptionsSpecification$DPDTimeoutSeconds' => '

The number of seconds after which a DPD timeout occurs.

Constraints: A value greater than or equal to 30.

Default: 30

', ], ], 'IntegerWithConstraints' => [ 'base' => NULL, 'refs' => [ 'FleetCapacityReservation$Priority' => '

The priority of the instance type in the Capacity Reservation Fleet. For more information, see Instance type priority in the Amazon EC2 User Guide.

', 'ReservationFleetInstanceSpecification$Priority' => '

The priority to assign to the instance type. This value is used to determine which of the instance types specified for the Fleet should be prioritized for use. A lower value indicates a high priority. For more information, see Instance type priority in the Amazon EC2 User Guide.

', ], ], 'IntegrateServices' => [ 'base' => '

Describes service integrations with VPC Flow logs.

', 'refs' => [ 'GetFlowLogsIntegrationTemplateRequest$IntegrateServices' => '

Information about the service integration.

', ], ], 'InterfacePermissionType' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInterfacePermissionRequest$Permission' => '

The type of permission to grant.

', 'NetworkInterfacePermission$Permission' => '

The type of permission.

', ], ], 'InterfaceProtocolType' => [ 'base' => NULL, 'refs' => [ 'TrunkInterfaceAssociation$InterfaceProtocol' => '

The interface protocol. Valid values are VLAN and GRE.

', ], ], 'InternetGateway' => [ 'base' => '

Describes an internet gateway.

', 'refs' => [ 'CreateInternetGatewayResult$InternetGateway' => '

Information about the internet gateway.

', 'InternetGatewayList$member' => NULL, ], ], 'InternetGatewayAttachment' => [ 'base' => '

Describes the attachment of a VPC to an internet gateway or an egress-only internet gateway.

', 'refs' => [ 'InternetGatewayAttachmentList$member' => NULL, ], ], 'InternetGatewayAttachmentList' => [ 'base' => NULL, 'refs' => [ 'EgressOnlyInternetGateway$Attachments' => '

Information about the attachment of the egress-only internet gateway.

', 'InternetGateway$Attachments' => '

Any VPCs attached to the internet gateway.

', ], ], 'InternetGatewayId' => [ 'base' => NULL, 'refs' => [ 'AttachInternetGatewayRequest$InternetGatewayId' => '

The ID of the internet gateway.

', 'DeleteInternetGatewayRequest$InternetGatewayId' => '

The ID of the internet gateway.

', 'DetachInternetGatewayRequest$InternetGatewayId' => '

The ID of the internet gateway.

', 'InternetGatewayIdList$member' => NULL, ], ], 'InternetGatewayIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeInternetGatewaysRequest$InternetGatewayIds' => '

The IDs of the internet gateways.

Default: Describes all your internet gateways.

', ], ], 'InternetGatewayList' => [ 'base' => NULL, 'refs' => [ 'DescribeInternetGatewaysResult$InternetGateways' => '

Information about one or more internet gateways.

', ], ], 'IpAddress' => [ 'base' => NULL, 'refs' => [ 'AnalysisLoadBalancerTarget$Address' => '

The IP address.

', 'CreateNetworkInsightsPathRequest$SourceIp' => '

The IP address of the source.

', 'CreateNetworkInsightsPathRequest$DestinationIp' => '

The IP address of the destination.

', 'Explanation$Address' => '

The IPv4 address, in CIDR notation.

', 'IpAddressList$member' => NULL, 'NetworkInsightsPath$SourceIp' => '

The IP address of the source.

', 'NetworkInsightsPath$DestinationIp' => '

The IP address of the destination.

', 'PathFilter$SourceAddress' => '

The source IPv4 address.

', 'PathFilter$DestinationAddress' => '

The destination IPv4 address.

', 'PathRequestFilter$SourceAddress' => '

The source IPv4 address.

', 'PathRequestFilter$DestinationAddress' => '

The destination IPv4 address.

', ], ], 'IpAddressList' => [ 'base' => NULL, 'refs' => [ 'AnalysisPacketHeader$DestinationAddresses' => '

The destination addresses.

', 'AnalysisPacketHeader$SourceAddresses' => '

The source addresses.

', 'Explanation$Addresses' => '

The IPv4 addresses, in CIDR notation.

', ], ], 'IpAddressType' => [ 'base' => NULL, 'refs' => [ 'CreateVpcEndpointRequest$IpAddressType' => '

The IP address type for the endpoint.

', 'ModifyVpcEndpointRequest$IpAddressType' => '

The IP address type for the endpoint.

', 'VpcEndpoint$IpAddressType' => '

The IP address type for the endpoint.

', 'VpcEndpointConnection$IpAddressType' => '

The IP address type for the endpoint.

', ], ], 'IpList' => [ 'base' => NULL, 'refs' => [ 'AssignPrivateNatGatewayAddressRequest$PrivateIpAddresses' => '

The private IPv4 addresses you want to assign to the private NAT gateway.

', 'AssociateNatGatewayAddressRequest$PrivateIpAddresses' => '

The private IPv4 addresses that you want to assign to the NAT gateway.

', 'CreateNatGatewayRequest$SecondaryPrivateIpAddresses' => '

Secondary private IPv4 addresses. For more information about secondary addresses, see Create a NAT gateway in the Amazon VPC User Guide.

', 'UnassignPrivateNatGatewayAddressRequest$PrivateIpAddresses' => '

The private IPv4 addresses you want to unassign.

', ], ], 'IpPermission' => [ 'base' => '

Describes a set of permissions for a security group rule.

', 'refs' => [ 'IpPermissionList$member' => NULL, ], ], 'IpPermissionList' => [ 'base' => NULL, 'refs' => [ 'AuthorizeSecurityGroupEgressRequest$IpPermissions' => '

The sets of IP permissions. You can\'t specify a destination security group and a CIDR IP address range in the same set of permissions.

', 'AuthorizeSecurityGroupIngressRequest$IpPermissions' => '

The sets of IP permissions.

', 'RevokeSecurityGroupEgressRequest$IpPermissions' => '

The sets of IP permissions. You can\'t specify a destination security group and a CIDR IP address range in the same set of permissions.

', 'RevokeSecurityGroupEgressResult$UnknownIpPermissions' => '

The outbound rules that were unknown to the service. In some cases, unknownIpPermissionSet might be in a different format from the request parameter.

', 'RevokeSecurityGroupIngressRequest$IpPermissions' => '

The sets of IP permissions. You can\'t specify a source security group and a CIDR IP address range in the same set of permissions.

', 'RevokeSecurityGroupIngressResult$UnknownIpPermissions' => '

The inbound rules that were unknown to the service. In some cases, unknownIpPermissionSet might be in a different format from the request parameter.

', 'SecurityGroup$IpPermissions' => '

The inbound rules associated with the security group.

', 'SecurityGroup$IpPermissionsEgress' => '

The outbound rules associated with the security group.

', 'UpdateSecurityGroupRuleDescriptionsEgressRequest$IpPermissions' => '

The IP permissions for the security group rule. You must specify either the IP permissions or the description.

', 'UpdateSecurityGroupRuleDescriptionsIngressRequest$IpPermissions' => '

The IP permissions for the security group rule. You must specify either IP permissions or a description.

', ], ], 'IpPrefixList' => [ 'base' => NULL, 'refs' => [ 'AssignIpv6AddressesRequest$Ipv6Prefixes' => '

One or more IPv6 prefixes assigned to the network interface. You cannot use this option if you use the Ipv6PrefixCount option.

', 'AssignIpv6AddressesResult$AssignedIpv6Prefixes' => '

The IPv6 prefixes that are assigned to the network interface.

', 'AssignPrivateIpAddressesRequest$Ipv4Prefixes' => '

One or more IPv4 prefixes assigned to the network interface. You cannot use this option if you use the Ipv4PrefixCount option.

', 'UnassignIpv6AddressesRequest$Ipv6Prefixes' => '

The IPv6 prefixes to unassign from the network interface.

', 'UnassignIpv6AddressesResult$UnassignedIpv6Prefixes' => '

The IPv4 prefixes that have been unassigned from the network interface.

', 'UnassignPrivateIpAddressesRequest$Ipv4Prefixes' => '

The IPv4 prefixes to unassign from the network interface.

', ], ], 'IpRange' => [ 'base' => '

Describes an IPv4 range.

', 'refs' => [ 'IpRangeList$member' => NULL, ], ], 'IpRangeList' => [ 'base' => NULL, 'refs' => [ 'IpPermission$IpRanges' => '

The IPv4 ranges.

', ], ], 'IpRanges' => [ 'base' => NULL, 'refs' => [ 'StaleIpPermission$IpRanges' => '

The IP ranges. Not applicable for stale security group rules.

', ], ], 'Ipam' => [ 'base' => '

IPAM is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across Amazon Web Services Regions and accounts throughout your Amazon Web Services Organization. For more information, see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'refs' => [ 'CreateIpamResult$Ipam' => '

Information about the IPAM created.

', 'DeleteIpamResult$Ipam' => '

Information about the results of the deletion.

', 'IpamSet$member' => NULL, 'ModifyIpamResult$Ipam' => '

The results of the modification.

', ], ], 'IpamAddressHistoryMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetIpamAddressHistoryRequest$MaxResults' => '

The maximum number of historical results you would like returned per page. Defaults to 100.

', ], ], 'IpamAddressHistoryRecord' => [ 'base' => '

The historical record of a CIDR within an IPAM scope. For more information, see View the history of IP addresses in the Amazon VPC IPAM User Guide.

', 'refs' => [ 'IpamAddressHistoryRecordSet$member' => NULL, ], ], 'IpamAddressHistoryRecordSet' => [ 'base' => NULL, 'refs' => [ 'GetIpamAddressHistoryResult$HistoryRecords' => '

A historical record for a CIDR within an IPAM scope. If the CIDR is associated with an EC2 instance, you will see an object in the response for the instance and one for the network interface.

', ], ], 'IpamAddressHistoryResourceType' => [ 'base' => NULL, 'refs' => [ 'IpamAddressHistoryRecord$ResourceType' => '

The type of the resource.

', ], ], 'IpamAssociatedResourceDiscoveryStatus' => [ 'base' => NULL, 'refs' => [ 'IpamResourceDiscoveryAssociation$ResourceDiscoveryStatus' => '

The resource discovery status.

  • active - Connection or permissions required to read the results of the resource discovery are intact.

  • not-found - Connection or permissions required to read the results of the resource discovery are broken. This may happen if the owner of the resource discovery stopped sharing it or deleted the resource discovery. Verify the resource discovery still exists and the Amazon Web Services RAM resource share is still intact.

', ], ], 'IpamCidrAuthorizationContext' => [ 'base' => '

A signed document that proves that you are authorized to bring the specified IP address range to Amazon using BYOIP.

', 'refs' => [ 'ProvisionIpamPoolCidrRequest$CidrAuthorizationContext' => '

A signed document that proves that you are authorized to bring a specified IP address range to Amazon using BYOIP. This option applies to public pools only.

', ], ], 'IpamComplianceStatus' => [ 'base' => NULL, 'refs' => [ 'IpamAddressHistoryRecord$ResourceComplianceStatus' => '

The compliance status of a resource. For more information on compliance statuses, see Monitor CIDR usage by resource in the Amazon VPC IPAM User Guide.

', 'IpamResourceCidr$ComplianceStatus' => '

The compliance status of the IPAM resource. For more information on compliance statuses, see Monitor CIDR usage by resource in the Amazon VPC IPAM User Guide.

', ], ], 'IpamDiscoveredAccount' => [ 'base' => '

An IPAM discovered account. A discovered account is an Amazon Web Services account that is monitored under a resource discovery. If you have integrated IPAM with Amazon Web Services Organizations, all accounts in the organization are discovered accounts.

', 'refs' => [ 'IpamDiscoveredAccountSet$member' => NULL, ], ], 'IpamDiscoveredAccountSet' => [ 'base' => NULL, 'refs' => [ 'GetIpamDiscoveredAccountsResult$IpamDiscoveredAccounts' => '

Discovered accounts.

', ], ], 'IpamDiscoveredPublicAddress' => [ 'base' => '

A public IP Address discovered by IPAM.

', 'refs' => [ 'IpamDiscoveredPublicAddressSet$member' => NULL, ], ], 'IpamDiscoveredPublicAddressSet' => [ 'base' => NULL, 'refs' => [ 'GetIpamDiscoveredPublicAddressesResult$IpamDiscoveredPublicAddresses' => '

IPAM discovered public addresses.

', ], ], 'IpamDiscoveredResourceCidr' => [ 'base' => '

An IPAM discovered resource CIDR. A discovered resource is a resource CIDR monitored under a resource discovery. The following resources can be discovered: VPCs, Public IPv4 pools, VPC subnets, and Elastic IP addresses. The discovered resource CIDR is the IP address range in CIDR notation that is associated with the resource.

', 'refs' => [ 'IpamDiscoveredResourceCidrSet$member' => NULL, ], ], 'IpamDiscoveredResourceCidrSet' => [ 'base' => NULL, 'refs' => [ 'GetIpamDiscoveredResourceCidrsResult$IpamDiscoveredResourceCidrs' => '

Discovered resource CIDRs.

', ], ], 'IpamDiscoveryFailureCode' => [ 'base' => NULL, 'refs' => [ 'IpamDiscoveryFailureReason$Code' => '

The discovery failure code.

  • assume-role-failure - IPAM could not assume the Amazon Web Services IAM service-linked role. This could be because of any of the following:

    • SLR has not been created yet and IPAM is still creating it.

    • You have opted-out of the IPAM home Region.

    • Account you are using as your IPAM account has been suspended.

  • throttling-failure - IPAM account is already using the allotted transactions per second and IPAM is receiving a throttling error when assuming the Amazon Web Services IAM SLR.

  • unauthorized-failure - Amazon Web Services account making the request is not authorized. For more information, see AuthFailure in the Amazon Elastic Compute Cloud API Reference.

', ], ], 'IpamDiscoveryFailureReason' => [ 'base' => '

The discovery failure reason.

', 'refs' => [ 'IpamDiscoveredAccount$FailureReason' => '

The resource discovery failure reason.

', ], ], 'IpamId' => [ 'base' => NULL, 'refs' => [ 'AssociateIpamResourceDiscoveryRequest$IpamId' => '

An IPAM ID.

', 'Byoasn$IpamId' => '

An IPAM ID.

', 'CreateIpamScopeRequest$IpamId' => '

The ID of the IPAM for which you\'re creating this scope.

', 'DeleteIpamRequest$IpamId' => '

The ID of the IPAM to delete.

', 'DeprovisionIpamByoasnRequest$IpamId' => '

The IPAM ID.

', 'Ipam$IpamId' => '

The ID of the IPAM.

', 'IpamResourceCidr$IpamId' => '

The IPAM ID for an IPAM resource.

', 'IpamResourceDiscoveryAssociation$IpamId' => '

The IPAM ID.

', 'ModifyIpamRequest$IpamId' => '

The ID of the IPAM you want to modify.

', 'ProvisionIpamByoasnRequest$IpamId' => '

An IPAM ID.

', ], ], 'IpamManagementState' => [ 'base' => NULL, 'refs' => [ 'IpamResourceCidr$ManagementState' => '

The management state of the resource. For more information about management states, see Monitor CIDR usage by resource in the Amazon VPC IPAM User Guide.

', ], ], 'IpamMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeIpamPoolsRequest$MaxResults' => '

The maximum number of results to return in the request.

', 'DescribeIpamResourceDiscoveriesRequest$MaxResults' => '

The maximum number of resource discoveries to return in one page of results.

', 'DescribeIpamResourceDiscoveryAssociationsRequest$MaxResults' => '

The maximum number of resource discovery associations to return in one page of results.

', 'DescribeIpamScopesRequest$MaxResults' => '

The maximum number of results to return in the request.

', 'DescribeIpamsRequest$MaxResults' => '

The maximum number of results to return in the request.

', 'GetIpamDiscoveredAccountsRequest$MaxResults' => '

The maximum number of discovered accounts to return in one page of results.

', 'GetIpamDiscoveredPublicAddressesRequest$MaxResults' => '

The maximum number of IPAM discovered public addresses to return in one page of results.

', 'GetIpamDiscoveredResourceCidrsRequest$MaxResults' => '

The maximum number of discovered resource CIDRs to return in one page of results.

', 'GetIpamPoolCidrsRequest$MaxResults' => '

The maximum number of results to return in the request.

', 'GetIpamResourceCidrsRequest$MaxResults' => '

The maximum number of results to return in the request.

', ], ], 'IpamNetmaskLength' => [ 'base' => NULL, 'refs' => [ 'CreateIpamPoolRequest$AllocationMinNetmaskLength' => '

The minimum netmask length required for CIDR allocations in this IPAM pool to be compliant. The minimum netmask length must be less than the maximum netmask length. Possible netmask lengths for IPv4 addresses are 0 - 32. Possible netmask lengths for IPv6 addresses are 0 - 128.

', 'CreateIpamPoolRequest$AllocationMaxNetmaskLength' => '

The maximum netmask length possible for CIDR allocations in this IPAM pool to be compliant. The maximum netmask length must be greater than the minimum netmask length. Possible netmask lengths for IPv4 addresses are 0 - 32. Possible netmask lengths for IPv6 addresses are 0 - 128.

', 'CreateIpamPoolRequest$AllocationDefaultNetmaskLength' => '

The default netmask length for allocations added to this pool. If, for example, the CIDR assigned to this pool is 10.0.0.0/8 and you enter 16 here, new allocations will default to 10.0.0.0/16.

', 'IpamPool$AllocationMinNetmaskLength' => '

The minimum netmask length required for CIDR allocations in this IPAM pool to be compliant. The minimum netmask length must be less than the maximum netmask length. Possible netmask lengths for IPv4 addresses are 0 - 32. Possible netmask lengths for IPv6 addresses are 0 - 128.

', 'IpamPool$AllocationMaxNetmaskLength' => '

The maximum netmask length possible for CIDR allocations in this IPAM pool to be compliant. The maximum netmask length must be greater than the minimum netmask length. Possible netmask lengths for IPv4 addresses are 0 - 32. Possible netmask lengths for IPv6 addresses are 0 - 128.

', 'IpamPool$AllocationDefaultNetmaskLength' => '

The default netmask length for allocations added to this pool. If, for example, the CIDR assigned to this pool is 10.0.0.0/8 and you enter 16 here, new allocations will default to 10.0.0.0/16.

', 'ModifyIpamPoolRequest$AllocationMinNetmaskLength' => '

The minimum netmask length required for CIDR allocations in this IPAM pool to be compliant. Possible netmask lengths for IPv4 addresses are 0 - 32. Possible netmask lengths for IPv6 addresses are 0 - 128. The minimum netmask length must be less than the maximum netmask length.

', 'ModifyIpamPoolRequest$AllocationMaxNetmaskLength' => '

The maximum netmask length possible for CIDR allocations in this IPAM pool to be compliant. Possible netmask lengths for IPv4 addresses are 0 - 32. Possible netmask lengths for IPv6 addresses are 0 - 128.The maximum netmask length must be greater than the minimum netmask length.

', 'ModifyIpamPoolRequest$AllocationDefaultNetmaskLength' => '

The default netmask length for allocations added to this pool. If, for example, the CIDR assigned to this pool is 10.0.0.0/8 and you enter 16 here, new allocations will default to 10.0.0.0/16.

', ], ], 'IpamOperatingRegion' => [ 'base' => '

The operating Regions for an IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

For more information about operating Regions, see Create an IPAM in the Amazon VPC IPAM User Guide.

', 'refs' => [ 'IpamOperatingRegionSet$member' => NULL, ], ], 'IpamOperatingRegionSet' => [ 'base' => NULL, 'refs' => [ 'Ipam$OperatingRegions' => '

The operating Regions for an IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

For more information about operating Regions, see Create an IPAM in the Amazon VPC IPAM User Guide.

', 'IpamResourceDiscovery$OperatingRegions' => '

The operating Regions for the resource discovery. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

', ], ], 'IpamOverlapStatus' => [ 'base' => NULL, 'refs' => [ 'IpamAddressHistoryRecord$ResourceOverlapStatus' => '

The overlap status of an IPAM resource. The overlap status tells you if the CIDR for a resource overlaps with another CIDR in the scope. For more information on overlap statuses, see Monitor CIDR usage by resource in the Amazon VPC IPAM User Guide.

', 'IpamResourceCidr$OverlapStatus' => '

The overlap status of an IPAM resource. The overlap status tells you if the CIDR for a resource overlaps with another CIDR in the scope. For more information on overlap statuses, see Monitor CIDR usage by resource in the Amazon VPC IPAM User Guide.

', ], ], 'IpamPool' => [ 'base' => '

In IPAM, a pool is a collection of contiguous IP addresses CIDRs. Pools enable you to organize your IP addresses according to your routing and security needs. For example, if you have separate routing and security needs for development and production applications, you can create a pool for each.

', 'refs' => [ 'CreateIpamPoolResult$IpamPool' => '

Information about the IPAM pool created.

', 'DeleteIpamPoolResult$IpamPool' => '

Information about the results of the deletion.

', 'IpamPoolSet$member' => NULL, 'ModifyIpamPoolResult$IpamPool' => '

The results of the modification.

', ], ], 'IpamPoolAllocation' => [ 'base' => '

In IPAM, an allocation is a CIDR assignment from an IPAM pool to another IPAM pool or to a resource.

', 'refs' => [ 'AllocateIpamPoolCidrResult$IpamPoolAllocation' => '

Information about the allocation created.

', 'IpamPoolAllocationSet$member' => NULL, ], ], 'IpamPoolAllocationAllowedCidrs' => [ 'base' => NULL, 'refs' => [ 'AllocateIpamPoolCidrRequest$AllowedCidrs' => '

Include a particular CIDR range that can be returned by the pool. Allowed CIDRs are only allowed if using netmask length for allocation.

', ], ], 'IpamPoolAllocationDisallowedCidrs' => [ 'base' => NULL, 'refs' => [ 'AllocateIpamPoolCidrRequest$DisallowedCidrs' => '

Exclude a particular CIDR range from being returned by the pool. Disallowed CIDRs are only allowed if using netmask length for allocation.

', ], ], 'IpamPoolAllocationId' => [ 'base' => NULL, 'refs' => [ 'GetIpamPoolAllocationsRequest$IpamPoolAllocationId' => '

The ID of the allocation.

', 'IpamPoolAllocation$IpamPoolAllocationId' => '

The ID of an allocation.

', 'ReleaseIpamPoolAllocationRequest$IpamPoolAllocationId' => '

The ID of the allocation.

', ], ], 'IpamPoolAllocationResourceType' => [ 'base' => NULL, 'refs' => [ 'IpamPoolAllocation$ResourceType' => '

The type of the resource.

', ], ], 'IpamPoolAllocationSet' => [ 'base' => NULL, 'refs' => [ 'GetIpamPoolAllocationsResult$IpamPoolAllocations' => '

The IPAM pool allocations you want information on.

', ], ], 'IpamPoolAwsService' => [ 'base' => NULL, 'refs' => [ 'CreateIpamPoolRequest$AwsService' => '

Limits which service in Amazon Web Services that the pool can be used in. "ec2", for example, allows users to use space for Elastic IP addresses and VPCs.

', 'IpamPool$AwsService' => '

Limits which service in Amazon Web Services that the pool can be used in. "ec2", for example, allows users to use space for Elastic IP addresses and VPCs.

', ], ], 'IpamPoolCidr' => [ 'base' => '

A CIDR provisioned to an IPAM pool.

', 'refs' => [ 'DeprovisionIpamPoolCidrResult$IpamPoolCidr' => '

The deprovisioned pool CIDR.

', 'IpamPoolCidrSet$member' => NULL, 'ProvisionIpamPoolCidrResult$IpamPoolCidr' => '

Information about the provisioned CIDR.

', ], ], 'IpamPoolCidrFailureCode' => [ 'base' => NULL, 'refs' => [ 'IpamPoolCidrFailureReason$Code' => '

An error code related to why an IPAM pool CIDR failed to be provisioned.

', ], ], 'IpamPoolCidrFailureReason' => [ 'base' => '

Details related to why an IPAM pool CIDR failed to be provisioned.

', 'refs' => [ 'IpamPoolCidr$FailureReason' => '

Details related to why an IPAM pool CIDR failed to be provisioned.

', ], ], 'IpamPoolCidrId' => [ 'base' => NULL, 'refs' => [ 'IpamPoolCidr$IpamPoolCidrId' => '

The IPAM pool CIDR ID.

', ], ], 'IpamPoolCidrSet' => [ 'base' => NULL, 'refs' => [ 'GetIpamPoolCidrsResult$IpamPoolCidrs' => '

Information about the CIDRs provisioned to an IPAM pool.

', ], ], 'IpamPoolCidrState' => [ 'base' => NULL, 'refs' => [ 'IpamPoolCidr$State' => '

The state of the CIDR.

', ], ], 'IpamPoolId' => [ 'base' => NULL, 'refs' => [ 'AllocateIpamPoolCidrRequest$IpamPoolId' => '

The ID of the IPAM pool from which you would like to allocate a CIDR.

', 'AssociateSubnetCidrBlockRequest$Ipv6IpamPoolId' => '

An IPv6 IPAM pool ID.

', 'AssociateVpcCidrBlockRequest$Ipv4IpamPoolId' => '

Associate a CIDR allocated from an IPv4 IPAM pool to a VPC. For more information about Amazon VPC IP Address Manager (IPAM), see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'AssociateVpcCidrBlockRequest$Ipv6IpamPoolId' => '

Associates a CIDR allocated from an IPv6 IPAM pool to a VPC. For more information about Amazon VPC IP Address Manager (IPAM), see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'CreateIpamPoolRequest$SourceIpamPoolId' => '

The ID of the source IPAM pool. Use this option to create a pool within an existing pool. Note that the CIDR you provision for the pool within the source pool must be available in the source pool\'s CIDR range.

', 'CreateSubnetRequest$Ipv4IpamPoolId' => '

An IPv4 IPAM pool ID for the subnet.

', 'CreateSubnetRequest$Ipv6IpamPoolId' => '

An IPv6 IPAM pool ID for the subnet.

', 'CreateVpcRequest$Ipv4IpamPoolId' => '

The ID of an IPv4 IPAM pool you want to use for allocating this VPC\'s CIDR. For more information, see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'CreateVpcRequest$Ipv6IpamPoolId' => '

The ID of an IPv6 IPAM pool which will be used to allocate this VPC an IPv6 CIDR. IPAM is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across Amazon Web Services Regions and accounts throughout your Amazon Web Services Organization. For more information, see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'DeleteIpamPoolRequest$IpamPoolId' => '

The ID of the pool to delete.

', 'DeprovisionIpamPoolCidrRequest$IpamPoolId' => '

The ID of the pool that has the CIDR you want to deprovision.

', 'GetIpamPoolAllocationsRequest$IpamPoolId' => '

The ID of the IPAM pool you want to see the allocations for.

', 'GetIpamPoolCidrsRequest$IpamPoolId' => '

The ID of the IPAM pool you want the CIDR for.

', 'GetIpamResourceCidrsRequest$IpamPoolId' => '

The ID of the IPAM pool that the resource is in.

', 'IpamPool$IpamPoolId' => '

The ID of the IPAM pool.

', 'IpamPool$SourceIpamPoolId' => '

The ID of the source IPAM pool. You can use this option to create an IPAM pool within an existing source pool.

', 'IpamResourceCidr$IpamPoolId' => '

The pool ID for an IPAM resource.

', 'ModifyIpamPoolRequest$IpamPoolId' => '

The ID of the IPAM pool you want to modify.

', 'MoveByoipCidrToIpamRequest$IpamPoolId' => '

The IPAM pool ID.

', 'ProvisionIpamPoolCidrRequest$IpamPoolId' => '

The ID of the IPAM pool to which you want to assign a CIDR.

', 'ProvisionPublicIpv4PoolCidrRequest$IpamPoolId' => '

The ID of the IPAM pool you would like to use to allocate this CIDR.

', 'ReleaseIpamPoolAllocationRequest$IpamPoolId' => '

The ID of the IPAM pool which contains the allocation you want to release.

', ], ], 'IpamPoolPublicIpSource' => [ 'base' => NULL, 'refs' => [ 'CreateIpamPoolRequest$PublicIpSource' => '

The IP address source for pools in the public scope. Only used for provisioning IP address CIDRs to pools in the public scope. Default is byoip. For more information, see Create IPv6 pools in the Amazon VPC IPAM User Guide. By default, you can add only one Amazon-provided IPv6 CIDR block to a top-level IPv6 pool if PublicIpSource is amazon. For information on increasing the default limit, see Quotas for your IPAM in the Amazon VPC IPAM User Guide.

', 'IpamPool$PublicIpSource' => '

The IP address source for pools in the public scope. Only used for provisioning IP address CIDRs to pools in the public scope. Default is BYOIP. For more information, see Create IPv6 pools in the Amazon VPC IPAM User Guide. By default, you can add only one Amazon-provided IPv6 CIDR block to a top-level IPv6 pool. For information on increasing the default limit, see Quotas for your IPAM in the Amazon VPC IPAM User Guide.

', ], ], 'IpamPoolSet' => [ 'base' => NULL, 'refs' => [ 'DescribeIpamPoolsResult$IpamPools' => '

Information about the IPAM pools.

', ], ], 'IpamPoolSourceResource' => [ 'base' => '

The resource used to provision CIDRs to a resource planning pool.

', 'refs' => [ 'IpamPool$SourceResource' => '

The resource used to provision CIDRs to a resource planning pool.

', ], ], 'IpamPoolSourceResourceRequest' => [ 'base' => '

The resource used to provision CIDRs to a resource planning pool.

', 'refs' => [ 'CreateIpamPoolRequest$SourceResource' => '

The resource used to provision CIDRs to a resource planning pool.

', ], ], 'IpamPoolSourceResourceType' => [ 'base' => NULL, 'refs' => [ 'IpamPoolSourceResource$ResourceType' => '

The source resource type.

', 'IpamPoolSourceResourceRequest$ResourceType' => '

The source resource type.

', ], ], 'IpamPoolState' => [ 'base' => NULL, 'refs' => [ 'IpamPool$State' => '

The state of the IPAM pool.

', ], ], 'IpamPublicAddressAssociationStatus' => [ 'base' => NULL, 'refs' => [ 'IpamDiscoveredPublicAddress$AssociationStatus' => '

The association status.

', ], ], 'IpamPublicAddressAwsService' => [ 'base' => NULL, 'refs' => [ 'IpamDiscoveredPublicAddress$Service' => '

The Amazon Web Services service associated with the IP address.

', ], ], 'IpamPublicAddressSecurityGroup' => [ 'base' => '

The security group that the resource with the public IP address is in.

', 'refs' => [ 'IpamPublicAddressSecurityGroupList$member' => NULL, ], ], 'IpamPublicAddressSecurityGroupList' => [ 'base' => NULL, 'refs' => [ 'IpamDiscoveredPublicAddress$SecurityGroups' => '

Security groups associated with the resource that the IP address is assigned to.

', ], ], 'IpamPublicAddressTag' => [ 'base' => '

A tag for a public IP address discovered by IPAM.

', 'refs' => [ 'IpamPublicAddressTagList$member' => NULL, ], ], 'IpamPublicAddressTagList' => [ 'base' => NULL, 'refs' => [ 'IpamPublicAddressTags$EipTags' => '

Tags for an Elastic IP address.

', ], ], 'IpamPublicAddressTags' => [ 'base' => '

Tags for a public IP address discovered by IPAM.

', 'refs' => [ 'IpamDiscoveredPublicAddress$Tags' => '

Tags associated with the IP address.

', ], ], 'IpamPublicAddressType' => [ 'base' => NULL, 'refs' => [ 'IpamDiscoveredPublicAddress$AddressType' => '

The IP address type.

', ], ], 'IpamResourceCidr' => [ 'base' => '

The CIDR for an IPAM resource.

', 'refs' => [ 'IpamResourceCidrSet$member' => NULL, 'ModifyIpamResourceCidrResult$IpamResourceCidr' => '

The CIDR of the resource.

', ], ], 'IpamResourceCidrSet' => [ 'base' => NULL, 'refs' => [ 'GetIpamResourceCidrsResult$IpamResourceCidrs' => '

The resource CIDRs.

', ], ], 'IpamResourceDiscovery' => [ 'base' => '

A resource discovery is an IPAM component that enables IPAM to manage and monitor resources that belong to the owning account.

', 'refs' => [ 'CreateIpamResourceDiscoveryResult$IpamResourceDiscovery' => '

An IPAM resource discovery.

', 'DeleteIpamResourceDiscoveryResult$IpamResourceDiscovery' => '

The IPAM resource discovery.

', 'IpamResourceDiscoverySet$member' => NULL, 'ModifyIpamResourceDiscoveryResult$IpamResourceDiscovery' => '

A resource discovery.

', ], ], 'IpamResourceDiscoveryAssociation' => [ 'base' => '

An IPAM resource discovery association. An associated resource discovery is a resource discovery that has been associated with an IPAM. IPAM aggregates the resource CIDRs discovered by the associated resource discovery.

', 'refs' => [ 'AssociateIpamResourceDiscoveryResult$IpamResourceDiscoveryAssociation' => '

A resource discovery association. An associated resource discovery is a resource discovery that has been associated with an IPAM.

', 'DisassociateIpamResourceDiscoveryResult$IpamResourceDiscoveryAssociation' => '

A resource discovery association.

', 'IpamResourceDiscoveryAssociationSet$member' => NULL, ], ], 'IpamResourceDiscoveryAssociationId' => [ 'base' => NULL, 'refs' => [ 'DisassociateIpamResourceDiscoveryRequest$IpamResourceDiscoveryAssociationId' => '

A resource discovery association ID.

', 'Ipam$DefaultResourceDiscoveryAssociationId' => '

The IPAM\'s default resource discovery association ID.

', 'IpamResourceDiscoveryAssociation$IpamResourceDiscoveryAssociationId' => '

The resource discovery association ID.

', ], ], 'IpamResourceDiscoveryAssociationSet' => [ 'base' => NULL, 'refs' => [ 'DescribeIpamResourceDiscoveryAssociationsResult$IpamResourceDiscoveryAssociations' => '

The resource discovery associations.

', ], ], 'IpamResourceDiscoveryAssociationState' => [ 'base' => NULL, 'refs' => [ 'IpamResourceDiscoveryAssociation$State' => '

The lifecycle state of the association when you associate or disassociate a resource discovery.

  • associate-in-progress - Resource discovery is being associated.

  • associate-complete - Resource discovery association is complete.

  • associate-failed - Resource discovery association has failed.

  • disassociate-in-progress - Resource discovery is being disassociated.

  • disassociate-complete - Resource discovery disassociation is complete.

  • disassociate-failed - Resource discovery disassociation has failed.

  • isolate-in-progress - Amazon Web Services account that created the resource discovery association has been removed and the resource discovery associatation is being isolated.

  • isolate-complete - Resource discovery isolation is complete..

  • restore-in-progress - Resource discovery is being restored.

', ], ], 'IpamResourceDiscoveryId' => [ 'base' => NULL, 'refs' => [ 'AssociateIpamResourceDiscoveryRequest$IpamResourceDiscoveryId' => '

A resource discovery ID.

', 'DeleteIpamResourceDiscoveryRequest$IpamResourceDiscoveryId' => '

The IPAM resource discovery ID.

', 'GetIpamDiscoveredAccountsRequest$IpamResourceDiscoveryId' => '

A resource discovery ID.

', 'GetIpamDiscoveredPublicAddressesRequest$IpamResourceDiscoveryId' => '

An IPAM resource discovery ID.

', 'GetIpamDiscoveredResourceCidrsRequest$IpamResourceDiscoveryId' => '

A resource discovery ID.

', 'Ipam$DefaultResourceDiscoveryId' => '

The IPAM\'s default resource discovery ID.

', 'IpamDiscoveredPublicAddress$IpamResourceDiscoveryId' => '

The resource discovery ID.

', 'IpamDiscoveredResourceCidr$IpamResourceDiscoveryId' => '

The resource discovery ID.

', 'IpamResourceDiscovery$IpamResourceDiscoveryId' => '

The resource discovery ID.

', 'IpamResourceDiscoveryAssociation$IpamResourceDiscoveryId' => '

The resource discovery ID.

', 'ModifyIpamResourceDiscoveryRequest$IpamResourceDiscoveryId' => '

A resource discovery ID.

', ], ], 'IpamResourceDiscoverySet' => [ 'base' => NULL, 'refs' => [ 'DescribeIpamResourceDiscoveriesResult$IpamResourceDiscoveries' => '

The resource discoveries.

', ], ], 'IpamResourceDiscoveryState' => [ 'base' => NULL, 'refs' => [ 'IpamResourceDiscovery$State' => '

The lifecycle state of the resource discovery.

  • create-in-progress - Resource discovery is being created.

  • create-complete - Resource discovery creation is complete.

  • create-failed - Resource discovery creation has failed.

  • modify-in-progress - Resource discovery is being modified.

  • modify-complete - Resource discovery modification is complete.

  • modify-failed - Resource discovery modification has failed.

  • delete-in-progress - Resource discovery is being deleted.

  • delete-complete - Resource discovery deletion is complete.

  • delete-failed - Resource discovery deletion has failed.

  • isolate-in-progress - Amazon Web Services account that created the resource discovery has been removed and the resource discovery is being isolated.

  • isolate-complete - Resource discovery isolation is complete.

  • restore-in-progress - Amazon Web Services account that created the resource discovery and was isolated has been restored.

', ], ], 'IpamResourceTag' => [ 'base' => '

The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'refs' => [ 'IpamResourceTagList$member' => NULL, ], ], 'IpamResourceTagList' => [ 'base' => NULL, 'refs' => [ 'IpamDiscoveredResourceCidr$ResourceTags' => '

The resource tags.

', 'IpamPool$AllocationResourceTags' => '

Tags that are required for resources that use CIDRs from this IPAM pool. Resources that do not have these tags will not be allowed to allocate space from the pool. If the resources have their tags changed after they have allocated space or if the allocation tagging requirements are changed on the pool, the resource may be marked as noncompliant.

', 'IpamResourceCidr$ResourceTags' => '

The tags for an IPAM resource.

', ], ], 'IpamResourceType' => [ 'base' => NULL, 'refs' => [ 'GetIpamResourceCidrsRequest$ResourceType' => '

The resource type.

', 'IpamDiscoveredResourceCidr$ResourceType' => '

The resource type.

', 'IpamResourceCidr$ResourceType' => '

The type of IPAM resource.

', ], ], 'IpamScope' => [ 'base' => '

In IPAM, a scope is the highest-level container within IPAM. An IPAM contains two default scopes. Each scope represents the IP space for a single network. The private scope is intended for all private IP address space. The public scope is intended for all public IP address space. Scopes enable you to reuse IP addresses across multiple unconnected networks without causing IP address overlap or conflict.

For more information, see How IPAM works in the Amazon VPC IPAM User Guide.

', 'refs' => [ 'CreateIpamScopeResult$IpamScope' => '

Information about the created scope.

', 'DeleteIpamScopeResult$IpamScope' => '

Information about the results of the deletion.

', 'IpamScopeSet$member' => NULL, 'ModifyIpamScopeResult$IpamScope' => '

The results of the modification.

', ], ], 'IpamScopeId' => [ 'base' => NULL, 'refs' => [ 'CreateIpamPoolRequest$IpamScopeId' => '

The ID of the scope in which you would like to create the IPAM pool.

', 'DeleteIpamScopeRequest$IpamScopeId' => '

The ID of the scope to delete.

', 'GetIpamAddressHistoryRequest$IpamScopeId' => '

The ID of the IPAM scope that the CIDR is in.

', 'GetIpamResourceCidrsRequest$IpamScopeId' => '

The ID of the scope that the resource is in.

', 'Ipam$PublicDefaultScopeId' => '

The ID of the IPAM\'s default public scope.

', 'Ipam$PrivateDefaultScopeId' => '

The ID of the IPAM\'s default private scope.

', 'IpamResourceCidr$IpamScopeId' => '

The scope ID for an IPAM resource.

', 'IpamScope$IpamScopeId' => '

The ID of the scope.

', 'ModifyIpamResourceCidrRequest$CurrentIpamScopeId' => '

The ID of the current scope that the resource CIDR is in.

', 'ModifyIpamResourceCidrRequest$DestinationIpamScopeId' => '

The ID of the scope you want to transfer the resource CIDR to.

', 'ModifyIpamScopeRequest$IpamScopeId' => '

The ID of the scope you want to modify.

', ], ], 'IpamScopeSet' => [ 'base' => NULL, 'refs' => [ 'DescribeIpamScopesResult$IpamScopes' => '

The scopes you want information on.

', ], ], 'IpamScopeState' => [ 'base' => NULL, 'refs' => [ 'IpamScope$State' => '

The state of the IPAM scope.

', ], ], 'IpamScopeType' => [ 'base' => NULL, 'refs' => [ 'IpamPool$IpamScopeType' => '

In IPAM, a scope is the highest-level container within IPAM. An IPAM contains two default scopes. Each scope represents the IP space for a single network. The private scope is intended for all private IP address space. The public scope is intended for all public IP address space. Scopes enable you to reuse IP addresses across multiple unconnected networks without causing IP address overlap or conflict.

', 'IpamScope$IpamScopeType' => '

The type of the scope.

', ], ], 'IpamSet' => [ 'base' => NULL, 'refs' => [ 'DescribeIpamsResult$Ipams' => '

Information about the IPAMs.

', ], ], 'IpamState' => [ 'base' => NULL, 'refs' => [ 'Ipam$State' => '

The state of the IPAM.

', ], ], 'IpamTier' => [ 'base' => NULL, 'refs' => [ 'CreateIpamRequest$Tier' => '

IPAM is offered in a Free Tier and an Advanced Tier. For more information about the features available in each tier and the costs associated with the tiers, see Amazon VPC pricing > IPAM tab.

', 'Ipam$Tier' => '

IPAM is offered in a Free Tier and an Advanced Tier. For more information about the features available in each tier and the costs associated with the tiers, see Amazon VPC pricing > IPAM tab.

', 'ModifyIpamRequest$Tier' => '

IPAM is offered in a Free Tier and an Advanced Tier. For more information about the features available in each tier and the costs associated with the tiers, see Amazon VPC pricing > IPAM tab.

', ], ], 'Ipv4PoolCoipId' => [ 'base' => NULL, 'refs' => [ 'CoipCidr$CoipPoolId' => '

The ID of the address pool.

', 'CoipPool$PoolId' => '

The ID of the address pool.

', 'CoipPoolIdSet$member' => NULL, 'CreateCoipCidrRequest$CoipPoolId' => '

The ID of the address pool.

', 'DeleteCoipCidrRequest$CoipPoolId' => '

The ID of the customer-owned address pool.

', 'DeleteCoipPoolRequest$CoipPoolId' => '

The ID of the CoIP pool that you want to delete.

', 'GetCoipPoolUsageRequest$PoolId' => '

The ID of the address pool.

', ], ], 'Ipv4PoolEc2Id' => [ 'base' => NULL, 'refs' => [ 'AllocateAddressRequest$PublicIpv4Pool' => '

The ID of an address pool that you own. Use this parameter to let Amazon EC2 select an address from the address pool. To specify a specific address from the address pool, use the Address parameter instead.

', 'CreatePublicIpv4PoolResult$PoolId' => '

The ID of the public IPv4 pool.

', 'DeletePublicIpv4PoolRequest$PoolId' => '

The ID of the public IPv4 pool you want to delete.

', 'DeprovisionPublicIpv4PoolCidrRequest$PoolId' => '

The ID of the pool that you want to deprovision the CIDR from.

', 'DeprovisionPublicIpv4PoolCidrResult$PoolId' => '

The ID of the pool that you deprovisioned the CIDR from.

', 'ProvisionPublicIpv4PoolCidrRequest$PoolId' => '

The ID of the public IPv4 pool you would like to use for this CIDR.

', 'ProvisionPublicIpv4PoolCidrResult$PoolId' => '

The ID of the pool that you want to provision the CIDR to.

', 'PublicIpv4PoolIdStringList$member' => NULL, ], ], 'Ipv4PrefixList' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInterfaceRequest$Ipv4Prefixes' => '

The IPv4 prefixes assigned to the network interface.

You can\'t specify IPv4 prefixes if you\'ve specified one of the following: a count of IPv4 prefixes, specific private IPv4 addresses, or a count of private IPv4 addresses.

', 'InstanceNetworkInterfaceSpecification$Ipv4Prefixes' => '

The IPv4 delegated prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv4PrefixCount option.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$Ipv4Prefixes' => '

One or more IPv4 prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv4PrefixCount option.

', ], ], 'Ipv4PrefixListResponse' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceNetworkInterfaceSpecification$Ipv4Prefixes' => '

One or more IPv4 prefixes assigned to the network interface.

', ], ], 'Ipv4PrefixSpecification' => [ 'base' => '

Describes an IPv4 prefix.

', 'refs' => [ 'Ipv4PrefixesList$member' => NULL, ], ], 'Ipv4PrefixSpecificationRequest' => [ 'base' => '

Describes the IPv4 prefix option for a network interface.

', 'refs' => [ 'Ipv4PrefixList$member' => NULL, ], ], 'Ipv4PrefixSpecificationResponse' => [ 'base' => '

Information about the IPv4 delegated prefixes assigned to a network interface.

', 'refs' => [ 'Ipv4PrefixListResponse$member' => NULL, ], ], 'Ipv4PrefixesList' => [ 'base' => NULL, 'refs' => [ 'AssignPrivateIpAddressesResult$AssignedIpv4Prefixes' => '

The IPv4 prefixes that are assigned to the network interface.

', 'NetworkInterface$Ipv4Prefixes' => '

The IPv4 prefixes that are assigned to the network interface.

', ], ], 'Ipv6Address' => [ 'base' => NULL, 'refs' => [ 'ScheduledInstancesIpv6Address$Ipv6Address' => '

The IPv6 address.

', ], ], 'Ipv6AddressList' => [ 'base' => NULL, 'refs' => [ 'AssignIpv6AddressesRequest$Ipv6Addresses' => '

The IPv6 addresses to be assigned to the network interface. You can\'t use this option if you\'re specifying a number of IPv6 addresses.

', 'AssignIpv6AddressesResult$AssignedIpv6Addresses' => '

The new IPv6 addresses assigned to the network interface. Existing IPv6 addresses that were assigned to the network interface before the request are not included.

', 'UnassignIpv6AddressesRequest$Ipv6Addresses' => '

The IPv6 addresses to unassign from the network interface.

', 'UnassignIpv6AddressesResult$UnassignedIpv6Addresses' => '

The IPv6 addresses that have been unassigned from the network interface.

', ], ], 'Ipv6CidrAssociation' => [ 'base' => '

Describes an IPv6 CIDR block association.

', 'refs' => [ 'Ipv6CidrAssociationSet$member' => NULL, ], ], 'Ipv6CidrAssociationSet' => [ 'base' => NULL, 'refs' => [ 'GetAssociatedIpv6PoolCidrsResult$Ipv6CidrAssociations' => '

Information about the IPv6 CIDR block associations.

', ], ], 'Ipv6CidrBlock' => [ 'base' => '

Describes an IPv6 CIDR block.

', 'refs' => [ 'Ipv6CidrBlockSet$member' => NULL, ], ], 'Ipv6CidrBlockSet' => [ 'base' => NULL, 'refs' => [ 'VpcPeeringConnectionVpcInfo$Ipv6CidrBlockSet' => '

The IPv6 CIDR block for the VPC.

', ], ], 'Ipv6Flag' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$Ipv6Supported' => '

Indicates whether IPv6 is supported.

', ], ], 'Ipv6Pool' => [ 'base' => '

Describes an IPv6 address pool.

', 'refs' => [ 'Ipv6PoolSet$member' => NULL, ], ], 'Ipv6PoolEc2Id' => [ 'base' => NULL, 'refs' => [ 'AssociateVpcCidrBlockRequest$Ipv6Pool' => '

The ID of an IPv6 address pool from which to allocate the IPv6 CIDR block.

', 'CreateVpcRequest$Ipv6Pool' => '

The ID of an IPv6 address pool from which to allocate the IPv6 CIDR block.

', 'GetAssociatedIpv6PoolCidrsRequest$PoolId' => '

The ID of the IPv6 address pool.

', 'Ipv6PoolIdList$member' => NULL, ], ], 'Ipv6PoolIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeIpv6PoolsRequest$PoolIds' => '

The IDs of the IPv6 address pools.

', ], ], 'Ipv6PoolMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeIpv6PoolsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetAssociatedIpv6PoolCidrsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'Ipv6PoolSet' => [ 'base' => NULL, 'refs' => [ 'DescribeIpv6PoolsResult$Ipv6Pools' => '

Information about the IPv6 address pools.

', ], ], 'Ipv6PrefixList' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInterfaceRequest$Ipv6Prefixes' => '

The IPv6 prefixes assigned to the network interface.

You can\'t specify IPv6 prefixes if you\'ve specified one of the following: a count of IPv6 prefixes, specific IPv6 addresses, or a count of IPv6 addresses.

', 'InstanceNetworkInterfaceSpecification$Ipv6Prefixes' => '

The IPv6 delegated prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv6PrefixCount option.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$Ipv6Prefixes' => '

One or more IPv6 prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv6PrefixCount option.

', ], ], 'Ipv6PrefixListResponse' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceNetworkInterfaceSpecification$Ipv6Prefixes' => '

One or more IPv6 prefixes assigned to the network interface.

', ], ], 'Ipv6PrefixSpecification' => [ 'base' => '

Describes the IPv6 prefix.

', 'refs' => [ 'Ipv6PrefixesList$member' => NULL, ], ], 'Ipv6PrefixSpecificationRequest' => [ 'base' => '

Describes the IPv4 prefix option for a network interface.

', 'refs' => [ 'Ipv6PrefixList$member' => NULL, ], ], 'Ipv6PrefixSpecificationResponse' => [ 'base' => '

Information about the IPv6 delegated prefixes assigned to a network interface.

', 'refs' => [ 'Ipv6PrefixListResponse$member' => NULL, ], ], 'Ipv6PrefixesList' => [ 'base' => NULL, 'refs' => [ 'NetworkInterface$Ipv6Prefixes' => '

The IPv6 prefixes that are assigned to the network interface.

', ], ], 'Ipv6Range' => [ 'base' => '

Describes an IPv6 range.

', 'refs' => [ 'Ipv6RangeList$member' => NULL, ], ], 'Ipv6RangeList' => [ 'base' => NULL, 'refs' => [ 'IpPermission$Ipv6Ranges' => '

The IPv6 ranges.

', ], ], 'Ipv6SupportValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayVpcAttachmentRequestOptions$Ipv6Support' => '

Enable or disable IPv6 support. The default is disable.

', 'ModifyTransitGatewayVpcAttachmentRequestOptions$Ipv6Support' => '

Enable or disable IPv6 support. The default is enable.

', 'TransitGatewayVpcAttachmentOptions$Ipv6Support' => '

Indicates whether IPv6 support is disabled.

', ], ], 'KernelId' => [ 'base' => NULL, 'refs' => [ 'RegisterImageRequest$KernelId' => '

The ID of the kernel.

', 'RequestLaunchTemplateData$KernelId' => '

The ID of the kernel.

We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see User provided kernels in the Amazon Elastic Compute Cloud User Guide.

', 'RequestSpotLaunchSpecification$KernelId' => '

The ID of the kernel.

', 'RunInstancesRequest$KernelId' => '

The ID of the kernel.

We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see PV-GRUB in the Amazon EC2 User Guide.

', 'ScheduledInstancesLaunchSpecification$KernelId' => '

The ID of the kernel.

', ], ], 'KeyFormat' => [ 'base' => NULL, 'refs' => [ 'CreateKeyPairRequest$KeyFormat' => '

The format of the key pair.

Default: pem

', ], ], 'KeyNameStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeKeyPairsRequest$KeyNames' => '

The key pair names.

Default: Describes all of your key pairs.

', ], ], 'KeyPair' => [ 'base' => '

Describes a key pair.

', 'refs' => [], ], 'KeyPairId' => [ 'base' => NULL, 'refs' => [ 'DeleteKeyPairRequest$KeyPairId' => '

The ID of the key pair.

', 'KeyPairIdStringList$member' => NULL, ], ], 'KeyPairIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeKeyPairsRequest$KeyPairIds' => '

The IDs of the key pairs.

', ], ], 'KeyPairInfo' => [ 'base' => '

Describes a key pair.

', 'refs' => [ 'KeyPairList$member' => NULL, ], ], 'KeyPairList' => [ 'base' => NULL, 'refs' => [ 'DescribeKeyPairsResult$KeyPairs' => '

Information about the key pairs.

', ], ], 'KeyPairName' => [ 'base' => NULL, 'refs' => [ 'DeleteKeyPairRequest$KeyName' => '

The name of the key pair.

', 'KeyNameStringList$member' => NULL, 'RequestLaunchTemplateData$KeyName' => '

The name of the key pair. You can create a key pair using CreateKeyPair or ImportKeyPair.

If you do not specify a key pair, you can\'t connect to the instance unless you choose an AMI that is configured to allow users another way to log in.

', 'RequestSpotLaunchSpecification$KeyName' => '

The name of the key pair.

', 'RunInstancesRequest$KeyName' => '

The name of the key pair. You can create a key pair using CreateKeyPair or ImportKeyPair.

If you do not specify a key pair, you can\'t connect to the instance unless you choose an AMI that is configured to allow users another way to log in.

', 'ScheduledInstancesLaunchSpecification$KeyName' => '

The name of the key pair.

', 'SpotFleetLaunchSpecification$KeyName' => '

The name of the key pair.

', ], ], 'KeyType' => [ 'base' => NULL, 'refs' => [ 'CreateKeyPairRequest$KeyType' => '

The type of key pair. Note that ED25519 keys are not supported for Windows instances.

Default: rsa

', 'KeyPairInfo$KeyType' => '

The type of key pair.

', ], ], 'KmsKeyArn' => [ 'base' => NULL, 'refs' => [ 'VerifiedAccessSseSpecificationRequest$KmsKeyArn' => '

The ARN of the KMS key.

', 'VerifiedAccessSseSpecificationResponse$KmsKeyArn' => '

The ARN of the KMS key.

', ], ], 'KmsKeyId' => [ 'base' => NULL, 'refs' => [ 'CopyImageRequest$KmsKeyId' => '

The identifier of the symmetric Key Management Service (KMS) KMS key to use when creating encrypted volumes. If this parameter is not specified, your Amazon Web Services managed KMS key for Amazon EBS is used. If you specify a KMS key, you must also set the encrypted state to true.

You can specify a KMS key using any of the following:

  • Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.

  • Key alias. For example, alias/ExampleAlias.

  • Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab.

  • Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

Amazon Web Services authenticates the KMS key asynchronously. Therefore, if you specify an identifier that is not valid, the action can appear to complete, but eventually fails.

The specified KMS key must exist in the destination Region.

Amazon EBS does not support asymmetric KMS keys.

', 'CopySnapshotRequest$KmsKeyId' => '

The identifier of the Key Management Service (KMS) KMS key to use for Amazon EBS encryption. If this parameter is not specified, your KMS key for Amazon EBS is used. If KmsKeyId is specified, the encrypted state must be true.

You can specify the KMS key using any of the following:

  • Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.

  • Key alias. For example, alias/ExampleAlias.

  • Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab.

  • Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

Amazon Web Services authenticates the KMS key asynchronously. Therefore, if you specify an ID, alias, or ARN that is not valid, the action can appear to complete, but eventually fails.

', 'CreateVolumeRequest$KmsKeyId' => '

The identifier of the Key Management Service (KMS) KMS key to use for Amazon EBS encryption. If this parameter is not specified, your KMS key for Amazon EBS is used. If KmsKeyId is specified, the encrypted state must be true.

You can specify the KMS key using any of the following:

  • Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.

  • Key alias. For example, alias/ExampleAlias.

  • Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab.

  • Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

Amazon Web Services authenticates the KMS key asynchronously. Therefore, if you specify an ID, alias, or ARN that is not valid, the action can appear to complete, but eventually fails.

', 'ImportImageRequest$KmsKeyId' => '

An identifier for the symmetric KMS key to use when creating the encrypted AMI. This parameter is only required if you want to use a non-default KMS key; if this parameter is not specified, the default KMS key for EBS is used. If a KmsKeyId is specified, the Encrypted flag must also be set.

The KMS key identifier may be provided in any of the following formats:

  • Key ID

  • Key alias

  • ARN using key ID. The ID ARN contains the arn:aws:kms namespace, followed by the Region of the key, the Amazon Web Services account ID of the key owner, the key namespace, and then the key ID. For example, arn:aws:kms:us-east-1:012345678910:key/abcd1234-a123-456a-a12b-a123b4cd56ef.

  • ARN using key alias. The alias ARN contains the arn:aws:kms namespace, followed by the Region of the key, the Amazon Web Services account ID of the key owner, the alias namespace, and then the key alias. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

Amazon Web Services parses KmsKeyId asynchronously, meaning that the action you call may appear to complete even though you provided an invalid identifier. This action will eventually report failure.

The specified KMS key must exist in the Region that the AMI is being copied to.

Amazon EBS does not support asymmetric KMS keys.

', 'ImportImageResult$KmsKeyId' => '

The identifier for the symmetric KMS key that was used to create the encrypted AMI.

', 'ImportSnapshotRequest$KmsKeyId' => '

An identifier for the symmetric KMS key to use when creating the encrypted snapshot. This parameter is only required if you want to use a non-default KMS key; if this parameter is not specified, the default KMS key for EBS is used. If a KmsKeyId is specified, the Encrypted flag must also be set.

The KMS key identifier may be provided in any of the following formats:

  • Key ID

  • Key alias

  • ARN using key ID. The ID ARN contains the arn:aws:kms namespace, followed by the Region of the key, the Amazon Web Services account ID of the key owner, the key namespace, and then the key ID. For example, arn:aws:kms:us-east-1:012345678910:key/abcd1234-a123-456a-a12b-a123b4cd56ef.

  • ARN using key alias. The alias ARN contains the arn:aws:kms namespace, followed by the Region of the key, the Amazon Web Services account ID of the key owner, the alias namespace, and then the key alias. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

Amazon Web Services parses KmsKeyId asynchronously, meaning that the action you call may appear to complete even though you provided an invalid identifier. This action will eventually report failure.

The specified KMS key must exist in the Region that the snapshot is being copied to.

Amazon EBS does not support asymmetric KMS keys.

', 'LaunchTemplateEbsBlockDevice$KmsKeyId' => '

The ARN of the Key Management Service (KMS) CMK used for encryption.

', 'LaunchTemplateEbsBlockDeviceRequest$KmsKeyId' => '

The ARN of the symmetric Key Management Service (KMS) CMK used for encryption.

', 'ModifyEbsDefaultKmsKeyIdRequest$KmsKeyId' => '

The identifier of the Key Management Service (KMS) KMS key to use for Amazon EBS encryption. If this parameter is not specified, your KMS key for Amazon EBS is used. If KmsKeyId is specified, the encrypted state must be true.

You can specify the KMS key using any of the following:

  • Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.

  • Key alias. For example, alias/ExampleAlias.

  • Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab.

  • Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

Amazon Web Services authenticates the KMS key asynchronously. Therefore, if you specify an ID, alias, or ARN that is not valid, the action can appear to complete, but eventually fails.

Amazon EBS does not support asymmetric KMS keys.

', ], ], 'LastError' => [ 'base' => '

The last error that occurred for a VPC endpoint.

', 'refs' => [ 'VpcEndpoint$LastError' => '

The last error that occurred for endpoint.

', ], ], 'LaunchPermission' => [ 'base' => '

Describes a launch permission.

', 'refs' => [ 'LaunchPermissionList$member' => NULL, ], ], 'LaunchPermissionList' => [ 'base' => NULL, 'refs' => [ 'ImageAttribute$LaunchPermissions' => '

The launch permissions.

', 'LaunchPermissionModifications$Add' => '

The Amazon Web Services account ID, organization ARN, or OU ARN to add to the list of launch permissions for the AMI.

', 'LaunchPermissionModifications$Remove' => '

The Amazon Web Services account ID, organization ARN, or OU ARN to remove from the list of launch permissions for the AMI.

', ], ], 'LaunchPermissionModifications' => [ 'base' => '

Describes a launch permission modification.

', 'refs' => [ 'ModifyImageAttributeRequest$LaunchPermission' => '

A new launch permission for the AMI.

', ], ], 'LaunchSpecification' => [ 'base' => '

Describes the launch specification for an instance.

', 'refs' => [ 'SpotInstanceRequest$LaunchSpecification' => '

Additional information for launching instances.

', ], ], 'LaunchSpecsList' => [ 'base' => NULL, 'refs' => [ 'SpotFleetRequestConfigData$LaunchSpecifications' => '

The launch specifications for the Spot Fleet request. If you specify LaunchSpecifications, you can\'t specify LaunchTemplateConfigs. If you include On-Demand capacity in your request, you must use LaunchTemplateConfigs.

', ], ], 'LaunchTemplate' => [ 'base' => '

Describes a launch template.

', 'refs' => [ 'CreateLaunchTemplateResult$LaunchTemplate' => '

Information about the launch template.

', 'DeleteLaunchTemplateResult$LaunchTemplate' => '

Information about the launch template.

', 'LaunchTemplateSet$member' => NULL, 'ModifyLaunchTemplateResult$LaunchTemplate' => '

Information about the launch template.

', ], ], 'LaunchTemplateAndOverridesResponse' => [ 'base' => '

Describes a launch template and overrides.

', 'refs' => [ 'CreateFleetError$LaunchTemplateAndOverrides' => '

The launch templates and overrides that were used for launching the instances. The values that you specify in the Overrides replace the values in the launch template.

', 'CreateFleetInstance$LaunchTemplateAndOverrides' => '

The launch templates and overrides that were used for launching the instances. The values that you specify in the Overrides replace the values in the launch template.

', 'DescribeFleetError$LaunchTemplateAndOverrides' => '

The launch templates and overrides that were used for launching the instances. The values that you specify in the Overrides replace the values in the launch template.

', 'DescribeFleetsInstances$LaunchTemplateAndOverrides' => '

The launch templates and overrides that were used for launching the instances. The values that you specify in the Overrides replace the values in the launch template.

', ], ], 'LaunchTemplateAutoRecoveryState' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceMaintenanceOptions$AutoRecovery' => '

Disables the automatic recovery behavior of your instance or sets it to default.

', 'LaunchTemplateInstanceMaintenanceOptionsRequest$AutoRecovery' => '

Disables the automatic recovery behavior of your instance or sets it to default. For more information, see Simplified automatic recovery.

', ], ], 'LaunchTemplateBlockDeviceMapping' => [ 'base' => '

Describes a block device mapping.

', 'refs' => [ 'LaunchTemplateBlockDeviceMappingList$member' => NULL, ], ], 'LaunchTemplateBlockDeviceMappingList' => [ 'base' => NULL, 'refs' => [ 'ResponseLaunchTemplateData$BlockDeviceMappings' => '

The block device mappings.

', ], ], 'LaunchTemplateBlockDeviceMappingRequest' => [ 'base' => '

Describes a block device mapping.

', 'refs' => [ 'LaunchTemplateBlockDeviceMappingRequestList$member' => NULL, ], ], 'LaunchTemplateBlockDeviceMappingRequestList' => [ 'base' => NULL, 'refs' => [ 'RequestLaunchTemplateData$BlockDeviceMappings' => '

The block device mapping.

', ], ], 'LaunchTemplateCapacityReservationSpecificationRequest' => [ 'base' => '

Describes an instance\'s Capacity Reservation targeting option. You can specify only one option at a time. Use the CapacityReservationPreference parameter to configure the instance to run in On-Demand capacity or to run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone). Use the CapacityReservationTarget parameter to explicitly target a specific Capacity Reservation or a Capacity Reservation group.

', 'refs' => [ 'RequestLaunchTemplateData$CapacityReservationSpecification' => '

The Capacity Reservation targeting option. If you do not specify this parameter, the instance\'s Capacity Reservation preference defaults to open, which enables it to run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).

', ], ], 'LaunchTemplateCapacityReservationSpecificationResponse' => [ 'base' => '

Information about the Capacity Reservation targeting option.

', 'refs' => [ 'ResponseLaunchTemplateData$CapacityReservationSpecification' => '

Information about the Capacity Reservation targeting option.

', ], ], 'LaunchTemplateConfig' => [ 'base' => '

Describes a launch template and overrides.

', 'refs' => [ 'LaunchTemplateConfigList$member' => NULL, ], ], 'LaunchTemplateConfigList' => [ 'base' => NULL, 'refs' => [ 'ModifySpotFleetRequestRequest$LaunchTemplateConfigs' => '

The launch template and overrides. You can only use this parameter if you specified a launch template (LaunchTemplateConfigs) in your Spot Fleet request. If you specified LaunchSpecifications in your Spot Fleet request, then omit this parameter.

', 'SpotFleetRequestConfigData$LaunchTemplateConfigs' => '

The launch template and overrides. If you specify LaunchTemplateConfigs, you can\'t specify LaunchSpecifications. If you include On-Demand capacity in your request, you must use LaunchTemplateConfigs.

', ], ], 'LaunchTemplateCpuOptions' => [ 'base' => '

The CPU options for the instance.

', 'refs' => [ 'ResponseLaunchTemplateData$CpuOptions' => '

The CPU options for the instance. For more information, see Optimizing CPU options in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'LaunchTemplateCpuOptionsRequest' => [ 'base' => '

The CPU options for the instance. Both the core count and threads per core must be specified in the request.

', 'refs' => [ 'RequestLaunchTemplateData$CpuOptions' => '

The CPU options for the instance. For more information, see Optimizing CPU Options in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'LaunchTemplateEbsBlockDevice' => [ 'base' => '

Describes a block device for an EBS volume.

', 'refs' => [ 'LaunchTemplateBlockDeviceMapping$Ebs' => '

Information about the block device for an EBS volume.

', ], ], 'LaunchTemplateEbsBlockDeviceRequest' => [ 'base' => '

The parameters for a block device for an EBS volume.

', 'refs' => [ 'LaunchTemplateBlockDeviceMappingRequest$Ebs' => '

Parameters used to automatically set up EBS volumes when the instance is launched.

', ], ], 'LaunchTemplateElasticInferenceAccelerator' => [ 'base' => '

Describes an elastic inference accelerator.

', 'refs' => [ 'LaunchTemplateElasticInferenceAcceleratorList$member' => NULL, ], ], 'LaunchTemplateElasticInferenceAcceleratorCount' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateElasticInferenceAccelerator$Count' => '

The number of elastic inference accelerators to attach to the instance.

Default: 1

', ], ], 'LaunchTemplateElasticInferenceAcceleratorList' => [ 'base' => NULL, 'refs' => [ 'RequestLaunchTemplateData$ElasticInferenceAccelerators' => '

An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.

You cannot specify accelerators from different generations in the same request.

Starting April 15, 2023, Amazon Web Services will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.

', ], ], 'LaunchTemplateElasticInferenceAcceleratorResponse' => [ 'base' => '

Describes an elastic inference accelerator.

', 'refs' => [ 'LaunchTemplateElasticInferenceAcceleratorResponseList$member' => NULL, ], ], 'LaunchTemplateElasticInferenceAcceleratorResponseList' => [ 'base' => NULL, 'refs' => [ 'ResponseLaunchTemplateData$ElasticInferenceAccelerators' => '

An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.

You cannot specify accelerators from different generations in the same request.

Starting April 15, 2023, Amazon Web Services will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.

', ], ], 'LaunchTemplateEnaSrdSpecification' => [ 'base' => '

ENA Express uses Amazon Web Services Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled.

To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it.

', 'refs' => [ 'LaunchTemplateInstanceNetworkInterfaceSpecification$EnaSrdSpecification' => '

Contains the ENA Express settings for instances launched from your launch template.

', ], ], 'LaunchTemplateEnaSrdUdpSpecification' => [ 'base' => '

ENA Express is compatible with both TCP and UDP transport protocols. When it\'s enabled, TCP traffic automatically uses it. However, some UDP-based applications are designed to handle network packets that are out of order, without a need for retransmission, such as live video broadcasting or other near-real-time applications. For UDP traffic, you can specify whether to use ENA Express, based on your application environment needs.

', 'refs' => [ 'LaunchTemplateEnaSrdSpecification$EnaSrdUdpSpecification' => '

Configures ENA Express for UDP network traffic.

', ], ], 'LaunchTemplateEnclaveOptions' => [ 'base' => '

Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves.

', 'refs' => [ 'ResponseLaunchTemplateData$EnclaveOptions' => '

Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves.

', ], ], 'LaunchTemplateEnclaveOptionsRequest' => [ 'base' => '

Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For more information, see What is Amazon Web Services Nitro Enclaves? in the Amazon Web Services Nitro Enclaves User Guide.

', 'refs' => [ 'RequestLaunchTemplateData$EnclaveOptions' => '

Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For more information, see What is Amazon Web Services Nitro Enclaves? in the Amazon Web Services Nitro Enclaves User Guide.

You can\'t enable Amazon Web Services Nitro Enclaves and hibernation on the same instance.

', ], ], 'LaunchTemplateErrorCode' => [ 'base' => NULL, 'refs' => [ 'ResponseError$Code' => '

The error code.

', ], ], 'LaunchTemplateHibernationOptions' => [ 'base' => '

Indicates whether an instance is configured for hibernation.

', 'refs' => [ 'ResponseLaunchTemplateData$HibernationOptions' => '

Indicates whether an instance is configured for hibernation. For more information, see Hibernate your instance in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'LaunchTemplateHibernationOptionsRequest' => [ 'base' => '

Indicates whether the instance is configured for hibernation. This parameter is valid only if the instance meets the hibernation prerequisites.

', 'refs' => [ 'RequestLaunchTemplateData$HibernationOptions' => '

Indicates whether an instance is enabled for hibernation. This parameter is valid only if the instance meets the hibernation prerequisites. For more information, see Hibernate your instance in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'LaunchTemplateHttpTokensState' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceMetadataOptions$HttpTokens' => '

Indicates whether IMDSv2 is required.

  • optional - IMDSv2 is optional. You can choose whether to send a session token in your instance metadata retrieval requests. If you retrieve IAM role credentials without a session token, you receive the IMDSv1 role credentials. If you retrieve IAM role credentials using a valid session token, you receive the IMDSv2 role credentials.

  • required - IMDSv2 is required. You must send a session token in your instance metadata retrieval requests. With this option, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available.

', 'LaunchTemplateInstanceMetadataOptionsRequest$HttpTokens' => '

Indicates whether IMDSv2 is required.

  • optional - IMDSv2 is optional. You can choose whether to send a session token in your instance metadata retrieval requests. If you retrieve IAM role credentials without a session token, you receive the IMDSv1 role credentials. If you retrieve IAM role credentials using a valid session token, you receive the IMDSv2 role credentials.

  • required - IMDSv2 is required. You must send a session token in your instance metadata retrieval requests. With this option, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available.

Default: If the value of ImdsSupport for the Amazon Machine Image (AMI) for your instance is v2.0, the default is required.

', ], ], 'LaunchTemplateIamInstanceProfileSpecification' => [ 'base' => '

Describes an IAM instance profile.

', 'refs' => [ 'ResponseLaunchTemplateData$IamInstanceProfile' => '

The IAM instance profile.

', ], ], 'LaunchTemplateIamInstanceProfileSpecificationRequest' => [ 'base' => '

An IAM instance profile.

', 'refs' => [ 'RequestLaunchTemplateData$IamInstanceProfile' => '

The name or Amazon Resource Name (ARN) of an IAM instance profile.

', ], ], 'LaunchTemplateId' => [ 'base' => NULL, 'refs' => [ 'CreateLaunchTemplateVersionRequest$LaunchTemplateId' => '

The ID of the launch template.

You must specify either the LaunchTemplateId or the LaunchTemplateName, but not both.

', 'DeleteLaunchTemplateRequest$LaunchTemplateId' => '

The ID of the launch template.

You must specify either the LaunchTemplateId or the LaunchTemplateName, but not both.

', 'DeleteLaunchTemplateVersionsRequest$LaunchTemplateId' => '

The ID of the launch template.

You must specify either the LaunchTemplateId or the LaunchTemplateName, but not both.

', 'DescribeLaunchTemplateVersionsRequest$LaunchTemplateId' => '

The ID of the launch template.

To describe one or more versions of a specified launch template, you must specify either the LaunchTemplateId or the LaunchTemplateName, but not both.

To describe all the latest or default launch template versions in your account, you must omit this parameter.

', 'FastLaunchLaunchTemplateSpecificationRequest$LaunchTemplateId' => '

Specify the ID of the launch template that the AMI should use for Windows fast launch.

', 'FastLaunchLaunchTemplateSpecificationResponse$LaunchTemplateId' => '

The ID of the launch template that the AMI uses for Windows fast launch.

', 'FleetLaunchTemplateSpecificationRequest$LaunchTemplateId' => '

The ID of the launch template.

You must specify the LaunchTemplateId or the LaunchTemplateName, but not both.

', 'LaunchTemplateIdStringList$member' => NULL, 'LaunchTemplateSpecification$LaunchTemplateId' => '

The ID of the launch template.

You must specify the LaunchTemplateId or the LaunchTemplateName, but not both.

', 'ModifyLaunchTemplateRequest$LaunchTemplateId' => '

The ID of the launch template.

You must specify either the LaunchTemplateId or the LaunchTemplateName, but not both.

', ], ], 'LaunchTemplateIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeLaunchTemplatesRequest$LaunchTemplateIds' => '

One or more launch template IDs.

', ], ], 'LaunchTemplateInstanceMaintenanceOptions' => [ 'base' => '

The maintenance options of your instance.

', 'refs' => [ 'ResponseLaunchTemplateData$MaintenanceOptions' => '

The maintenance options for your instance.

', ], ], 'LaunchTemplateInstanceMaintenanceOptionsRequest' => [ 'base' => '

The maintenance options of your instance.

', 'refs' => [ 'RequestLaunchTemplateData$MaintenanceOptions' => '

The maintenance options for the instance.

', ], ], 'LaunchTemplateInstanceMarketOptions' => [ 'base' => '

The market (purchasing) option for the instances.

', 'refs' => [ 'ResponseLaunchTemplateData$InstanceMarketOptions' => '

The market (purchasing) option for the instances.

', ], ], 'LaunchTemplateInstanceMarketOptionsRequest' => [ 'base' => '

The market (purchasing) option for the instances.

', 'refs' => [ 'RequestLaunchTemplateData$InstanceMarketOptions' => '

The market (purchasing) option for the instances.

', ], ], 'LaunchTemplateInstanceMetadataEndpointState' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceMetadataOptions$HttpEndpoint' => '

Enables or disables the HTTP metadata endpoint on your instances. If the parameter is not specified, the default state is enabled.

If you specify a value of disabled, you will not be able to access your instance metadata.

', 'LaunchTemplateInstanceMetadataOptionsRequest$HttpEndpoint' => '

Enables or disables the HTTP metadata endpoint on your instances. If the parameter is not specified, the default state is enabled.

If you specify a value of disabled, you will not be able to access your instance metadata.

', ], ], 'LaunchTemplateInstanceMetadataOptions' => [ 'base' => '

The metadata options for the instance. For more information, see Instance metadata and user data in the Amazon Elastic Compute Cloud User Guide.

', 'refs' => [ 'ResponseLaunchTemplateData$MetadataOptions' => '

The metadata options for the instance. For more information, see Instance metadata and user data in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'LaunchTemplateInstanceMetadataOptionsRequest' => [ 'base' => '

The metadata options for the instance. For more information, see Instance metadata and user data in the Amazon Elastic Compute Cloud User Guide.

', 'refs' => [ 'RequestLaunchTemplateData$MetadataOptions' => '

The metadata options for the instance. For more information, see Instance metadata and user data in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'LaunchTemplateInstanceMetadataOptionsState' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceMetadataOptions$State' => '

The state of the metadata option changes.

pending - The metadata options are being updated and the instance is not ready to process metadata traffic with the new selection.

applied - The metadata options have been successfully applied on the instance.

', ], ], 'LaunchTemplateInstanceMetadataProtocolIpv6' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceMetadataOptions$HttpProtocolIpv6' => '

Enables or disables the IPv6 endpoint for the instance metadata service.

Default: disabled

', 'LaunchTemplateInstanceMetadataOptionsRequest$HttpProtocolIpv6' => '

Enables or disables the IPv6 endpoint for the instance metadata service.

Default: disabled

', ], ], 'LaunchTemplateInstanceMetadataTagsState' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceMetadataOptions$InstanceMetadataTags' => '

Set to enabled to allow access to instance tags from the instance metadata. Set to disabled to turn off access to instance tags from the instance metadata. For more information, see Work with instance tags using the instance metadata.

Default: disabled

', 'LaunchTemplateInstanceMetadataOptionsRequest$InstanceMetadataTags' => '

Set to enabled to allow access to instance tags from the instance metadata. Set to disabled to turn off access to instance tags from the instance metadata. For more information, see Work with instance tags using the instance metadata.

Default: disabled

', ], ], 'LaunchTemplateInstanceNetworkInterfaceSpecification' => [ 'base' => '

Describes a network interface.

', 'refs' => [ 'LaunchTemplateInstanceNetworkInterfaceSpecificationList$member' => NULL, ], ], 'LaunchTemplateInstanceNetworkInterfaceSpecificationList' => [ 'base' => NULL, 'refs' => [ 'ResponseLaunchTemplateData$NetworkInterfaces' => '

The network interfaces.

', ], ], 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest' => [ 'base' => '

The parameters for a network interface.

', 'refs' => [ 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequestList$member' => NULL, ], ], 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequestList' => [ 'base' => NULL, 'refs' => [ 'RequestLaunchTemplateData$NetworkInterfaces' => '

One or more network interfaces. If you specify a network interface, you must specify any security groups and subnets as part of the network interface.

', ], ], 'LaunchTemplateLicenseConfiguration' => [ 'base' => '

Describes a license configuration.

', 'refs' => [ 'LaunchTemplateLicenseList$member' => NULL, ], ], 'LaunchTemplateLicenseConfigurationRequest' => [ 'base' => '

Describes a license configuration.

', 'refs' => [ 'LaunchTemplateLicenseSpecificationListRequest$member' => NULL, ], ], 'LaunchTemplateLicenseList' => [ 'base' => NULL, 'refs' => [ 'ResponseLaunchTemplateData$LicenseSpecifications' => '

The license configurations.

', ], ], 'LaunchTemplateLicenseSpecificationListRequest' => [ 'base' => NULL, 'refs' => [ 'RequestLaunchTemplateData$LicenseSpecifications' => '

The license configurations.

', ], ], 'LaunchTemplateName' => [ 'base' => NULL, 'refs' => [ 'CreateLaunchTemplateRequest$LaunchTemplateName' => '

A name for the launch template.

', 'CreateLaunchTemplateVersionRequest$LaunchTemplateName' => '

The name of the launch template.

You must specify the LaunchTemplateName or the LaunchTemplateId, but not both.

', 'DeleteLaunchTemplateRequest$LaunchTemplateName' => '

The name of the launch template.

You must specify either the LaunchTemplateName or the LaunchTemplateId, but not both.

', 'DeleteLaunchTemplateVersionsRequest$LaunchTemplateName' => '

The name of the launch template.

You must specify either the LaunchTemplateName or the LaunchTemplateId, but not both.

', 'DescribeLaunchTemplateVersionsRequest$LaunchTemplateName' => '

The name of the launch template.

To describe one or more versions of a specified launch template, you must specify either the LaunchTemplateName or the LaunchTemplateId, but not both.

To describe all the latest or default launch template versions in your account, you must omit this parameter.

', 'FleetLaunchTemplateSpecification$LaunchTemplateName' => '

The name of the launch template.

You must specify the LaunchTemplateName or the LaunchTemplateId, but not both.

', 'FleetLaunchTemplateSpecificationRequest$LaunchTemplateName' => '

The name of the launch template.

You must specify the LaunchTemplateName or the LaunchTemplateId, but not both.

', 'LaunchTemplate$LaunchTemplateName' => '

The name of the launch template.

', 'LaunchTemplateNameStringList$member' => NULL, 'LaunchTemplateVersion$LaunchTemplateName' => '

The name of the launch template.

', 'ModifyLaunchTemplateRequest$LaunchTemplateName' => '

The name of the launch template.

You must specify either the LaunchTemplateName or the LaunchTemplateId, but not both.

', ], ], 'LaunchTemplateNameStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeLaunchTemplatesRequest$LaunchTemplateNames' => '

One or more launch template names.

', ], ], 'LaunchTemplateOverrides' => [ 'base' => '

Describes overrides for a launch template.

', 'refs' => [ 'LaunchTemplateOverridesList$member' => NULL, ], ], 'LaunchTemplateOverridesList' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateConfig$Overrides' => '

Any parameters that you specify override the same parameters in the launch template.

', ], ], 'LaunchTemplatePlacement' => [ 'base' => '

Describes the placement of an instance.

', 'refs' => [ 'ResponseLaunchTemplateData$Placement' => '

The placement of the instance.

', ], ], 'LaunchTemplatePlacementRequest' => [ 'base' => '

Describes the placement of an instance.

', 'refs' => [ 'RequestLaunchTemplateData$Placement' => '

The placement for the instance.

', ], ], 'LaunchTemplatePrivateDnsNameOptions' => [ 'base' => '

Describes the options for instance hostnames.

', 'refs' => [ 'ResponseLaunchTemplateData$PrivateDnsNameOptions' => '

The options for the instance hostname.

', ], ], 'LaunchTemplatePrivateDnsNameOptionsRequest' => [ 'base' => '

Describes the options for instance hostnames.

', 'refs' => [ 'RequestLaunchTemplateData$PrivateDnsNameOptions' => '

The options for the instance hostname. The default values are inherited from the subnet.

', ], ], 'LaunchTemplateSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLaunchTemplatesResult$LaunchTemplates' => '

Information about the launch templates.

', ], ], 'LaunchTemplateSpecification' => [ 'base' => '

The launch template to use. You must specify either the launch template ID or launch template name in the request, but not both.

', 'refs' => [ 'RunInstancesRequest$LaunchTemplate' => '

The launch template to use to launch the instances. Any parameters that you specify in RunInstances override the same parameters in the launch template. You can specify either the name or ID of a launch template, but not both.

', ], ], 'LaunchTemplateSpotMarketOptions' => [ 'base' => '

The options for Spot Instances.

', 'refs' => [ 'LaunchTemplateInstanceMarketOptions$SpotOptions' => '

The options for Spot Instances.

', ], ], 'LaunchTemplateSpotMarketOptionsRequest' => [ 'base' => '

The options for Spot Instances.

', 'refs' => [ 'LaunchTemplateInstanceMarketOptionsRequest$SpotOptions' => '

The options for Spot Instances.

', ], ], 'LaunchTemplateTagSpecification' => [ 'base' => '

The tags specification for the launch template.

', 'refs' => [ 'LaunchTemplateTagSpecificationList$member' => NULL, ], ], 'LaunchTemplateTagSpecificationList' => [ 'base' => NULL, 'refs' => [ 'ResponseLaunchTemplateData$TagSpecifications' => '

The tags that are applied to the resources that are created during instance launch.

', ], ], 'LaunchTemplateTagSpecificationRequest' => [ 'base' => '

The tags specification for the resources that are created during instance launch.

', 'refs' => [ 'LaunchTemplateTagSpecificationRequestList$member' => NULL, ], ], 'LaunchTemplateTagSpecificationRequestList' => [ 'base' => NULL, 'refs' => [ 'RequestLaunchTemplateData$TagSpecifications' => '

The tags to apply to the resources that are created during instance launch. These tags are not applied to the launch template.

', ], ], 'LaunchTemplateVersion' => [ 'base' => '

Describes a launch template version.

', 'refs' => [ 'CreateLaunchTemplateVersionResult$LaunchTemplateVersion' => '

Information about the launch template version.

', 'LaunchTemplateVersionSet$member' => NULL, ], ], 'LaunchTemplateVersionSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLaunchTemplateVersionsResult$LaunchTemplateVersions' => '

Information about the launch template versions.

', ], ], 'LaunchTemplatesMonitoring' => [ 'base' => '

Describes the monitoring for the instance.

', 'refs' => [ 'ResponseLaunchTemplateData$Monitoring' => '

The monitoring for the instance.

', ], ], 'LaunchTemplatesMonitoringRequest' => [ 'base' => '

Describes the monitoring for the instance.

', 'refs' => [ 'RequestLaunchTemplateData$Monitoring' => '

The monitoring for the instance.

', ], ], 'LicenseConfiguration' => [ 'base' => '

Describes a license configuration.

', 'refs' => [ 'LicenseList$member' => NULL, ], ], 'LicenseConfigurationRequest' => [ 'base' => '

Describes a license configuration.

', 'refs' => [ 'LicenseSpecificationListRequest$member' => NULL, ], ], 'LicenseList' => [ 'base' => NULL, 'refs' => [ 'Instance$Licenses' => '

The license configurations for the instance.

', ], ], 'LicenseSpecificationListRequest' => [ 'base' => NULL, 'refs' => [ 'RunInstancesRequest$LicenseSpecifications' => '

The license configurations.

', ], ], 'ListImagesInRecycleBinMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListImagesInRecycleBinRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'ListImagesInRecycleBinRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListImagesInRecycleBinResult' => [ 'base' => NULL, 'refs' => [], ], 'ListSnapshotsInRecycleBinMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListSnapshotsInRecycleBinRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'ListSnapshotsInRecycleBinRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListSnapshotsInRecycleBinResult' => [ 'base' => NULL, 'refs' => [], ], 'ListingState' => [ 'base' => NULL, 'refs' => [ 'InstanceCount$State' => '

The states of the listed Reserved Instances.

', ], ], 'ListingStatus' => [ 'base' => NULL, 'refs' => [ 'ReservedInstancesListing$Status' => '

The status of the Reserved Instance listing.

', ], ], 'LoadBalancerArn' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointLoadBalancerOptions$LoadBalancerArn' => '

The ARN of the load balancer.

', ], ], 'LoadBalancersConfig' => [ 'base' => '

Describes the Classic Load Balancers and target groups to attach to a Spot Fleet request.

', 'refs' => [ 'SpotFleetRequestConfigData$LoadBalancersConfig' => '

One or more Classic Load Balancers and target groups to attach to the Spot Fleet request. Spot Fleet registers the running Spot Instances with the specified Classic Load Balancers and target groups.

With Network Load Balancers, Spot Fleet cannot register instances that have the following instance types: C1, CC1, CC2, CG1, CG2, CR1, CS1, G1, G2, HI1, HS1, M1, M2, M3, and T1.

', ], ], 'LoadPermission' => [ 'base' => '

Describes a load permission.

', 'refs' => [ 'LoadPermissionList$member' => NULL, ], ], 'LoadPermissionList' => [ 'base' => NULL, 'refs' => [ 'FpgaImageAttribute$LoadPermissions' => '

The load permissions.

', ], ], 'LoadPermissionListRequest' => [ 'base' => NULL, 'refs' => [ 'LoadPermissionModifications$Add' => '

The load permissions to add.

', 'LoadPermissionModifications$Remove' => '

The load permissions to remove.

', ], ], 'LoadPermissionModifications' => [ 'base' => '

Describes modifications to the load permissions of an Amazon FPGA image (AFI).

', 'refs' => [ 'ModifyFpgaImageAttributeRequest$LoadPermission' => '

The load permission for the AFI.

', ], ], 'LoadPermissionRequest' => [ 'base' => '

Describes a load permission.

', 'refs' => [ 'LoadPermissionListRequest$member' => NULL, ], ], 'LocalGateway' => [ 'base' => '

Describes a local gateway.

', 'refs' => [ 'LocalGatewaySet$member' => NULL, ], ], 'LocalGatewayId' => [ 'base' => NULL, 'refs' => [ 'CreateLocalGatewayRouteTableRequest$LocalGatewayId' => '

The ID of the local gateway.

', 'CreateRouteRequest$LocalGatewayId' => '

The ID of the local gateway.

', 'LocalGateway$LocalGatewayId' => '

The ID of the local gateway.

', 'LocalGatewayIdSet$member' => NULL, 'LocalGatewayRouteTable$LocalGatewayId' => '

The ID of the local gateway.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'ReplaceRouteRequest$LocalGatewayId' => '

The ID of the local gateway.

', ], ], 'LocalGatewayIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewaysRequest$LocalGatewayIds' => '

The IDs of the local gateways.

', ], ], 'LocalGatewayMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeLocalGatewayRouteTableVpcAssociationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeLocalGatewayRouteTablesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeLocalGatewayVirtualInterfaceGroupsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeLocalGatewayVirtualInterfacesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeLocalGatewaysRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'LocalGatewayRoute' => [ 'base' => '

Describes a route for a local gateway route table.

', 'refs' => [ 'CreateLocalGatewayRouteResult$Route' => '

Information about the route.

', 'DeleteLocalGatewayRouteResult$Route' => '

Information about the route.

', 'LocalGatewayRouteList$member' => NULL, 'ModifyLocalGatewayRouteResult$Route' => '

Information about the local gateway route table.

', ], ], 'LocalGatewayRouteList' => [ 'base' => NULL, 'refs' => [ 'SearchLocalGatewayRoutesResult$Routes' => '

Information about the routes.

', ], ], 'LocalGatewayRouteState' => [ 'base' => NULL, 'refs' => [ 'LocalGatewayRoute$State' => '

The state of the route.

', ], ], 'LocalGatewayRouteTable' => [ 'base' => '

Describes a local gateway route table.

', 'refs' => [ 'CreateLocalGatewayRouteTableResult$LocalGatewayRouteTable' => '

Information about the local gateway route table.

', 'DeleteLocalGatewayRouteTableResult$LocalGatewayRouteTable' => '

Information about the local gateway route table.

', 'LocalGatewayRouteTableSet$member' => NULL, ], ], 'LocalGatewayRouteTableIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayRouteTablesRequest$LocalGatewayRouteTableIds' => '

The IDs of the local gateway route tables.

', ], ], 'LocalGatewayRouteTableMode' => [ 'base' => NULL, 'refs' => [ 'CreateLocalGatewayRouteTableRequest$Mode' => '

The mode of the local gateway route table.

', 'LocalGatewayRouteTable$Mode' => '

The mode of the local gateway route table.

', ], ], 'LocalGatewayRouteTableSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayRouteTablesResult$LocalGatewayRouteTables' => '

Information about the local gateway route tables.

', ], ], 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation' => [ 'base' => '

Describes an association between a local gateway route table and a virtual interface group.

', 'refs' => [ 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult$LocalGatewayRouteTableVirtualInterfaceGroupAssociation' => '

Information about the local gateway route table virtual interface group association.

', 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult$LocalGatewayRouteTableVirtualInterfaceGroupAssociation' => '

Information about the association.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationSet$member' => NULL, ], ], 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId' => [ 'base' => NULL, 'refs' => [ 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest$LocalGatewayRouteTableVirtualInterfaceGroupAssociationId' => '

The ID of the local gateway route table virtual interface group association.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation$LocalGatewayRouteTableVirtualInterfaceGroupAssociationId' => '

The ID of the association.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationIdSet$member' => NULL, ], ], 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest$LocalGatewayRouteTableVirtualInterfaceGroupAssociationIds' => '

The IDs of the associations.

', ], ], 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsResult$LocalGatewayRouteTableVirtualInterfaceGroupAssociations' => '

Information about the associations.

', ], ], 'LocalGatewayRouteTableVpcAssociation' => [ 'base' => '

Describes an association between a local gateway route table and a VPC.

', 'refs' => [ 'CreateLocalGatewayRouteTableVpcAssociationResult$LocalGatewayRouteTableVpcAssociation' => '

Information about the association.

', 'DeleteLocalGatewayRouteTableVpcAssociationResult$LocalGatewayRouteTableVpcAssociation' => '

Information about the association.

', 'LocalGatewayRouteTableVpcAssociationSet$member' => NULL, ], ], 'LocalGatewayRouteTableVpcAssociationId' => [ 'base' => NULL, 'refs' => [ 'DeleteLocalGatewayRouteTableVpcAssociationRequest$LocalGatewayRouteTableVpcAssociationId' => '

The ID of the association.

', 'LocalGatewayRouteTableVpcAssociation$LocalGatewayRouteTableVpcAssociationId' => '

The ID of the association.

', 'LocalGatewayRouteTableVpcAssociationIdSet$member' => NULL, ], ], 'LocalGatewayRouteTableVpcAssociationIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayRouteTableVpcAssociationsRequest$LocalGatewayRouteTableVpcAssociationIds' => '

The IDs of the associations.

', ], ], 'LocalGatewayRouteTableVpcAssociationSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayRouteTableVpcAssociationsResult$LocalGatewayRouteTableVpcAssociations' => '

Information about the associations.

', ], ], 'LocalGatewayRouteType' => [ 'base' => NULL, 'refs' => [ 'LocalGatewayRoute$Type' => '

The route type.

', ], ], 'LocalGatewayRoutetableId' => [ 'base' => NULL, 'refs' => [ 'CoipPool$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'CreateCoipPoolRequest$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'CreateLocalGatewayRouteRequest$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'CreateLocalGatewayRouteTableVpcAssociationRequest$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'DeleteLocalGatewayRouteRequest$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'DeleteLocalGatewayRouteTableRequest$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'LocalGatewayRoute$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'LocalGatewayRouteTableIdSet$member' => NULL, 'ModifyLocalGatewayRouteRequest$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'SearchLocalGatewayRoutesRequest$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', ], ], 'LocalGatewaySet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewaysResult$LocalGateways' => '

Information about the local gateways.

', ], ], 'LocalGatewayVirtualInterface' => [ 'base' => '

Describes a local gateway virtual interface.

', 'refs' => [ 'LocalGatewayVirtualInterfaceSet$member' => NULL, ], ], 'LocalGatewayVirtualInterfaceGroup' => [ 'base' => '

Describes a local gateway virtual interface group.

', 'refs' => [ 'LocalGatewayVirtualInterfaceGroupSet$member' => NULL, ], ], 'LocalGatewayVirtualInterfaceGroupId' => [ 'base' => NULL, 'refs' => [ 'CreateLocalGatewayRouteRequest$LocalGatewayVirtualInterfaceGroupId' => '

The ID of the virtual interface group.

', 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest$LocalGatewayVirtualInterfaceGroupId' => '

The ID of the local gateway route table virtual interface group association.

', 'LocalGatewayRoute$LocalGatewayVirtualInterfaceGroupId' => '

The ID of the virtual interface group.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation$LocalGatewayVirtualInterfaceGroupId' => '

The ID of the virtual interface group.

', 'LocalGatewayVirtualInterfaceGroup$LocalGatewayVirtualInterfaceGroupId' => '

The ID of the virtual interface group.

', 'LocalGatewayVirtualInterfaceGroupIdSet$member' => NULL, 'ModifyLocalGatewayRouteRequest$LocalGatewayVirtualInterfaceGroupId' => '

The ID of the virtual interface group.

', ], ], 'LocalGatewayVirtualInterfaceGroupIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayVirtualInterfaceGroupsRequest$LocalGatewayVirtualInterfaceGroupIds' => '

The IDs of the virtual interface groups.

', ], ], 'LocalGatewayVirtualInterfaceGroupSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayVirtualInterfaceGroupsResult$LocalGatewayVirtualInterfaceGroups' => '

The virtual interface groups.

', ], ], 'LocalGatewayVirtualInterfaceId' => [ 'base' => NULL, 'refs' => [ 'LocalGatewayVirtualInterface$LocalGatewayVirtualInterfaceId' => '

The ID of the virtual interface.

', 'LocalGatewayVirtualInterfaceIdSet$member' => NULL, ], ], 'LocalGatewayVirtualInterfaceIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayVirtualInterfacesRequest$LocalGatewayVirtualInterfaceIds' => '

The IDs of the virtual interfaces.

', 'LocalGatewayVirtualInterfaceGroup$LocalGatewayVirtualInterfaceIds' => '

The IDs of the virtual interfaces.

', ], ], 'LocalGatewayVirtualInterfaceSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayVirtualInterfacesResult$LocalGatewayVirtualInterfaces' => '

Information about the virtual interfaces.

', ], ], 'LocalStorage' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$LocalStorage' => '

Indicates whether instance types with instance store volumes are included, excluded, or required. For more information, Amazon EC2 instance store in the Amazon EC2 User Guide.

  • To include instance types with instance store volumes, specify included.

  • To require only instance types with instance store volumes, specify required.

  • To exclude instance types with instance store volumes, specify excluded.

Default: included

', 'InstanceRequirementsRequest$LocalStorage' => '

Indicates whether instance types with instance store volumes are included, excluded, or required. For more information, Amazon EC2 instance store in the Amazon EC2 User Guide.

  • To include instance types with instance store volumes, specify included.

  • To require only instance types with instance store volumes, specify required.

  • To exclude instance types with instance store volumes, specify excluded.

Default: included

', ], ], 'LocalStorageType' => [ 'base' => NULL, 'refs' => [ 'LocalStorageTypeSet$member' => NULL, ], ], 'LocalStorageTypeSet' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$LocalStorageTypes' => '

The type of local storage that is required.

  • For instance types with hard disk drive (HDD) storage, specify hdd.

  • For instance types with solid state drive (SSD) storage, specify ssd.

Default: hdd and ssd

', 'InstanceRequirementsRequest$LocalStorageTypes' => '

The type of local storage that is required.

  • For instance types with hard disk drive (HDD) storage, specify hdd.

  • For instance types with solid state drive (SSD) storage, specify ssd.

Default: hdd and ssd

', ], ], 'Location' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeOffering$Location' => '

The identifier for the location. This depends on the location type. For example, if the location type is region, the location is the Region code (for example, us-east-2.)

', ], ], 'LocationType' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTypeOfferingsRequest$LocationType' => '

The location type.

', 'InstanceTypeOffering$LocationType' => '

The location type.

', ], ], 'LockMode' => [ 'base' => NULL, 'refs' => [ 'LockSnapshotRequest$LockMode' => '

The mode in which to lock the snapshot. Specify one of the following:

  • governance - Locks the snapshot in governance mode. Snapshots locked in governance mode can\'t be deleted until one of the following conditions are met:

    • The lock duration expires.

    • The snapshot is unlocked by a user with the appropriate permissions.

    Users with the appropriate IAM permissions can unlock the snapshot, increase or decrease the lock duration, and change the lock mode to compliance at any time.

    If you lock a snapshot in governance mode, omit CoolOffPeriod.

  • compliance - Locks the snapshot in compliance mode. Snapshots locked in compliance mode can\'t be unlocked by any user. They can be deleted only after the lock duration expires. Users can\'t decrease the lock duration or change the lock mode to governance. However, users with appropriate IAM permissions can increase the lock duration at any time.

    If you lock a snapshot in compliance mode, you can optionally specify CoolOffPeriod.

', ], ], 'LockSnapshotRequest' => [ 'base' => NULL, 'refs' => [], ], 'LockSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'LockState' => [ 'base' => NULL, 'refs' => [ 'LockSnapshotResult$LockState' => '

The state of the snapshot lock. Valid states include:

  • compliance-cooloff - The snapshot has been locked in compliance mode but it is still within the cooling-off period. The snapshot can\'t be deleted, but it can be unlocked and the lock settings can be modified by users with appropriate permissions.

  • governance - The snapshot is locked in governance mode. The snapshot can\'t be deleted, but it can be unlocked and the lock settings can be modified by users with appropriate permissions.

  • compliance - The snapshot is locked in compliance mode and the cooling-off period has expired. The snapshot can\'t be unlocked or deleted. The lock duration can only be increased by users with appropriate permissions.

  • expired - The snapshot was locked in compliance or governance mode but the lock duration has expired. The snapshot is not locked and can be deleted.

', 'LockedSnapshotsInfo$LockState' => '

The state of the snapshot lock. Valid states include:

  • compliance-cooloff - The snapshot has been locked in compliance mode but it is still within the cooling-off period. The snapshot can\'t be deleted, but it can be unlocked and the lock settings can be modified by users with appropriate permissions.

  • governance - The snapshot is locked in governance mode. The snapshot can\'t be deleted, but it can be unlocked and the lock settings can be modified by users with appropriate permissions.

  • compliance - The snapshot is locked in compliance mode and the cooling-off period has expired. The snapshot can\'t be unlocked or deleted. The lock duration can only be increased by users with appropriate permissions.

  • expired - The snapshot was locked in compliance or governance mode but the lock duration has expired. The snapshot is not locked and can be deleted.

', ], ], 'LockedSnapshotsInfo' => [ 'base' => '

Information about a locked snapshot.

', 'refs' => [ 'LockedSnapshotsInfoList$member' => NULL, ], ], 'LockedSnapshotsInfoList' => [ 'base' => NULL, 'refs' => [ 'DescribeLockedSnapshotsResult$Snapshots' => '

Information about the snapshots.

', ], ], 'LogDestinationType' => [ 'base' => NULL, 'refs' => [ 'CreateFlowLogsRequest$LogDestinationType' => '

The type of destination for the flow log data.

Default: cloud-watch-logs

', 'FlowLog$LogDestinationType' => '

The type of destination for the flow log data.

', ], ], 'Long' => [ 'base' => NULL, 'refs' => [ 'CreateVpnGatewayRequest$AmazonSideAsn' => '

A private Autonomous System Number (ASN) for the Amazon side of a BGP session. If you\'re using a 16-bit ASN, it must be in the 64512 to 65534 range. If you\'re using a 32-bit ASN, it must be in the 4200000000 to 4294967294 range.

Default: 64512

', 'DeleteLaunchTemplateVersionsResponseErrorItem$VersionNumber' => '

The version number of the launch template.

', 'DeleteLaunchTemplateVersionsResponseSuccessItem$VersionNumber' => '

The version number of the launch template.

', 'DescribeReservedInstancesOfferingsRequest$MaxDuration' => '

The maximum duration (in seconds) to filter when searching for offerings.

Default: 94608000 (3 years)

', 'DescribeReservedInstancesOfferingsRequest$MinDuration' => '

The minimum duration (in seconds) to filter when searching for offerings.

Default: 2592000 (1 month)

', 'DiskImageDescription$Size' => '

The size of the disk image, in GiB.

', 'DiskImageDetail$Bytes' => '

The size of the disk image, in GiB.

', 'DiskImageVolumeDescription$Size' => '

The size of the volume, in GiB.

', 'GetManagedPrefixListEntriesRequest$TargetVersion' => '

The version of the prefix list for which to return the entries. The default is the current version.

', 'ImportInstanceVolumeDetailItem$BytesConverted' => '

The number of bytes converted so far.

', 'ImportVolumeTaskDetails$BytesConverted' => '

The number of bytes converted so far.

', 'LaunchTemplate$DefaultVersionNumber' => '

The version number of the default version of the launch template.

', 'LaunchTemplate$LatestVersionNumber' => '

The version number of the latest version of the launch template.

', 'LaunchTemplateVersion$VersionNumber' => '

The version number.

', 'ManagedPrefixList$Version' => '

The version of the prefix list.

', 'ModifyManagedPrefixListRequest$CurrentVersion' => '

The current version of the prefix list.

', 'ModifyTransitGatewayOptions$AmazonSideAsn' => '

A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534 for 16-bit ASNs and 4200000000 to 4294967294 for 32-bit ASNs.

The modify ASN operation is not allowed on a transit gateway with active BGP sessions. You must first delete all transit gateway attachments that have BGP configured prior to modifying the ASN on the transit gateway.

', 'PriceSchedule$Term' => '

The number of months remaining in the reservation. For example, 2 is the second to the last month before the capacity reservation expires.

', 'PriceScheduleSpecification$Term' => '

The number of months remaining in the reservation. For example, 2 is the second to the last month before the capacity reservation expires.

', 'ReservedInstances$Duration' => '

The duration of the Reserved Instance, in seconds.

', 'ReservedInstancesOffering$Duration' => '

The duration of the Reserved Instance, in seconds.

', 'RestoreManagedPrefixListVersionRequest$PreviousVersion' => '

The version to restore.

', 'RestoreManagedPrefixListVersionRequest$CurrentVersion' => '

The current version number for the prefix list.

', 'TransitGatewayAttachmentBgpConfiguration$TransitGatewayAsn' => '

The transit gateway Autonomous System Number (ASN).

', 'TransitGatewayAttachmentBgpConfiguration$PeerAsn' => '

The peer Autonomous System Number (ASN).

', 'TransitGatewayConnectRequestBgpOptions$PeerAsn' => '

The peer Autonomous System Number (ASN).

', 'TransitGatewayOptions$AmazonSideAsn' => '

A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534 for 16-bit ASNs and 4200000000 to 4294967294 for 32-bit ASNs.

', 'TransitGatewayRequestOptions$AmazonSideAsn' => '

A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534 for 16-bit ASNs and 4200000000 to 4294967294 for 32-bit ASNs. The default is 64512.

', 'VolumeDetail$Size' => '

The size of the volume, in GiB.

', 'VolumeModification$Progress' => '

The modification progress, from 0 to 100 percent complete.

', 'VpnGateway$AmazonSideAsn' => '

The private Autonomous System Number (ASN) for the Amazon side of a BGP session.

', ], ], 'MaintenanceDetails' => [ 'base' => '

Details for Site-to-Site VPN tunnel endpoint maintenance events.

', 'refs' => [ 'GetVpnTunnelReplacementStatusResult$MaintenanceDetails' => '

Get details of pending tunnel endpoint maintenance.

', ], ], 'ManagedPrefixList' => [ 'base' => '

Describes a managed prefix list.

', 'refs' => [ 'CreateManagedPrefixListResult$PrefixList' => '

Information about the prefix list.

', 'DeleteManagedPrefixListResult$PrefixList' => '

Information about the prefix list.

', 'ManagedPrefixListSet$member' => NULL, 'ModifyManagedPrefixListResult$PrefixList' => '

Information about the prefix list.

', 'RestoreManagedPrefixListVersionResult$PrefixList' => '

Information about the prefix list.

', ], ], 'ManagedPrefixListSet' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedPrefixListsResult$PrefixLists' => '

Information about the prefix lists.

', ], ], 'MarketType' => [ 'base' => NULL, 'refs' => [ 'InstanceMarketOptionsRequest$MarketType' => '

The market type.

', 'LaunchTemplateInstanceMarketOptions$MarketType' => '

The market type.

', 'LaunchTemplateInstanceMarketOptionsRequest$MarketType' => '

The market type.

', ], ], 'MaxIpv4AddrPerInterface' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$Ipv4AddressesPerInterface' => '

The maximum number of IPv4 addresses per network interface.

', ], ], 'MaxIpv6AddrPerInterface' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$Ipv6AddressesPerInterface' => '

The maximum number of IPv6 addresses per network interface.

', ], ], 'MaxNetworkInterfaces' => [ 'base' => NULL, 'refs' => [ 'NetworkCardInfo$MaximumNetworkInterfaces' => '

The maximum number of network interfaces for the network card.

', 'NetworkInfo$MaximumNetworkInterfaces' => '

The maximum number of network interfaces for the instance type.

', ], ], 'MaxResults' => [ 'base' => NULL, 'refs' => [ 'SearchLocalGatewayRoutesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'MaxResultsParam' => [ 'base' => NULL, 'refs' => [ 'DescribeAwsNetworkPerformanceMetricSubscriptionsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'MaximumBandwidthInMbps' => [ 'base' => NULL, 'refs' => [ 'EbsOptimizedInfo$MaximumBandwidthInMbps' => '

The maximum bandwidth performance for an EBS-optimized instance type, in Mbps.

', ], ], 'MaximumEfaInterfaces' => [ 'base' => NULL, 'refs' => [ 'EfaInfo$MaximumEfaInterfaces' => '

The maximum number of Elastic Fabric Adapters for the instance type.

', ], ], 'MaximumIops' => [ 'base' => NULL, 'refs' => [ 'EbsOptimizedInfo$MaximumIops' => '

The maximum input/output storage operations per second for an EBS-optimized instance type.

', ], ], 'MaximumNetworkCards' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$MaximumNetworkCards' => '

The maximum number of physical network cards that can be allocated to the instance.

', ], ], 'MaximumThroughputInMBps' => [ 'base' => NULL, 'refs' => [ 'EbsOptimizedInfo$MaximumThroughputInMBps' => '

The maximum throughput performance for an EBS-optimized instance type, in MB/s.

', ], ], 'MembershipType' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayMulticastGroup$MemberType' => '

The member type (for example, static).

', 'TransitGatewayMulticastGroup$SourceType' => '

The source type.

', ], ], 'MemoryGiBPerVCpu' => [ 'base' => '

The minimum and maximum amount of memory per vCPU, in GiB.

', 'refs' => [ 'InstanceRequirements$MemoryGiBPerVCpu' => '

The minimum and maximum amount of memory per vCPU, in GiB.

Default: No minimum or maximum limits

', ], ], 'MemoryGiBPerVCpuRequest' => [ 'base' => '

The minimum and maximum amount of memory per vCPU, in GiB.

', 'refs' => [ 'InstanceRequirementsRequest$MemoryGiBPerVCpu' => '

The minimum and maximum amount of memory per vCPU, in GiB.

Default: No minimum or maximum limits

', ], ], 'MemoryInfo' => [ 'base' => '

Describes the memory for the instance type.

', 'refs' => [ 'InstanceTypeInfo$MemoryInfo' => '

Describes the memory for the instance type.

', ], ], 'MemoryMiB' => [ 'base' => '

The minimum and maximum amount of memory, in MiB.

', 'refs' => [ 'InstanceRequirements$MemoryMiB' => '

The minimum and maximum amount of memory, in MiB.

', ], ], 'MemoryMiBRequest' => [ 'base' => '

The minimum and maximum amount of memory, in MiB.

', 'refs' => [ 'InstanceRequirementsRequest$MemoryMiB' => '

The minimum and maximum amount of memory, in MiB.

', ], ], 'MemorySize' => [ 'base' => NULL, 'refs' => [ 'MemoryInfo$SizeInMiB' => '

The size of the memory, in MiB.

', ], ], 'MetricPoint' => [ 'base' => '

Indicates whether the network was healthy or degraded at a particular point. The value is aggregated from the startDate to the endDate. Currently only five_minutes is supported.

', 'refs' => [ 'MetricPoints$member' => NULL, ], ], 'MetricPoints' => [ 'base' => NULL, 'refs' => [ 'DataResponse$MetricPoints' => '

A list of MetricPoint objects.

', ], ], 'MetricType' => [ 'base' => NULL, 'refs' => [ 'DataQuery$Metric' => '

The metric, aggregation-latency, indicating that network latency is aggregated for the query. This is the only supported metric.

', 'DataResponse$Metric' => '

The metric used for the network performance request. Only aggregate-latency is supported, which shows network latency during a specified period.

', 'DisableAwsNetworkPerformanceMetricSubscriptionRequest$Metric' => '

The metric used for the disabled subscription.

', 'EnableAwsNetworkPerformanceMetricSubscriptionRequest$Metric' => '

The metric used for the enabled subscription.

', 'Subscription$Metric' => '

The metric used for the subscription.

', ], ], 'MillisecondDateTime' => [ 'base' => NULL, 'refs' => [ 'AddressTransfer$TransferOfferExpirationTimestamp' => '

The timestamp when the Elastic IP address transfer expired. When the source account starts the transfer, the transfer account has seven hours to allocate the Elastic IP address to complete the transfer, or the Elastic IP address will return to its original owner.

', 'AddressTransfer$TransferOfferAcceptedTimestamp' => '

The timestamp when the Elastic IP address transfer was accepted.

', 'AthenaIntegration$PartitionStartDate' => '

The start date for the partition.

', 'AthenaIntegration$PartitionEndDate' => '

The end date for the partition.

', 'CapacityBlockOffering$StartDate' => '

The start date of the Capacity Block offering.

', 'CapacityBlockOffering$EndDate' => '

The end date of the Capacity Block offering.

', 'CapacityReservation$StartDate' => '

The date and time at which the Capacity Reservation was started.

', 'CapacityReservationFleet$EndDate' => '

The date and time at which the Capacity Reservation Fleet expires.

', 'CapacityReservationFleet$CreateTime' => '

The date and time at which the Capacity Reservation Fleet was created.

', 'CreateCapacityReservationFleetRequest$EndDate' => '

The date and time at which the Capacity Reservation Fleet expires. When the Capacity Reservation Fleet expires, its state changes to expired and all of the Capacity Reservations in the Fleet expire.

The Capacity Reservation Fleet expires within an hour after the specified time. For example, if you specify 5/31/2019, 13:30:55, the Capacity Reservation Fleet is guaranteed to expire between 13:30:55 and 14:30:55 on 5/31/2019.

', 'CreateCapacityReservationFleetResult$CreateTime' => '

The date and time at which the Capacity Reservation Fleet was created.

', 'CreateCapacityReservationFleetResult$EndDate' => '

The date and time at which the Capacity Reservation Fleet expires.

', 'DescribeCapacityBlockOfferingsRequest$StartDateRange' => '

The earliest start date for the Capacity Block offering.

', 'DescribeCapacityBlockOfferingsRequest$EndDateRange' => '

The latest end date for the Capacity Block offering.

', 'DescribeFastLaunchImagesSuccessItem$StateTransitionTime' => '

The time that Windows fast launch for the AMI changed to the current state.

', 'DescribeFastSnapshotRestoreSuccessItem$EnablingTime' => '

The time at which fast snapshot restores entered the enabling state.

', 'DescribeFastSnapshotRestoreSuccessItem$OptimizingTime' => '

The time at which fast snapshot restores entered the optimizing state.

', 'DescribeFastSnapshotRestoreSuccessItem$EnabledTime' => '

The time at which fast snapshot restores entered the enabled state.

', 'DescribeFastSnapshotRestoreSuccessItem$DisablingTime' => '

The time at which fast snapshot restores entered the disabling state.

', 'DescribeFastSnapshotRestoreSuccessItem$DisabledTime' => '

The time at which fast snapshot restores entered the disabled state.

', 'DescribeNetworkInsightsAccessScopeAnalysesRequest$AnalysisStartTimeBegin' => '

Filters the results based on the start time. The analysis must have started on or after this time.

', 'DescribeNetworkInsightsAccessScopeAnalysesRequest$AnalysisStartTimeEnd' => '

Filters the results based on the start time. The analysis must have started on or before this time.

', 'DescribeNetworkInsightsAnalysesRequest$AnalysisStartTime' => '

The time when the network insights analyses started.

', 'DescribeNetworkInsightsAnalysesRequest$AnalysisEndTime' => '

The time when the network insights analyses ended.

', 'DisableFastLaunchResult$StateTransitionTime' => '

The time that the state changed for Windows fast launch for the Windows AMI.

', 'DisableFastSnapshotRestoreSuccessItem$EnablingTime' => '

The time at which fast snapshot restores entered the enabling state.

', 'DisableFastSnapshotRestoreSuccessItem$OptimizingTime' => '

The time at which fast snapshot restores entered the optimizing state.

', 'DisableFastSnapshotRestoreSuccessItem$EnabledTime' => '

The time at which fast snapshot restores entered the enabled state.

', 'DisableFastSnapshotRestoreSuccessItem$DisablingTime' => '

The time at which fast snapshot restores entered the disabling state.

', 'DisableFastSnapshotRestoreSuccessItem$DisabledTime' => '

The time at which fast snapshot restores entered the disabled state.

', 'Ec2InstanceConnectEndpoint$CreatedAt' => '

The date and time that the EC2 Instance Connect Endpoint was created.

', 'EnableFastLaunchResult$StateTransitionTime' => '

The time that the state changed for Windows fast launch for the AMI.

', 'EnableFastSnapshotRestoreSuccessItem$EnablingTime' => '

The time at which fast snapshot restores entered the enabling state.

', 'EnableFastSnapshotRestoreSuccessItem$OptimizingTime' => '

The time at which fast snapshot restores entered the optimizing state.

', 'EnableFastSnapshotRestoreSuccessItem$EnabledTime' => '

The time at which fast snapshot restores entered the enabled state.

', 'EnableFastSnapshotRestoreSuccessItem$DisablingTime' => '

The time at which fast snapshot restores entered the disabling state.

', 'EnableFastSnapshotRestoreSuccessItem$DisabledTime' => '

The time at which fast snapshot restores entered the disabled state.

', 'EnableImageDeprecationRequest$DeprecateAt' => '

The date and time to deprecate the AMI, in UTC, in the following format: YYYY-MM-DDTHH:MM:SSZ. If you specify a value for seconds, Amazon EC2 rounds the seconds to the nearest minute.

You can’t specify a date in the past. The upper limit for DeprecateAt is 10 years from now, except for public AMIs, where the upper limit is 2 years from the creation date.

', 'FleetCapacityReservation$CreateDate' => '

The date and time at which the Capacity Reservation was created.

', 'FlowLog$CreationTime' => '

The date and time the flow log was created.

', 'GetAwsNetworkPerformanceDataRequest$StartTime' => '

The starting time for the performance data request. The starting time must be formatted as yyyy-mm-ddThh:mm:ss. For example, 2022-06-10T12:00:00.000Z.

', 'GetAwsNetworkPerformanceDataRequest$EndTime' => '

The ending time for the performance data request. The end time must be formatted as yyyy-mm-ddThh:mm:ss. For example, 2022-06-12T12:00:00.000Z.

', 'GetIpamAddressHistoryRequest$StartTime' => '

The start of the time period for which you are looking for history. If you omit this option, it will default to the value of EndTime.

', 'GetIpamAddressHistoryRequest$EndTime' => '

The end of the time period for which you are looking for history. If you omit this option, it will default to the current time.

', 'GetIpamDiscoveredPublicAddressesResult$OldestSampleTime' => '

The oldest successful resource discovery time.

', 'ImageRecycleBinInfo$RecycleBinEnterTime' => '

The date and time when the AMI entered the Recycle Bin.

', 'ImageRecycleBinInfo$RecycleBinExitTime' => '

The date and time when the AMI is to be permanently deleted from the Recycle Bin.

', 'Instance$UsageOperationUpdateTime' => '

The time that the usage operation was last updated.

', 'IpamAddressHistoryRecord$SampledStartTime' => '

Sampled start time of the resource-to-CIDR association within the IPAM scope. Changes are picked up in periodic snapshots, so the start time may have occurred before this specific time.

', 'IpamAddressHistoryRecord$SampledEndTime' => '

Sampled end time of the resource-to-CIDR association within the IPAM scope. Changes are picked up in periodic snapshots, so the end time may have occurred before this specific time.

', 'IpamDiscoveredAccount$LastAttemptedDiscoveryTime' => '

The last attempted resource discovery time.

', 'IpamDiscoveredAccount$LastSuccessfulDiscoveryTime' => '

The last successful resource discovery time.

', 'IpamDiscoveredPublicAddress$SampleTime' => '

The last successful resource discovery time.

', 'IpamDiscoveredResourceCidr$SampleTime' => '

The last successful resource discovery time.

', 'KeyPairInfo$CreateTime' => '

If you used Amazon EC2 to create the key pair, this is the date and time when the key was created, in ISO 8601 date-time format, in the UTC time zone.

If you imported an existing key pair to Amazon EC2, this is the date and time the key was imported, in ISO 8601 date-time format, in the UTC time zone.

', 'LockSnapshotRequest$ExpirationDate' => '

The date and time at which the snapshot lock is to automatically expire, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

You must specify either this parameter or LockDuration, but not both.

', 'LockSnapshotResult$CoolOffPeriodExpiresOn' => '

The date and time at which the compliance mode cooling-off period expires, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

', 'LockSnapshotResult$LockCreatedOn' => '

The date and time at which the snapshot was locked, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

', 'LockSnapshotResult$LockExpiresOn' => '

The date and time at which the lock will expire, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

', 'LockSnapshotResult$LockDurationStartTime' => '

The date and time at which the lock duration started, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

', 'LockedSnapshotsInfo$CoolOffPeriodExpiresOn' => '

The date and time at which the compliance mode cooling-off period expires, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

', 'LockedSnapshotsInfo$LockCreatedOn' => '

The date and time at which the snapshot was locked, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

', 'LockedSnapshotsInfo$LockDurationStartTime' => '

The date and time at which the lock duration started, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

If you lock a snapshot that is in the pending state, the lock duration starts only once the snapshot enters the completed state.

', 'LockedSnapshotsInfo$LockExpiresOn' => '

The date and time at which the lock will expire, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

', 'MaintenanceDetails$MaintenanceAutoAppliedAfter' => '

The timestamp after which Amazon Web Services will automatically apply maintenance.

', 'MaintenanceDetails$LastMaintenanceApplied' => '

Timestamp of last applied maintenance.

', 'MetricPoint$StartDate' => '

The start date for the metric point. The starting date for the metric point. The starting time must be formatted as yyyy-mm-ddThh:mm:ss. For example, 2022-06-10T12:00:00.000Z.

', 'MetricPoint$EndDate' => '

The end date for the metric point. The ending time must be formatted as yyyy-mm-ddThh:mm:ss. For example, 2022-06-12T12:00:00.000Z.

', 'ModifyCapacityReservationFleetRequest$EndDate' => '

The date and time at which the Capacity Reservation Fleet expires. When the Capacity Reservation Fleet expires, its state changes to expired and all of the Capacity Reservations in the Fleet expire.

The Capacity Reservation Fleet expires within an hour after the specified time. For example, if you specify 5/31/2019, 13:30:55, the Capacity Reservation Fleet is guaranteed to expire between 13:30:55 and 14:30:55 on 5/31/2019.

You can\'t specify EndDate and RemoveEndDate in the same request.

', 'ModifySnapshotTierResult$TieringStartTime' => '

The date and time when the archive process was started.

', 'NetworkInsightsAccessScope$CreatedDate' => '

The creation date.

', 'NetworkInsightsAccessScope$UpdatedDate' => '

The last updated date.

', 'NetworkInsightsAccessScopeAnalysis$StartDate' => '

The analysis start date.

', 'NetworkInsightsAccessScopeAnalysis$EndDate' => '

The analysis end date.

', 'NetworkInsightsAnalysis$StartDate' => '

The time the analysis started.

', 'NetworkInsightsPath$CreatedDate' => '

The time stamp when the path was created.

', 'RestoreSnapshotFromRecycleBinResult$StartTime' => '

The time stamp when the snapshot was initiated.

', 'RestoreSnapshotTierResult$RestoreStartTime' => '

The date and time when the snapshot restore process started.

', 'Snapshot$RestoreExpiryTime' => '

Only for archived snapshots that are temporarily restored. Indicates the date and time when a temporarily restored snapshot will be automatically re-archived.

', 'SnapshotInfo$StartTime' => '

Time this snapshot was started. This is the same for all snapshots initiated by the same request.

', 'SnapshotRecycleBinInfo$RecycleBinEnterTime' => '

The date and time when the snaphsot entered the Recycle Bin.

', 'SnapshotRecycleBinInfo$RecycleBinExitTime' => '

The date and time when the snapshot is to be permanently deleted from the Recycle Bin.

', 'SnapshotTierStatus$LastTieringStartTime' => '

The date and time when the last archive or restore process was started.

', 'SnapshotTierStatus$ArchivalCompleteTime' => '

The date and time when the last archive process was completed.

', 'SnapshotTierStatus$RestoreExpiryTime' => '

Only for archived snapshots that are temporarily restored. Indicates the date and time when a temporarily restored snapshot will be automatically re-archived.

', 'SpotFleetRequestConfig$CreateTime' => '

The creation date and time of the request.

', 'StoreImageTaskResult$TaskStartTime' => '

The time the task started.

', 'VolumeStatusEvent$NotAfter' => '

The latest end time of the event.

', 'VolumeStatusEvent$NotBefore' => '

The earliest start time of the event.

', 'VpcEndpoint$CreationTimestamp' => '

The date and time that the endpoint was created.

', 'VpcEndpointConnection$CreationTimestamp' => '

The date and time that the VPC endpoint was created.

', ], ], 'ModifyAddressAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyAddressAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyAvailabilityZoneGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyAvailabilityZoneGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyAvailabilityZoneOptInStatus' => [ 'base' => NULL, 'refs' => [ 'ModifyAvailabilityZoneGroupRequest$OptInStatus' => '

Indicates whether you are opted in to the Local Zone group or Wavelength Zone group. The only valid value is opted-in. You must contact Amazon Web Services Support to opt out of a Local Zone or Wavelength Zone group.

', ], ], 'ModifyCapacityReservationFleetRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyCapacityReservationFleetResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyCapacityReservationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyCapacityReservationResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyClientVpnEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyClientVpnEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDefaultCreditSpecificationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDefaultCreditSpecificationResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyEbsDefaultKmsKeyIdRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyEbsDefaultKmsKeyIdResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyFleetRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyFleetResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyFpgaImageAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyFpgaImageAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyHostsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyHostsResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIdFormatRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIdentityIdFormatRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyImageAttributeRequest' => [ 'base' => '

Contains the parameters for ModifyImageAttribute.

', 'refs' => [], ], 'ModifyInstanceAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceCapacityReservationAttributesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceCapacityReservationAttributesResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceCreditSpecificationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceCreditSpecificationResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceEventStartTimeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceEventStartTimeResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceEventWindowRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceEventWindowResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceMaintenanceOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceMaintenanceOptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceMetadataOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceMetadataOptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstancePlacementRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstancePlacementResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamPoolRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamPoolResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamResourceCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamResourceCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamResourceDiscoveryRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamResourceDiscoveryResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamScopeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamScopeResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyLaunchTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyLaunchTemplateResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyLocalGatewayRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyLocalGatewayRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyManagedPrefixListRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyManagedPrefixListResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyNetworkInterfaceAttributeRequest' => [ 'base' => '

Contains the parameters for ModifyNetworkInterfaceAttribute.

', 'refs' => [], ], 'ModifyPrivateDnsNameOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyPrivateDnsNameOptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyReservedInstancesRequest' => [ 'base' => '

Contains the parameters for ModifyReservedInstances.

', 'refs' => [], ], 'ModifyReservedInstancesResult' => [ 'base' => '

Contains the output of ModifyReservedInstances.

', 'refs' => [], ], 'ModifySecurityGroupRulesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifySecurityGroupRulesResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifySnapshotAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifySnapshotTierRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifySnapshotTierResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifySpotFleetRequestRequest' => [ 'base' => '

Contains the parameters for ModifySpotFleetRequest.

', 'refs' => [], ], 'ModifySpotFleetRequestResponse' => [ 'base' => '

Contains the output of ModifySpotFleetRequest.

', 'refs' => [], ], 'ModifySubnetAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTrafficMirrorFilterNetworkServicesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTrafficMirrorFilterNetworkServicesResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTrafficMirrorFilterRuleRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTrafficMirrorFilterRuleResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTrafficMirrorSessionRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTrafficMirrorSessionResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTransitGatewayOptions' => [ 'base' => '

The transit gateway options.

', 'refs' => [ 'ModifyTransitGatewayRequest$Options' => '

The options to modify.

', ], ], 'ModifyTransitGatewayPrefixListReferenceRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTransitGatewayPrefixListReferenceResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTransitGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTransitGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTransitGatewayVpcAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTransitGatewayVpcAttachmentRequestOptions' => [ 'base' => '

Describes the options for a VPC attachment.

', 'refs' => [ 'ModifyTransitGatewayVpcAttachmentRequest$Options' => '

The new VPC attachment options.

', ], ], 'ModifyTransitGatewayVpcAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessEndpointEniOptions' => [ 'base' => '

Describes the options when modifying a Verified Access endpoint with the network-interface type.

', 'refs' => [ 'ModifyVerifiedAccessEndpointRequest$NetworkInterfaceOptions' => '

The network interface options.

', ], ], 'ModifyVerifiedAccessEndpointLoadBalancerOptions' => [ 'base' => '

Describes a load balancer when creating an Amazon Web Services Verified Access endpoint using the load-balancer type.

', 'refs' => [ 'ModifyVerifiedAccessEndpointRequest$LoadBalancerOptions' => '

The load balancer details if creating the Verified Access endpoint as load-balancertype.

', ], ], 'ModifyVerifiedAccessEndpointPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessEndpointPolicyResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessEndpointSubnetIdList' => [ 'base' => NULL, 'refs' => [ 'ModifyVerifiedAccessEndpointLoadBalancerOptions$SubnetIds' => '

The IDs of the subnets.

', ], ], 'ModifyVerifiedAccessGroupPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessGroupPolicyResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessInstanceLoggingConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessInstanceLoggingConfigurationResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessInstanceRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessTrustProviderDeviceOptions' => [ 'base' => '

Modifies the configuration of the specified device-based Amazon Web Services Verified Access trust provider.

', 'refs' => [ 'ModifyVerifiedAccessTrustProviderRequest$DeviceOptions' => '

The options for a device-based trust provider. This parameter is required when the provider type is device.

', ], ], 'ModifyVerifiedAccessTrustProviderOidcOptions' => [ 'base' => '

Options for an OpenID Connect-compatible user-identity trust provider.

', 'refs' => [ 'ModifyVerifiedAccessTrustProviderRequest$OidcOptions' => '

The options for an OpenID Connect-compatible user-identity trust provider.

', ], ], 'ModifyVerifiedAccessTrustProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessTrustProviderResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVolumeAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVolumeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVolumeResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointConnectionNotificationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointConnectionNotificationResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointServiceConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointServiceConfigurationResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointServicePayerResponsibilityRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointServicePayerResponsibilityResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointServicePermissionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointServicePermissionsResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcPeeringConnectionOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcPeeringConnectionOptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcTenancyRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcTenancyResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnConnectionOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnConnectionOptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnConnectionRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnConnectionResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnTunnelCertificateRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnTunnelCertificateResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnTunnelOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnTunnelOptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnTunnelOptionsSpecification' => [ 'base' => '

The Amazon Web Services Site-to-Site VPN tunnel options to modify.

', 'refs' => [ 'ModifyVpnTunnelOptionsRequest$TunnelOptions' => '

The tunnel options to modify.

', ], ], 'MonitorInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'MonitorInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'Monitoring' => [ 'base' => '

Describes the monitoring of an instance.

', 'refs' => [ 'Instance$Monitoring' => '

The monitoring for the instance.

', 'InstanceMonitoring$Monitoring' => '

The monitoring for the instance.

', ], ], 'MonitoringState' => [ 'base' => NULL, 'refs' => [ 'Monitoring$State' => '

Indicates whether detailed monitoring is enabled. Otherwise, basic monitoring is enabled.

', ], ], 'MoveAddressToVpcRequest' => [ 'base' => NULL, 'refs' => [], ], 'MoveAddressToVpcResult' => [ 'base' => NULL, 'refs' => [], ], 'MoveByoipCidrToIpamRequest' => [ 'base' => NULL, 'refs' => [], ], 'MoveByoipCidrToIpamResult' => [ 'base' => NULL, 'refs' => [], ], 'MoveStatus' => [ 'base' => NULL, 'refs' => [ 'MovingAddressStatus$MoveStatus' => '

The status of the Elastic IP address that\'s being moved or restored.

', ], ], 'MovingAddressStatus' => [ 'base' => '

This action is deprecated.

Describes the status of a moving Elastic IP address.

', 'refs' => [ 'MovingAddressStatusSet$member' => NULL, ], ], 'MovingAddressStatusSet' => [ 'base' => NULL, 'refs' => [ 'DescribeMovingAddressesResult$MovingAddressStatuses' => '

The status for each Elastic IP address.

', ], ], 'MulticastSupportValue' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayOptions$MulticastSupport' => '

Indicates whether multicast is enabled on the transit gateway

', 'TransitGatewayRequestOptions$MulticastSupport' => '

Indicates whether multicast is enabled on the transit gateway

', ], ], 'NatGateway' => [ 'base' => '

Describes a NAT gateway.

', 'refs' => [ 'CreateNatGatewayResult$NatGateway' => '

Information about the NAT gateway.

', 'NatGatewayList$member' => NULL, ], ], 'NatGatewayAddress' => [ 'base' => '

Describes the IP addresses and network interface associated with a NAT gateway.

', 'refs' => [ 'NatGatewayAddressList$member' => NULL, ], ], 'NatGatewayAddressList' => [ 'base' => NULL, 'refs' => [ 'AssignPrivateNatGatewayAddressResult$NatGatewayAddresses' => '

NAT gateway IP addresses.

', 'AssociateNatGatewayAddressResult$NatGatewayAddresses' => '

The IP addresses.

', 'DisassociateNatGatewayAddressResult$NatGatewayAddresses' => '

Information about the NAT gateway IP addresses.

', 'NatGateway$NatGatewayAddresses' => '

Information about the IP addresses and network interface associated with the NAT gateway.

', 'UnassignPrivateNatGatewayAddressResult$NatGatewayAddresses' => '

Information about the NAT gateway IP addresses.

', ], ], 'NatGatewayAddressStatus' => [ 'base' => NULL, 'refs' => [ 'NatGatewayAddress$Status' => '

The address status.

', ], ], 'NatGatewayId' => [ 'base' => NULL, 'refs' => [ 'AssignPrivateNatGatewayAddressRequest$NatGatewayId' => '

The ID of the NAT gateway.

', 'AssignPrivateNatGatewayAddressResult$NatGatewayId' => '

The ID of the NAT gateway.

', 'AssociateNatGatewayAddressRequest$NatGatewayId' => '

The ID of the NAT gateway.

', 'AssociateNatGatewayAddressResult$NatGatewayId' => '

The ID of the NAT gateway.

', 'CreateRouteRequest$NatGatewayId' => '

[IPv4 traffic only] The ID of a NAT gateway.

', 'DeleteNatGatewayRequest$NatGatewayId' => '

The ID of the NAT gateway.

', 'DisassociateNatGatewayAddressRequest$NatGatewayId' => '

The ID of the NAT gateway.

', 'DisassociateNatGatewayAddressResult$NatGatewayId' => '

The ID of the NAT gateway.

', 'NatGatewayIdStringList$member' => NULL, 'ReplaceRouteRequest$NatGatewayId' => '

[IPv4 traffic only] The ID of a NAT gateway.

', 'UnassignPrivateNatGatewayAddressRequest$NatGatewayId' => '

The ID of the NAT gateway.

', 'UnassignPrivateNatGatewayAddressResult$NatGatewayId' => '

The ID of the NAT gateway.

', ], ], 'NatGatewayIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeNatGatewaysRequest$NatGatewayIds' => '

The IDs of the NAT gateways.

', ], ], 'NatGatewayList' => [ 'base' => NULL, 'refs' => [ 'DescribeNatGatewaysResult$NatGateways' => '

Information about the NAT gateways.

', ], ], 'NatGatewayState' => [ 'base' => NULL, 'refs' => [ 'NatGateway$State' => '

The state of the NAT gateway.

  • pending: The NAT gateway is being created and is not ready to process traffic.

  • failed: The NAT gateway could not be created. Check the failureCode and failureMessage fields for the reason.

  • available: The NAT gateway is able to process traffic. This status remains until you delete the NAT gateway, and does not indicate the health of the NAT gateway.

  • deleting: The NAT gateway is in the process of being terminated and may still be processing traffic.

  • deleted: The NAT gateway has been terminated and is no longer processing traffic.

', ], ], 'NetmaskLength' => [ 'base' => NULL, 'refs' => [ 'AssociateSubnetCidrBlockRequest$Ipv6NetmaskLength' => '

An IPv6 netmask length.

', 'AssociateVpcCidrBlockRequest$Ipv4NetmaskLength' => '

The netmask length of the IPv4 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'AssociateVpcCidrBlockRequest$Ipv6NetmaskLength' => '

The netmask length of the IPv6 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'CreateSubnetRequest$Ipv4NetmaskLength' => '

An IPv4 netmask length for the subnet.

', 'CreateSubnetRequest$Ipv6NetmaskLength' => '

An IPv6 netmask length for the subnet.

', 'CreateVpcRequest$Ipv4NetmaskLength' => '

The netmask length of the IPv4 CIDR you want to allocate to this VPC from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'CreateVpcRequest$Ipv6NetmaskLength' => '

The netmask length of the IPv6 CIDR you want to allocate to this VPC from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see What is IPAM? in the Amazon VPC IPAM User Guide.

', ], ], 'NetworkAcl' => [ 'base' => '

Describes a network ACL.

', 'refs' => [ 'CreateNetworkAclResult$NetworkAcl' => '

Information about the network ACL.

', 'NetworkAclList$member' => NULL, ], ], 'NetworkAclAssociation' => [ 'base' => '

Describes an association between a network ACL and a subnet.

', 'refs' => [ 'NetworkAclAssociationList$member' => NULL, ], ], 'NetworkAclAssociationId' => [ 'base' => NULL, 'refs' => [ 'ReplaceNetworkAclAssociationRequest$AssociationId' => '

The ID of the current association between the original network ACL and the subnet.

', ], ], 'NetworkAclAssociationList' => [ 'base' => NULL, 'refs' => [ 'NetworkAcl$Associations' => '

Any associations between the network ACL and one or more subnets

', ], ], 'NetworkAclEntry' => [ 'base' => '

Describes an entry in a network ACL.

', 'refs' => [ 'NetworkAclEntryList$member' => NULL, ], ], 'NetworkAclEntryList' => [ 'base' => NULL, 'refs' => [ 'NetworkAcl$Entries' => '

The entries (rules) in the network ACL.

', ], ], 'NetworkAclId' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkAclEntryRequest$NetworkAclId' => '

The ID of the network ACL.

', 'DeleteNetworkAclEntryRequest$NetworkAclId' => '

The ID of the network ACL.

', 'DeleteNetworkAclRequest$NetworkAclId' => '

The ID of the network ACL.

', 'NetworkAclIdStringList$member' => NULL, 'ReplaceNetworkAclAssociationRequest$NetworkAclId' => '

The ID of the new network ACL to associate with the subnet.

', 'ReplaceNetworkAclEntryRequest$NetworkAclId' => '

The ID of the ACL.

', ], ], 'NetworkAclIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkAclsRequest$NetworkAclIds' => '

The IDs of the network ACLs.

Default: Describes all your network ACLs.

', ], ], 'NetworkAclList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkAclsResult$NetworkAcls' => '

Information about one or more network ACLs.

', ], ], 'NetworkBandwidthGbps' => [ 'base' => '

The minimum and maximum amount of network bandwidth, in gigabits per second (Gbps).

Setting the minimum bandwidth does not guarantee that your instance will achieve the minimum bandwidth. Amazon EC2 will identify instance types that support the specified minimum bandwidth, but the actual bandwidth of your instance might go below the specified minimum at times. For more information, see Available instance bandwidth in the Amazon EC2 User Guide.

', 'refs' => [ 'InstanceRequirements$NetworkBandwidthGbps' => '

The minimum and maximum amount of network bandwidth, in gigabits per second (Gbps).

Default: No minimum or maximum limits

', ], ], 'NetworkBandwidthGbpsRequest' => [ 'base' => '

The minimum and maximum amount of network bandwidth, in gigabits per second (Gbps).

Setting the minimum bandwidth does not guarantee that your instance will achieve the minimum bandwidth. Amazon EC2 will identify instance types that support the specified minimum bandwidth, but the actual bandwidth of your instance might go below the specified minimum at times. For more information, see Available instance bandwidth in the Amazon EC2 User Guide.

', 'refs' => [ 'InstanceRequirementsRequest$NetworkBandwidthGbps' => '

The minimum and maximum amount of baseline network bandwidth, in gigabits per second (Gbps). For more information, see Amazon EC2 instance network bandwidth in the Amazon EC2 User Guide.

Default: No minimum or maximum limits

', ], ], 'NetworkCardIndex' => [ 'base' => NULL, 'refs' => [ 'NetworkCardInfo$NetworkCardIndex' => '

The index of the network card.

', ], ], 'NetworkCardInfo' => [ 'base' => '

Describes the network card support of the instance type.

', 'refs' => [ 'NetworkCardInfoList$member' => NULL, ], ], 'NetworkCardInfoList' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$NetworkCards' => '

Describes the network cards for the instance type.

', ], ], 'NetworkInfo' => [ 'base' => '

Describes the networking features of the instance type.

', 'refs' => [ 'InstanceTypeInfo$NetworkInfo' => '

Describes the network settings for the instance type.

', ], ], 'NetworkInsightsAccessScope' => [ 'base' => '

Describes a Network Access Scope.

', 'refs' => [ 'CreateNetworkInsightsAccessScopeResult$NetworkInsightsAccessScope' => '

The Network Access Scope.

', 'NetworkInsightsAccessScopeList$member' => NULL, ], ], 'NetworkInsightsAccessScopeAnalysis' => [ 'base' => '

Describes a Network Access Scope analysis.

', 'refs' => [ 'NetworkInsightsAccessScopeAnalysisList$member' => NULL, 'StartNetworkInsightsAccessScopeAnalysisResult$NetworkInsightsAccessScopeAnalysis' => '

The Network Access Scope analysis.

', ], ], 'NetworkInsightsAccessScopeAnalysisId' => [ 'base' => NULL, 'refs' => [ 'AccessScopeAnalysisFinding$NetworkInsightsAccessScopeAnalysisId' => '

The ID of the Network Access Scope analysis.

', 'DeleteNetworkInsightsAccessScopeAnalysisRequest$NetworkInsightsAccessScopeAnalysisId' => '

The ID of the Network Access Scope analysis.

', 'DeleteNetworkInsightsAccessScopeAnalysisResult$NetworkInsightsAccessScopeAnalysisId' => '

The ID of the Network Access Scope analysis.

', 'GetNetworkInsightsAccessScopeAnalysisFindingsRequest$NetworkInsightsAccessScopeAnalysisId' => '

The ID of the Network Access Scope analysis.

', 'GetNetworkInsightsAccessScopeAnalysisFindingsResult$NetworkInsightsAccessScopeAnalysisId' => '

The ID of the Network Access Scope analysis.

', 'NetworkInsightsAccessScopeAnalysis$NetworkInsightsAccessScopeAnalysisId' => '

The ID of the Network Access Scope analysis.

', 'NetworkInsightsAccessScopeAnalysisIdList$member' => NULL, ], ], 'NetworkInsightsAccessScopeAnalysisIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsAccessScopeAnalysesRequest$NetworkInsightsAccessScopeAnalysisIds' => '

The IDs of the Network Access Scope analyses.

', ], ], 'NetworkInsightsAccessScopeAnalysisList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsAccessScopeAnalysesResult$NetworkInsightsAccessScopeAnalyses' => '

The Network Access Scope analyses.

', ], ], 'NetworkInsightsAccessScopeContent' => [ 'base' => '

Describes the Network Access Scope content.

', 'refs' => [ 'CreateNetworkInsightsAccessScopeResult$NetworkInsightsAccessScopeContent' => '

The Network Access Scope content.

', 'GetNetworkInsightsAccessScopeContentResult$NetworkInsightsAccessScopeContent' => '

The Network Access Scope content.

', ], ], 'NetworkInsightsAccessScopeId' => [ 'base' => NULL, 'refs' => [ 'AccessScopeAnalysisFinding$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', 'DeleteNetworkInsightsAccessScopeRequest$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', 'DeleteNetworkInsightsAccessScopeResult$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', 'DescribeNetworkInsightsAccessScopeAnalysesRequest$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', 'GetNetworkInsightsAccessScopeContentRequest$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', 'NetworkInsightsAccessScope$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', 'NetworkInsightsAccessScopeAnalysis$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', 'NetworkInsightsAccessScopeContent$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', 'NetworkInsightsAccessScopeIdList$member' => NULL, 'StartNetworkInsightsAccessScopeAnalysisRequest$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', ], ], 'NetworkInsightsAccessScopeIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsAccessScopesRequest$NetworkInsightsAccessScopeIds' => '

The IDs of the Network Access Scopes.

', ], ], 'NetworkInsightsAccessScopeList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsAccessScopesResult$NetworkInsightsAccessScopes' => '

The Network Access Scopes.

', ], ], 'NetworkInsightsAnalysis' => [ 'base' => '

Describes a network insights analysis.

', 'refs' => [ 'NetworkInsightsAnalysisList$member' => NULL, 'StartNetworkInsightsAnalysisResult$NetworkInsightsAnalysis' => '

Information about the network insights analysis.

', ], ], 'NetworkInsightsAnalysisId' => [ 'base' => NULL, 'refs' => [ 'DeleteNetworkInsightsAnalysisRequest$NetworkInsightsAnalysisId' => '

The ID of the network insights analysis.

', 'DeleteNetworkInsightsAnalysisResult$NetworkInsightsAnalysisId' => '

The ID of the network insights analysis.

', 'NetworkInsightsAnalysis$NetworkInsightsAnalysisId' => '

The ID of the network insights analysis.

', 'NetworkInsightsAnalysisIdList$member' => NULL, ], ], 'NetworkInsightsAnalysisIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsAnalysesRequest$NetworkInsightsAnalysisIds' => '

The ID of the network insights analyses. You must specify either analysis IDs or a path ID.

', ], ], 'NetworkInsightsAnalysisList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsAnalysesResult$NetworkInsightsAnalyses' => '

Information about the network insights analyses.

', ], ], 'NetworkInsightsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsAccessScopeAnalysesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeNetworkInsightsAccessScopesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeNetworkInsightsAnalysesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeNetworkInsightsPathsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetNetworkInsightsAccessScopeAnalysisFindingsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'NetworkInsightsPath' => [ 'base' => '

Describes a path.

', 'refs' => [ 'CreateNetworkInsightsPathResult$NetworkInsightsPath' => '

Information about the path.

', 'NetworkInsightsPathList$member' => NULL, ], ], 'NetworkInsightsPathId' => [ 'base' => NULL, 'refs' => [ 'DeleteNetworkInsightsPathRequest$NetworkInsightsPathId' => '

The ID of the path.

', 'DeleteNetworkInsightsPathResult$NetworkInsightsPathId' => '

The ID of the path.

', 'DescribeNetworkInsightsAnalysesRequest$NetworkInsightsPathId' => '

The ID of the path. You must specify either a path ID or analysis IDs.

', 'NetworkInsightsAnalysis$NetworkInsightsPathId' => '

The ID of the path.

', 'NetworkInsightsPath$NetworkInsightsPathId' => '

The ID of the path.

', 'NetworkInsightsPathIdList$member' => NULL, 'StartNetworkInsightsAnalysisRequest$NetworkInsightsPathId' => '

The ID of the path.

', ], ], 'NetworkInsightsPathIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsPathsRequest$NetworkInsightsPathIds' => '

The IDs of the paths.

', ], ], 'NetworkInsightsPathList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsPathsResult$NetworkInsightsPaths' => '

Information about the paths.

', ], ], 'NetworkInsightsResourceId' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInsightsPathRequest$Source' => '

The ID or ARN of the source. If the resource is in another account, you must specify an ARN.

', 'CreateNetworkInsightsPathRequest$Destination' => '

The ID or ARN of the destination. If the resource is in another account, you must specify an ARN.

', ], ], 'NetworkInterface' => [ 'base' => '

Describes a network interface.

', 'refs' => [ 'CreateNetworkInterfaceResult$NetworkInterface' => '

Information about the network interface.

', 'NetworkInterfaceList$member' => NULL, ], ], 'NetworkInterfaceAssociation' => [ 'base' => '

Describes association information for an Elastic IP address (IPv4 only), or a Carrier IP address (for a network interface which resides in a subnet in a Wavelength Zone).

', 'refs' => [ 'NetworkInterface$Association' => '

The association information for an Elastic IP address (IPv4) associated with the network interface.

', 'NetworkInterfacePrivateIpAddress$Association' => '

The association information for an Elastic IP address (IPv4) associated with the network interface.

', ], ], 'NetworkInterfaceAttachment' => [ 'base' => '

Describes a network interface attachment.

', 'refs' => [ 'DescribeNetworkInterfaceAttributeResult$Attachment' => '

The attachment (if any) of the network interface.

', 'NetworkInterface$Attachment' => '

The network interface attachment.

', ], ], 'NetworkInterfaceAttachmentChanges' => [ 'base' => '

Describes an attachment change.

', 'refs' => [ 'ModifyNetworkInterfaceAttributeRequest$Attachment' => '

Information about the interface attachment. If modifying the delete on termination attribute, you must specify the ID of the interface attachment.

', ], ], 'NetworkInterfaceAttachmentId' => [ 'base' => NULL, 'refs' => [ 'DetachNetworkInterfaceRequest$AttachmentId' => '

The ID of the attachment.

', 'NetworkInterfaceAttachmentChanges$AttachmentId' => '

The ID of the network interface attachment.

', ], ], 'NetworkInterfaceAttribute' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInterfaceAttributeRequest$Attribute' => '

The attribute of the network interface. This parameter is required.

', ], ], 'NetworkInterfaceCount' => [ 'base' => '

The minimum and maximum number of network interfaces.

', 'refs' => [ 'InstanceRequirements$NetworkInterfaceCount' => '

The minimum and maximum number of network interfaces.

Default: No minimum or maximum limits

', ], ], 'NetworkInterfaceCountRequest' => [ 'base' => '

The minimum and maximum number of network interfaces.

', 'refs' => [ 'InstanceRequirementsRequest$NetworkInterfaceCount' => '

The minimum and maximum number of network interfaces.

Default: No minimum or maximum limits

', ], ], 'NetworkInterfaceCreationType' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInterfaceRequest$InterfaceType' => '

The type of network interface. The default is interface.

The only supported values are interface, efa, and trunk.

', ], ], 'NetworkInterfaceId' => [ 'base' => NULL, 'refs' => [ 'AssignIpv6AddressesRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'AssignPrivateIpAddressesRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'AssociateAddressRequest$NetworkInterfaceId' => '

The ID of the network interface. If the instance has more than one network interface, you must specify a network interface ID.

You can specify either the instance ID or the network interface ID, but not both.

', 'AssociateTrunkInterfaceRequest$BranchInterfaceId' => '

The ID of the branch network interface.

', 'AssociateTrunkInterfaceRequest$TrunkInterfaceId' => '

The ID of the trunk network interface.

', 'AttachNetworkInterfaceRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'CreateLocalGatewayRouteRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'CreateNetworkInterfacePermissionRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'CreateRouteRequest$NetworkInterfaceId' => '

The ID of a network interface.

', 'CreateTrafficMirrorSessionRequest$NetworkInterfaceId' => '

The ID of the source network interface.

', 'CreateTrafficMirrorTargetRequest$NetworkInterfaceId' => '

The network interface ID that is associated with the target.

', 'CreateVerifiedAccessEndpointEniOptions$NetworkInterfaceId' => '

The ID of the network interface.

', 'DeleteNetworkInterfaceRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'DescribeNetworkInterfaceAttributeRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'InstanceNetworkInterfaceSpecification$NetworkInterfaceId' => '

The ID of the network interface.

If you are creating a Spot Fleet, omit this parameter because you can’t specify a network interface ID in a launch specification.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$NetworkInterfaceId' => '

The ID of the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'LocalGatewayRoute$NetworkInterfaceId' => '

The ID of the network interface.

', 'ModifyLocalGatewayRouteRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'ModifyNetworkInterfaceAttributeRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'NetworkInterfaceIdList$member' => NULL, 'ReplaceRouteRequest$NetworkInterfaceId' => '

The ID of a network interface.

', 'ResetNetworkInterfaceAttributeRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'ScheduledInstancesNetworkInterface$NetworkInterfaceId' => '

The ID of the network interface.

', 'TransitGatewayNetworkInterfaceIdList$member' => NULL, 'UnassignIpv6AddressesRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'UnassignPrivateIpAddressesRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'VerifiedAccessEndpointEniOptions$NetworkInterfaceId' => '

The ID of the network interface.

', ], ], 'NetworkInterfaceIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInterfacesRequest$NetworkInterfaceIds' => '

The network interface IDs.

Default: Describes all your network interfaces.

', ], ], 'NetworkInterfaceIdSet' => [ 'base' => NULL, 'refs' => [ 'Ec2InstanceConnectEndpoint$NetworkInterfaceIds' => '

The ID of the elastic network interface that Amazon EC2 automatically created when creating the EC2 Instance Connect Endpoint.

', ], ], 'NetworkInterfaceIpv6Address' => [ 'base' => '

Describes an IPv6 address associated with a network interface.

', 'refs' => [ 'NetworkInterfaceIpv6AddressesList$member' => NULL, ], ], 'NetworkInterfaceIpv6AddressesList' => [ 'base' => NULL, 'refs' => [ 'NetworkInterface$Ipv6Addresses' => '

The IPv6 addresses associated with the network interface.

', ], ], 'NetworkInterfaceList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInterfacesResult$NetworkInterfaces' => '

Information about one or more network interfaces.

', ], ], 'NetworkInterfacePermission' => [ 'base' => '

Describes a permission for a network interface.

', 'refs' => [ 'CreateNetworkInterfacePermissionResult$InterfacePermission' => '

Information about the permission for the network interface.

', 'NetworkInterfacePermissionList$member' => NULL, ], ], 'NetworkInterfacePermissionId' => [ 'base' => NULL, 'refs' => [ 'DeleteNetworkInterfacePermissionRequest$NetworkInterfacePermissionId' => '

The ID of the network interface permission.

', 'NetworkInterfacePermissionIdList$member' => NULL, ], ], 'NetworkInterfacePermissionIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInterfacePermissionsRequest$NetworkInterfacePermissionIds' => '

The network interface permission IDs.

', ], ], 'NetworkInterfacePermissionList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInterfacePermissionsResult$NetworkInterfacePermissions' => '

The network interface permissions.

', ], ], 'NetworkInterfacePermissionState' => [ 'base' => '

Describes the state of a network interface permission.

', 'refs' => [ 'NetworkInterfacePermission$PermissionState' => '

Information about the state of the permission.

', ], ], 'NetworkInterfacePermissionStateCode' => [ 'base' => NULL, 'refs' => [ 'NetworkInterfacePermissionState$State' => '

The state of the permission.

', ], ], 'NetworkInterfacePrivateIpAddress' => [ 'base' => '

Describes the private IPv4 address of a network interface.

', 'refs' => [ 'NetworkInterfacePrivateIpAddressList$member' => NULL, ], ], 'NetworkInterfacePrivateIpAddressList' => [ 'base' => NULL, 'refs' => [ 'NetworkInterface$PrivateIpAddresses' => '

The private IPv4 addresses associated with the network interface.

', ], ], 'NetworkInterfaceStatus' => [ 'base' => NULL, 'refs' => [ 'InstanceNetworkInterface$Status' => '

The status of the network interface.

', 'NetworkInterface$Status' => '

The status of the network interface.

', ], ], 'NetworkInterfaceType' => [ 'base' => NULL, 'refs' => [ 'NetworkInterface$InterfaceType' => '

The type of network interface.

', ], ], 'NetworkNodesList' => [ 'base' => NULL, 'refs' => [ 'InstanceTopology$NetworkNodes' => '

The network nodes. The nodes are hashed based on your account. Instances from different accounts running under the same droplet will return a different hashed list of strings.

', ], ], 'NetworkPerformance' => [ 'base' => NULL, 'refs' => [ 'NetworkCardInfo$NetworkPerformance' => '

The network performance of the network card.

', 'NetworkInfo$NetworkPerformance' => '

The network performance.

', ], ], 'NewDhcpConfiguration' => [ 'base' => NULL, 'refs' => [ 'NewDhcpConfigurationList$member' => NULL, ], ], 'NewDhcpConfigurationList' => [ 'base' => NULL, 'refs' => [ 'CreateDhcpOptionsRequest$DhcpConfigurations' => '

A DHCP configuration option.

', ], ], 'NextToken' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressesAttributeRequest$NextToken' => '

The token for the next page of results.

', 'DescribeAddressesAttributeResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeByoipCidrsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeClientVpnAuthorizationRulesRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeClientVpnAuthorizationRulesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeClientVpnConnectionsRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeClientVpnConnectionsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeClientVpnEndpointsRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeClientVpnEndpointsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeClientVpnRoutesRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeClientVpnRoutesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeClientVpnTargetNetworksRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeClientVpnTargetNetworksResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeExportImageTasksRequest$NextToken' => '

A token that indicates the next page of results.

', 'DescribeExportImageTasksResult$NextToken' => '

The token to use to get the next page of results. This value is null when there are no more results to return.

', 'DescribeFastLaunchImagesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeFastLaunchImagesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeFastSnapshotRestoresRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeFastSnapshotRestoresResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeFpgaImagesRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeFpgaImagesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeIamInstanceProfileAssociationsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeIamInstanceProfileAssociationsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeInstanceConnectEndpointsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeInstanceConnectEndpointsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeInstanceTypeOfferingsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeInstanceTypeOfferingsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeInstanceTypesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeInstanceTypesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeIpamByoasnRequest$NextToken' => '

The token for the next page of results.

', 'DescribeIpamPoolsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeIpamPoolsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeIpamResourceDiscoveriesRequest$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'DescribeIpamResourceDiscoveriesResult$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'DescribeIpamResourceDiscoveryAssociationsRequest$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'DescribeIpamResourceDiscoveryAssociationsResult$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'DescribeIpamScopesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeIpamScopesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeIpamsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeIpamsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeIpv6PoolsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeIpv6PoolsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeManagedPrefixListsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeManagedPrefixListsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeNetworkInsightsAccessScopeAnalysesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeNetworkInsightsAccessScopesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeNetworkInsightsAnalysesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeNetworkInsightsPathsRequest$NextToken' => '

The token for the next page of results.

', 'DescribePublicIpv4PoolsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeReplaceRootVolumeTasksRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeTrafficMirrorFiltersRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTrafficMirrorSessionsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTrafficMirrorTargetsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeVerifiedAccessEndpointsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeVerifiedAccessEndpointsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVerifiedAccessGroupsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeVerifiedAccessGroupsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVerifiedAccessInstanceLoggingConfigurationsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeVerifiedAccessInstanceLoggingConfigurationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVerifiedAccessInstancesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeVerifiedAccessInstancesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVerifiedAccessTrustProvidersRequest$NextToken' => '

The token for the next page of results.

', 'DescribeVerifiedAccessTrustProvidersResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetAssociatedIpv6PoolCidrsRequest$NextToken' => '

The token for the next page of results.

', 'GetIpamAddressHistoryRequest$NextToken' => '

The token for the next page of results.

', 'GetIpamAddressHistoryResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetIpamDiscoveredAccountsRequest$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'GetIpamDiscoveredAccountsResult$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'GetIpamDiscoveredPublicAddressesRequest$NextToken' => '

The token for the next page of results.

', 'GetIpamDiscoveredPublicAddressesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetIpamDiscoveredResourceCidrsRequest$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'GetIpamDiscoveredResourceCidrsResult$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'GetIpamPoolAllocationsRequest$NextToken' => '

The token for the next page of results.

', 'GetIpamPoolAllocationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetIpamPoolCidrsRequest$NextToken' => '

The token for the next page of results.

', 'GetIpamPoolCidrsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetIpamResourceCidrsRequest$NextToken' => '

The token for the next page of results.

', 'GetIpamResourceCidrsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetManagedPrefixListAssociationsRequest$NextToken' => '

The token for the next page of results.

', 'GetManagedPrefixListEntriesRequest$NextToken' => '

The token for the next page of results.

', 'GetManagedPrefixListEntriesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetNetworkInsightsAccessScopeAnalysisFindingsRequest$NextToken' => '

The token for the next page of results.

', 'GetVpnConnectionDeviceTypesRequest$NextToken' => '

The NextToken value returned from a previous paginated GetVpnConnectionDeviceTypes request where MaxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the NextToken value. This value is null when there are no more results to return.

', 'GetVpnConnectionDeviceTypesResult$NextToken' => '

The NextToken value to include in a future GetVpnConnectionDeviceTypes request. When the results of a GetVpnConnectionDeviceTypes request exceed MaxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

', ], ], 'NitroEnclavesSupport' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$NitroEnclavesSupport' => '

Indicates whether Nitro Enclaves is supported.

', ], ], 'NitroTpmInfo' => [ 'base' => '

Describes the supported NitroTPM versions for the instance type.

', 'refs' => [ 'InstanceTypeInfo$NitroTpmInfo' => '

Describes the supported NitroTPM versions for the instance type.

', ], ], 'NitroTpmSupport' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$NitroTpmSupport' => '

Indicates whether NitroTPM is supported.

', ], ], 'NitroTpmSupportedVersionType' => [ 'base' => NULL, 'refs' => [ 'NitroTpmSupportedVersionsList$member' => NULL, ], ], 'NitroTpmSupportedVersionsList' => [ 'base' => NULL, 'refs' => [ 'NitroTpmInfo$SupportedVersions' => '

Indicates the supported NitroTPM versions.

', ], ], 'OccurrenceDayRequestSet' => [ 'base' => NULL, 'refs' => [ 'ScheduledInstanceRecurrenceRequest$OccurrenceDays' => '

The days. For a monthly schedule, this is one or more days of the month (1-31). For a weekly schedule, this is one or more days of the week (1-7, where 1 is Sunday). You can\'t specify this value with a daily schedule. If the occurrence is relative to the end of the month, you can specify only a single day.

', ], ], 'OccurrenceDaySet' => [ 'base' => NULL, 'refs' => [ 'ScheduledInstanceRecurrence$OccurrenceDaySet' => '

The days. For a monthly schedule, this is one or more days of the month (1-31). For a weekly schedule, this is one or more days of the week (1-7, where 1 is Sunday).

', ], ], 'OfferingClassType' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesOfferingsRequest$OfferingClass' => '

The offering class of the Reserved Instance. Can be standard or convertible.

', 'DescribeReservedInstancesRequest$OfferingClass' => '

Describes whether the Reserved Instance is Standard or Convertible.

', 'ReservedInstances$OfferingClass' => '

The offering class of the Reserved Instance.

', 'ReservedInstancesOffering$OfferingClass' => '

If convertible it can be exchanged for Reserved Instances of the same or higher monetary value, with different configurations. If standard, it is not possible to perform an exchange.

', ], ], 'OfferingId' => [ 'base' => NULL, 'refs' => [ 'CapacityBlockOffering$CapacityBlockOfferingId' => '

The ID of the Capacity Block offering.

', 'DescribeHostReservationOfferingsRequest$OfferingId' => '

The ID of the reservation offering.

', 'GetHostReservationPurchasePreviewRequest$OfferingId' => '

The offering ID of the reservation.

', 'HostOffering$OfferingId' => '

The ID of the offering.

', 'HostReservation$OfferingId' => '

The ID of the reservation. This remains the same regardless of which Dedicated Hosts are associated with it.

', 'PurchaseCapacityBlockRequest$CapacityBlockOfferingId' => '

The ID of the Capacity Block offering.

', 'PurchaseHostReservationRequest$OfferingId' => '

The ID of the offering.

', ], ], 'OfferingTypeValues' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesOfferingsRequest$OfferingType' => '

The Reserved Instance offering type. If you are using tools that predate the 2011-11-01 API version, you only have access to the Medium Utilization Reserved Instance offering type.

', 'DescribeReservedInstancesRequest$OfferingType' => '

The Reserved Instance offering type. If you are using tools that predate the 2011-11-01 API version, you only have access to the Medium Utilization Reserved Instance offering type.

', 'ReservedInstances$OfferingType' => '

The Reserved Instance offering type.

', 'ReservedInstancesOffering$OfferingType' => '

The Reserved Instance offering type.

', ], ], 'OidcOptions' => [ 'base' => '

Describes the options for an OpenID Connect-compatible user-identity trust provider.

', 'refs' => [ 'VerifiedAccessTrustProvider$OidcOptions' => '

The options for an OpenID Connect-compatible user-identity trust provider.

', ], ], 'OnDemandAllocationStrategy' => [ 'base' => NULL, 'refs' => [ 'SpotFleetRequestConfigData$OnDemandAllocationStrategy' => '

The order of the launch template overrides to use in fulfilling On-Demand capacity. If you specify lowestPrice, Spot Fleet uses price to determine the order, launching the lowest price first. If you specify prioritized, Spot Fleet uses the priority that you assign to each Spot Fleet launch template override, launching the highest priority first. If you do not specify a value, Spot Fleet defaults to lowestPrice.

', ], ], 'OnDemandOptions' => [ 'base' => '

Describes the configuration of On-Demand Instances in an EC2 Fleet.

', 'refs' => [ 'FleetData$OnDemandOptions' => '

The allocation strategy of On-Demand Instances in an EC2 Fleet.

', ], ], 'OnDemandOptionsRequest' => [ 'base' => '

Describes the configuration of On-Demand Instances in an EC2 Fleet.

', 'refs' => [ 'CreateFleetRequest$OnDemandOptions' => '

Describes the configuration of On-Demand Instances in an EC2 Fleet.

', ], ], 'OperationType' => [ 'base' => NULL, 'refs' => [ 'ModifyFpgaImageAttributeRequest$OperationType' => '

The operation type.

', 'ModifyImageAttributeRequest$OperationType' => '

The operation type. This parameter can be used only when the Attribute parameter is launchPermission.

', 'ModifySnapshotAttributeRequest$OperationType' => '

The type of operation to perform to the attribute.

', ], ], 'OrganizationArnStringList' => [ 'base' => NULL, 'refs' => [ 'ModifyImageAttributeRequest$OrganizationArns' => '

The Amazon Resource Name (ARN) of an organization. This parameter can be used only when the Attribute parameter is launchPermission.

', ], ], 'OrganizationalUnitArnStringList' => [ 'base' => NULL, 'refs' => [ 'ModifyImageAttributeRequest$OrganizationalUnitArns' => '

The Amazon Resource Name (ARN) of an organizational unit (OU). This parameter can be used only when the Attribute parameter is launchPermission.

', ], ], 'OutpostArn' => [ 'base' => NULL, 'refs' => [ 'CapacityReservation$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost on which the Capacity Reservation was created.

', 'CreateCapacityReservationRequest$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost on which to create the Capacity Reservation.

', ], ], 'OwnerStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeFpgaImagesRequest$Owners' => '

Filters the AFI by owner. Specify an Amazon Web Services account ID, self (owner is the sender of the request), or an Amazon Web Services owner alias (valid values are amazon | aws-marketplace).

', 'DescribeImagesRequest$Owners' => '

Scopes the results to images with the specified owners. You can specify a combination of Amazon Web Services account IDs, self, amazon, and aws-marketplace. If you omit this parameter, the results include all images for which you have launch permissions, regardless of ownership.

', 'DescribeSnapshotsRequest$OwnerIds' => '

Scopes the results to snapshots with the specified owners. You can specify a combination of Amazon Web Services account IDs, self, and amazon.

', ], ], 'PacketHeaderStatement' => [ 'base' => '

Describes a packet header statement.

', 'refs' => [ 'PathStatement$PacketHeaderStatement' => '

The packet header statement.

', ], ], 'PacketHeaderStatementRequest' => [ 'base' => '

Describes a packet header statement.

', 'refs' => [ 'PathStatementRequest$PacketHeaderStatement' => '

The packet header statement.

', ], ], 'PartitionLoadFrequency' => [ 'base' => NULL, 'refs' => [ 'AthenaIntegration$PartitionLoadFrequency' => '

The schedule for adding new partitions to the table.

', ], ], 'PasswordData' => [ 'base' => NULL, 'refs' => [ 'GetPasswordDataResult$PasswordData' => '

The password of the instance. Returns an empty string if the password is not available.

', ], ], 'PathComponent' => [ 'base' => '

Describes a path component.

', 'refs' => [ 'PathComponentList$member' => NULL, ], ], 'PathComponentList' => [ 'base' => NULL, 'refs' => [ 'AccessScopeAnalysisFinding$FindingComponents' => '

The finding components.

', 'NetworkInsightsAnalysis$ForwardPathComponents' => '

The components in the path from source to destination.

', 'NetworkInsightsAnalysis$ReturnPathComponents' => '

The components in the path from destination to source.

', ], ], 'PathFilter' => [ 'base' => '

Describes a set of filters for a path analysis. Use path filters to scope the analysis when there can be multiple resulting paths.

', 'refs' => [ 'NetworkInsightsPath$FilterAtSource' => '

Scopes the analysis to network paths that match specific filters at the source.

', 'NetworkInsightsPath$FilterAtDestination' => '

Scopes the analysis to network paths that match specific filters at the destination.

', ], ], 'PathRequestFilter' => [ 'base' => '

Describes a set of filters for a path analysis. Use path filters to scope the analysis when there can be multiple resulting paths.

', 'refs' => [ 'CreateNetworkInsightsPathRequest$FilterAtSource' => '

Scopes the analysis to network paths that match specific filters at the source. If you specify this parameter, you can\'t specify the parameters for the source IP address or the destination port.

', 'CreateNetworkInsightsPathRequest$FilterAtDestination' => '

Scopes the analysis to network paths that match specific filters at the destination. If you specify this parameter, you can\'t specify the parameter for the destination IP address.

', ], ], 'PathStatement' => [ 'base' => '

Describes a path statement.

', 'refs' => [ 'AccessScopePath$Source' => '

The source.

', 'AccessScopePath$Destination' => '

The destination.

', ], ], 'PathStatementRequest' => [ 'base' => '

Describes a path statement.

', 'refs' => [ 'AccessScopePathRequest$Source' => '

The source.

', 'AccessScopePathRequest$Destination' => '

The destination.

', ], ], 'PayerResponsibility' => [ 'base' => NULL, 'refs' => [ 'ModifyVpcEndpointServicePayerResponsibilityRequest$PayerResponsibility' => '

The entity that is responsible for the endpoint costs. The default is the endpoint owner. If you set the payer responsibility to the service owner, you cannot set it back to the endpoint owner.

', 'ServiceConfiguration$PayerResponsibility' => '

The payer responsibility.

', 'ServiceDetail$PayerResponsibility' => '

The payer responsibility.

', ], ], 'PaymentOption' => [ 'base' => NULL, 'refs' => [ 'HostOffering$PaymentOption' => '

The available payment option.

', 'HostReservation$PaymentOption' => '

The payment option selected for this reservation.

', 'Purchase$PaymentOption' => '

The payment option for the reservation.

', ], ], 'PciId' => [ 'base' => '

Describes the data that identifies an Amazon FPGA image (AFI) on the PCI bus.

', 'refs' => [ 'FpgaImage$PciId' => '

Information about the PCI bus.

', ], ], 'PeakBandwidthInGbps' => [ 'base' => NULL, 'refs' => [ 'NetworkCardInfo$PeakBandwidthInGbps' => '

The peak (burst) network performance of the network card, in Gbps.

', ], ], 'PeeringAttachmentStatus' => [ 'base' => '

The status of the transit gateway peering attachment.

', 'refs' => [ 'TransitGatewayPeeringAttachment$Status' => '

The status of the transit gateway peering attachment.

', ], ], 'PeeringConnectionOptions' => [ 'base' => '

Describes the VPC peering connection options.

', 'refs' => [ 'ModifyVpcPeeringConnectionOptionsResult$AccepterPeeringConnectionOptions' => '

Information about the VPC peering connection options for the accepter VPC.

', 'ModifyVpcPeeringConnectionOptionsResult$RequesterPeeringConnectionOptions' => '

Information about the VPC peering connection options for the requester VPC.

', ], ], 'PeeringConnectionOptionsRequest' => [ 'base' => '

The VPC peering connection options.

', 'refs' => [ 'ModifyVpcPeeringConnectionOptionsRequest$AccepterPeeringConnectionOptions' => '

The VPC peering connection options for the accepter VPC.

', 'ModifyVpcPeeringConnectionOptionsRequest$RequesterPeeringConnectionOptions' => '

The VPC peering connection options for the requester VPC.

', ], ], 'PeeringTgwInfo' => [ 'base' => '

Information about the transit gateway in the peering attachment.

', 'refs' => [ 'TransitGatewayPeeringAttachment$RequesterTgwInfo' => '

Information about the requester transit gateway.

', 'TransitGatewayPeeringAttachment$AccepterTgwInfo' => '

Information about the accepter transit gateway.

', ], ], 'PeriodType' => [ 'base' => NULL, 'refs' => [ 'DataQuery$Period' => '

The aggregation period used for the data query.

', 'DataResponse$Period' => '

The period used for the network performance request.

', 'Subscription$Period' => '

The data aggregation time for the subscription.

', ], ], 'PermissionGroup' => [ 'base' => NULL, 'refs' => [ 'CreateVolumePermission$Group' => '

The group to be added or removed. The possible value is all.

', 'LaunchPermission$Group' => '

The name of the group.

', 'LoadPermission$Group' => '

The name of the group.

', 'LoadPermissionRequest$Group' => '

The name of the group.

', ], ], 'Phase1DHGroupNumbersList' => [ 'base' => NULL, 'refs' => [ 'TunnelOption$Phase1DHGroupNumbers' => '

The permitted Diffie-Hellman group numbers for the VPN tunnel for phase 1 IKE negotiations.

', ], ], 'Phase1DHGroupNumbersListValue' => [ 'base' => '

The Diffie-Hellmann group number for phase 1 IKE negotiations.

', 'refs' => [ 'Phase1DHGroupNumbersList$member' => NULL, ], ], 'Phase1DHGroupNumbersRequestList' => [ 'base' => NULL, 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$Phase1DHGroupNumbers' => '

One or more Diffie-Hellman group numbers that are permitted for the VPN tunnel for phase 1 IKE negotiations.

Valid values: 2 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24

', 'VpnTunnelOptionsSpecification$Phase1DHGroupNumbers' => '

One or more Diffie-Hellman group numbers that are permitted for the VPN tunnel for phase 1 IKE negotiations.

Valid values: 2 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24

', ], ], 'Phase1DHGroupNumbersRequestListValue' => [ 'base' => '

Specifies a Diffie-Hellman group number for the VPN tunnel for phase 1 IKE negotiations.

', 'refs' => [ 'Phase1DHGroupNumbersRequestList$member' => NULL, ], ], 'Phase1EncryptionAlgorithmsList' => [ 'base' => NULL, 'refs' => [ 'TunnelOption$Phase1EncryptionAlgorithms' => '

The permitted encryption algorithms for the VPN tunnel for phase 1 IKE negotiations.

', ], ], 'Phase1EncryptionAlgorithmsListValue' => [ 'base' => '

The encryption algorithm for phase 1 IKE negotiations.

', 'refs' => [ 'Phase1EncryptionAlgorithmsList$member' => NULL, ], ], 'Phase1EncryptionAlgorithmsRequestList' => [ 'base' => NULL, 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$Phase1EncryptionAlgorithms' => '

One or more encryption algorithms that are permitted for the VPN tunnel for phase 1 IKE negotiations.

Valid values: AES128 | AES256 | AES128-GCM-16 | AES256-GCM-16

', 'VpnTunnelOptionsSpecification$Phase1EncryptionAlgorithms' => '

One or more encryption algorithms that are permitted for the VPN tunnel for phase 1 IKE negotiations.

Valid values: AES128 | AES256 | AES128-GCM-16 | AES256-GCM-16

', ], ], 'Phase1EncryptionAlgorithmsRequestListValue' => [ 'base' => '

Specifies the encryption algorithm for the VPN tunnel for phase 1 IKE negotiations.

', 'refs' => [ 'Phase1EncryptionAlgorithmsRequestList$member' => NULL, ], ], 'Phase1IntegrityAlgorithmsList' => [ 'base' => NULL, 'refs' => [ 'TunnelOption$Phase1IntegrityAlgorithms' => '

The permitted integrity algorithms for the VPN tunnel for phase 1 IKE negotiations.

', ], ], 'Phase1IntegrityAlgorithmsListValue' => [ 'base' => '

The integrity algorithm for phase 1 IKE negotiations.

', 'refs' => [ 'Phase1IntegrityAlgorithmsList$member' => NULL, ], ], 'Phase1IntegrityAlgorithmsRequestList' => [ 'base' => NULL, 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$Phase1IntegrityAlgorithms' => '

One or more integrity algorithms that are permitted for the VPN tunnel for phase 1 IKE negotiations.

Valid values: SHA1 | SHA2-256 | SHA2-384 | SHA2-512

', 'VpnTunnelOptionsSpecification$Phase1IntegrityAlgorithms' => '

One or more integrity algorithms that are permitted for the VPN tunnel for phase 1 IKE negotiations.

Valid values: SHA1 | SHA2-256 | SHA2-384 | SHA2-512

', ], ], 'Phase1IntegrityAlgorithmsRequestListValue' => [ 'base' => '

Specifies the integrity algorithm for the VPN tunnel for phase 1 IKE negotiations.

', 'refs' => [ 'Phase1IntegrityAlgorithmsRequestList$member' => NULL, ], ], 'Phase2DHGroupNumbersList' => [ 'base' => NULL, 'refs' => [ 'TunnelOption$Phase2DHGroupNumbers' => '

The permitted Diffie-Hellman group numbers for the VPN tunnel for phase 2 IKE negotiations.

', ], ], 'Phase2DHGroupNumbersListValue' => [ 'base' => '

The Diffie-Hellmann group number for phase 2 IKE negotiations.

', 'refs' => [ 'Phase2DHGroupNumbersList$member' => NULL, ], ], 'Phase2DHGroupNumbersRequestList' => [ 'base' => NULL, 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$Phase2DHGroupNumbers' => '

One or more Diffie-Hellman group numbers that are permitted for the VPN tunnel for phase 2 IKE negotiations.

Valid values: 2 | 5 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24

', 'VpnTunnelOptionsSpecification$Phase2DHGroupNumbers' => '

One or more Diffie-Hellman group numbers that are permitted for the VPN tunnel for phase 2 IKE negotiations.

Valid values: 2 | 5 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24

', ], ], 'Phase2DHGroupNumbersRequestListValue' => [ 'base' => '

Specifies a Diffie-Hellman group number for the VPN tunnel for phase 2 IKE negotiations.

', 'refs' => [ 'Phase2DHGroupNumbersRequestList$member' => NULL, ], ], 'Phase2EncryptionAlgorithmsList' => [ 'base' => NULL, 'refs' => [ 'TunnelOption$Phase2EncryptionAlgorithms' => '

The permitted encryption algorithms for the VPN tunnel for phase 2 IKE negotiations.

', ], ], 'Phase2EncryptionAlgorithmsListValue' => [ 'base' => '

The encryption algorithm for phase 2 IKE negotiations.

', 'refs' => [ 'Phase2EncryptionAlgorithmsList$member' => NULL, ], ], 'Phase2EncryptionAlgorithmsRequestList' => [ 'base' => NULL, 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$Phase2EncryptionAlgorithms' => '

One or more encryption algorithms that are permitted for the VPN tunnel for phase 2 IKE negotiations.

Valid values: AES128 | AES256 | AES128-GCM-16 | AES256-GCM-16

', 'VpnTunnelOptionsSpecification$Phase2EncryptionAlgorithms' => '

One or more encryption algorithms that are permitted for the VPN tunnel for phase 2 IKE negotiations.

Valid values: AES128 | AES256 | AES128-GCM-16 | AES256-GCM-16

', ], ], 'Phase2EncryptionAlgorithmsRequestListValue' => [ 'base' => '

Specifies the encryption algorithm for the VPN tunnel for phase 2 IKE negotiations.

', 'refs' => [ 'Phase2EncryptionAlgorithmsRequestList$member' => NULL, ], ], 'Phase2IntegrityAlgorithmsList' => [ 'base' => NULL, 'refs' => [ 'TunnelOption$Phase2IntegrityAlgorithms' => '

The permitted integrity algorithms for the VPN tunnel for phase 2 IKE negotiations.

', ], ], 'Phase2IntegrityAlgorithmsListValue' => [ 'base' => '

The integrity algorithm for phase 2 IKE negotiations.

', 'refs' => [ 'Phase2IntegrityAlgorithmsList$member' => NULL, ], ], 'Phase2IntegrityAlgorithmsRequestList' => [ 'base' => NULL, 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$Phase2IntegrityAlgorithms' => '

One or more integrity algorithms that are permitted for the VPN tunnel for phase 2 IKE negotiations.

Valid values: SHA1 | SHA2-256 | SHA2-384 | SHA2-512

', 'VpnTunnelOptionsSpecification$Phase2IntegrityAlgorithms' => '

One or more integrity algorithms that are permitted for the VPN tunnel for phase 2 IKE negotiations.

Valid values: SHA1 | SHA2-256 | SHA2-384 | SHA2-512

', ], ], 'Phase2IntegrityAlgorithmsRequestListValue' => [ 'base' => '

Specifies the integrity algorithm for the VPN tunnel for phase 2 IKE negotiations.

', 'refs' => [ 'Phase2IntegrityAlgorithmsRequestList$member' => NULL, ], ], 'Placement' => [ 'base' => '

Describes the placement of an instance.

', 'refs' => [ 'FleetLaunchTemplateOverridesRequest$Placement' => '

The location where the instance launched, if applicable.

', 'ImportInstanceLaunchSpecification$Placement' => '

The placement information for the instance.

', 'Instance$Placement' => '

The location where the instance launched, if applicable.

', 'RunInstancesRequest$Placement' => '

The placement for the instance.

', ], ], 'PlacementGroup' => [ 'base' => '

Describes a placement group.

', 'refs' => [ 'CreatePlacementGroupResult$PlacementGroup' => '

Information about the placement group.

', 'PlacementGroupList$member' => NULL, ], ], 'PlacementGroupArn' => [ 'base' => NULL, 'refs' => [ 'CapacityReservation$PlacementGroupArn' => '

The Amazon Resource Name (ARN) of the cluster placement group in which the Capacity Reservation was created. For more information, see Capacity Reservations for cluster placement groups in the Amazon EC2 User Guide.

', 'CreateCapacityReservationRequest$PlacementGroupArn' => '

The Amazon Resource Name (ARN) of the cluster placement group in which to create the Capacity Reservation. For more information, see Capacity Reservations for cluster placement groups in the Amazon EC2 User Guide.

', ], ], 'PlacementGroupId' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplatePlacement$GroupId' => '

The Group ID of the placement group. You must specify the Placement Group Group ID to launch an instance in a shared placement group.

', 'LaunchTemplatePlacementRequest$GroupId' => '

The Group Id of a placement group. You must specify the Placement Group Group Id to launch an instance in a shared placement group.

', 'ModifyInstancePlacementRequest$GroupId' => '

The Group Id of a placement group. You must specify the Placement Group Group Id to launch an instance in a shared placement group.

', 'Placement$GroupId' => '

The ID of the placement group that the instance is in. If you specify GroupId, you can\'t specify GroupName.

', 'PlacementGroupIdStringList$member' => NULL, ], ], 'PlacementGroupIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribePlacementGroupsRequest$GroupIds' => '

The IDs of the placement groups.

', ], ], 'PlacementGroupInfo' => [ 'base' => '

Describes the placement group support of the instance type.

', 'refs' => [ 'InstanceTypeInfo$PlacementGroupInfo' => '

Describes the placement group settings for the instance type.

', ], ], 'PlacementGroupList' => [ 'base' => NULL, 'refs' => [ 'DescribePlacementGroupsResult$PlacementGroups' => '

Information about the placement groups.

', ], ], 'PlacementGroupName' => [ 'base' => NULL, 'refs' => [ 'DeletePlacementGroupRequest$GroupName' => '

The name of the placement group.

', 'DescribeInstanceTopologyGroupNameSet$member' => NULL, 'LaunchTemplatePlacementRequest$GroupName' => '

The name of the placement group for the instance.

', 'ModifyInstancePlacementRequest$GroupName' => '

The name of the placement group in which to place the instance. For spread placement groups, the instance must have a tenancy of default. For cluster and partition placement groups, the instance must have a tenancy of default or dedicated.

To remove an instance from a placement group, specify an empty string ("").

', 'Placement$GroupName' => '

The name of the placement group that the instance is in. If you specify GroupName, you can\'t specify GroupId.

', 'PlacementGroupStringList$member' => NULL, 'PlacementResponse$GroupName' => '

The name of the placement group that the instance is in.

', 'ScheduledInstancesPlacement$GroupName' => '

The name of the placement group.

', 'SpotPlacement$GroupName' => '

The name of the placement group.

', ], ], 'PlacementGroupState' => [ 'base' => NULL, 'refs' => [ 'PlacementGroup$State' => '

The state of the placement group.

', ], ], 'PlacementGroupStrategy' => [ 'base' => NULL, 'refs' => [ 'PlacementGroupStrategyList$member' => NULL, ], ], 'PlacementGroupStrategyList' => [ 'base' => NULL, 'refs' => [ 'PlacementGroupInfo$SupportedStrategies' => '

The supported placement group types.

', ], ], 'PlacementGroupStringList' => [ 'base' => NULL, 'refs' => [ 'DescribePlacementGroupsRequest$GroupNames' => '

The names of the placement groups.

Default: Describes all your placement groups, or only those otherwise specified.

', ], ], 'PlacementResponse' => [ 'base' => '

Describes the placement of an instance.

', 'refs' => [ 'FleetLaunchTemplateOverrides$Placement' => '

The location where the instance launched, if applicable.

', ], ], 'PlacementStrategy' => [ 'base' => NULL, 'refs' => [ 'CreatePlacementGroupRequest$Strategy' => '

The placement strategy.

', 'PlacementGroup$Strategy' => '

The placement strategy.

', ], ], 'PlatformValues' => [ 'base' => NULL, 'refs' => [ 'CreateFleetInstance$Platform' => '

The value is Windows for Windows instances. Otherwise, the value is blank.

', 'DescribeFleetsInstances$Platform' => '

The value is Windows for Windows instances. Otherwise, the value is blank.

', 'Image$Platform' => '

This value is set to windows for Windows AMIs; otherwise, it is blank.

', 'ImportInstanceRequest$Platform' => '

The instance operating system.

', 'ImportInstanceTaskDetails$Platform' => '

The instance operating system.

', 'Instance$Platform' => '

The platform. This value is windows for Windows instances; otherwise, it is empty.

', ], ], 'PoolCidrBlock' => [ 'base' => '

Describes a CIDR block for an address pool.

', 'refs' => [ 'PoolCidrBlocksSet$member' => NULL, ], ], 'PoolCidrBlocksSet' => [ 'base' => NULL, 'refs' => [ 'Ipv6Pool$PoolCidrBlocks' => '

The CIDR blocks for the address pool.

', ], ], 'PoolMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribePublicIpv4PoolsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'Port' => [ 'base' => NULL, 'refs' => [ 'AnalysisLoadBalancerListener$LoadBalancerPort' => '

The port on which the load balancer is listening.

', 'AnalysisLoadBalancerListener$InstancePort' => '

[Classic Load Balancers] The back-end port for the listener.

', 'AnalysisLoadBalancerTarget$Port' => '

The port on which the target is listening.

', 'CreateNetworkInsightsPathRequest$DestinationPort' => '

The destination port.

', 'Explanation$LoadBalancerListenerPort' => '

The listener port of the load balancer.

', 'Explanation$LoadBalancerTargetPort' => '

The target port.

', 'Explanation$Port' => '

The port.

', 'FilterPortRange$FromPort' => '

The first port in the range.

', 'FilterPortRange$ToPort' => '

The last port in the range.

', 'RequestFilterPortRange$FromPort' => '

The first port in the range.

', 'RequestFilterPortRange$ToPort' => '

The last port in the range.

', ], ], 'PortRange' => [ 'base' => '

Describes a range of ports.

', 'refs' => [ 'AnalysisAclRule$PortRange' => '

The range of ports.

', 'AnalysisSecurityGroupRule$PortRange' => '

The port range.

', 'CreateNetworkAclEntryRequest$PortRange' => '

TCP or UDP protocols: The range of ports the rule applies to. Required if specifying protocol 6 (TCP) or 17 (UDP).

', 'NetworkAclEntry$PortRange' => '

TCP or UDP protocols: The range of ports the rule applies to.

', 'PortRangeList$member' => NULL, 'ReplaceNetworkAclEntryRequest$PortRange' => '

TCP or UDP protocols: The range of ports the rule applies to. Required if specifying protocol 6 (TCP) or 17 (UDP).

', ], ], 'PortRangeList' => [ 'base' => NULL, 'refs' => [ 'AnalysisPacketHeader$DestinationPortRanges' => '

The destination port ranges.

', 'AnalysisPacketHeader$SourcePortRanges' => '

The source port ranges.

', 'Explanation$PortRanges' => '

The port ranges.

', 'FirewallStatefulRule$SourcePorts' => '

The source ports.

', 'FirewallStatefulRule$DestinationPorts' => '

The destination ports.

', 'FirewallStatelessRule$SourcePorts' => '

The source ports.

', 'FirewallStatelessRule$DestinationPorts' => '

The destination ports.

', ], ], 'PrefixList' => [ 'base' => '

Describes prefixes for Amazon Web Services services.

', 'refs' => [ 'PrefixListSet$member' => NULL, ], ], 'PrefixListAssociation' => [ 'base' => '

Describes the resource with which a prefix list is associated.

', 'refs' => [ 'PrefixListAssociationSet$member' => NULL, ], ], 'PrefixListAssociationSet' => [ 'base' => NULL, 'refs' => [ 'GetManagedPrefixListAssociationsResult$PrefixListAssociations' => '

Information about the associations.

', ], ], 'PrefixListEntry' => [ 'base' => '

Describes a prefix list entry.

', 'refs' => [ 'PrefixListEntrySet$member' => NULL, ], ], 'PrefixListEntrySet' => [ 'base' => NULL, 'refs' => [ 'GetManagedPrefixListEntriesResult$Entries' => '

Information about the prefix list entries.

', ], ], 'PrefixListId' => [ 'base' => '

Describes a prefix list ID.

', 'refs' => [ 'PrefixListIdList$member' => NULL, ], ], 'PrefixListIdList' => [ 'base' => NULL, 'refs' => [ 'IpPermission$PrefixListIds' => '

The prefix list IDs.

', ], ], 'PrefixListIdSet' => [ 'base' => NULL, 'refs' => [ 'StaleIpPermission$PrefixListIds' => '

The prefix list IDs. Not applicable for stale security group rules.

', ], ], 'PrefixListMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedPrefixListsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetManagedPrefixListEntriesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'PrefixListResourceId' => [ 'base' => NULL, 'refs' => [ 'CreateLocalGatewayRouteRequest$DestinationPrefixListId' => '

The ID of the prefix list. Use a prefix list in place of DestinationCidrBlock. You cannot use DestinationPrefixListId and DestinationCidrBlock in the same request.

', 'CreateRouteRequest$DestinationPrefixListId' => '

The ID of a prefix list used for the destination match.

', 'CreateTransitGatewayPrefixListReferenceRequest$PrefixListId' => '

The ID of the prefix list that is used for destination matches.

', 'DeleteLocalGatewayRouteRequest$DestinationPrefixListId' => '

Use a prefix list in place of DestinationCidrBlock. You cannot use DestinationPrefixListId and DestinationCidrBlock in the same request.

', 'DeleteManagedPrefixListRequest$PrefixListId' => '

The ID of the prefix list.

', 'DeleteRouteRequest$DestinationPrefixListId' => '

The ID of the prefix list for the route.

', 'DeleteTransitGatewayPrefixListReferenceRequest$PrefixListId' => '

The ID of the prefix list.

', 'GetManagedPrefixListAssociationsRequest$PrefixListId' => '

The ID of the prefix list.

', 'GetManagedPrefixListEntriesRequest$PrefixListId' => '

The ID of the prefix list.

', 'LocalGatewayRoute$DestinationPrefixListId' => '

The ID of the prefix list.

', 'ManagedPrefixList$PrefixListId' => '

The ID of the prefix list.

', 'ModifyLocalGatewayRouteRequest$DestinationPrefixListId' => '

The ID of the prefix list. Use a prefix list in place of DestinationCidrBlock. You cannot use DestinationPrefixListId and DestinationCidrBlock in the same request.

', 'ModifyManagedPrefixListRequest$PrefixListId' => '

The ID of the prefix list.

', 'ModifyTransitGatewayPrefixListReferenceRequest$PrefixListId' => '

The ID of the prefix list.

', 'PrefixListResourceIdStringList$member' => NULL, 'ReplaceRouteRequest$DestinationPrefixListId' => '

The ID of the prefix list for the route.

', 'RestoreManagedPrefixListVersionRequest$PrefixListId' => '

The ID of the prefix list.

', 'SecurityGroupRule$PrefixListId' => '

The ID of the prefix list.

', 'SecurityGroupRuleRequest$PrefixListId' => '

The ID of the prefix list.

', 'TransitGatewayPrefixListReference$PrefixListId' => '

The ID of the prefix list.

', 'TransitGatewayRoute$PrefixListId' => '

The ID of the prefix list used for destination matches.

', ], ], 'PrefixListResourceIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribePrefixListsRequest$PrefixListIds' => '

One or more prefix list IDs.

', ], ], 'PrefixListSet' => [ 'base' => NULL, 'refs' => [ 'DescribePrefixListsResult$PrefixLists' => '

All available prefix lists.

', ], ], 'PrefixListState' => [ 'base' => NULL, 'refs' => [ 'ManagedPrefixList$State' => '

The current state of the prefix list.

', ], ], 'PriceSchedule' => [ 'base' => '

Describes the price for a Reserved Instance.

', 'refs' => [ 'PriceScheduleList$member' => NULL, ], ], 'PriceScheduleList' => [ 'base' => NULL, 'refs' => [ 'ReservedInstancesListing$PriceSchedules' => '

The price of the Reserved Instance listing.

', ], ], 'PriceScheduleSpecification' => [ 'base' => '

Describes the price for a Reserved Instance.

', 'refs' => [ 'PriceScheduleSpecificationList$member' => NULL, ], ], 'PriceScheduleSpecificationList' => [ 'base' => NULL, 'refs' => [ 'CreateReservedInstancesListingRequest$PriceSchedules' => '

A list specifying the price of the Standard Reserved Instance for each month remaining in the Reserved Instance term.

', ], ], 'PricingDetail' => [ 'base' => '

Describes a Reserved Instance offering.

', 'refs' => [ 'PricingDetailsList$member' => NULL, ], ], 'PricingDetailsList' => [ 'base' => NULL, 'refs' => [ 'ReservedInstancesOffering$PricingDetails' => '

The pricing details of the Reserved Instance offering.

', ], ], 'PrincipalIdFormat' => [ 'base' => '

PrincipalIdFormat description

', 'refs' => [ 'PrincipalIdFormatList$member' => NULL, ], ], 'PrincipalIdFormatList' => [ 'base' => NULL, 'refs' => [ 'DescribePrincipalIdFormatResult$Principals' => '

Information about the ID format settings for the ARN.

', ], ], 'PrincipalType' => [ 'base' => NULL, 'refs' => [ 'AddedPrincipal$PrincipalType' => '

The type of principal.

', 'AllowedPrincipal$PrincipalType' => '

The type of principal.

', ], ], 'Priority' => [ 'base' => NULL, 'refs' => [ 'FirewallStatelessRule$Priority' => '

The rule priority.

', ], ], 'PrivateDnsDetails' => [ 'base' => '

Information about the Private DNS name for interface endpoints.

', 'refs' => [ 'PrivateDnsDetailsSet$member' => NULL, ], ], 'PrivateDnsDetailsSet' => [ 'base' => NULL, 'refs' => [ 'ServiceDetail$PrivateDnsNames' => '

The private DNS names assigned to the VPC endpoint service.

', ], ], 'PrivateDnsNameConfiguration' => [ 'base' => '

Information about the private DNS name for the service endpoint.

', 'refs' => [ 'ServiceConfiguration$PrivateDnsNameConfiguration' => '

Information about the endpoint service private DNS name configuration.

', ], ], 'PrivateDnsNameOptionsOnLaunch' => [ 'base' => '

Describes the options for instance hostnames.

', 'refs' => [ 'Subnet$PrivateDnsNameOptionsOnLaunch' => '

The type of hostnames to assign to instances in the subnet at launch. An instance hostname is based on the IPv4 address or ID of the instance.

', ], ], 'PrivateDnsNameOptionsRequest' => [ 'base' => '

Describes the options for instance hostnames.

', 'refs' => [ 'RunInstancesRequest$PrivateDnsNameOptions' => '

The options for the instance hostname. The default values are inherited from the subnet. Applies only if creating a network interface, not attaching an existing one.

', ], ], 'PrivateDnsNameOptionsResponse' => [ 'base' => '

Describes the options for instance hostnames.

', 'refs' => [ 'Instance$PrivateDnsNameOptions' => '

The options for the instance hostname.

', ], ], 'PrivateIpAddressConfigSet' => [ 'base' => NULL, 'refs' => [ 'ScheduledInstancesNetworkInterface$PrivateIpAddressConfigs' => '

The private IPv4 addresses.

', ], ], 'PrivateIpAddressCount' => [ 'base' => NULL, 'refs' => [ 'AssignPrivateNatGatewayAddressRequest$PrivateIpAddressCount' => '

The number of private IP addresses to assign to the NAT gateway. You can\'t specify this parameter when also specifying private IP addresses.

', 'CreateNatGatewayRequest$SecondaryPrivateIpAddressCount' => '

[Private NAT gateway only] The number of secondary private IPv4 addresses you want to assign to the NAT gateway. For more information about secondary addresses, see Create a NAT gateway in the Amazon VPC User Guide.

', ], ], 'PrivateIpAddressSpecification' => [ 'base' => '

Describes a secondary private IPv4 address for a network interface.

', 'refs' => [ 'PrivateIpAddressSpecificationList$member' => NULL, ], ], 'PrivateIpAddressSpecificationList' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInterfaceRequest$PrivateIpAddresses' => '

The private IPv4 addresses.

You can\'t specify private IPv4 addresses if you\'ve specified one of the following: a count of private IPv4 addresses, specific IPv4 prefixes, or a count of IPv4 prefixes.

', 'InstanceNetworkInterfaceSpecification$PrivateIpAddresses' => '

The private IPv4 addresses to assign to the network interface. Only one private IPv4 address can be designated as primary. You cannot specify this option if you\'re launching more than one instance in a RunInstances request.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$PrivateIpAddresses' => '

One or more private IPv4 addresses.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$PrivateIpAddresses' => '

One or more private IPv4 addresses.

', ], ], 'PrivateIpAddressStringList' => [ 'base' => NULL, 'refs' => [ 'AssignPrivateIpAddressesRequest$PrivateIpAddresses' => '

The IP addresses to be assigned as a secondary private IP address to the network interface. You can\'t specify this parameter when also specifying a number of secondary IP addresses.

If you don\'t specify an IP address, Amazon EC2 automatically selects an IP address within the subnet range.

', 'UnassignPrivateIpAddressesRequest$PrivateIpAddresses' => '

The secondary private IP addresses to unassign from the network interface. You can specify this option multiple times to unassign more than one IP address.

', ], ], 'ProcessorInfo' => [ 'base' => '

Describes the processor used by the instance type.

', 'refs' => [ 'InstanceTypeInfo$ProcessorInfo' => '

Describes the processor.

', ], ], 'ProcessorSustainedClockSpeed' => [ 'base' => NULL, 'refs' => [ 'ProcessorInfo$SustainedClockSpeedInGhz' => '

The speed of the processor, in GHz.

', ], ], 'ProductCode' => [ 'base' => '

Describes a product code.

', 'refs' => [ 'ProductCodeList$member' => NULL, ], ], 'ProductCodeList' => [ 'base' => NULL, 'refs' => [ 'DescribeSnapshotAttributeResult$ProductCodes' => '

The product codes.

', 'DescribeVolumeAttributeResult$ProductCodes' => '

A list of product codes.

', 'FpgaImage$ProductCodes' => '

The product codes for the AFI.

', 'FpgaImageAttribute$ProductCodes' => '

The product codes.

', 'Image$ProductCodes' => '

Any product codes associated with the AMI.

', 'ImageAttribute$ProductCodes' => '

The product codes.

', 'Instance$ProductCodes' => '

The product codes attached to this instance, if applicable.

', 'InstanceAttribute$ProductCodes' => '

A list of product codes.

', ], ], 'ProductCodeStringList' => [ 'base' => NULL, 'refs' => [ 'ModifyFpgaImageAttributeRequest$ProductCodes' => '

The product codes. After you add a product code to an AFI, it can\'t be removed. This parameter is valid only when modifying the productCodes attribute.

', 'ModifyImageAttributeRequest$ProductCodes' => '

Not supported.

', ], ], 'ProductCodeValues' => [ 'base' => NULL, 'refs' => [ 'ProductCode$ProductCodeType' => '

The type of product code.

', ], ], 'ProductDescriptionList' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotPriceHistoryRequest$ProductDescriptions' => '

Filters the results by the specified basic product descriptions.

', ], ], 'PropagatingVgw' => [ 'base' => '

Describes a virtual private gateway propagating route.

', 'refs' => [ 'PropagatingVgwList$member' => NULL, ], ], 'PropagatingVgwList' => [ 'base' => NULL, 'refs' => [ 'RouteTable$PropagatingVgws' => '

Any virtual private gateway (VGW) propagating routes.

', ], ], 'Protocol' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInsightsPathRequest$Protocol' => '

The protocol.

', 'NetworkInsightsPath$Protocol' => '

The protocol.

', 'ProtocolList$member' => NULL, ], ], 'ProtocolInt' => [ 'base' => NULL, 'refs' => [ 'ProtocolIntList$member' => NULL, ], ], 'ProtocolIntList' => [ 'base' => NULL, 'refs' => [ 'FirewallStatelessRule$Protocols' => '

The protocols.

', ], ], 'ProtocolList' => [ 'base' => NULL, 'refs' => [ 'PacketHeaderStatement$Protocols' => '

The protocols.

', 'PacketHeaderStatementRequest$Protocols' => '

The protocols.

', ], ], 'ProtocolValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayConnectRequestOptions$Protocol' => '

The tunnel protocol.

', 'TransitGatewayConnectOptions$Protocol' => '

The tunnel protocol.

', 'TransitGatewayConnectPeerConfiguration$Protocol' => '

The tunnel protocol.

', ], ], 'ProvisionByoipCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionByoipCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionIpamByoasnRequest' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionIpamByoasnResult' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionIpamPoolCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionIpamPoolCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionPublicIpv4PoolCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionPublicIpv4PoolCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionedBandwidth' => [ 'base' => '

Reserved. If you need to sustain traffic greater than the documented limits, contact us through the Support Center.

', 'refs' => [ 'NatGateway$ProvisionedBandwidth' => '

Reserved. If you need to sustain traffic greater than the documented limits, contact us through the Support Center.

', ], ], 'PtrUpdateStatus' => [ 'base' => '

The status of an updated pointer (PTR) record for an Elastic IP address.

', 'refs' => [ 'AddressAttribute$PtrRecordUpdate' => '

The updated PTR record for the IP address.

', ], ], 'PublicIpAddress' => [ 'base' => NULL, 'refs' => [ 'AddressAttribute$PublicIp' => '

The public IP address.

', 'AllocateAddressRequest$Address' => '

The Elastic IP address to recover or an IPv4 address from an address pool.

', ], ], 'PublicIpStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressesRequest$PublicIps' => '

One or more Elastic IP addresses.

Default: Describes all your Elastic IP addresses.

', ], ], 'PublicIpv4Pool' => [ 'base' => '

Describes an IPv4 address pool.

', 'refs' => [ 'PublicIpv4PoolSet$member' => NULL, ], ], 'PublicIpv4PoolIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribePublicIpv4PoolsRequest$PoolIds' => '

The IDs of the address pools.

', ], ], 'PublicIpv4PoolRange' => [ 'base' => '

Describes an address range of an IPv4 address pool.

', 'refs' => [ 'ProvisionPublicIpv4PoolCidrResult$PoolAddressRange' => '

Information about the address range of the public IPv4 pool.

', 'PublicIpv4PoolRangeSet$member' => NULL, ], ], 'PublicIpv4PoolRangeSet' => [ 'base' => NULL, 'refs' => [ 'PublicIpv4Pool$PoolAddressRanges' => '

The address ranges.

', ], ], 'PublicIpv4PoolSet' => [ 'base' => NULL, 'refs' => [ 'DescribePublicIpv4PoolsResult$PublicIpv4Pools' => '

Information about the address pools.

', ], ], 'Purchase' => [ 'base' => '

Describes the result of the purchase.

', 'refs' => [ 'PurchaseSet$member' => NULL, ], ], 'PurchaseCapacityBlockRequest' => [ 'base' => NULL, 'refs' => [], ], 'PurchaseCapacityBlockResult' => [ 'base' => NULL, 'refs' => [], ], 'PurchaseHostReservationRequest' => [ 'base' => NULL, 'refs' => [], ], 'PurchaseHostReservationResult' => [ 'base' => NULL, 'refs' => [], ], 'PurchaseRequest' => [ 'base' => '

Describes a request to purchase Scheduled Instances.

', 'refs' => [ 'PurchaseRequestSet$member' => NULL, ], ], 'PurchaseRequestSet' => [ 'base' => NULL, 'refs' => [ 'PurchaseScheduledInstancesRequest$PurchaseRequests' => '

The purchase requests.

', ], ], 'PurchaseReservedInstancesOfferingRequest' => [ 'base' => '

Contains the parameters for PurchaseReservedInstancesOffering.

', 'refs' => [], ], 'PurchaseReservedInstancesOfferingResult' => [ 'base' => '

Contains the output of PurchaseReservedInstancesOffering.

', 'refs' => [], ], 'PurchaseScheduledInstancesRequest' => [ 'base' => '

Contains the parameters for PurchaseScheduledInstances.

', 'refs' => [], ], 'PurchaseScheduledInstancesResult' => [ 'base' => '

Contains the output of PurchaseScheduledInstances.

', 'refs' => [], ], 'PurchaseSet' => [ 'base' => NULL, 'refs' => [ 'GetHostReservationPurchasePreviewResult$Purchase' => '

The purchase information of the Dedicated Host reservation and the Dedicated Hosts associated with it.

', 'PurchaseHostReservationResult$Purchase' => '

Describes the details of the purchase.

', ], ], 'PurchasedScheduledInstanceSet' => [ 'base' => NULL, 'refs' => [ 'PurchaseScheduledInstancesResult$ScheduledInstanceSet' => '

Information about the Scheduled Instances.

', ], ], 'RIProductDescription' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesOfferingsRequest$ProductDescription' => '

The Reserved Instance product platform description. Instances that include (Amazon VPC) in the description are for use with Amazon VPC.

', 'ReservedInstances$ProductDescription' => '

The Reserved Instance product platform description.

', 'ReservedInstancesOffering$ProductDescription' => '

The Reserved Instance product platform description.

', 'SpotInstanceRequest$ProductDescription' => '

The product description associated with the Spot Instance.

', 'SpotPrice$ProductDescription' => '

A general description of the AMI.

', ], ], 'RamdiskId' => [ 'base' => NULL, 'refs' => [ 'RegisterImageRequest$RamdiskId' => '

The ID of the RAM disk.

', 'RequestLaunchTemplateData$RamDiskId' => '

The ID of the RAM disk.

We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see User provided kernels in the Amazon Elastic Compute Cloud User Guide.

', 'RequestSpotLaunchSpecification$RamdiskId' => '

The ID of the RAM disk.

', 'RunInstancesRequest$RamdiskId' => '

The ID of the RAM disk to select. Some kernels require additional drivers at launch. Check the kernel requirements for information about whether you need to specify a RAM disk. To find kernel requirements, go to the Amazon Web Services Resource Center and search for the kernel ID.

We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see PV-GRUB in the Amazon EC2 User Guide.

', 'ScheduledInstancesLaunchSpecification$RamdiskId' => '

The ID of the RAM disk.

', ], ], 'ReasonCodesList' => [ 'base' => NULL, 'refs' => [ 'ReportInstanceStatusRequest$ReasonCodes' => '

The reason codes that describe the health state of your instance.

  • instance-stuck-in-state: My instance is stuck in a state.

  • unresponsive: My instance is unresponsive.

  • not-accepting-credentials: My instance is not accepting my credentials.

  • password-not-available: A password is not available for my instance.

  • performance-network: My instance is experiencing performance problems that I believe are network related.

  • performance-instance-store: My instance is experiencing performance problems that I believe are related to the instance stores.

  • performance-ebs-volume: My instance is experiencing performance problems that I believe are related to an EBS volume.

  • performance-other: My instance is experiencing performance problems.

  • other: [explain using the description parameter]

', ], ], 'RebootInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'RecurringCharge' => [ 'base' => '

Describes a recurring charge.

', 'refs' => [ 'RecurringChargesList$member' => NULL, ], ], 'RecurringChargeFrequency' => [ 'base' => NULL, 'refs' => [ 'RecurringCharge$Frequency' => '

The frequency of the recurring charge.

', ], ], 'RecurringChargesList' => [ 'base' => NULL, 'refs' => [ 'ReservedInstances$RecurringCharges' => '

The recurring charge tag assigned to the resource.

', 'ReservedInstancesOffering$RecurringCharges' => '

The recurring charge tag assigned to the resource.

', ], ], 'ReferencedSecurityGroup' => [ 'base' => '

Describes the security group that is referenced in the security group rule.

', 'refs' => [ 'SecurityGroupRule$ReferencedGroupInfo' => '

Describes the security group that is referenced in the rule.

', ], ], 'Region' => [ 'base' => '

Describes a Region.

', 'refs' => [ 'RegionList$member' => NULL, ], ], 'RegionList' => [ 'base' => NULL, 'refs' => [ 'DescribeRegionsResult$Regions' => '

Information about the Regions.

', ], ], 'RegionNameStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeRegionsRequest$RegionNames' => '

The names of the Regions. You can specify any Regions, whether they are enabled and disabled for your account.

', ], ], 'RegionNames' => [ 'base' => NULL, 'refs' => [ 'GetSpotPlacementScoresRequest$RegionNames' => '

The Regions used to narrow down the list of Regions to be scored. Enter the Region code, for example, us-east-1.

', ], ], 'RegisterImageRequest' => [ 'base' => '

Contains the parameters for RegisterImage.

', 'refs' => [], ], 'RegisterImageResult' => [ 'base' => '

Contains the output of RegisterImage.

', 'refs' => [], ], 'RegisterInstanceEventNotificationAttributesRequest' => [ 'base' => NULL, 'refs' => [], ], 'RegisterInstanceEventNotificationAttributesResult' => [ 'base' => NULL, 'refs' => [], ], 'RegisterInstanceTagAttributeRequest' => [ 'base' => '

Information about the tag keys to register for the current Region. You can either specify individual tag keys or register all tag keys in the current Region. You must specify either IncludeAllTagsOfInstance or InstanceTagKeys in the request

', 'refs' => [ 'RegisterInstanceEventNotificationAttributesRequest$InstanceTagAttribute' => '

Information about the tag keys to register.

', ], ], 'RegisterTransitGatewayMulticastGroupMembersRequest' => [ 'base' => NULL, 'refs' => [], ], 'RegisterTransitGatewayMulticastGroupMembersResult' => [ 'base' => NULL, 'refs' => [], ], 'RegisterTransitGatewayMulticastGroupSourcesRequest' => [ 'base' => NULL, 'refs' => [], ], 'RegisterTransitGatewayMulticastGroupSourcesResult' => [ 'base' => NULL, 'refs' => [], ], 'RejectTransitGatewayMulticastDomainAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'RejectTransitGatewayMulticastDomainAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'RejectTransitGatewayPeeringAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'RejectTransitGatewayPeeringAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'RejectTransitGatewayVpcAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'RejectTransitGatewayVpcAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'RejectVpcEndpointConnectionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'RejectVpcEndpointConnectionsResult' => [ 'base' => NULL, 'refs' => [], ], 'RejectVpcPeeringConnectionRequest' => [ 'base' => NULL, 'refs' => [], ], 'RejectVpcPeeringConnectionResult' => [ 'base' => NULL, 'refs' => [], ], 'ReleaseAddressRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReleaseHostsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReleaseHostsResult' => [ 'base' => NULL, 'refs' => [], ], 'ReleaseIpamPoolAllocationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReleaseIpamPoolAllocationResult' => [ 'base' => NULL, 'refs' => [], ], 'RemoveIpamOperatingRegion' => [ 'base' => '

Remove an operating Region from an IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

For more information about operating Regions, see Create an IPAM in the Amazon VPC IPAM User Guide

', 'refs' => [ 'RemoveIpamOperatingRegionSet$member' => NULL, ], ], 'RemoveIpamOperatingRegionSet' => [ 'base' => NULL, 'refs' => [ 'ModifyIpamRequest$RemoveOperatingRegions' => '

The operating Regions to remove.

', 'ModifyIpamResourceDiscoveryRequest$RemoveOperatingRegions' => '

Remove operating Regions.

', ], ], 'RemovePrefixListEntries' => [ 'base' => NULL, 'refs' => [ 'ModifyManagedPrefixListRequest$RemoveEntries' => '

One or more entries to remove from the prefix list.

', ], ], 'RemovePrefixListEntry' => [ 'base' => '

An entry for a prefix list.

', 'refs' => [ 'RemovePrefixListEntries$member' => NULL, ], ], 'ReplaceIamInstanceProfileAssociationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceIamInstanceProfileAssociationResult' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceNetworkAclAssociationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceNetworkAclAssociationResult' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceNetworkAclEntryRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceRootVolumeTask' => [ 'base' => '

Information about a root volume replacement task.

', 'refs' => [ 'CreateReplaceRootVolumeTaskResult$ReplaceRootVolumeTask' => '

Information about the root volume replacement task.

', 'ReplaceRootVolumeTasks$member' => NULL, ], ], 'ReplaceRootVolumeTaskId' => [ 'base' => NULL, 'refs' => [ 'ReplaceRootVolumeTask$ReplaceRootVolumeTaskId' => '

The ID of the root volume replacement task.

', 'ReplaceRootVolumeTaskIds$member' => NULL, ], ], 'ReplaceRootVolumeTaskIds' => [ 'base' => NULL, 'refs' => [ 'DescribeReplaceRootVolumeTasksRequest$ReplaceRootVolumeTaskIds' => '

The ID of the root volume replacement task to view.

', ], ], 'ReplaceRootVolumeTaskState' => [ 'base' => NULL, 'refs' => [ 'ReplaceRootVolumeTask$TaskState' => '

The state of the task. The task can be in one of the following states:

  • pending - the replacement volume is being created.

  • in-progress - the original volume is being detached and the replacement volume is being attached.

  • succeeded - the replacement volume has been successfully attached to the instance and the instance is available.

  • failing - the replacement task is in the process of failing.

  • failed - the replacement task has failed but the original root volume is still attached.

  • failing-detached - the replacement task is in the process of failing. The instance might have no root volume attached.

  • failed-detached - the replacement task has failed and the instance has no root volume attached.

', ], ], 'ReplaceRootVolumeTasks' => [ 'base' => NULL, 'refs' => [ 'DescribeReplaceRootVolumeTasksResult$ReplaceRootVolumeTasks' => '

Information about the root volume replacement task.

', ], ], 'ReplaceRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceRouteTableAssociationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceRouteTableAssociationResult' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceTransitGatewayRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceTransitGatewayRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceVpnTunnelRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceVpnTunnelResult' => [ 'base' => NULL, 'refs' => [], ], 'ReplacementStrategy' => [ 'base' => NULL, 'refs' => [ 'SpotCapacityRebalance$ReplacementStrategy' => '

The replacement strategy to use. Only available for fleets of type maintain.

launch - Spot Fleet launches a new replacement Spot Instance when a rebalance notification is emitted for an existing Spot Instance in the fleet. Spot Fleet does not terminate the instances that receive a rebalance notification. You can terminate the old instances, or you can leave them running. You are charged for all instances while they are running.

launch-before-terminate - Spot Fleet launches a new replacement Spot Instance when a rebalance notification is emitted for an existing Spot Instance in the fleet, and then, after a delay that you specify (in TerminationDelay), terminates the instances that received a rebalance notification.

', ], ], 'ReportInstanceReasonCodes' => [ 'base' => NULL, 'refs' => [ 'ReasonCodesList$member' => NULL, ], ], 'ReportInstanceStatusRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReportStatusType' => [ 'base' => NULL, 'refs' => [ 'ReportInstanceStatusRequest$Status' => '

The status of all instances listed.

', ], ], 'RequestFilterPortRange' => [ 'base' => '

Describes a port range.

', 'refs' => [ 'PathRequestFilter$SourcePortRange' => '

The source port range.

', 'PathRequestFilter$DestinationPortRange' => '

The destination port range.

', ], ], 'RequestHostIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeHostsRequest$HostIds' => '

The IDs of the Dedicated Hosts. The IDs are used for targeted instance launches.

', 'ModifyHostsRequest$HostIds' => '

The IDs of the Dedicated Hosts to modify.

', 'ReleaseHostsRequest$HostIds' => '

The IDs of the Dedicated Hosts to release.

', ], ], 'RequestHostIdSet' => [ 'base' => NULL, 'refs' => [ 'GetHostReservationPurchasePreviewRequest$HostIdSet' => '

The IDs of the Dedicated Hosts with which the reservation is associated.

', 'PurchaseHostReservationRequest$HostIdSet' => '

The IDs of the Dedicated Hosts with which the reservation will be associated.

', ], ], 'RequestInstanceTypeList' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTypesRequest$InstanceTypes' => '

The instance types. For more information, see Instance types in the Amazon EC2 User Guide.

', ], ], 'RequestIpamResourceTag' => [ 'base' => '

A tag on an IPAM resource.

', 'refs' => [ 'GetIpamResourceCidrsRequest$ResourceTag' => '

The resource tag.

', 'RequestIpamResourceTagList$member' => NULL, ], ], 'RequestIpamResourceTagList' => [ 'base' => NULL, 'refs' => [ 'CreateIpamPoolRequest$AllocationResourceTags' => '

Tags that are required for resources that use CIDRs from this IPAM pool. Resources that do not have these tags will not be allowed to allocate space from the pool. If the resources have their tags changed after they have allocated space or if the allocation tagging requirements are changed on the pool, the resource may be marked as noncompliant.

', 'ModifyIpamPoolRequest$AddAllocationResourceTags' => '

Add tag allocation rules to a pool. For more information about allocation rules, see Create a top-level pool in the Amazon VPC IPAM User Guide.

', 'ModifyIpamPoolRequest$RemoveAllocationResourceTags' => '

Remove tag allocation rules from a pool.

', ], ], 'RequestLaunchTemplateData' => [ 'base' => '

The information to include in the launch template.

You must specify at least one parameter for the launch template data.

', 'refs' => [ 'CreateLaunchTemplateRequest$LaunchTemplateData' => '

The information for the launch template.

', 'CreateLaunchTemplateVersionRequest$LaunchTemplateData' => '

The information for the launch template.

', ], ], 'RequestSpotFleetRequest' => [ 'base' => '

Contains the parameters for RequestSpotFleet.

', 'refs' => [], ], 'RequestSpotFleetResponse' => [ 'base' => '

Contains the output of RequestSpotFleet.

', 'refs' => [], ], 'RequestSpotInstancesRequest' => [ 'base' => '

Contains the parameters for RequestSpotInstances.

', 'refs' => [], ], 'RequestSpotInstancesResult' => [ 'base' => '

Contains the output of RequestSpotInstances.

', 'refs' => [], ], 'RequestSpotLaunchSpecification' => [ 'base' => '

Describes the launch specification for an instance.

', 'refs' => [ 'RequestSpotInstancesRequest$LaunchSpecification' => '

The launch specification.

', ], ], 'RequestSpotLaunchSpecificationSecurityGroupIdList' => [ 'base' => NULL, 'refs' => [ 'RequestSpotLaunchSpecification$SecurityGroupIds' => '

The IDs of the security groups.

', ], ], 'RequestSpotLaunchSpecificationSecurityGroupList' => [ 'base' => NULL, 'refs' => [ 'RequestSpotLaunchSpecification$SecurityGroups' => '

Not supported.

', ], ], 'Reservation' => [ 'base' => '

Describes a launch request for one or more instances, and includes owner, requester, and security group information that applies to all instances in the launch request.

', 'refs' => [ 'ReservationList$member' => NULL, ], ], 'ReservationFleetInstanceSpecification' => [ 'base' => '

Information about an instance type to use in a Capacity Reservation Fleet.

', 'refs' => [ 'ReservationFleetInstanceSpecificationList$member' => NULL, ], ], 'ReservationFleetInstanceSpecificationList' => [ 'base' => NULL, 'refs' => [ 'CreateCapacityReservationFleetRequest$InstanceTypeSpecifications' => '

Information about the instance types for which to reserve the capacity.

', ], ], 'ReservationId' => [ 'base' => NULL, 'refs' => [ 'CreateReservedInstancesListingRequest$ReservedInstancesId' => '

The ID of the active Standard Reserved Instance.

', 'DeleteQueuedReservedInstancesIdList$member' => NULL, 'DescribeReservedInstancesListingsRequest$ReservedInstancesId' => '

One or more Reserved Instance IDs.

', 'ReservedInstanceIdSet$member' => NULL, 'ReservedInstancesIdStringList$member' => NULL, ], ], 'ReservationList' => [ 'base' => NULL, 'refs' => [ 'DescribeInstancesResult$Reservations' => '

Information about the reservations.

', ], ], 'ReservationState' => [ 'base' => NULL, 'refs' => [ 'HostReservation$State' => '

The state of the reservation.

', ], ], 'ReservationValue' => [ 'base' => '

The cost associated with the Reserved Instance.

', 'refs' => [ 'GetReservedInstancesExchangeQuoteResult$ReservedInstanceValueRollup' => '

The cost associated with the Reserved Instance.

', 'GetReservedInstancesExchangeQuoteResult$TargetConfigurationValueRollup' => '

The cost associated with the Reserved Instance.

', 'ReservedInstanceReservationValue$ReservationValue' => '

The total value of the Convertible Reserved Instance that you are exchanging.

', 'TargetReservationValue$ReservationValue' => '

The total value of the Convertible Reserved Instances that make up the exchange. This is the sum of the list value, remaining upfront price, and additional upfront cost of the exchange.

', ], ], 'ReservedInstanceIdSet' => [ 'base' => NULL, 'refs' => [ 'AcceptReservedInstancesExchangeQuoteRequest$ReservedInstanceIds' => '

The IDs of the Convertible Reserved Instances to exchange for another Convertible Reserved Instance of the same or higher value.

', 'GetReservedInstancesExchangeQuoteRequest$ReservedInstanceIds' => '

The IDs of the Convertible Reserved Instances to exchange.

', ], ], 'ReservedInstanceLimitPrice' => [ 'base' => '

Describes the limit price of a Reserved Instance offering.

', 'refs' => [ 'PurchaseReservedInstancesOfferingRequest$LimitPrice' => '

Specified for Reserved Instance Marketplace offerings to limit the total order and ensure that the Reserved Instances are not purchased at unexpected prices.

', ], ], 'ReservedInstanceReservationValue' => [ 'base' => '

The total value of the Convertible Reserved Instance.

', 'refs' => [ 'ReservedInstanceReservationValueSet$member' => NULL, ], ], 'ReservedInstanceReservationValueSet' => [ 'base' => NULL, 'refs' => [ 'GetReservedInstancesExchangeQuoteResult$ReservedInstanceValueSet' => '

The configuration of your Convertible Reserved Instances.

', ], ], 'ReservedInstanceState' => [ 'base' => NULL, 'refs' => [ 'ReservedInstances$State' => '

The state of the Reserved Instance purchase.

', ], ], 'ReservedInstances' => [ 'base' => '

Describes a Reserved Instance.

', 'refs' => [ 'ReservedInstancesList$member' => NULL, ], ], 'ReservedInstancesConfiguration' => [ 'base' => '

Describes the configuration settings for the modified Reserved Instances.

', 'refs' => [ 'ReservedInstancesConfigurationList$member' => NULL, 'ReservedInstancesModificationResult$TargetConfiguration' => '

The target Reserved Instances configurations supplied as part of the modification request.

', ], ], 'ReservedInstancesConfigurationList' => [ 'base' => NULL, 'refs' => [ 'ModifyReservedInstancesRequest$TargetConfigurations' => '

The configuration settings for the Reserved Instances to modify.

', ], ], 'ReservedInstancesId' => [ 'base' => '

Describes the ID of a Reserved Instance.

', 'refs' => [ 'ReservedIntancesIds$member' => NULL, ], ], 'ReservedInstancesIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesRequest$ReservedInstancesIds' => '

One or more Reserved Instance IDs.

Default: Describes all your Reserved Instances, or only those otherwise specified.

', 'ModifyReservedInstancesRequest$ReservedInstancesIds' => '

The IDs of the Reserved Instances to modify.

', ], ], 'ReservedInstancesList' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesResult$ReservedInstances' => '

A list of Reserved Instances.

', ], ], 'ReservedInstancesListing' => [ 'base' => '

Describes a Reserved Instance listing.

', 'refs' => [ 'ReservedInstancesListingList$member' => NULL, ], ], 'ReservedInstancesListingId' => [ 'base' => NULL, 'refs' => [ 'CancelReservedInstancesListingRequest$ReservedInstancesListingId' => '

The ID of the Reserved Instance listing.

', 'DescribeReservedInstancesListingsRequest$ReservedInstancesListingId' => '

One or more Reserved Instance listing IDs.

', ], ], 'ReservedInstancesListingList' => [ 'base' => NULL, 'refs' => [ 'CancelReservedInstancesListingResult$ReservedInstancesListings' => '

The Reserved Instance listing.

', 'CreateReservedInstancesListingResult$ReservedInstancesListings' => '

Information about the Standard Reserved Instance listing.

', 'DescribeReservedInstancesListingsResult$ReservedInstancesListings' => '

Information about the Reserved Instance listing.

', ], ], 'ReservedInstancesModification' => [ 'base' => '

Describes a Reserved Instance modification.

', 'refs' => [ 'ReservedInstancesModificationList$member' => NULL, ], ], 'ReservedInstancesModificationId' => [ 'base' => NULL, 'refs' => [ 'ReservedInstancesModificationIdStringList$member' => NULL, ], ], 'ReservedInstancesModificationIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesModificationsRequest$ReservedInstancesModificationIds' => '

IDs for the submitted modification request.

', ], ], 'ReservedInstancesModificationList' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesModificationsResult$ReservedInstancesModifications' => '

The Reserved Instance modification information.

', ], ], 'ReservedInstancesModificationResult' => [ 'base' => '

Describes the modification request/s.

', 'refs' => [ 'ReservedInstancesModificationResultList$member' => NULL, ], ], 'ReservedInstancesModificationResultList' => [ 'base' => NULL, 'refs' => [ 'ReservedInstancesModification$ModificationResults' => '

Contains target configurations along with their corresponding new Reserved Instance IDs.

', ], ], 'ReservedInstancesOffering' => [ 'base' => '

Describes a Reserved Instance offering.

', 'refs' => [ 'ReservedInstancesOfferingList$member' => NULL, ], ], 'ReservedInstancesOfferingId' => [ 'base' => NULL, 'refs' => [ 'PurchaseReservedInstancesOfferingRequest$ReservedInstancesOfferingId' => '

The ID of the Reserved Instance offering to purchase.

', 'ReservedInstancesOfferingIdStringList$member' => NULL, 'TargetConfigurationRequest$OfferingId' => '

The Convertible Reserved Instance offering ID.

', ], ], 'ReservedInstancesOfferingIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesOfferingsRequest$ReservedInstancesOfferingIds' => '

One or more Reserved Instances offering IDs.

', ], ], 'ReservedInstancesOfferingList' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesOfferingsResult$ReservedInstancesOfferings' => '

A list of Reserved Instances offerings.

', ], ], 'ReservedIntancesIds' => [ 'base' => NULL, 'refs' => [ 'ReservedInstancesModification$ReservedInstancesIds' => '

The IDs of one or more Reserved Instances.

', ], ], 'ResetAddressAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ResetAddressAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'ResetEbsDefaultKmsKeyIdRequest' => [ 'base' => NULL, 'refs' => [], ], 'ResetEbsDefaultKmsKeyIdResult' => [ 'base' => NULL, 'refs' => [], ], 'ResetFpgaImageAttributeName' => [ 'base' => NULL, 'refs' => [ 'ResetFpgaImageAttributeRequest$Attribute' => '

The attribute.

', ], ], 'ResetFpgaImageAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ResetFpgaImageAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'ResetImageAttributeName' => [ 'base' => NULL, 'refs' => [ 'ResetImageAttributeRequest$Attribute' => '

The attribute to reset (currently you can only reset the launch permission attribute).

', ], ], 'ResetImageAttributeRequest' => [ 'base' => '

Contains the parameters for ResetImageAttribute.

', 'refs' => [], ], 'ResetInstanceAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ResetNetworkInterfaceAttributeRequest' => [ 'base' => '

Contains the parameters for ResetNetworkInterfaceAttribute.

', 'refs' => [], ], 'ResetSnapshotAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ResourceArn' => [ 'base' => NULL, 'refs' => [ 'AnalysisRouteTableRoute$CoreNetworkArn' => '

The Amazon Resource Name (ARN) of a core network.

', 'ArnList$member' => NULL, 'AssociatedRole$AssociatedRoleArn' => '

The ARN of the associated IAM role.

', 'CoipPool$PoolArn' => '

The ARN of the address pool.

', 'Ec2InstanceConnectEndpoint$InstanceConnectEndpointArn' => '

The Amazon Resource Name (ARN) of the EC2 Instance Connect Endpoint.

', 'Explanation$LoadBalancerArn' => '

The Amazon Resource Name (ARN) of the load balancer.

', 'FirewallStatefulRule$RuleGroupArn' => '

The ARN of the stateful rule group.

', 'FirewallStatelessRule$RuleGroupArn' => '

The ARN of the stateless rule group.

', 'Ipam$IpamArn' => '

The Amazon Resource Name (ARN) of the IPAM.

', 'IpamPool$IpamPoolArn' => '

The Amazon Resource Name (ARN) of the IPAM pool.

', 'IpamPool$IpamScopeArn' => '

The ARN of the scope of the IPAM pool.

', 'IpamPool$IpamArn' => '

The ARN of the IPAM.

', 'IpamResourceDiscoveryAssociation$IpamArn' => '

The IPAM ARN.

', 'IpamScope$IpamScopeArn' => '

The Amazon Resource Name (ARN) of the scope.

', 'IpamScope$IpamArn' => '

The ARN of the IPAM.

', 'LocalGatewayRoute$LocalGatewayRouteTableArn' => '

The Amazon Resource Name (ARN) of the local gateway route table.

', 'LocalGatewayRouteTable$LocalGatewayRouteTableArn' => '

The Amazon Resource Name (ARN) of the local gateway route table.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation$LocalGatewayRouteTableArn' => '

The Amazon Resource Name (ARN) of the local gateway route table for the virtual interface group.

', 'LocalGatewayRouteTableVpcAssociation$LocalGatewayRouteTableArn' => '

The Amazon Resource Name (ARN) of the local gateway route table for the association.

', 'ManagedPrefixList$PrefixListArn' => '

The Amazon Resource Name (ARN) for the prefix list.

', 'NetworkInsightsAccessScope$NetworkInsightsAccessScopeArn' => '

The Amazon Resource Name (ARN) of the Network Access Scope.

', 'NetworkInsightsAccessScopeAnalysis$NetworkInsightsAccessScopeAnalysisArn' => '

The Amazon Resource Name (ARN) of the Network Access Scope analysis.

', 'NetworkInsightsAnalysis$NetworkInsightsAnalysisArn' => '

The Amazon Resource Name (ARN) of the network insights analysis.

', 'NetworkInsightsPath$NetworkInsightsPathArn' => '

The Amazon Resource Name (ARN) of the path.

', 'NetworkInsightsPath$SourceArn' => '

The Amazon Resource Name (ARN) of the source.

', 'NetworkInsightsPath$DestinationArn' => '

The Amazon Resource Name (ARN) of the destination.

', 'RuleGroupRuleOptionsPair$RuleGroupArn' => '

The ARN of the rule group.

', 'RuleGroupTypePair$RuleGroupArn' => '

The ARN of the rule group.

', ], ], 'ResourceIdList' => [ 'base' => NULL, 'refs' => [ 'CreateTagsRequest$Resources' => '

The IDs of the resources, separated by spaces.

Constraints: Up to 1000 resource IDs. We recommend breaking up this request into smaller batches.

', 'DeleteTagsRequest$Resources' => '

The IDs of the resources, separated by spaces.

Constraints: Up to 1000 resource IDs. We recommend breaking up this request into smaller batches.

', ], ], 'ResourceList' => [ 'base' => NULL, 'refs' => [ 'DescribePrincipalIdFormatRequest$Resources' => '

The type of resource: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | instance | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | reservation | route-table | route-table-association | security-group | snapshot | subnet | subnet-cidr-block-association | volume | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway

', ], ], 'ResourceStatement' => [ 'base' => '

Describes a resource statement.

', 'refs' => [ 'PathStatement$ResourceStatement' => '

The resource statement.

', 'ThroughResourcesStatement$ResourceStatement' => '

The resource statement.

', ], ], 'ResourceStatementRequest' => [ 'base' => '

Describes a resource statement.

', 'refs' => [ 'PathStatementRequest$ResourceStatement' => '

The resource statement.

', 'ThroughResourcesStatementRequest$ResourceStatement' => '

The resource statement.

', ], ], 'ResourceType' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateTagSpecification$ResourceType' => '

The type of resource to tag.

', 'LaunchTemplateTagSpecificationRequest$ResourceType' => '

The type of resource to tag.

Valid Values lists all resource types for Amazon EC2 that can be tagged. When you create a launch template, you can specify tags for the following resource types only: instance | volume | network-interface | spot-instances-request. If the instance does not include the resource type that you specify, the instance launch fails. For example, not all instance types include a volume.

To tag a resource after it has been created, see CreateTags.

', 'SpotFleetTagSpecification$ResourceType' => '

The type of resource. Currently, the only resource type that is supported is instance. To tag the Spot Fleet request on creation, use the TagSpecifications parameter in SpotFleetRequestConfigData .

', 'TagDescription$ResourceType' => '

The resource type.

', 'TagSpecification$ResourceType' => '

The type of resource to tag on creation.

', ], ], 'ResponseError' => [ 'base' => '

Describes the error that\'s returned when you cannot delete a launch template version.

', 'refs' => [ 'DeleteLaunchTemplateVersionsResponseErrorItem$ResponseError' => '

Information about the error.

', ], ], 'ResponseHostIdList' => [ 'base' => NULL, 'refs' => [ 'AllocateHostsResult$HostIds' => '

The ID of the allocated Dedicated Host. This is used to launch an instance onto a specific host.

', 'ModifyHostsResult$Successful' => '

The IDs of the Dedicated Hosts that were successfully modified.

', 'ReleaseHostsResult$Successful' => '

The IDs of the Dedicated Hosts that were successfully released.

', ], ], 'ResponseHostIdSet' => [ 'base' => NULL, 'refs' => [ 'HostReservation$HostIdSet' => '

The IDs of the Dedicated Hosts associated with the reservation.

', 'Purchase$HostIdSet' => '

The IDs of the Dedicated Hosts associated with the reservation.

', ], ], 'ResponseLaunchTemplateData' => [ 'base' => '

The information for a launch template.

', 'refs' => [ 'GetLaunchTemplateDataResult$LaunchTemplateData' => '

The instance data.

', 'LaunchTemplateVersion$LaunchTemplateData' => '

Information about the launch template.

', ], ], 'RestorableByStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeSnapshotsRequest$RestorableByUserIds' => '

The IDs of the Amazon Web Services accounts that can create volumes from the snapshot.

', ], ], 'RestoreAddressToClassicRequest' => [ 'base' => NULL, 'refs' => [], ], 'RestoreAddressToClassicResult' => [ 'base' => NULL, 'refs' => [], ], 'RestoreImageFromRecycleBinRequest' => [ 'base' => NULL, 'refs' => [], ], 'RestoreImageFromRecycleBinResult' => [ 'base' => NULL, 'refs' => [], ], 'RestoreManagedPrefixListVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'RestoreManagedPrefixListVersionResult' => [ 'base' => NULL, 'refs' => [], ], 'RestoreSnapshotFromRecycleBinRequest' => [ 'base' => NULL, 'refs' => [], ], 'RestoreSnapshotFromRecycleBinResult' => [ 'base' => NULL, 'refs' => [], ], 'RestoreSnapshotTierRequest' => [ 'base' => NULL, 'refs' => [], ], 'RestoreSnapshotTierRequestTemporaryRestoreDays' => [ 'base' => NULL, 'refs' => [ 'RestoreSnapshotTierRequest$TemporaryRestoreDays' => '

Specifies the number of days for which to temporarily restore an archived snapshot. Required for temporary restores only. The snapshot will be automatically re-archived after this period.

To temporarily restore an archived snapshot, specify the number of days and omit the PermanentRestore parameter or set it to false.

', ], ], 'RestoreSnapshotTierResult' => [ 'base' => NULL, 'refs' => [], ], 'ResultRange' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceEventWindowsRequest$MaxResults' => '

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value. This value can be between 20 and 500. You cannot specify this parameter and the event window IDs parameter in the same call.

', ], ], 'RetentionPeriodRequestDays' => [ 'base' => NULL, 'refs' => [ 'LockSnapshotRequest$LockDuration' => '

The period of time for which to lock the snapshot, in days. The snapshot lock will automatically expire after this period lapses.

You must specify either this parameter or ExpirationDate, but not both.

Allowed values: Min: 1, max 36500

', ], ], 'RetentionPeriodResponseDays' => [ 'base' => NULL, 'refs' => [ 'LockSnapshotResult$LockDuration' => '

The period of time for which the snapshot is locked, in days.

', 'LockedSnapshotsInfo$LockDuration' => '

The period of time for which the snapshot is locked, in days.

', ], ], 'RevokeClientVpnIngressRequest' => [ 'base' => NULL, 'refs' => [], ], 'RevokeClientVpnIngressResult' => [ 'base' => NULL, 'refs' => [], ], 'RevokeSecurityGroupEgressRequest' => [ 'base' => NULL, 'refs' => [], ], 'RevokeSecurityGroupEgressResult' => [ 'base' => NULL, 'refs' => [], ], 'RevokeSecurityGroupIngressRequest' => [ 'base' => NULL, 'refs' => [], ], 'RevokeSecurityGroupIngressResult' => [ 'base' => NULL, 'refs' => [], ], 'RoleId' => [ 'base' => NULL, 'refs' => [ 'AssociateEnclaveCertificateIamRoleRequest$RoleArn' => '

The ARN of the IAM role to associate with the ACM certificate. You can associate up to 16 IAM roles with an ACM certificate.

', 'DisassociateEnclaveCertificateIamRoleRequest$RoleArn' => '

The ARN of the IAM role to disassociate.

', ], ], 'RootDeviceType' => [ 'base' => NULL, 'refs' => [ 'RootDeviceTypeList$member' => NULL, ], ], 'RootDeviceTypeList' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$SupportedRootDeviceTypes' => '

The supported root device types.

', ], ], 'Route' => [ 'base' => '

Describes a route in a route table.

', 'refs' => [ 'RouteList$member' => NULL, ], ], 'RouteGatewayId' => [ 'base' => NULL, 'refs' => [ 'AssociateRouteTableRequest$GatewayId' => '

The ID of the internet gateway or virtual private gateway.

', 'CreateRouteRequest$GatewayId' => '

The ID of an internet gateway or virtual private gateway attached to your VPC.

', 'ReplaceRouteRequest$GatewayId' => '

The ID of an internet gateway or virtual private gateway.

', ], ], 'RouteList' => [ 'base' => NULL, 'refs' => [ 'RouteTable$Routes' => '

The routes in the route table.

', ], ], 'RouteOrigin' => [ 'base' => NULL, 'refs' => [ 'Route$Origin' => '

Describes how the route was created.

  • CreateRouteTable - The route was automatically created when the route table was created.

  • CreateRoute - The route was manually added to the route table.

  • EnableVgwRoutePropagation - The route was propagated by route propagation.

', ], ], 'RouteState' => [ 'base' => NULL, 'refs' => [ 'Route$State' => '

The state of the route. The blackhole state indicates that the route\'s target isn\'t available (for example, the specified gateway isn\'t attached to the VPC, or the specified NAT instance has been terminated).

', ], ], 'RouteTable' => [ 'base' => '

Describes a route table.

', 'refs' => [ 'CreateRouteTableResult$RouteTable' => '

Information about the route table.

', 'RouteTableList$member' => NULL, ], ], 'RouteTableAssociation' => [ 'base' => '

Describes an association between a route table and a subnet or gateway.

', 'refs' => [ 'RouteTableAssociationList$member' => NULL, ], ], 'RouteTableAssociationId' => [ 'base' => NULL, 'refs' => [ 'DisassociateRouteTableRequest$AssociationId' => '

The association ID representing the current association between the route table and subnet or gateway.

', 'ReplaceRouteTableAssociationRequest$AssociationId' => '

The association ID.

', ], ], 'RouteTableAssociationList' => [ 'base' => NULL, 'refs' => [ 'RouteTable$Associations' => '

The associations between the route table and one or more subnets or a gateway.

', ], ], 'RouteTableAssociationState' => [ 'base' => '

Describes the state of an association between a route table and a subnet or gateway.

', 'refs' => [ 'AssociateRouteTableResult$AssociationState' => '

The state of the association.

', 'ReplaceRouteTableAssociationResult$AssociationState' => '

The state of the association.

', 'RouteTableAssociation$AssociationState' => '

The state of the association.

', ], ], 'RouteTableAssociationStateCode' => [ 'base' => NULL, 'refs' => [ 'RouteTableAssociationState$State' => '

The state of the association.

', ], ], 'RouteTableId' => [ 'base' => NULL, 'refs' => [ 'AssociateRouteTableRequest$RouteTableId' => '

The ID of the route table.

', 'CreateRouteRequest$RouteTableId' => '

The ID of the route table for the route.

', 'DeleteRouteRequest$RouteTableId' => '

The ID of the route table.

', 'DeleteRouteTableRequest$RouteTableId' => '

The ID of the route table.

', 'DisableVgwRoutePropagationRequest$RouteTableId' => '

The ID of the route table.

', 'EnableVgwRoutePropagationRequest$RouteTableId' => '

The ID of the route table. The routing table must be associated with the same VPC that the virtual private gateway is attached to.

', 'ReplaceRouteRequest$RouteTableId' => '

The ID of the route table.

', 'ReplaceRouteTableAssociationRequest$RouteTableId' => '

The ID of the new route table to associate with the subnet.

', 'RouteTableIdStringList$member' => NULL, 'VpcEndpointRouteTableIdList$member' => NULL, ], ], 'RouteTableIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeRouteTablesRequest$RouteTableIds' => '

The IDs of the route tables.

Default: Describes all your route tables.

', ], ], 'RouteTableList' => [ 'base' => NULL, 'refs' => [ 'DescribeRouteTablesResult$RouteTables' => '

Information about one or more route tables.

', ], ], 'RuleAction' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkAclEntryRequest$RuleAction' => '

Indicates whether to allow or deny the traffic that matches the rule.

', 'NetworkAclEntry$RuleAction' => '

Indicates whether to allow or deny the traffic that matches the rule.

', 'ReplaceNetworkAclEntryRequest$RuleAction' => '

Indicates whether to allow or deny the traffic that matches the rule.

', ], ], 'RuleGroupRuleOptionsPair' => [ 'base' => '

Describes the rule options for a stateful rule group.

', 'refs' => [ 'RuleGroupRuleOptionsPairList$member' => NULL, ], ], 'RuleGroupRuleOptionsPairList' => [ 'base' => NULL, 'refs' => [ 'AdditionalDetail$RuleGroupRuleOptionsPairs' => '

The rule options.

', ], ], 'RuleGroupTypePair' => [ 'base' => '

Describes the type of a stateful rule group.

', 'refs' => [ 'RuleGroupTypePairList$member' => NULL, ], ], 'RuleGroupTypePairList' => [ 'base' => NULL, 'refs' => [ 'AdditionalDetail$RuleGroupTypePairs' => '

The rule group type.

', ], ], 'RuleOption' => [ 'base' => '

Describes additional settings for a stateful rule.

', 'refs' => [ 'RuleOptionList$member' => NULL, ], ], 'RuleOptionList' => [ 'base' => NULL, 'refs' => [ 'AdditionalDetail$RuleOptions' => '

The rule options.

', 'RuleGroupRuleOptionsPair$RuleOptions' => '

The rule options.

', ], ], 'RunInstancesMonitoringEnabled' => [ 'base' => '

Describes the monitoring of an instance.

', 'refs' => [ 'LaunchSpecification$Monitoring' => NULL, 'RequestSpotLaunchSpecification$Monitoring' => '

Indicates whether basic or detailed monitoring is enabled for the instance.

Default: Disabled

', 'RunInstancesRequest$Monitoring' => '

Specifies whether detailed monitoring is enabled for the instance.

', ], ], 'RunInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'RunInstancesUserData' => [ 'base' => NULL, 'refs' => [ 'RunInstancesRequest$UserData' => '

The user data script to make available to the instance. For more information, see Run commands on your Linux instance at launch and Run commands on your Windows instance at launch. If you are using a command line tool, base64-encoding is performed for you, and you can load the text from a file. Otherwise, you must provide base64-encoded text. User data is limited to 16 KB.

', ], ], 'RunScheduledInstancesRequest' => [ 'base' => '

Contains the parameters for RunScheduledInstances.

', 'refs' => [], ], 'RunScheduledInstancesResult' => [ 'base' => '

Contains the output of RunScheduledInstances.

', 'refs' => [], ], 'S3ObjectTag' => [ 'base' => '

The tags to apply to the AMI object that will be stored in the Amazon S3 bucket. For more information, see Categorizing your storage using tags in the Amazon Simple Storage Service User Guide.

', 'refs' => [ 'S3ObjectTagList$member' => NULL, ], ], 'S3ObjectTagList' => [ 'base' => NULL, 'refs' => [ 'CreateStoreImageTaskRequest$S3ObjectTags' => '

The tags to apply to the AMI object that will be stored in the Amazon S3 bucket.

', ], ], 'S3Storage' => [ 'base' => '

Describes the storage parameters for Amazon S3 and Amazon S3 buckets for an instance store-backed AMI.

', 'refs' => [ 'Storage$S3' => '

An Amazon S3 storage location.

', ], ], 'S3StorageUploadPolicy' => [ 'base' => NULL, 'refs' => [], ], 'S3StorageUploadPolicySignature' => [ 'base' => NULL, 'refs' => [ 'S3Storage$UploadPolicySignature' => '

The signature of the JSON document.

', ], ], 'SSEType' => [ 'base' => NULL, 'refs' => [ 'GetEbsEncryptionByDefaultResult$SseType' => '

Reserved for future use.

', 'RestoreSnapshotFromRecycleBinResult$SseType' => '

Reserved for future use.

', 'Snapshot$SseType' => '

Reserved for future use.

', 'SnapshotInfo$SseType' => '

Reserved for future use.

', 'Volume$SseType' => '

Reserved for future use.

', ], ], 'ScheduledInstance' => [ 'base' => '

Describes a Scheduled Instance.

', 'refs' => [ 'PurchasedScheduledInstanceSet$member' => NULL, 'ScheduledInstanceSet$member' => NULL, ], ], 'ScheduledInstanceAvailability' => [ 'base' => '

Describes a schedule that is available for your Scheduled Instances.

', 'refs' => [ 'ScheduledInstanceAvailabilitySet$member' => NULL, ], ], 'ScheduledInstanceAvailabilitySet' => [ 'base' => NULL, 'refs' => [ 'DescribeScheduledInstanceAvailabilityResult$ScheduledInstanceAvailabilitySet' => '

Information about the available Scheduled Instances.

', ], ], 'ScheduledInstanceId' => [ 'base' => NULL, 'refs' => [ 'RunScheduledInstancesRequest$ScheduledInstanceId' => '

The Scheduled Instance ID.

', 'ScheduledInstanceIdRequestSet$member' => NULL, ], ], 'ScheduledInstanceIdRequestSet' => [ 'base' => NULL, 'refs' => [ 'DescribeScheduledInstancesRequest$ScheduledInstanceIds' => '

The Scheduled Instance IDs.

', ], ], 'ScheduledInstanceRecurrence' => [ 'base' => '

Describes the recurring schedule for a Scheduled Instance.

', 'refs' => [ 'ScheduledInstance$Recurrence' => '

The schedule recurrence.

', 'ScheduledInstanceAvailability$Recurrence' => '

The schedule recurrence.

', ], ], 'ScheduledInstanceRecurrenceRequest' => [ 'base' => '

Describes the recurring schedule for a Scheduled Instance.

', 'refs' => [ 'DescribeScheduledInstanceAvailabilityRequest$Recurrence' => '

The schedule recurrence.

', ], ], 'ScheduledInstanceSet' => [ 'base' => NULL, 'refs' => [ 'DescribeScheduledInstancesResult$ScheduledInstanceSet' => '

Information about the Scheduled Instances.

', ], ], 'ScheduledInstancesBlockDeviceMapping' => [ 'base' => '

Describes a block device mapping for a Scheduled Instance.

', 'refs' => [ 'ScheduledInstancesBlockDeviceMappingSet$member' => NULL, ], ], 'ScheduledInstancesBlockDeviceMappingSet' => [ 'base' => NULL, 'refs' => [ 'ScheduledInstancesLaunchSpecification$BlockDeviceMappings' => '

The block device mapping entries.

', ], ], 'ScheduledInstancesEbs' => [ 'base' => '

Describes an EBS volume for a Scheduled Instance.

', 'refs' => [ 'ScheduledInstancesBlockDeviceMapping$Ebs' => '

Parameters used to set up EBS volumes automatically when the instance is launched.

', ], ], 'ScheduledInstancesIamInstanceProfile' => [ 'base' => '

Describes an IAM instance profile for a Scheduled Instance.

', 'refs' => [ 'ScheduledInstancesLaunchSpecification$IamInstanceProfile' => '

The IAM instance profile.

', ], ], 'ScheduledInstancesIpv6Address' => [ 'base' => '

Describes an IPv6 address.

', 'refs' => [ 'ScheduledInstancesIpv6AddressList$member' => NULL, ], ], 'ScheduledInstancesIpv6AddressList' => [ 'base' => NULL, 'refs' => [ 'ScheduledInstancesNetworkInterface$Ipv6Addresses' => '

The specific IPv6 addresses from the subnet range.

', ], ], 'ScheduledInstancesLaunchSpecification' => [ 'base' => '

Describes the launch specification for a Scheduled Instance.

If you are launching the Scheduled Instance in EC2-VPC, you must specify the ID of the subnet. You can specify the subnet using either SubnetId or NetworkInterface.

', 'refs' => [ 'RunScheduledInstancesRequest$LaunchSpecification' => '

The launch specification. You must match the instance type, Availability Zone, network, and platform of the schedule that you purchased.

', ], ], 'ScheduledInstancesMonitoring' => [ 'base' => '

Describes whether monitoring is enabled for a Scheduled Instance.

', 'refs' => [ 'ScheduledInstancesLaunchSpecification$Monitoring' => '

Enable or disable monitoring for the instances.

', ], ], 'ScheduledInstancesNetworkInterface' => [ 'base' => '

Describes a network interface for a Scheduled Instance.

', 'refs' => [ 'ScheduledInstancesNetworkInterfaceSet$member' => NULL, ], ], 'ScheduledInstancesNetworkInterfaceSet' => [ 'base' => NULL, 'refs' => [ 'ScheduledInstancesLaunchSpecification$NetworkInterfaces' => '

The network interfaces.

', ], ], 'ScheduledInstancesPlacement' => [ 'base' => '

Describes the placement for a Scheduled Instance.

', 'refs' => [ 'ScheduledInstancesLaunchSpecification$Placement' => '

The placement information.

', ], ], 'ScheduledInstancesPrivateIpAddressConfig' => [ 'base' => '

Describes a private IPv4 address for a Scheduled Instance.

', 'refs' => [ 'PrivateIpAddressConfigSet$member' => NULL, ], ], 'ScheduledInstancesSecurityGroupIdSet' => [ 'base' => NULL, 'refs' => [ 'ScheduledInstancesLaunchSpecification$SecurityGroupIds' => '

The IDs of the security groups.

', 'ScheduledInstancesNetworkInterface$Groups' => '

The IDs of the security groups.

', ], ], 'SearchLocalGatewayRoutesRequest' => [ 'base' => NULL, 'refs' => [], ], 'SearchLocalGatewayRoutesResult' => [ 'base' => NULL, 'refs' => [], ], 'SearchTransitGatewayMulticastGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'SearchTransitGatewayMulticastGroupsResult' => [ 'base' => NULL, 'refs' => [], ], 'SearchTransitGatewayRoutesRequest' => [ 'base' => NULL, 'refs' => [], ], 'SearchTransitGatewayRoutesResult' => [ 'base' => NULL, 'refs' => [], ], 'SecurityGroup' => [ 'base' => '

Describes a security group.

', 'refs' => [ 'SecurityGroupList$member' => NULL, ], ], 'SecurityGroupForVpc' => [ 'base' => '

A security group that can be used by interfaces in the VPC.

', 'refs' => [ 'SecurityGroupForVpcList$member' => NULL, ], ], 'SecurityGroupForVpcList' => [ 'base' => NULL, 'refs' => [ 'GetSecurityGroupsForVpcResult$SecurityGroupForVpcs' => '

The security group that can be used by interfaces in the VPC.

', ], ], 'SecurityGroupId' => [ 'base' => NULL, 'refs' => [ 'AuthorizeSecurityGroupEgressRequest$GroupId' => '

The ID of the security group.

', 'AuthorizeSecurityGroupIngressRequest$GroupId' => '

The ID of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.

', 'ClientVpnSecurityGroupIdSet$member' => NULL, 'DeleteSecurityGroupRequest$GroupId' => '

The ID of the security group.

', 'GroupIdStringList$member' => NULL, 'GroupIds$member' => NULL, 'ModifySecurityGroupRulesRequest$GroupId' => '

The ID of the security group.

', 'RequestSpotLaunchSpecificationSecurityGroupIdList$member' => NULL, 'RevokeSecurityGroupEgressRequest$GroupId' => '

The ID of the security group.

', 'RevokeSecurityGroupIngressRequest$GroupId' => '

The ID of the security group.

', 'ScheduledInstancesSecurityGroupIdSet$member' => NULL, 'SecurityGroupIdList$member' => NULL, 'SecurityGroupIdSet$member' => NULL, 'SecurityGroupIdStringList$member' => NULL, 'SecurityGroupIdStringListRequest$member' => NULL, 'SecurityGroupRule$GroupId' => '

The ID of the security group.

', 'SecurityGroupRuleRequest$ReferencedGroupId' => '

The ID of the security group that is referenced in the security group rule.

', 'UpdateSecurityGroupRuleDescriptionsEgressRequest$GroupId' => '

The ID of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.

', 'UpdateSecurityGroupRuleDescriptionsIngressRequest$GroupId' => '

The ID of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.

', 'VpcEndpointSecurityGroupIdList$member' => NULL, ], ], 'SecurityGroupIdList' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointRequest$SecurityGroupIds' => '

The IDs of the security groups to associate with the Verified Access endpoint. Required if AttachmentType is set to vpc.

', 'VerifiedAccessEndpoint$SecurityGroupIds' => '

The IDs of the security groups for the endpoint.

', ], ], 'SecurityGroupIdSet' => [ 'base' => NULL, 'refs' => [ 'Ec2InstanceConnectEndpoint$SecurityGroupIds' => '

The security groups associated with the endpoint. If you didn\'t specify a security group, the default security group for your VPC is associated with the endpoint.

', ], ], 'SecurityGroupIdStringList' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInterfaceRequest$Groups' => '

The IDs of one or more security groups.

', 'ImportInstanceLaunchSpecification$GroupIds' => '

The security group IDs.

', 'InstanceNetworkInterfaceSpecification$Groups' => '

The IDs of the security groups for the network interface. Applies only if creating a network interface when launching an instance.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$Groups' => '

The IDs of one or more security groups.

', 'ModifyNetworkInterfaceAttributeRequest$Groups' => '

Changes the security groups for the network interface. The new set of groups you specify replaces the current set. You must specify at least one group, even if it\'s just the default security group in the VPC. You must specify the ID of the security group, not the name.

', 'RequestLaunchTemplateData$SecurityGroupIds' => '

One or more security group IDs. You can create a security group using CreateSecurityGroup.

', 'RunInstancesRequest$SecurityGroupIds' => '

The IDs of the security groups. You can create a security group using CreateSecurityGroup.

If you specify a network interface, you must specify any security groups as part of the network interface.

', ], ], 'SecurityGroupIdStringListRequest' => [ 'base' => NULL, 'refs' => [ 'CreateInstanceConnectEndpointRequest$SecurityGroupIds' => '

One or more security groups to associate with the endpoint. If you don\'t specify a security group, the default security group for your VPC will be associated with the endpoint.

', ], ], 'SecurityGroupIdentifier' => [ 'base' => '

Describes a security group.

', 'refs' => [ 'GroupIdentifierSet$member' => NULL, ], ], 'SecurityGroupList' => [ 'base' => NULL, 'refs' => [ 'DescribeSecurityGroupsResult$SecurityGroups' => '

Information about the security groups.

', ], ], 'SecurityGroupName' => [ 'base' => NULL, 'refs' => [ 'AuthorizeSecurityGroupIngressRequest$GroupName' => '

[Default VPC] The name of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.

', 'DeleteSecurityGroupRequest$GroupName' => '

[Default VPC] The name of the security group. You can specify either the security group name or the security group ID. For security groups in a nondefault VPC, you must specify the security group ID.

', 'GroupNameStringList$member' => NULL, 'RevokeSecurityGroupIngressRequest$GroupName' => '

[Default VPC] The name of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.

', 'SecurityGroupStringList$member' => NULL, 'UpdateSecurityGroupRuleDescriptionsEgressRequest$GroupName' => '

[Default VPC] The name of the security group. You must specify either the security group ID or the security group name.

', 'UpdateSecurityGroupRuleDescriptionsIngressRequest$GroupName' => '

[Default VPC] The name of the security group. You must specify either the security group ID or the security group name. For security groups in a nondefault VPC, you must specify the security group ID.

', ], ], 'SecurityGroupReference' => [ 'base' => '

Describes a VPC with a security group that references your security group.

', 'refs' => [ 'SecurityGroupReferences$member' => NULL, ], ], 'SecurityGroupReferences' => [ 'base' => NULL, 'refs' => [ 'DescribeSecurityGroupReferencesResult$SecurityGroupReferenceSet' => '

Information about the VPCs with the referencing security groups.

', ], ], 'SecurityGroupReferencingSupportValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayVpcAttachmentRequestOptions$SecurityGroupReferencingSupport' => '

Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option to simplify security group management and control of instance-to-instance traffic across VPCs that are connected by transit gateway. You can also use this option to migrate from VPC peering (which was the only option that supported security group referencing) to transit gateways (which now also support security group referencing). This option is disabled by default and there are no additional costs to use this feature.

If you don\'t enable or disable SecurityGroupReferencingSupport in the request, the attachment will inherit the security group referencing support setting on the transit gateway.

For important information about this feature, see Create a transit gateway attachment to a VPC in the Amazon Web Services Transit Gateway Guide.

', 'ModifyTransitGatewayOptions$SecurityGroupReferencingSupport' => '

Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option to simplify security group management and control of instance-to-instance traffic across VPCs that are connected by transit gateway. You can also use this option to migrate from VPC peering (which was the only option that supported security group referencing) to transit gateways (which now also support security group referencing). This option is disabled by default and there are no additional costs to use this feature.

For important information about this feature, see Create a transit gateway in the Amazon Web Services Transit Gateway Guide.

', 'ModifyTransitGatewayVpcAttachmentRequestOptions$SecurityGroupReferencingSupport' => '

Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option to simplify security group management and control of instance-to-instance traffic across VPCs that are connected by transit gateway. You can also use this option to migrate from VPC peering (which was the only option that supported security group referencing) to transit gateways (which now also support security group referencing). This option is disabled by default and there are no additional costs to use this feature.

For important information about this feature, see Create a transit gateway attachment to a VPC in the Amazon Web Services Transit Gateway Guide.

', 'TransitGatewayOptions$SecurityGroupReferencingSupport' => '

Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option to simplify security group management and control of instance-to-instance traffic across VPCs that are connected by transit gateway. You can also use this option to migrate from VPC peering (which was the only option that supported security group referencing) to transit gateways (which now also support security group referencing). This option is disabled by default and there are no additional costs to use this feature.

For important information about this feature, see Create a transit gateway in the Amazon Web Services Transit Gateway Guide.

', 'TransitGatewayRequestOptions$SecurityGroupReferencingSupport' => '

Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option to simplify security group management and control of instance-to-instance traffic across VPCs that are connected by transit gateway. You can also use this option to migrate from VPC peering (which was the only option that supported security group referencing) to transit gateways (which now also support security group referencing). This option is disabled by default and there are no additional costs to use this feature.

For important information about this feature, see Create a transit gateway in the Amazon Web Services Transit Gateway Guide.

', 'TransitGatewayVpcAttachmentOptions$SecurityGroupReferencingSupport' => '

For important information about this feature, see Create a transit gateway attachment to a VPC in the Amazon Web Services Transit Gateway Guide.

', ], ], 'SecurityGroupRule' => [ 'base' => '

Describes a security group rule.

', 'refs' => [ 'SecurityGroupRuleList$member' => NULL, ], ], 'SecurityGroupRuleDescription' => [ 'base' => '

Describes the description of a security group rule.

You can use this when you want to update the security group rule description for either an inbound or outbound rule.

', 'refs' => [ 'SecurityGroupRuleDescriptionList$member' => NULL, ], ], 'SecurityGroupRuleDescriptionList' => [ 'base' => NULL, 'refs' => [ 'UpdateSecurityGroupRuleDescriptionsEgressRequest$SecurityGroupRuleDescriptions' => '

The description for the egress security group rules. You must specify either the description or the IP permissions.

', 'UpdateSecurityGroupRuleDescriptionsIngressRequest$SecurityGroupRuleDescriptions' => '

The description for the ingress security group rules. You must specify either a description or IP permissions.

', ], ], 'SecurityGroupRuleId' => [ 'base' => NULL, 'refs' => [ 'SecurityGroupRule$SecurityGroupRuleId' => '

The ID of the security group rule.

', 'SecurityGroupRuleUpdate$SecurityGroupRuleId' => '

The ID of the security group rule.

', ], ], 'SecurityGroupRuleIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeSecurityGroupRulesRequest$SecurityGroupRuleIds' => '

The IDs of the security group rules.

', 'RevokeSecurityGroupEgressRequest$SecurityGroupRuleIds' => '

The IDs of the security group rules.

', 'RevokeSecurityGroupIngressRequest$SecurityGroupRuleIds' => '

The IDs of the security group rules.

', ], ], 'SecurityGroupRuleList' => [ 'base' => NULL, 'refs' => [ 'AuthorizeSecurityGroupEgressResult$SecurityGroupRules' => '

Information about the outbound (egress) security group rules that were added.

', 'AuthorizeSecurityGroupIngressResult$SecurityGroupRules' => '

Information about the inbound (ingress) security group rules that were added.

', 'DescribeSecurityGroupRulesResult$SecurityGroupRules' => '

Information about security group rules.

', ], ], 'SecurityGroupRuleRequest' => [ 'base' => '

Describes a security group rule.

You must specify exactly one of the following parameters, based on the rule type:

  • CidrIpv4

  • CidrIpv6

  • PrefixListId

  • ReferencedGroupId

When you modify a rule, you cannot change the rule type. For example, if the rule uses an IPv4 address range, you must use CidrIpv4 to specify a new IPv4 address range.

', 'refs' => [ 'SecurityGroupRuleUpdate$SecurityGroupRule' => '

Information about the security group rule.

', ], ], 'SecurityGroupRuleUpdate' => [ 'base' => '

Describes an update to a security group rule.

', 'refs' => [ 'SecurityGroupRuleUpdateList$member' => NULL, ], ], 'SecurityGroupRuleUpdateList' => [ 'base' => NULL, 'refs' => [ 'ModifySecurityGroupRulesRequest$SecurityGroupRules' => '

Information about the security group properties to update.

', ], ], 'SecurityGroupStringList' => [ 'base' => NULL, 'refs' => [ 'ImportInstanceLaunchSpecification$GroupNames' => '

The security group names.

', 'RequestLaunchTemplateData$SecurityGroups' => '

One or more security group names. For a nondefault VPC, you must use security group IDs instead.

', 'RunInstancesRequest$SecurityGroups' => '

[Default VPC] The names of the security groups.

If you specify a network interface, you must specify any security groups as part of the network interface.

Default: Amazon EC2 uses the default security group.

', ], ], 'SelfServicePortal' => [ 'base' => NULL, 'refs' => [ 'CreateClientVpnEndpointRequest$SelfServicePortal' => '

Specify whether to enable the self-service portal for the Client VPN endpoint.

Default Value: enabled

', 'ModifyClientVpnEndpointRequest$SelfServicePortal' => '

Specify whether to enable the self-service portal for the Client VPN endpoint.

', ], ], 'SendDiagnosticInterruptRequest' => [ 'base' => NULL, 'refs' => [], ], 'SensitiveUrl' => [ 'base' => NULL, 'refs' => [ 'ImageDiskContainer$Url' => '

The URL to the Amazon S3-based disk image being imported. The URL can either be a https URL (https://..) or an Amazon S3 URL (s3://..)

', 'SnapshotDetail$Url' => '

The URL used to access the disk image.

', 'SnapshotDiskContainer$Url' => '

The URL to the Amazon S3-based disk image being imported. It can either be a https URL (https://..) or an Amazon S3 URL (s3://..).

', 'SnapshotTaskDetail$Url' => '

The URL of the disk image from which the snapshot is created.

', ], ], 'SensitiveUserData' => [ 'base' => NULL, 'refs' => [ 'KeyPair$KeyMaterial' => '

An unencrypted PEM encoded RSA or ED25519 private key.

', 'LaunchSpecification$UserData' => '

The base64-encoded user data that instances use when starting up. User data is limited to 16 KB.

', 'RequestLaunchTemplateData$UserData' => '

The user data to make available to the instance. You must provide base64-encoded text. User data is limited to 16 KB. For more information, see Run commands on your Linux instance at launch (Linux) or Work with instance user data (Windows) in the Amazon Elastic Compute Cloud User Guide.

If you are creating the launch template for use with Batch, the user data must be provided in the MIME multi-part archive format. For more information, see Amazon EC2 user data in launch templates in the Batch User Guide.

', 'RequestSpotLaunchSpecification$UserData' => '

The base64-encoded user data that instances use when starting up. User data is limited to 16 KB.

', 'ResponseLaunchTemplateData$UserData' => '

The user data for the instance.

', 'SpotFleetLaunchSpecification$UserData' => '

The base64-encoded user data that instances use when starting up. User data is limited to 16 KB.

', ], ], 'ServiceConfiguration' => [ 'base' => '

Describes a service configuration for a VPC endpoint service.

', 'refs' => [ 'CreateVpcEndpointServiceConfigurationResult$ServiceConfiguration' => '

Information about the service configuration.

', 'ServiceConfigurationSet$member' => NULL, ], ], 'ServiceConfigurationSet' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcEndpointServiceConfigurationsResult$ServiceConfigurations' => '

Information about the services.

', ], ], 'ServiceConnectivityType' => [ 'base' => NULL, 'refs' => [ 'SupportedIpAddressTypes$member' => NULL, ], ], 'ServiceDetail' => [ 'base' => '

Describes a VPC endpoint service.

', 'refs' => [ 'ServiceDetailSet$member' => NULL, ], ], 'ServiceDetailSet' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcEndpointServicesResult$ServiceDetails' => '

Information about the service.

', ], ], 'ServiceState' => [ 'base' => NULL, 'refs' => [ 'ServiceConfiguration$ServiceState' => '

The service state.

', ], ], 'ServiceType' => [ 'base' => NULL, 'refs' => [ 'ServiceTypeDetail$ServiceType' => '

The type of service.

', ], ], 'ServiceTypeDetail' => [ 'base' => '

Describes the type of service for a VPC endpoint.

', 'refs' => [ 'ServiceTypeDetailSet$member' => NULL, ], ], 'ServiceTypeDetailSet' => [ 'base' => NULL, 'refs' => [ 'ServiceConfiguration$ServiceType' => '

The type of service.

', 'ServiceDetail$ServiceType' => '

The type of service.

', ], ], 'ShutdownBehavior' => [ 'base' => NULL, 'refs' => [ 'ImportInstanceLaunchSpecification$InstanceInitiatedShutdownBehavior' => '

Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the operating system command for system shutdown).

', 'RequestLaunchTemplateData$InstanceInitiatedShutdownBehavior' => '

Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the operating system command for system shutdown).

Default: stop

', 'ResponseLaunchTemplateData$InstanceInitiatedShutdownBehavior' => '

Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the operating system command for system shutdown).

', 'RunInstancesRequest$InstanceInitiatedShutdownBehavior' => '

Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the operating system command for system shutdown).

Default: stop

', ], ], 'SlotDateTimeRangeRequest' => [ 'base' => '

Describes the time period for a Scheduled Instance to start its first schedule. The time period must span less than one day.

', 'refs' => [ 'DescribeScheduledInstanceAvailabilityRequest$FirstSlotStartTimeRange' => '

The time period for the first schedule to start.

', ], ], 'SlotStartTimeRangeRequest' => [ 'base' => '

Describes the time period for a Scheduled Instance to start its first schedule.

', 'refs' => [ 'DescribeScheduledInstancesRequest$SlotStartTimeRange' => '

The time period for the first schedule to start.

', ], ], 'Snapshot' => [ 'base' => '

Describes a snapshot.

', 'refs' => [ 'SnapshotList$member' => NULL, ], ], 'SnapshotAttributeName' => [ 'base' => NULL, 'refs' => [ 'DescribeSnapshotAttributeRequest$Attribute' => '

The snapshot attribute you would like to view.

', 'ModifySnapshotAttributeRequest$Attribute' => '

The snapshot attribute to modify. Only volume creation permissions can be modified.

', 'ResetSnapshotAttributeRequest$Attribute' => '

The attribute to reset. Currently, only the attribute for permission to create volumes can be reset.

', ], ], 'SnapshotBlockPublicAccessState' => [ 'base' => NULL, 'refs' => [ 'DisableSnapshotBlockPublicAccessResult$State' => '

Returns unblocked if the request succeeds.

', 'EnableSnapshotBlockPublicAccessRequest$State' => '

The mode in which to enable block public access for snapshots for the Region. Specify one of the following values:

  • block-all-sharing - Prevents all public sharing of snapshots in the Region. Users in the account will no longer be able to request new public sharing. Additionally, snapshots that are already publicly shared are treated as private and they are no longer publicly available.

    If you enable block public access for snapshots in block-all-sharing mode, it does not change the permissions for snapshots that are already publicly shared. Instead, it prevents these snapshots from be publicly visible and publicly accessible. Therefore, the attributes for these snapshots still indicate that they are publicly shared, even though they are not publicly available.

  • block-new-sharing - Prevents only new public sharing of snapshots in the Region. Users in the account will no longer be able to request new public sharing. However, snapshots that are already publicly shared, remain publicly available.

unblocked is not a valid value for EnableSnapshotBlockPublicAccess.

', 'EnableSnapshotBlockPublicAccessResult$State' => '

The state of block public access for snapshots for the account and Region. Returns either block-all-sharing or block-new-sharing if the request succeeds.

', 'GetSnapshotBlockPublicAccessStateResult$State' => '

The current state of block public access for snapshots. Possible values include:

  • block-all-sharing - All public sharing of snapshots is blocked. Users in the account can\'t request new public sharing. Additionally, snapshots that were already publicly shared are treated as private and are not publicly available.

  • block-new-sharing - Only new public sharing of snapshots is blocked. Users in the account can\'t request new public sharing. However, snapshots that were already publicly shared, remain publicly available.

  • unblocked - Public sharing is not blocked. Users can publicly share snapshots.

', ], ], 'SnapshotDetail' => [ 'base' => '

Describes the snapshot created from the imported disk.

', 'refs' => [ 'SnapshotDetailList$member' => NULL, ], ], 'SnapshotDetailList' => [ 'base' => NULL, 'refs' => [ 'ImportImageResult$SnapshotDetails' => '

Information about the snapshots.

', 'ImportImageTask$SnapshotDetails' => '

Information about the snapshots.

', ], ], 'SnapshotDiskContainer' => [ 'base' => '

The disk container object for the import snapshot request.

', 'refs' => [ 'ImportSnapshotRequest$DiskContainer' => '

Information about the disk container.

', ], ], 'SnapshotId' => [ 'base' => NULL, 'refs' => [ 'CreateReplaceRootVolumeTaskRequest$SnapshotId' => '

The ID of the snapshot from which to restore the replacement root volume. The specified snapshot must be a snapshot that you previously created from the original root volume.

If you want to restore the replacement root volume to the initial launch state, or if you want to restore the replacement root volume from an AMI, omit this parameter.

', 'CreateVolumeRequest$SnapshotId' => '

The snapshot from which to create the volume. You must specify either a snapshot ID or a volume size.

', 'DeleteSnapshotRequest$SnapshotId' => '

The ID of the EBS snapshot.

', 'DescribeSnapshotAttributeRequest$SnapshotId' => '

The ID of the EBS snapshot.

', 'EbsBlockDevice$SnapshotId' => '

The ID of the snapshot.

', 'ImageDiskContainer$SnapshotId' => '

The ID of the EBS snapshot to be used for importing the snapshot.

', 'LaunchTemplateEbsBlockDevice$SnapshotId' => '

The ID of the snapshot.

', 'LaunchTemplateEbsBlockDeviceRequest$SnapshotId' => '

The ID of the snapshot.

', 'LockSnapshotRequest$SnapshotId' => '

The ID of the snapshot to lock.

', 'ModifySnapshotAttributeRequest$SnapshotId' => '

The ID of the snapshot.

', 'ModifySnapshotTierRequest$SnapshotId' => '

The ID of the snapshot.

', 'ReplaceRootVolumeTask$SnapshotId' => '

The ID of the snapshot used to create the replacement root volume.

', 'ResetSnapshotAttributeRequest$SnapshotId' => '

The ID of the snapshot.

', 'RestoreSnapshotFromRecycleBinRequest$SnapshotId' => '

The ID of the snapshot to restore.

', 'RestoreSnapshotTierRequest$SnapshotId' => '

The ID of the snapshot to restore.

', 'ScheduledInstancesEbs$SnapshotId' => '

The ID of the snapshot.

', 'SnapshotIdStringList$member' => NULL, 'SnapshotTierStatus$SnapshotId' => '

The ID of the snapshot.

', 'UnlockSnapshotRequest$SnapshotId' => '

The ID of the snapshot to unlock.

', ], ], 'SnapshotIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeLockedSnapshotsRequest$SnapshotIds' => '

The IDs of the snapshots for which to view the lock status.

', 'DescribeSnapshotsRequest$SnapshotIds' => '

The snapshot IDs.

Default: Describes the snapshots for which you have create volume permissions.

', 'DisableFastSnapshotRestoresRequest$SourceSnapshotIds' => '

The IDs of one or more snapshots. For example, snap-1234567890abcdef0.

', 'EnableFastSnapshotRestoresRequest$SourceSnapshotIds' => '

The IDs of one or more snapshots. For example, snap-1234567890abcdef0. You can specify a snapshot that was shared with you from another Amazon Web Services account.

', 'ListSnapshotsInRecycleBinRequest$SnapshotIds' => '

The IDs of the snapshots to list. Omit this parameter to list all of the snapshots that are in the Recycle Bin.

', ], ], 'SnapshotInfo' => [ 'base' => '

Information about a snapshot.

', 'refs' => [ 'SnapshotSet$member' => NULL, ], ], 'SnapshotList' => [ 'base' => NULL, 'refs' => [ 'DescribeSnapshotsResult$Snapshots' => '

Information about the snapshots.

', ], ], 'SnapshotRecycleBinInfo' => [ 'base' => '

Information about a snapshot that is currently in the Recycle Bin.

', 'refs' => [ 'SnapshotRecycleBinInfoList$member' => NULL, ], ], 'SnapshotRecycleBinInfoList' => [ 'base' => NULL, 'refs' => [ 'ListSnapshotsInRecycleBinResult$Snapshots' => '

Information about the snapshots.

', ], ], 'SnapshotSet' => [ 'base' => NULL, 'refs' => [ 'CreateSnapshotsResult$Snapshots' => '

List of snapshots.

', ], ], 'SnapshotState' => [ 'base' => NULL, 'refs' => [ 'RestoreSnapshotFromRecycleBinResult$State' => '

The state of the snapshot.

', 'Snapshot$State' => '

The snapshot state.

', 'SnapshotInfo$State' => '

Current state of the snapshot.

', 'SnapshotTierStatus$Status' => '

The state of the snapshot.

', ], ], 'SnapshotTaskDetail' => [ 'base' => '

Details about the import snapshot task.

', 'refs' => [ 'ImportSnapshotResult$SnapshotTaskDetail' => '

Information about the import snapshot task.

', 'ImportSnapshotTask$SnapshotTaskDetail' => '

Describes an import snapshot task.

', ], ], 'SnapshotTierStatus' => [ 'base' => '

Provides information about a snapshot\'s storage tier.

', 'refs' => [ 'snapshotTierStatusSet$member' => NULL, ], ], 'SpotAllocationStrategy' => [ 'base' => NULL, 'refs' => [ 'SpotOptions$AllocationStrategy' => '

The strategy that determines how to allocate the target Spot Instance capacity across the Spot Instance pools specified by the EC2 Fleet launch configuration. For more information, see Allocation strategies for Spot Instances in the Amazon EC2 User Guide.

price-capacity-optimized (recommended)

EC2 Fleet identifies the pools with the highest capacity availability for the number of instances that are launching. This means that we will request Spot Instances from the pools that we believe have the lowest chance of interruption in the near term. EC2 Fleet then requests Spot Instances from the lowest priced of these pools.

capacity-optimized

EC2 Fleet identifies the pools with the highest capacity availability for the number of instances that are launching. This means that we will request Spot Instances from the pools that we believe have the lowest chance of interruption in the near term. To give certain instance types a higher chance of launching first, use capacity-optimized-prioritized. Set a priority for each instance type by using the Priority parameter for LaunchTemplateOverrides. You can assign the same priority to different LaunchTemplateOverrides. EC2 implements the priorities on a best-effort basis, but optimizes for capacity first. capacity-optimized-prioritized is supported only if your EC2 Fleet uses a launch template. Note that if the On-Demand AllocationStrategy is set to prioritized, the same priority is applied when fulfilling On-Demand capacity.

diversified

EC2 Fleet requests instances from all of the Spot Instance pools that you specify.

lowest-price

EC2 Fleet requests instances from the lowest priced Spot Instance pool that has available capacity. If the lowest priced pool doesn\'t have available capacity, the Spot Instances come from the next lowest priced pool that has available capacity. If a pool runs out of capacity before fulfilling your desired capacity, EC2 Fleet will continue to fulfill your request by drawing from the next lowest priced pool. To ensure that your desired capacity is met, you might receive Spot Instances from several pools. Because this strategy only considers instance price and not capacity availability, it might lead to high interruption rates.

Default: lowest-price

', 'SpotOptionsRequest$AllocationStrategy' => '

The strategy that determines how to allocate the target Spot Instance capacity across the Spot Instance pools specified by the EC2 Fleet launch configuration. For more information, see Allocation strategies for Spot Instances in the Amazon EC2 User Guide.

price-capacity-optimized (recommended)

EC2 Fleet identifies the pools with the highest capacity availability for the number of instances that are launching. This means that we will request Spot Instances from the pools that we believe have the lowest chance of interruption in the near term. EC2 Fleet then requests Spot Instances from the lowest priced of these pools.

capacity-optimized

EC2 Fleet identifies the pools with the highest capacity availability for the number of instances that are launching. This means that we will request Spot Instances from the pools that we believe have the lowest chance of interruption in the near term. To give certain instance types a higher chance of launching first, use capacity-optimized-prioritized. Set a priority for each instance type by using the Priority parameter for LaunchTemplateOverrides. You can assign the same priority to different LaunchTemplateOverrides. EC2 implements the priorities on a best-effort basis, but optimizes for capacity first. capacity-optimized-prioritized is supported only if your EC2 Fleet uses a launch template. Note that if the On-Demand AllocationStrategy is set to prioritized, the same priority is applied when fulfilling On-Demand capacity.

diversified

EC2 Fleet requests instances from all of the Spot Instance pools that you specify.

lowest-price

EC2 Fleet requests instances from the lowest priced Spot Instance pool that has available capacity. If the lowest priced pool doesn\'t have available capacity, the Spot Instances come from the next lowest priced pool that has available capacity. If a pool runs out of capacity before fulfilling your desired capacity, EC2 Fleet will continue to fulfill your request by drawing from the next lowest priced pool. To ensure that your desired capacity is met, you might receive Spot Instances from several pools. Because this strategy only considers instance price and not capacity availability, it might lead to high interruption rates.

Default: lowest-price

', ], ], 'SpotCapacityRebalance' => [ 'base' => '

The Spot Instance replacement strategy to use when Amazon EC2 emits a signal that your Spot Instance is at an elevated risk of being interrupted. For more information, see Capacity rebalancing in the Amazon EC2 User Guide for Linux Instances.

', 'refs' => [ 'SpotMaintenanceStrategies$CapacityRebalance' => '

The Spot Instance replacement strategy to use when Amazon EC2 emits a signal that your Spot Instance is at an elevated risk of being interrupted. For more information, see Capacity rebalancing in the Amazon EC2 User Guide for Linux Instances.

', ], ], 'SpotDatafeedSubscription' => [ 'base' => '

Describes the data feed for a Spot Instance.

', 'refs' => [ 'CreateSpotDatafeedSubscriptionResult$SpotDatafeedSubscription' => '

The Spot Instance data feed subscription.

', 'DescribeSpotDatafeedSubscriptionResult$SpotDatafeedSubscription' => '

The Spot Instance data feed subscription.

', ], ], 'SpotFleetLaunchSpecification' => [ 'base' => '

Describes the launch specification for one or more Spot Instances. If you include On-Demand capacity in your fleet request or want to specify an EFA network device, you can\'t use SpotFleetLaunchSpecification; you must use LaunchTemplateConfig.

', 'refs' => [ 'LaunchSpecsList$member' => NULL, ], ], 'SpotFleetMonitoring' => [ 'base' => '

Describes whether monitoring is enabled.

', 'refs' => [ 'SpotFleetLaunchSpecification$Monitoring' => '

Enable or disable monitoring for the instances.

', ], ], 'SpotFleetRequestConfig' => [ 'base' => '

Describes a Spot Fleet request.

', 'refs' => [ 'SpotFleetRequestConfigSet$member' => NULL, ], ], 'SpotFleetRequestConfigData' => [ 'base' => '

Describes the configuration of a Spot Fleet request.

', 'refs' => [ 'RequestSpotFleetRequest$SpotFleetRequestConfig' => '

The configuration for the Spot Fleet request.

', 'SpotFleetRequestConfig$SpotFleetRequestConfig' => '

The configuration of the Spot Fleet request.

', ], ], 'SpotFleetRequestConfigSet' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotFleetRequestsResponse$SpotFleetRequestConfigs' => '

Information about the configuration of your Spot Fleet.

', ], ], 'SpotFleetRequestId' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotFleetInstancesRequest$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'DescribeSpotFleetRequestHistoryRequest$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'ModifySpotFleetRequestRequest$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'SpotFleetRequestIdList$member' => NULL, ], ], 'SpotFleetRequestIdList' => [ 'base' => NULL, 'refs' => [ 'CancelSpotFleetRequestsRequest$SpotFleetRequestIds' => '

The IDs of the Spot Fleet requests.

', 'DescribeSpotFleetRequestsRequest$SpotFleetRequestIds' => '

The IDs of the Spot Fleet requests.

', ], ], 'SpotFleetTagSpecification' => [ 'base' => '

The tags for a Spot Fleet resource.

', 'refs' => [ 'SpotFleetTagSpecificationList$member' => NULL, ], ], 'SpotFleetTagSpecificationList' => [ 'base' => NULL, 'refs' => [ 'SpotFleetLaunchSpecification$TagSpecifications' => '

The tags to apply during creation.

', ], ], 'SpotInstanceInterruptionBehavior' => [ 'base' => NULL, 'refs' => [ 'SpotOptions$InstanceInterruptionBehavior' => '

The behavior when a Spot Instance is interrupted.

Default: terminate

', 'SpotOptionsRequest$InstanceInterruptionBehavior' => '

The behavior when a Spot Instance is interrupted.

Default: terminate

', ], ], 'SpotInstanceRequest' => [ 'base' => '

Describes a Spot Instance request.

', 'refs' => [ 'SpotInstanceRequestList$member' => NULL, ], ], 'SpotInstanceRequestId' => [ 'base' => NULL, 'refs' => [ 'SpotInstanceRequestIdList$member' => NULL, ], ], 'SpotInstanceRequestIdList' => [ 'base' => NULL, 'refs' => [ 'CancelSpotInstanceRequestsRequest$SpotInstanceRequestIds' => '

The IDs of the Spot Instance requests.

', 'DescribeSpotInstanceRequestsRequest$SpotInstanceRequestIds' => '

The IDs of the Spot Instance requests.

', ], ], 'SpotInstanceRequestList' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotInstanceRequestsResult$SpotInstanceRequests' => '

The Spot Instance requests.

', 'RequestSpotInstancesResult$SpotInstanceRequests' => '

The Spot Instance requests.

', ], ], 'SpotInstanceState' => [ 'base' => NULL, 'refs' => [ 'SpotInstanceRequest$State' => '

The state of the Spot Instance request. Spot request status information helps track your Spot Instance requests. For more information, see Spot request status in the Amazon EC2 User Guide for Linux Instances.

', ], ], 'SpotInstanceStateFault' => [ 'base' => '

Describes a Spot Instance state change.

', 'refs' => [ 'SpotDatafeedSubscription$Fault' => '

The fault codes for the Spot Instance request, if any.

', 'SpotInstanceRequest$Fault' => '

The fault codes for the Spot Instance request, if any.

', ], ], 'SpotInstanceStatus' => [ 'base' => '

Describes the status of a Spot Instance request.

', 'refs' => [ 'SpotInstanceRequest$Status' => '

The status code and status message describing the Spot Instance request.

', ], ], 'SpotInstanceType' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateSpotMarketOptions$SpotInstanceType' => '

The Spot Instance request type.

', 'LaunchTemplateSpotMarketOptionsRequest$SpotInstanceType' => '

The Spot Instance request type.

', 'RequestSpotInstancesRequest$Type' => '

The Spot Instance request type.

Default: one-time

', 'SpotInstanceRequest$Type' => '

The Spot Instance request type.

', 'SpotMarketOptions$SpotInstanceType' => '

The Spot Instance request type. For RunInstances, persistent Spot Instance requests are only supported when the instance interruption behavior is either hibernate or stop.

', ], ], 'SpotMaintenanceStrategies' => [ 'base' => '

The strategies for managing your Spot Instances that are at an elevated risk of being interrupted.

', 'refs' => [ 'SpotFleetRequestConfigData$SpotMaintenanceStrategies' => '

The strategies for managing your Spot Instances that are at an elevated risk of being interrupted.

', ], ], 'SpotMarketOptions' => [ 'base' => '

The options for Spot Instances.

', 'refs' => [ 'InstanceMarketOptionsRequest$SpotOptions' => '

The options for Spot Instances.

', ], ], 'SpotOptions' => [ 'base' => '

Describes the configuration of Spot Instances in an EC2 Fleet.

', 'refs' => [ 'FleetData$SpotOptions' => '

The configuration of Spot Instances in an EC2 Fleet.

', ], ], 'SpotOptionsRequest' => [ 'base' => '

Describes the configuration of Spot Instances in an EC2 Fleet request.

', 'refs' => [ 'CreateFleetRequest$SpotOptions' => '

Describes the configuration of Spot Instances in an EC2 Fleet.

', ], ], 'SpotPlacement' => [ 'base' => '

Describes Spot Instance placement.

', 'refs' => [ 'LaunchSpecification$Placement' => '

The placement information for the instance.

', 'RequestSpotLaunchSpecification$Placement' => '

The placement information for the instance.

', 'SpotFleetLaunchSpecification$Placement' => '

The placement information.

', ], ], 'SpotPlacementScore' => [ 'base' => '

The Spot placement score for this Region or Availability Zone. The score is calculated based on the assumption that the capacity-optimized allocation strategy is used and that all of the Availability Zones in the Region can be used.

', 'refs' => [ 'SpotPlacementScores$member' => NULL, ], ], 'SpotPlacementScores' => [ 'base' => NULL, 'refs' => [ 'GetSpotPlacementScoresResult$SpotPlacementScores' => '

The Spot placement score for the top 10 Regions or Availability Zones, scored on a scale from 1 to 10. Each score
 reflects how likely it is that each Region or Availability Zone will succeed at fulfilling the specified target capacity
 at the time of the Spot placement score request. A score of 10 means that your Spot capacity request is highly likely to succeed in that Region or Availability Zone.

If you request a Spot placement score for Regions, a high score assumes that your fleet request will be configured to use all Availability Zones and the capacity-optimized allocation strategy. If you request a Spot placement score for Availability Zones, a high score assumes that your fleet request will be configured to use a single Availability Zone and the capacity-optimized allocation strategy.

Different
 Regions or Availability Zones might return the same score.

The Spot placement score serves as a recommendation only. No score guarantees that your Spot request will be fully or partially fulfilled.

', ], ], 'SpotPlacementScoresMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetSpotPlacementScoresRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'SpotPlacementScoresTargetCapacity' => [ 'base' => NULL, 'refs' => [ 'GetSpotPlacementScoresRequest$TargetCapacity' => '

The target capacity.

', ], ], 'SpotPrice' => [ 'base' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'refs' => [ 'SpotPriceHistoryList$member' => NULL, ], ], 'SpotPriceHistoryList' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotPriceHistoryResult$SpotPriceHistory' => '

The historical Spot prices.

', ], ], 'SpreadLevel' => [ 'base' => NULL, 'refs' => [ 'CreatePlacementGroupRequest$SpreadLevel' => '

Determines how placement groups spread instances.

  • Host – You can use host only with Outpost placement groups.

  • Rack – No usage restrictions.

', 'PlacementGroup$SpreadLevel' => '

The spread level for the placement group. Only Outpost placement groups can be spread across hosts.

', ], ], 'StaleIpPermission' => [ 'base' => '

Describes a stale rule in a security group.

', 'refs' => [ 'StaleIpPermissionSet$member' => NULL, ], ], 'StaleIpPermissionSet' => [ 'base' => NULL, 'refs' => [ 'StaleSecurityGroup$StaleIpPermissions' => '

Information about the stale inbound rules in the security group.

', 'StaleSecurityGroup$StaleIpPermissionsEgress' => '

Information about the stale outbound rules in the security group.

', ], ], 'StaleSecurityGroup' => [ 'base' => '

Describes a stale security group (a security group that contains stale rules).

', 'refs' => [ 'StaleSecurityGroupSet$member' => NULL, ], ], 'StaleSecurityGroupSet' => [ 'base' => NULL, 'refs' => [ 'DescribeStaleSecurityGroupsResult$StaleSecurityGroupSet' => '

Information about the stale security groups.

', ], ], 'StartInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'StartNetworkInsightsAccessScopeAnalysisRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartNetworkInsightsAccessScopeAnalysisResult' => [ 'base' => NULL, 'refs' => [], ], 'StartNetworkInsightsAnalysisRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartNetworkInsightsAnalysisResult' => [ 'base' => NULL, 'refs' => [], ], 'StartVpcEndpointServicePrivateDnsVerificationRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartVpcEndpointServicePrivateDnsVerificationResult' => [ 'base' => NULL, 'refs' => [], ], 'State' => [ 'base' => NULL, 'refs' => [ 'VpcEndpoint$State' => '

The state of the endpoint.

', 'VpcEndpointConnection$VpcEndpointState' => '

The state of the VPC endpoint.

', ], ], 'StateReason' => [ 'base' => '

Describes a state change.

', 'refs' => [ 'Image$StateReason' => '

The reason for the state change.

', 'Instance$StateReason' => '

The reason for the most recent state transition.

', 'LocalGatewayRouteTable$StateReason' => '

Information about the state change.

', ], ], 'StaticSourcesSupportValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayMulticastDomainRequestOptions$StaticSourcesSupport' => '

Specify whether to enable support for statically configuring multicast group sources for a domain.

', 'TransitGatewayMulticastDomainOptions$StaticSourcesSupport' => '

Indicates whether support for statically configuring transit gateway multicast group sources is turned on.

', ], ], 'StatisticType' => [ 'base' => NULL, 'refs' => [ 'DataQuery$Statistic' => '

The metric data aggregation period, p50, between the specified startDate and endDate. For example, a metric of five_minutes is the median of all the data points gathered within those five minutes. p50 is the only supported metric.

', 'DataResponse$Statistic' => '

The statistic used for the network performance request.

', 'DisableAwsNetworkPerformanceMetricSubscriptionRequest$Statistic' => '

The statistic used for the disabled subscription.

', 'EnableAwsNetworkPerformanceMetricSubscriptionRequest$Statistic' => '

The statistic used for the enabled subscription.

', 'Subscription$Statistic' => '

The statistic used for the subscription.

', ], ], 'Status' => [ 'base' => NULL, 'refs' => [ 'MoveAddressToVpcResult$Status' => '

The status of the move of the IP address.

', 'RestoreAddressToClassicResult$Status' => '

The move status for the IP address.

', ], ], 'StatusName' => [ 'base' => NULL, 'refs' => [ 'InstanceStatusDetails$Name' => '

The type of instance status.

', ], ], 'StatusType' => [ 'base' => NULL, 'refs' => [ 'InstanceStatusDetails$Status' => '

The status.

', ], ], 'StopInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'StopInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'Storage' => [ 'base' => '

Describes the storage location for an instance store-backed AMI.

', 'refs' => [ 'BundleInstanceRequest$Storage' => '

The bucket in which to store the AMI. You can specify a bucket that you already own or a new bucket that Amazon EC2 creates on your behalf. If you specify a bucket that belongs to someone else, Amazon EC2 returns an error.

', 'BundleTask$Storage' => '

The Amazon S3 storage locations.

', ], ], 'StorageLocation' => [ 'base' => '

Describes a storage location in Amazon S3.

', 'refs' => [ 'CreateFpgaImageRequest$InputStorageLocation' => '

The location of the encrypted design checkpoint in Amazon S3. The input must be a tarball.

', 'CreateFpgaImageRequest$LogsStorageLocation' => '

The location in Amazon S3 for the output logs.

', ], ], 'StorageTier' => [ 'base' => NULL, 'refs' => [ 'Snapshot$StorageTier' => '

The storage tier in which the snapshot is stored. standard indicates that the snapshot is stored in the standard snapshot storage tier and that it is ready for use. archive indicates that the snapshot is currently archived and that it must be restored before it can be used.

', 'SnapshotTierStatus$StorageTier' => '

The storage tier in which the snapshot is stored. standard indicates that the snapshot is stored in the standard snapshot storage tier and that it is ready for use. archive indicates that the snapshot is currently archived and that it must be restored before it can be used.

', ], ], 'StoreImageTaskResult' => [ 'base' => '

The information about the AMI store task, including the progress of the task.

', 'refs' => [ 'StoreImageTaskResultSet$member' => NULL, ], ], 'StoreImageTaskResultSet' => [ 'base' => NULL, 'refs' => [ 'DescribeStoreImageTasksResult$StoreImageTaskResults' => '

The information about the AMI store tasks.

', ], ], 'String' => [ 'base' => NULL, 'refs' => [ 'AcceptAddressTransferRequest$Address' => '

The Elastic IP address you are accepting for transfer.

', 'AcceptReservedInstancesExchangeQuoteResult$ExchangeId' => '

The ID of the successful exchange.

', 'AccessScopeAnalysisFinding$FindingId' => '

The ID of the finding.

', 'AccountAttribute$AttributeName' => '

The name of the account attribute.

', 'AccountAttributeValue$AttributeValue' => '

The value of the attribute.

', 'ActiveInstance$InstanceId' => '

The ID of the instance.

', 'ActiveInstance$InstanceType' => '

The instance type.

', 'ActiveInstance$SpotInstanceRequestId' => '

The ID of the Spot Instance request.

', 'AddIpamOperatingRegion$RegionName' => '

The name of the operating Region.

', 'AddPrefixListEntry$Cidr' => '

The CIDR block.

', 'AddPrefixListEntry$Description' => '

A description for the entry.

Constraints: Up to 255 characters in length.

', 'AddedPrincipal$Principal' => '

The Amazon Resource Name (ARN) of the principal.

', 'AddedPrincipal$ServicePermissionId' => '

The ID of the service permission.

', 'AddedPrincipal$ServiceId' => '

The ID of the service.

', 'AdditionalDetail$AdditionalDetailType' => '

The additional detail code.

', 'AdditionalDetail$ServiceName' => '

The name of the VPC endpoint service.

', 'Address$InstanceId' => '

The ID of the instance that the address is associated with (if any).

', 'Address$PublicIp' => '

The Elastic IP address.

', 'Address$AllocationId' => '

The ID representing the allocation of the address.

', 'Address$AssociationId' => '

The ID representing the association of the address with an instance.

', 'Address$NetworkInterfaceId' => '

The ID of the network interface.

', 'Address$NetworkInterfaceOwnerId' => '

The ID of the Amazon Web Services account that owns the network interface.

', 'Address$PrivateIpAddress' => '

The private IP address associated with the Elastic IP address.

', 'Address$PublicIpv4Pool' => '

The ID of an address pool.

', 'Address$NetworkBorderGroup' => '

The name of the unique set of Availability Zones, Local Zones, or Wavelength Zones from which Amazon Web Services advertises IP addresses.

', 'Address$CustomerOwnedIp' => '

The customer-owned IP address.

', 'Address$CustomerOwnedIpv4Pool' => '

The ID of the customer-owned address pool.

', 'Address$CarrierIp' => '

The carrier IP address associated. This option is only available for network interfaces which reside in a subnet in a Wavelength Zone (for example an EC2 instance).

', 'AddressAttribute$PtrRecord' => '

The pointer (PTR) record for the IP address.

', 'AddressTransfer$PublicIp' => '

The Elastic IP address being transferred.

', 'AddressTransfer$AllocationId' => '

The allocation ID of an Elastic IP address.

', 'AddressTransfer$TransferAccountId' => '

The ID of the account that you want to transfer the Elastic IP address to.

', 'AdvertiseByoipCidrRequest$Cidr' => '

The address range, in CIDR notation. This must be the exact range that you provisioned. You can\'t advertise only a portion of the provisioned range.

', 'AdvertiseByoipCidrRequest$Asn' => '

The public 2-byte or 4-byte ASN that you want to advertise.

', 'AdvertiseByoipCidrRequest$NetworkBorderGroup' => '

If you have Local Zones enabled, you can choose a network border group for Local Zones when you provision and advertise a BYOIPv4 CIDR. Choose the network border group carefully as the EIP and the Amazon Web Services resource it is associated with must reside in the same network border group.

You can provision BYOIP address ranges to and advertise them in the following Local Zone network border groups:

  • us-east-1-dfw-2

  • us-west-2-lax-1

  • us-west-2-phx-2

You cannot provision or advertise BYOIPv6 address ranges in Local Zones at this time.

', 'AllocateAddressRequest$NetworkBorderGroup' => '

A unique set of Availability Zones, Local Zones, or Wavelength Zones from which Amazon Web Services advertises IP addresses. Use this parameter to limit the IP address to this location. IP addresses cannot move between network border groups.

Use DescribeAvailabilityZones to view the network border groups.

', 'AllocateAddressRequest$CustomerOwnedIpv4Pool' => '

The ID of a customer-owned address pool. Use this parameter to let Amazon EC2 select an address from the address pool. Alternatively, specify a specific address from the address pool.

', 'AllocateAddressResult$PublicIp' => '

The Elastic IP address.

', 'AllocateAddressResult$AllocationId' => '

The ID that represents the allocation of the Elastic IP address.

', 'AllocateAddressResult$PublicIpv4Pool' => '

The ID of an address pool.

', 'AllocateAddressResult$NetworkBorderGroup' => '

The set of Availability Zones, Local Zones, or Wavelength Zones from which Amazon Web Services advertises IP addresses.

', 'AllocateAddressResult$CustomerOwnedIp' => '

The customer-owned IP address.

', 'AllocateAddressResult$CustomerOwnedIpv4Pool' => '

The ID of the customer-owned address pool.

', 'AllocateAddressResult$CarrierIp' => '

The carrier IP address. This option is only available for network interfaces that reside in a subnet in a Wavelength Zone.

', 'AllocateHostsRequest$AvailabilityZone' => '

The Availability Zone in which to allocate the Dedicated Host.

', 'AllocateHostsRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'AllocateHostsRequest$InstanceType' => '

Specifies the instance type to be supported by the Dedicated Hosts. If you specify an instance type, the Dedicated Hosts support instances of the specified instance type only.

If you want the Dedicated Hosts to support multiple instance types in a specific instance family, omit this parameter and specify InstanceFamily instead. You cannot specify InstanceType and InstanceFamily in the same request.

', 'AllocateHostsRequest$InstanceFamily' => '

Specifies the instance family to be supported by the Dedicated Hosts. If you specify an instance family, the Dedicated Hosts support multiple instance types within that instance family.

If you want the Dedicated Hosts to support a specific instance type only, omit this parameter and specify InstanceType instead. You cannot specify InstanceFamily and InstanceType in the same request.

', 'AllocateHostsRequest$OutpostArn' => '

The Amazon Resource Name (ARN) of the Amazon Web Services Outpost on which to allocate the Dedicated Host. If you specify OutpostArn, you can optionally specify AssetIds.

If you are allocating the Dedicated Host in a Region, omit this parameter.

', 'AllocateIpamPoolCidrRequest$Cidr' => '

The CIDR you would like to allocate from the IPAM pool. Note the following:

  • If there is no DefaultNetmaskLength allocation rule set on the pool, you must specify either the NetmaskLength or the CIDR.

  • If the DefaultNetmaskLength allocation rule is set on the pool, you can specify either the NetmaskLength or the CIDR and the DefaultNetmaskLength allocation rule will be ignored.

Possible values: Any available IPv4 or IPv6 CIDR.

', 'AllocateIpamPoolCidrRequest$ClientToken' => '

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'AllocateIpamPoolCidrRequest$Description' => '

A description for the allocation.

', 'AllowedPrincipal$Principal' => '

The Amazon Resource Name (ARN) of the principal.

', 'AllowedPrincipal$ServicePermissionId' => '

The ID of the service permission.

', 'AllowedPrincipal$ServiceId' => '

The ID of the service.

', 'AlternatePathHint$ComponentId' => '

The ID of the component.

', 'AlternatePathHint$ComponentArn' => '

The Amazon Resource Name (ARN) of the component.

', 'AnalysisAclRule$Cidr' => '

The IPv4 address range, in CIDR notation.

', 'AnalysisAclRule$Protocol' => '

The protocol.

', 'AnalysisAclRule$RuleAction' => '

Indicates whether to allow or deny traffic that matches the rule.

', 'AnalysisComponent$Id' => '

The ID of the component.

', 'AnalysisComponent$Arn' => '

The Amazon Resource Name (ARN) of the component.

', 'AnalysisComponent$Name' => '

The name of the analysis component.

', 'AnalysisLoadBalancerTarget$AvailabilityZone' => '

The Availability Zone.

', 'AnalysisPacketHeader$Protocol' => '

The protocol.

', 'AnalysisRouteTableRoute$DestinationCidr' => '

The destination IPv4 address, in CIDR notation.

', 'AnalysisRouteTableRoute$DestinationPrefixListId' => '

The prefix of the Amazon Web Service.

', 'AnalysisRouteTableRoute$EgressOnlyInternetGatewayId' => '

The ID of an egress-only internet gateway.

', 'AnalysisRouteTableRoute$GatewayId' => '

The ID of the gateway, such as an internet gateway or virtual private gateway.

', 'AnalysisRouteTableRoute$InstanceId' => '

The ID of the instance, such as a NAT instance.

', 'AnalysisRouteTableRoute$NatGatewayId' => '

The ID of a NAT gateway.

', 'AnalysisRouteTableRoute$NetworkInterfaceId' => '

The ID of a network interface.

', 'AnalysisRouteTableRoute$Origin' => '

Describes how the route was created. The following are the possible values:

  • CreateRouteTable - The route was automatically created when the route table was created.

  • CreateRoute - The route was manually added to the route table.

  • EnableVgwRoutePropagation - The route was propagated by route propagation.

', 'AnalysisRouteTableRoute$TransitGatewayId' => '

The ID of a transit gateway.

', 'AnalysisRouteTableRoute$VpcPeeringConnectionId' => '

The ID of a VPC peering connection.

', 'AnalysisRouteTableRoute$State' => '

The state. The following are the possible values:

  • active

  • blackhole

', 'AnalysisRouteTableRoute$CarrierGatewayId' => '

The ID of a carrier gateway.

', 'AnalysisRouteTableRoute$LocalGatewayId' => '

The ID of a local gateway.

', 'AnalysisSecurityGroupRule$Cidr' => '

The IPv4 address range, in CIDR notation.

', 'AnalysisSecurityGroupRule$Direction' => '

The direction. The following are the possible values:

  • egress

  • ingress

', 'AnalysisSecurityGroupRule$SecurityGroupId' => '

The security group ID.

', 'AnalysisSecurityGroupRule$PrefixListId' => '

The prefix list ID.

', 'AnalysisSecurityGroupRule$Protocol' => '

The protocol name.

', 'AsnAssociation$Asn' => '

The association\'s ASN.

', 'AsnAssociation$Cidr' => '

The association\'s CIDR.

', 'AsnAssociation$StatusMessage' => '

The association\'s status message.

', 'AsnAuthorizationContext$Message' => '

The authorization context\'s message.

', 'AsnAuthorizationContext$Signature' => '

The authorization context\'s signature.

', 'AssignIpv6AddressesResult$NetworkInterfaceId' => '

The ID of the network interface.

', 'AssignPrivateIpAddressesResult$NetworkInterfaceId' => '

The ID of the network interface.

', 'AssignedPrivateIpAddress$PrivateIpAddress' => '

The private IP address assigned to the network interface.

', 'AssociateAddressRequest$PrivateIpAddress' => '

The primary or secondary private IP address to associate with the Elastic IP address. If no private IP address is specified, the Elastic IP address is associated with the primary private IP address.

', 'AssociateAddressResult$AssociationId' => '

The ID that represents the association of the Elastic IP address with an instance.

', 'AssociateClientVpnTargetNetworkRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'AssociateClientVpnTargetNetworkResult$AssociationId' => '

The unique ID of the target network association.

', 'AssociateEnclaveCertificateIamRoleResult$CertificateS3BucketName' => '

The name of the Amazon S3 bucket to which the certificate was uploaded.

', 'AssociateEnclaveCertificateIamRoleResult$CertificateS3ObjectKey' => '

The Amazon S3 object key where the certificate, certificate chain, and encrypted private key bundle are stored. The object key is formatted as follows: role_arn/certificate_arn.

', 'AssociateEnclaveCertificateIamRoleResult$EncryptionKmsKeyId' => '

The ID of the KMS key used to encrypt the private key of the certificate.

', 'AssociateIpamByoasnRequest$Asn' => '

A public 2-byte or 4-byte ASN.

', 'AssociateIpamByoasnRequest$Cidr' => '

The BYOIP CIDR you want to associate with an ASN.

', 'AssociateIpamResourceDiscoveryRequest$ClientToken' => '

A client token.

', 'AssociateRouteTableResult$AssociationId' => '

The route table association ID. This ID is required for disassociating the route table.

', 'AssociateSubnetCidrBlockRequest$Ipv6CidrBlock' => '

The IPv6 CIDR block for your subnet.

', 'AssociateSubnetCidrBlockResult$SubnetId' => '

The ID of the subnet.

', 'AssociateTrunkInterfaceRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.

', 'AssociateTrunkInterfaceResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.

', 'AssociateVpcCidrBlockRequest$CidrBlock' => '

An IPv4 CIDR block to associate with the VPC.

', 'AssociateVpcCidrBlockRequest$Ipv6CidrBlockNetworkBorderGroup' => '

The name of the location from which we advertise the IPV6 CIDR block. Use this parameter to limit the CIDR block to this location.

You must set AmazonProvidedIpv6CidrBlock to true to use this parameter.

You can have one IPv6 CIDR block association per network border group.

', 'AssociateVpcCidrBlockRequest$Ipv6CidrBlock' => '

An IPv6 CIDR block from the IPv6 address pool. You must also specify Ipv6Pool in the request.

To let Amazon choose the IPv6 CIDR block for you, omit this parameter.

', 'AssociateVpcCidrBlockResult$VpcId' => '

The ID of the VPC.

', 'AssociatedRole$CertificateS3BucketName' => '

The name of the Amazon S3 bucket in which the Amazon S3 object is stored.

', 'AssociatedRole$CertificateS3ObjectKey' => '

The key of the Amazon S3 object ey where the certificate, certificate chain, and encrypted private key bundle is stored. The object key is formated as follows: role_arn/certificate_arn.

', 'AssociatedRole$EncryptionKmsKeyId' => '

The ID of the KMS customer master key (CMK) used to encrypt the private key.

', 'AssociatedTargetNetwork$NetworkId' => '

The ID of the subnet.

', 'AssociationStatus$Message' => '

A message about the status of the target network association, if applicable.

', 'AthenaIntegration$IntegrationResultS3DestinationArn' => '

The location in Amazon S3 to store the generated CloudFormation template.

', 'AttachNetworkInterfaceResult$AttachmentId' => '

The ID of the network interface attachment.

', 'AttachVerifiedAccessTrustProviderRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'AttachVolumeRequest$Device' => '

The device name (for example, /dev/sdh or xvdh).

', 'AttributeValue$Value' => '

The attribute value. The value is case-sensitive.

', 'AuthorizationRule$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint with which the authorization rule is associated.

', 'AuthorizationRule$Description' => '

A brief description of the authorization rule.

', 'AuthorizationRule$GroupId' => '

The ID of the Active Directory group to which the authorization rule grants access.

', 'AuthorizationRule$DestinationCidr' => '

The IPv4 address range, in CIDR notation, of the network to which the authorization rule applies.

', 'AuthorizeClientVpnIngressRequest$TargetNetworkCidr' => '

The IPv4 address range, in CIDR notation, of the network for which access is being authorized.

', 'AuthorizeClientVpnIngressRequest$AccessGroupId' => '

The ID of the group to grant access to, for example, the Active Directory group or identity provider (IdP) group. Required if AuthorizeAllGroups is false or not specified.

', 'AuthorizeClientVpnIngressRequest$Description' => '

A brief description of the authorization rule.

', 'AuthorizeClientVpnIngressRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'AuthorizeSecurityGroupEgressRequest$CidrIp' => '

Not supported. Use a set of IP permissions to specify the CIDR.

', 'AuthorizeSecurityGroupEgressRequest$IpProtocol' => '

Not supported. Use a set of IP permissions to specify the protocol name or number.

', 'AuthorizeSecurityGroupEgressRequest$SourceSecurityGroupName' => '

Not supported. Use a set of IP permissions to specify a destination security group.

', 'AuthorizeSecurityGroupEgressRequest$SourceSecurityGroupOwnerId' => '

Not supported. Use a set of IP permissions to specify a destination security group.

', 'AuthorizeSecurityGroupIngressRequest$CidrIp' => '

The IPv4 address range, in CIDR format. You can\'t specify this parameter when specifying a source security group. To specify an IPv6 address range, use a set of IP permissions.

Alternatively, use a set of IP permissions to specify multiple rules and a description for the rule.

', 'AuthorizeSecurityGroupIngressRequest$IpProtocol' => '

The IP protocol name (tcp, udp, icmp) or number (see Protocol Numbers). To specify icmpv6, use a set of IP permissions.

Use -1 to specify all protocols. If you specify -1 or a protocol other than tcp, udp, or icmp, traffic on all ports is allowed, regardless of any ports you specify.

Alternatively, use a set of IP permissions to specify multiple rules and a description for the rule.

', 'AuthorizeSecurityGroupIngressRequest$SourceSecurityGroupName' => '

[Default VPC] The name of the source security group. You can\'t specify this parameter in combination with the following parameters: the CIDR IP address range, the start of the port range, the IP protocol, and the end of the port range. Creates rules that grant full ICMP, UDP, and TCP access. To create a rule with a specific IP protocol and port range, use a set of IP permissions instead. The source security group must be in the same VPC.

', 'AuthorizeSecurityGroupIngressRequest$SourceSecurityGroupOwnerId' => '

[Nondefault VPC] The Amazon Web Services account ID for the source security group, if the source security group is in a different account. You can\'t specify this parameter in combination with the following parameters: the CIDR IP address range, the IP protocol, the start of the port range, and the end of the port range. Creates rules that grant full ICMP, UDP, and TCP access. To create a rule with a specific IP protocol and port range, use a set of IP permissions instead.

', 'AvailabilityZone$RegionName' => '

The name of the Region.

', 'AvailabilityZone$ZoneName' => '

The name of the Availability Zone, Local Zone, or Wavelength Zone.

', 'AvailabilityZone$ZoneId' => '

The ID of the Availability Zone, Local Zone, or Wavelength Zone.

', 'AvailabilityZone$GroupName' => '

For Availability Zones, this parameter has the same value as the Region name.

For Local Zones, the name of the associated group, for example us-west-2-lax-1.

For Wavelength Zones, the name of the associated group, for example us-east-1-wl1-bos-wlz-1.

', 'AvailabilityZone$NetworkBorderGroup' => '

The name of the network border group.

', 'AvailabilityZone$ZoneType' => '

The type of zone. The valid values are availability-zone, local-zone, and wavelength-zone.

', 'AvailabilityZone$ParentZoneName' => '

The name of the zone that handles some of the Local Zone or Wavelength Zone control plane operations, such as API calls.

', 'AvailabilityZone$ParentZoneId' => '

The ID of the zone that handles some of the Local Zone or Wavelength Zone control plane operations, such as API calls.

', 'AvailabilityZoneMessage$Message' => '

The message about the Availability Zone, Local Zone, or Wavelength Zone.

', 'AvailabilityZoneStringList$member' => NULL, 'BillingProductList$member' => NULL, 'BlockDeviceMapping$DeviceName' => '

The device name (for example, /dev/sdh or xvdh).

', 'BlockDeviceMapping$VirtualName' => '

The virtual device name (ephemeralN). Instance store volumes are numbered starting from 0. An instance type with 2 available instance store volumes can specify mappings for ephemeral0 and ephemeral1. The number of available instance store volumes depends on the instance type. After you connect to the instance, you must mount the volume.

NVMe instance store volumes are automatically enumerated and assigned a device name. Including them in your block device mapping has no effect.

Constraints: For M3 instances, you must specify instance store volumes in the block device mapping for the instance. When you launch an M3 instance, we ignore any instance store volumes specified in the block device mapping for the AMI.

', 'BlockDeviceMapping$NoDevice' => '

To omit the device from the block device mapping, specify an empty string. When this property is specified, the device is removed from the block device mapping regardless of the assigned value.

', 'BundleTask$BundleId' => '

The ID of the bundle task.

', 'BundleTask$InstanceId' => '

The ID of the instance associated with this bundle task.

', 'BundleTask$Progress' => '

The level of task completion, as a percent (for example, 20%).

', 'BundleTaskError$Code' => '

The error code.

', 'BundleTaskError$Message' => '

The error message.

', 'Byoasn$Asn' => '

A public 2-byte or 4-byte ASN.

', 'Byoasn$StatusMessage' => '

The status message.

', 'ByoipCidr$Cidr' => '

The address range, in CIDR notation.

', 'ByoipCidr$Description' => '

The description of the address range.

', 'ByoipCidr$StatusMessage' => '

Upon success, contains the ID of the address pool. Otherwise, contains an error message.

', 'ByoipCidr$NetworkBorderGroup' => '

If you have Local Zones enabled, you can choose a network border group for Local Zones when you provision and advertise a BYOIPv4 CIDR. Choose the network border group carefully as the EIP and the Amazon Web Services resource it is associated with must reside in the same network border group.

You can provision BYOIP address ranges to and advertise them in the following Local Zone network border groups:

  • us-east-1-dfw-2

  • us-west-2-lax-1

  • us-west-2-phx-2

You cannot provision or advertise BYOIPv6 address ranges in Local Zones at this time.

', 'CancelConversionRequest$ReasonMessage' => '

The reason for canceling the conversion task.

', 'CancelImportTaskRequest$CancelReason' => '

The reason for canceling the task.

', 'CancelImportTaskResult$ImportTaskId' => '

The ID of the task being canceled.

', 'CancelImportTaskResult$PreviousState' => '

The current state of the task being canceled.

', 'CancelImportTaskResult$State' => '

The current state of the task being canceled.

', 'CancelSpotFleetRequestsError$Message' => '

The description for the error code.

', 'CancelSpotFleetRequestsErrorItem$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'CancelSpotFleetRequestsSuccessItem$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'CancelledSpotInstanceRequest$SpotInstanceRequestId' => '

The ID of the Spot Instance request.

', 'CapacityBlockOffering$InstanceType' => '

The instance type of the Capacity Block offering.

', 'CapacityBlockOffering$AvailabilityZone' => '

The Availability Zone of the Capacity Block offering.

', 'CapacityBlockOffering$UpfrontFee' => '

The total price to be paid up front.

', 'CapacityBlockOffering$CurrencyCode' => '

The currency of the payment for the Capacity Block.

', 'CapacityReservation$CapacityReservationId' => '

The ID of the Capacity Reservation.

', 'CapacityReservation$OwnerId' => '

The ID of the Amazon Web Services account that owns the Capacity Reservation.

', 'CapacityReservation$CapacityReservationArn' => '

The Amazon Resource Name (ARN) of the Capacity Reservation.

', 'CapacityReservation$AvailabilityZoneId' => '

The Availability Zone ID of the Capacity Reservation.

', 'CapacityReservation$InstanceType' => '

The type of instance for which the Capacity Reservation reserves capacity.

', 'CapacityReservation$AvailabilityZone' => '

The Availability Zone in which the capacity is reserved.

', 'CapacityReservation$CapacityReservationFleetId' => '

The ID of the Capacity Reservation Fleet to which the Capacity Reservation belongs. Only valid for Capacity Reservations that were created by a Capacity Reservation Fleet.

', 'CapacityReservationFleet$CapacityReservationFleetArn' => '

The ARN of the Capacity Reservation Fleet.

', 'CapacityReservationFleet$AllocationStrategy' => '

The strategy used by the Capacity Reservation Fleet to determine which of the specified instance types to use. For more information, see For more information, see Allocation strategy in the Amazon EC2 User Guide.

', 'CapacityReservationGroup$GroupArn' => '

The ARN of the resource group.

', 'CapacityReservationGroup$OwnerId' => '

The ID of the Amazon Web Services account that owns the resource group.

', 'CapacityReservationTarget$CapacityReservationResourceGroupArn' => '

The ARN of the Capacity Reservation resource group in which to run the instance.

', 'CapacityReservationTargetResponse$CapacityReservationId' => '

The ID of the targeted Capacity Reservation.

', 'CapacityReservationTargetResponse$CapacityReservationResourceGroupArn' => '

The ARN of the targeted Capacity Reservation group.

', 'CarrierGateway$OwnerId' => '

The Amazon Web Services account ID of the owner of the carrier gateway.

', 'CertificateAuthentication$ClientRootCertificateChain' => '

The ARN of the client certificate.

', 'CertificateAuthenticationRequest$ClientRootCertificateChainArn' => '

The ARN of the client certificate. The certificate must be signed by a certificate authority (CA) and it must be provisioned in Certificate Manager (ACM).

', 'CidrAuthorizationContext$Message' => '

The plain-text authorization message for the prefix and account.

', 'CidrAuthorizationContext$Signature' => '

The signed authorization message for the prefix and account.

', 'CidrBlock$CidrBlock' => '

The IPv4 CIDR block.

', 'ClassicLinkDnsSupport$VpcId' => '

The ID of the VPC.

', 'ClassicLinkInstance$InstanceId' => '

The ID of the instance.

', 'ClassicLinkInstance$VpcId' => '

The ID of the VPC.

', 'ClassicLoadBalancer$Name' => '

The name of the load balancer.

', 'ClientCertificateRevocationListStatus$Message' => '

A message about the status of the client certificate revocation list, if applicable.

', 'ClientConnectOptions$LambdaFunctionArn' => '

The Amazon Resource Name (ARN) of the Lambda function used for connection authorization.

', 'ClientConnectResponseOptions$LambdaFunctionArn' => '

The Amazon Resource Name (ARN) of the Lambda function used for connection authorization.

', 'ClientData$Comment' => '

A user-defined comment about the disk upload.

', 'ClientLoginBannerOptions$BannerText' => '

Customizable text that will be displayed in a banner on Amazon Web Services provided clients when a VPN session is established. UTF-8 encoded characters only. Maximum of 1400 characters.

', 'ClientLoginBannerResponseOptions$BannerText' => '

Customizable text that will be displayed in a banner on Amazon Web Services provided clients when a VPN session is established. UTF-8 encoded characters only. Maximum of 1400 characters.

', 'ClientVpnAuthorizationRuleStatus$Message' => '

A message about the status of the authorization rule, if applicable.

', 'ClientVpnConnection$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint to which the client is connected.

', 'ClientVpnConnection$Timestamp' => '

The current date and time.

', 'ClientVpnConnection$ConnectionId' => '

The ID of the client connection.

', 'ClientVpnConnection$Username' => '

The username of the client who established the client connection. This information is only provided if Active Directory client authentication is used.

', 'ClientVpnConnection$ConnectionEstablishedTime' => '

The date and time the client connection was established.

', 'ClientVpnConnection$IngressBytes' => '

The number of bytes sent by the client.

', 'ClientVpnConnection$EgressBytes' => '

The number of bytes received by the client.

', 'ClientVpnConnection$IngressPackets' => '

The number of packets sent by the client.

', 'ClientVpnConnection$EgressPackets' => '

The number of packets received by the client.

', 'ClientVpnConnection$ClientIp' => '

The IP address of the client.

', 'ClientVpnConnection$CommonName' => '

The common name associated with the client. This is either the name of the client certificate, or the Active Directory user name.

', 'ClientVpnConnection$ConnectionEndTime' => '

The date and time the client connection was terminated.

', 'ClientVpnConnectionStatus$Message' => '

A message about the status of the client connection, if applicable.

', 'ClientVpnEndpoint$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'ClientVpnEndpoint$Description' => '

A brief description of the endpoint.

', 'ClientVpnEndpoint$CreationTime' => '

The date and time the Client VPN endpoint was created.

', 'ClientVpnEndpoint$DeletionTime' => '

The date and time the Client VPN endpoint was deleted, if applicable.

', 'ClientVpnEndpoint$DnsName' => '

The DNS name to be used by clients when connecting to the Client VPN endpoint.

', 'ClientVpnEndpoint$ClientCidrBlock' => '

The IPv4 address range, in CIDR notation, from which client IP addresses are assigned.

', 'ClientVpnEndpoint$ServerCertificateArn' => '

The ARN of the server certificate.

', 'ClientVpnEndpoint$SelfServicePortalUrl' => '

The URL of the self-service portal.

', 'ClientVpnEndpointAttributeStatus$Message' => '

The status message.

', 'ClientVpnEndpointStatus$Message' => '

A message about the status of the Client VPN endpoint.

', 'ClientVpnRoute$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint with which the route is associated.

', 'ClientVpnRoute$DestinationCidr' => '

The IPv4 address range, in CIDR notation, of the route destination.

', 'ClientVpnRoute$TargetSubnet' => '

The ID of the subnet through which traffic is routed.

', 'ClientVpnRoute$Type' => '

The route type.

', 'ClientVpnRoute$Origin' => '

Indicates how the route was associated with the Client VPN endpoint. associate indicates that the route was automatically added when the target network was associated with the Client VPN endpoint. add-route indicates that the route was manually added using the CreateClientVpnRoute action.

', 'ClientVpnRoute$Description' => '

A brief description of the route.

', 'ClientVpnRouteStatus$Message' => '

A message about the status of the Client VPN endpoint route, if applicable.

', 'CloudWatchLogOptions$LogGroupArn' => '

The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.

', 'CloudWatchLogOptions$LogOutputFormat' => '

Configured log format. Default format is json.

Valid values: json | text

', 'CloudWatchLogOptionsSpecification$LogOutputFormat' => '

Set log format. Default format is json.

Valid values: json | text

', 'CoipAddressUsage$AllocationId' => '

The allocation ID of the address.

', 'CoipAddressUsage$AwsAccountId' => '

The Amazon Web Services account ID.

', 'CoipAddressUsage$AwsService' => '

The Amazon Web Services service.

', 'CoipAddressUsage$CoIp' => '

The customer-owned IP address.

', 'CoipCidr$Cidr' => '

An address range in a customer-owned IP address space.

', 'CoipCidr$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'ConfirmProductInstanceRequest$ProductCode' => '

The product code. This must be a product code that you own.

', 'ConfirmProductInstanceResult$OwnerId' => '

The Amazon Web Services account ID of the instance owner. This is only present if the product code is attached to the instance.

', 'ConnectionLogOptions$CloudwatchLogGroup' => '

The name of the CloudWatch Logs log group. Required if connection logging is enabled.

', 'ConnectionLogOptions$CloudwatchLogStream' => '

The name of the CloudWatch Logs log stream to which the connection data is published.

', 'ConnectionLogResponseOptions$CloudwatchLogGroup' => '

The name of the Amazon CloudWatch Logs log group to which connection logging data is published.

', 'ConnectionLogResponseOptions$CloudwatchLogStream' => '

The name of the Amazon CloudWatch Logs log stream to which connection logging data is published.

', 'ConnectionNotification$ConnectionNotificationId' => '

The ID of the notification.

', 'ConnectionNotification$ServiceId' => '

The ID of the endpoint service.

', 'ConnectionNotification$VpcEndpointId' => '

The ID of the VPC endpoint.

', 'ConnectionNotification$ConnectionNotificationArn' => '

The ARN of the SNS topic for the notification.

', 'ConversionTask$ConversionTaskId' => '

The ID of the conversion task.

', 'ConversionTask$ExpirationTime' => '

The time when the task expires. If the upload isn\'t complete before the expiration time, we automatically cancel the task.

', 'ConversionTask$StatusMessage' => '

The status message related to the conversion task.

', 'CopyFpgaImageRequest$SourceFpgaImageId' => '

The ID of the source AFI.

', 'CopyFpgaImageRequest$Description' => '

The description for the new AFI.

', 'CopyFpgaImageRequest$Name' => '

The name for the new AFI. The default is the name of the source AFI.

', 'CopyFpgaImageRequest$SourceRegion' => '

The Region that contains the source AFI.

', 'CopyFpgaImageRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

', 'CopyFpgaImageResult$FpgaImageId' => '

The ID of the new AFI.

', 'CopyImageRequest$ClientToken' => '

Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, see Ensuring idempotency in the Amazon EC2 API Reference.

', 'CopyImageRequest$Description' => '

A description for the new AMI in the destination Region.

', 'CopyImageRequest$Name' => '

The name of the new AMI in the destination Region.

', 'CopyImageRequest$SourceImageId' => '

The ID of the AMI to copy.

', 'CopyImageRequest$SourceRegion' => '

The name of the Region that contains the AMI to copy.

', 'CopyImageRequest$DestinationOutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost to which to copy the AMI. Only specify this parameter when copying an AMI from an Amazon Web Services Region to an Outpost. The AMI must be in the Region of the destination Outpost. You cannot copy an AMI from an Outpost to a Region, from one Outpost to another, or within the same Outpost.

For more information, see Copy AMIs from an Amazon Web Services Region to an Outpost in the Amazon EC2 User Guide.

', 'CopyImageResult$ImageId' => '

The ID of the new AMI.

', 'CopySnapshotRequest$Description' => '

A description for the EBS snapshot.

', 'CopySnapshotRequest$DestinationOutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost to which to copy the snapshot. Only specify this parameter when copying a snapshot from an Amazon Web Services Region to an Outpost. The snapshot must be in the Region for the destination Outpost. You cannot copy a snapshot from an Outpost to a Region, from one Outpost to another, or within the same Outpost.

For more information, see Copy snapshots from an Amazon Web Services Region to an Outpost in the Amazon Elastic Compute Cloud User Guide.

', 'CopySnapshotRequest$DestinationRegion' => '

The destination Region to use in the PresignedUrl parameter of a snapshot copy operation. This parameter is only valid for specifying the destination Region in a PresignedUrl parameter, where it is required.

The snapshot copy is sent to the regional endpoint that you sent the HTTP request to (for example, ec2.us-east-1.amazonaws.com). With the CLI, this is specified using the --region parameter or the default Region in your Amazon Web Services configuration file.

', 'CopySnapshotRequest$SourceRegion' => '

The ID of the Region that contains the snapshot to be copied.

', 'CopySnapshotRequest$SourceSnapshotId' => '

The ID of the EBS snapshot to copy.

', 'CopySnapshotResult$SnapshotId' => '

The ID of the new snapshot.

', 'CreateCapacityReservationFleetRequest$AllocationStrategy' => '

The strategy used by the Capacity Reservation Fleet to determine which of the specified instance types to use. Currently, only the prioritized allocation strategy is supported. For more information, see Allocation strategy in the Amazon EC2 User Guide.

Valid values: prioritized

', 'CreateCapacityReservationFleetRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensure Idempotency.

', 'CreateCapacityReservationFleetResult$AllocationStrategy' => '

The allocation strategy used by the Capacity Reservation Fleet.

', 'CreateCapacityReservationRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensure Idempotency.

', 'CreateCapacityReservationRequest$InstanceType' => '

The instance type for which to reserve capacity. For more information, see Instance types in the Amazon EC2 User Guide.

', 'CreateCarrierGatewayRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateClientVpnEndpointRequest$ClientCidrBlock' => '

The IPv4 address range, in CIDR notation, from which to assign client IP addresses. The address range cannot overlap with the local CIDR of the VPC in which the associated subnet is located, or the routes that you add manually. The address range cannot be changed after the Client VPN endpoint has been created. Client CIDR range must have a size of at least /22 and must not be greater than /12.

', 'CreateClientVpnEndpointRequest$ServerCertificateArn' => '

The ARN of the server certificate. For more information, see the Certificate Manager User Guide.

', 'CreateClientVpnEndpointRequest$Description' => '

A brief description of the Client VPN endpoint.

', 'CreateClientVpnEndpointRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateClientVpnEndpointResult$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'CreateClientVpnEndpointResult$DnsName' => '

The DNS name to be used by clients when establishing their VPN session.

', 'CreateClientVpnRouteRequest$DestinationCidrBlock' => '

The IPv4 address range, in CIDR notation, of the route destination. For example:

  • To add a route for Internet access, enter 0.0.0.0/0

  • To add a route for a peered VPC, enter the peered VPC\'s IPv4 CIDR range

  • To add a route for an on-premises network, enter the Amazon Web Services Site-to-Site VPN connection\'s IPv4 CIDR range

  • To add a route for the local network, enter the client CIDR range

', 'CreateClientVpnRouteRequest$Description' => '

A brief description of the route.

', 'CreateClientVpnRouteRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateCoipCidrRequest$Cidr' => '

A customer-owned IP address range to create.

', 'CreateCustomerGatewayRequest$PublicIp' => '

This member has been deprecated. The Internet-routable IP address for the customer gateway\'s outside interface. The address must be static.

', 'CreateCustomerGatewayRequest$CertificateArn' => '

The Amazon Resource Name (ARN) for the customer gateway certificate.

', 'CreateCustomerGatewayRequest$DeviceName' => '

A name for the customer gateway device.

Length Constraints: Up to 255 characters.

', 'CreateCustomerGatewayRequest$IpAddress' => '

IPv4 address for the customer gateway device\'s outside interface. The address must be static.

', 'CreateEgressOnlyInternetGatewayRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

', 'CreateEgressOnlyInternetGatewayResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

', 'CreateFleetError$ErrorCode' => '

The error code that indicates why the instance could not be launched. For more information about error codes, see Error codes.

', 'CreateFleetError$ErrorMessage' => '

The error message that describes why the instance could not be launched. For more information about error messages, see Error codes.

', 'CreateFleetRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

', 'CreateFleetRequest$Context' => '

Reserved.

', 'CreateFlowLogsRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateFlowLogsRequest$DeliverLogsPermissionArn' => '

The ARN of the IAM role that allows Amazon EC2 to publish flow logs to a CloudWatch Logs log group in your account.

This parameter is required if the destination type is cloud-watch-logs and unsupported otherwise.

', 'CreateFlowLogsRequest$DeliverCrossAccountRole' => '

The ARN of the IAM role that allows Amazon EC2 to publish flow logs across accounts.

', 'CreateFlowLogsRequest$LogGroupName' => '

The name of a new or existing CloudWatch Logs log group where Amazon EC2 publishes your flow logs.

This parameter is valid only if the destination type is cloud-watch-logs.

', 'CreateFlowLogsRequest$LogDestination' => '

The destination for the flow log data. The meaning of this parameter depends on the destination type.

  • If the destination type is cloud-watch-logs, specify the ARN of a CloudWatch Logs log group. For example:

    arn:aws:logs:region:account_id:log-group:my_group

    Alternatively, use the LogGroupName parameter.

  • If the destination type is s3, specify the ARN of an S3 bucket. For example:

    arn:aws:s3:::my_bucket/my_subfolder/

    The subfolder is optional. Note that you can\'t use AWSLogs as a subfolder name.

  • If the destination type is kinesis-data-firehose, specify the ARN of a Kinesis Data Firehose delivery stream. For example:

    arn:aws:firehose:region:account_id:deliverystream:my_stream

', 'CreateFlowLogsRequest$LogFormat' => '

The fields to include in the flow log record. List the fields in the order in which they should appear. If you omit this parameter, the flow log is created using the default format. If you specify this parameter, you must include at least one field. For more information about the available fields, see Flow log records in the Amazon VPC User Guide or Transit Gateway Flow Log records in the Amazon Web Services Transit Gateway Guide.

Specify the fields using the ${field-id} format, separated by spaces.

', 'CreateFlowLogsResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

', 'CreateFpgaImageRequest$Description' => '

A description for the AFI.

', 'CreateFpgaImageRequest$Name' => '

A name for the AFI.

', 'CreateFpgaImageRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'CreateFpgaImageResult$FpgaImageId' => '

The FPGA image identifier (AFI ID).

', 'CreateFpgaImageResult$FpgaImageGlobalId' => '

The global FPGA image identifier (AGFI ID).

', 'CreateImageRequest$Description' => '

A description for the new image.

', 'CreateImageRequest$Name' => '

A name for the new image.

Constraints: 3-128 alphanumeric characters, parentheses (()), square brackets ([]), spaces ( ), periods (.), slashes (/), dashes (-), single quotes (\'), at-signs (@), or underscores(_)

', 'CreateImageResult$ImageId' => '

The ID of the new AMI.

', 'CreateInstanceConnectEndpointRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

', 'CreateInstanceConnectEndpointResult$ClientToken' => '

Unique, case-sensitive idempotency token provided by the client in the the request.

', 'CreateInstanceEventWindowRequest$Name' => '

The name of the event window.

', 'CreateInstanceExportTaskRequest$Description' => '

A description for the conversion task or the resource being exported. The maximum length is 255 characters.

', 'CreateIpamPoolRequest$Locale' => '

In IPAM, the locale is the Amazon Web Services Region where you want to make an IPAM pool available for allocations. Only resources in the same Region as the locale of the pool can get IP address allocations from the pool. You can only allocate a CIDR for a VPC, for example, from an IPAM pool that shares a locale with the VPC’s Region. Note that once you choose a Locale for a pool, you cannot modify it. If you do not choose a locale, resources in Regions others than the IPAM\'s home region cannot use CIDRs from this pool.

Possible values: Any Amazon Web Services Region, such as us-east-1.

', 'CreateIpamPoolRequest$Description' => '

A description for the IPAM pool.

', 'CreateIpamPoolRequest$ClientToken' => '

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'CreateIpamRequest$Description' => '

A description for the IPAM.

', 'CreateIpamRequest$ClientToken' => '

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'CreateIpamResourceDiscoveryRequest$Description' => '

A description for the IPAM resource discovery.

', 'CreateIpamResourceDiscoveryRequest$ClientToken' => '

A client token for the IPAM resource discovery.

', 'CreateIpamScopeRequest$Description' => '

A description for the scope you\'re creating.

', 'CreateIpamScopeRequest$ClientToken' => '

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'CreateKeyPairRequest$KeyName' => '

A unique name for the key pair.

Constraints: Up to 255 ASCII characters

', 'CreateLaunchTemplateRequest$ClientToken' => '

Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

Constraint: Maximum 128 ASCII characters.

', 'CreateLaunchTemplateVersionRequest$ClientToken' => '

Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

Constraint: Maximum 128 ASCII characters.

', 'CreateLaunchTemplateVersionRequest$SourceVersion' => '

The version number of the launch template version on which to base the new version. The new version inherits the same launch parameters as the source version, except for parameters that you specify in LaunchTemplateData. Snapshots applied to the block device mapping are ignored when creating a new version unless they are explicitly included.

', 'CreateLocalGatewayRouteRequest$DestinationCidrBlock' => '

The CIDR range used for destination matches. Routing decisions are based on the most specific match.

', 'CreateManagedPrefixListRequest$PrefixListName' => '

A name for the prefix list.

Constraints: Up to 255 characters in length. The name cannot start with com.amazonaws.

', 'CreateManagedPrefixListRequest$AddressFamily' => '

The IP address type.

Valid Values: IPv4 | IPv6

', 'CreateManagedPrefixListRequest$ClientToken' => '

Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

Constraints: Up to 255 UTF-8 characters in length.

', 'CreateNatGatewayRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

Constraint: Maximum 64 ASCII characters.

', 'CreateNatGatewayRequest$PrivateIpAddress' => '

The private IPv4 address to assign to the NAT gateway. If you don\'t provide an address, a private IPv4 address will be automatically assigned.

', 'CreateNatGatewayResult$ClientToken' => '

Unique, case-sensitive identifier to ensure the idempotency of the request. Only returned if a client token was provided in the request.

', 'CreateNetworkAclEntryRequest$CidrBlock' => '

The IPv4 network range to allow or deny, in CIDR notation (for example 172.16.0.0/24). We modify the specified CIDR block to its canonical form; for example, if you specify 100.68.0.18/18, we modify it to 100.68.0.0/18.

', 'CreateNetworkAclEntryRequest$Ipv6CidrBlock' => '

The IPv6 network range to allow or deny, in CIDR notation (for example 2001:db8:1234:1a00::/64).

', 'CreateNetworkAclEntryRequest$Protocol' => '

The protocol number. A value of "-1" means all protocols. If you specify "-1" or a protocol number other than "6" (TCP), "17" (UDP), or "1" (ICMP), traffic on all ports is allowed, regardless of any ports or ICMP types or codes that you specify. If you specify protocol "58" (ICMPv6) and specify an IPv4 CIDR block, traffic for all ICMP types and codes allowed, regardless of any that you specify. If you specify protocol "58" (ICMPv6) and specify an IPv6 CIDR block, you must specify an ICMP type and code.

', 'CreateNetworkAclRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

', 'CreateNetworkAclResult$ClientToken' => '

Unique, case-sensitive identifier to ensure the idempotency of the request. Only returned if a client token was provided in the request.

', 'CreateNetworkInsightsAccessScopeRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateNetworkInsightsPathRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateNetworkInterfacePermissionRequest$AwsAccountId' => '

The Amazon Web Services account ID.

', 'CreateNetworkInterfacePermissionRequest$AwsService' => '

The Amazon Web Service. Currently not supported.

', 'CreateNetworkInterfaceRequest$Description' => '

A description for the network interface.

', 'CreateNetworkInterfaceRequest$PrivateIpAddress' => '

The primary private IPv4 address of the network interface. If you don\'t specify an IPv4 address, Amazon EC2 selects one for you from the subnet\'s IPv4 CIDR range. If you specify an IP address, you cannot indicate any IP addresses specified in privateIpAddresses as primary (only one IP address can be designated as primary).

', 'CreateNetworkInterfaceRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'CreateNetworkInterfaceResult$ClientToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'CreatePlacementGroupRequest$GroupName' => '

A name for the placement group. Must be unique within the scope of your account for the Region.

Constraints: Up to 255 ASCII characters

', 'CreateReplaceRootVolumeTaskRequest$ClientToken' => '

Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token, a randomly generated token is used for the request to ensure idempotency. For more information, see Ensuring idempotency.

', 'CreateReservedInstancesListingRequest$ClientToken' => '

Unique, case-sensitive identifier you provide to ensure idempotency of your listings. This helps avoid duplicate listings. For more information, see Ensuring Idempotency.

', 'CreateRestoreImageTaskRequest$Bucket' => '

The name of the Amazon S3 bucket that contains the stored AMI object.

', 'CreateRestoreImageTaskRequest$ObjectKey' => '

The name of the stored AMI object in the bucket.

', 'CreateRestoreImageTaskRequest$Name' => '

The name for the restored AMI. The name must be unique for AMIs in the Region for this account. If you do not provide a name, the new AMI gets the same name as the original AMI.

', 'CreateRestoreImageTaskResult$ImageId' => '

The AMI ID.

', 'CreateRouteRequest$DestinationCidrBlock' => '

The IPv4 CIDR address block used for the destination match. Routing decisions are based on the most specific match. We modify the specified CIDR block to its canonical form; for example, if you specify 100.68.0.18/18, we modify it to 100.68.0.0/18.

', 'CreateRouteRequest$DestinationIpv6CidrBlock' => '

The IPv6 CIDR block used for the destination match. Routing decisions are based on the most specific match.

', 'CreateRouteTableRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

', 'CreateRouteTableResult$ClientToken' => '

Unique, case-sensitive identifier to ensure the idempotency of the request. Only returned if a client token was provided in the request.

', 'CreateSecurityGroupRequest$Description' => '

A description for the security group.

Constraints: Up to 255 characters in length

Valid characters: a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$*

', 'CreateSecurityGroupRequest$GroupName' => '

The name of the security group.

Constraints: Up to 255 characters in length. Cannot start with sg-.

Valid characters: a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$*

', 'CreateSecurityGroupResult$GroupId' => '

The ID of the security group.

', 'CreateSnapshotRequest$Description' => '

A description for the snapshot.

', 'CreateSnapshotRequest$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost on which to create a local snapshot.

  • To create a snapshot of a volume in a Region, omit this parameter. The snapshot is created in the same Region as the volume.

  • To create a snapshot of a volume on an Outpost and store the snapshot in the Region, omit this parameter. The snapshot is created in the Region for the Outpost.

  • To create a snapshot of a volume on an Outpost and store the snapshot on an Outpost, specify the ARN of the destination Outpost. The snapshot must be created on the same Outpost as the volume.

For more information, see Create local snapshots from volumes on an Outpost in the Amazon Elastic Compute Cloud User Guide.

', 'CreateSnapshotsRequest$Description' => '

A description propagated to every snapshot specified by the instance.

', 'CreateSnapshotsRequest$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost on which to create the local snapshots.

  • To create snapshots from an instance in a Region, omit this parameter. The snapshots are created in the same Region as the instance.

  • To create snapshots from an instance on an Outpost and store the snapshots in the Region, omit this parameter. The snapshots are created in the Region for the Outpost.

  • To create snapshots from an instance on an Outpost and store the snapshots on an Outpost, specify the ARN of the destination Outpost. The snapshots must be created on the same Outpost as the instance.

For more information, see Create multi-volume local snapshots from instances on an Outpost in the Amazon Elastic Compute Cloud User Guide.

', 'CreateSpotDatafeedSubscriptionRequest$Bucket' => '

The name of the Amazon S3 bucket in which to store the Spot Instance data feed. For more information about bucket names, see Rules for bucket naming in the Amazon S3 Developer Guide.

', 'CreateSpotDatafeedSubscriptionRequest$Prefix' => '

The prefix for the data feed file names.

', 'CreateStoreImageTaskRequest$Bucket' => '

The name of the Amazon S3 bucket in which the AMI object will be stored. The bucket must be in the Region in which the request is being made. The AMI object appears in the bucket only after the upload task has completed.

', 'CreateStoreImageTaskResult$ObjectKey' => '

The name of the stored AMI object in the S3 bucket.

', 'CreateSubnetCidrReservationRequest$Cidr' => '

The IPv4 or IPV6 CIDR range to reserve.

', 'CreateSubnetCidrReservationRequest$Description' => '

The description to assign to the subnet CIDR reservation.

', 'CreateSubnetRequest$AvailabilityZone' => '

The Availability Zone or Local Zone for the subnet.

Default: Amazon Web Services selects one for you. If you create more than one subnet in your VPC, we do not necessarily select a different zone for each subnet.

To create a subnet in a Local Zone, set this value to the Local Zone ID, for example us-west-2-lax-1a. For information about the Regions that support Local Zones, see Local Zones locations.

To create a subnet in an Outpost, set this value to the Availability Zone for the Outpost and specify the Outpost ARN.

', 'CreateSubnetRequest$AvailabilityZoneId' => '

The AZ ID or the Local Zone ID of the subnet.

', 'CreateSubnetRequest$CidrBlock' => '

The IPv4 network range for the subnet, in CIDR notation. For example, 10.0.0.0/24. We modify the specified CIDR block to its canonical form; for example, if you specify 100.68.0.18/18, we modify it to 100.68.0.0/18.

This parameter is not supported for an IPv6 only subnet.

', 'CreateSubnetRequest$Ipv6CidrBlock' => '

The IPv6 network range for the subnet, in CIDR notation. This parameter is required for an IPv6 only subnet.

', 'CreateSubnetRequest$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost. If you specify an Outpost ARN, you must also specify the Availability Zone of the Outpost subnet.

', 'CreateTrafficMirrorFilterRequest$Description' => '

The description of the Traffic Mirror filter.

', 'CreateTrafficMirrorFilterRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateTrafficMirrorFilterResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateTrafficMirrorFilterRuleRequest$DestinationCidrBlock' => '

The destination CIDR block to assign to the Traffic Mirror rule.

', 'CreateTrafficMirrorFilterRuleRequest$SourceCidrBlock' => '

The source CIDR block to assign to the Traffic Mirror rule.

', 'CreateTrafficMirrorFilterRuleRequest$Description' => '

The description of the Traffic Mirror rule.

', 'CreateTrafficMirrorFilterRuleRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateTrafficMirrorFilterRuleResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateTrafficMirrorSessionRequest$Description' => '

The description of the Traffic Mirror session.

', 'CreateTrafficMirrorSessionRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateTrafficMirrorSessionResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateTrafficMirrorTargetRequest$NetworkLoadBalancerArn' => '

The Amazon Resource Name (ARN) of the Network Load Balancer that is associated with the target.

', 'CreateTrafficMirrorTargetRequest$Description' => '

The description of the Traffic Mirror target.

', 'CreateTrafficMirrorTargetRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateTrafficMirrorTargetResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateTransitGatewayConnectPeerRequest$TransitGatewayAddress' => '

The peer IP address (GRE outer IP address) on the transit gateway side of the Connect peer, which must be specified from a transit gateway CIDR block. If not specified, Amazon automatically assigns the first available IP address from the transit gateway CIDR block.

', 'CreateTransitGatewayConnectPeerRequest$PeerAddress' => '

The peer IP address (GRE outer IP address) on the appliance side of the Connect peer.

', 'CreateTransitGatewayPeeringAttachmentRequest$PeerAccountId' => '

The ID of the Amazon Web Services account that owns the peer transit gateway.

', 'CreateTransitGatewayPeeringAttachmentRequest$PeerRegion' => '

The Region where the peer transit gateway is located.

', 'CreateTransitGatewayRequest$Description' => '

A description of the transit gateway.

', 'CreateTransitGatewayRouteRequest$DestinationCidrBlock' => '

The CIDR range used for destination matches. Routing decisions are based on the most specific match.

', 'CreateVerifiedAccessEndpointRequest$ApplicationDomain' => '

The DNS name for users to reach your application.

', 'CreateVerifiedAccessEndpointRequest$EndpointDomainPrefix' => '

A custom identifier that is prepended to the DNS name that is generated for the endpoint.

', 'CreateVerifiedAccessEndpointRequest$Description' => '

A description for the Verified Access endpoint.

', 'CreateVerifiedAccessEndpointRequest$PolicyDocument' => '

The Verified Access policy document.

', 'CreateVerifiedAccessEndpointRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'CreateVerifiedAccessGroupRequest$Description' => '

A description for the Verified Access group.

', 'CreateVerifiedAccessGroupRequest$PolicyDocument' => '

The Verified Access policy document.

', 'CreateVerifiedAccessGroupRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'CreateVerifiedAccessInstanceRequest$Description' => '

A description for the Verified Access instance.

', 'CreateVerifiedAccessInstanceRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'CreateVerifiedAccessTrustProviderDeviceOptions$TenantId' => '

The ID of the tenant application with the device-identity provider.

', 'CreateVerifiedAccessTrustProviderDeviceOptions$PublicSigningKeyUrl' => '

The URL Amazon Web Services Verified Access will use to verify the authenticity of the device tokens.

', 'CreateVerifiedAccessTrustProviderOidcOptions$Issuer' => '

The OIDC issuer.

', 'CreateVerifiedAccessTrustProviderOidcOptions$AuthorizationEndpoint' => '

The OIDC authorization endpoint.

', 'CreateVerifiedAccessTrustProviderOidcOptions$TokenEndpoint' => '

The OIDC token endpoint.

', 'CreateVerifiedAccessTrustProviderOidcOptions$UserInfoEndpoint' => '

The OIDC user info endpoint.

', 'CreateVerifiedAccessTrustProviderOidcOptions$ClientId' => '

The client identifier.

', 'CreateVerifiedAccessTrustProviderOidcOptions$Scope' => '

OpenID Connect (OIDC) scopes are used by an application during authentication to authorize access to a user\'s details. Each scope returns a specific set of user attributes.

', 'CreateVerifiedAccessTrustProviderRequest$PolicyReferenceName' => '

The identifier to be used when working with policy rules.

', 'CreateVerifiedAccessTrustProviderRequest$Description' => '

A description for the Verified Access trust provider.

', 'CreateVerifiedAccessTrustProviderRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'CreateVolumePermission$UserId' => '

The ID of the Amazon Web Services account to be added or removed.

', 'CreateVolumeRequest$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'CreateVolumeRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensure Idempotency.

', 'CreateVpcEndpointConnectionNotificationRequest$ConnectionNotificationArn' => '

The ARN of the SNS topic for the notifications.

', 'CreateVpcEndpointConnectionNotificationRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateVpcEndpointConnectionNotificationResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

', 'CreateVpcEndpointRequest$ServiceName' => '

The name of the endpoint service.

', 'CreateVpcEndpointRequest$PolicyDocument' => '

(Interface and gateway endpoints) A policy to attach to the endpoint that controls access to the service. The policy must be in valid JSON format. If this parameter is not specified, we attach a default policy that allows full access to the service.

', 'CreateVpcEndpointRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateVpcEndpointResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

', 'CreateVpcEndpointServiceConfigurationRequest$PrivateDnsName' => '

(Interface endpoint configuration) The private DNS name to assign to the VPC endpoint service.

', 'CreateVpcEndpointServiceConfigurationRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateVpcEndpointServiceConfigurationResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

', 'CreateVpcPeeringConnectionRequest$PeerOwnerId' => '

The Amazon Web Services account ID of the owner of the accepter VPC.

Default: Your Amazon Web Services account ID

', 'CreateVpcPeeringConnectionRequest$PeerVpcId' => '

The ID of the VPC with which you are creating the VPC peering connection. You must specify this parameter in the request.

', 'CreateVpcPeeringConnectionRequest$PeerRegion' => '

The Region code for the accepter VPC, if the accepter VPC is located in a Region other than the Region in which you make the request.

Default: The Region in which you make the request.

', 'CreateVpcRequest$CidrBlock' => '

The IPv4 network range for the VPC, in CIDR notation. For example, 10.0.0.0/16. We modify the specified CIDR block to its canonical form; for example, if you specify 100.68.0.18/18, we modify it to 100.68.0.0/18.

', 'CreateVpcRequest$Ipv6CidrBlock' => '

The IPv6 CIDR block from the IPv6 address pool. You must also specify Ipv6Pool in the request.

To let Amazon choose the IPv6 CIDR block for you, omit this parameter.

', 'CreateVpcRequest$Ipv6CidrBlockNetworkBorderGroup' => '

The name of the location from which we advertise the IPV6 CIDR block. Use this parameter to limit the address to this location.

You must set AmazonProvidedIpv6CidrBlock to true to use this parameter.

', 'CreateVpnConnectionRequest$Type' => '

The type of VPN connection (ipsec.1).

', 'CreateVpnConnectionRouteRequest$DestinationCidrBlock' => '

The CIDR block associated with the local subnet of the customer network.

', 'CreateVpnGatewayRequest$AvailabilityZone' => '

The Availability Zone for the virtual private gateway.

', 'CreditSpecification$CpuCredits' => '

The credit option for CPU usage of a T instance.

Valid values: standard | unlimited

', 'CreditSpecificationRequest$CpuCredits' => '

The credit option for CPU usage of a T instance.

Valid values: standard | unlimited

', 'CustomerGateway$BgpAsn' => '

The customer gateway\'s Border Gateway Protocol (BGP) Autonomous System Number (ASN).

', 'CustomerGateway$CustomerGatewayId' => '

The ID of the customer gateway.

', 'CustomerGateway$IpAddress' => '

The IP address of the customer gateway device\'s outside interface.

', 'CustomerGateway$CertificateArn' => '

The Amazon Resource Name (ARN) for the customer gateway certificate.

', 'CustomerGateway$State' => '

The current state of the customer gateway (pending | available | deleting | deleted).

', 'CustomerGateway$Type' => '

The type of VPN connection the customer gateway supports (ipsec.1).

', 'CustomerGateway$DeviceName' => '

The name of customer gateway device.

', 'DataQuery$Id' => '

A user-defined ID associated with a data query that\'s returned in the dataResponse identifying the query. For example, if you set the Id to MyQuery01in the query, the dataResponse identifies the query as MyQuery01.

', 'DataQuery$Source' => '

The Region or Availability Zone that\'s the source for the data query. For example, us-east-1.

', 'DataQuery$Destination' => '

The Region or Availability Zone that\'s the target for the data query. For example, eu-north-1.

', 'DataResponse$Id' => '

The ID passed in the DataQuery.

', 'DataResponse$Source' => '

The Region or Availability Zone that\'s the source for the data query. For example, us-east-1.

', 'DataResponse$Destination' => '

The Region or Availability Zone that\'s the destination for the data query. For example, eu-west-1.

', 'DeleteClientVpnRouteRequest$DestinationCidrBlock' => '

The IPv4 address range, in CIDR notation, of the route to be deleted.

', 'DeleteCoipCidrRequest$Cidr' => '

A customer-owned IP address range that you want to delete.

', 'DeleteFleetError$Message' => '

The description for the error code.

', 'DeleteKeyPairResult$KeyPairId' => '

The ID of the key pair.

', 'DeleteLaunchTemplateVersionsResponseErrorItem$LaunchTemplateId' => '

The ID of the launch template.

', 'DeleteLaunchTemplateVersionsResponseErrorItem$LaunchTemplateName' => '

The name of the launch template.

', 'DeleteLaunchTemplateVersionsResponseSuccessItem$LaunchTemplateId' => '

The ID of the launch template.

', 'DeleteLaunchTemplateVersionsResponseSuccessItem$LaunchTemplateName' => '

The name of the launch template.

', 'DeleteLocalGatewayRouteRequest$DestinationCidrBlock' => '

The CIDR range for the route. This must match the CIDR for the route exactly.

', 'DeleteNatGatewayResult$NatGatewayId' => '

The ID of the NAT gateway.

', 'DeleteQueuedReservedInstancesError$Message' => '

The error message.

', 'DeleteRouteRequest$DestinationCidrBlock' => '

The IPv4 CIDR range for the route. The value you specify must match the CIDR for the route exactly.

', 'DeleteRouteRequest$DestinationIpv6CidrBlock' => '

The IPv6 CIDR range for the route. The value you specify must match the CIDR for the route exactly.

', 'DeleteTrafficMirrorFilterResult$TrafficMirrorFilterId' => '

The ID of the Traffic Mirror filter.

', 'DeleteTrafficMirrorFilterRuleResult$TrafficMirrorFilterRuleId' => '

The ID of the deleted Traffic Mirror rule.

', 'DeleteTrafficMirrorSessionResult$TrafficMirrorSessionId' => '

The ID of the deleted Traffic Mirror session.

', 'DeleteTrafficMirrorTargetResult$TrafficMirrorTargetId' => '

The ID of the deleted Traffic Mirror target.

', 'DeleteTransitGatewayRouteRequest$DestinationCidrBlock' => '

The CIDR range for the route. This must match the CIDR for the route exactly.

', 'DeleteVerifiedAccessEndpointRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'DeleteVerifiedAccessGroupRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'DeleteVerifiedAccessInstanceRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'DeleteVerifiedAccessTrustProviderRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'DeleteVpnConnectionRouteRequest$DestinationCidrBlock' => '

The CIDR block associated with the local subnet of the customer network.

', 'DeprovisionByoipCidrRequest$Cidr' => '

The address range, in CIDR notation. The prefix must be the same prefix that you specified when you provisioned the address range.

', 'DeprovisionIpamByoasnRequest$Asn' => '

An ASN.

', 'DeprovisionIpamPoolCidrRequest$Cidr' => '

The CIDR which you want to deprovision from the pool.

', 'DeprovisionPublicIpv4PoolCidrRequest$Cidr' => '

The CIDR you want to deprovision from the pool. Enter the CIDR you want to deprovision with a netmask of /32. You must rerun this command for each IP address in the CIDR range. If your CIDR is a /24, you will have to run this command to deprovision each of the 256 IP addresses in the /24 CIDR.

', 'DeprovisionedAddressSet$member' => NULL, 'DeregisterTransitGatewayMulticastGroupMembersRequest$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'DeregisterTransitGatewayMulticastGroupSourcesRequest$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'DescribeAddressTransfersRequest$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'DescribeAddressTransfersResult$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'DescribeAwsNetworkPerformanceMetricSubscriptionsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeAwsNetworkPerformanceMetricSubscriptionsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeByoipCidrsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeCapacityBlockOfferingsRequest$InstanceType' => '

The type of instance for which the Capacity Block offering reserves capacity.

', 'DescribeCapacityBlockOfferingsRequest$NextToken' => '

The token to use to retrieve the next page of results.

', 'DescribeCapacityBlockOfferingsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeCapacityReservationFleetsRequest$NextToken' => '

The token to use to retrieve the next page of results.

', 'DescribeCapacityReservationFleetsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeCapacityReservationsRequest$NextToken' => '

The token to use to retrieve the next page of results.

', 'DescribeCapacityReservationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeCarrierGatewaysRequest$NextToken' => '

The token for the next page of results.

', 'DescribeCarrierGatewaysResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeClassicLinkInstancesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeClassicLinkInstancesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeCoipPoolsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeCoipPoolsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeDhcpOptionsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeDhcpOptionsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeEgressOnlyInternetGatewaysRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeEgressOnlyInternetGatewaysResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeElasticGpusRequest$NextToken' => '

The token to request the next page of results.

', 'DescribeElasticGpusResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeFastLaunchImagesSuccessItem$OwnerId' => '

The owner ID for the Windows fast launch enabled AMI.

', 'DescribeFastLaunchImagesSuccessItem$StateTransitionReason' => '

The reason that Windows fast launch for the AMI changed to the current state.

', 'DescribeFastSnapshotRestoreSuccessItem$SnapshotId' => '

The ID of the snapshot.

', 'DescribeFastSnapshotRestoreSuccessItem$AvailabilityZone' => '

The Availability Zone.

', 'DescribeFastSnapshotRestoreSuccessItem$StateTransitionReason' => '

The reason for the state transition. The possible values are as follows:

  • Client.UserInitiated - The state successfully transitioned to enabling or disabling.

  • Client.UserInitiated - Lifecycle state transition - The state successfully transitioned to optimizing, enabled, or disabled.

', 'DescribeFastSnapshotRestoreSuccessItem$OwnerId' => '

The ID of the Amazon Web Services account that enabled fast snapshot restores on the snapshot.

', 'DescribeFastSnapshotRestoreSuccessItem$OwnerAlias' => '

The Amazon Web Services owner alias that enabled fast snapshot restores on the snapshot. This is intended for future use.

', 'DescribeFleetError$ErrorCode' => '

The error code that indicates why the instance could not be launched. For more information about error codes, see Error codes.

', 'DescribeFleetError$ErrorMessage' => '

The error message that describes why the instance could not be launched. For more information about error messages, see Error codes.

', 'DescribeFleetHistoryRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeFleetHistoryResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeFleetInstancesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeFleetInstancesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeFleetsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeFleetsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeFlowLogsRequest$NextToken' => '

The token to request the next page of items. Pagination continues from the end of the items returned by the previous request.

', 'DescribeFlowLogsResult$NextToken' => '

The token to request the next page of items. This value is null when there are no more items to return.

', 'DescribeHostReservationOfferingsRequest$NextToken' => '

The token to use to retrieve the next page of results.

', 'DescribeHostReservationOfferingsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeHostReservationsRequest$NextToken' => '

The token to use to retrieve the next page of results.

', 'DescribeHostReservationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeHostsRequest$NextToken' => '

The token to use to retrieve the next page of results.

', 'DescribeHostsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeIdFormatRequest$Resource' => '

The type of resource: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | instance | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | reservation | route-table | route-table-association | security-group | snapshot | subnet | subnet-cidr-block-association | volume | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway

', 'DescribeIdentityIdFormatRequest$PrincipalArn' => '

The ARN of the principal, which can be an IAM role, IAM user, or the root user.

', 'DescribeIdentityIdFormatRequest$Resource' => '

The type of resource: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | instance | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | reservation | route-table | route-table-association | security-group | snapshot | subnet | subnet-cidr-block-association | volume | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway

', 'DescribeImagesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeImagesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeImportImageTasksRequest$NextToken' => '

A token that indicates the next page of results.

', 'DescribeImportImageTasksResult$NextToken' => '

The token to use to get the next page of results. This value is null when there are no more results to return.

', 'DescribeImportSnapshotTasksRequest$NextToken' => '

A token that indicates the next page of results.

', 'DescribeImportSnapshotTasksResult$NextToken' => '

The token to use to get the next page of results. This value is null when there are no more results to return.

', 'DescribeInstanceCreditSpecificationsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeInstanceCreditSpecificationsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeInstanceEventWindowsRequest$NextToken' => '

The token to request the next page of results.

', 'DescribeInstanceEventWindowsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeInstanceStatusRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeInstanceStatusResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeInstanceTopologyRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeInstanceTopologyResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeInstancesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeInstancesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeInternetGatewaysRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeInternetGatewaysResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeIpamByoasnResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLaunchTemplateVersionsRequest$MinVersion' => '

The version number after which to describe launch template versions.

', 'DescribeLaunchTemplateVersionsRequest$MaxVersion' => '

The version number up to which to describe launch template versions.

', 'DescribeLaunchTemplateVersionsRequest$NextToken' => '

The token to request the next page of results.

', 'DescribeLaunchTemplateVersionsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLaunchTemplatesRequest$NextToken' => '

The token to request the next page of results.

', 'DescribeLaunchTemplatesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLocalGatewayRouteTableVpcAssociationsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeLocalGatewayRouteTableVpcAssociationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLocalGatewayRouteTablesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeLocalGatewayRouteTablesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLocalGatewayVirtualInterfaceGroupsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeLocalGatewayVirtualInterfaceGroupsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLocalGatewayVirtualInterfacesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeLocalGatewayVirtualInterfacesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLocalGatewaysRequest$NextToken' => '

The token for the next page of results.

', 'DescribeLocalGatewaysResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLockedSnapshotsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeLockedSnapshotsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeMovingAddressesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeMovingAddressesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeNatGatewaysRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeNatGatewaysResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeNetworkAclsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeNetworkAclsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeNetworkInsightsAccessScopeAnalysesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeNetworkInsightsAccessScopesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeNetworkInsightsAnalysesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeNetworkInsightsPathsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeNetworkInterfaceAttributeResult$NetworkInterfaceId' => '

The ID of the network interface.

', 'DescribeNetworkInterfacePermissionsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeNetworkInterfacePermissionsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeNetworkInterfacesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeNetworkInterfacesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribePrefixListsRequest$NextToken' => '

The token for the next page of results.

', 'DescribePrefixListsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribePrincipalIdFormatRequest$NextToken' => '

The token to request the next page of results.

', 'DescribePrincipalIdFormatResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribePublicIpv4PoolsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeReplaceRootVolumeTasksResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeReservedInstancesModificationsRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeReservedInstancesModificationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeReservedInstancesOfferingsRequest$AvailabilityZone' => '

The Availability Zone in which the Reserved Instance can be used.

', 'DescribeReservedInstancesOfferingsRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeReservedInstancesOfferingsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeRouteTablesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeRouteTablesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeScheduledInstanceAvailabilityRequest$NextToken' => '

The token for the next set of results.

', 'DescribeScheduledInstanceAvailabilityResult$NextToken' => '

The token required to retrieve the next set of results. This value is null when there are no more results to return.

', 'DescribeScheduledInstancesRequest$NextToken' => '

The token for the next set of results.

', 'DescribeScheduledInstancesResult$NextToken' => '

The token required to retrieve the next set of results. This value is null when there are no more results to return.

', 'DescribeSecurityGroupRulesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeSecurityGroupRulesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSecurityGroupsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeSecurityGroupsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSnapshotAttributeResult$SnapshotId' => '

The ID of the EBS snapshot.

', 'DescribeSnapshotTierStatusRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeSnapshotTierStatusResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSnapshotsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeSnapshotsResult$NextToken' => '

The token to include in another request to return the next page of snapshots. This value is null when there are no more snapshots to return.

', 'DescribeSpotFleetInstancesRequest$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSpotFleetInstancesResponse$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSpotFleetInstancesResponse$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'DescribeSpotFleetRequestHistoryRequest$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSpotFleetRequestHistoryResponse$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSpotFleetRequestHistoryResponse$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'DescribeSpotFleetRequestsRequest$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSpotFleetRequestsResponse$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSpotInstanceRequestsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeSpotInstanceRequestsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSpotPriceHistoryRequest$AvailabilityZone' => '

Filters the results by the specified Availability Zone.

', 'DescribeSpotPriceHistoryRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeSpotPriceHistoryResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeStaleSecurityGroupsResult$NextToken' => '

The token to include in another request to get the next page of items. If there are no additional items to return, the string is empty.

', 'DescribeStoreImageTasksRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeStoreImageTasksResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSubnetsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeSubnetsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeTagsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeTagsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeTrafficMirrorFiltersResult$NextToken' => '

The token to use to retrieve the next page of results. The value is null when there are no more results to return.

', 'DescribeTrafficMirrorSessionsResult$NextToken' => '

The token to use to retrieve the next page of results. The value is null when there are no more results to return.

', 'DescribeTrafficMirrorTargetsResult$NextToken' => '

The token to use to retrieve the next page of results. The value is null when there are no more results to return.

', 'DescribeTransitGatewayAttachmentsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayAttachmentsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeTransitGatewayConnectPeersRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayConnectPeersResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeTransitGatewayConnectsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayConnectsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeTransitGatewayMulticastDomainsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayMulticastDomainsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeTransitGatewayPeeringAttachmentsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayPeeringAttachmentsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeTransitGatewayPolicyTablesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayPolicyTablesResult$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayRouteTableAnnouncementsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayRouteTableAnnouncementsResult$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayRouteTablesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayRouteTablesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeTransitGatewayVpcAttachmentsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayVpcAttachmentsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeTransitGatewaysRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewaysResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeTrunkInterfaceAssociationsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTrunkInterfaceAssociationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVolumeAttributeResult$VolumeId' => '

The ID of the volume.

', 'DescribeVolumeStatusRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeVolumeStatusResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeVolumesModificationsRequest$NextToken' => '

The token returned by a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeVolumesModificationsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null if there are no more items to return.

', 'DescribeVolumesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned from the previous request.

', 'DescribeVolumesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeVpcAttributeResult$VpcId' => '

The ID of the VPC.

', 'DescribeVpcEndpointConnectionNotificationsRequest$NextToken' => '

The token to request the next page of results.

', 'DescribeVpcEndpointConnectionNotificationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVpcEndpointConnectionsRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeVpcEndpointConnectionsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVpcEndpointServiceConfigurationsRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeVpcEndpointServiceConfigurationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVpcEndpointServicePermissionsRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeVpcEndpointServicePermissionsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVpcEndpointServicesRequest$NextToken' => '

The token for the next set of items to return. (You received this token from a prior call.)

', 'DescribeVpcEndpointServicesResult$NextToken' => '

The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.

', 'DescribeVpcEndpointsRequest$NextToken' => '

The token for the next set of items to return. (You received this token from a prior call.)

', 'DescribeVpcEndpointsResult$NextToken' => '

The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.

', 'DescribeVpcPeeringConnectionsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeVpcPeeringConnectionsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeVpcsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeVpcsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DetachVerifiedAccessTrustProviderRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'DetachVolumeRequest$Device' => '

The device name.

', 'DeviceOptions$TenantId' => '

The ID of the tenant application with the device-identity provider.

', 'DeviceOptions$PublicSigningKeyUrl' => '

The URL Amazon Web Services Verified Access will use to verify the authenticity of the device tokens.

', 'DhcpConfiguration$Key' => '

The name of a DHCP option.

', 'DhcpOptions$DhcpOptionsId' => '

The ID of the set of DHCP options.

', 'DhcpOptions$OwnerId' => '

The ID of the Amazon Web Services account that owns the DHCP options set.

', 'DirectoryServiceAuthentication$DirectoryId' => '

The ID of the Active Directory used for authentication.

', 'DirectoryServiceAuthenticationRequest$DirectoryId' => '

The ID of the Active Directory to be used for authentication.

', 'DisableAwsNetworkPerformanceMetricSubscriptionRequest$Source' => '

The source Region or Availability Zone that the metric subscription is disabled for. For example, us-east-1.

', 'DisableAwsNetworkPerformanceMetricSubscriptionRequest$Destination' => '

The target Region or Availability Zone that the metric subscription is disabled for. For example, eu-north-1.

', 'DisableFastLaunchResult$OwnerId' => '

The owner of the Windows AMI for which Windows fast launch was disabled.

', 'DisableFastLaunchResult$StateTransitionReason' => '

The reason that the state changed for Windows fast launch for the Windows AMI.

', 'DisableFastSnapshotRestoreErrorItem$SnapshotId' => '

The ID of the snapshot.

', 'DisableFastSnapshotRestoreStateError$Code' => '

The error code.

', 'DisableFastSnapshotRestoreStateError$Message' => '

The error message.

', 'DisableFastSnapshotRestoreStateErrorItem$AvailabilityZone' => '

The Availability Zone.

', 'DisableFastSnapshotRestoreSuccessItem$SnapshotId' => '

The ID of the snapshot.

', 'DisableFastSnapshotRestoreSuccessItem$AvailabilityZone' => '

The Availability Zone.

', 'DisableFastSnapshotRestoreSuccessItem$StateTransitionReason' => '

The reason for the state transition. The possible values are as follows:

  • Client.UserInitiated - The state successfully transitioned to enabling or disabling.

  • Client.UserInitiated - Lifecycle state transition - The state successfully transitioned to optimizing, enabled, or disabled.

', 'DisableFastSnapshotRestoreSuccessItem$OwnerId' => '

The ID of the Amazon Web Services account that enabled fast snapshot restores on the snapshot.

', 'DisableFastSnapshotRestoreSuccessItem$OwnerAlias' => '

The Amazon Web Services owner alias that enabled fast snapshot restores on the snapshot. This is intended for future use.

', 'DisableIpamOrganizationAdminAccountRequest$DelegatedAdminAccountId' => '

The Organizations member account ID that you want to disable as IPAM account.

', 'DisassociateClientVpnTargetNetworkRequest$AssociationId' => '

The ID of the target network association.

', 'DisassociateClientVpnTargetNetworkResult$AssociationId' => '

The ID of the target network association.

', 'DisassociateIpamByoasnRequest$Asn' => '

A public 2-byte or 4-byte ASN.

', 'DisassociateIpamByoasnRequest$Cidr' => '

A BYOIP CIDR.

', 'DisassociateSubnetCidrBlockResult$SubnetId' => '

The ID of the subnet.

', 'DisassociateTrunkInterfaceRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.

', 'DisassociateTrunkInterfaceResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.

', 'DisassociateVpcCidrBlockResult$VpcId' => '

The ID of the VPC.

', 'DiskImage$Description' => '

A description of the disk image.

', 'DiskImageDescription$Checksum' => '

The checksum computed for the disk image.

', 'DiskImageVolumeDescription$Id' => '

The volume identifier.

', 'DnsEntry$DnsName' => '

The DNS name.

', 'DnsEntry$HostedZoneId' => '

The ID of the private hosted zone.

', 'EbsBlockDevice$KmsKeyId' => '

Identifier (key ID, key alias, ID ARN, or alias ARN) for a customer managed CMK under which the EBS volume is encrypted.

This parameter is only supported on BlockDeviceMapping objects called by RunInstances, RequestSpotFleet, and RequestSpotInstances.

', 'EbsBlockDevice$OutpostArn' => '

The ARN of the Outpost on which the snapshot is stored.

This parameter is not supported when using CreateImage.

', 'EbsInstanceBlockDevice$VolumeId' => '

The ID of the EBS volume.

', 'EbsInstanceBlockDevice$AssociatedResource' => '

The ARN of the Amazon ECS or Fargate task to which the volume is attached.

', 'EbsInstanceBlockDevice$VolumeOwnerId' => '

The ID of the Amazon Web Services account that owns the volume.

This parameter is returned only for volumes that are attached to Fargate tasks.

', 'Ec2InstanceConnectEndpoint$OwnerId' => '

The ID of the Amazon Web Services account that created the EC2 Instance Connect Endpoint.

', 'Ec2InstanceConnectEndpoint$StateMessage' => '

The message for the current state of the EC2 Instance Connect Endpoint. Can include a failure message.

', 'Ec2InstanceConnectEndpoint$DnsName' => '

The DNS name of the EC2 Instance Connect Endpoint.

', 'Ec2InstanceConnectEndpoint$FipsDnsName' => '

', 'Ec2InstanceConnectEndpoint$AvailabilityZone' => '

The Availability Zone of the EC2 Instance Connect Endpoint.

', 'ElasticGpuAssociation$ElasticGpuAssociationId' => '

The ID of the association.

', 'ElasticGpuAssociation$ElasticGpuAssociationState' => '

The state of the association between the instance and the Elastic Graphics accelerator.

', 'ElasticGpuAssociation$ElasticGpuAssociationTime' => '

The time the Elastic Graphics accelerator was associated with the instance.

', 'ElasticGpuSpecification$Type' => '

The type of Elastic Graphics accelerator. For more information about the values to specify for Type, see Elastic Graphics Basics, specifically the Elastic Graphics accelerator column, in the Amazon Elastic Compute Cloud User Guide for Windows Instances.

', 'ElasticGpuSpecificationResponse$Type' => '

Deprecated.

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

', 'ElasticGpus$ElasticGpuId' => '

The ID of the Elastic Graphics accelerator.

', 'ElasticGpus$AvailabilityZone' => '

The Availability Zone in the which the Elastic Graphics accelerator resides.

', 'ElasticGpus$ElasticGpuType' => '

The type of Elastic Graphics accelerator.

', 'ElasticGpus$InstanceId' => '

The ID of the instance to which the Elastic Graphics accelerator is attached.

', 'ElasticInferenceAccelerator$Type' => '

The type of elastic inference accelerator. The possible values are eia1.medium, eia1.large, eia1.xlarge, eia2.medium, eia2.large, and eia2.xlarge.

', 'ElasticInferenceAcceleratorAssociation$ElasticInferenceAcceleratorArn' => '

The Amazon Resource Name (ARN) of the elastic inference accelerator.

', 'ElasticInferenceAcceleratorAssociation$ElasticInferenceAcceleratorAssociationId' => '

The ID of the association.

', 'ElasticInferenceAcceleratorAssociation$ElasticInferenceAcceleratorAssociationState' => '

The state of the elastic inference accelerator.

', 'EnableAddressTransferRequest$TransferAccountId' => '

The ID of the account that you want to transfer the Elastic IP address to.

', 'EnableAwsNetworkPerformanceMetricSubscriptionRequest$Source' => '

The source Region (like us-east-1) or Availability Zone ID (like use1-az1) that the metric subscription is enabled for. If you use Availability Zone IDs, the Source and Destination Availability Zones must be in the same Region.

', 'EnableAwsNetworkPerformanceMetricSubscriptionRequest$Destination' => '

The target Region (like us-east-2) or Availability Zone ID (like use2-az2) that the metric subscription is enabled for. If you use Availability Zone IDs, the Source and Destination Availability Zones must be in the same Region.

', 'EnableFastLaunchRequest$ResourceType' => '

The type of resource to use for pre-provisioning the AMI for Windows fast launch. Supported values include: snapshot, which is the default value.

', 'EnableFastLaunchResult$OwnerId' => '

The owner ID for the AMI for which Windows fast launch was enabled.

', 'EnableFastLaunchResult$StateTransitionReason' => '

The reason that the state changed for Windows fast launch for the AMI.

', 'EnableFastSnapshotRestoreErrorItem$SnapshotId' => '

The ID of the snapshot.

', 'EnableFastSnapshotRestoreStateError$Code' => '

The error code.

', 'EnableFastSnapshotRestoreStateError$Message' => '

The error message.

', 'EnableFastSnapshotRestoreStateErrorItem$AvailabilityZone' => '

The Availability Zone.

', 'EnableFastSnapshotRestoreSuccessItem$SnapshotId' => '

The ID of the snapshot.

', 'EnableFastSnapshotRestoreSuccessItem$AvailabilityZone' => '

The Availability Zone.

', 'EnableFastSnapshotRestoreSuccessItem$StateTransitionReason' => '

The reason for the state transition. The possible values are as follows:

  • Client.UserInitiated - The state successfully transitioned to enabling or disabling.

  • Client.UserInitiated - Lifecycle state transition - The state successfully transitioned to optimizing, enabled, or disabled.

', 'EnableFastSnapshotRestoreSuccessItem$OwnerId' => '

The ID of the Amazon Web Services account that enabled fast snapshot restores on the snapshot.

', 'EnableFastSnapshotRestoreSuccessItem$OwnerAlias' => '

The Amazon Web Services owner alias that enabled fast snapshot restores on the snapshot. This is intended for future use.

', 'EnableIpamOrganizationAdminAccountRequest$DelegatedAdminAccountId' => '

The Organizations member account ID that you want to enable as the IPAM account.

', 'EventInformation$EventDescription' => '

The description of the event.

', 'EventInformation$EventSubType' => '

The event.

error events:

  • iamFleetRoleInvalid - The EC2 Fleet or Spot Fleet does not have the required permissions either to launch or terminate an instance.

  • allLaunchSpecsTemporarilyBlacklisted - None of the configurations are valid, and several attempts to launch instances have failed. For more information, see the description of the event.

  • spotInstanceCountLimitExceeded - You\'ve reached the limit on the number of Spot Instances that you can launch.

  • spotFleetRequestConfigurationInvalid - The configuration is not valid. For more information, see the description of the event.

fleetRequestChange events:

  • active - The EC2 Fleet or Spot Fleet request has been validated and Amazon EC2 is attempting to maintain the target number of running instances.

  • deleted (EC2 Fleet) / cancelled (Spot Fleet) - The EC2 Fleet is deleted or the Spot Fleet request is canceled and has no running instances. The EC2 Fleet or Spot Fleet will be deleted two days after its instances are terminated.

  • deleted_running (EC2 Fleet) / cancelled_running (Spot Fleet) - The EC2 Fleet is deleted or the Spot Fleet request is canceled and does not launch additional instances. Its existing instances continue to run until they are interrupted or terminated. The request remains in this state until all instances are interrupted or terminated.

  • deleted_terminating (EC2 Fleet) / cancelled_terminating (Spot Fleet) - The EC2 Fleet is deleted or the Spot Fleet request is canceled and its instances are terminating. The request remains in this state until all instances are terminated.

  • expired - The EC2 Fleet or Spot Fleet request has expired. If the request was created with TerminateInstancesWithExpiration set, a subsequent terminated event indicates that the instances are terminated.

  • modify_in_progress - The EC2 Fleet or Spot Fleet request is being modified. The request remains in this state until the modification is fully processed.

  • modify_succeeded - The EC2 Fleet or Spot Fleet request was modified.

  • submitted - The EC2 Fleet or Spot Fleet request is being evaluated and Amazon EC2 is preparing to launch the target number of instances.

  • progress - The EC2 Fleet or Spot Fleet request is in the process of being fulfilled.

instanceChange events:

  • launched - A new instance was launched.

  • terminated - An instance was terminated by the user.

  • termination_notified - An instance termination notification was sent when a Spot Instance was terminated by Amazon EC2 during scale-down, when the target capacity of the fleet was modified down, for example, from a target capacity of 4 to a target capacity of 3.

Information events:

  • fleetProgressHalted - The price in every launch specification is not valid because it is below the Spot price (all the launch specifications have produced launchSpecUnusable events). A launch specification might become valid if the Spot price changes.

  • launchSpecTemporarilyBlacklisted - The configuration is not valid and several attempts to launch instances have failed. For more information, see the description of the event.

  • launchSpecUnusable - The price in a launch specification is not valid because it is below the Spot price.

  • registerWithLoadBalancersFailed - An attempt to register instances with load balancers failed. For more information, see the description of the event.

', 'EventInformation$InstanceId' => '

The ID of the instance. This information is available only for instanceChange events.

', 'ExecutableByStringList$member' => NULL, 'Explanation$Direction' => '

The direction. The following are the possible values:

  • egress

  • ingress

', 'Explanation$ExplanationCode' => '

The explanation code.

', 'Explanation$MissingComponent' => '

The missing component.

', 'Explanation$PacketField' => '

The packet field.

', 'Explanation$State' => '

The state.

', 'ExportClientVpnClientCertificateRevocationListResult$CertificateRevocationList' => '

Information about the client certificate revocation list.

', 'ExportClientVpnClientConfigurationResult$ClientConfiguration' => '

The contents of the Client VPN endpoint configuration file.

', 'ExportImageRequest$ClientToken' => '

Token to enable idempotency for export image requests.

', 'ExportImageRequest$Description' => '

A description of the image being exported. The maximum length is 255 characters.

', 'ExportImageRequest$RoleName' => '

The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket. If this parameter is not specified, the default role is named \'vmimport\'.

', 'ExportImageResult$Description' => '

A description of the image being exported.

', 'ExportImageResult$ExportImageTaskId' => '

The ID of the export image task.

', 'ExportImageResult$ImageId' => '

The ID of the image.

', 'ExportImageResult$RoleName' => '

The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket.

', 'ExportImageResult$Progress' => '

The percent complete of the export image task.

', 'ExportImageResult$Status' => '

The status of the export image task. The possible values are active, completed, deleting, and deleted.

', 'ExportImageResult$StatusMessage' => '

The status message for the export image task.

', 'ExportImageTask$Description' => '

A description of the image being exported.

', 'ExportImageTask$ExportImageTaskId' => '

The ID of the export image task.

', 'ExportImageTask$ImageId' => '

The ID of the image.

', 'ExportImageTask$Progress' => '

The percent complete of the export image task.

', 'ExportImageTask$Status' => '

The status of the export image task. The possible values are active, completed, deleting, and deleted.

', 'ExportImageTask$StatusMessage' => '

The status message for the export image task.

', 'ExportTask$Description' => '

A description of the resource being exported.

', 'ExportTask$ExportTaskId' => '

The ID of the export task.

', 'ExportTask$StatusMessage' => '

The status message related to the export task.

', 'ExportTaskS3Location$S3Bucket' => '

The destination Amazon S3 bucket.

', 'ExportTaskS3Location$S3Prefix' => '

The prefix (logical hierarchy) in the bucket.

', 'ExportTaskS3LocationRequest$S3Bucket' => '

The destination Amazon S3 bucket.

', 'ExportTaskS3LocationRequest$S3Prefix' => '

The prefix (logical hierarchy) in the bucket.

', 'ExportToS3Task$S3Bucket' => '

The Amazon S3 bucket for the destination image. The destination bucket must exist and have an access control list (ACL) attached that specifies the Region-specific canonical account ID for the Grantee. For more information about the ACL to your S3 bucket, see Prerequisites in the VM Import/Export User Guide.

', 'ExportToS3Task$S3Key' => '

The encryption key for your S3 bucket.

', 'ExportToS3TaskSpecification$S3Bucket' => '

The Amazon S3 bucket for the destination image. The destination bucket must exist and have an access control list (ACL) attached that specifies the Region-specific canonical account ID for the Grantee. For more information about the ACL to your S3 bucket, see Prerequisites in the VM Import/Export User Guide.

', 'ExportToS3TaskSpecification$S3Prefix' => '

The image is written to a single object in the Amazon S3 bucket at the S3 key s3prefix + exportTaskId + \'.\' + diskImageFormat.

', 'ExportTransitGatewayRoutesRequest$S3Bucket' => '

The name of the S3 bucket.

', 'ExportTransitGatewayRoutesResult$S3Location' => '

The URL of the exported file in Amazon S3. For example, s3://bucket_name/VPCTransitGateway/TransitGatewayRouteTables/file_name.

', 'FailedQueuedPurchaseDeletion$ReservedInstancesId' => '

The ID of the Reserved Instance.

', 'FastLaunchLaunchTemplateSpecificationRequest$LaunchTemplateName' => '

Specify the name of the launch template that the AMI should use for Windows fast launch.

', 'FastLaunchLaunchTemplateSpecificationRequest$Version' => '

Specify the version of the launch template that the AMI should use for Windows fast launch.

', 'FastLaunchLaunchTemplateSpecificationResponse$LaunchTemplateName' => '

The name of the launch template that the AMI uses for Windows fast launch.

', 'FastLaunchLaunchTemplateSpecificationResponse$Version' => '

The version of the launch template that the AMI uses for Windows fast launch.

', 'FederatedAuthentication$SamlProviderArn' => '

The Amazon Resource Name (ARN) of the IAM SAML identity provider.

', 'FederatedAuthentication$SelfServiceSamlProviderArn' => '

The Amazon Resource Name (ARN) of the IAM SAML identity provider for the self-service portal.

', 'FederatedAuthenticationRequest$SAMLProviderArn' => '

The Amazon Resource Name (ARN) of the IAM SAML identity provider.

', 'FederatedAuthenticationRequest$SelfServiceSAMLProviderArn' => '

The Amazon Resource Name (ARN) of the IAM SAML identity provider for the self-service portal.

', 'Filter$Name' => '

The name of the filter. Filter names are case-sensitive.

', 'FirewallStatefulRule$Protocol' => '

The protocol.

', 'FirewallStatefulRule$RuleAction' => '

The rule action. The possible values are pass, drop, and alert.

', 'FirewallStatefulRule$Direction' => '

The direction. The possible values are FORWARD and ANY.

', 'FirewallStatelessRule$RuleAction' => '

The rule action. The possible values are pass, drop, and forward_to_site.

', 'FleetCapacityReservation$AvailabilityZoneId' => '

The ID of the Availability Zone in which the Capacity Reservation reserves capacity.

', 'FleetCapacityReservation$AvailabilityZone' => '

The Availability Zone in which the Capacity Reservation reserves capacity.

', 'FleetData$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

Constraints: Maximum 64 ASCII characters

', 'FleetData$Context' => '

Reserved.

', 'FleetLaunchTemplateOverrides$MaxPrice' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'FleetLaunchTemplateOverrides$SubnetId' => '

The ID of the subnet in which to launch the instances.

', 'FleetLaunchTemplateOverrides$AvailabilityZone' => '

The Availability Zone in which to launch the instances.

', 'FleetLaunchTemplateOverridesRequest$MaxPrice' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'FleetLaunchTemplateOverridesRequest$AvailabilityZone' => '

The Availability Zone in which to launch the instances.

', 'FleetLaunchTemplateSpecification$LaunchTemplateId' => '

The ID of the launch template.

You must specify the LaunchTemplateId or the LaunchTemplateName, but not both.

', 'FleetLaunchTemplateSpecification$Version' => '

The launch template version number, $Latest, or $Default. You must specify a value, otherwise the request fails.

If the value is $Latest, Amazon EC2 uses the latest version of the launch template.

If the value is $Default, Amazon EC2 uses the default version of the launch template.

', 'FleetLaunchTemplateSpecificationRequest$Version' => '

The launch template version number, $Latest, or $Default. You must specify a value, otherwise the request fails.

If the value is $Latest, Amazon EC2 uses the latest version of the launch template.

If the value is $Default, Amazon EC2 uses the default version of the launch template.

', 'FlowLog$DeliverLogsErrorMessage' => '

Information about the error that occurred. Rate limited indicates that CloudWatch Logs throttling has been applied for one or more network interfaces, or that you\'ve reached the limit on the number of log groups that you can create. Access error indicates that the IAM role associated with the flow log does not have sufficient permissions to publish to CloudWatch Logs. Unknown error indicates an internal error.

', 'FlowLog$DeliverLogsPermissionArn' => '

The ARN of the IAM role allows the service to publish logs to CloudWatch Logs.

', 'FlowLog$DeliverCrossAccountRole' => '

The ARN of the IAM role that allows the service to publish flow logs across accounts.

', 'FlowLog$DeliverLogsStatus' => '

The status of the logs delivery (SUCCESS | FAILED).

', 'FlowLog$FlowLogId' => '

The ID of the flow log.

', 'FlowLog$FlowLogStatus' => '

The status of the flow log (ACTIVE).

', 'FlowLog$LogGroupName' => '

The name of the flow log group.

', 'FlowLog$ResourceId' => '

The ID of the resource being monitored.

', 'FlowLog$LogDestination' => '

The Amazon Resource Name (ARN) of the destination for the flow log data.

', 'FlowLog$LogFormat' => '

The format of the flow log record.

', 'FpgaImage$FpgaImageId' => '

The FPGA image identifier (AFI ID).

', 'FpgaImage$FpgaImageGlobalId' => '

The global FPGA image identifier (AGFI ID).

', 'FpgaImage$Name' => '

The name of the AFI.

', 'FpgaImage$Description' => '

The description of the AFI.

', 'FpgaImage$ShellVersion' => '

The version of the Amazon Web Services Shell that was used to create the bitstream.

', 'FpgaImage$OwnerId' => '

The ID of the Amazon Web Services account that owns the AFI.

', 'FpgaImage$OwnerAlias' => '

The alias of the AFI owner. Possible values include self, amazon, and aws-marketplace.

', 'FpgaImageAttribute$FpgaImageId' => '

The ID of the AFI.

', 'FpgaImageAttribute$Name' => '

The name of the AFI.

', 'FpgaImageAttribute$Description' => '

The description of the AFI.

', 'FpgaImageState$Message' => '

If the state is failed, this is the error message.

', 'GetAssociatedIpv6PoolCidrsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetAwsNetworkPerformanceDataRequest$NextToken' => '

The token for the next page of results.

', 'GetAwsNetworkPerformanceDataResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetCapacityReservationUsageRequest$NextToken' => '

The token to use to retrieve the next page of results.

', 'GetCapacityReservationUsageResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetCapacityReservationUsageResult$CapacityReservationId' => '

The ID of the Capacity Reservation.

', 'GetCapacityReservationUsageResult$InstanceType' => '

The type of instance for which the Capacity Reservation reserves capacity.

', 'GetCoipPoolUsageRequest$NextToken' => '

The token for the next page of results.

', 'GetCoipPoolUsageResult$CoipPoolId' => '

The ID of the customer-owned address pool.

', 'GetCoipPoolUsageResult$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'GetCoipPoolUsageResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetConsoleOutputResult$InstanceId' => '

The ID of the instance.

', 'GetConsoleOutputResult$Output' => '

The console output, base64-encoded. If you are using a command line tool, the tool decodes the output for you.

', 'GetConsoleScreenshotResult$ImageData' => '

The data that comprises the image.

', 'GetConsoleScreenshotResult$InstanceId' => '

The ID of the instance.

', 'GetEbsDefaultKmsKeyIdResult$KmsKeyId' => '

The Amazon Resource Name (ARN) of the default KMS key for encryption by default.

', 'GetFlowLogsIntegrationTemplateRequest$ConfigDeliveryS3DestinationArn' => '

To store the CloudFormation template in Amazon S3, specify the location in Amazon S3.

', 'GetFlowLogsIntegrationTemplateResult$Result' => '

The generated CloudFormation template.

', 'GetGroupsForCapacityReservationRequest$NextToken' => '

The token to use to retrieve the next page of results.

', 'GetGroupsForCapacityReservationResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetHostReservationPurchasePreviewResult$TotalHourlyPrice' => '

The potential total hourly price of the reservation per hour.

', 'GetHostReservationPurchasePreviewResult$TotalUpfrontPrice' => '

The potential total upfront price. This is billed immediately.

', 'GetImageBlockPublicAccessStateResult$ImageBlockPublicAccessState' => '

The current state of block public access for AMIs at the account level in the specified Amazon Web Services Region.

Possible values:

  • block-new-sharing - Any attempt to publicly share your AMIs in the specified Region is blocked.

  • unblocked - Your AMIs in the specified Region can be publicly shared.

', 'GetInstanceTypesFromInstanceRequirementsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'GetInstanceTypesFromInstanceRequirementsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'GetInstanceUefiDataResult$UefiData' => '

Base64 representation of the non-volatile UEFI variable store.

', 'GetIpamAddressHistoryRequest$Cidr' => '

The CIDR you want the history of. The CIDR can be an IPv4 or IPv6 IP address range. If you enter a /16 IPv4 CIDR, you will get records that match it exactly. You will not get records for any subnets within the /16 CIDR.

', 'GetIpamAddressHistoryRequest$VpcId' => '

The ID of the VPC you want your history records filtered by.

', 'GetIpamDiscoveredAccountsRequest$DiscoveryRegion' => '

The Amazon Web Services Region that the account information is returned from.

', 'GetIpamDiscoveredPublicAddressesRequest$AddressRegion' => '

The Amazon Web Services Region for the IP address.

', 'GetIpamDiscoveredResourceCidrsRequest$ResourceRegion' => '

A resource Region.

', 'GetIpamResourceCidrsRequest$ResourceId' => '

The ID of the resource.

', 'GetIpamResourceCidrsRequest$ResourceOwner' => '

The ID of the Amazon Web Services account that owns the resource.

', 'GetManagedPrefixListAssociationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetNetworkInsightsAccessScopeAnalysisFindingsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetPasswordDataResult$InstanceId' => '

The ID of the Windows instance.

', 'GetReservedInstancesExchangeQuoteResult$CurrencyCode' => '

The currency of the transaction.

', 'GetReservedInstancesExchangeQuoteResult$PaymentDue' => '

The total true upfront charge for the exchange.

', 'GetReservedInstancesExchangeQuoteResult$ValidationFailureReason' => '

Describes the reason why the exchange cannot be completed.

', 'GetSecurityGroupsForVpcRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'GetSecurityGroupsForVpcResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'GetSpotPlacementScoresRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'GetSpotPlacementScoresResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'GetSubnetCidrReservationsRequest$NextToken' => '

The token for the next page of results.

', 'GetSubnetCidrReservationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetTransitGatewayAttachmentPropagationsRequest$NextToken' => '

The token for the next page of results.

', 'GetTransitGatewayAttachmentPropagationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetTransitGatewayMulticastDomainAssociationsRequest$NextToken' => '

The token for the next page of results.

', 'GetTransitGatewayMulticastDomainAssociationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetTransitGatewayPolicyTableAssociationsRequest$NextToken' => '

The token for the next page of results.

', 'GetTransitGatewayPolicyTableAssociationsResult$NextToken' => '

The token for the next page of results.

', 'GetTransitGatewayPolicyTableEntriesRequest$NextToken' => '

The token for the next page of results.

', 'GetTransitGatewayPrefixListReferencesRequest$NextToken' => '

The token for the next page of results.

', 'GetTransitGatewayPrefixListReferencesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetTransitGatewayRouteTableAssociationsRequest$NextToken' => '

The token for the next page of results.

', 'GetTransitGatewayRouteTableAssociationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetTransitGatewayRouteTablePropagationsRequest$NextToken' => '

The token for the next page of results.

', 'GetTransitGatewayRouteTablePropagationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetVerifiedAccessEndpointPolicyResult$PolicyDocument' => '

The Verified Access policy document.

', 'GetVerifiedAccessGroupPolicyResult$PolicyDocument' => '

The Verified Access policy document.

', 'GetVpnConnectionDeviceSampleConfigurationRequest$InternetKeyExchangeVersion' => '

The IKE version to be used in the sample configuration file for your customer gateway device. You can specify one of the following versions: ikev1 or ikev2.

', 'GetVpnTunnelReplacementStatusRequest$VpnTunnelOutsideIpAddress' => '

The external IP address of the VPN tunnel.

', 'GetVpnTunnelReplacementStatusResult$VpnTunnelOutsideIpAddress' => '

The external IP address of the VPN tunnel.

', 'GroupIdentifier$GroupName' => '

The name of the security group.

', 'GroupIdentifier$GroupId' => '

The ID of the security group.

', 'Host$AvailabilityZone' => '

The Availability Zone of the Dedicated Host.

', 'Host$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'Host$HostId' => '

The ID of the Dedicated Host.

', 'Host$HostReservationId' => '

The reservation ID of the Dedicated Host. This returns a null response if the Dedicated Host doesn\'t have an associated reservation.

', 'Host$OwnerId' => '

The ID of the Amazon Web Services account that owns the Dedicated Host.

', 'Host$AvailabilityZoneId' => '

The ID of the Availability Zone in which the Dedicated Host is allocated.

', 'Host$OutpostArn' => '

The Amazon Resource Name (ARN) of the Amazon Web Services Outpost on which the Dedicated Host is allocated.

', 'HostInstance$InstanceId' => '

The ID of instance that is running on the Dedicated Host.

', 'HostInstance$InstanceType' => '

The instance type (for example, m3.medium) of the running instance.

', 'HostInstance$OwnerId' => '

The ID of the Amazon Web Services account that owns the instance.

', 'HostOffering$HourlyPrice' => '

The hourly price of the offering.

', 'HostOffering$InstanceFamily' => '

The instance family of the offering.

', 'HostOffering$UpfrontPrice' => '

The upfront price of the offering. Does not apply to No Upfront offerings.

', 'HostProperties$InstanceType' => '

The instance type supported by the Dedicated Host. For example, m5.large. If the host supports multiple instance types, no instanceType is returned.

', 'HostProperties$InstanceFamily' => '

The instance family supported by the Dedicated Host. For example, m5.

', 'HostReservation$HourlyPrice' => '

The hourly price of the reservation.

', 'HostReservation$InstanceFamily' => '

The instance family of the Dedicated Host Reservation. The instance family on the Dedicated Host must be the same in order for it to benefit from the reservation.

', 'HostReservation$UpfrontPrice' => '

The upfront price of the reservation.

', 'IKEVersionsListValue$Value' => '

The IKE version.

', 'IKEVersionsRequestListValue$Value' => '

The IKE version.

', 'IamInstanceProfile$Arn' => '

The Amazon Resource Name (ARN) of the instance profile.

', 'IamInstanceProfile$Id' => '

The ID of the instance profile.

', 'IamInstanceProfileAssociation$AssociationId' => '

The ID of the association.

', 'IamInstanceProfileAssociation$InstanceId' => '

The ID of the instance.

', 'IamInstanceProfileSpecification$Arn' => '

The Amazon Resource Name (ARN) of the instance profile.

', 'IamInstanceProfileSpecification$Name' => '

The name of the instance profile.

', 'IdFormat$Resource' => '

The type of resource.

', 'Image$CreationDate' => '

The date and time the image was created.

', 'Image$ImageId' => '

The ID of the AMI.

', 'Image$ImageLocation' => '

The location of the AMI.

', 'Image$KernelId' => '

The kernel associated with the image, if any. Only applicable for machine images.

', 'Image$OwnerId' => '

The ID of the Amazon Web Services account that owns the image.

', 'Image$PlatformDetails' => '

The platform details associated with the billing code of the AMI. For more information, see Understand AMI billing information in the Amazon EC2 User Guide.

', 'Image$UsageOperation' => '

The operation of the Amazon EC2 instance and the billing code that is associated with the AMI. usageOperation corresponds to the lineitem/Operation column on your Amazon Web Services Cost and Usage Report and in the Amazon Web Services Price List API. You can view these fields on the Instances or AMIs pages in the Amazon EC2 console, or in the responses that are returned by the DescribeImages command in the Amazon EC2 API, or the describe-images command in the CLI.

', 'Image$RamdiskId' => '

The RAM disk associated with the image, if any. Only applicable for machine images.

', 'Image$Description' => '

The description of the AMI that was provided during image creation.

', 'Image$ImageOwnerAlias' => '

The Amazon Web Services account alias (for example, amazon, self) or the Amazon Web Services account ID of the AMI owner.

', 'Image$Name' => '

The name of the AMI that was provided during image creation.

', 'Image$RootDeviceName' => '

The device name of the root device volume (for example, /dev/sda1).

', 'Image$SriovNetSupport' => '

Specifies whether enhanced networking with the Intel 82599 Virtual Function interface is enabled.

', 'Image$DeprecationTime' => '

The date and time to deprecate the AMI, in UTC, in the following format: YYYY-MM-DDTHH:MM:SSZ. If you specified a value for seconds, Amazon EC2 rounds the seconds to the nearest minute.

', 'Image$SourceInstanceId' => '

The ID of the instance that the AMI was created from if the AMI was created using CreateImage. This field only appears if the AMI was created using CreateImage.

', 'ImageAttribute$ImageId' => '

The ID of the AMI.

', 'ImageDiskContainer$Description' => '

The description of the disk image.

', 'ImageDiskContainer$DeviceName' => '

The block device mapping for the disk.

', 'ImageDiskContainer$Format' => '

The format of the disk image being imported.

Valid values: OVA | VHD | VHDX | VMDK | RAW

', 'ImageRecycleBinInfo$ImageId' => '

The ID of the AMI.

', 'ImageRecycleBinInfo$Name' => '

The name of the AMI.

', 'ImageRecycleBinInfo$Description' => '

The description of the AMI.

', 'ImportClientVpnClientCertificateRevocationListRequest$CertificateRevocationList' => '

The client certificate revocation list file. For more information, see Generate a Client Certificate Revocation List in the Client VPN Administrator Guide.

', 'ImportImageLicenseConfigurationRequest$LicenseConfigurationArn' => '

The ARN of a license configuration.

', 'ImportImageLicenseConfigurationResponse$LicenseConfigurationArn' => '

The ARN of a license configuration.

', 'ImportImageRequest$Architecture' => '

The architecture of the virtual machine.

Valid values: i386 | x86_64

', 'ImportImageRequest$ClientToken' => '

The token to enable idempotency for VM import requests.

', 'ImportImageRequest$Description' => '

A description string for the import image task.

', 'ImportImageRequest$Hypervisor' => '

The target hypervisor platform.

Valid values: xen

', 'ImportImageRequest$LicenseType' => '

The license type to be used for the Amazon Machine Image (AMI) after importing.

Specify AWS to replace the source-system license with an Amazon Web Services license or BYOL to retain the source-system license. Leaving this parameter undefined is the same as choosing AWS when importing a Windows Server operating system, and the same as choosing BYOL when importing a Windows client operating system (such as Windows 10) or a Linux operating system.

To use BYOL, you must have existing licenses with rights to use these licenses in a third party cloud, such as Amazon Web Services. For more information, see Prerequisites in the VM Import/Export User Guide.

', 'ImportImageRequest$Platform' => '

The operating system of the virtual machine. If you import a VM that is compatible with Unified Extensible Firmware Interface (UEFI) using an EBS snapshot, you must specify a value for the platform.

Valid values: Windows | Linux

', 'ImportImageRequest$RoleName' => '

The name of the role to use when not using the default role, \'vmimport\'.

', 'ImportImageRequest$UsageOperation' => '

The usage operation value. For more information, see Licensing options in the VM Import/Export User Guide.

', 'ImportImageResult$Architecture' => '

The architecture of the virtual machine.

', 'ImportImageResult$Description' => '

A description of the import task.

', 'ImportImageResult$Hypervisor' => '

The target hypervisor of the import task.

', 'ImportImageResult$ImageId' => '

The ID of the Amazon Machine Image (AMI) created by the import task.

', 'ImportImageResult$LicenseType' => '

The license type of the virtual machine.

', 'ImportImageResult$Platform' => '

The operating system of the virtual machine.

', 'ImportImageResult$Progress' => '

The progress of the task.

', 'ImportImageResult$Status' => '

A brief status of the task.

', 'ImportImageResult$StatusMessage' => '

A detailed status message of the import task.

', 'ImportImageResult$UsageOperation' => '

The usage operation value.

', 'ImportImageTask$Architecture' => '

The architecture of the virtual machine.

Valid values: i386 | x86_64 | arm64

', 'ImportImageTask$Description' => '

A description of the import task.

', 'ImportImageTask$Hypervisor' => '

The target hypervisor for the import task.

Valid values: xen

', 'ImportImageTask$ImageId' => '

The ID of the Amazon Machine Image (AMI) of the imported virtual machine.

', 'ImportImageTask$ImportTaskId' => '

The ID of the import image task.

', 'ImportImageTask$KmsKeyId' => '

The identifier for the KMS key that was used to create the encrypted image.

', 'ImportImageTask$LicenseType' => '

The license type of the virtual machine.

', 'ImportImageTask$Platform' => '

The description string for the import image task.

', 'ImportImageTask$Progress' => '

The percentage of progress of the import image task.

', 'ImportImageTask$Status' => '

A brief status for the import image task.

', 'ImportImageTask$StatusMessage' => '

A descriptive status message for the import image task.

', 'ImportImageTask$UsageOperation' => '

The usage operation value.

', 'ImportInstanceLaunchSpecification$AdditionalInfo' => '

Reserved.

', 'ImportInstanceLaunchSpecification$PrivateIpAddress' => '

[EC2-VPC] An available IP address from the IP address range of the subnet.

', 'ImportInstanceRequest$Description' => '

A description for the instance being imported.

', 'ImportInstanceTaskDetails$Description' => '

A description of the task.

', 'ImportInstanceTaskDetails$InstanceId' => '

The ID of the instance.

', 'ImportInstanceVolumeDetailItem$AvailabilityZone' => '

The Availability Zone where the resulting instance will reside.

', 'ImportInstanceVolumeDetailItem$Description' => '

A description of the task.

', 'ImportInstanceVolumeDetailItem$Status' => '

The status of the import of this particular disk image.

', 'ImportInstanceVolumeDetailItem$StatusMessage' => '

The status information or errors related to the disk image.

', 'ImportKeyPairRequest$KeyName' => '

A unique name for the key pair.

', 'ImportKeyPairResult$KeyFingerprint' => '
  • For RSA key pairs, the key fingerprint is the MD5 public key fingerprint as specified in section 4 of RFC 4716.

  • For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.

', 'ImportKeyPairResult$KeyName' => '

The key pair name that you provided.

', 'ImportKeyPairResult$KeyPairId' => '

The ID of the resulting key pair.

', 'ImportSnapshotRequest$ClientToken' => '

Token to enable idempotency for VM import requests.

', 'ImportSnapshotRequest$Description' => '

The description string for the import snapshot task.

', 'ImportSnapshotRequest$RoleName' => '

The name of the role to use when not using the default role, \'vmimport\'.

', 'ImportSnapshotResult$Description' => '

A description of the import snapshot task.

', 'ImportSnapshotResult$ImportTaskId' => '

The ID of the import snapshot task.

', 'ImportSnapshotTask$Description' => '

A description of the import snapshot task.

', 'ImportSnapshotTask$ImportTaskId' => '

The ID of the import snapshot task.

', 'ImportVolumeRequest$AvailabilityZone' => '

The Availability Zone for the resulting EBS volume.

', 'ImportVolumeRequest$Description' => '

A description of the volume.

', 'ImportVolumeTaskDetails$AvailabilityZone' => '

The Availability Zone where the resulting volume will reside.

', 'ImportVolumeTaskDetails$Description' => '

The description you provided when starting the import volume task.

', 'InsideCidrBlocksStringList$member' => NULL, 'Instance$ImageId' => '

The ID of the AMI used to launch the instance.

', 'Instance$InstanceId' => '

The ID of the instance.

', 'Instance$KernelId' => '

The kernel associated with this instance, if applicable.

', 'Instance$KeyName' => '

The name of the key pair, if this instance was launched with an associated key pair.

', 'Instance$PrivateDnsName' => '

[IPv4 only] The private DNS hostname name assigned to the instance. This DNS hostname can only be used inside the Amazon EC2 network. This name is not available until the instance enters the running state.

The Amazon-provided DNS server resolves Amazon-provided private DNS hostnames if you\'ve enabled DNS resolution and DNS hostnames in your VPC. If you are not using the Amazon-provided DNS server in your VPC, your custom domain name servers must resolve the hostname as appropriate.

', 'Instance$PrivateIpAddress' => '

The private IPv4 address assigned to the instance.

', 'Instance$PublicDnsName' => '

[IPv4 only] The public DNS name assigned to the instance. This name is not available until the instance enters the running state. This name is only available if you\'ve enabled DNS hostnames for your VPC.

', 'Instance$PublicIpAddress' => '

The public IPv4 address, or the Carrier IP address assigned to the instance, if applicable.

A Carrier IP address only applies to an instance launched in a subnet associated with a Wavelength Zone.

', 'Instance$RamdiskId' => '

The RAM disk associated with this instance, if applicable.

', 'Instance$StateTransitionReason' => '

The reason for the most recent state transition. This might be an empty string.

', 'Instance$SubnetId' => '

The ID of the subnet in which the instance is running.

', 'Instance$VpcId' => '

The ID of the VPC in which the instance is running.

', 'Instance$ClientToken' => '

The idempotency token you provided when you launched the instance, if applicable.

', 'Instance$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'Instance$RootDeviceName' => '

The device name of the root device volume (for example, /dev/sda1).

', 'Instance$SpotInstanceRequestId' => '

If the request is a Spot Instance request, the ID of the request.

', 'Instance$SriovNetSupport' => '

Specifies whether enhanced networking with the Intel 82599 Virtual Function interface is enabled.

', 'Instance$CapacityReservationId' => '

The ID of the Capacity Reservation.

', 'Instance$PlatformDetails' => '

The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.

', 'Instance$UsageOperation' => '

The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.

', 'Instance$Ipv6Address' => '

The IPv6 address assigned to the instance.

', 'Instance$TpmSupport' => '

If the instance is configured for NitroTPM support, the value is v2.0. For more information, see NitroTPM in the Amazon EC2 User Guide.

', 'InstanceAttribute$InstanceId' => '

The ID of the instance.

', 'InstanceBlockDeviceMapping$DeviceName' => '

The device name (for example, /dev/sdh or xvdh).

', 'InstanceBlockDeviceMappingSpecification$DeviceName' => '

The device name (for example, /dev/sdh or xvdh).

', 'InstanceBlockDeviceMappingSpecification$NoDevice' => '

suppress the specified device included in the block device mapping.

', 'InstanceBlockDeviceMappingSpecification$VirtualName' => '

The virtual device name.

', 'InstanceCapacity$InstanceType' => '

The instance type supported by the Dedicated Host.

', 'InstanceCreditSpecification$InstanceId' => '

The ID of the instance.

', 'InstanceCreditSpecification$CpuCredits' => '

The credit option for CPU usage of the instance.

Valid values: standard | unlimited

', 'InstanceCreditSpecificationRequest$CpuCredits' => '

The credit option for CPU usage of the instance.

Valid values: standard | unlimited

T3 instances with host tenancy do not support the unlimited CPU credit option.

', 'InstanceEventWindow$Name' => '

The name of the event window.

', 'InstanceExportDetails$InstanceId' => '

The ID of the resource being exported.

', 'InstanceFamilyCreditSpecification$CpuCredits' => '

The default credit option for CPU usage of the instance family. Valid values are standard and unlimited.

', 'InstanceIpv4Prefix$Ipv4Prefix' => '

One or more IPv4 prefixes assigned to the network interface.

', 'InstanceIpv6Address$Ipv6Address' => '

The IPv6 address.

', 'InstanceIpv6AddressRequest$Ipv6Address' => '

The IPv6 address.

', 'InstanceIpv6Prefix$Ipv6Prefix' => '

One or more IPv6 prefixes assigned to the network interface.

', 'InstanceMonitoring$InstanceId' => '

The ID of the instance.

', 'InstanceNetworkInterface$Description' => '

The description.

', 'InstanceNetworkInterface$MacAddress' => '

The MAC address.

', 'InstanceNetworkInterface$NetworkInterfaceId' => '

The ID of the network interface.

', 'InstanceNetworkInterface$OwnerId' => '

The ID of the Amazon Web Services account that created the network interface.

', 'InstanceNetworkInterface$PrivateDnsName' => '

The private DNS name.

', 'InstanceNetworkInterface$PrivateIpAddress' => '

The IPv4 address of the network interface within the subnet.

', 'InstanceNetworkInterface$SubnetId' => '

The ID of the subnet.

', 'InstanceNetworkInterface$VpcId' => '

The ID of the VPC.

', 'InstanceNetworkInterface$InterfaceType' => '

The type of network interface.

Valid values: interface | efa | trunk

', 'InstanceNetworkInterfaceAssociation$CarrierIp' => '

The carrier IP address associated with the network interface.

', 'InstanceNetworkInterfaceAssociation$CustomerOwnedIp' => '

The customer-owned IP address associated with the network interface.

', 'InstanceNetworkInterfaceAssociation$IpOwnerId' => '

The ID of the owner of the Elastic IP address.

', 'InstanceNetworkInterfaceAssociation$PublicDnsName' => '

The public DNS name.

', 'InstanceNetworkInterfaceAssociation$PublicIp' => '

The public IP address or Elastic IP address bound to the network interface.

', 'InstanceNetworkInterfaceAttachment$AttachmentId' => '

The ID of the network interface attachment.

', 'InstanceNetworkInterfaceSpecification$Description' => '

The description of the network interface. Applies only if creating a network interface when launching an instance.

', 'InstanceNetworkInterfaceSpecification$PrivateIpAddress' => '

The private IPv4 address of the network interface. Applies only if creating a network interface when launching an instance. You cannot specify this option if you\'re launching more than one instance in a RunInstances request.

', 'InstanceNetworkInterfaceSpecification$SubnetId' => '

The ID of the subnet associated with the network interface. Applies only if creating a network interface when launching an instance.

', 'InstanceNetworkInterfaceSpecification$InterfaceType' => '

The type of network interface.

Valid values: interface | efa

', 'InstancePrivateIpAddress$PrivateDnsName' => '

The private IPv4 DNS name.

', 'InstancePrivateIpAddress$PrivateIpAddress' => '

The private IPv4 address of the network interface.

', 'InstanceStateChange$InstanceId' => '

The ID of the instance.

', 'InstanceStatus$AvailabilityZone' => '

The Availability Zone of the instance.

', 'InstanceStatus$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'InstanceStatus$InstanceId' => '

The ID of the instance.

', 'InstanceStatusEvent$Description' => '

A description of the event.

After a scheduled event is completed, it can still be described for up to a week. If the event has been completed, this description starts with the following text: [Completed].

', 'InstanceTagKeySet$member' => NULL, 'InstanceTopology$InstanceId' => '

The instance ID.

', 'InstanceTopology$InstanceType' => '

The instance type.

', 'InstanceTopology$GroupName' => '

The name of the placement group that the instance is in.

', 'InstanceTopology$AvailabilityZone' => '

The name of the Availability Zone or Local Zone that the instance is in.

', 'InstanceTopology$ZoneId' => '

The ID of the Availability Zone or Local Zone that the instance is in.

', 'InstanceTypeInfoFromInstanceRequirements$InstanceType' => '

The matching instance type.

', 'InstanceTypes$member' => NULL, 'InstanceTypesList$member' => NULL, 'InstanceUsage$AccountId' => '

The ID of the Amazon Web Services account that is making use of the Capacity Reservation.

', 'InternetGateway$InternetGatewayId' => '

The ID of the internet gateway.

', 'InternetGateway$OwnerId' => '

The ID of the Amazon Web Services account that owns the internet gateway.

', 'InternetGatewayAttachment$VpcId' => '

The ID of the VPC.

', 'IpList$member' => NULL, 'IpPermission$IpProtocol' => '

The IP protocol name (tcp, udp, icmp, icmpv6) or number (see Protocol Numbers).

Use -1 to specify all protocols. When authorizing security group rules, specifying -1 or a protocol number other than tcp, udp, icmp, or icmpv6 allows traffic on all ports, regardless of any port range you specify. For tcp, udp, and icmp, you must specify a port range. For icmpv6, the port range is optional; if you omit the port range, traffic for all types and codes is allowed.

', 'IpPrefixList$member' => NULL, 'IpRange$CidrIp' => '

The IPv4 CIDR range. You can either specify a CIDR range or a source security group, not both. To specify a single IPv4 address, use the /32 prefix length.

', 'IpRange$Description' => '

A description for the security group rule that references this IPv4 address range.

Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$*

', 'IpRanges$member' => NULL, 'Ipam$OwnerId' => '

The Amazon Web Services account ID of the owner of the IPAM.

', 'Ipam$IpamRegion' => '

The Amazon Web Services Region of the IPAM.

', 'Ipam$Description' => '

The description for the IPAM.

', 'Ipam$StateMessage' => '

The state message.

', 'IpamAddressHistoryRecord$ResourceOwnerId' => '

The ID of the resource owner.

', 'IpamAddressHistoryRecord$ResourceRegion' => '

The Amazon Web Services Region of the resource.

', 'IpamAddressHistoryRecord$ResourceId' => '

The ID of the resource.

', 'IpamAddressHistoryRecord$ResourceCidr' => '

The CIDR of the resource.

', 'IpamAddressHistoryRecord$ResourceName' => '

The name of the resource.

', 'IpamAddressHistoryRecord$VpcId' => '

The VPC ID of the resource.

', 'IpamCidrAuthorizationContext$Message' => '

The plain-text authorization message for the prefix and account.

', 'IpamCidrAuthorizationContext$Signature' => '

The signed authorization message for the prefix and account.

', 'IpamDiscoveredAccount$AccountId' => '

The account ID.

', 'IpamDiscoveredAccount$DiscoveryRegion' => '

The Amazon Web Services Region that the account information is returned from. An account can be discovered in multiple regions and will have a separate discovered account for each Region.

', 'IpamDiscoveredPublicAddress$AddressRegion' => '

The Region of the resource the IP address is assigned to.

', 'IpamDiscoveredPublicAddress$Address' => '

The IP address.

', 'IpamDiscoveredPublicAddress$AddressOwnerId' => '

The ID of the owner of the resource the IP address is assigned to.

', 'IpamDiscoveredPublicAddress$AddressAllocationId' => '

The allocation ID of the resource the IP address is assigned to.

', 'IpamDiscoveredPublicAddress$ServiceResource' => '

The resource ARN or ID.

', 'IpamDiscoveredPublicAddress$VpcId' => '

The ID of the VPC that the resource with the assigned IP address is in.

', 'IpamDiscoveredPublicAddress$SubnetId' => '

The ID of the subnet that the resource with the assigned IP address is in.

', 'IpamDiscoveredPublicAddress$PublicIpv4PoolId' => '

The ID of the public IPv4 pool that the resource with the assigned IP address is from.

', 'IpamDiscoveredPublicAddress$NetworkInterfaceId' => '

The network interface ID of the resource with the assigned IP address.

', 'IpamDiscoveredPublicAddress$NetworkInterfaceDescription' => '

The description of the network interface that IP address is assigned to.

', 'IpamDiscoveredPublicAddress$InstanceId' => '

The instance ID of the instance the assigned IP address is assigned to.

', 'IpamDiscoveredPublicAddress$NetworkBorderGroup' => '

The network border group that the resource that the IP address is assigned to is in.

', 'IpamDiscoveredResourceCidr$ResourceRegion' => '

The resource Region.

', 'IpamDiscoveredResourceCidr$ResourceId' => '

The resource ID.

', 'IpamDiscoveredResourceCidr$ResourceOwnerId' => '

The resource owner ID.

', 'IpamDiscoveredResourceCidr$ResourceCidr' => '

The resource CIDR.

', 'IpamDiscoveredResourceCidr$VpcId' => '

The VPC ID.

', 'IpamDiscoveryFailureReason$Message' => '

The discovery failure message.

', 'IpamOperatingRegion$RegionName' => '

The name of the operating Region.

', 'IpamPool$OwnerId' => '

The Amazon Web Services account ID of the owner of the IPAM pool.

', 'IpamPool$IpamRegion' => '

The Amazon Web Services Region of the IPAM pool.

', 'IpamPool$Locale' => '

The locale of the IPAM pool. In IPAM, the locale is the Amazon Web Services Region where you want to make an IPAM pool available for allocations. Only resources in the same Region as the locale of the pool can get IP address allocations from the pool. You can only allocate a CIDR for a VPC, for example, from an IPAM pool that shares a locale with the VPC’s Region. Note that once you choose a Locale for a pool, you cannot modify it. If you choose an Amazon Web Services Region for locale that has not been configured as an operating Region for the IPAM, you\'ll get an error.

', 'IpamPool$StateMessage' => '

The state message.

', 'IpamPool$Description' => '

The description of the IPAM pool.

', 'IpamPoolAllocation$Cidr' => '

The CIDR for the allocation. A CIDR is a representation of an IP address and its associated network mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is 10.24.34.0/23. An IPv6 CIDR example is 2001:DB8::/32.

', 'IpamPoolAllocation$Description' => '

A description of the pool allocation.

', 'IpamPoolAllocation$ResourceId' => '

The ID of the resource.

', 'IpamPoolAllocation$ResourceRegion' => '

The Amazon Web Services Region of the resource.

', 'IpamPoolAllocation$ResourceOwner' => '

The owner of the resource.

', 'IpamPoolAllocationAllowedCidrs$member' => NULL, 'IpamPoolAllocationDisallowedCidrs$member' => NULL, 'IpamPoolCidr$Cidr' => '

The CIDR provisioned to the IPAM pool. A CIDR is a representation of an IP address and its associated network mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is 10.24.34.0/23. An IPv6 CIDR example is 2001:DB8::/32.

', 'IpamPoolCidrFailureReason$Message' => '

A message related to why an IPAM pool CIDR failed to be provisioned.

', 'IpamPoolSourceResource$ResourceId' => '

The source resource ID.

', 'IpamPoolSourceResource$ResourceRegion' => '

The source resource Region.

', 'IpamPoolSourceResource$ResourceOwner' => '

The source resource owner.

', 'IpamPoolSourceResourceRequest$ResourceId' => '

The source resource ID.

', 'IpamPoolSourceResourceRequest$ResourceRegion' => '

The source resource Region.

', 'IpamPoolSourceResourceRequest$ResourceOwner' => '

The source resource owner.

', 'IpamPublicAddressSecurityGroup$GroupName' => '

The security group\'s name.

', 'IpamPublicAddressSecurityGroup$GroupId' => '

The security group\'s ID.

', 'IpamPublicAddressTag$Key' => '

The tag\'s key.

', 'IpamPublicAddressTag$Value' => '

The tag\'s value.

', 'IpamResourceCidr$ResourceRegion' => '

The Amazon Web Services Region for an IPAM resource.

', 'IpamResourceCidr$ResourceOwnerId' => '

The Amazon Web Services account number of the owner of an IPAM resource.

', 'IpamResourceCidr$ResourceId' => '

The ID of an IPAM resource.

', 'IpamResourceCidr$ResourceName' => '

The name of an IPAM resource.

', 'IpamResourceCidr$ResourceCidr' => '

The CIDR for an IPAM resource.

', 'IpamResourceCidr$VpcId' => '

The ID of a VPC.

', 'IpamResourceDiscovery$OwnerId' => '

The ID of the owner.

', 'IpamResourceDiscovery$IpamResourceDiscoveryArn' => '

The resource discovery Amazon Resource Name (ARN).

', 'IpamResourceDiscovery$IpamResourceDiscoveryRegion' => '

The resource discovery Region.

', 'IpamResourceDiscovery$Description' => '

The resource discovery description.

', 'IpamResourceDiscoveryAssociation$OwnerId' => '

The Amazon Web Services account ID of the resource discovery owner.

', 'IpamResourceDiscoveryAssociation$IpamResourceDiscoveryAssociationArn' => '

The resource discovery association Amazon Resource Name (ARN).

', 'IpamResourceDiscoveryAssociation$IpamRegion' => '

The IPAM home Region.

', 'IpamResourceTag$Key' => '

The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'IpamResourceTag$Value' => '

The value of the tag.

', 'IpamScope$OwnerId' => '

The Amazon Web Services account ID of the owner of the scope.

', 'IpamScope$IpamRegion' => '

The Amazon Web Services Region of the IPAM scope.

', 'IpamScope$Description' => '

The description of the scope.

', 'Ipv4PrefixSpecification$Ipv4Prefix' => '

The IPv4 prefix. For information, see Assigning prefixes to Amazon EC2 network interfaces in the Amazon Elastic Compute Cloud User Guide.

', 'Ipv4PrefixSpecificationRequest$Ipv4Prefix' => '

The IPv4 prefix. For information, see Assigning prefixes to Amazon EC2 network interfaces in the Amazon Elastic Compute Cloud User Guide.

', 'Ipv4PrefixSpecificationResponse$Ipv4Prefix' => '

The IPv4 delegated prefixes assigned to the network interface.

', 'Ipv6AddressList$member' => NULL, 'Ipv6CidrAssociation$Ipv6Cidr' => '

The IPv6 CIDR block.

', 'Ipv6CidrAssociation$AssociatedResource' => '

The resource that\'s associated with the IPv6 CIDR block.

', 'Ipv6CidrBlock$Ipv6CidrBlock' => '

The IPv6 CIDR block.

', 'Ipv6Pool$PoolId' => '

The ID of the address pool.

', 'Ipv6Pool$Description' => '

The description for the address pool.

', 'Ipv6PrefixSpecification$Ipv6Prefix' => '

The IPv6 prefix.

', 'Ipv6PrefixSpecificationRequest$Ipv6Prefix' => '

The IPv6 prefix.

', 'Ipv6PrefixSpecificationResponse$Ipv6Prefix' => '

The IPv6 delegated prefixes assigned to the network interface.

', 'Ipv6Range$CidrIpv6' => '

The IPv6 CIDR range. You can either specify a CIDR range or a source security group, not both. To specify a single IPv6 address, use the /128 prefix length.

', 'Ipv6Range$Description' => '

A description for the security group rule that references this IPv6 address range.

Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$*

', 'KeyPair$KeyFingerprint' => '
  • For RSA key pairs, the key fingerprint is the SHA-1 digest of the DER encoded private key.

  • For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.

', 'KeyPair$KeyName' => '

The name of the key pair.

', 'KeyPair$KeyPairId' => '

The ID of the key pair.

', 'KeyPairInfo$KeyPairId' => '

The ID of the key pair.

', 'KeyPairInfo$KeyFingerprint' => '

If you used CreateKeyPair to create the key pair:

  • For RSA key pairs, the key fingerprint is the SHA-1 digest of the DER encoded private key.

  • For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.

If you used ImportKeyPair to provide Amazon Web Services the public key:

  • For RSA key pairs, the key fingerprint is the MD5 public key fingerprint as specified in section 4 of RFC4716.

  • For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.

', 'KeyPairInfo$KeyName' => '

The name of the key pair.

', 'KeyPairInfo$PublicKey' => '

The public key material.

', 'LastError$Message' => '

The error message for the VPC endpoint error.

', 'LastError$Code' => '

The error code for the VPC endpoint error.

', 'LaunchPermission$UserId' => '

The Amazon Web Services account ID.

Constraints: Up to 10 000 account IDs can be specified in a single request.

', 'LaunchPermission$OrganizationArn' => '

The Amazon Resource Name (ARN) of an organization.

', 'LaunchPermission$OrganizationalUnitArn' => '

The Amazon Resource Name (ARN) of an organizational unit (OU).

', 'LaunchSpecification$AddressingType' => '

Deprecated.

', 'LaunchSpecification$ImageId' => '

The ID of the AMI.

', 'LaunchSpecification$KernelId' => '

The ID of the kernel.

', 'LaunchSpecification$KeyName' => '

The name of the key pair.

', 'LaunchSpecification$RamdiskId' => '

The ID of the RAM disk.

', 'LaunchSpecification$SubnetId' => '

The ID of the subnet in which to launch the instance.

', 'LaunchTemplate$LaunchTemplateId' => '

The ID of the launch template.

', 'LaunchTemplate$CreatedBy' => '

The principal that created the launch template.

', 'LaunchTemplateBlockDeviceMapping$DeviceName' => '

The device name.

', 'LaunchTemplateBlockDeviceMapping$VirtualName' => '

The virtual device name (ephemeralN).

', 'LaunchTemplateBlockDeviceMapping$NoDevice' => '

To omit the device from the block device mapping, specify an empty string.

', 'LaunchTemplateBlockDeviceMappingRequest$DeviceName' => '

The device name (for example, /dev/sdh or xvdh).

', 'LaunchTemplateBlockDeviceMappingRequest$VirtualName' => '

The virtual device name (ephemeralN). Instance store volumes are numbered starting from 0. An instance type with 2 available instance store volumes can specify mappings for ephemeral0 and ephemeral1. The number of available instance store volumes depends on the instance type. After you connect to the instance, you must mount the volume.

', 'LaunchTemplateBlockDeviceMappingRequest$NoDevice' => '

To omit the device from the block device mapping, specify an empty string.

', 'LaunchTemplateElasticInferenceAccelerator$Type' => '

The type of elastic inference accelerator. The possible values are eia1.medium, eia1.large, and eia1.xlarge.

', 'LaunchTemplateElasticInferenceAcceleratorResponse$Type' => '

The type of elastic inference accelerator. The possible values are eia1.medium, eia1.large, and eia1.xlarge.

', 'LaunchTemplateIamInstanceProfileSpecification$Arn' => '

The Amazon Resource Name (ARN) of the instance profile.

', 'LaunchTemplateIamInstanceProfileSpecification$Name' => '

The name of the instance profile.

', 'LaunchTemplateIamInstanceProfileSpecificationRequest$Arn' => '

The Amazon Resource Name (ARN) of the instance profile.

', 'LaunchTemplateIamInstanceProfileSpecificationRequest$Name' => '

The name of the instance profile.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$Description' => '

A description for the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$InterfaceType' => '

The type of network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$PrivateIpAddress' => '

The primary private IPv4 address of the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$Description' => '

A description for the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$InterfaceType' => '

The type of network interface. To create an Elastic Fabric Adapter (EFA), specify efa. For more information, see Elastic Fabric Adapter in the Amazon Elastic Compute Cloud User Guide.

If you are not creating an EFA, specify interface or omit this parameter.

Valid values: interface | efa

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$PrivateIpAddress' => '

The primary private IPv4 address of the network interface.

', 'LaunchTemplateLicenseConfiguration$LicenseConfigurationArn' => '

The Amazon Resource Name (ARN) of the license configuration.

', 'LaunchTemplateLicenseConfigurationRequest$LicenseConfigurationArn' => '

The Amazon Resource Name (ARN) of the license configuration.

', 'LaunchTemplateOverrides$SpotPrice' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'LaunchTemplateOverrides$AvailabilityZone' => '

The Availability Zone in which to launch the instances.

', 'LaunchTemplatePlacement$AvailabilityZone' => '

The Availability Zone of the instance.

', 'LaunchTemplatePlacement$Affinity' => '

The affinity setting for the instance on the Dedicated Host.

', 'LaunchTemplatePlacement$GroupName' => '

The name of the placement group for the instance.

', 'LaunchTemplatePlacement$HostId' => '

The ID of the Dedicated Host for the instance.

', 'LaunchTemplatePlacement$SpreadDomain' => '

Reserved for future use.

', 'LaunchTemplatePlacement$HostResourceGroupArn' => '

The ARN of the host resource group in which to launch the instances.

', 'LaunchTemplatePlacementRequest$AvailabilityZone' => '

The Availability Zone for the instance.

', 'LaunchTemplatePlacementRequest$Affinity' => '

The affinity setting for an instance on a Dedicated Host.

', 'LaunchTemplatePlacementRequest$SpreadDomain' => '

Reserved for future use.

', 'LaunchTemplatePlacementRequest$HostResourceGroupArn' => '

The ARN of the host resource group in which to launch the instances. If you specify a host resource group ARN, omit the Tenancy parameter or set it to host.

', 'LaunchTemplateSpecification$LaunchTemplateName' => '

The name of the launch template.

You must specify the LaunchTemplateName or the LaunchTemplateId, but not both.

', 'LaunchTemplateSpecification$Version' => '

The launch template version number, $Latest, or $Default.

If the value is $Latest, Amazon EC2 uses the latest version of the launch template.

If the value is $Default, Amazon EC2 uses the default version of the launch template.

Default: The default version of the launch template.

', 'LaunchTemplateSpotMarketOptions$MaxPrice' => '

The maximum hourly price you\'re willing to pay for the Spot Instances. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not specify this parameter.

', 'LaunchTemplateSpotMarketOptionsRequest$MaxPrice' => '

The maximum hourly price you\'re willing to pay for the Spot Instances. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not specify this parameter.

', 'LaunchTemplateVersion$LaunchTemplateId' => '

The ID of the launch template.

', 'LaunchTemplateVersion$CreatedBy' => '

The principal that created the version.

', 'LicenseConfiguration$LicenseConfigurationArn' => '

The Amazon Resource Name (ARN) of the license configuration.

', 'LicenseConfigurationRequest$LicenseConfigurationArn' => '

The Amazon Resource Name (ARN) of the license configuration.

', 'ListImagesInRecycleBinRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'ListImagesInRecycleBinResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'ListSnapshotsInRecycleBinRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'ListSnapshotsInRecycleBinResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'LoadPermission$UserId' => '

The Amazon Web Services account ID.

', 'LoadPermissionRequest$UserId' => '

The Amazon Web Services account ID.

', 'LocalGateway$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'LocalGateway$OwnerId' => '

The ID of the Amazon Web Services account that owns the local gateway.

', 'LocalGateway$State' => '

The state of the local gateway.

', 'LocalGatewayRoute$DestinationCidrBlock' => '

The CIDR block used for destination matches.

', 'LocalGatewayRoute$OwnerId' => '

The ID of the Amazon Web Services account that owns the local gateway route.

', 'LocalGatewayRouteTable$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'LocalGatewayRouteTable$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'LocalGatewayRouteTable$OwnerId' => '

The ID of the Amazon Web Services account that owns the local gateway route table.

', 'LocalGatewayRouteTable$State' => '

The state of the local gateway route table.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation$LocalGatewayId' => '

The ID of the local gateway.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation$OwnerId' => '

The ID of the Amazon Web Services account that owns the local gateway virtual interface group association.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation$State' => '

The state of the association.

', 'LocalGatewayRouteTableVpcAssociation$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'LocalGatewayRouteTableVpcAssociation$LocalGatewayId' => '

The ID of the local gateway.

', 'LocalGatewayRouteTableVpcAssociation$VpcId' => '

The ID of the VPC.

', 'LocalGatewayRouteTableVpcAssociation$OwnerId' => '

The ID of the Amazon Web Services account that owns the local gateway route table for the association.

', 'LocalGatewayRouteTableVpcAssociation$State' => '

The state of the association.

', 'LocalGatewayVirtualInterface$LocalGatewayId' => '

The ID of the local gateway.

', 'LocalGatewayVirtualInterface$LocalAddress' => '

The local address.

', 'LocalGatewayVirtualInterface$PeerAddress' => '

The peer address.

', 'LocalGatewayVirtualInterface$OwnerId' => '

The ID of the Amazon Web Services account that owns the local gateway virtual interface.

', 'LocalGatewayVirtualInterfaceGroup$LocalGatewayId' => '

The ID of the local gateway.

', 'LocalGatewayVirtualInterfaceGroup$OwnerId' => '

The ID of the Amazon Web Services account that owns the local gateway virtual interface group.

', 'LockSnapshotResult$SnapshotId' => '

The ID of the snapshot

', 'LockedSnapshotsInfo$OwnerId' => '

The account ID of the Amazon Web Services account that owns the snapshot.

', 'LockedSnapshotsInfo$SnapshotId' => '

The ID of the snapshot.

', 'MaintenanceDetails$PendingMaintenance' => '

Verify existence of a pending maintenance.

', 'ManagedPrefixList$AddressFamily' => '

The IP address version.

', 'ManagedPrefixList$StateMessage' => '

The state message.

', 'ManagedPrefixList$PrefixListName' => '

The name of the prefix list.

', 'ManagedPrefixList$OwnerId' => '

The ID of the owner of the prefix list.

', 'MetricPoint$Status' => '

The status of the metric point.

', 'ModifyAddressAttributeRequest$DomainName' => '

The domain name to modify for the IP address.

', 'ModifyAvailabilityZoneGroupRequest$GroupName' => '

The name of the Availability Zone group, Local Zone group, or Wavelength Zone group.

', 'ModifyCapacityReservationRequest$AdditionalInfo' => '

Reserved for future use.

', 'ModifyClientVpnEndpointRequest$ServerCertificateArn' => '

The ARN of the server certificate to be used. The server certificate must be provisioned in Certificate Manager (ACM).

', 'ModifyClientVpnEndpointRequest$Description' => '

A brief description of the Client VPN endpoint.

', 'ModifyDefaultCreditSpecificationRequest$CpuCredits' => '

The credit option for CPU usage of the instance family.

Valid Values: standard | unlimited

', 'ModifyEbsDefaultKmsKeyIdResult$KmsKeyId' => '

The Amazon Resource Name (ARN) of the default KMS key for encryption by default.

', 'ModifyFleetRequest$Context' => '

Reserved.

', 'ModifyFpgaImageAttributeRequest$Description' => '

A description for the AFI.

', 'ModifyFpgaImageAttributeRequest$Name' => '

A name for the AFI.

', 'ModifyHostsRequest$InstanceType' => '

Specifies the instance type to be supported by the Dedicated Host. Specify this parameter to modify a Dedicated Host to support only a specific instance type.

If you want to modify a Dedicated Host to support multiple instance types in its current instance family, omit this parameter and specify InstanceFamily instead. You cannot specify InstanceType and InstanceFamily in the same request.

', 'ModifyHostsRequest$InstanceFamily' => '

Specifies the instance family to be supported by the Dedicated Host. Specify this parameter to modify a Dedicated Host to support multiple instance types within its current instance family.

If you want to modify a Dedicated Host to support a specific instance type only, omit this parameter and specify InstanceType instead. You cannot specify InstanceFamily and InstanceType in the same request.

', 'ModifyIdFormatRequest$Resource' => '

The type of resource: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | route-table | route-table-association | security-group | subnet | subnet-cidr-block-association | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway.

Alternatively, use the all-current option to include all resource types that are currently within their opt-in period for longer IDs.

', 'ModifyIdentityIdFormatRequest$PrincipalArn' => '

The ARN of the principal, which can be an IAM user, IAM role, or the root user. Specify all to modify the ID format for all IAM users, IAM roles, and the root user of the account.

', 'ModifyIdentityIdFormatRequest$Resource' => '

The type of resource: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | route-table | route-table-association | security-group | subnet | subnet-cidr-block-association | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway.

Alternatively, use the all-current option to include all resource types that are currently within their opt-in period for longer IDs.

', 'ModifyImageAttributeRequest$Attribute' => '

The name of the attribute to modify.

Valid values: description | imdsSupport | launchPermission

', 'ModifyImageAttributeRequest$Value' => '

The value of the attribute being modified. This parameter can be used only when the Attribute parameter is description or imdsSupport.

', 'ModifyInstanceAttributeRequest$Value' => '

A new value for the attribute. Use only with the kernel, ramdisk, userData, disableApiTermination, or instanceInitiatedShutdownBehavior attribute.

', 'ModifyInstanceCreditSpecificationRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyInstanceEventStartTimeRequest$InstanceEventId' => '

The ID of the event whose date and time you are modifying.

', 'ModifyInstanceEventWindowRequest$Name' => '

The name of the event window.

', 'ModifyInstanceMaintenanceOptionsResult$InstanceId' => '

The ID of the instance.

', 'ModifyInstanceMetadataOptionsResult$InstanceId' => '

The ID of the instance.

', 'ModifyInstancePlacementRequest$HostResourceGroupArn' => '

The ARN of the host resource group in which to place the instance. The instance must have a tenancy of host to specify this parameter.

', 'ModifyIpamPoolRequest$Description' => '

The description of the IPAM pool you want to modify.

', 'ModifyIpamRequest$Description' => '

The description of the IPAM you want to modify.

', 'ModifyIpamResourceCidrRequest$ResourceId' => '

The ID of the resource you want to modify.

', 'ModifyIpamResourceCidrRequest$ResourceCidr' => '

The CIDR of the resource you want to modify.

', 'ModifyIpamResourceCidrRequest$ResourceRegion' => '

The Amazon Web Services Region of the resource you want to modify.

', 'ModifyIpamResourceDiscoveryRequest$Description' => '

A resource discovery description.

', 'ModifyIpamScopeRequest$Description' => '

The description of the scope you want to modify.

', 'ModifyLaunchTemplateRequest$ClientToken' => '

Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

Constraint: Maximum 128 ASCII characters.

', 'ModifyLaunchTemplateRequest$DefaultVersion' => '

The version number of the launch template to set as the default version.

', 'ModifyLocalGatewayRouteRequest$DestinationCidrBlock' => '

The CIDR block used for destination matches. The value that you provide must match the CIDR of an existing route in the table.

', 'ModifyManagedPrefixListRequest$PrefixListName' => '

A name for the prefix list.

', 'ModifyReservedInstancesRequest$ClientToken' => '

A unique, case-sensitive token you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyReservedInstancesResult$ReservedInstancesModificationId' => '

The ID for the modification.

', 'ModifySnapshotTierResult$SnapshotId' => '

The ID of the snapshot.

', 'ModifySpotFleetRequestRequest$Context' => '

Reserved.

', 'ModifyTrafficMirrorFilterRuleRequest$DestinationCidrBlock' => '

The destination CIDR block to assign to the Traffic Mirror rule.

', 'ModifyTrafficMirrorFilterRuleRequest$SourceCidrBlock' => '

The source CIDR block to assign to the Traffic Mirror rule.

', 'ModifyTrafficMirrorFilterRuleRequest$Description' => '

The description to assign to the Traffic Mirror rule.

', 'ModifyTrafficMirrorSessionRequest$Description' => '

The description to assign to the Traffic Mirror session.

', 'ModifyTransitGatewayRequest$Description' => '

The description for the transit gateway.

', 'ModifyVerifiedAccessEndpointPolicyRequest$PolicyDocument' => '

The Verified Access policy document.

', 'ModifyVerifiedAccessEndpointPolicyRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyVerifiedAccessEndpointPolicyResult$PolicyDocument' => '

The Verified Access policy document.

', 'ModifyVerifiedAccessEndpointRequest$Description' => '

A description for the Verified Access endpoint.

', 'ModifyVerifiedAccessEndpointRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyVerifiedAccessGroupPolicyRequest$PolicyDocument' => '

The Verified Access policy document.

', 'ModifyVerifiedAccessGroupPolicyRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyVerifiedAccessGroupPolicyResult$PolicyDocument' => '

The Verified Access policy document.

', 'ModifyVerifiedAccessGroupRequest$Description' => '

A description for the Verified Access group.

', 'ModifyVerifiedAccessGroupRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyVerifiedAccessInstanceLoggingConfigurationRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyVerifiedAccessInstanceRequest$Description' => '

A description for the Verified Access instance.

', 'ModifyVerifiedAccessInstanceRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyVerifiedAccessTrustProviderDeviceOptions$PublicSigningKeyUrl' => '

The URL Amazon Web Services Verified Access will use to verify the authenticity of the device tokens.

', 'ModifyVerifiedAccessTrustProviderOidcOptions$Issuer' => '

The OIDC issuer.

', 'ModifyVerifiedAccessTrustProviderOidcOptions$AuthorizationEndpoint' => '

The OIDC authorization endpoint.

', 'ModifyVerifiedAccessTrustProviderOidcOptions$TokenEndpoint' => '

The OIDC token endpoint.

', 'ModifyVerifiedAccessTrustProviderOidcOptions$UserInfoEndpoint' => '

The OIDC user info endpoint.

', 'ModifyVerifiedAccessTrustProviderOidcOptions$ClientId' => '

The client identifier.

', 'ModifyVerifiedAccessTrustProviderOidcOptions$Scope' => '

OpenID Connect (OIDC) scopes are used by an application during authentication to authorize access to a user\'s details. Each scope returns a specific set of user attributes.

', 'ModifyVerifiedAccessTrustProviderRequest$Description' => '

A description for the Verified Access trust provider.

', 'ModifyVerifiedAccessTrustProviderRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyVpcEndpointConnectionNotificationRequest$ConnectionNotificationArn' => '

The ARN for the SNS topic for the notification.

', 'ModifyVpcEndpointRequest$PolicyDocument' => '

(Interface and gateway endpoints) A policy to attach to the endpoint that controls access to the service. The policy must be in valid JSON format.

', 'ModifyVpcEndpointServiceConfigurationRequest$PrivateDnsName' => '

(Interface endpoint configuration) The private DNS name to assign to the endpoint service.

', 'ModifyVpnConnectionOptionsRequest$LocalIpv4NetworkCidr' => '

The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection.

Default: 0.0.0.0/0

', 'ModifyVpnConnectionOptionsRequest$RemoteIpv4NetworkCidr' => '

The IPv4 CIDR on the Amazon Web Services side of the VPN connection.

Default: 0.0.0.0/0

', 'ModifyVpnConnectionOptionsRequest$LocalIpv6NetworkCidr' => '

The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection.

Default: ::/0

', 'ModifyVpnConnectionOptionsRequest$RemoteIpv6NetworkCidr' => '

The IPv6 CIDR on the Amazon Web Services side of the VPN connection.

Default: ::/0

', 'ModifyVpnTunnelCertificateRequest$VpnTunnelOutsideIpAddress' => '

The external IP address of the VPN tunnel.

', 'ModifyVpnTunnelOptionsRequest$VpnTunnelOutsideIpAddress' => '

The external IP address of the VPN tunnel.

', 'ModifyVpnTunnelOptionsSpecification$TunnelInsideCidr' => '

The range of inside IPv4 addresses for the tunnel. Any specified CIDR blocks must be unique across all VPN connections that use the same virtual private gateway.

Constraints: A size /30 CIDR block from the 169.254.0.0/16 range. The following CIDR blocks are reserved and cannot be used:

  • 169.254.0.0/30

  • 169.254.1.0/30

  • 169.254.2.0/30

  • 169.254.3.0/30

  • 169.254.4.0/30

  • 169.254.5.0/30

  • 169.254.169.252/30

', 'ModifyVpnTunnelOptionsSpecification$TunnelInsideIpv6Cidr' => '

The range of inside IPv6 addresses for the tunnel. Any specified CIDR blocks must be unique across all VPN connections that use the same transit gateway.

Constraints: A size /126 CIDR block from the local fd00::/8 range.

', 'ModifyVpnTunnelOptionsSpecification$DPDTimeoutAction' => '

The action to take after DPD timeout occurs. Specify restart to restart the IKE initiation. Specify clear to end the IKE session.

Valid Values: clear | none | restart

Default: clear

', 'ModifyVpnTunnelOptionsSpecification$StartupAction' => '

The action to take when the establishing the tunnel for the VPN connection. By default, your customer gateway device must initiate the IKE negotiation and bring up the tunnel. Specify start for Amazon Web Services to initiate the IKE negotiation.

Valid Values: add | start

Default: add

', 'MoveAddressToVpcRequest$PublicIp' => '

The Elastic IP address.

', 'MoveAddressToVpcResult$AllocationId' => '

The allocation ID for the Elastic IP address.

', 'MoveByoipCidrToIpamRequest$Cidr' => '

The BYOIP CIDR.

', 'MoveByoipCidrToIpamRequest$IpamPoolOwner' => '

The Amazon Web Services account ID of the owner of the IPAM pool.

', 'MovingAddressStatus$PublicIp' => '

The Elastic IP address.

', 'NatGateway$FailureCode' => '

If the NAT gateway could not be created, specifies the error code for the failure. (InsufficientFreeAddressesInSubnet | Gateway.NotAttached | InvalidAllocationID.NotFound | Resource.AlreadyAssociated | InternalError | InvalidSubnetID.NotFound)

', 'NatGateway$FailureMessage' => '

If the NAT gateway could not be created, specifies the error message for the failure, that corresponds to the error code.

  • For InsufficientFreeAddressesInSubnet: "Subnet has insufficient free addresses to create this NAT gateway"

  • For Gateway.NotAttached: "Network vpc-xxxxxxxx has no Internet gateway attached"

  • For InvalidAllocationID.NotFound: "Elastic IP address eipalloc-xxxxxxxx could not be associated with this NAT gateway"

  • For Resource.AlreadyAssociated: "Elastic IP address eipalloc-xxxxxxxx is already associated"

  • For InternalError: "Network interface eni-xxxxxxxx, created and used internally by this NAT gateway is in an invalid state. Please try again."

  • For InvalidSubnetID.NotFound: "The specified subnet subnet-xxxxxxxx does not exist or could not be found."

', 'NatGateway$NatGatewayId' => '

The ID of the NAT gateway.

', 'NatGateway$SubnetId' => '

The ID of the subnet in which the NAT gateway is located.

', 'NatGateway$VpcId' => '

The ID of the VPC in which the NAT gateway is located.

', 'NatGatewayAddress$AllocationId' => '

[Public NAT gateway only] The allocation ID of the Elastic IP address that\'s associated with the NAT gateway.

', 'NatGatewayAddress$NetworkInterfaceId' => '

The ID of the network interface associated with the NAT gateway.

', 'NatGatewayAddress$PrivateIp' => '

The private IP address associated with the NAT gateway.

', 'NatGatewayAddress$PublicIp' => '

[Public NAT gateway only] The Elastic IP address associated with the NAT gateway.

', 'NatGatewayAddress$AssociationId' => '

[Public NAT gateway only] The association ID of the Elastic IP address that\'s associated with the NAT gateway.

', 'NatGatewayAddress$FailureMessage' => '

The address failure message.

', 'NetworkAcl$NetworkAclId' => '

The ID of the network ACL.

', 'NetworkAcl$VpcId' => '

The ID of the VPC for the network ACL.

', 'NetworkAcl$OwnerId' => '

The ID of the Amazon Web Services account that owns the network ACL.

', 'NetworkAclAssociation$NetworkAclAssociationId' => '

The ID of the association between a network ACL and a subnet.

', 'NetworkAclAssociation$NetworkAclId' => '

The ID of the network ACL.

', 'NetworkAclAssociation$SubnetId' => '

The ID of the subnet.

', 'NetworkAclEntry$CidrBlock' => '

The IPv4 network range to allow or deny, in CIDR notation.

', 'NetworkAclEntry$Ipv6CidrBlock' => '

The IPv6 network range to allow or deny, in CIDR notation.

', 'NetworkAclEntry$Protocol' => '

The protocol number. A value of "-1" means all protocols.

', 'NetworkInsightsAccessScopeAnalysis$StatusMessage' => '

The status message.

', 'NetworkInsightsAccessScopeAnalysis$WarningMessage' => '

The warning message.

', 'NetworkInsightsAnalysis$StatusMessage' => '

The status message, if the status is failed.

', 'NetworkInsightsAnalysis$WarningMessage' => '

The warning message.

', 'NetworkInsightsPath$Source' => '

The ID of the source.

', 'NetworkInsightsPath$Destination' => '

The ID of the destination.

', 'NetworkInterface$AvailabilityZone' => '

The Availability Zone.

', 'NetworkInterface$Description' => '

A description.

', 'NetworkInterface$MacAddress' => '

The MAC address.

', 'NetworkInterface$NetworkInterfaceId' => '

The ID of the network interface.

', 'NetworkInterface$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'NetworkInterface$OwnerId' => '

The Amazon Web Services account ID of the owner of the network interface.

', 'NetworkInterface$PrivateDnsName' => '

The private DNS name.

', 'NetworkInterface$PrivateIpAddress' => '

The IPv4 address of the network interface within the subnet.

', 'NetworkInterface$RequesterId' => '

The alias or Amazon Web Services account ID of the principal or service that created the network interface.

', 'NetworkInterface$SubnetId' => '

The ID of the subnet.

', 'NetworkInterface$VpcId' => '

The ID of the VPC.

', 'NetworkInterface$Ipv6Address' => '

The IPv6 globally unique address associated with the network interface.

', 'NetworkInterfaceAssociation$AllocationId' => '

The allocation ID.

', 'NetworkInterfaceAssociation$AssociationId' => '

The association ID.

', 'NetworkInterfaceAssociation$IpOwnerId' => '

The ID of the Elastic IP address owner.

', 'NetworkInterfaceAssociation$PublicDnsName' => '

The public DNS name.

', 'NetworkInterfaceAssociation$PublicIp' => '

The address of the Elastic IP address bound to the network interface.

', 'NetworkInterfaceAssociation$CustomerOwnedIp' => '

The customer-owned IP address associated with the network interface.

', 'NetworkInterfaceAssociation$CarrierIp' => '

The carrier IP address associated with the network interface.

This option is only available when the network interface is in a subnet which is associated with a Wavelength Zone.

', 'NetworkInterfaceAttachment$AttachmentId' => '

The ID of the network interface attachment.

', 'NetworkInterfaceAttachment$InstanceId' => '

The ID of the instance.

', 'NetworkInterfaceAttachment$InstanceOwnerId' => '

The Amazon Web Services account ID of the owner of the instance.

', 'NetworkInterfaceIdSet$member' => NULL, 'NetworkInterfaceIpv6Address$Ipv6Address' => '

The IPv6 address.

', 'NetworkInterfacePermission$NetworkInterfacePermissionId' => '

The ID of the network interface permission.

', 'NetworkInterfacePermission$NetworkInterfaceId' => '

The ID of the network interface.

', 'NetworkInterfacePermission$AwsAccountId' => '

The Amazon Web Services account ID.

', 'NetworkInterfacePermission$AwsService' => '

The Amazon Web Service.

', 'NetworkInterfacePermissionState$StatusMessage' => '

A status message, if applicable.

', 'NetworkInterfacePrivateIpAddress$PrivateDnsName' => '

The private DNS name.

', 'NetworkInterfacePrivateIpAddress$PrivateIpAddress' => '

The private IPv4 address.

', 'NetworkNodesList$member' => NULL, 'NewDhcpConfiguration$Key' => NULL, 'OidcOptions$Issuer' => '

The OIDC issuer.

', 'OidcOptions$AuthorizationEndpoint' => '

The OIDC authorization endpoint.

', 'OidcOptions$TokenEndpoint' => '

The OIDC token endpoint.

', 'OidcOptions$UserInfoEndpoint' => '

The OIDC user info endpoint.

', 'OidcOptions$ClientId' => '

The client identifier.

', 'OidcOptions$Scope' => '

The OpenID Connect (OIDC) scope specified.

', 'OnDemandOptions$MaxTotalPrice' => '

The maximum amount per hour for On-Demand Instances that you\'re willing to pay.

If your fleet includes T instances that are configured as unlimited, and if their average CPU usage exceeds the baseline utilization, you will incur a charge for surplus credits. The maxTotalPrice does not account for surplus credits, and, if you use surplus credits, your final cost might be higher than what you specified for maxTotalPrice. For more information, see Surplus credits can incur charges in the EC2 User Guide.

', 'OnDemandOptionsRequest$MaxTotalPrice' => '

The maximum amount per hour for On-Demand Instances that you\'re willing to pay.

If your fleet includes T instances that are configured as unlimited, and if their average CPU usage exceeds the baseline utilization, you will incur a charge for surplus credits. The MaxTotalPrice does not account for surplus credits, and, if you use surplus credits, your final cost might be higher than what you specified for MaxTotalPrice. For more information, see Surplus credits can incur charges in the EC2 User Guide.

', 'OrganizationArnStringList$member' => NULL, 'OrganizationalUnitArnStringList$member' => NULL, 'OwnerStringList$member' => NULL, 'PathComponent$ServiceName' => '

The name of the VPC endpoint service.

', 'PciId$DeviceId' => '

The ID of the device.

', 'PciId$VendorId' => '

The ID of the vendor.

', 'PciId$SubsystemId' => '

The ID of the subsystem.

', 'PciId$SubsystemVendorId' => '

The ID of the vendor for the subsystem.

', 'PeeringAttachmentStatus$Code' => '

The status code.

', 'PeeringAttachmentStatus$Message' => '

The status message, if applicable.

', 'PeeringTgwInfo$TransitGatewayId' => '

The ID of the transit gateway.

', 'PeeringTgwInfo$CoreNetworkId' => '

The ID of the core network where the transit gateway peer is located.

', 'PeeringTgwInfo$OwnerId' => '

The ID of the Amazon Web Services account that owns the transit gateway.

', 'PeeringTgwInfo$Region' => '

The Region of the transit gateway.

', 'Phase1EncryptionAlgorithmsListValue$Value' => '

The value for the encryption algorithm.

', 'Phase1EncryptionAlgorithmsRequestListValue$Value' => '

The value for the encryption algorithm.

', 'Phase1IntegrityAlgorithmsListValue$Value' => '

The value for the integrity algorithm.

', 'Phase1IntegrityAlgorithmsRequestListValue$Value' => '

The value for the integrity algorithm.

', 'Phase2EncryptionAlgorithmsListValue$Value' => '

The encryption algorithm.

', 'Phase2EncryptionAlgorithmsRequestListValue$Value' => '

The encryption algorithm.

', 'Phase2IntegrityAlgorithmsListValue$Value' => '

The integrity algorithm.

', 'Phase2IntegrityAlgorithmsRequestListValue$Value' => '

The integrity algorithm.

', 'Placement$AvailabilityZone' => '

The Availability Zone of the instance.

If not specified, an Availability Zone will be automatically chosen for you based on the load balancing criteria for the Region.

This parameter is not supported for CreateFleet.

', 'Placement$Affinity' => '

The affinity setting for the instance on the Dedicated Host.

This parameter is not supported for CreateFleet or ImportInstance.

', 'Placement$HostId' => '

The ID of the Dedicated Host on which the instance resides.

This parameter is not supported for CreateFleet or ImportInstance.

', 'Placement$SpreadDomain' => '

Reserved for future use.

', 'Placement$HostResourceGroupArn' => '

The ARN of the host resource group in which to launch the instances.

If you specify this parameter, either omit the Tenancy parameter or set it to host.

This parameter is not supported for CreateFleet.

', 'PlacementGroup$GroupName' => '

The name of the placement group.

', 'PlacementGroup$GroupId' => '

The ID of the placement group.

', 'PlacementGroup$GroupArn' => '

The Amazon Resource Name (ARN) of the placement group.

', 'PoolCidrBlock$Cidr' => '

The CIDR block.

', 'PrefixList$PrefixListId' => '

The ID of the prefix.

', 'PrefixList$PrefixListName' => '

The name of the prefix.

', 'PrefixListAssociation$ResourceId' => '

The ID of the resource.

', 'PrefixListAssociation$ResourceOwner' => '

The owner of the resource.

', 'PrefixListEntry$Cidr' => '

The CIDR block.

', 'PrefixListEntry$Description' => '

The description.

', 'PrefixListId$Description' => '

A description for the security group rule that references this prefix list ID.

Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=;{}!$*

', 'PrefixListId$PrefixListId' => '

The ID of the prefix.

', 'PrefixListIdSet$member' => NULL, 'PrincipalIdFormat$Arn' => '

PrincipalIdFormatARN description

', 'PrivateDnsDetails$PrivateDnsName' => '

The private DNS name assigned to the VPC endpoint service.

', 'PrivateDnsNameConfiguration$Type' => '

The endpoint service verification type, for example TXT.

', 'PrivateDnsNameConfiguration$Value' => '

The value the service provider adds to the private DNS name domain record before verification.

', 'PrivateDnsNameConfiguration$Name' => '

The name of the record subdomain the service provider needs to create. The service provider adds the value text to the name.

', 'PrivateIpAddressSpecification$PrivateIpAddress' => '

The private IPv4 address.

', 'PrivateIpAddressStringList$member' => NULL, 'ProductCode$ProductCodeId' => '

The product code.

', 'ProductCodeStringList$member' => NULL, 'ProductDescriptionList$member' => NULL, 'PropagatingVgw$GatewayId' => '

The ID of the virtual private gateway.

', 'ProvisionByoipCidrRequest$Cidr' => '

The public IPv4 or IPv6 address range, in CIDR notation. The most specific IPv4 prefix that you can specify is /24. The most specific IPv6 prefix you can specify is /56. The address range cannot overlap with another address range that you\'ve brought to this or another Region.

', 'ProvisionByoipCidrRequest$Description' => '

A description for the address range and the address pool.

', 'ProvisionByoipCidrRequest$NetworkBorderGroup' => '

If you have Local Zones enabled, you can choose a network border group for Local Zones when you provision and advertise a BYOIPv4 CIDR. Choose the network border group carefully as the EIP and the Amazon Web Services resource it is associated with must reside in the same network border group.

You can provision BYOIP address ranges to and advertise them in the following Local Zone network border groups:

  • us-east-1-dfw-2

  • us-west-2-lax-1

  • us-west-2-phx-2

You cannot provision or advertise BYOIPv6 address ranges in Local Zones at this time.

', 'ProvisionIpamByoasnRequest$Asn' => '

A public 2-byte or 4-byte ASN.

', 'ProvisionIpamPoolCidrRequest$Cidr' => '

The CIDR you want to assign to the IPAM pool. Either "NetmaskLength" or "Cidr" is required. This value will be null if you specify "NetmaskLength" and will be filled in during the provisioning process.

', 'ProvisionIpamPoolCidrRequest$ClientToken' => '

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'ProvisionedBandwidth$Provisioned' => '

Reserved. If you need to sustain traffic greater than the documented limits, contact us through the Support Center.

', 'ProvisionedBandwidth$Requested' => '

Reserved. If you need to sustain traffic greater than the documented limits, contact us through the Support Center.

', 'ProvisionedBandwidth$Status' => '

Reserved. If you need to sustain traffic greater than the documented limits, contact us through the Support Center.

', 'PtrUpdateStatus$Value' => '

The value for the PTR record update.

', 'PtrUpdateStatus$Status' => '

The status of the PTR record update.

', 'PtrUpdateStatus$Reason' => '

The reason for the PTR record update.

', 'PublicIpStringList$member' => NULL, 'PublicIpv4Pool$PoolId' => '

The ID of the address pool.

', 'PublicIpv4Pool$Description' => '

A description of the address pool.

', 'PublicIpv4Pool$NetworkBorderGroup' => '

The name of the location from which the address pool is advertised. A network border group is a unique set of Availability Zones or Local Zones from where Amazon Web Services advertises public IP addresses.

', 'PublicIpv4PoolRange$FirstAddress' => '

The first IP address in the range.

', 'PublicIpv4PoolRange$LastAddress' => '

The last IP address in the range.

', 'Purchase$HourlyPrice' => '

The hourly price of the reservation per hour.

', 'Purchase$InstanceFamily' => '

The instance family on the Dedicated Host that the reservation can be associated with.

', 'Purchase$UpfrontPrice' => '

The upfront price of the reservation.

', 'PurchaseHostReservationRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'PurchaseHostReservationRequest$LimitPrice' => '

The specified limit is checked against the total upfront cost of the reservation (calculated as the offering\'s upfront cost multiplied by the host count). If the total upfront cost is greater than the specified price limit, the request fails. This is used to ensure that the purchase does not exceed the expected upfront cost of the purchase. At this time, the only supported currency is USD. For example, to indicate a limit price of USD 100, specify 100.00.

', 'PurchaseHostReservationResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'PurchaseHostReservationResult$TotalHourlyPrice' => '

The total hourly price of the reservation calculated per hour.

', 'PurchaseHostReservationResult$TotalUpfrontPrice' => '

The total amount charged to your account when you purchase the reservation.

', 'PurchaseRequest$PurchaseToken' => '

The purchase token.

', 'PurchaseReservedInstancesOfferingResult$ReservedInstancesId' => '

The IDs of the purchased Reserved Instances. If your purchase crosses into a discounted pricing tier, the final Reserved Instances IDs might change. For more information, see Crossing pricing tiers in the Amazon Elastic Compute Cloud User Guide.

', 'PurchaseScheduledInstancesRequest$ClientToken' => '

Unique, case-sensitive identifier that ensures the idempotency of the request. For more information, see Ensuring Idempotency.

', 'ReferencedSecurityGroup$GroupId' => '

The ID of the security group.

', 'ReferencedSecurityGroup$PeeringStatus' => '

The status of a VPC peering connection, if applicable.

', 'ReferencedSecurityGroup$UserId' => '

The Amazon Web Services account ID.

', 'ReferencedSecurityGroup$VpcId' => '

The ID of the VPC.

', 'ReferencedSecurityGroup$VpcPeeringConnectionId' => '

The ID of the VPC peering connection (if applicable).

', 'Region$Endpoint' => '

The Region service endpoint.

', 'Region$RegionName' => '

The name of the Region.

', 'Region$OptInStatus' => '

The Region opt-in status. The possible values are opt-in-not-required, opted-in, and not-opted-in.

', 'RegionNameStringList$member' => NULL, 'RegionNames$member' => NULL, 'RegisterImageRequest$ImageLocation' => '

The full path to your AMI manifest in Amazon S3 storage. The specified bucket must have the aws-exec-read canned access control list (ACL) to ensure that it can be accessed by Amazon EC2. For more information, see Canned ACLs in the Amazon S3 Service Developer Guide.

', 'RegisterImageRequest$Description' => '

A description for your AMI.

', 'RegisterImageRequest$Name' => '

A name for your AMI.

Constraints: 3-128 alphanumeric characters, parentheses (()), square brackets ([]), spaces ( ), periods (.), slashes (/), dashes (-), single quotes (\'), at-signs (@), or underscores(_)

', 'RegisterImageRequest$RootDeviceName' => '

The device name of the root device volume (for example, /dev/sda1).

', 'RegisterImageRequest$SriovNetSupport' => '

Set to simple to enable enhanced networking with the Intel 82599 Virtual Function interface for the AMI and any instances that you launch from the AMI.

There is no way to disable sriovNetSupport at this time.

This option is supported only for HVM AMIs. Specifying this option with a PV AMI can make instances launched from the AMI unreachable.

', 'RegisterImageRequest$VirtualizationType' => '

The type of virtualization (hvm | paravirtual).

Default: paravirtual

', 'RegisterImageResult$ImageId' => '

The ID of the newly registered AMI.

', 'RegisterTransitGatewayMulticastGroupMembersRequest$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'RegisterTransitGatewayMulticastGroupSourcesRequest$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'ReleaseAddressRequest$PublicIp' => '

Deprecated.

', 'ReleaseAddressRequest$NetworkBorderGroup' => '

The set of Availability Zones, Local Zones, or Wavelength Zones from which Amazon Web Services advertises IP addresses.

If you provide an incorrect network border group, you receive an InvalidAddress.NotFound error.

', 'ReleaseIpamPoolAllocationRequest$Cidr' => '

The CIDR of the allocation you want to release.

', 'RemoveIpamOperatingRegion$RegionName' => '

The name of the operating Region you want to remove.

', 'RemovePrefixListEntry$Cidr' => '

The CIDR block.

', 'ReplaceNetworkAclAssociationResult$NewAssociationId' => '

The ID of the new association.

', 'ReplaceNetworkAclEntryRequest$CidrBlock' => '

The IPv4 network range to allow or deny, in CIDR notation (for example 172.16.0.0/24).

', 'ReplaceNetworkAclEntryRequest$Ipv6CidrBlock' => '

The IPv6 network range to allow or deny, in CIDR notation (for example 2001:bd8:1234:1a00::/64).

', 'ReplaceNetworkAclEntryRequest$Protocol' => '

The protocol number. A value of "-1" means all protocols. If you specify "-1" or a protocol number other than "6" (TCP), "17" (UDP), or "1" (ICMP), traffic on all ports is allowed, regardless of any ports or ICMP types or codes that you specify. If you specify protocol "58" (ICMPv6) and specify an IPv4 CIDR block, traffic for all ICMP types and codes allowed, regardless of any that you specify. If you specify protocol "58" (ICMPv6) and specify an IPv6 CIDR block, you must specify an ICMP type and code.

', 'ReplaceRootVolumeTask$InstanceId' => '

The ID of the instance for which the root volume replacement task was created.

', 'ReplaceRootVolumeTask$StartTime' => '

The time the task was started.

', 'ReplaceRootVolumeTask$CompleteTime' => '

The time the task completed.

', 'ReplaceRouteRequest$DestinationCidrBlock' => '

The IPv4 CIDR address block used for the destination match. The value that you provide must match the CIDR of an existing route in the table.

', 'ReplaceRouteRequest$DestinationIpv6CidrBlock' => '

The IPv6 CIDR address block used for the destination match. The value that you provide must match the CIDR of an existing route in the table.

', 'ReplaceRouteTableAssociationResult$NewAssociationId' => '

The ID of the new association.

', 'ReplaceTransitGatewayRouteRequest$DestinationCidrBlock' => '

The CIDR range used for the destination match. Routing decisions are based on the most specific match.

', 'ReplaceVpnTunnelRequest$VpnTunnelOutsideIpAddress' => '

The external IP address of the VPN tunnel.

', 'ReportInstanceStatusRequest$Description' => '

Descriptive text about the health state of your instance.

', 'RequestIpamResourceTag$Key' => '

The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'RequestIpamResourceTag$Value' => '

The value for the tag.

', 'RequestSpotFleetResponse$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'RequestSpotInstancesRequest$AvailabilityZoneGroup' => '

The user-specified name for a logical grouping of requests.

When you specify an Availability Zone group in a Spot Instance request, all Spot Instances in the request are launched in the same Availability Zone. Instance proximity is maintained with this parameter, but the choice of Availability Zone is not. The group applies only to requests for Spot Instances of the same instance type. Any additional Spot Instance requests that are specified with the same Availability Zone group name are launched in that same Availability Zone, as long as at least one instance from the group is still active.

If there is no active instance running in the Availability Zone group that you specify for a new Spot Instance request (all instances are terminated, the request is expired, or the maximum price you specified falls below current Spot price), then Amazon EC2 launches the instance in any Availability Zone where the constraint can be met. Consequently, the subsequent set of Spot Instances could be placed in a different zone from the original request, even if you specified the same Availability Zone group.

Default: Instances are launched in any available Availability Zone.

', 'RequestSpotInstancesRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency in the Amazon EC2 User Guide for Linux Instances.

', 'RequestSpotInstancesRequest$LaunchGroup' => '

The instance launch group. Launch groups are Spot Instances that launch together and terminate together.

Default: Instances are launched and terminated individually

', 'RequestSpotInstancesRequest$SpotPrice' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'RequestSpotLaunchSpecification$AddressingType' => '

Deprecated.

', 'RequestSpotLaunchSpecificationSecurityGroupList$member' => NULL, 'Reservation$OwnerId' => '

The ID of the Amazon Web Services account that owns the reservation.

', 'Reservation$RequesterId' => '

The ID of the requester that launched the instances on your behalf (for example, Amazon Web Services Management Console or Auto Scaling).

', 'Reservation$ReservationId' => '

The ID of the reservation.

', 'ReservationFleetInstanceSpecification$AvailabilityZone' => '

The Availability Zone in which the Capacity Reservation Fleet reserves the capacity. A Capacity Reservation Fleet can\'t span Availability Zones. All instance type specifications that you specify for the Fleet must use the same Availability Zone.

', 'ReservationFleetInstanceSpecification$AvailabilityZoneId' => '

The ID of the Availability Zone in which the Capacity Reservation Fleet reserves the capacity. A Capacity Reservation Fleet can\'t span Availability Zones. All instance type specifications that you specify for the Fleet must use the same Availability Zone.

', 'ReservationValue$HourlyPrice' => '

The hourly rate of the reservation.

', 'ReservationValue$RemainingTotalValue' => '

The balance of the total value (the sum of remainingUpfrontValue + hourlyPrice * number of hours remaining).

', 'ReservationValue$RemainingUpfrontValue' => '

The remaining upfront cost of the reservation.

', 'ReservedInstanceReservationValue$ReservedInstanceId' => '

The ID of the Convertible Reserved Instance that you are exchanging.

', 'ReservedInstances$AvailabilityZone' => '

The Availability Zone in which the Reserved Instance can be used.

', 'ReservedInstances$ReservedInstancesId' => '

The ID of the Reserved Instance.

', 'ReservedInstancesConfiguration$AvailabilityZone' => '

The Availability Zone for the modified Reserved Instances.

', 'ReservedInstancesConfiguration$Platform' => '

The network platform of the modified Reserved Instances.

', 'ReservedInstancesId$ReservedInstancesId' => '

The ID of the Reserved Instance.

', 'ReservedInstancesListing$ClientToken' => '

A unique, case-sensitive key supplied by the client to ensure that the request is idempotent. For more information, see Ensuring Idempotency.

', 'ReservedInstancesListing$ReservedInstancesId' => '

The ID of the Reserved Instance.

', 'ReservedInstancesListing$ReservedInstancesListingId' => '

The ID of the Reserved Instance listing.

', 'ReservedInstancesListing$StatusMessage' => '

The reason for the current status of the Reserved Instance listing. The response can be blank.

', 'ReservedInstancesModification$ClientToken' => '

A unique, case-sensitive key supplied by the client to ensure that the request is idempotent. For more information, see Ensuring Idempotency.

', 'ReservedInstancesModification$ReservedInstancesModificationId' => '

A unique ID for the Reserved Instance modification.

', 'ReservedInstancesModification$Status' => '

The status of the Reserved Instances modification request.

', 'ReservedInstancesModification$StatusMessage' => '

The reason for the status.

', 'ReservedInstancesModificationResult$ReservedInstancesId' => '

The ID for the Reserved Instances that were created as part of the modification request. This field is only available when the modification is fulfilled.

', 'ReservedInstancesOffering$AvailabilityZone' => '

The Availability Zone in which the Reserved Instance can be used.

', 'ReservedInstancesOffering$ReservedInstancesOfferingId' => '

The ID of the Reserved Instance offering. This is the offering ID used in GetReservedInstancesExchangeQuote to confirm that an exchange can be made.

', 'ResetEbsDefaultKmsKeyIdResult$KmsKeyId' => '

The Amazon Resource Name (ARN) of the default KMS key for EBS encryption by default.

', 'ResetNetworkInterfaceAttributeRequest$SourceDestCheck' => '

The source/destination checking attribute. Resets the value to true.

', 'ResourceList$member' => NULL, 'ResponseError$Message' => '

The error message, if applicable.

', 'ResponseHostIdList$member' => NULL, 'ResponseHostIdSet$member' => NULL, 'ResponseLaunchTemplateData$KernelId' => '

The ID of the kernel, if applicable.

', 'ResponseLaunchTemplateData$ImageId' => '

The ID of the AMI or a Systems Manager parameter. The Systems Manager parameter will resolve to the ID of the AMI at instance launch.

The value depends on what you specified in the request. The possible values are:

  • If an AMI ID was specified in the request, then this is the AMI ID.

  • If a Systems Manager parameter was specified in the request, and ResolveAlias was configured as true, then this is the AMI ID that the parameter is mapped to in the Parameter Store.

  • If a Systems Manager parameter was specified in the request, and ResolveAlias was configured as false, then this is the parameter value.

For more information, see Use a Systems Manager parameter instead of an AMI ID in the Amazon Elastic Compute Cloud User Guide.

', 'ResponseLaunchTemplateData$KeyName' => '

The name of the key pair.

', 'ResponseLaunchTemplateData$RamDiskId' => '

The ID of the RAM disk, if applicable.

', 'RestorableByStringList$member' => NULL, 'RestoreAddressToClassicRequest$PublicIp' => '

The Elastic IP address.

', 'RestoreAddressToClassicResult$PublicIp' => '

The Elastic IP address.

', 'RestoreSnapshotFromRecycleBinResult$SnapshotId' => '

The ID of the snapshot.

', 'RestoreSnapshotFromRecycleBinResult$OutpostArn' => '

The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local snapshots on Outposts in the Amazon Elastic Compute Cloud User Guide.

', 'RestoreSnapshotFromRecycleBinResult$Description' => '

The description for the snapshot.

', 'RestoreSnapshotFromRecycleBinResult$OwnerId' => '

The ID of the Amazon Web Services account that owns the EBS snapshot.

', 'RestoreSnapshotFromRecycleBinResult$Progress' => '

The progress of the snapshot, as a percentage.

', 'RestoreSnapshotFromRecycleBinResult$VolumeId' => '

The ID of the volume that was used to create the snapshot.

', 'RestoreSnapshotTierResult$SnapshotId' => '

The ID of the snapshot.

', 'RevokeClientVpnIngressRequest$TargetNetworkCidr' => '

The IPv4 address range, in CIDR notation, of the network for which access is being removed.

', 'RevokeClientVpnIngressRequest$AccessGroupId' => '

The ID of the Active Directory group for which to revoke access.

', 'RevokeSecurityGroupEgressRequest$CidrIp' => '

Not supported. Use a set of IP permissions to specify the CIDR.

', 'RevokeSecurityGroupEgressRequest$IpProtocol' => '

Not supported. Use a set of IP permissions to specify the protocol name or number.

', 'RevokeSecurityGroupEgressRequest$SourceSecurityGroupName' => '

Not supported. Use a set of IP permissions to specify a destination security group.

', 'RevokeSecurityGroupEgressRequest$SourceSecurityGroupOwnerId' => '

Not supported. Use a set of IP permissions to specify a destination security group.

', 'RevokeSecurityGroupIngressRequest$CidrIp' => '

The CIDR IP address range. You can\'t specify this parameter when specifying a source security group.

', 'RevokeSecurityGroupIngressRequest$IpProtocol' => '

The IP protocol name (tcp, udp, icmp) or number (see Protocol Numbers). Use -1 to specify all.

', 'RevokeSecurityGroupIngressRequest$SourceSecurityGroupName' => '

[Default VPC] The name of the source security group. You can\'t specify this parameter in combination with the following parameters: the CIDR IP address range, the start of the port range, the IP protocol, and the end of the port range. The source security group must be in the same VPC. To revoke a specific rule for an IP protocol and port range, use a set of IP permissions instead.

', 'RevokeSecurityGroupIngressRequest$SourceSecurityGroupOwnerId' => '

Not supported.

', 'Route$DestinationCidrBlock' => '

The IPv4 CIDR block used for the destination match.

', 'Route$DestinationIpv6CidrBlock' => '

The IPv6 CIDR block used for the destination match.

', 'Route$DestinationPrefixListId' => '

The prefix of the Amazon Web Service.

', 'Route$EgressOnlyInternetGatewayId' => '

The ID of the egress-only internet gateway.

', 'Route$GatewayId' => '

The ID of a gateway attached to your VPC.

', 'Route$InstanceId' => '

The ID of a NAT instance in your VPC.

', 'Route$InstanceOwnerId' => '

The ID of Amazon Web Services account that owns the instance.

', 'Route$NatGatewayId' => '

The ID of a NAT gateway.

', 'Route$TransitGatewayId' => '

The ID of a transit gateway.

', 'Route$LocalGatewayId' => '

The ID of the local gateway.

', 'Route$NetworkInterfaceId' => '

The ID of the network interface.

', 'Route$VpcPeeringConnectionId' => '

The ID of a VPC peering connection.

', 'RouteTable$RouteTableId' => '

The ID of the route table.

', 'RouteTable$VpcId' => '

The ID of the VPC.

', 'RouteTable$OwnerId' => '

The ID of the Amazon Web Services account that owns the route table.

', 'RouteTableAssociation$RouteTableAssociationId' => '

The ID of the association.

', 'RouteTableAssociation$RouteTableId' => '

The ID of the route table.

', 'RouteTableAssociation$SubnetId' => '

The ID of the subnet. A subnet ID is not returned for an implicit association.

', 'RouteTableAssociation$GatewayId' => '

The ID of the internet gateway or virtual private gateway.

', 'RouteTableAssociationState$StatusMessage' => '

The status message, if applicable.

', 'RuleGroupTypePair$RuleGroupType' => '

The rule group type. The possible values are Domain List and Suricata.

', 'RuleOption$Keyword' => '

The Suricata keyword.

', 'RunInstancesRequest$AdditionalInfo' => '

Reserved.

', 'RunInstancesRequest$ClientToken' => '

Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.

For more information, see Ensuring Idempotency.

Constraints: Maximum 64 ASCII characters

', 'RunInstancesRequest$PrivateIpAddress' => '

The primary IPv4 address. You must specify a value from the IPv4 address range of the subnet.

Only one private IP address can be designated as primary. You can\'t specify this option if you\'ve specified the option to designate a private IP address as the primary IP address in a network interface specification. You cannot specify this option if you\'re launching more than one instance in the request.

You cannot specify this option and the network interfaces option in the same request.

', 'RunScheduledInstancesRequest$ClientToken' => '

Unique, case-sensitive identifier that ensures the idempotency of the request. For more information, see Ensuring Idempotency.

', 'S3ObjectTag$Key' => '

The key of the tag.

Constraints: Tag keys are case-sensitive and can be up to 128 Unicode characters in length. May not begin with aws:.

', 'S3ObjectTag$Value' => '

The value of the tag.

Constraints: Tag values are case-sensitive and can be up to 256 Unicode characters in length.

', 'S3Storage$AWSAccessKeyId' => '

The access key ID of the owner of the bucket. Before you specify a value for your access key ID, review and follow the guidance in Best Practices for Amazon Web Services accounts in the Account ManagementReference Guide.

', 'S3Storage$Bucket' => '

The bucket in which to store the AMI. You can specify a bucket that you already own or a new bucket that Amazon EC2 creates on your behalf. If you specify a bucket that belongs to someone else, Amazon EC2 returns an error.

', 'S3Storage$Prefix' => '

The beginning of the file name of the AMI.

', 'ScheduledInstance$AvailabilityZone' => '

The Availability Zone.

', 'ScheduledInstance$HourlyPrice' => '

The hourly price for a single instance.

', 'ScheduledInstance$InstanceType' => '

The instance type.

', 'ScheduledInstance$NetworkPlatform' => '

The network platform.

', 'ScheduledInstance$Platform' => '

The platform (Linux/UNIX or Windows).

', 'ScheduledInstance$ScheduledInstanceId' => '

The Scheduled Instance ID.

', 'ScheduledInstanceAvailability$AvailabilityZone' => '

The Availability Zone.

', 'ScheduledInstanceAvailability$HourlyPrice' => '

The hourly price for a single instance.

', 'ScheduledInstanceAvailability$InstanceType' => '

The instance type. You can specify one of the C3, C4, M4, or R3 instance types.

', 'ScheduledInstanceAvailability$NetworkPlatform' => '

The network platform.

', 'ScheduledInstanceAvailability$Platform' => '

The platform (Linux/UNIX or Windows).

', 'ScheduledInstanceAvailability$PurchaseToken' => '

The purchase token. This token expires in two hours.

', 'ScheduledInstanceRecurrence$Frequency' => '

The frequency (Daily, Weekly, or Monthly).

', 'ScheduledInstanceRecurrence$OccurrenceUnit' => '

The unit for occurrenceDaySet (DayOfWeek or DayOfMonth).

', 'ScheduledInstanceRecurrenceRequest$Frequency' => '

The frequency (Daily, Weekly, or Monthly).

', 'ScheduledInstanceRecurrenceRequest$OccurrenceUnit' => '

The unit for OccurrenceDays (DayOfWeek or DayOfMonth). This value is required for a monthly schedule. You can\'t specify DayOfWeek with a weekly schedule. You can\'t specify this value with a daily schedule.

', 'ScheduledInstancesBlockDeviceMapping$DeviceName' => '

The device name (for example, /dev/sdh or xvdh).

', 'ScheduledInstancesBlockDeviceMapping$NoDevice' => '

To omit the device from the block device mapping, specify an empty string.

', 'ScheduledInstancesBlockDeviceMapping$VirtualName' => '

The virtual device name (ephemeralN). Instance store volumes are numbered starting from 0. An instance type with two available instance store volumes can specify mappings for ephemeral0 and ephemeral1. The number of available instance store volumes depends on the instance type. After you connect to the instance, you must mount the volume.

Constraints: For M3 instances, you must specify instance store volumes in the block device mapping for the instance. When you launch an M3 instance, we ignore any instance store volumes specified in the block device mapping for the AMI.

', 'ScheduledInstancesEbs$VolumeType' => '

The volume type.

Default: gp2

', 'ScheduledInstancesIamInstanceProfile$Arn' => '

The Amazon Resource Name (ARN).

', 'ScheduledInstancesIamInstanceProfile$Name' => '

The name.

', 'ScheduledInstancesLaunchSpecification$InstanceType' => '

The instance type.

', 'ScheduledInstancesLaunchSpecification$UserData' => '

The base64-encoded MIME user data.

', 'ScheduledInstancesNetworkInterface$Description' => '

The description.

', 'ScheduledInstancesNetworkInterface$PrivateIpAddress' => '

The IPv4 address of the network interface within the subnet.

', 'ScheduledInstancesPlacement$AvailabilityZone' => '

The Availability Zone.

', 'ScheduledInstancesPrivateIpAddressConfig$PrivateIpAddress' => '

The IPv4 address.

', 'SearchLocalGatewayRoutesRequest$NextToken' => '

The token for the next page of results.

', 'SearchLocalGatewayRoutesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'SearchTransitGatewayMulticastGroupsRequest$NextToken' => '

The token for the next page of results.

', 'SearchTransitGatewayMulticastGroupsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'SecurityGroup$Description' => '

A description of the security group.

', 'SecurityGroup$GroupName' => '

The name of the security group.

', 'SecurityGroup$OwnerId' => '

The Amazon Web Services account ID of the owner of the security group.

', 'SecurityGroup$GroupId' => '

The ID of the security group.

', 'SecurityGroup$VpcId' => '

The ID of the VPC for the security group.

', 'SecurityGroupForVpc$Description' => '

The security group\'s description.

', 'SecurityGroupForVpc$GroupName' => '

The security group name.

', 'SecurityGroupForVpc$OwnerId' => '

The security group owner ID.

', 'SecurityGroupForVpc$GroupId' => '

The security group ID.

', 'SecurityGroupForVpc$PrimaryVpcId' => '

The VPC ID in which the security group was created.

', 'SecurityGroupIdentifier$GroupId' => '

The ID of the security group.

', 'SecurityGroupIdentifier$GroupName' => '

The name of the security group.

', 'SecurityGroupReference$GroupId' => '

The ID of your security group.

', 'SecurityGroupReference$ReferencingVpcId' => '

The ID of the VPC with the referencing security group.

', 'SecurityGroupReference$VpcPeeringConnectionId' => '

The ID of the VPC peering connection (if applicable). For more information about security group referencing for peering connections, see Update your security groups to reference peer security groups in the VPC Peering Guide.

', 'SecurityGroupReference$TransitGatewayId' => '

The ID of the transit gateway (if applicable). For more information about security group referencing for transit gateways, see Create a transit gateway attachment to a VPC in the Amazon Web Services Transit Gateway Guide.

', 'SecurityGroupRule$GroupOwnerId' => '

The ID of the Amazon Web Services account that owns the security group.

', 'SecurityGroupRule$IpProtocol' => '

The IP protocol name (tcp, udp, icmp, icmpv6) or number (see Protocol Numbers).

Use -1 to specify all protocols.

', 'SecurityGroupRule$CidrIpv4' => '

The IPv4 CIDR range.

', 'SecurityGroupRule$CidrIpv6' => '

The IPv6 CIDR range.

', 'SecurityGroupRule$Description' => '

The security group rule description.

', 'SecurityGroupRuleDescription$SecurityGroupRuleId' => '

The ID of the security group rule.

', 'SecurityGroupRuleDescription$Description' => '

The description of the security group rule.

', 'SecurityGroupRuleIdList$member' => NULL, 'SecurityGroupRuleRequest$IpProtocol' => '

The IP protocol name (tcp, udp, icmp, icmpv6) or number (see Protocol Numbers).

Use -1 to specify all protocols.

', 'SecurityGroupRuleRequest$CidrIpv4' => '

The IPv4 CIDR range. To specify a single IPv4 address, use the /32 prefix length.

', 'SecurityGroupRuleRequest$CidrIpv6' => '

The IPv6 CIDR range. To specify a single IPv6 address, use the /128 prefix length.

', 'SecurityGroupRuleRequest$Description' => '

The description of the security group rule.

', 'ServiceConfiguration$ServiceId' => '

The ID of the service.

', 'ServiceConfiguration$ServiceName' => '

The name of the service.

', 'ServiceConfiguration$PrivateDnsName' => '

The private DNS name for the service.

', 'ServiceDetail$ServiceName' => '

The name of the service.

', 'ServiceDetail$ServiceId' => '

The ID of the endpoint service.

', 'ServiceDetail$Owner' => '

The Amazon Web Services account ID of the service owner.

', 'ServiceDetail$PrivateDnsName' => '

The private DNS name for the service.

', 'Snapshot$DataEncryptionKeyId' => '

The data encryption key identifier for the snapshot. This value is a unique identifier that corresponds to the data encryption key that was used to encrypt the original volume or snapshot copy. Because data encryption keys are inherited by volumes created from snapshots, and vice versa, if snapshots share the same data encryption key identifier, then they belong to the same volume/snapshot lineage. This parameter is only returned by DescribeSnapshots.

', 'Snapshot$Description' => '

The description for the snapshot.

', 'Snapshot$KmsKeyId' => '

The Amazon Resource Name (ARN) of the Key Management Service (KMS) KMS key that was used to protect the volume encryption key for the parent volume.

', 'Snapshot$OwnerId' => '

The ID of the Amazon Web Services account that owns the EBS snapshot.

', 'Snapshot$Progress' => '

The progress of the snapshot, as a percentage.

', 'Snapshot$SnapshotId' => '

The ID of the snapshot. Each snapshot receives a unique identifier when it is created.

', 'Snapshot$StateMessage' => '

Encrypted Amazon EBS snapshots are copied asynchronously. If a snapshot copy operation fails (for example, if the proper Key Management Service (KMS) permissions are not obtained) this field displays error state details to help you diagnose why the error occurred. This parameter is only returned by DescribeSnapshots.

', 'Snapshot$VolumeId' => '

The ID of the volume that was used to create the snapshot. Snapshots created by the CopySnapshot action have an arbitrary volume ID that should not be used for any purpose.

', 'Snapshot$OwnerAlias' => '

The Amazon Web Services owner alias, from an Amazon-maintained list (amazon). This is not the user-configured Amazon Web Services account alias set using the IAM console.

', 'Snapshot$OutpostArn' => '

The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local snapshots on Outposts in the Amazon Elastic Compute Cloud User Guide.

', 'SnapshotDetail$Description' => '

A description for the snapshot.

', 'SnapshotDetail$DeviceName' => '

The block device mapping for the snapshot.

', 'SnapshotDetail$Format' => '

The format of the disk image from which the snapshot is created.

', 'SnapshotDetail$Progress' => '

The percentage of progress for the task.

', 'SnapshotDetail$SnapshotId' => '

The snapshot ID of the disk being imported.

', 'SnapshotDetail$Status' => '

A brief status of the snapshot creation.

', 'SnapshotDetail$StatusMessage' => '

A detailed status message for the snapshot creation.

', 'SnapshotDiskContainer$Description' => '

The description of the disk image being imported.

', 'SnapshotDiskContainer$Format' => '

The format of the disk image being imported.

Valid values: VHD | VMDK | RAW

', 'SnapshotInfo$Description' => '

Description specified by the CreateSnapshotRequest that has been applied to all snapshots.

', 'SnapshotInfo$VolumeId' => '

Source volume from which this snapshot was created.

', 'SnapshotInfo$Progress' => '

Progress this snapshot has made towards completing.

', 'SnapshotInfo$OwnerId' => '

Account id used when creating this snapshot.

', 'SnapshotInfo$SnapshotId' => '

Snapshot id that can be used to describe this snapshot.

', 'SnapshotInfo$OutpostArn' => '

The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local snapshots on Outposts in the Amazon Elastic Compute Cloud User Guide.

', 'SnapshotRecycleBinInfo$SnapshotId' => '

The ID of the snapshot.

', 'SnapshotRecycleBinInfo$Description' => '

The description for the snapshot.

', 'SnapshotRecycleBinInfo$VolumeId' => '

The ID of the volume from which the snapshot was created.

', 'SnapshotTaskDetail$Description' => '

The description of the snapshot.

', 'SnapshotTaskDetail$Format' => '

The format of the disk image from which the snapshot is created.

', 'SnapshotTaskDetail$KmsKeyId' => '

The identifier for the KMS key that was used to create the encrypted snapshot.

', 'SnapshotTaskDetail$Progress' => '

The percentage of completion for the import snapshot task.

', 'SnapshotTaskDetail$SnapshotId' => '

The snapshot ID of the disk being imported.

', 'SnapshotTaskDetail$Status' => '

A brief status for the import snapshot task.

', 'SnapshotTaskDetail$StatusMessage' => '

A detailed status message for the import snapshot task.

', 'SnapshotTierStatus$OwnerId' => '

The ID of the Amazon Web Services account that owns the snapshot.

', 'SnapshotTierStatus$LastTieringOperationStatusDetail' => '

A message describing the status of the last archive or restore process.

', 'SpotDatafeedSubscription$Bucket' => '

The name of the Amazon S3 bucket where the Spot Instance data feed is located.

', 'SpotDatafeedSubscription$OwnerId' => '

The Amazon Web Services account ID of the account.

', 'SpotDatafeedSubscription$Prefix' => '

The prefix for the data feed files.

', 'SpotFleetLaunchSpecification$AddressingType' => '

Deprecated.

', 'SpotFleetLaunchSpecification$KernelId' => '

The ID of the kernel.

', 'SpotFleetLaunchSpecification$RamdiskId' => '

The ID of the RAM disk. Some kernels require additional drivers at launch. Check the kernel requirements for information about whether you need to specify a RAM disk. To find kernel requirements, refer to the Amazon Web Services Resource Center and search for the kernel ID.

', 'SpotFleetLaunchSpecification$SpotPrice' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'SpotFleetRequestConfig$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'SpotFleetRequestConfigData$ClientToken' => '

A unique, case-sensitive identifier that you provide to ensure the idempotency of your listings. This helps to avoid duplicate listings. For more information, see Ensuring Idempotency.

', 'SpotFleetRequestConfigData$IamFleetRole' => '

The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that grants the Spot Fleet the permission to request, launch, terminate, and tag instances on your behalf. For more information, see Spot Fleet prerequisites in the Amazon EC2 User Guide. Spot Fleet can terminate Spot Instances on your behalf when you cancel its Spot Fleet request using CancelSpotFleetRequests or when the Spot Fleet request expires, if you set TerminateInstancesWithExpiration.

', 'SpotFleetRequestConfigData$SpotPrice' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'SpotFleetRequestConfigData$OnDemandMaxTotalPrice' => '

The maximum amount per hour for On-Demand Instances that you\'re willing to pay. You can use the onDemandMaxTotalPrice parameter, the spotMaxTotalPrice parameter, or both parameters to ensure that your fleet cost does not exceed your budget. If you set a maximum price per hour for the On-Demand Instances and Spot Instances in your request, Spot Fleet will launch instances until it reaches the maximum amount you\'re willing to pay. When the maximum amount you\'re willing to pay is reached, the fleet stops launching instances even if it hasn’t met the target capacity.

If your fleet includes T instances that are configured as unlimited, and if their average CPU usage exceeds the baseline utilization, you will incur a charge for surplus credits. The onDemandMaxTotalPrice does not account for surplus credits, and, if you use surplus credits, your final cost might be higher than what you specified for onDemandMaxTotalPrice. For more information, see Surplus credits can incur charges in the EC2 User Guide.

', 'SpotFleetRequestConfigData$SpotMaxTotalPrice' => '

The maximum amount per hour for Spot Instances that you\'re willing to pay. You can use the spotMaxTotalPrice parameter, the onDemandMaxTotalPrice parameter, or both parameters to ensure that your fleet cost does not exceed your budget. If you set a maximum price per hour for the On-Demand Instances and Spot Instances in your request, Spot Fleet will launch instances until it reaches the maximum amount you\'re willing to pay. When the maximum amount you\'re willing to pay is reached, the fleet stops launching instances even if it hasn’t met the target capacity.

If your fleet includes T instances that are configured as unlimited, and if their average CPU usage exceeds the baseline utilization, you will incur a charge for surplus credits. The spotMaxTotalPrice does not account for surplus credits, and, if you use surplus credits, your final cost might be higher than what you specified for spotMaxTotalPrice. For more information, see Surplus credits can incur charges in the EC2 User Guide.

', 'SpotFleetRequestConfigData$Context' => '

Reserved.

', 'SpotInstanceRequest$ActualBlockHourlyPrice' => '

Deprecated.

', 'SpotInstanceRequest$AvailabilityZoneGroup' => '

The Availability Zone group. If you specify the same Availability Zone group for all Spot Instance requests, all Spot Instances are launched in the same Availability Zone.

', 'SpotInstanceRequest$LaunchGroup' => '

The instance launch group. Launch groups are Spot Instances that launch together and terminate together.

', 'SpotInstanceRequest$LaunchedAvailabilityZone' => '

The Availability Zone in which the request is launched.

', 'SpotInstanceRequest$SpotInstanceRequestId' => '

The ID of the Spot Instance request.

', 'SpotInstanceRequest$SpotPrice' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'SpotInstanceStateFault$Code' => '

The reason code for the Spot Instance state change.

', 'SpotInstanceStateFault$Message' => '

The message for the Spot Instance state change.

', 'SpotInstanceStatus$Code' => '

The status code. For a list of status codes, see Spot request status codes in the Amazon EC2 User Guide for Linux Instances.

', 'SpotInstanceStatus$Message' => '

The description for the status code.

', 'SpotMarketOptions$MaxPrice' => '

The maximum hourly price that you\'re willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not specify this parameter.

', 'SpotOptions$MaxTotalPrice' => '

The maximum amount per hour for Spot Instances that you\'re willing to pay. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not specify this parameter.

If your fleet includes T instances that are configured as unlimited, and if their average CPU usage exceeds the baseline utilization, you will incur a charge for surplus credits. The maxTotalPrice does not account for surplus credits, and, if you use surplus credits, your final cost might be higher than what you specified for maxTotalPrice. For more information, see Surplus credits can incur charges in the EC2 User Guide.

', 'SpotOptionsRequest$MaxTotalPrice' => '

The maximum amount per hour for Spot Instances that you\'re willing to pay. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not specify this parameter.

If your fleet includes T instances that are configured as unlimited, and if their average CPU usage exceeds the baseline utilization, you will incur a charge for surplus credits. The MaxTotalPrice does not account for surplus credits, and, if you use surplus credits, your final cost might be higher than what you specified for MaxTotalPrice. For more information, see Surplus credits can incur charges in the EC2 User Guide.

', 'SpotPlacement$AvailabilityZone' => '

The Availability Zone.

[Spot Fleet only] To specify multiple Availability Zones, separate them using commas; for example, "us-west-2a, us-west-2b".

', 'SpotPlacementScore$Region' => '

The Region.

', 'SpotPlacementScore$AvailabilityZoneId' => '

The Availability Zone.

', 'SpotPrice$AvailabilityZone' => '

The Availability Zone.

', 'SpotPrice$SpotPrice' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'StaleIpPermission$IpProtocol' => '

The IP protocol name (for tcp, udp, and icmp) or number (see Protocol Numbers).

', 'StaleSecurityGroup$Description' => '

The description of the security group.

', 'StaleSecurityGroup$GroupId' => '

The ID of the security group.

', 'StaleSecurityGroup$GroupName' => '

The name of the security group.

', 'StaleSecurityGroup$VpcId' => '

The ID of the VPC for the security group.

', 'StartInstancesRequest$AdditionalInfo' => '

Reserved.

', 'StartNetworkInsightsAccessScopeAnalysisRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'StartNetworkInsightsAnalysisRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'StateReason$Code' => '

The reason code for the state change.

', 'StateReason$Message' => '

The message for the state change.

  • Server.InsufficientInstanceCapacity: There was insufficient capacity available to satisfy the launch request.

  • Server.InternalError: An internal error caused the instance to terminate during launch.

  • Server.ScheduledStop: The instance was stopped due to a scheduled retirement.

  • Server.SpotInstanceShutdown: The instance was stopped because the number of Spot requests with a maximum price equal to or higher than the Spot price exceeded available capacity or because of an increase in the Spot price.

  • Server.SpotInstanceTermination: The instance was terminated because the number of Spot requests with a maximum price equal to or higher than the Spot price exceeded available capacity or because of an increase in the Spot price.

  • Client.InstanceInitiatedShutdown: The instance was shut down from the operating system of the instance.

  • Client.InstanceTerminated: The instance was terminated or rebooted during AMI creation.

  • Client.InternalError: A client error caused the instance to terminate during launch.

  • Client.InvalidSnapshot.NotFound: The specified snapshot was not found.

  • Client.UserInitiatedHibernate: Hibernation was initiated on the instance.

  • Client.UserInitiatedShutdown: The instance was shut down using the Amazon EC2 API.

  • Client.VolumeLimitExceeded: The limit on the number of EBS volumes or total storage was exceeded. Decrease usage or request an increase in your account limits.

', 'StorageLocation$Bucket' => '

The name of the S3 bucket.

', 'StorageLocation$Key' => '

The key.

', 'StoreImageTaskResult$AmiId' => '

The ID of the AMI that is being stored.

', 'StoreImageTaskResult$Bucket' => '

The name of the Amazon S3 bucket that contains the stored AMI object.

', 'StoreImageTaskResult$S3objectKey' => '

The name of the stored AMI object in the bucket.

', 'StoreImageTaskResult$StoreTaskState' => '

The state of the store task (InProgress, Completed, or Failed).

', 'StoreImageTaskResult$StoreTaskFailureReason' => '

If the tasks fails, the reason for the failure is returned. If the task succeeds, null is returned.

', 'StringList$member' => NULL, 'Subnet$AvailabilityZone' => '

The Availability Zone of the subnet.

', 'Subnet$AvailabilityZoneId' => '

The AZ ID of the subnet.

', 'Subnet$CidrBlock' => '

The IPv4 CIDR block assigned to the subnet.

', 'Subnet$SubnetId' => '

The ID of the subnet.

', 'Subnet$VpcId' => '

The ID of the VPC the subnet is in.

', 'Subnet$OwnerId' => '

The ID of the Amazon Web Services account that owns the subnet.

', 'Subnet$SubnetArn' => '

The Amazon Resource Name (ARN) of the subnet.

', 'Subnet$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'SubnetAssociation$SubnetId' => '

The ID of the subnet.

', 'SubnetCidrBlockState$StatusMessage' => '

A message about the status of the CIDR block, if applicable.

', 'SubnetCidrReservation$Cidr' => '

The CIDR that has been reserved.

', 'SubnetCidrReservation$OwnerId' => '

The ID of the account that owns the subnet CIDR reservation.

', 'SubnetCidrReservation$Description' => '

The description assigned to the subnet CIDR reservation.

', 'SubnetConfiguration$Ipv4' => '

The IPv4 address to assign to the endpoint network interface in the subnet. You must provide an IPv4 address if the VPC endpoint supports IPv4.

If you specify an IPv4 address when modifying a VPC endpoint, we replace the existing endpoint network interface with a new endpoint network interface with this IP address. This process temporarily disconnects the subnet and the VPC endpoint.

', 'SubnetConfiguration$Ipv6' => '

The IPv6 address to assign to the endpoint network interface in the subnet. You must provide an IPv6 address if the VPC endpoint supports IPv6.

If you specify an IPv6 address when modifying a VPC endpoint, we replace the existing endpoint network interface with a new endpoint network interface with this IP address. This process temporarily disconnects the subnet and the VPC endpoint.

', 'SubnetIpv6CidrBlockAssociation$Ipv6CidrBlock' => '

The IPv6 CIDR block.

', 'Subscription$Source' => '

The Region or Availability Zone that\'s the source for the subscription. For example, us-east-1.

', 'Subscription$Destination' => '

The Region or Availability Zone that\'s the target for the subscription. For example, eu-west-1.

', 'SuccessfulInstanceCreditSpecificationItem$InstanceId' => '

The ID of the instance.

', 'SuccessfulQueuedPurchaseDeletion$ReservedInstancesId' => '

The ID of the Reserved Instance.

', 'Tag$Key' => '

The key of the tag.

Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with aws:.

', 'Tag$Value' => '

The value of the tag.

Constraints: Tag values are case-sensitive and accept a maximum of 256 Unicode characters.

', 'TagDescription$Key' => '

The tag key.

', 'TagDescription$ResourceId' => '

The ID of the resource.

', 'TagDescription$Value' => '

The tag value.

', 'TargetConfiguration$OfferingId' => '

The ID of the Convertible Reserved Instance offering.

', 'TargetGroup$Arn' => '

The Amazon Resource Name (ARN) of the target group.

', 'TargetNetwork$AssociationId' => '

The ID of the association.

', 'TargetNetwork$VpcId' => '

The ID of the VPC in which the target network (subnet) is located.

', 'TargetNetwork$TargetNetworkId' => '

The ID of the subnet specified as the target network.

', 'TargetNetwork$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint with which the target network is associated.

', 'TerminateClientVpnConnectionsRequest$ConnectionId' => '

The ID of the client connection to be terminated.

', 'TerminateClientVpnConnectionsRequest$Username' => '

The name of the user who initiated the connection. Use this option to terminate all active connections for the specified user. This option can only be used if the user has established up to five connections.

', 'TerminateClientVpnConnectionsResult$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'TerminateClientVpnConnectionsResult$Username' => '

The user who established the terminated client connections.

', 'TerminateConnectionStatus$ConnectionId' => '

The ID of the client connection.

', 'TrafficMirrorFilter$TrafficMirrorFilterId' => '

The ID of the Traffic Mirror filter.

', 'TrafficMirrorFilter$Description' => '

The description of the Traffic Mirror filter.

', 'TrafficMirrorFilterRule$TrafficMirrorFilterRuleId' => '

The ID of the Traffic Mirror rule.

', 'TrafficMirrorFilterRule$TrafficMirrorFilterId' => '

The ID of the Traffic Mirror filter that the rule is associated with.

', 'TrafficMirrorFilterRule$DestinationCidrBlock' => '

The destination CIDR block assigned to the Traffic Mirror rule.

', 'TrafficMirrorFilterRule$SourceCidrBlock' => '

The source CIDR block assigned to the Traffic Mirror rule.

', 'TrafficMirrorFilterRule$Description' => '

The description of the Traffic Mirror rule.

', 'TrafficMirrorSession$TrafficMirrorSessionId' => '

The ID for the Traffic Mirror session.

', 'TrafficMirrorSession$TrafficMirrorTargetId' => '

The ID of the Traffic Mirror target.

', 'TrafficMirrorSession$TrafficMirrorFilterId' => '

The ID of the Traffic Mirror filter.

', 'TrafficMirrorSession$NetworkInterfaceId' => '

The ID of the Traffic Mirror session\'s network interface.

', 'TrafficMirrorSession$OwnerId' => '

The ID of the account that owns the Traffic Mirror session.

', 'TrafficMirrorSession$Description' => '

The description of the Traffic Mirror session.

', 'TrafficMirrorTarget$TrafficMirrorTargetId' => '

The ID of the Traffic Mirror target.

', 'TrafficMirrorTarget$NetworkInterfaceId' => '

The network interface ID that is attached to the target.

', 'TrafficMirrorTarget$NetworkLoadBalancerArn' => '

The Amazon Resource Name (ARN) of the Network Load Balancer.

', 'TrafficMirrorTarget$Description' => '

Information about the Traffic Mirror target.

', 'TrafficMirrorTarget$OwnerId' => '

The ID of the account that owns the Traffic Mirror target.

', 'TrafficMirrorTarget$GatewayLoadBalancerEndpointId' => '

The ID of the Gateway Load Balancer endpoint.

', 'TransitGateway$TransitGatewayId' => '

The ID of the transit gateway.

', 'TransitGateway$TransitGatewayArn' => '

The Amazon Resource Name (ARN) of the transit gateway.

', 'TransitGateway$OwnerId' => '

The ID of the Amazon Web Services account that owns the transit gateway.

', 'TransitGateway$Description' => '

The description of the transit gateway.

', 'TransitGatewayAssociation$ResourceId' => '

The ID of the resource.

', 'TransitGatewayAttachment$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayAttachment$TransitGatewayId' => '

The ID of the transit gateway.

', 'TransitGatewayAttachment$TransitGatewayOwnerId' => '

The ID of the Amazon Web Services account that owns the transit gateway.

', 'TransitGatewayAttachment$ResourceOwnerId' => '

The ID of the Amazon Web Services account that owns the resource.

', 'TransitGatewayAttachment$ResourceId' => '

The ID of the resource.

', 'TransitGatewayAttachmentAssociation$TransitGatewayRouteTableId' => '

The ID of the route table for the transit gateway.

', 'TransitGatewayAttachmentBgpConfiguration$TransitGatewayAddress' => '

The interior BGP peer IP address for the transit gateway.

', 'TransitGatewayAttachmentBgpConfiguration$PeerAddress' => '

The interior BGP peer IP address for the appliance.

', 'TransitGatewayAttachmentPropagation$TransitGatewayRouteTableId' => '

The ID of the propagation route table.

', 'TransitGatewayCidrBlockStringList$member' => NULL, 'TransitGatewayConnectPeerConfiguration$TransitGatewayAddress' => '

The Connect peer IP address on the transit gateway side of the tunnel.

', 'TransitGatewayConnectPeerConfiguration$PeerAddress' => '

The Connect peer IP address on the appliance side of the tunnel.

', 'TransitGatewayMulticastDeregisteredGroupMembers$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'TransitGatewayMulticastDeregisteredGroupMembers$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'TransitGatewayMulticastDeregisteredGroupSources$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'TransitGatewayMulticastDeregisteredGroupSources$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'TransitGatewayMulticastDomain$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'TransitGatewayMulticastDomain$TransitGatewayId' => '

The ID of the transit gateway.

', 'TransitGatewayMulticastDomain$TransitGatewayMulticastDomainArn' => '

The Amazon Resource Name (ARN) of the transit gateway multicast domain.

', 'TransitGatewayMulticastDomain$OwnerId' => '

The ID of the Amazon Web Services account that owns the transit gateway multicast domain.

', 'TransitGatewayMulticastDomainAssociation$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment.

', 'TransitGatewayMulticastDomainAssociation$ResourceId' => '

The ID of the resource.

', 'TransitGatewayMulticastDomainAssociation$ResourceOwnerId' => '

The ID of the Amazon Web Services account that owns the transit gateway multicast domain association resource.

', 'TransitGatewayMulticastDomainAssociations$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'TransitGatewayMulticastDomainAssociations$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment.

', 'TransitGatewayMulticastDomainAssociations$ResourceId' => '

The ID of the resource.

', 'TransitGatewayMulticastDomainAssociations$ResourceOwnerId' => '

The ID of the Amazon Web Services account that owns the resource.

', 'TransitGatewayMulticastGroup$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'TransitGatewayMulticastGroup$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment.

', 'TransitGatewayMulticastGroup$SubnetId' => '

The ID of the subnet.

', 'TransitGatewayMulticastGroup$ResourceId' => '

The ID of the resource.

', 'TransitGatewayMulticastGroup$ResourceOwnerId' => '

The ID of the Amazon Web Services account that owns the transit gateway multicast domain group resource.

', 'TransitGatewayMulticastGroup$NetworkInterfaceId' => '

The ID of the transit gateway attachment.

', 'TransitGatewayMulticastRegisteredGroupMembers$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'TransitGatewayMulticastRegisteredGroupMembers$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'TransitGatewayMulticastRegisteredGroupSources$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'TransitGatewayMulticastRegisteredGroupSources$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'TransitGatewayOptions$AssociationDefaultRouteTableId' => '

The ID of the default association route table.

', 'TransitGatewayOptions$PropagationDefaultRouteTableId' => '

The ID of the default propagation route table.

', 'TransitGatewayPeeringAttachment$TransitGatewayAttachmentId' => '

The ID of the transit gateway peering attachment.

', 'TransitGatewayPeeringAttachment$AccepterTransitGatewayAttachmentId' => '

The ID of the accepter transit gateway attachment.

', 'TransitGatewayPolicyRule$SourceCidrBlock' => '

The source CIDR block for the transit gateway policy rule.

', 'TransitGatewayPolicyRule$SourcePortRange' => '

The port range for the transit gateway policy rule. Currently this is set to * (all).

', 'TransitGatewayPolicyRule$DestinationCidrBlock' => '

The destination CIDR block for the transit gateway policy rule.

', 'TransitGatewayPolicyRule$DestinationPortRange' => '

The port range for the transit gateway policy rule. Currently this is set to * (all).

', 'TransitGatewayPolicyRule$Protocol' => '

The protocol used by the transit gateway policy rule.

', 'TransitGatewayPolicyRuleMetaData$MetaDataKey' => '

The key name for the transit gateway policy rule meta data tag.

', 'TransitGatewayPolicyRuleMetaData$MetaDataValue' => '

The value of the key for the transit gateway policy rule meta data tag.

', 'TransitGatewayPolicyTableAssociation$ResourceId' => '

The resource ID of the transit gateway attachment.

', 'TransitGatewayPolicyTableEntry$PolicyRuleNumber' => '

The rule number for the transit gateway policy table entry.

', 'TransitGatewayPrefixListAttachment$ResourceId' => '

The ID of the resource.

', 'TransitGatewayPrefixListReference$PrefixListOwnerId' => '

The ID of the prefix list owner.

', 'TransitGatewayPropagation$ResourceId' => '

The ID of the resource.

', 'TransitGatewayPropagation$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'TransitGatewayRoute$DestinationCidrBlock' => '

The CIDR block used for destination matches.

', 'TransitGatewayRouteAttachment$ResourceId' => '

The ID of the resource.

', 'TransitGatewayRouteAttachment$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayRouteTable$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'TransitGatewayRouteTable$TransitGatewayId' => '

The ID of the transit gateway.

', 'TransitGatewayRouteTableAnnouncement$CoreNetworkId' => '

The ID of the core network for the transit gateway route table announcement.

', 'TransitGatewayRouteTableAnnouncement$PeerCoreNetworkId' => '

The ID of the core network ID for the peer.

', 'TransitGatewayRouteTableAssociation$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayRouteTableAssociation$ResourceId' => '

The ID of the resource.

', 'TransitGatewayRouteTablePropagation$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayRouteTablePropagation$ResourceId' => '

The ID of the resource.

', 'TransitGatewayRouteTableRoute$DestinationCidr' => '

The CIDR block used for destination matches.

', 'TransitGatewayRouteTableRoute$State' => '

The state of the route.

', 'TransitGatewayRouteTableRoute$RouteOrigin' => '

The route origin. The following are the possible values:

  • static

  • propagated

', 'TransitGatewayRouteTableRoute$PrefixListId' => '

The ID of the prefix list.

', 'TransitGatewayRouteTableRoute$AttachmentId' => '

The ID of the route attachment.

', 'TransitGatewayRouteTableRoute$ResourceId' => '

The ID of the resource for the route attachment.

', 'TransitGatewayRouteTableRoute$ResourceType' => '

The resource type for the route attachment.

', 'TransitGatewayVpcAttachment$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayVpcAttachment$TransitGatewayId' => '

The ID of the transit gateway.

', 'TransitGatewayVpcAttachment$VpcId' => '

The ID of the VPC.

', 'TransitGatewayVpcAttachment$VpcOwnerId' => '

The ID of the Amazon Web Services account that owns the VPC.

', 'TrunkInterfaceAssociation$BranchInterfaceId' => '

The ID of the branch network interface.

', 'TrunkInterfaceAssociation$TrunkInterfaceId' => '

The ID of the trunk network interface.

', 'TunnelOption$OutsideIpAddress' => '

The external IP address of the VPN tunnel.

', 'TunnelOption$TunnelInsideCidr' => '

The range of inside IPv4 addresses for the tunnel.

', 'TunnelOption$TunnelInsideIpv6Cidr' => '

The range of inside IPv6 addresses for the tunnel.

', 'TunnelOption$DpdTimeoutAction' => '

The action to take after a DPD timeout occurs.

', 'TunnelOption$StartupAction' => '

The action to take when the establishing the VPN tunnels for a VPN connection.

', 'UnassignIpv6AddressesResult$NetworkInterfaceId' => '

The ID of the network interface.

', 'UnlockSnapshotResult$SnapshotId' => '

The ID of the snapshot.

', 'UnsuccessfulInstanceCreditSpecificationItem$InstanceId' => '

The ID of the instance.

', 'UnsuccessfulInstanceCreditSpecificationItemError$Message' => '

The applicable error message.

', 'UnsuccessfulItem$ResourceId' => '

The ID of the resource.

', 'UnsuccessfulItemError$Code' => '

The error code.

', 'UnsuccessfulItemError$Message' => '

The error message accompanying the error code.

', 'UserBucket$S3Bucket' => '

The name of the Amazon S3 bucket where the disk image is located.

', 'UserBucket$S3Key' => '

The file name of the disk image.

', 'UserBucketDetails$S3Bucket' => '

The Amazon S3 bucket from which the disk image was created.

', 'UserBucketDetails$S3Key' => '

The file name of the disk image.

', 'UserData$Data' => '

The user data. If you are using an Amazon Web Services SDK or command line tool, Base64-encoding is performed for you, and you can load the text from a file. Otherwise, you must provide Base64-encoded text.

', 'UserGroupStringList$member' => NULL, 'UserIdGroupPair$Description' => '

A description for the security group rule that references this user ID group pair.

Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=;{}!$*

', 'UserIdGroupPair$GroupId' => '

The ID of the security group.

', 'UserIdGroupPair$GroupName' => '

[Default VPC] The name of the security group. For a security group in a nondefault VPC, use the security group ID.

For a referenced security group in another VPC, this value is not returned if the referenced security group is deleted.

', 'UserIdGroupPair$PeeringStatus' => '

The status of a VPC peering connection, if applicable.

', 'UserIdGroupPair$UserId' => '

The ID of an Amazon Web Services account.

For a referenced security group in another VPC, the account ID of the referenced security group is returned in the response. If the referenced security group is deleted, this value is not returned.

', 'UserIdGroupPair$VpcId' => '

The ID of the VPC for the referenced security group, if applicable.

', 'UserIdGroupPair$VpcPeeringConnectionId' => '

The ID of the VPC peering connection, if applicable.

', 'UserIdStringList$member' => NULL, 'ValidationError$Code' => '

The error code that indicates why the parameter or parameter combination is not valid. For more information about error codes, see Error codes.

', 'ValidationError$Message' => '

The error message that describes why the parameter or parameter combination is not valid. For more information about error messages, see Error codes.

', 'ValueStringList$member' => NULL, 'VerifiedAccessEndpoint$VerifiedAccessInstanceId' => '

The ID of the Amazon Web Services Verified Access instance.

', 'VerifiedAccessEndpoint$VerifiedAccessGroupId' => '

The ID of the Amazon Web Services Verified Access group.

', 'VerifiedAccessEndpoint$VerifiedAccessEndpointId' => '

The ID of the Amazon Web Services Verified Access endpoint.

', 'VerifiedAccessEndpoint$ApplicationDomain' => '

The DNS name for users to reach your application.

', 'VerifiedAccessEndpoint$DomainCertificateArn' => '

The ARN of a public TLS/SSL certificate imported into or created with ACM.

', 'VerifiedAccessEndpoint$EndpointDomain' => '

A DNS name that is generated for the endpoint.

', 'VerifiedAccessEndpoint$DeviceValidationDomain' => '

Returned if endpoint has a device trust provider attached.

', 'VerifiedAccessEndpoint$Description' => '

A description for the Amazon Web Services Verified Access endpoint.

', 'VerifiedAccessEndpoint$CreationTime' => '

The creation time.

', 'VerifiedAccessEndpoint$LastUpdatedTime' => '

The last updated time.

', 'VerifiedAccessEndpoint$DeletionTime' => '

The deletion time.

', 'VerifiedAccessEndpointLoadBalancerOptions$LoadBalancerArn' => '

The ARN of the load balancer.

', 'VerifiedAccessEndpointStatus$Message' => '

The status message of the Verified Access endpoint.

', 'VerifiedAccessGroup$VerifiedAccessGroupId' => '

The ID of the Verified Access group.

', 'VerifiedAccessGroup$VerifiedAccessInstanceId' => '

The ID of the Amazon Web Services Verified Access instance.

', 'VerifiedAccessGroup$Description' => '

A description for the Amazon Web Services Verified Access group.

', 'VerifiedAccessGroup$Owner' => '

The Amazon Web Services account number that owns the group.

', 'VerifiedAccessGroup$VerifiedAccessGroupArn' => '

The ARN of the Verified Access group.

', 'VerifiedAccessGroup$CreationTime' => '

The creation time.

', 'VerifiedAccessGroup$LastUpdatedTime' => '

The last updated time.

', 'VerifiedAccessGroup$DeletionTime' => '

The deletion time.

', 'VerifiedAccessInstance$VerifiedAccessInstanceId' => '

The ID of the Amazon Web Services Verified Access instance.

', 'VerifiedAccessInstance$Description' => '

A description for the Amazon Web Services Verified Access instance.

', 'VerifiedAccessInstance$CreationTime' => '

The creation time.

', 'VerifiedAccessInstance$LastUpdatedTime' => '

The last updated time.

', 'VerifiedAccessInstanceLoggingConfiguration$VerifiedAccessInstanceId' => '

The ID of the Amazon Web Services Verified Access instance.

', 'VerifiedAccessLogCloudWatchLogsDestination$LogGroup' => '

The ID of the CloudWatch Logs log group.

', 'VerifiedAccessLogCloudWatchLogsDestinationOptions$LogGroup' => '

The ID of the CloudWatch Logs log group.

', 'VerifiedAccessLogDeliveryStatus$Message' => '

The status message.

', 'VerifiedAccessLogKinesisDataFirehoseDestination$DeliveryStream' => '

The ID of the delivery stream.

', 'VerifiedAccessLogKinesisDataFirehoseDestinationOptions$DeliveryStream' => '

The ID of the delivery stream.

', 'VerifiedAccessLogOptions$LogVersion' => '

The logging version.

Valid values: ocsf-0.1 | ocsf-1.0.0-rc.2

', 'VerifiedAccessLogS3Destination$BucketName' => '

The bucket name.

', 'VerifiedAccessLogS3Destination$Prefix' => '

The bucket prefix.

', 'VerifiedAccessLogS3Destination$BucketOwner' => '

The Amazon Web Services account number that owns the bucket.

', 'VerifiedAccessLogS3DestinationOptions$BucketName' => '

The bucket name.

', 'VerifiedAccessLogS3DestinationOptions$Prefix' => '

The bucket prefix.

', 'VerifiedAccessLogS3DestinationOptions$BucketOwner' => '

The ID of the Amazon Web Services account that owns the Amazon S3 bucket.

', 'VerifiedAccessLogs$LogVersion' => '

The log version.

', 'VerifiedAccessTrustProvider$VerifiedAccessTrustProviderId' => '

The ID of the Amazon Web Services Verified Access trust provider.

', 'VerifiedAccessTrustProvider$Description' => '

A description for the Amazon Web Services Verified Access trust provider.

', 'VerifiedAccessTrustProvider$PolicyReferenceName' => '

The identifier to be used when working with policy rules.

', 'VerifiedAccessTrustProvider$CreationTime' => '

The creation time.

', 'VerifiedAccessTrustProvider$LastUpdatedTime' => '

The last updated time.

', 'VerifiedAccessTrustProviderCondensed$VerifiedAccessTrustProviderId' => '

The ID of the trust provider.

', 'VerifiedAccessTrustProviderCondensed$Description' => '

The description of trust provider.

', 'VersionStringList$member' => NULL, 'VgwTelemetry$OutsideIpAddress' => '

The Internet-routable IP address of the virtual private gateway\'s outside interface.

', 'VgwTelemetry$StatusMessage' => '

If an error occurs, a description of the error.

', 'VgwTelemetry$CertificateArn' => '

The Amazon Resource Name (ARN) of the VPN tunnel endpoint certificate.

', 'Volume$AvailabilityZone' => '

The Availability Zone for the volume.

', 'Volume$KmsKeyId' => '

The Amazon Resource Name (ARN) of the Key Management Service (KMS) KMS key that was used to protect the volume encryption key for the volume.

', 'Volume$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'Volume$SnapshotId' => '

The snapshot from which the volume was created, if applicable.

', 'Volume$VolumeId' => '

The ID of the volume.

', 'VolumeAttachment$Device' => '

The device name.

If the volume is attached to a Fargate task, this parameter returns null.

', 'VolumeAttachment$InstanceId' => '

The ID of the instance.

If the volume is attached to a Fargate task, this parameter returns null.

', 'VolumeAttachment$VolumeId' => '

The ID of the volume.

', 'VolumeAttachment$AssociatedResource' => '

The ARN of the Amazon ECS or Fargate task to which the volume is attached.

', 'VolumeAttachment$InstanceOwningService' => '

The service principal of Amazon Web Services service that owns the underlying instance to which the volume is attached.

This parameter is returned only for volumes that are attached to Fargate tasks.

', 'VolumeModification$VolumeId' => '

The ID of the volume.

', 'VolumeModification$StatusMessage' => '

A status message about the modification progress or failure.

', 'VolumeStatusAction$Code' => '

The code identifying the operation, for example, enable-volume-io.

', 'VolumeStatusAction$Description' => '

A description of the operation.

', 'VolumeStatusAction$EventId' => '

The ID of the event associated with this operation.

', 'VolumeStatusAction$EventType' => '

The event type associated with this operation.

', 'VolumeStatusAttachmentStatus$IoPerformance' => '

The maximum IOPS supported by the attached instance.

', 'VolumeStatusAttachmentStatus$InstanceId' => '

The ID of the attached instance.

', 'VolumeStatusDetails$Status' => '

The intended status of the volume status.

', 'VolumeStatusEvent$Description' => '

A description of the event.

', 'VolumeStatusEvent$EventId' => '

The ID of this event.

', 'VolumeStatusEvent$EventType' => '

The type of this event.

', 'VolumeStatusEvent$InstanceId' => '

The ID of the instance associated with the event.

', 'VolumeStatusItem$AvailabilityZone' => '

The Availability Zone of the volume.

', 'VolumeStatusItem$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'VolumeStatusItem$VolumeId' => '

The volume ID.

', 'Vpc$CidrBlock' => '

The primary IPv4 CIDR block for the VPC.

', 'Vpc$DhcpOptionsId' => '

The ID of the set of DHCP options you\'ve associated with the VPC.

', 'Vpc$VpcId' => '

The ID of the VPC.

', 'Vpc$OwnerId' => '

The ID of the Amazon Web Services account that owns the VPC.

', 'VpcAttachment$VpcId' => '

The ID of the VPC.

', 'VpcCidrBlockAssociation$AssociationId' => '

The association ID for the IPv4 CIDR block.

', 'VpcCidrBlockAssociation$CidrBlock' => '

The IPv4 CIDR block.

', 'VpcCidrBlockState$StatusMessage' => '

A message about the status of the CIDR block, if applicable.

', 'VpcClassicLink$VpcId' => '

The ID of the VPC.

', 'VpcEndpoint$VpcEndpointId' => '

The ID of the endpoint.

', 'VpcEndpoint$VpcId' => '

The ID of the VPC to which the endpoint is associated.

', 'VpcEndpoint$ServiceName' => '

The name of the service to which the endpoint is associated.

', 'VpcEndpoint$PolicyDocument' => '

The policy document associated with the endpoint, if applicable.

', 'VpcEndpoint$OwnerId' => '

The ID of the Amazon Web Services account that owns the endpoint.

', 'VpcEndpointConnection$ServiceId' => '

The ID of the service to which the endpoint is connected.

', 'VpcEndpointConnection$VpcEndpointId' => '

The ID of the VPC endpoint.

', 'VpcEndpointConnection$VpcEndpointOwner' => '

The ID of the Amazon Web Services account that owns the VPC endpoint.

', 'VpcEndpointConnection$VpcEndpointConnectionId' => '

The ID of the VPC endpoint connection.

', 'VpcIpv6CidrBlockAssociation$AssociationId' => '

The association ID for the IPv6 CIDR block.

', 'VpcIpv6CidrBlockAssociation$Ipv6CidrBlock' => '

The IPv6 CIDR block.

', 'VpcIpv6CidrBlockAssociation$NetworkBorderGroup' => '

The name of the unique set of Availability Zones, Local Zones, or Wavelength Zones from which Amazon Web Services advertises IP addresses, for example, us-east-1-wl1-bos-wlz-1.

', 'VpcIpv6CidrBlockAssociation$Ipv6Pool' => '

The ID of the IPv6 address pool from which the IPv6 CIDR block is allocated.

', 'VpcPeeringConnection$VpcPeeringConnectionId' => '

The ID of the VPC peering connection.

', 'VpcPeeringConnectionStateReason$Message' => '

A message that provides more information about the status, if applicable.

', 'VpcPeeringConnectionVpcInfo$CidrBlock' => '

The IPv4 CIDR block for the VPC.

', 'VpcPeeringConnectionVpcInfo$OwnerId' => '

The ID of the Amazon Web Services account that owns the VPC.

', 'VpcPeeringConnectionVpcInfo$VpcId' => '

The ID of the VPC.

', 'VpcPeeringConnectionVpcInfo$Region' => '

The Region in which the VPC is located.

', 'VpnConnection$CustomerGatewayId' => '

The ID of the customer gateway at your end of the VPN connection.

', 'VpnConnection$Category' => '

The category of the VPN connection. A value of VPN indicates an Amazon Web Services VPN connection. A value of VPN-Classic indicates an Amazon Web Services Classic VPN connection.

', 'VpnConnection$VpnConnectionId' => '

The ID of the VPN connection.

', 'VpnConnection$VpnGatewayId' => '

The ID of the virtual private gateway at the Amazon Web Services side of the VPN connection.

', 'VpnConnection$TransitGatewayId' => '

The ID of the transit gateway associated with the VPN connection.

', 'VpnConnection$CoreNetworkArn' => '

The ARN of the core network.

', 'VpnConnection$CoreNetworkAttachmentArn' => '

The ARN of the core network attachment.

', 'VpnConnectionDeviceType$VpnConnectionDeviceTypeId' => '

Customer gateway device identifier.

', 'VpnConnectionDeviceType$Vendor' => '

Customer gateway device vendor.

', 'VpnConnectionDeviceType$Platform' => '

Customer gateway device platform.

', 'VpnConnectionDeviceType$Software' => '

Customer gateway device software version.

', 'VpnConnectionOptions$LocalIpv4NetworkCidr' => '

The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection.

', 'VpnConnectionOptions$RemoteIpv4NetworkCidr' => '

The IPv4 CIDR on the Amazon Web Services side of the VPN connection.

', 'VpnConnectionOptions$LocalIpv6NetworkCidr' => '

The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection.

', 'VpnConnectionOptions$RemoteIpv6NetworkCidr' => '

The IPv6 CIDR on the Amazon Web Services side of the VPN connection.

', 'VpnConnectionOptions$OutsideIpAddressType' => '

The type of IPv4 address assigned to the outside interface of the customer gateway.

Valid values: PrivateIpv4 | PublicIpv4

Default: PublicIpv4

', 'VpnConnectionOptions$TransportTransitGatewayAttachmentId' => '

The transit gateway attachment ID in use for the VPN tunnel.

', 'VpnConnectionOptionsSpecification$LocalIpv4NetworkCidr' => '

The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection.

Default: 0.0.0.0/0

', 'VpnConnectionOptionsSpecification$RemoteIpv4NetworkCidr' => '

The IPv4 CIDR on the Amazon Web Services side of the VPN connection.

Default: 0.0.0.0/0

', 'VpnConnectionOptionsSpecification$LocalIpv6NetworkCidr' => '

The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection.

Default: ::/0

', 'VpnConnectionOptionsSpecification$RemoteIpv6NetworkCidr' => '

The IPv6 CIDR on the Amazon Web Services side of the VPN connection.

Default: ::/0

', 'VpnConnectionOptionsSpecification$OutsideIpAddressType' => '

The type of IPv4 address assigned to the outside interface of the customer gateway device.

Valid values: PrivateIpv4 | PublicIpv4

Default: PublicIpv4

', 'VpnGateway$AvailabilityZone' => '

The Availability Zone where the virtual private gateway was created, if applicable. This field may be empty or not returned.

', 'VpnGateway$VpnGatewayId' => '

The ID of the virtual private gateway.

', 'VpnStaticRoute$DestinationCidrBlock' => '

The CIDR block associated with the local subnet of the customer data center.

', 'VpnTunnelOptionsSpecification$TunnelInsideCidr' => '

The range of inside IPv4 addresses for the tunnel. Any specified CIDR blocks must be unique across all VPN connections that use the same virtual private gateway.

Constraints: A size /30 CIDR block from the 169.254.0.0/16 range. The following CIDR blocks are reserved and cannot be used:

  • 169.254.0.0/30

  • 169.254.1.0/30

  • 169.254.2.0/30

  • 169.254.3.0/30

  • 169.254.4.0/30

  • 169.254.5.0/30

  • 169.254.169.252/30

', 'VpnTunnelOptionsSpecification$TunnelInsideIpv6Cidr' => '

The range of inside IPv6 addresses for the tunnel. Any specified CIDR blocks must be unique across all VPN connections that use the same transit gateway.

Constraints: A size /126 CIDR block from the local fd00::/8 range.

', 'VpnTunnelOptionsSpecification$DPDTimeoutAction' => '

The action to take after DPD timeout occurs. Specify restart to restart the IKE initiation. Specify clear to end the IKE session.

Valid Values: clear | none | restart

Default: clear

', 'VpnTunnelOptionsSpecification$StartupAction' => '

The action to take when the establishing the tunnel for the VPN connection. By default, your customer gateway device must initiate the IKE negotiation and bring up the tunnel. Specify start for Amazon Web Services to initiate the IKE negotiation.

Valid Values: add | start

Default: add

', 'WithdrawByoipCidrRequest$Cidr' => '

The address range, in CIDR notation.

', 'ZoneIdStringList$member' => NULL, 'ZoneNameStringList$member' => NULL, ], ], 'StringList' => [ 'base' => NULL, 'refs' => [ 'Explanation$Protocols' => '

The protocols.

', 'RuleOption$Settings' => '

The settings for the keyword.

', ], ], 'StringType' => [ 'base' => NULL, 'refs' => [ 'RegisterImageRequest$UefiData' => '

Base64 representation of the non-volatile UEFI variable store. To retrieve the UEFI data, use the GetInstanceUefiData command. You can inspect and modify the UEFI data by using the python-uefivars tool on GitHub. For more information, see UEFI Secure Boot in the Amazon EC2 User Guide.

', ], ], 'Subnet' => [ 'base' => '

Describes a subnet.

', 'refs' => [ 'CreateDefaultSubnetResult$Subnet' => '

Information about the subnet.

', 'CreateSubnetResult$Subnet' => '

Information about the subnet.

', 'SubnetList$member' => NULL, ], ], 'SubnetAssociation' => [ 'base' => '

Describes the subnet association with the transit gateway multicast domain.

', 'refs' => [ 'SubnetAssociationList$member' => NULL, 'TransitGatewayMulticastDomainAssociation$Subnet' => '

The subnet associated with the transit gateway multicast domain.

', ], ], 'SubnetAssociationList' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayMulticastDomainAssociations$Subnets' => '

The subnets associated with the multicast domain.

', ], ], 'SubnetCidrAssociationId' => [ 'base' => NULL, 'refs' => [ 'DisassociateSubnetCidrBlockRequest$AssociationId' => '

The association ID for the CIDR block.

', 'SubnetIpv6CidrBlockAssociation$AssociationId' => '

The ID of the association.

', ], ], 'SubnetCidrBlockState' => [ 'base' => '

Describes the state of a CIDR block.

', 'refs' => [ 'SubnetIpv6CidrBlockAssociation$Ipv6CidrBlockState' => '

The state of the CIDR block.

', ], ], 'SubnetCidrBlockStateCode' => [ 'base' => NULL, 'refs' => [ 'SubnetCidrBlockState$State' => '

The state of a CIDR block.

', ], ], 'SubnetCidrReservation' => [ 'base' => '

Describes a subnet CIDR reservation.

', 'refs' => [ 'CreateSubnetCidrReservationResult$SubnetCidrReservation' => '

Information about the created subnet CIDR reservation.

', 'DeleteSubnetCidrReservationResult$DeletedSubnetCidrReservation' => '

Information about the deleted subnet CIDR reservation.

', 'SubnetCidrReservationList$member' => NULL, ], ], 'SubnetCidrReservationId' => [ 'base' => NULL, 'refs' => [ 'DeleteSubnetCidrReservationRequest$SubnetCidrReservationId' => '

The ID of the subnet CIDR reservation.

', 'SubnetCidrReservation$SubnetCidrReservationId' => '

The ID of the subnet CIDR reservation.

', ], ], 'SubnetCidrReservationList' => [ 'base' => NULL, 'refs' => [ 'GetSubnetCidrReservationsResult$SubnetIpv4CidrReservations' => '

Information about the IPv4 subnet CIDR reservations.

', 'GetSubnetCidrReservationsResult$SubnetIpv6CidrReservations' => '

Information about the IPv6 subnet CIDR reservations.

', ], ], 'SubnetCidrReservationType' => [ 'base' => NULL, 'refs' => [ 'CreateSubnetCidrReservationRequest$ReservationType' => '

The type of reservation. The reservation type determines how the reserved IP addresses are assigned to resources.

  • prefix - Amazon Web Services assigns the reserved IP addresses to network interfaces.

  • explicit - You assign the reserved IP addresses to network interfaces.

', 'SubnetCidrReservation$ReservationType' => '

The type of reservation.

', ], ], 'SubnetConfiguration' => [ 'base' => '

Describes the configuration of a subnet for a VPC endpoint.

', 'refs' => [ 'SubnetConfigurationsList$member' => NULL, ], ], 'SubnetConfigurationsList' => [ 'base' => NULL, 'refs' => [ 'CreateVpcEndpointRequest$SubnetConfigurations' => '

The subnet configurations for the endpoint.

', 'ModifyVpcEndpointRequest$SubnetConfigurations' => '

The subnet configurations for the endpoint.

', ], ], 'SubnetId' => [ 'base' => NULL, 'refs' => [ 'AssociateClientVpnTargetNetworkRequest$SubnetId' => '

The ID of the subnet to associate with the Client VPN endpoint.

', 'AssociateRouteTableRequest$SubnetId' => '

The ID of the subnet.

', 'AssociateSubnetCidrBlockRequest$SubnetId' => '

The ID of your subnet.

', 'CreateClientVpnRouteRequest$TargetVpcSubnetId' => '

The ID of the subnet through which you want to route traffic. The specified subnet must be an existing target network of the Client VPN endpoint.

Alternatively, if you\'re adding a route for the local network, specify local.

', 'CreateInstanceConnectEndpointRequest$SubnetId' => '

The ID of the subnet in which to create the EC2 Instance Connect Endpoint.

', 'CreateNatGatewayRequest$SubnetId' => '

The ID of the subnet in which to create the NAT gateway.

', 'CreateNetworkInterfaceRequest$SubnetId' => '

The ID of the subnet to associate with the network interface.

', 'CreateSubnetCidrReservationRequest$SubnetId' => '

The ID of the subnet.

', 'CreateVerifiedAccessEndpointSubnetIdList$member' => NULL, 'DeleteClientVpnRouteRequest$TargetVpcSubnetId' => '

The ID of the target subnet used by the route.

', 'DeleteSubnetRequest$SubnetId' => '

The ID of the subnet.

', 'Ec2InstanceConnectEndpoint$SubnetId' => '

The ID of the subnet in which the EC2 Instance Connect Endpoint was created.

', 'FleetLaunchTemplateOverridesRequest$SubnetId' => '

The IDs of the subnets in which to launch the instances. Separate multiple subnet IDs using commas (for example, subnet-1234abcdeexample1, subnet-0987cdef6example2). A request of type instant can have only one subnet ID.

', 'GetSubnetCidrReservationsRequest$SubnetId' => '

The ID of the subnet.

', 'ImportInstanceLaunchSpecification$SubnetId' => '

[EC2-VPC] The ID of the subnet in which to launch the instance.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$SubnetId' => '

The ID of the subnet for the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$SubnetId' => '

The ID of the subnet for the network interface.

', 'LaunchTemplateOverrides$SubnetId' => '

The ID of the subnet in which to launch the instances.

', 'LocalGatewayRoute$SubnetId' => '

The ID of the subnet.

', 'ModifySubnetAttributeRequest$SubnetId' => '

The ID of the subnet.

', 'ModifyVerifiedAccessEndpointSubnetIdList$member' => NULL, 'RequestSpotLaunchSpecification$SubnetId' => '

The ID of the subnet in which to launch the instance.

', 'RunInstancesRequest$SubnetId' => '

The ID of the subnet to launch the instance into.

If you specify a network interface, you must specify any subnets as part of the network interface.

', 'ScheduledInstancesLaunchSpecification$SubnetId' => '

The ID of the subnet in which to launch the instances.

', 'ScheduledInstancesNetworkInterface$SubnetId' => '

The ID of the subnet.

', 'SpotFleetLaunchSpecification$SubnetId' => '

The IDs of the subnets in which to launch the instances. To specify multiple subnets, separate them using commas; for example, "subnet-1234abcdeexample1, subnet-0987cdef6example2".

', 'SubnetCidrReservation$SubnetId' => '

The ID of the subnet.

', 'SubnetConfiguration$SubnetId' => '

The ID of the subnet.

', 'SubnetIdStringList$member' => NULL, 'TransitGatewaySubnetIdList$member' => NULL, 'VerifiedAccessEndpointSubnetIdList$member' => NULL, 'VpcEndpointSubnetIdList$member' => NULL, ], ], 'SubnetIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeSubnetsRequest$SubnetIds' => '

The IDs of the subnets.

Default: Describes all your subnets.

', ], ], 'SubnetIpv6CidrBlockAssociation' => [ 'base' => '

Describes an association between a subnet and an IPv6 CIDR block.

', 'refs' => [ 'AssociateSubnetCidrBlockResult$Ipv6CidrBlockAssociation' => '

Information about the IPv6 association.

', 'DisassociateSubnetCidrBlockResult$Ipv6CidrBlockAssociation' => '

Information about the IPv6 CIDR block association.

', 'SubnetIpv6CidrBlockAssociationSet$member' => NULL, ], ], 'SubnetIpv6CidrBlockAssociationSet' => [ 'base' => NULL, 'refs' => [ 'Subnet$Ipv6CidrBlockAssociationSet' => '

Information about the IPv6 CIDR blocks associated with the subnet.

', ], ], 'SubnetList' => [ 'base' => NULL, 'refs' => [ 'DescribeSubnetsResult$Subnets' => '

Information about one or more subnets.

', ], ], 'SubnetState' => [ 'base' => NULL, 'refs' => [ 'Subnet$State' => '

The current state of the subnet.

', ], ], 'Subscription' => [ 'base' => '

Describes an Infrastructure Performance subscription.

', 'refs' => [ 'SubscriptionList$member' => NULL, ], ], 'SubscriptionList' => [ 'base' => NULL, 'refs' => [ 'DescribeAwsNetworkPerformanceMetricSubscriptionsResult$Subscriptions' => '

Describes the current Infrastructure Performance subscriptions.

', ], ], 'SuccessfulInstanceCreditSpecificationItem' => [ 'base' => '

Describes the burstable performance instance whose credit option for CPU usage was successfully modified.

', 'refs' => [ 'SuccessfulInstanceCreditSpecificationSet$member' => NULL, ], ], 'SuccessfulInstanceCreditSpecificationSet' => [ 'base' => NULL, 'refs' => [ 'ModifyInstanceCreditSpecificationResult$SuccessfulInstanceCreditSpecifications' => '

Information about the instances whose credit option for CPU usage was successfully modified.

', ], ], 'SuccessfulQueuedPurchaseDeletion' => [ 'base' => '

Describes a Reserved Instance whose queued purchase was successfully deleted.

', 'refs' => [ 'SuccessfulQueuedPurchaseDeletionSet$member' => NULL, ], ], 'SuccessfulQueuedPurchaseDeletionSet' => [ 'base' => NULL, 'refs' => [ 'DeleteQueuedReservedInstancesResult$SuccessfulQueuedPurchaseDeletions' => '

Information about the queued purchases that were successfully deleted.

', ], ], 'SummaryStatus' => [ 'base' => NULL, 'refs' => [ 'InstanceStatusSummary$Status' => '

The status.

', ], ], 'SupportedAdditionalProcessorFeature' => [ 'base' => NULL, 'refs' => [ 'SupportedAdditionalProcessorFeatureList$member' => NULL, ], ], 'SupportedAdditionalProcessorFeatureList' => [ 'base' => NULL, 'refs' => [ 'ProcessorInfo$SupportedFeatures' => '

Indicates whether the instance type supports AMD SEV-SNP. If the request returns amd-sev-snp, AMD SEV-SNP is supported. Otherwise, it is not supported. For more information, see AMD SEV-SNP.

', ], ], 'SupportedIpAddressTypes' => [ 'base' => NULL, 'refs' => [ 'ServiceConfiguration$SupportedIpAddressTypes' => '

The supported IP address types.

', 'ServiceDetail$SupportedIpAddressTypes' => '

The supported IP address types.

', ], ], 'Tag' => [ 'base' => '

Describes a tag.

', 'refs' => [ 'TagList$member' => NULL, ], ], 'TagDescription' => [ 'base' => '

Describes a tag.

', 'refs' => [ 'TagDescriptionList$member' => NULL, ], ], 'TagDescriptionList' => [ 'base' => NULL, 'refs' => [ 'DescribeTagsResult$Tags' => '

The tags.

', ], ], 'TagList' => [ 'base' => NULL, 'refs' => [ 'Address$Tags' => '

Any tags assigned to the Elastic IP address.

', 'AllowedPrincipal$Tags' => '

The tags.

', 'CapacityReservation$Tags' => '

Any tags assigned to the Capacity Reservation.

', 'CapacityReservationFleet$Tags' => '

The tags assigned to the Capacity Reservation Fleet.

', 'CarrierGateway$Tags' => '

The tags assigned to the carrier gateway.

', 'ClassicLinkInstance$Tags' => '

Any tags assigned to the instance.

', 'ClientVpnEndpoint$Tags' => '

Any tags assigned to the Client VPN endpoint.

', 'CoipPool$Tags' => '

The tags.

', 'ConversionTask$Tags' => '

Any tags assigned to the task.

', 'CopySnapshotResult$Tags' => '

Any tags applied to the new snapshot.

', 'CreateCapacityReservationFleetResult$Tags' => '

The tags assigned to the Capacity Reservation Fleet.

', 'CreateSecurityGroupResult$Tags' => '

The tags assigned to the security group.

', 'CreateTagsRequest$Tags' => '

The tags. The value parameter is required, but if you don\'t want the tag to have a value, specify the parameter with no value, and we set the value to an empty string.

', 'CustomerGateway$Tags' => '

Any tags assigned to the customer gateway.

', 'DeleteTagsRequest$Tags' => '

The tags to delete. Specify a tag key and an optional tag value to delete specific tags. If you specify a tag key without a tag value, we delete any tag with this key regardless of its value. If you specify a tag key with an empty string as the tag value, we delete the tag only if its value is an empty string.

If you omit this parameter, we delete all user-defined tags for the specified resources. We do not delete Amazon Web Services-generated tags (tags that have the aws: prefix).

Constraints: Up to 1000 tags.

', 'DhcpOptions$Tags' => '

Any tags assigned to the DHCP options set.

', 'Ec2InstanceConnectEndpoint$Tags' => '

The tags assigned to the EC2 Instance Connect Endpoint.

', 'EgressOnlyInternetGateway$Tags' => '

The tags assigned to the egress-only internet gateway.

', 'ElasticGpus$Tags' => '

The tags assigned to the Elastic Graphics accelerator.

', 'ExportImageResult$Tags' => '

Any tags assigned to the export image task.

', 'ExportImageTask$Tags' => '

Any tags assigned to the export image task.

', 'ExportTask$Tags' => '

The tags for the export task.

', 'FleetData$Tags' => '

The tags for an EC2 Fleet resource.

', 'FlowLog$Tags' => '

The tags for the flow log.

', 'FpgaImage$Tags' => '

Any tags assigned to the AFI.

', 'Host$Tags' => '

Any tags assigned to the Dedicated Host.

', 'HostReservation$Tags' => '

Any tags assigned to the Dedicated Host Reservation.

', 'Image$Tags' => '

Any tags assigned to the image.

', 'ImportImageResult$Tags' => '

Any tags assigned to the import image task.

', 'ImportImageTask$Tags' => '

The tags for the import image task.

', 'ImportKeyPairResult$Tags' => '

The tags applied to the imported key pair.

', 'ImportSnapshotResult$Tags' => '

Any tags assigned to the import snapshot task.

', 'ImportSnapshotTask$Tags' => '

The tags for the import snapshot task.

', 'Instance$Tags' => '

Any tags assigned to the instance.

', 'InstanceEventWindow$Tags' => '

The instance tags associated with the event window.

', 'InstanceEventWindowAssociationRequest$InstanceTags' => '

The instance tags to associate with the event window. Any instances associated with the tags will be associated with the event window.

', 'InstanceEventWindowAssociationTarget$Tags' => '

The instance tags associated with the event window. Any instances associated with the tags will be associated with the event window.

', 'InstanceEventWindowDisassociationRequest$InstanceTags' => '

The instance tags to disassociate from the event window. Any instances associated with the tags will be disassociated from the event window.

', 'InternetGateway$Tags' => '

Any tags assigned to the internet gateway.

', 'Ipam$Tags' => '

The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'IpamPool$Tags' => '

The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'IpamResourceDiscovery$Tags' => '

A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.

', 'IpamResourceDiscoveryAssociation$Tags' => '

A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.

', 'IpamScope$Tags' => '

The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'Ipv6Pool$Tags' => '

Any tags for the address pool.

', 'KeyPair$Tags' => '

Any tags applied to the key pair.

', 'KeyPairInfo$Tags' => '

Any tags applied to the key pair.

', 'LaunchTemplate$Tags' => '

The tags for the launch template.

', 'LaunchTemplateTagSpecification$Tags' => '

The tags for the resource.

', 'LaunchTemplateTagSpecificationRequest$Tags' => '

The tags to apply to the resource.

', 'LocalGateway$Tags' => '

The tags assigned to the local gateway.

', 'LocalGatewayRouteTable$Tags' => '

The tags assigned to the local gateway route table.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation$Tags' => '

The tags assigned to the association.

', 'LocalGatewayRouteTableVpcAssociation$Tags' => '

The tags assigned to the association.

', 'LocalGatewayVirtualInterface$Tags' => '

The tags assigned to the virtual interface.

', 'LocalGatewayVirtualInterfaceGroup$Tags' => '

The tags assigned to the virtual interface group.

', 'ManagedPrefixList$Tags' => '

The tags for the prefix list.

', 'NatGateway$Tags' => '

The tags for the NAT gateway.

', 'NetworkAcl$Tags' => '

Any tags assigned to the network ACL.

', 'NetworkInsightsAccessScope$Tags' => '

The tags.

', 'NetworkInsightsAccessScopeAnalysis$Tags' => '

The tags.

', 'NetworkInsightsAnalysis$Tags' => '

The tags.

', 'NetworkInsightsPath$Tags' => '

The tags associated with the path.

', 'NetworkInterface$TagSet' => '

Any tags assigned to the network interface.

', 'PlacementGroup$Tags' => '

Any tags applied to the placement group.

', 'PublicIpv4Pool$Tags' => '

Any tags for the address pool.

', 'ReplaceRootVolumeTask$Tags' => '

The tags assigned to the task.

', 'ReservedInstances$Tags' => '

Any tags assigned to the resource.

', 'ReservedInstancesListing$Tags' => '

Any tags assigned to the resource.

', 'RouteTable$Tags' => '

Any tags assigned to the route table.

', 'SecurityGroup$Tags' => '

Any tags assigned to the security group.

', 'SecurityGroupForVpc$Tags' => '

The security group tags.

', 'SecurityGroupRule$Tags' => '

The tags applied to the security group rule.

', 'ServiceConfiguration$Tags' => '

The tags assigned to the service.

', 'ServiceDetail$Tags' => '

The tags assigned to the service.

', 'Snapshot$Tags' => '

Any tags assigned to the snapshot.

', 'SnapshotInfo$Tags' => '

Tags associated with this snapshot.

', 'SnapshotTierStatus$Tags' => '

The tags that are assigned to the snapshot.

', 'SpotFleetRequestConfig$Tags' => '

The tags for a Spot Fleet resource.

', 'SpotFleetTagSpecification$Tags' => '

The tags.

', 'SpotInstanceRequest$Tags' => '

Any tags assigned to the resource.

', 'Subnet$Tags' => '

Any tags assigned to the subnet.

', 'SubnetCidrReservation$Tags' => '

The tags assigned to the subnet CIDR reservation.

', 'TagSpecification$Tags' => '

The tags to apply to the resource.

', 'TrafficMirrorFilter$Tags' => '

The tags assigned to the Traffic Mirror filter.

', 'TrafficMirrorSession$Tags' => '

The tags assigned to the Traffic Mirror session.

', 'TrafficMirrorTarget$Tags' => '

The tags assigned to the Traffic Mirror target.

', 'TransitGateway$Tags' => '

The tags for the transit gateway.

', 'TransitGatewayAttachment$Tags' => '

The tags for the attachment.

', 'TransitGatewayConnect$Tags' => '

The tags for the attachment.

', 'TransitGatewayConnectPeer$Tags' => '

The tags for the Connect peer.

', 'TransitGatewayMulticastDomain$Tags' => '

The tags for the transit gateway multicast domain.

', 'TransitGatewayPeeringAttachment$Tags' => '

The tags for the transit gateway peering attachment.

', 'TransitGatewayPolicyTable$Tags' => '

he key-value pairs associated with the transit gateway policy table.

', 'TransitGatewayRouteTable$Tags' => '

Any tags assigned to the route table.

', 'TransitGatewayRouteTableAnnouncement$Tags' => '

The key-value pairs associated with the route table announcement.

', 'TransitGatewayVpcAttachment$Tags' => '

The tags for the VPC attachment.

', 'TrunkInterfaceAssociation$Tags' => '

The tags for the trunk interface association.

', 'VerifiedAccessEndpoint$Tags' => '

The tags.

', 'VerifiedAccessGroup$Tags' => '

The tags.

', 'VerifiedAccessInstance$Tags' => '

The tags.

', 'VerifiedAccessTrustProvider$Tags' => '

The tags.

', 'Volume$Tags' => '

Any tags assigned to the volume.

', 'Vpc$Tags' => '

Any tags assigned to the VPC.

', 'VpcClassicLink$Tags' => '

Any tags assigned to the VPC.

', 'VpcEndpoint$Tags' => '

The tags assigned to the endpoint.

', 'VpcEndpointConnection$Tags' => '

The tags.

', 'VpcPeeringConnection$Tags' => '

Any tags assigned to the resource.

', 'VpnConnection$Tags' => '

Any tags assigned to the VPN connection.

', 'VpnGateway$Tags' => '

Any tags assigned to the virtual private gateway.

', ], ], 'TagSpecification' => [ 'base' => '

The tags to apply to a resource when the resource is being created. When you specify a tag, you must specify the resource type to tag, otherwise the request will fail.

The Valid Values lists all the resource types that can be tagged. However, the action you\'re using might not support tagging all of these resource types. If you try to tag a resource type that is unsupported for the action you\'re using, you\'ll get an error.

', 'refs' => [ 'TagSpecificationList$member' => NULL, ], ], 'TagSpecificationList' => [ 'base' => NULL, 'refs' => [ 'AcceptAddressTransferRequest$TagSpecifications' => '

tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'AllocateAddressRequest$TagSpecifications' => '

The tags to assign to the Elastic IP address.

', 'AllocateHostsRequest$TagSpecifications' => '

The tags to apply to the Dedicated Host during creation.

', 'AssociateIpamResourceDiscoveryRequest$TagSpecifications' => '

Tag specifications.

', 'AuthorizeSecurityGroupEgressRequest$TagSpecifications' => '

The tags applied to the security group rule.

', 'AuthorizeSecurityGroupIngressRequest$TagSpecifications' => '

[VPC Only] The tags applied to the security group rule.

', 'CopySnapshotRequest$TagSpecifications' => '

The tags to apply to the new snapshot.

', 'CreateCapacityReservationFleetRequest$TagSpecifications' => '

The tags to assign to the Capacity Reservation Fleet. The tags are automatically assigned to the Capacity Reservations in the Fleet.

', 'CreateCapacityReservationRequest$TagSpecifications' => '

The tags to apply to the Capacity Reservation during launch.

', 'CreateCarrierGatewayRequest$TagSpecifications' => '

The tags to associate with the carrier gateway.

', 'CreateClientVpnEndpointRequest$TagSpecifications' => '

The tags to apply to the Client VPN endpoint during creation.

', 'CreateCoipPoolRequest$TagSpecifications' => '

The tags to assign to the CoIP address pool.

', 'CreateCustomerGatewayRequest$TagSpecifications' => '

The tags to apply to the customer gateway.

', 'CreateDhcpOptionsRequest$TagSpecifications' => '

The tags to assign to the DHCP option.

', 'CreateEgressOnlyInternetGatewayRequest$TagSpecifications' => '

The tags to assign to the egress-only internet gateway.

', 'CreateFleetRequest$TagSpecifications' => '

The key-value pair for tagging the EC2 Fleet request on creation. For more information, see Tag your resources.

If the fleet type is instant, specify a resource type of fleet to tag the fleet or instance to tag the instances at launch.

If the fleet type is maintain or request, specify a resource type of fleet to tag the fleet. You cannot specify a resource type of instance. To tag instances at launch, specify the tags in a launch template.

', 'CreateFlowLogsRequest$TagSpecifications' => '

The tags to apply to the flow logs.

', 'CreateFpgaImageRequest$TagSpecifications' => '

The tags to apply to the FPGA image during creation.

', 'CreateImageRequest$TagSpecifications' => '

The tags to apply to the AMI and snapshots on creation. You can tag the AMI, the snapshots, or both.

  • To tag the AMI, the value for ResourceType must be image.

  • To tag the snapshots that are created of the root volume and of other Amazon EBS volumes that are attached to the instance, the value for ResourceType must be snapshot. The same tag is applied to all of the snapshots that are created.

If you specify other values for ResourceType, the request fails.

To tag an AMI or snapshot after it has been created, see CreateTags.

', 'CreateInstanceConnectEndpointRequest$TagSpecifications' => '

The tags to apply to the EC2 Instance Connect Endpoint during creation.

', 'CreateInstanceEventWindowRequest$TagSpecifications' => '

The tags to apply to the event window.

', 'CreateInstanceExportTaskRequest$TagSpecifications' => '

The tags to apply to the export instance task during creation.

', 'CreateInternetGatewayRequest$TagSpecifications' => '

The tags to assign to the internet gateway.

', 'CreateIpamPoolRequest$TagSpecifications' => '

The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'CreateIpamRequest$TagSpecifications' => '

The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'CreateIpamResourceDiscoveryRequest$TagSpecifications' => '

Tag specifications for the IPAM resource discovery.

', 'CreateIpamScopeRequest$TagSpecifications' => '

The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'CreateKeyPairRequest$TagSpecifications' => '

The tags to apply to the new key pair.

', 'CreateLaunchTemplateRequest$TagSpecifications' => '

The tags to apply to the launch template on creation. To tag the launch template, the resource type must be launch-template.

To specify the tags for the resources that are created when an instance is launched, you must use the TagSpecifications parameter in the launch template data structure.

', 'CreateLocalGatewayRouteTableRequest$TagSpecifications' => '

The tags assigned to the local gateway route table.

', 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest$TagSpecifications' => '

The tags assigned to the local gateway route table virtual interface group association.

', 'CreateLocalGatewayRouteTableVpcAssociationRequest$TagSpecifications' => '

The tags to assign to the local gateway route table VPC association.

', 'CreateManagedPrefixListRequest$TagSpecifications' => '

The tags to apply to the prefix list during creation.

', 'CreateNatGatewayRequest$TagSpecifications' => '

The tags to assign to the NAT gateway.

', 'CreateNetworkAclRequest$TagSpecifications' => '

The tags to assign to the network ACL.

', 'CreateNetworkInsightsAccessScopeRequest$TagSpecifications' => '

The tags to apply.

', 'CreateNetworkInsightsPathRequest$TagSpecifications' => '

The tags to add to the path.

', 'CreateNetworkInterfaceRequest$TagSpecifications' => '

The tags to apply to the new network interface.

', 'CreatePlacementGroupRequest$TagSpecifications' => '

The tags to apply to the new placement group.

', 'CreatePublicIpv4PoolRequest$TagSpecifications' => '

The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'CreateReplaceRootVolumeTaskRequest$TagSpecifications' => '

The tags to apply to the root volume replacement task.

', 'CreateRestoreImageTaskRequest$TagSpecifications' => '

The tags to apply to the AMI and snapshots on restoration. You can tag the AMI, the snapshots, or both.

  • To tag the AMI, the value for ResourceType must be image.

  • To tag the snapshots, the value for ResourceType must be snapshot. The same tag is applied to all of the snapshots that are created.

', 'CreateRouteTableRequest$TagSpecifications' => '

The tags to assign to the route table.

', 'CreateSecurityGroupRequest$TagSpecifications' => '

The tags to assign to the security group.

', 'CreateSnapshotRequest$TagSpecifications' => '

The tags to apply to the snapshot during creation.

', 'CreateSnapshotsRequest$TagSpecifications' => '

Tags to apply to every snapshot specified by the instance.

', 'CreateSubnetCidrReservationRequest$TagSpecifications' => '

The tags to assign to the subnet CIDR reservation.

', 'CreateSubnetRequest$TagSpecifications' => '

The tags to assign to the subnet.

', 'CreateTrafficMirrorFilterRequest$TagSpecifications' => '

The tags to assign to a Traffic Mirror filter.

', 'CreateTrafficMirrorSessionRequest$TagSpecifications' => '

The tags to assign to a Traffic Mirror session.

', 'CreateTrafficMirrorTargetRequest$TagSpecifications' => '

The tags to assign to the Traffic Mirror target.

', 'CreateTransitGatewayConnectPeerRequest$TagSpecifications' => '

The tags to apply to the Connect peer.

', 'CreateTransitGatewayConnectRequest$TagSpecifications' => '

The tags to apply to the Connect attachment.

', 'CreateTransitGatewayMulticastDomainRequest$TagSpecifications' => '

The tags for the transit gateway multicast domain.

', 'CreateTransitGatewayPeeringAttachmentRequest$TagSpecifications' => '

The tags to apply to the transit gateway peering attachment.

', 'CreateTransitGatewayPolicyTableRequest$TagSpecifications' => '

The tags specification for the transit gateway policy table created during the request.

', 'CreateTransitGatewayRequest$TagSpecifications' => '

The tags to apply to the transit gateway.

', 'CreateTransitGatewayRouteTableAnnouncementRequest$TagSpecifications' => '

The tags specifications applied to the transit gateway route table announcement.

', 'CreateTransitGatewayRouteTableRequest$TagSpecifications' => '

The tags to apply to the transit gateway route table.

', 'CreateTransitGatewayVpcAttachmentRequest$TagSpecifications' => '

The tags to apply to the VPC attachment.

', 'CreateVerifiedAccessEndpointRequest$TagSpecifications' => '

The tags to assign to the Verified Access endpoint.

', 'CreateVerifiedAccessGroupRequest$TagSpecifications' => '

The tags to assign to the Verified Access group.

', 'CreateVerifiedAccessInstanceRequest$TagSpecifications' => '

The tags to assign to the Verified Access instance.

', 'CreateVerifiedAccessTrustProviderRequest$TagSpecifications' => '

The tags to assign to the Verified Access trust provider.

', 'CreateVolumeRequest$TagSpecifications' => '

The tags to apply to the volume during creation.

', 'CreateVpcEndpointRequest$TagSpecifications' => '

The tags to associate with the endpoint.

', 'CreateVpcEndpointServiceConfigurationRequest$TagSpecifications' => '

The tags to associate with the service.

', 'CreateVpcPeeringConnectionRequest$TagSpecifications' => '

The tags to assign to the peering connection.

', 'CreateVpcRequest$TagSpecifications' => '

The tags to assign to the VPC.

', 'CreateVpnConnectionRequest$TagSpecifications' => '

The tags to apply to the VPN connection.

', 'CreateVpnGatewayRequest$TagSpecifications' => '

The tags to apply to the virtual private gateway.

', 'ExportImageRequest$TagSpecifications' => '

The tags to apply to the export image task during creation.

', 'ImportImageRequest$TagSpecifications' => '

The tags to apply to the import image task during creation.

', 'ImportKeyPairRequest$TagSpecifications' => '

The tags to apply to the imported key pair.

', 'ImportSnapshotRequest$TagSpecifications' => '

The tags to apply to the import snapshot task during creation.

', 'ProvisionByoipCidrRequest$PoolTagSpecifications' => '

The tags to apply to the address pool.

', 'PurchaseCapacityBlockRequest$TagSpecifications' => '

The tags to apply to the Capacity Block during launch.

', 'PurchaseHostReservationRequest$TagSpecifications' => '

The tags to apply to the Dedicated Host Reservation during purchase.

', 'RequestSpotInstancesRequest$TagSpecifications' => '

The key-value pair for tagging the Spot Instance request on creation. The value for ResourceType must be spot-instances-request, otherwise the Spot Instance request fails. To tag the Spot Instance request after it has been created, see CreateTags.

', 'RunInstancesRequest$TagSpecifications' => '

The tags to apply to the resources that are created during instance launch.

You can specify tags for the following resources only:

  • Instances

  • Volumes

  • Spot Instance requests

  • Network interfaces

To tag a resource after it has been created, see CreateTags.

', 'SpotFleetRequestConfigData$TagSpecifications' => '

The key-value pair for tagging the Spot Fleet request on creation. The value for ResourceType must be spot-fleet-request, otherwise the Spot Fleet request fails. To tag instances at launch, specify the tags in the launch template (valid only if you use LaunchTemplateConfigs) or in the SpotFleetTagSpecification (valid only if you use LaunchSpecifications). For information about tagging after launch, see Tag your resources.

', 'StartNetworkInsightsAccessScopeAnalysisRequest$TagSpecifications' => '

The tags to apply.

', 'StartNetworkInsightsAnalysisRequest$TagSpecifications' => '

The tags to apply.

', ], ], 'TaggableResourceId' => [ 'base' => NULL, 'refs' => [ 'ResourceIdList$member' => NULL, ], ], 'TargetCapacitySpecification' => [ 'base' => '

The number of units to request. You can choose to set the target capacity in terms of instances or a performance characteristic that is important to your application workload, such as vCPUs, memory, or I/O. If the request type is maintain, you can specify a target capacity of 0 and add capacity later.

You can use the On-Demand Instance MaxTotalPrice parameter, the Spot Instance MaxTotalPrice, or both to ensure that your fleet cost does not exceed your budget. If you set a maximum price per hour for the On-Demand Instances and Spot Instances in your request, EC2 Fleet will launch instances until it reaches the maximum amount that you\'re willing to pay. When the maximum amount you\'re willing to pay is reached, the fleet stops launching instances even if it hasn’t met the target capacity. The MaxTotalPrice parameters are located in OnDemandOptions and SpotOptions.

', 'refs' => [ 'FleetData$TargetCapacitySpecification' => '

The number of units to request. You can choose to set the target capacity in terms of instances or a performance characteristic that is important to your application workload, such as vCPUs, memory, or I/O. If the request type is maintain, you can specify a target capacity of 0 and add capacity later.

', ], ], 'TargetCapacitySpecificationRequest' => [ 'base' => '

The number of units to request. You can choose to set the target capacity as the number of instances. Or you can set the target capacity to a performance characteristic that is important to your application workload, such as vCPUs, memory, or I/O. If the request type is maintain, you can specify a target capacity of 0 and add capacity later.

You can use the On-Demand Instance MaxTotalPrice parameter, the Spot Instance MaxTotalPrice parameter, or both parameters to ensure that your fleet cost does not exceed your budget. If you set a maximum price per hour for the On-Demand Instances and Spot Instances in your request, EC2 Fleet will launch instances until it reaches the maximum amount that you\'re willing to pay. When the maximum amount you\'re willing to pay is reached, the fleet stops launching instances even if it hasn\'t met the target capacity. The MaxTotalPrice parameters are located in OnDemandOptionsRequest and SpotOptionsRequest.

', 'refs' => [ 'CreateFleetRequest$TargetCapacitySpecification' => '

The number of units to request.

', 'ModifyFleetRequest$TargetCapacitySpecification' => '

The size of the EC2 Fleet.

', ], ], 'TargetCapacityUnitType' => [ 'base' => NULL, 'refs' => [ 'GetSpotPlacementScoresRequest$TargetCapacityUnitType' => '

The unit for the target capacity.

', 'SpotFleetRequestConfigData$TargetCapacityUnitType' => '

The unit for the target capacity. You can specify this parameter only when using attribute-based instance type selection.

Default: units (the number of instances)

', 'TargetCapacitySpecification$TargetCapacityUnitType' => '

The unit for the target capacity.

', 'TargetCapacitySpecificationRequest$TargetCapacityUnitType' => '

The unit for the target capacity. You can specify this parameter only when using attributed-based instance type selection.

Default: units (the number of instances)

', ], ], 'TargetConfiguration' => [ 'base' => '

Information about the Convertible Reserved Instance offering.

', 'refs' => [ 'TargetReservationValue$TargetConfiguration' => '

The configuration of the Convertible Reserved Instances that make up the exchange.

', ], ], 'TargetConfigurationRequest' => [ 'base' => '

Details about the target configuration.

', 'refs' => [ 'TargetConfigurationRequestSet$member' => NULL, ], ], 'TargetConfigurationRequestSet' => [ 'base' => NULL, 'refs' => [ 'AcceptReservedInstancesExchangeQuoteRequest$TargetConfigurations' => '

The configuration of the target Convertible Reserved Instance to exchange for your current Convertible Reserved Instances.

', 'GetReservedInstancesExchangeQuoteRequest$TargetConfigurations' => '

The configuration of the target Convertible Reserved Instance to exchange for your current Convertible Reserved Instances.

', ], ], 'TargetGroup' => [ 'base' => '

Describes a load balancer target group.

', 'refs' => [ 'TargetGroups$member' => NULL, ], ], 'TargetGroups' => [ 'base' => NULL, 'refs' => [ 'TargetGroupsConfig$TargetGroups' => '

One or more target groups.

', ], ], 'TargetGroupsConfig' => [ 'base' => '

Describes the target groups to attach to a Spot Fleet. Spot Fleet registers the running Spot Instances with these target groups.

', 'refs' => [ 'LoadBalancersConfig$TargetGroupsConfig' => '

The target groups.

', ], ], 'TargetNetwork' => [ 'base' => '

Describes a target network associated with a Client VPN endpoint.

', 'refs' => [ 'TargetNetworkSet$member' => NULL, ], ], 'TargetNetworkSet' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnTargetNetworksResult$ClientVpnTargetNetworks' => '

Information about the associated target networks.

', ], ], 'TargetReservationValue' => [ 'base' => '

The total value of the new Convertible Reserved Instances.

', 'refs' => [ 'TargetReservationValueSet$member' => NULL, ], ], 'TargetReservationValueSet' => [ 'base' => NULL, 'refs' => [ 'GetReservedInstancesExchangeQuoteResult$TargetConfigurationValueSet' => '

The values of the target Convertible Reserved Instances.

', ], ], 'TargetStorageTier' => [ 'base' => NULL, 'refs' => [ 'ModifySnapshotTierRequest$StorageTier' => '

The name of the storage tier. You must specify archive.

', ], ], 'TelemetryStatus' => [ 'base' => NULL, 'refs' => [ 'VgwTelemetry$Status' => '

The status of the VPN tunnel.

', ], ], 'Tenancy' => [ 'base' => NULL, 'refs' => [ 'CreateVpcRequest$InstanceTenancy' => '

The tenancy options for instances launched into the VPC. For default, instances are launched with shared tenancy by default. You can launch instances with any tenancy into a shared tenancy VPC. For dedicated, instances are launched as dedicated tenancy instances by default. You can only launch instances with a tenancy of dedicated or host into a dedicated tenancy VPC.

Important: The host value cannot be used with this parameter. Use the default or dedicated values only.

Default: default

', 'DescribeReservedInstancesOfferingsRequest$InstanceTenancy' => '

The tenancy of the instances covered by the reservation. A Reserved Instance with a tenancy of dedicated is applied to instances that run in a VPC on single-tenant hardware (i.e., Dedicated Instances).

Important: The host value cannot be used with this parameter. Use the default or dedicated values only.

Default: default

', 'LaunchTemplatePlacement$Tenancy' => '

The tenancy of the instance. An instance with a tenancy of dedicated runs on single-tenant hardware.

', 'LaunchTemplatePlacementRequest$Tenancy' => '

The tenancy of the instance. An instance with a tenancy of dedicated runs on single-tenant hardware.

', 'Placement$Tenancy' => '

The tenancy of the instance. An instance with a tenancy of dedicated runs on single-tenant hardware.

This parameter is not supported for CreateFleet. The host tenancy is not supported for ImportInstance or for T3 instances that are configured for the unlimited CPU credit option.

', 'ReservedInstances$InstanceTenancy' => '

The tenancy of the instance.

', 'ReservedInstancesOffering$InstanceTenancy' => '

The tenancy of the instance.

', 'SpotPlacement$Tenancy' => '

The tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of dedicated runs on single-tenant hardware. The host tenancy is not supported for Spot Instances.

', 'Vpc$InstanceTenancy' => '

The allowed tenancy of instances launched into the VPC.

', ], ], 'TerminateClientVpnConnectionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'TerminateClientVpnConnectionsResult' => [ 'base' => NULL, 'refs' => [], ], 'TerminateConnectionStatus' => [ 'base' => '

Information about a terminated Client VPN endpoint client connection.

', 'refs' => [ 'TerminateConnectionStatusSet$member' => NULL, ], ], 'TerminateConnectionStatusSet' => [ 'base' => NULL, 'refs' => [ 'TerminateClientVpnConnectionsResult$ConnectionStatuses' => '

The current state of the client connections.

', ], ], 'TerminateInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'TerminateInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'ThreadsPerCore' => [ 'base' => NULL, 'refs' => [ 'ThreadsPerCoreList$member' => NULL, 'VCpuInfo$DefaultThreadsPerCore' => '

The default number of threads per core for the instance type.

', ], ], 'ThreadsPerCoreList' => [ 'base' => NULL, 'refs' => [ 'VCpuInfo$ValidThreadsPerCore' => '

The valid number of threads per core that can be configured for the instance type.

', ], ], 'ThroughResourcesStatement' => [ 'base' => '

Describes a through resource statement.

', 'refs' => [ 'ThroughResourcesStatementList$member' => NULL, ], ], 'ThroughResourcesStatementList' => [ 'base' => NULL, 'refs' => [ 'AccessScopePath$ThroughResources' => '

The through resources.

', ], ], 'ThroughResourcesStatementRequest' => [ 'base' => '

Describes a through resource statement.

', 'refs' => [ 'ThroughResourcesStatementRequestList$member' => NULL, ], ], 'ThroughResourcesStatementRequestList' => [ 'base' => NULL, 'refs' => [ 'AccessScopePathRequest$ThroughResources' => '

The through resources.

', ], ], 'TieringOperationStatus' => [ 'base' => NULL, 'refs' => [ 'SnapshotTierStatus$LastTieringOperationStatus' => '

The status of the last archive or restore process.

', ], ], 'TotalLocalStorageGB' => [ 'base' => '

The minimum and maximum amount of total local storage, in GB.

', 'refs' => [ 'InstanceRequirements$TotalLocalStorageGB' => '

The minimum and maximum amount of total local storage, in GB.

Default: No minimum or maximum limits

', ], ], 'TotalLocalStorageGBRequest' => [ 'base' => '

The minimum and maximum amount of total local storage, in GB.

', 'refs' => [ 'InstanceRequirementsRequest$TotalLocalStorageGB' => '

The minimum and maximum amount of total local storage, in GB.

Default: No minimum or maximum limits

', ], ], 'TpmSupportValues' => [ 'base' => NULL, 'refs' => [ 'Image$TpmSupport' => '

If the image is configured for NitroTPM support, the value is v2.0. For more information, see NitroTPM in the Amazon EC2 User Guide.

', 'RegisterImageRequest$TpmSupport' => '

Set to v2.0 to enable Trusted Platform Module (TPM) support. For more information, see NitroTPM in the Amazon EC2 User Guide.

', ], ], 'TrafficDirection' => [ 'base' => NULL, 'refs' => [ 'CreateTrafficMirrorFilterRuleRequest$TrafficDirection' => '

The type of traffic.

', 'ModifyTrafficMirrorFilterRuleRequest$TrafficDirection' => '

The type of traffic to assign to the rule.

', 'TrafficMirrorFilterRule$TrafficDirection' => '

The traffic direction assigned to the Traffic Mirror rule.

', ], ], 'TrafficMirrorFilter' => [ 'base' => '

Describes the Traffic Mirror filter.

', 'refs' => [ 'CreateTrafficMirrorFilterResult$TrafficMirrorFilter' => '

Information about the Traffic Mirror filter.

', 'ModifyTrafficMirrorFilterNetworkServicesResult$TrafficMirrorFilter' => '

The Traffic Mirror filter that the network service is associated with.

', 'TrafficMirrorFilterSet$member' => NULL, ], ], 'TrafficMirrorFilterId' => [ 'base' => NULL, 'refs' => [ 'CreateTrafficMirrorFilterRuleRequest$TrafficMirrorFilterId' => '

The ID of the filter that this rule is associated with.

', 'CreateTrafficMirrorSessionRequest$TrafficMirrorFilterId' => '

The ID of the Traffic Mirror filter.

', 'DeleteTrafficMirrorFilterRequest$TrafficMirrorFilterId' => '

The ID of the Traffic Mirror filter.

', 'ModifyTrafficMirrorFilterNetworkServicesRequest$TrafficMirrorFilterId' => '

The ID of the Traffic Mirror filter.

', 'ModifyTrafficMirrorSessionRequest$TrafficMirrorFilterId' => '

The ID of the Traffic Mirror filter.

', 'TrafficMirrorFilterIdList$member' => NULL, ], ], 'TrafficMirrorFilterIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeTrafficMirrorFiltersRequest$TrafficMirrorFilterIds' => '

The ID of the Traffic Mirror filter.

', ], ], 'TrafficMirrorFilterRule' => [ 'base' => '

Describes the Traffic Mirror rule.

', 'refs' => [ 'CreateTrafficMirrorFilterRuleResult$TrafficMirrorFilterRule' => '

The Traffic Mirror rule.

', 'ModifyTrafficMirrorFilterRuleResult$TrafficMirrorFilterRule' => '

Modifies a Traffic Mirror rule.

', 'TrafficMirrorFilterRuleList$member' => NULL, ], ], 'TrafficMirrorFilterRuleField' => [ 'base' => NULL, 'refs' => [ 'TrafficMirrorFilterRuleFieldList$member' => NULL, ], ], 'TrafficMirrorFilterRuleFieldList' => [ 'base' => NULL, 'refs' => [ 'ModifyTrafficMirrorFilterRuleRequest$RemoveFields' => '

The properties that you want to remove from the Traffic Mirror filter rule.

When you remove a property from a Traffic Mirror filter rule, the property is set to the default.

', ], ], 'TrafficMirrorFilterRuleIdWithResolver' => [ 'base' => NULL, 'refs' => [ 'DeleteTrafficMirrorFilterRuleRequest$TrafficMirrorFilterRuleId' => '

The ID of the Traffic Mirror rule.

', 'ModifyTrafficMirrorFilterRuleRequest$TrafficMirrorFilterRuleId' => '

The ID of the Traffic Mirror rule.

', ], ], 'TrafficMirrorFilterRuleList' => [ 'base' => NULL, 'refs' => [ 'TrafficMirrorFilter$IngressFilterRules' => '

Information about the ingress rules that are associated with the Traffic Mirror filter.

', 'TrafficMirrorFilter$EgressFilterRules' => '

Information about the egress rules that are associated with the Traffic Mirror filter.

', ], ], 'TrafficMirrorFilterSet' => [ 'base' => NULL, 'refs' => [ 'DescribeTrafficMirrorFiltersResult$TrafficMirrorFilters' => '

Information about one or more Traffic Mirror filters.

', ], ], 'TrafficMirrorNetworkService' => [ 'base' => NULL, 'refs' => [ 'TrafficMirrorNetworkServiceList$member' => NULL, ], ], 'TrafficMirrorNetworkServiceList' => [ 'base' => NULL, 'refs' => [ 'ModifyTrafficMirrorFilterNetworkServicesRequest$AddNetworkServices' => '

The network service, for example Amazon DNS, that you want to mirror.

', 'ModifyTrafficMirrorFilterNetworkServicesRequest$RemoveNetworkServices' => '

The network service, for example Amazon DNS, that you no longer want to mirror.

', 'TrafficMirrorFilter$NetworkServices' => '

The network service traffic that is associated with the Traffic Mirror filter.

', ], ], 'TrafficMirrorPortRange' => [ 'base' => '

Describes the Traffic Mirror port range.

', 'refs' => [ 'TrafficMirrorFilterRule$DestinationPortRange' => '

The destination port range assigned to the Traffic Mirror rule.

', 'TrafficMirrorFilterRule$SourcePortRange' => '

The source port range assigned to the Traffic Mirror rule.

', ], ], 'TrafficMirrorPortRangeRequest' => [ 'base' => '

Information about the Traffic Mirror filter rule port range.

', 'refs' => [ 'CreateTrafficMirrorFilterRuleRequest$DestinationPortRange' => '

The destination port range.

', 'CreateTrafficMirrorFilterRuleRequest$SourcePortRange' => '

The source port range.

', 'ModifyTrafficMirrorFilterRuleRequest$DestinationPortRange' => '

The destination ports that are associated with the Traffic Mirror rule.

', 'ModifyTrafficMirrorFilterRuleRequest$SourcePortRange' => '

The port range to assign to the Traffic Mirror rule.

', ], ], 'TrafficMirrorRuleAction' => [ 'base' => NULL, 'refs' => [ 'CreateTrafficMirrorFilterRuleRequest$RuleAction' => '

The action to take on the filtered traffic.

', 'ModifyTrafficMirrorFilterRuleRequest$RuleAction' => '

The action to assign to the rule.

', 'TrafficMirrorFilterRule$RuleAction' => '

The action assigned to the Traffic Mirror rule.

', ], ], 'TrafficMirrorSession' => [ 'base' => '

Describes a Traffic Mirror session.

', 'refs' => [ 'CreateTrafficMirrorSessionResult$TrafficMirrorSession' => '

Information about the Traffic Mirror session.

', 'ModifyTrafficMirrorSessionResult$TrafficMirrorSession' => '

Information about the Traffic Mirror session.

', 'TrafficMirrorSessionSet$member' => NULL, ], ], 'TrafficMirrorSessionField' => [ 'base' => NULL, 'refs' => [ 'TrafficMirrorSessionFieldList$member' => NULL, ], ], 'TrafficMirrorSessionFieldList' => [ 'base' => NULL, 'refs' => [ 'ModifyTrafficMirrorSessionRequest$RemoveFields' => '

The properties that you want to remove from the Traffic Mirror session.

When you remove a property from a Traffic Mirror session, the property is set to the default.

', ], ], 'TrafficMirrorSessionId' => [ 'base' => NULL, 'refs' => [ 'DeleteTrafficMirrorSessionRequest$TrafficMirrorSessionId' => '

The ID of the Traffic Mirror session.

', 'ModifyTrafficMirrorSessionRequest$TrafficMirrorSessionId' => '

The ID of the Traffic Mirror session.

', 'TrafficMirrorSessionIdList$member' => NULL, ], ], 'TrafficMirrorSessionIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeTrafficMirrorSessionsRequest$TrafficMirrorSessionIds' => '

The ID of the Traffic Mirror session.

', ], ], 'TrafficMirrorSessionSet' => [ 'base' => NULL, 'refs' => [ 'DescribeTrafficMirrorSessionsResult$TrafficMirrorSessions' => '

Describes one or more Traffic Mirror sessions. By default, all Traffic Mirror sessions are described. Alternatively, you can filter the results.

', ], ], 'TrafficMirrorTarget' => [ 'base' => '

Describes a Traffic Mirror target.

', 'refs' => [ 'CreateTrafficMirrorTargetResult$TrafficMirrorTarget' => '

Information about the Traffic Mirror target.

', 'TrafficMirrorTargetSet$member' => NULL, ], ], 'TrafficMirrorTargetId' => [ 'base' => NULL, 'refs' => [ 'CreateTrafficMirrorSessionRequest$TrafficMirrorTargetId' => '

The ID of the Traffic Mirror target.

', 'DeleteTrafficMirrorTargetRequest$TrafficMirrorTargetId' => '

The ID of the Traffic Mirror target.

', 'ModifyTrafficMirrorSessionRequest$TrafficMirrorTargetId' => '

The Traffic Mirror target. The target must be in the same VPC as the source, or have a VPC peering connection with the source.

', 'TrafficMirrorTargetIdList$member' => NULL, ], ], 'TrafficMirrorTargetIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeTrafficMirrorTargetsRequest$TrafficMirrorTargetIds' => '

The ID of the Traffic Mirror targets.

', ], ], 'TrafficMirrorTargetSet' => [ 'base' => NULL, 'refs' => [ 'DescribeTrafficMirrorTargetsResult$TrafficMirrorTargets' => '

Information about one or more Traffic Mirror targets.

', ], ], 'TrafficMirrorTargetType' => [ 'base' => NULL, 'refs' => [ 'TrafficMirrorTarget$Type' => '

The type of Traffic Mirror target.

', ], ], 'TrafficMirroringMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeTrafficMirrorFiltersRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTrafficMirrorSessionsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTrafficMirrorTargetsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'TrafficType' => [ 'base' => NULL, 'refs' => [ 'CreateFlowLogsRequest$TrafficType' => '

The type of traffic to monitor (accepted traffic, rejected traffic, or all traffic). This parameter is not supported for transit gateway resource types. It is required for the other resource types.

', 'FlowLog$TrafficType' => '

The type of traffic captured for the flow log.

', ], ], 'TransitAssociationGatewayId' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayPeeringAttachmentRequest$PeerTransitGatewayId' => '

The ID of the peer transit gateway with which to create the peering attachment.

', ], ], 'TransitGateway' => [ 'base' => '

Describes a transit gateway.

', 'refs' => [ 'CreateTransitGatewayResult$TransitGateway' => '

Information about the transit gateway.

', 'DeleteTransitGatewayResult$TransitGateway' => '

Information about the deleted transit gateway.

', 'ModifyTransitGatewayResult$TransitGateway' => '

Information about the transit gateway.

', 'TransitGatewayList$member' => NULL, ], ], 'TransitGatewayAssociation' => [ 'base' => '

Describes an association between a resource attachment and a transit gateway route table.

', 'refs' => [ 'AssociateTransitGatewayRouteTableResult$Association' => '

The ID of the association.

', 'DisassociateTransitGatewayRouteTableResult$Association' => '

Information about the association.

', ], ], 'TransitGatewayAssociationState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayAssociation$State' => '

The state of the association.

', 'TransitGatewayAttachmentAssociation$State' => '

The state of the association.

', 'TransitGatewayPolicyTableAssociation$State' => '

The state of the transit gateway policy table association.

', 'TransitGatewayRouteTableAssociation$State' => '

The state of the association.

', ], ], 'TransitGatewayAttachment' => [ 'base' => '

Describes an attachment between a resource and a transit gateway.

', 'refs' => [ 'TransitGatewayAttachmentList$member' => NULL, ], ], 'TransitGatewayAttachmentAssociation' => [ 'base' => '

Describes an association.

', 'refs' => [ 'TransitGatewayAttachment$Association' => '

The association.

', ], ], 'TransitGatewayAttachmentBgpConfiguration' => [ 'base' => '

The BGP configuration information.

', 'refs' => [ 'TransitGatewayAttachmentBgpConfigurationList$member' => NULL, ], ], 'TransitGatewayAttachmentBgpConfigurationList' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayConnectPeerConfiguration$BgpConfigurations' => '

The BGP configuration details.

', ], ], 'TransitGatewayAttachmentId' => [ 'base' => NULL, 'refs' => [ 'AcceptTransitGatewayMulticastDomainAssociationsRequest$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment.

', 'AcceptTransitGatewayPeeringAttachmentRequest$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment.

', 'AcceptTransitGatewayVpcAttachmentRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'AssociateTransitGatewayMulticastDomainRequest$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment to associate with the transit gateway multicast domain.

', 'AssociateTransitGatewayPolicyTableRequest$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment to associate with the policy table.

', 'AssociateTransitGatewayRouteTableRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'CreateTransitGatewayConnectPeerRequest$TransitGatewayAttachmentId' => '

The ID of the Connect attachment.

', 'CreateTransitGatewayConnectRequest$TransportTransitGatewayAttachmentId' => '

The ID of the transit gateway attachment. You can specify a VPC attachment or Amazon Web Services Direct Connect attachment.

', 'CreateTransitGatewayPrefixListReferenceRequest$TransitGatewayAttachmentId' => '

The ID of the attachment to which traffic is routed.

', 'CreateTransitGatewayRouteRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'CreateTransitGatewayRouteTableAnnouncementRequest$PeeringAttachmentId' => '

The ID of the peering attachment.

', 'DeleteTransitGatewayConnectRequest$TransitGatewayAttachmentId' => '

The ID of the Connect attachment.

', 'DeleteTransitGatewayPeeringAttachmentRequest$TransitGatewayAttachmentId' => '

The ID of the transit gateway peering attachment.

', 'DeleteTransitGatewayVpcAttachmentRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'DisableTransitGatewayRouteTablePropagationRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'DisassociateTransitGatewayMulticastDomainRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'DisassociateTransitGatewayPolicyTableRequest$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment to disassociate from the policy table.

', 'DisassociateTransitGatewayRouteTableRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'EnableTransitGatewayRouteTablePropagationRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'GetTransitGatewayAttachmentPropagationsRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'ModifyTransitGatewayPrefixListReferenceRequest$TransitGatewayAttachmentId' => '

The ID of the attachment to which traffic is routed.

', 'ModifyTransitGatewayVpcAttachmentRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'RejectTransitGatewayMulticastDomainAssociationsRequest$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment.

', 'RejectTransitGatewayPeeringAttachmentRequest$TransitGatewayAttachmentId' => '

The ID of the transit gateway peering attachment.

', 'RejectTransitGatewayVpcAttachmentRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'ReplaceTransitGatewayRouteRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayAssociation$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayAttachmentIdStringList$member' => NULL, 'TransitGatewayConnect$TransitGatewayAttachmentId' => '

The ID of the Connect attachment.

', 'TransitGatewayConnect$TransportTransitGatewayAttachmentId' => '

The ID of the attachment from which the Connect attachment was created.

', 'TransitGatewayConnectPeer$TransitGatewayAttachmentId' => '

The ID of the Connect attachment.

', 'TransitGatewayPolicyTableAssociation$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment.

', 'TransitGatewayPrefixListAttachment$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayPropagation$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayRouteTableAnnouncement$PeeringAttachmentId' => '

The ID of the peering attachment.

', 'VpnConnectionOptionsSpecification$TransportTransitGatewayAttachmentId' => '

The transit gateway attachment ID to use for the VPN tunnel.

Required if OutsideIpAddressType is set to PrivateIpv4.

', ], ], 'TransitGatewayAttachmentIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayAttachmentsRequest$TransitGatewayAttachmentIds' => '

The IDs of the attachments.

', 'DescribeTransitGatewayConnectsRequest$TransitGatewayAttachmentIds' => '

The IDs of the attachments.

', 'DescribeTransitGatewayPeeringAttachmentsRequest$TransitGatewayAttachmentIds' => '

One or more IDs of the transit gateway peering attachments.

', 'DescribeTransitGatewayVpcAttachmentsRequest$TransitGatewayAttachmentIds' => '

The IDs of the attachments.

', ], ], 'TransitGatewayAttachmentList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayAttachmentsResult$TransitGatewayAttachments' => '

Information about the attachments.

', ], ], 'TransitGatewayAttachmentPropagation' => [ 'base' => '

Describes a propagation route table.

', 'refs' => [ 'TransitGatewayAttachmentPropagationList$member' => NULL, ], ], 'TransitGatewayAttachmentPropagationList' => [ 'base' => NULL, 'refs' => [ 'GetTransitGatewayAttachmentPropagationsResult$TransitGatewayAttachmentPropagations' => '

Information about the propagation route tables.

', ], ], 'TransitGatewayAttachmentResourceType' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayAssociation$ResourceType' => '

The resource type. Note that the tgw-peering resource type has been deprecated.

', 'TransitGatewayAttachment$ResourceType' => '

The resource type. Note that the tgw-peering resource type has been deprecated.

', 'TransitGatewayMulticastDomainAssociation$ResourceType' => '

The type of resource, for example a VPC attachment.

', 'TransitGatewayMulticastDomainAssociations$ResourceType' => '

The type of resource, for example a VPC attachment.

', 'TransitGatewayMulticastGroup$ResourceType' => '

The type of resource, for example a VPC attachment.

', 'TransitGatewayPolicyTableAssociation$ResourceType' => '

The resource type for the transit gateway policy table association.

', 'TransitGatewayPrefixListAttachment$ResourceType' => '

The resource type. Note that the tgw-peering resource type has been deprecated.

', 'TransitGatewayPropagation$ResourceType' => '

The resource type. Note that the tgw-peering resource type has been deprecated.

', 'TransitGatewayRouteAttachment$ResourceType' => '

The resource type. Note that the tgw-peering resource type has been deprecated.

', 'TransitGatewayRouteTableAssociation$ResourceType' => '

The resource type. Note that the tgw-peering resource type has been deprecated.

', 'TransitGatewayRouteTablePropagation$ResourceType' => '

The type of resource. Note that the tgw-peering resource type has been deprecated.

', ], ], 'TransitGatewayAttachmentState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayAttachment$State' => '

The attachment state. Note that the initiating state has been deprecated.

', 'TransitGatewayConnect$State' => '

The state of the attachment.

', 'TransitGatewayPeeringAttachment$State' => '

The state of the transit gateway peering attachment. Note that the initiating state has been deprecated.

', 'TransitGatewayVpcAttachment$State' => '

The state of the VPC attachment. Note that the initiating state has been deprecated.

', ], ], 'TransitGatewayCidrBlockStringList' => [ 'base' => NULL, 'refs' => [ 'ModifyTransitGatewayOptions$AddTransitGatewayCidrBlocks' => '

Adds IPv4 or IPv6 CIDR blocks for the transit gateway. Must be a size /24 CIDR block or larger for IPv4, or a size /64 CIDR block or larger for IPv6.

', 'ModifyTransitGatewayOptions$RemoveTransitGatewayCidrBlocks' => '

Removes CIDR blocks for the transit gateway.

', 'TransitGatewayRequestOptions$TransitGatewayCidrBlocks' => '

One or more IPv4 or IPv6 CIDR blocks for the transit gateway. Must be a size /24 CIDR block or larger for IPv4, or a size /64 CIDR block or larger for IPv6.

', ], ], 'TransitGatewayConnect' => [ 'base' => '

Describes a transit gateway Connect attachment.

', 'refs' => [ 'CreateTransitGatewayConnectResult$TransitGatewayConnect' => '

Information about the Connect attachment.

', 'DeleteTransitGatewayConnectResult$TransitGatewayConnect' => '

Information about the deleted Connect attachment.

', 'TransitGatewayConnectList$member' => NULL, ], ], 'TransitGatewayConnectList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayConnectsResult$TransitGatewayConnects' => '

Information about the Connect attachments.

', ], ], 'TransitGatewayConnectOptions' => [ 'base' => '

Describes the Connect attachment options.

', 'refs' => [ 'TransitGatewayConnect$Options' => '

The Connect attachment options.

', ], ], 'TransitGatewayConnectPeer' => [ 'base' => '

Describes a transit gateway Connect peer.

', 'refs' => [ 'CreateTransitGatewayConnectPeerResult$TransitGatewayConnectPeer' => '

Information about the Connect peer.

', 'DeleteTransitGatewayConnectPeerResult$TransitGatewayConnectPeer' => '

Information about the deleted Connect peer.

', 'TransitGatewayConnectPeerList$member' => NULL, ], ], 'TransitGatewayConnectPeerConfiguration' => [ 'base' => '

Describes the Connect peer details.

', 'refs' => [ 'TransitGatewayConnectPeer$ConnectPeerConfiguration' => '

The Connect peer details.

', ], ], 'TransitGatewayConnectPeerId' => [ 'base' => NULL, 'refs' => [ 'DeleteTransitGatewayConnectPeerRequest$TransitGatewayConnectPeerId' => '

The ID of the Connect peer.

', 'TransitGatewayConnectPeer$TransitGatewayConnectPeerId' => '

The ID of the Connect peer.

', 'TransitGatewayConnectPeerIdStringList$member' => NULL, ], ], 'TransitGatewayConnectPeerIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayConnectPeersRequest$TransitGatewayConnectPeerIds' => '

The IDs of the Connect peers.

', ], ], 'TransitGatewayConnectPeerList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayConnectPeersResult$TransitGatewayConnectPeers' => '

Information about the Connect peers.

', ], ], 'TransitGatewayConnectPeerState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayConnectPeer$State' => '

The state of the Connect peer.

', ], ], 'TransitGatewayConnectRequestBgpOptions' => [ 'base' => '

The BGP options for the Connect attachment.

', 'refs' => [ 'CreateTransitGatewayConnectPeerRequest$BgpOptions' => '

The BGP options for the Connect peer.

', ], ], 'TransitGatewayId' => [ 'base' => NULL, 'refs' => [ 'CreateRouteRequest$TransitGatewayId' => '

The ID of a transit gateway.

', 'CreateTransitGatewayMulticastDomainRequest$TransitGatewayId' => '

The ID of the transit gateway.

', 'CreateTransitGatewayPeeringAttachmentRequest$TransitGatewayId' => '

The ID of the transit gateway.

', 'CreateTransitGatewayPolicyTableRequest$TransitGatewayId' => '

The ID of the transit gateway used for the policy table.

', 'CreateTransitGatewayRouteTableRequest$TransitGatewayId' => '

The ID of the transit gateway.

', 'CreateTransitGatewayVpcAttachmentRequest$TransitGatewayId' => '

The ID of the transit gateway.

', 'CreateVpnConnectionRequest$TransitGatewayId' => '

The ID of the transit gateway. If you specify a transit gateway, you cannot specify a virtual private gateway.

', 'DeleteTransitGatewayRequest$TransitGatewayId' => '

The ID of the transit gateway.

', 'GetVpnTunnelReplacementStatusResult$TransitGatewayId' => '

The ID of the transit gateway associated with the VPN connection.

', 'ModifyTransitGatewayRequest$TransitGatewayId' => '

The ID of the transit gateway.

', 'ModifyVpnConnectionRequest$TransitGatewayId' => '

The ID of the transit gateway.

', 'ReplaceRouteRequest$TransitGatewayId' => '

The ID of a transit gateway.

', 'TransitGatewayConnect$TransitGatewayId' => '

The ID of the transit gateway.

', 'TransitGatewayIdStringList$member' => NULL, 'TransitGatewayPolicyTable$TransitGatewayId' => '

The ID of the transit gateway.

', 'TransitGatewayRouteTableAnnouncement$TransitGatewayId' => '

The ID of the transit gateway.

', 'TransitGatewayRouteTableAnnouncement$PeerTransitGatewayId' => '

The ID of the peer transit gateway.

', ], ], 'TransitGatewayIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewaysRequest$TransitGatewayIds' => '

The IDs of the transit gateways.

', ], ], 'TransitGatewayList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewaysResult$TransitGateways' => '

Information about the transit gateways.

', ], ], 'TransitGatewayMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayAttachmentsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewayConnectPeersRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewayConnectsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewayMulticastDomainsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewayPeeringAttachmentsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewayPolicyTablesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewayRouteTableAnnouncementsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewayRouteTablesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewayVpcAttachmentsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewaysRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetTransitGatewayAttachmentPropagationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetTransitGatewayMulticastDomainAssociationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetTransitGatewayPolicyTableAssociationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetTransitGatewayPolicyTableEntriesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetTransitGatewayPrefixListReferencesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetTransitGatewayRouteTableAssociationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetTransitGatewayRouteTablePropagationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'SearchTransitGatewayMulticastGroupsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'SearchTransitGatewayRoutesRequest$MaxResults' => '

The maximum number of routes to return.

', ], ], 'TransitGatewayMulitcastDomainAssociationState' => [ 'base' => NULL, 'refs' => [ 'SubnetAssociation$State' => '

The state of the subnet association.

', ], ], 'TransitGatewayMulticastDeregisteredGroupMembers' => [ 'base' => '

Describes the deregistered transit gateway multicast group members.

', 'refs' => [ 'DeregisterTransitGatewayMulticastGroupMembersResult$DeregisteredMulticastGroupMembers' => '

Information about the deregistered members.

', ], ], 'TransitGatewayMulticastDeregisteredGroupSources' => [ 'base' => '

Describes the deregistered transit gateway multicast group sources.

', 'refs' => [ 'DeregisterTransitGatewayMulticastGroupSourcesResult$DeregisteredMulticastGroupSources' => '

Information about the deregistered group sources.

', ], ], 'TransitGatewayMulticastDomain' => [ 'base' => '

Describes the transit gateway multicast domain.

', 'refs' => [ 'CreateTransitGatewayMulticastDomainResult$TransitGatewayMulticastDomain' => '

Information about the transit gateway multicast domain.

', 'DeleteTransitGatewayMulticastDomainResult$TransitGatewayMulticastDomain' => '

Information about the deleted transit gateway multicast domain.

', 'TransitGatewayMulticastDomainList$member' => NULL, ], ], 'TransitGatewayMulticastDomainAssociation' => [ 'base' => '

Describes the resources associated with the transit gateway multicast domain.

', 'refs' => [ 'TransitGatewayMulticastDomainAssociationList$member' => NULL, ], ], 'TransitGatewayMulticastDomainAssociationList' => [ 'base' => NULL, 'refs' => [ 'GetTransitGatewayMulticastDomainAssociationsResult$MulticastDomainAssociations' => '

Information about the multicast domain associations.

', ], ], 'TransitGatewayMulticastDomainAssociations' => [ 'base' => '

Describes the multicast domain associations.

', 'refs' => [ 'AcceptTransitGatewayMulticastDomainAssociationsResult$Associations' => '

Information about the multicast domain associations.

', 'AssociateTransitGatewayMulticastDomainResult$Associations' => '

Information about the transit gateway multicast domain associations.

', 'DisassociateTransitGatewayMulticastDomainResult$Associations' => '

Information about the association.

', 'RejectTransitGatewayMulticastDomainAssociationsResult$Associations' => '

Information about the multicast domain associations.

', ], ], 'TransitGatewayMulticastDomainId' => [ 'base' => NULL, 'refs' => [ 'AcceptTransitGatewayMulticastDomainAssociationsRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'AssociateTransitGatewayMulticastDomainRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'DeleteTransitGatewayMulticastDomainRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'DeregisterTransitGatewayMulticastGroupMembersRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'DeregisterTransitGatewayMulticastGroupSourcesRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'DisassociateTransitGatewayMulticastDomainRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'GetTransitGatewayMulticastDomainAssociationsRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'RegisterTransitGatewayMulticastGroupMembersRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'RegisterTransitGatewayMulticastGroupSourcesRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'RejectTransitGatewayMulticastDomainAssociationsRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'SearchTransitGatewayMulticastGroupsRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'TransitGatewayMulticastDomainIdStringList$member' => NULL, ], ], 'TransitGatewayMulticastDomainIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayMulticastDomainsRequest$TransitGatewayMulticastDomainIds' => '

The ID of the transit gateway multicast domain.

', ], ], 'TransitGatewayMulticastDomainList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayMulticastDomainsResult$TransitGatewayMulticastDomains' => '

Information about the transit gateway multicast domains.

', ], ], 'TransitGatewayMulticastDomainOptions' => [ 'base' => '

Describes the options for a transit gateway multicast domain.

', 'refs' => [ 'TransitGatewayMulticastDomain$Options' => '

The options for the transit gateway multicast domain.

', ], ], 'TransitGatewayMulticastDomainState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayMulticastDomain$State' => '

The state of the transit gateway multicast domain.

', ], ], 'TransitGatewayMulticastGroup' => [ 'base' => '

Describes the transit gateway multicast group resources.

', 'refs' => [ 'TransitGatewayMulticastGroupList$member' => NULL, ], ], 'TransitGatewayMulticastGroupList' => [ 'base' => NULL, 'refs' => [ 'SearchTransitGatewayMulticastGroupsResult$MulticastGroups' => '

Information about the transit gateway multicast group.

', ], ], 'TransitGatewayMulticastRegisteredGroupMembers' => [ 'base' => '

Describes the registered transit gateway multicast group members.

', 'refs' => [ 'RegisterTransitGatewayMulticastGroupMembersResult$RegisteredMulticastGroupMembers' => '

Information about the registered transit gateway multicast group members.

', ], ], 'TransitGatewayMulticastRegisteredGroupSources' => [ 'base' => '

Describes the members registered with the transit gateway multicast group.

', 'refs' => [ 'RegisterTransitGatewayMulticastGroupSourcesResult$RegisteredMulticastGroupSources' => '

Information about the transit gateway multicast group sources.

', ], ], 'TransitGatewayNetworkInterfaceIdList' => [ 'base' => NULL, 'refs' => [ 'DeregisterTransitGatewayMulticastGroupMembersRequest$NetworkInterfaceIds' => '

The IDs of the group members\' network interfaces.

', 'DeregisterTransitGatewayMulticastGroupSourcesRequest$NetworkInterfaceIds' => '

The IDs of the group sources\' network interfaces.

', 'RegisterTransitGatewayMulticastGroupMembersRequest$NetworkInterfaceIds' => '

The group members\' network interface IDs to register with the transit gateway multicast group.

', 'RegisterTransitGatewayMulticastGroupSourcesRequest$NetworkInterfaceIds' => '

The group sources\' network interface IDs to register with the transit gateway multicast group.

', ], ], 'TransitGatewayOptions' => [ 'base' => '

Describes the options for a transit gateway.

', 'refs' => [ 'TransitGateway$Options' => '

The transit gateway options.

', ], ], 'TransitGatewayPeeringAttachment' => [ 'base' => '

Describes the transit gateway peering attachment.

', 'refs' => [ 'AcceptTransitGatewayPeeringAttachmentResult$TransitGatewayPeeringAttachment' => '

The transit gateway peering attachment.

', 'CreateTransitGatewayPeeringAttachmentResult$TransitGatewayPeeringAttachment' => '

The transit gateway peering attachment.

', 'DeleteTransitGatewayPeeringAttachmentResult$TransitGatewayPeeringAttachment' => '

The transit gateway peering attachment.

', 'RejectTransitGatewayPeeringAttachmentResult$TransitGatewayPeeringAttachment' => '

The transit gateway peering attachment.

', 'TransitGatewayPeeringAttachmentList$member' => NULL, ], ], 'TransitGatewayPeeringAttachmentList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayPeeringAttachmentsResult$TransitGatewayPeeringAttachments' => '

The transit gateway peering attachments.

', ], ], 'TransitGatewayPeeringAttachmentOptions' => [ 'base' => '

Describes dynamic routing for the transit gateway peering attachment.

', 'refs' => [ 'TransitGatewayPeeringAttachment$Options' => '

Details about the transit gateway peering attachment.

', ], ], 'TransitGatewayPolicyRule' => [ 'base' => '

Describes a rule associated with a transit gateway policy.

', 'refs' => [ 'TransitGatewayPolicyTableEntry$PolicyRule' => '

The policy rule associated with the transit gateway policy table.

', ], ], 'TransitGatewayPolicyRuleMetaData' => [ 'base' => '

Describes the meta data tags associated with a transit gateway policy rule.

', 'refs' => [ 'TransitGatewayPolicyRule$MetaData' => '

The meta data tags used for the transit gateway policy rule.

', ], ], 'TransitGatewayPolicyTable' => [ 'base' => '

Describes a transit gateway policy table.

', 'refs' => [ 'CreateTransitGatewayPolicyTableResult$TransitGatewayPolicyTable' => '

Describes the created transit gateway policy table.

', 'DeleteTransitGatewayPolicyTableResult$TransitGatewayPolicyTable' => '

Provides details about the deleted transit gateway policy table.

', 'TransitGatewayPolicyTableList$member' => NULL, ], ], 'TransitGatewayPolicyTableAssociation' => [ 'base' => '

Describes a transit gateway policy table association.

', 'refs' => [ 'AssociateTransitGatewayPolicyTableResult$Association' => '

Describes the association of a transit gateway and a transit gateway policy table.

', 'DisassociateTransitGatewayPolicyTableResult$Association' => '

Returns details about the transit gateway policy table disassociation.

', 'TransitGatewayPolicyTableAssociationList$member' => NULL, ], ], 'TransitGatewayPolicyTableAssociationList' => [ 'base' => NULL, 'refs' => [ 'GetTransitGatewayPolicyTableAssociationsResult$Associations' => '

Returns details about the transit gateway policy table association.

', ], ], 'TransitGatewayPolicyTableEntry' => [ 'base' => '

Describes a transit gateway policy table entry

', 'refs' => [ 'TransitGatewayPolicyTableEntryList$member' => NULL, ], ], 'TransitGatewayPolicyTableEntryList' => [ 'base' => NULL, 'refs' => [ 'GetTransitGatewayPolicyTableEntriesResult$TransitGatewayPolicyTableEntries' => '

The entries for the transit gateway policy table.

', ], ], 'TransitGatewayPolicyTableId' => [ 'base' => NULL, 'refs' => [ 'AssociateTransitGatewayPolicyTableRequest$TransitGatewayPolicyTableId' => '

The ID of the transit gateway policy table to associate with the transit gateway attachment.

', 'DeleteTransitGatewayPolicyTableRequest$TransitGatewayPolicyTableId' => '

The transit gateway policy table to delete.

', 'DisassociateTransitGatewayPolicyTableRequest$TransitGatewayPolicyTableId' => '

The ID of the disassociated policy table.

', 'GetTransitGatewayPolicyTableAssociationsRequest$TransitGatewayPolicyTableId' => '

The ID of the transit gateway policy table.

', 'GetTransitGatewayPolicyTableEntriesRequest$TransitGatewayPolicyTableId' => '

The ID of the transit gateway policy table.

', 'TransitGatewayPolicyTable$TransitGatewayPolicyTableId' => '

The ID of the transit gateway policy table.

', 'TransitGatewayPolicyTableAssociation$TransitGatewayPolicyTableId' => '

The ID of the transit gateway policy table.

', 'TransitGatewayPolicyTableIdStringList$member' => NULL, ], ], 'TransitGatewayPolicyTableIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayPolicyTablesRequest$TransitGatewayPolicyTableIds' => '

The IDs of the transit gateway policy tables.

', ], ], 'TransitGatewayPolicyTableList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayPolicyTablesResult$TransitGatewayPolicyTables' => '

Describes the transit gateway policy tables.

', ], ], 'TransitGatewayPolicyTableState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayPolicyTable$State' => '

The state of the transit gateway policy table

', ], ], 'TransitGatewayPrefixListAttachment' => [ 'base' => '

Describes a transit gateway prefix list attachment.

', 'refs' => [ 'TransitGatewayPrefixListReference$TransitGatewayAttachment' => '

Information about the transit gateway attachment.

', ], ], 'TransitGatewayPrefixListReference' => [ 'base' => '

Describes a prefix list reference.

', 'refs' => [ 'CreateTransitGatewayPrefixListReferenceResult$TransitGatewayPrefixListReference' => '

Information about the prefix list reference.

', 'DeleteTransitGatewayPrefixListReferenceResult$TransitGatewayPrefixListReference' => '

Information about the deleted prefix list reference.

', 'ModifyTransitGatewayPrefixListReferenceResult$TransitGatewayPrefixListReference' => '

Information about the prefix list reference.

', 'TransitGatewayPrefixListReferenceSet$member' => NULL, ], ], 'TransitGatewayPrefixListReferenceSet' => [ 'base' => NULL, 'refs' => [ 'GetTransitGatewayPrefixListReferencesResult$TransitGatewayPrefixListReferences' => '

Information about the prefix list references.

', ], ], 'TransitGatewayPrefixListReferenceState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayPrefixListReference$State' => '

The state of the prefix list reference.

', ], ], 'TransitGatewayPropagation' => [ 'base' => '

Describes route propagation.

', 'refs' => [ 'DisableTransitGatewayRouteTablePropagationResult$Propagation' => '

Information about route propagation.

', 'EnableTransitGatewayRouteTablePropagationResult$Propagation' => '

Information about route propagation.

', ], ], 'TransitGatewayPropagationState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayAttachmentPropagation$State' => '

The state of the propagation route table.

', 'TransitGatewayPropagation$State' => '

The state.

', 'TransitGatewayRouteTablePropagation$State' => '

The state of the resource.

', ], ], 'TransitGatewayRequestOptions' => [ 'base' => '

Describes the options for a transit gateway.

', 'refs' => [ 'CreateTransitGatewayRequest$Options' => '

The transit gateway options.

', ], ], 'TransitGatewayRoute' => [ 'base' => '

Describes a route for a transit gateway route table.

', 'refs' => [ 'CreateTransitGatewayRouteResult$Route' => '

Information about the route.

', 'DeleteTransitGatewayRouteResult$Route' => '

Information about the route.

', 'ReplaceTransitGatewayRouteResult$Route' => '

Information about the modified route.

', 'TransitGatewayRouteList$member' => NULL, ], ], 'TransitGatewayRouteAttachment' => [ 'base' => '

Describes a route attachment.

', 'refs' => [ 'TransitGatewayRouteAttachmentList$member' => NULL, ], ], 'TransitGatewayRouteAttachmentList' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayRoute$TransitGatewayAttachments' => '

The attachments.

', ], ], 'TransitGatewayRouteList' => [ 'base' => NULL, 'refs' => [ 'SearchTransitGatewayRoutesResult$Routes' => '

Information about the routes.

', ], ], 'TransitGatewayRouteState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayRoute$State' => '

The state of the route.

', ], ], 'TransitGatewayRouteTable' => [ 'base' => '

Describes a transit gateway route table.

', 'refs' => [ 'CreateTransitGatewayRouteTableResult$TransitGatewayRouteTable' => '

Information about the transit gateway route table.

', 'DeleteTransitGatewayRouteTableResult$TransitGatewayRouteTable' => '

Information about the deleted transit gateway route table.

', 'TransitGatewayRouteTableList$member' => NULL, ], ], 'TransitGatewayRouteTableAnnouncement' => [ 'base' => '

Describes a transit gateway route table announcement.

', 'refs' => [ 'CreateTransitGatewayRouteTableAnnouncementResult$TransitGatewayRouteTableAnnouncement' => '

Provides details about the transit gateway route table announcement.

', 'DeleteTransitGatewayRouteTableAnnouncementResult$TransitGatewayRouteTableAnnouncement' => '

Provides details about a deleted transit gateway route table.

', 'TransitGatewayRouteTableAnnouncementList$member' => NULL, ], ], 'TransitGatewayRouteTableAnnouncementDirection' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayRouteTableAnnouncement$AnnouncementDirection' => '

The direction for the route table announcement.

', ], ], 'TransitGatewayRouteTableAnnouncementId' => [ 'base' => NULL, 'refs' => [ 'DeleteTransitGatewayRouteTableAnnouncementRequest$TransitGatewayRouteTableAnnouncementId' => '

The transit gateway route table ID that\'s being deleted.

', 'DisableTransitGatewayRouteTablePropagationRequest$TransitGatewayRouteTableAnnouncementId' => '

The ID of the route table announcement.

', 'EnableTransitGatewayRouteTablePropagationRequest$TransitGatewayRouteTableAnnouncementId' => '

The ID of the transit gateway route table announcement.

', 'TransitGatewayPropagation$TransitGatewayRouteTableAnnouncementId' => '

The ID of the transit gateway route table announcement.

', 'TransitGatewayRoute$TransitGatewayRouteTableAnnouncementId' => '

The ID of the transit gateway route table announcement.

', 'TransitGatewayRouteTableAnnouncement$TransitGatewayRouteTableAnnouncementId' => '

The ID of the transit gateway route table announcement.

', 'TransitGatewayRouteTableAnnouncementIdStringList$member' => NULL, 'TransitGatewayRouteTablePropagation$TransitGatewayRouteTableAnnouncementId' => '

The ID of the transit gateway route table announcement.

', ], ], 'TransitGatewayRouteTableAnnouncementIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayRouteTableAnnouncementsRequest$TransitGatewayRouteTableAnnouncementIds' => '

The IDs of the transit gateway route tables that are being advertised.

', ], ], 'TransitGatewayRouteTableAnnouncementList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayRouteTableAnnouncementsResult$TransitGatewayRouteTableAnnouncements' => '

Describes the transit gateway route table announcement.

', ], ], 'TransitGatewayRouteTableAnnouncementState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayRouteTableAnnouncement$State' => '

The state of the transit gateway announcement.

', ], ], 'TransitGatewayRouteTableAssociation' => [ 'base' => '

Describes an association between a route table and a resource attachment.

', 'refs' => [ 'TransitGatewayRouteTableAssociationList$member' => NULL, ], ], 'TransitGatewayRouteTableAssociationList' => [ 'base' => NULL, 'refs' => [ 'GetTransitGatewayRouteTableAssociationsResult$Associations' => '

Information about the associations.

', ], ], 'TransitGatewayRouteTableId' => [ 'base' => NULL, 'refs' => [ 'AssociateTransitGatewayRouteTableRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'CreateTransitGatewayPrefixListReferenceRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'CreateTransitGatewayRouteRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'CreateTransitGatewayRouteTableAnnouncementRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'DeleteTransitGatewayPrefixListReferenceRequest$TransitGatewayRouteTableId' => '

The ID of the route table.

', 'DeleteTransitGatewayRouteRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'DeleteTransitGatewayRouteTableRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'DisableTransitGatewayRouteTablePropagationRequest$TransitGatewayRouteTableId' => '

The ID of the propagation route table.

', 'DisassociateTransitGatewayRouteTableRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'EnableTransitGatewayRouteTablePropagationRequest$TransitGatewayRouteTableId' => '

The ID of the propagation route table.

', 'ExportTransitGatewayRoutesRequest$TransitGatewayRouteTableId' => '

The ID of the route table.

', 'GetTransitGatewayPrefixListReferencesRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'GetTransitGatewayRouteTableAssociationsRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'GetTransitGatewayRouteTablePropagationsRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'ModifyTransitGatewayOptions$AssociationDefaultRouteTableId' => '

The ID of the default association route table.

', 'ModifyTransitGatewayOptions$PropagationDefaultRouteTableId' => '

The ID of the default propagation route table.

', 'ModifyTransitGatewayPrefixListReferenceRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'ReplaceTransitGatewayRouteRequest$TransitGatewayRouteTableId' => '

The ID of the route table.

', 'SearchTransitGatewayRoutesRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'TransitGatewayAssociation$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'TransitGatewayPolicyTableEntry$TargetRouteTableId' => '

The ID of the target route table.

', 'TransitGatewayPrefixListReference$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'TransitGatewayRouteTableAnnouncement$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'TransitGatewayRouteTableIdStringList$member' => NULL, ], ], 'TransitGatewayRouteTableIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayRouteTablesRequest$TransitGatewayRouteTableIds' => '

The IDs of the transit gateway route tables.

', ], ], 'TransitGatewayRouteTableList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayRouteTablesResult$TransitGatewayRouteTables' => '

Information about the transit gateway route tables.

', ], ], 'TransitGatewayRouteTablePropagation' => [ 'base' => '

Describes a route table propagation.

', 'refs' => [ 'TransitGatewayRouteTablePropagationList$member' => NULL, ], ], 'TransitGatewayRouteTablePropagationList' => [ 'base' => NULL, 'refs' => [ 'GetTransitGatewayRouteTablePropagationsResult$TransitGatewayRouteTablePropagations' => '

Information about the route table propagations.

', ], ], 'TransitGatewayRouteTableRoute' => [ 'base' => '

Describes a route in a transit gateway route table.

', 'refs' => [ 'Explanation$TransitGatewayRouteTableRoute' => '

The transit gateway route table route.

', 'PathComponent$TransitGatewayRouteTableRoute' => '

The route in a transit gateway route table.

', ], ], 'TransitGatewayRouteTableState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayRouteTable$State' => '

The state of the transit gateway route table.

', ], ], 'TransitGatewayRouteType' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayRoute$Type' => '

The route type.

', ], ], 'TransitGatewayState' => [ 'base' => NULL, 'refs' => [ 'TransitGateway$State' => '

The state of the transit gateway.

', ], ], 'TransitGatewaySubnetIdList' => [ 'base' => NULL, 'refs' => [ 'AssociateTransitGatewayMulticastDomainRequest$SubnetIds' => '

The IDs of the subnets to associate with the transit gateway multicast domain.

', 'CreateTransitGatewayVpcAttachmentRequest$SubnetIds' => '

The IDs of one or more subnets. You can specify only one subnet per Availability Zone. You must specify at least one subnet, but we recommend that you specify two subnets for better availability. The transit gateway uses one IP address from each specified subnet.

', 'DisassociateTransitGatewayMulticastDomainRequest$SubnetIds' => '

The IDs of the subnets;

', 'ModifyTransitGatewayVpcAttachmentRequest$AddSubnetIds' => '

The IDs of one or more subnets to add. You can specify at most one subnet per Availability Zone.

', 'ModifyTransitGatewayVpcAttachmentRequest$RemoveSubnetIds' => '

The IDs of one or more subnets to remove.

', ], ], 'TransitGatewayVpcAttachment' => [ 'base' => '

Describes a VPC attachment.

', 'refs' => [ 'AcceptTransitGatewayVpcAttachmentResult$TransitGatewayVpcAttachment' => '

The VPC attachment.

', 'CreateTransitGatewayVpcAttachmentResult$TransitGatewayVpcAttachment' => '

Information about the VPC attachment.

', 'DeleteTransitGatewayVpcAttachmentResult$TransitGatewayVpcAttachment' => '

Information about the deleted VPC attachment.

', 'ModifyTransitGatewayVpcAttachmentResult$TransitGatewayVpcAttachment' => '

Information about the modified attachment.

', 'RejectTransitGatewayVpcAttachmentResult$TransitGatewayVpcAttachment' => '

Information about the attachment.

', 'TransitGatewayVpcAttachmentList$member' => NULL, ], ], 'TransitGatewayVpcAttachmentList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayVpcAttachmentsResult$TransitGatewayVpcAttachments' => '

Information about the VPC attachments.

', ], ], 'TransitGatewayVpcAttachmentOptions' => [ 'base' => '

Describes the VPC attachment options.

', 'refs' => [ 'TransitGatewayVpcAttachment$Options' => '

The VPC attachment options.

', ], ], 'TransportProtocol' => [ 'base' => NULL, 'refs' => [ 'ClientVpnEndpoint$TransportProtocol' => '

The transport protocol used by the Client VPN endpoint.

', 'CreateClientVpnEndpointRequest$TransportProtocol' => '

The transport protocol to be used by the VPN session.

Default value: udp

', ], ], 'TrunkInterfaceAssociation' => [ 'base' => '

Information about an association between a branch network interface with a trunk network interface.

', 'refs' => [ 'AssociateTrunkInterfaceResult$InterfaceAssociation' => '

Information about the association between the trunk network interface and branch network interface.

', 'TrunkInterfaceAssociationList$member' => NULL, ], ], 'TrunkInterfaceAssociationId' => [ 'base' => NULL, 'refs' => [ 'DisassociateTrunkInterfaceRequest$AssociationId' => '

The ID of the association

', 'TrunkInterfaceAssociation$AssociationId' => '

The ID of the association.

', 'TrunkInterfaceAssociationIdList$member' => NULL, ], ], 'TrunkInterfaceAssociationIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeTrunkInterfaceAssociationsRequest$AssociationIds' => '

The IDs of the associations.

', ], ], 'TrunkInterfaceAssociationList' => [ 'base' => NULL, 'refs' => [ 'DescribeTrunkInterfaceAssociationsResult$InterfaceAssociations' => '

Information about the trunk associations.

', ], ], 'TrustProviderType' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessTrustProviderRequest$TrustProviderType' => '

The type of trust provider.

', 'VerifiedAccessTrustProvider$TrustProviderType' => '

The type of Verified Access trust provider.

', 'VerifiedAccessTrustProviderCondensed$TrustProviderType' => '

The type of trust provider (user- or device-based).

', ], ], 'TunnelInsideIpVersion' => [ 'base' => NULL, 'refs' => [ 'VpnConnectionOptions$TunnelInsideIpVersion' => '

Indicates whether the VPN tunnels process IPv4 or IPv6 traffic.

', 'VpnConnectionOptionsSpecification$TunnelInsideIpVersion' => '

Indicate whether the VPN tunnels process IPv4 or IPv6 traffic.

Default: ipv4

', ], ], 'TunnelOption' => [ 'base' => '

The VPN tunnel options.

', 'refs' => [ 'TunnelOptionsList$member' => NULL, ], ], 'TunnelOptionsList' => [ 'base' => NULL, 'refs' => [ 'VpnConnectionOptions$TunnelOptions' => '

Indicates the VPN tunnel options.

', ], ], 'UnassignIpv6AddressesRequest' => [ 'base' => NULL, 'refs' => [], ], 'UnassignIpv6AddressesResult' => [ 'base' => NULL, 'refs' => [], ], 'UnassignPrivateIpAddressesRequest' => [ 'base' => '

Contains the parameters for UnassignPrivateIpAddresses.

', 'refs' => [], ], 'UnassignPrivateNatGatewayAddressRequest' => [ 'base' => NULL, 'refs' => [], ], 'UnassignPrivateNatGatewayAddressResult' => [ 'base' => NULL, 'refs' => [], ], 'UnlimitedSupportedInstanceFamily' => [ 'base' => NULL, 'refs' => [ 'GetDefaultCreditSpecificationRequest$InstanceFamily' => '

The instance family.

', 'InstanceFamilyCreditSpecification$InstanceFamily' => '

The instance family.

', 'ModifyDefaultCreditSpecificationRequest$InstanceFamily' => '

The instance family.

', ], ], 'UnlockSnapshotRequest' => [ 'base' => NULL, 'refs' => [], ], 'UnlockSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'UnmonitorInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'UnmonitorInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'UnsuccessfulInstanceCreditSpecificationErrorCode' => [ 'base' => NULL, 'refs' => [ 'UnsuccessfulInstanceCreditSpecificationItemError$Code' => '

The error code.

', ], ], 'UnsuccessfulInstanceCreditSpecificationItem' => [ 'base' => '

Describes the burstable performance instance whose credit option for CPU usage was not modified.

', 'refs' => [ 'UnsuccessfulInstanceCreditSpecificationSet$member' => NULL, ], ], 'UnsuccessfulInstanceCreditSpecificationItemError' => [ 'base' => '

Information about the error for the burstable performance instance whose credit option for CPU usage was not modified.

', 'refs' => [ 'UnsuccessfulInstanceCreditSpecificationItem$Error' => '

The applicable error for the burstable performance instance whose credit option for CPU usage was not modified.

', ], ], 'UnsuccessfulInstanceCreditSpecificationSet' => [ 'base' => NULL, 'refs' => [ 'ModifyInstanceCreditSpecificationResult$UnsuccessfulInstanceCreditSpecifications' => '

Information about the instances whose credit option for CPU usage was not modified.

', ], ], 'UnsuccessfulItem' => [ 'base' => '

Information about items that were not successfully processed in a batch call.

', 'refs' => [ 'UnsuccessfulItemList$member' => NULL, 'UnsuccessfulItemSet$member' => NULL, ], ], 'UnsuccessfulItemError' => [ 'base' => '

Information about the error that occurred. For more information about errors, see Error codes.

', 'refs' => [ 'UnsuccessfulItem$Error' => '

Information about the error.

', ], ], 'UnsuccessfulItemList' => [ 'base' => NULL, 'refs' => [ 'ModifyHostsResult$Unsuccessful' => '

The IDs of the Dedicated Hosts that could not be modified. Check whether the setting you requested can be used.

', 'ReleaseHostsResult$Unsuccessful' => '

The IDs of the Dedicated Hosts that could not be released, including an error message.

', ], ], 'UnsuccessfulItemSet' => [ 'base' => NULL, 'refs' => [ 'AcceptVpcEndpointConnectionsResult$Unsuccessful' => '

Information about the interface endpoints that were not accepted, if applicable.

', 'CreateFlowLogsResult$Unsuccessful' => '

Information about the flow logs that could not be created successfully.

', 'DeleteFlowLogsResult$Unsuccessful' => '

Information about the flow logs that could not be deleted successfully.

', 'DeleteVpcEndpointConnectionNotificationsResult$Unsuccessful' => '

Information about the notifications that could not be deleted successfully.

', 'DeleteVpcEndpointServiceConfigurationsResult$Unsuccessful' => '

Information about the service configurations that were not deleted, if applicable.

', 'DeleteVpcEndpointsResult$Unsuccessful' => '

Information about the VPC endpoints that were not successfully deleted.

', 'RejectVpcEndpointConnectionsResult$Unsuccessful' => '

Information about the endpoints that were not rejected, if applicable.

', ], ], 'UpdateSecurityGroupRuleDescriptionsEgressRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateSecurityGroupRuleDescriptionsEgressResult' => [ 'base' => NULL, 'refs' => [], ], 'UpdateSecurityGroupRuleDescriptionsIngressRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateSecurityGroupRuleDescriptionsIngressResult' => [ 'base' => NULL, 'refs' => [], ], 'UsageClassType' => [ 'base' => NULL, 'refs' => [ 'UsageClassTypeList$member' => NULL, ], ], 'UsageClassTypeList' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$SupportedUsageClasses' => '

Indicates whether the instance type is offered for spot or On-Demand.

', ], ], 'UserBucket' => [ 'base' => '

Describes the Amazon S3 bucket for the disk image.

', 'refs' => [ 'ImageDiskContainer$UserBucket' => '

The S3 bucket for the disk image.

', 'SnapshotDiskContainer$UserBucket' => '

The Amazon S3 bucket for the disk image.

', ], ], 'UserBucketDetails' => [ 'base' => '

Describes the Amazon S3 bucket for the disk image.

', 'refs' => [ 'SnapshotDetail$UserBucket' => '

The Amazon S3 bucket for the disk image.

', 'SnapshotTaskDetail$UserBucket' => '

The Amazon S3 bucket for the disk image.

', ], ], 'UserData' => [ 'base' => '

Describes the user data for an instance.

', 'refs' => [ 'ImportInstanceLaunchSpecification$UserData' => '

The Base64-encoded user data to make available to the instance.

', ], ], 'UserGroupStringList' => [ 'base' => NULL, 'refs' => [ 'ModifyFpgaImageAttributeRequest$UserGroups' => '

The user groups. This parameter is valid only when modifying the loadPermission attribute.

', 'ModifyImageAttributeRequest$UserGroups' => '

The user groups. This parameter can be used only when the Attribute parameter is launchPermission.

', ], ], 'UserIdGroupPair' => [ 'base' => '

Describes a security group and Amazon Web Services account ID pair.

', 'refs' => [ 'UserIdGroupPairList$member' => NULL, 'UserIdGroupPairSet$member' => NULL, ], ], 'UserIdGroupPairList' => [ 'base' => NULL, 'refs' => [ 'IpPermission$UserIdGroupPairs' => '

The security group and Amazon Web Services account ID pairs.

', ], ], 'UserIdGroupPairSet' => [ 'base' => NULL, 'refs' => [ 'StaleIpPermission$UserIdGroupPairs' => '

The security group pairs. Returns the ID of the referenced security group and VPC, and the ID and status of the VPC peering connection.

', ], ], 'UserIdStringList' => [ 'base' => NULL, 'refs' => [ 'ModifyFpgaImageAttributeRequest$UserIds' => '

The Amazon Web Services account IDs. This parameter is valid only when modifying the loadPermission attribute.

', 'ModifyImageAttributeRequest$UserIds' => '

The Amazon Web Services account IDs. This parameter can be used only when the Attribute parameter is launchPermission.

', 'ModifySnapshotAttributeRequest$UserIds' => '

The account ID to modify for the snapshot.

', ], ], 'UserTrustProviderType' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessTrustProviderRequest$UserTrustProviderType' => '

The type of user-based trust provider. This parameter is required when the provider type is user.

', 'VerifiedAccessTrustProvider$UserTrustProviderType' => '

The type of user-based trust provider.

', 'VerifiedAccessTrustProviderCondensed$UserTrustProviderType' => '

The type of user-based trust provider.

', ], ], 'VCpuCount' => [ 'base' => NULL, 'refs' => [ 'VCpuInfo$DefaultVCpus' => '

The default number of vCPUs for the instance type.

', ], ], 'VCpuCountRange' => [ 'base' => '

The minimum and maximum number of vCPUs.

', 'refs' => [ 'InstanceRequirements$VCpuCount' => '

The minimum and maximum number of vCPUs.

', ], ], 'VCpuCountRangeRequest' => [ 'base' => '

The minimum and maximum number of vCPUs.

', 'refs' => [ 'InstanceRequirementsRequest$VCpuCount' => '

The minimum and maximum number of vCPUs.

', ], ], 'VCpuInfo' => [ 'base' => '

Describes the vCPU configurations for the instance type.

', 'refs' => [ 'InstanceTypeInfo$VCpuInfo' => '

Describes the vCPU configurations for the instance type.

', ], ], 'ValidationError' => [ 'base' => '

The error code and error message that is returned for a parameter or parameter combination that is not valid when a new launch template or new version of a launch template is created.

', 'refs' => [ 'ErrorSet$member' => NULL, ], ], 'ValidationWarning' => [ 'base' => '

The error codes and error messages that are returned for the parameters or parameter combinations that are not valid when a new launch template or new version of a launch template is created.

', 'refs' => [ 'CreateLaunchTemplateResult$Warning' => '

If the launch template contains parameters or parameter combinations that are not valid, an error code and an error message are returned for each issue that\'s found.

', 'CreateLaunchTemplateVersionResult$Warning' => '

If the new version of the launch template contains parameters or parameter combinations that are not valid, an error code and an error message are returned for each issue that\'s found.

', ], ], 'ValueStringList' => [ 'base' => NULL, 'refs' => [ 'AcceptTransitGatewayMulticastDomainAssociationsRequest$SubnetIds' => '

The IDs of the subnets to associate with the transit gateway multicast domain.

', 'ClientVpnConnection$PostureComplianceStatuses' => '

The statuses returned by the client connect handler for posture compliance, if applicable.

', 'ClientVpnEndpoint$DnsServers' => '

Information about the DNS servers to be used for DNS resolution.

', 'CoipPool$PoolCidrs' => '

The address ranges of the address pool.

', 'ConnectionNotification$ConnectionEvents' => '

The events for the notification. Valid values are Accept, Connect, Delete, and Reject.

', 'CreateClientVpnEndpointRequest$DnsServers' => '

Information about the DNS servers to be used for DNS resolution. A Client VPN endpoint can have up to two DNS servers. If no DNS server is specified, the DNS address configured on the device is used for the DNS server.

', 'CreateFlowLogsResult$FlowLogIds' => '

The IDs of the flow logs.

', 'CreateVpcEndpointConnectionNotificationRequest$ConnectionEvents' => '

The endpoint events for which to receive notifications. Valid values are Accept, Connect, Delete, and Reject.

', 'CreateVpcEndpointServiceConfigurationRequest$NetworkLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of the Network Load Balancers.

', 'CreateVpcEndpointServiceConfigurationRequest$GatewayLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of the Gateway Load Balancers.

', 'CreateVpcEndpointServiceConfigurationRequest$SupportedIpAddressTypes' => '

The supported IP address types. The possible values are ipv4 and ipv6.

', 'DescribeClientVpnTargetNetworksRequest$AssociationIds' => '

The IDs of the target network associations.

', 'DescribeInstanceConnectEndpointsRequest$InstanceConnectEndpointIds' => '

One or more EC2 Instance Connect Endpoint IDs.

', 'DescribeIpamPoolsRequest$IpamPoolIds' => '

The IDs of the IPAM pools you would like information on.

', 'DescribeIpamResourceDiscoveriesRequest$IpamResourceDiscoveryIds' => '

The IPAM resource discovery IDs.

', 'DescribeIpamResourceDiscoveryAssociationsRequest$IpamResourceDiscoveryAssociationIds' => '

The resource discovery association IDs.

', 'DescribeIpamScopesRequest$IpamScopeIds' => '

The IDs of the scopes you want information on.

', 'DescribeIpamsRequest$IpamIds' => '

The IDs of the IPAMs you want information on.

', 'DescribeManagedPrefixListsRequest$PrefixListIds' => '

One or more prefix list IDs.

', 'DescribeMovingAddressesRequest$PublicIps' => '

One or more Elastic IP addresses.

', 'DescribeVpcEndpointServicesRequest$ServiceNames' => '

The service names.

', 'DescribeVpcEndpointServicesResult$ServiceNames' => '

The supported services.

', 'DnsServersOptionsModifyStructure$CustomDnsServers' => '

The IPv4 address range, in CIDR notation, of the DNS servers to be used. You can specify up to two DNS servers. Ensure that the DNS servers can be reached by the clients. The specified values overwrite the existing values.

', 'Explanation$AvailabilityZones' => '

The Availability Zones.

', 'Explanation$Cidrs' => '

The CIDR ranges.

', 'Filter$Values' => '

The filter values. Filter values are case-sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values.

', 'FirewallStatefulRule$Sources' => '

The source IP addresses, in CIDR notation.

', 'FirewallStatefulRule$Destinations' => '

The destination IP addresses, in CIDR notation.

', 'FirewallStatelessRule$Sources' => '

The source IP addresses, in CIDR notation.

', 'FirewallStatelessRule$Destinations' => '

The destination IP addresses, in CIDR notation.

', 'ModifyVpcEndpointConnectionNotificationRequest$ConnectionEvents' => '

The events for the endpoint. Valid values are Accept, Connect, Delete, and Reject.

', 'ModifyVpcEndpointServiceConfigurationRequest$AddNetworkLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of Network Load Balancers to add to your service configuration.

', 'ModifyVpcEndpointServiceConfigurationRequest$RemoveNetworkLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of Network Load Balancers to remove from your service configuration.

', 'ModifyVpcEndpointServiceConfigurationRequest$AddGatewayLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of Gateway Load Balancers to add to your service configuration.

', 'ModifyVpcEndpointServiceConfigurationRequest$RemoveGatewayLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of Gateway Load Balancers to remove from your service configuration.

', 'ModifyVpcEndpointServiceConfigurationRequest$AddSupportedIpAddressTypes' => '

The IP address types to add to your service configuration.

', 'ModifyVpcEndpointServiceConfigurationRequest$RemoveSupportedIpAddressTypes' => '

The IP address types to remove from your service configuration.

', 'ModifyVpcEndpointServicePermissionsRequest$AddAllowedPrincipals' => '

The Amazon Resource Names (ARN) of the principals. Permissions are granted to the principals in this list. To grant permissions to all principals, specify an asterisk (*).

', 'ModifyVpcEndpointServicePermissionsRequest$RemoveAllowedPrincipals' => '

The Amazon Resource Names (ARN) of the principals. Permissions are revoked for principals in this list.

', 'NetworkInsightsAnalysis$AdditionalAccounts' => '

The member accounts that contain resources that the path can traverse.

', 'NetworkInsightsAnalysis$SuggestedAccounts' => '

Potential intermediate accounts.

', 'NewDhcpConfiguration$Values' => NULL, 'PacketHeaderStatement$SourceAddresses' => '

The source addresses.

', 'PacketHeaderStatement$DestinationAddresses' => '

The destination addresses.

', 'PacketHeaderStatement$SourcePorts' => '

The source ports.

', 'PacketHeaderStatement$DestinationPorts' => '

The destination ports.

', 'PacketHeaderStatement$SourcePrefixLists' => '

The source prefix lists.

', 'PacketHeaderStatement$DestinationPrefixLists' => '

The destination prefix lists.

', 'PacketHeaderStatementRequest$SourceAddresses' => '

The source addresses.

', 'PacketHeaderStatementRequest$DestinationAddresses' => '

The destination addresses.

', 'PacketHeaderStatementRequest$SourcePorts' => '

The source ports.

', 'PacketHeaderStatementRequest$DestinationPorts' => '

The destination ports.

', 'PacketHeaderStatementRequest$SourcePrefixLists' => '

The source prefix lists.

', 'PacketHeaderStatementRequest$DestinationPrefixLists' => '

The destination prefix lists.

', 'PrefixList$Cidrs' => '

The IP address range of the Amazon Web Service.

', 'RejectTransitGatewayMulticastDomainAssociationsRequest$SubnetIds' => '

The IDs of the subnets to associate with the transit gateway multicast domain.

', 'ResourceStatement$Resources' => '

The resources.

', 'ResourceStatement$ResourceTypes' => '

The resource types.

', 'ResourceStatementRequest$Resources' => '

The resources.

', 'ResourceStatementRequest$ResourceTypes' => '

The resource types.

', 'ResponseLaunchTemplateData$SecurityGroupIds' => '

The security group IDs.

', 'ResponseLaunchTemplateData$SecurityGroups' => '

The security group names.

', 'ServiceConfiguration$AvailabilityZones' => '

The Availability Zones in which the service is available.

', 'ServiceConfiguration$NetworkLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of the Network Load Balancers for the service.

', 'ServiceConfiguration$GatewayLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of the Gateway Load Balancers for the service.

', 'ServiceConfiguration$BaseEndpointDnsNames' => '

The DNS names for the service.

', 'ServiceDetail$AvailabilityZones' => '

The Availability Zones in which the service is available.

', 'ServiceDetail$BaseEndpointDnsNames' => '

The DNS names for the service.

', 'StartNetworkInsightsAnalysisRequest$AdditionalAccounts' => '

The member accounts that contain resources that the path can traverse.

', 'TargetNetwork$SecurityGroups' => '

The IDs of the security groups applied to the target network association.

', 'TransitGatewayMulticastDeregisteredGroupMembers$DeregisteredNetworkInterfaceIds' => '

The network interface IDs of the deregistered members.

', 'TransitGatewayMulticastDeregisteredGroupSources$DeregisteredNetworkInterfaceIds' => '

The network interface IDs of the non-registered members.

', 'TransitGatewayMulticastRegisteredGroupMembers$RegisteredNetworkInterfaceIds' => '

The ID of the registered network interfaces.

', 'TransitGatewayMulticastRegisteredGroupSources$RegisteredNetworkInterfaceIds' => '

The IDs of the network interfaces members registered with the transit gateway multicast group.

', 'TransitGatewayOptions$TransitGatewayCidrBlocks' => '

The transit gateway CIDR blocks.

', 'TransitGatewayVpcAttachment$SubnetIds' => '

The IDs of the subnets.

', 'VpcEndpoint$RouteTableIds' => '

(Gateway endpoint) The IDs of the route tables associated with the endpoint.

', 'VpcEndpoint$SubnetIds' => '

(Interface endpoint) The subnets for the endpoint.

', 'VpcEndpoint$NetworkInterfaceIds' => '

(Interface endpoint) The network interfaces for the endpoint.

', 'VpcEndpointConnection$NetworkLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of the network load balancers for the service.

', 'VpcEndpointConnection$GatewayLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of the Gateway Load Balancers for the service.

', ], ], 'VerifiedAccessEndpoint' => [ 'base' => '

An Amazon Web Services Verified Access endpoint specifies the application that Amazon Web Services Verified Access provides access to. It must be attached to an Amazon Web Services Verified Access group. An Amazon Web Services Verified Access endpoint must also have an attached access policy before you attached it to a group.

', 'refs' => [ 'CreateVerifiedAccessEndpointResult$VerifiedAccessEndpoint' => '

Details about the Verified Access endpoint.

', 'DeleteVerifiedAccessEndpointResult$VerifiedAccessEndpoint' => '

Details about the Verified Access endpoint.

', 'ModifyVerifiedAccessEndpointResult$VerifiedAccessEndpoint' => '

Details about the Verified Access endpoint.

', 'VerifiedAccessEndpointList$member' => NULL, ], ], 'VerifiedAccessEndpointAttachmentType' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointRequest$AttachmentType' => '

The type of attachment.

', 'VerifiedAccessEndpoint$AttachmentType' => '

The type of attachment used to provide connectivity between the Amazon Web Services Verified Access endpoint and the application.

', ], ], 'VerifiedAccessEndpointEniOptions' => [ 'base' => '

Options for a network-interface type endpoint.

', 'refs' => [ 'VerifiedAccessEndpoint$NetworkInterfaceOptions' => '

The options for network-interface type endpoint.

', ], ], 'VerifiedAccessEndpointId' => [ 'base' => NULL, 'refs' => [ 'DeleteVerifiedAccessEndpointRequest$VerifiedAccessEndpointId' => '

The ID of the Verified Access endpoint.

', 'GetVerifiedAccessEndpointPolicyRequest$VerifiedAccessEndpointId' => '

The ID of the Verified Access endpoint.

', 'ModifyVerifiedAccessEndpointPolicyRequest$VerifiedAccessEndpointId' => '

The ID of the Verified Access endpoint.

', 'ModifyVerifiedAccessEndpointRequest$VerifiedAccessEndpointId' => '

The ID of the Verified Access endpoint.

', 'VerifiedAccessEndpointIdList$member' => NULL, ], ], 'VerifiedAccessEndpointIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessEndpointsRequest$VerifiedAccessEndpointIds' => '

The ID of the Verified Access endpoint.

', ], ], 'VerifiedAccessEndpointList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessEndpointsResult$VerifiedAccessEndpoints' => '

Details about the Verified Access endpoints.

', ], ], 'VerifiedAccessEndpointLoadBalancerOptions' => [ 'base' => '

Describes a load balancer when creating an Amazon Web Services Verified Access endpoint using the load-balancer type.

', 'refs' => [ 'VerifiedAccessEndpoint$LoadBalancerOptions' => '

The load balancer details if creating the Amazon Web Services Verified Access endpoint as load-balancertype.

', ], ], 'VerifiedAccessEndpointPortNumber' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointEniOptions$Port' => '

The IP port number.

', 'CreateVerifiedAccessEndpointLoadBalancerOptions$Port' => '

The IP port number.

', 'ModifyVerifiedAccessEndpointEniOptions$Port' => '

The IP port number.

', 'ModifyVerifiedAccessEndpointLoadBalancerOptions$Port' => '

The IP port number.

', 'VerifiedAccessEndpointEniOptions$Port' => '

The IP port number.

', 'VerifiedAccessEndpointLoadBalancerOptions$Port' => '

The IP port number.

', ], ], 'VerifiedAccessEndpointProtocol' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointEniOptions$Protocol' => '

The IP protocol.

', 'CreateVerifiedAccessEndpointLoadBalancerOptions$Protocol' => '

The IP protocol.

', 'ModifyVerifiedAccessEndpointEniOptions$Protocol' => '

The IP protocol.

', 'ModifyVerifiedAccessEndpointLoadBalancerOptions$Protocol' => '

The IP protocol.

', 'VerifiedAccessEndpointEniOptions$Protocol' => '

The IP protocol.

', 'VerifiedAccessEndpointLoadBalancerOptions$Protocol' => '

The IP protocol.

', ], ], 'VerifiedAccessEndpointStatus' => [ 'base' => '

Describes the status of a Verified Access endpoint.

', 'refs' => [ 'VerifiedAccessEndpoint$Status' => '

The endpoint status.

', ], ], 'VerifiedAccessEndpointStatusCode' => [ 'base' => NULL, 'refs' => [ 'VerifiedAccessEndpointStatus$Code' => '

The status code of the Verified Access endpoint.

', ], ], 'VerifiedAccessEndpointSubnetIdList' => [ 'base' => NULL, 'refs' => [ 'VerifiedAccessEndpointLoadBalancerOptions$SubnetIds' => '

The IDs of the subnets.

', ], ], 'VerifiedAccessEndpointType' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointRequest$EndpointType' => '

The type of Verified Access endpoint to create.

', 'VerifiedAccessEndpoint$EndpointType' => '

The type of Amazon Web Services Verified Access endpoint. Incoming application requests will be sent to an IP address, load balancer or a network interface depending on the endpoint type specified.

', ], ], 'VerifiedAccessGroup' => [ 'base' => '

Describes a Verified Access group.

', 'refs' => [ 'CreateVerifiedAccessGroupResult$VerifiedAccessGroup' => '

Details about the Verified Access group.

', 'DeleteVerifiedAccessGroupResult$VerifiedAccessGroup' => '

Details about the Verified Access group.

', 'ModifyVerifiedAccessGroupResult$VerifiedAccessGroup' => '

Details about the Verified Access group.

', 'VerifiedAccessGroupList$member' => NULL, ], ], 'VerifiedAccessGroupId' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointRequest$VerifiedAccessGroupId' => '

The ID of the Verified Access group to associate the endpoint with.

', 'DeleteVerifiedAccessGroupRequest$VerifiedAccessGroupId' => '

The ID of the Verified Access group.

', 'DescribeVerifiedAccessEndpointsRequest$VerifiedAccessGroupId' => '

The ID of the Verified Access group.

', 'GetVerifiedAccessGroupPolicyRequest$VerifiedAccessGroupId' => '

The ID of the Verified Access group.

', 'ModifyVerifiedAccessEndpointRequest$VerifiedAccessGroupId' => '

The ID of the Verified Access group.

', 'ModifyVerifiedAccessGroupPolicyRequest$VerifiedAccessGroupId' => '

The ID of the Verified Access group.

', 'ModifyVerifiedAccessGroupRequest$VerifiedAccessGroupId' => '

The ID of the Verified Access group.

', 'VerifiedAccessGroupIdList$member' => NULL, ], ], 'VerifiedAccessGroupIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessGroupsRequest$VerifiedAccessGroupIds' => '

The ID of the Verified Access groups.

', ], ], 'VerifiedAccessGroupList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessGroupsResult$VerifiedAccessGroups' => '

Details about the Verified Access groups.

', ], ], 'VerifiedAccessInstance' => [ 'base' => '

Describes a Verified Access instance.

', 'refs' => [ 'AttachVerifiedAccessTrustProviderResult$VerifiedAccessInstance' => '

Details about the Verified Access instance.

', 'CreateVerifiedAccessInstanceResult$VerifiedAccessInstance' => '

Details about the Verified Access instance.

', 'DeleteVerifiedAccessInstanceResult$VerifiedAccessInstance' => '

Details about the Verified Access instance.

', 'DetachVerifiedAccessTrustProviderResult$VerifiedAccessInstance' => '

Details about the Verified Access instance.

', 'ModifyVerifiedAccessInstanceResult$VerifiedAccessInstance' => '

Details about the Verified Access instance.

', 'VerifiedAccessInstanceList$member' => NULL, ], ], 'VerifiedAccessInstanceId' => [ 'base' => NULL, 'refs' => [ 'AttachVerifiedAccessTrustProviderRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'CreateVerifiedAccessGroupRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'DeleteVerifiedAccessInstanceRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'DescribeVerifiedAccessEndpointsRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'DescribeVerifiedAccessGroupsRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'DetachVerifiedAccessTrustProviderRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'ModifyVerifiedAccessGroupRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'ModifyVerifiedAccessInstanceLoggingConfigurationRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'ModifyVerifiedAccessInstanceRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'VerifiedAccessInstanceIdList$member' => NULL, ], ], 'VerifiedAccessInstanceIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessInstanceLoggingConfigurationsRequest$VerifiedAccessInstanceIds' => '

The IDs of the Verified Access instances.

', 'DescribeVerifiedAccessInstancesRequest$VerifiedAccessInstanceIds' => '

The IDs of the Verified Access instances.

', ], ], 'VerifiedAccessInstanceList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessInstancesResult$VerifiedAccessInstances' => '

Details about the Verified Access instances.

', ], ], 'VerifiedAccessInstanceLoggingConfiguration' => [ 'base' => '

Describes logging options for an Amazon Web Services Verified Access instance.

', 'refs' => [ 'ModifyVerifiedAccessInstanceLoggingConfigurationResult$LoggingConfiguration' => '

The logging configuration for the Verified Access instance.

', 'VerifiedAccessInstanceLoggingConfigurationList$member' => NULL, ], ], 'VerifiedAccessInstanceLoggingConfigurationList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessInstanceLoggingConfigurationsResult$LoggingConfigurations' => '

The logging configuration for the Verified Access instances.

', ], ], 'VerifiedAccessLogCloudWatchLogsDestination' => [ 'base' => '

Options for CloudWatch Logs as a logging destination.

', 'refs' => [ 'VerifiedAccessLogs$CloudWatchLogs' => '

CloudWatch Logs logging destination.

', ], ], 'VerifiedAccessLogCloudWatchLogsDestinationOptions' => [ 'base' => '

Options for CloudWatch Logs as a logging destination.

', 'refs' => [ 'VerifiedAccessLogOptions$CloudWatchLogs' => '

Sends Verified Access logs to CloudWatch Logs.

', ], ], 'VerifiedAccessLogDeliveryStatus' => [ 'base' => '

Describes a log delivery status.

', 'refs' => [ 'VerifiedAccessLogCloudWatchLogsDestination$DeliveryStatus' => '

The delivery status for access logs.

', 'VerifiedAccessLogKinesisDataFirehoseDestination$DeliveryStatus' => '

The delivery status.

', 'VerifiedAccessLogS3Destination$DeliveryStatus' => '

The delivery status.

', ], ], 'VerifiedAccessLogDeliveryStatusCode' => [ 'base' => NULL, 'refs' => [ 'VerifiedAccessLogDeliveryStatus$Code' => '

The status code.

', ], ], 'VerifiedAccessLogKinesisDataFirehoseDestination' => [ 'base' => '

Options for Kinesis as a logging destination.

', 'refs' => [ 'VerifiedAccessLogs$KinesisDataFirehose' => '

Kinesis logging destination.

', ], ], 'VerifiedAccessLogKinesisDataFirehoseDestinationOptions' => [ 'base' => '

Describes Amazon Kinesis Data Firehose logging options.

', 'refs' => [ 'VerifiedAccessLogOptions$KinesisDataFirehose' => '

Sends Verified Access logs to Kinesis.

', ], ], 'VerifiedAccessLogOptions' => [ 'base' => '

Options for Verified Access logs.

', 'refs' => [ 'ModifyVerifiedAccessInstanceLoggingConfigurationRequest$AccessLogs' => '

The configuration options for Verified Access instances.

', ], ], 'VerifiedAccessLogS3Destination' => [ 'base' => '

Options for Amazon S3 as a logging destination.

', 'refs' => [ 'VerifiedAccessLogs$S3' => '

Amazon S3 logging options.

', ], ], 'VerifiedAccessLogS3DestinationOptions' => [ 'base' => '

Options for Amazon S3 as a logging destination.

', 'refs' => [ 'VerifiedAccessLogOptions$S3' => '

Sends Verified Access logs to Amazon S3.

', ], ], 'VerifiedAccessLogs' => [ 'base' => '

Describes the options for Verified Access logs.

', 'refs' => [ 'VerifiedAccessInstanceLoggingConfiguration$AccessLogs' => '

Details about the logging options.

', ], ], 'VerifiedAccessSseSpecificationRequest' => [ 'base' => '

Verified Access provides server side encryption by default to data at rest using Amazon Web Services-owned KMS keys. You also have the option of using customer managed KMS keys, which can be specified using the options below.

', 'refs' => [ 'CreateVerifiedAccessEndpointRequest$SseSpecification' => '

The options for server side encryption.

', 'CreateVerifiedAccessGroupRequest$SseSpecification' => '

The options for server side encryption.

', 'CreateVerifiedAccessTrustProviderRequest$SseSpecification' => '

The options for server side encryption.

', 'ModifyVerifiedAccessEndpointPolicyRequest$SseSpecification' => '

The options for server side encryption.

', 'ModifyVerifiedAccessGroupPolicyRequest$SseSpecification' => '

The options for server side encryption.

', 'ModifyVerifiedAccessTrustProviderRequest$SseSpecification' => '

The options for server side encryption.

', ], ], 'VerifiedAccessSseSpecificationResponse' => [ 'base' => '

The options in use for server side encryption.

', 'refs' => [ 'ModifyVerifiedAccessEndpointPolicyResult$SseSpecification' => '

The options in use for server side encryption.

', 'ModifyVerifiedAccessGroupPolicyResult$SseSpecification' => '

The options in use for server side encryption.

', 'VerifiedAccessEndpoint$SseSpecification' => '

The options in use for server side encryption.

', 'VerifiedAccessGroup$SseSpecification' => '

The options in use for server side encryption.

', 'VerifiedAccessTrustProvider$SseSpecification' => '

The options in use for server side encryption.

', ], ], 'VerifiedAccessTrustProvider' => [ 'base' => '

Describes a Verified Access trust provider.

', 'refs' => [ 'AttachVerifiedAccessTrustProviderResult$VerifiedAccessTrustProvider' => '

Details about the Verified Access trust provider.

', 'CreateVerifiedAccessTrustProviderResult$VerifiedAccessTrustProvider' => '

Details about the Verified Access trust provider.

', 'DeleteVerifiedAccessTrustProviderResult$VerifiedAccessTrustProvider' => '

Details about the Verified Access trust provider.

', 'DetachVerifiedAccessTrustProviderResult$VerifiedAccessTrustProvider' => '

Details about the Verified Access trust provider.

', 'ModifyVerifiedAccessTrustProviderResult$VerifiedAccessTrustProvider' => '

Details about the Verified Access trust provider.

', 'VerifiedAccessTrustProviderList$member' => NULL, ], ], 'VerifiedAccessTrustProviderCondensed' => [ 'base' => '

Condensed information about a trust provider.

', 'refs' => [ 'VerifiedAccessTrustProviderCondensedList$member' => NULL, ], ], 'VerifiedAccessTrustProviderCondensedList' => [ 'base' => NULL, 'refs' => [ 'VerifiedAccessInstance$VerifiedAccessTrustProviders' => '

The IDs of the Amazon Web Services Verified Access trust providers.

', ], ], 'VerifiedAccessTrustProviderId' => [ 'base' => NULL, 'refs' => [ 'AttachVerifiedAccessTrustProviderRequest$VerifiedAccessTrustProviderId' => '

The ID of the Verified Access trust provider.

', 'DeleteVerifiedAccessTrustProviderRequest$VerifiedAccessTrustProviderId' => '

The ID of the Verified Access trust provider.

', 'DetachVerifiedAccessTrustProviderRequest$VerifiedAccessTrustProviderId' => '

The ID of the Verified Access trust provider.

', 'ModifyVerifiedAccessTrustProviderRequest$VerifiedAccessTrustProviderId' => '

The ID of the Verified Access trust provider.

', 'VerifiedAccessTrustProviderIdList$member' => NULL, ], ], 'VerifiedAccessTrustProviderIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessTrustProvidersRequest$VerifiedAccessTrustProviderIds' => '

The IDs of the Verified Access trust providers.

', ], ], 'VerifiedAccessTrustProviderList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessTrustProvidersResult$VerifiedAccessTrustProviders' => '

Details about the Verified Access trust providers.

', ], ], 'VersionDescription' => [ 'base' => NULL, 'refs' => [ 'CreateLaunchTemplateRequest$VersionDescription' => '

A description for the first version of the launch template.

', 'CreateLaunchTemplateVersionRequest$VersionDescription' => '

A description for the version of the launch template.

', 'LaunchTemplateVersion$VersionDescription' => '

The description for the version.

', ], ], 'VersionStringList' => [ 'base' => NULL, 'refs' => [ 'DeleteLaunchTemplateVersionsRequest$Versions' => '

The version numbers of one or more launch template versions to delete. You can specify up to 200 launch template version numbers.

', 'DescribeLaunchTemplateVersionsRequest$Versions' => '

One or more versions of the launch template. Valid values depend on whether you are describing a specified launch template (by ID or name) or all launch templates in your account.

To describe one or more versions of a specified launch template, valid values are $Latest, $Default, and numbers.

To describe all launch templates in your account that are defined as the latest version, the valid value is $Latest. To describe all launch templates in your account that are defined as the default version, the valid value is $Default. You can specify $Latest and $Default in the same request. You cannot specify numbers.

', ], ], 'VgwTelemetry' => [ 'base' => '

Describes telemetry for a VPN tunnel.

', 'refs' => [ 'VgwTelemetryList$member' => NULL, ], ], 'VgwTelemetryList' => [ 'base' => NULL, 'refs' => [ 'VpnConnection$VgwTelemetry' => '

Information about the VPN tunnel.

', ], ], 'VirtualizationType' => [ 'base' => NULL, 'refs' => [ 'Image$VirtualizationType' => '

The type of virtualization of the AMI.

', 'Instance$VirtualizationType' => '

The virtualization type of the instance.

', 'VirtualizationTypeList$member' => NULL, 'VirtualizationTypeSet$member' => NULL, ], ], 'VirtualizationTypeList' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$SupportedVirtualizationTypes' => '

The supported virtualization types.

', ], ], 'VirtualizationTypeSet' => [ 'base' => NULL, 'refs' => [ 'GetInstanceTypesFromInstanceRequirementsRequest$VirtualizationTypes' => '

The virtualization type.

', 'InstanceRequirementsWithMetadataRequest$VirtualizationTypes' => '

The virtualization type.

', ], ], 'Volume' => [ 'base' => '

Describes a volume.

', 'refs' => [ 'VolumeList$member' => NULL, ], ], 'VolumeAttachment' => [ 'base' => '

Describes volume attachment details.

', 'refs' => [ 'VolumeAttachmentList$member' => NULL, ], ], 'VolumeAttachmentList' => [ 'base' => NULL, 'refs' => [ 'Volume$Attachments' => '

Information about the volume attachments.

', ], ], 'VolumeAttachmentState' => [ 'base' => NULL, 'refs' => [ 'VolumeAttachment$State' => '

The attachment state of the volume.

', ], ], 'VolumeAttributeName' => [ 'base' => NULL, 'refs' => [ 'DescribeVolumeAttributeRequest$Attribute' => '

The attribute of the volume. This parameter is required.

', ], ], 'VolumeDetail' => [ 'base' => '

Describes an EBS volume.

', 'refs' => [ 'DiskImage$Volume' => '

Information about the volume.

', 'ImportVolumeRequest$Volume' => '

The volume size.

', ], ], 'VolumeId' => [ 'base' => NULL, 'refs' => [ 'AttachVolumeRequest$VolumeId' => '

The ID of the EBS volume. The volume and instance must be within the same Availability Zone.

', 'CreateSnapshotRequest$VolumeId' => '

The ID of the Amazon EBS volume.

', 'DeleteVolumeRequest$VolumeId' => '

The ID of the volume.

', 'DescribeVolumeAttributeRequest$VolumeId' => '

The ID of the volume.

', 'EbsInstanceBlockDeviceSpecification$VolumeId' => '

The ID of the EBS volume.

', 'EnableVolumeIORequest$VolumeId' => '

The ID of the volume.

', 'ModifyVolumeAttributeRequest$VolumeId' => '

The ID of the volume.

', 'ModifyVolumeRequest$VolumeId' => '

The ID of the volume.

', 'SnapshotTierStatus$VolumeId' => '

The ID of the volume from which the snapshot was created.

', 'VolumeIdStringList$member' => NULL, ], ], 'VolumeIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeVolumeStatusRequest$VolumeIds' => '

The IDs of the volumes.

Default: Describes all your volumes.

', 'DescribeVolumesModificationsRequest$VolumeIds' => '

The IDs of the volumes.

', 'DescribeVolumesRequest$VolumeIds' => '

The volume IDs.

', 'InstanceSpecification$ExcludeDataVolumeIds' => '

The IDs of the data (non-root) volumes to exclude from the multi-volume snapshot set. If you specify the ID of the root volume, the request fails. To exclude the root volume, use ExcludeBootVolume.

You can specify up to 40 volume IDs per request.

', ], ], 'VolumeIdWithResolver' => [ 'base' => NULL, 'refs' => [ 'DetachVolumeRequest$VolumeId' => '

The ID of the volume.

', ], ], 'VolumeList' => [ 'base' => NULL, 'refs' => [ 'DescribeVolumesResult$Volumes' => '

Information about the volumes.

', ], ], 'VolumeModification' => [ 'base' => '

Describes the modification status of an EBS volume.

If the volume has never been modified, some element values will be null.

', 'refs' => [ 'ModifyVolumeResult$VolumeModification' => '

Information about the volume modification.

', 'VolumeModificationList$member' => NULL, ], ], 'VolumeModificationList' => [ 'base' => NULL, 'refs' => [ 'DescribeVolumesModificationsResult$VolumesModifications' => '

Information about the volume modifications.

', ], ], 'VolumeModificationState' => [ 'base' => NULL, 'refs' => [ 'VolumeModification$ModificationState' => '

The current modification state. The modification state is null for unmodified volumes.

', ], ], 'VolumeState' => [ 'base' => NULL, 'refs' => [ 'Volume$State' => '

The volume state.

', ], ], 'VolumeStatusAction' => [ 'base' => '

Describes a volume status operation code.

', 'refs' => [ 'VolumeStatusActionsList$member' => NULL, ], ], 'VolumeStatusActionsList' => [ 'base' => NULL, 'refs' => [ 'VolumeStatusItem$Actions' => '

The details of the operation.

', ], ], 'VolumeStatusAttachmentStatus' => [ 'base' => '

Information about the instances to which the volume is attached.

', 'refs' => [ 'VolumeStatusAttachmentStatusList$member' => NULL, ], ], 'VolumeStatusAttachmentStatusList' => [ 'base' => NULL, 'refs' => [ 'VolumeStatusItem$AttachmentStatuses' => '

Information about the instances to which the volume is attached.

', ], ], 'VolumeStatusDetails' => [ 'base' => '

Describes a volume status.

', 'refs' => [ 'VolumeStatusDetailsList$member' => NULL, ], ], 'VolumeStatusDetailsList' => [ 'base' => NULL, 'refs' => [ 'VolumeStatusInfo$Details' => '

The details of the volume status.

', ], ], 'VolumeStatusEvent' => [ 'base' => '

Describes a volume status event.

', 'refs' => [ 'VolumeStatusEventsList$member' => NULL, ], ], 'VolumeStatusEventsList' => [ 'base' => NULL, 'refs' => [ 'VolumeStatusItem$Events' => '

A list of events associated with the volume.

', ], ], 'VolumeStatusInfo' => [ 'base' => '

Describes the status of a volume.

', 'refs' => [ 'VolumeStatusItem$VolumeStatus' => '

The volume status.

', ], ], 'VolumeStatusInfoStatus' => [ 'base' => NULL, 'refs' => [ 'VolumeStatusInfo$Status' => '

The status of the volume.

', ], ], 'VolumeStatusItem' => [ 'base' => '

Describes the volume status.

', 'refs' => [ 'VolumeStatusList$member' => NULL, ], ], 'VolumeStatusList' => [ 'base' => NULL, 'refs' => [ 'DescribeVolumeStatusResult$VolumeStatuses' => '

Information about the status of the volumes.

', ], ], 'VolumeStatusName' => [ 'base' => NULL, 'refs' => [ 'VolumeStatusDetails$Name' => '

The name of the volume status.

', ], ], 'VolumeType' => [ 'base' => NULL, 'refs' => [ 'CreateVolumeRequest$VolumeType' => '

The volume type. This parameter can be one of the following values:

  • General Purpose SSD: gp2 | gp3

  • Provisioned IOPS SSD: io1 | io2

  • Throughput Optimized HDD: st1

  • Cold HDD: sc1

  • Magnetic: standard

Throughput Optimized HDD (st1) and Cold HDD (sc1) volumes can\'t be used as boot volumes.

For more information, see Amazon EBS volume types in the Amazon Elastic Compute Cloud User Guide.

Default: gp2

', 'EbsBlockDevice$VolumeType' => '

The volume type. For more information, see Amazon EBS volume types in the Amazon EC2 User Guide.

', 'LaunchTemplateEbsBlockDevice$VolumeType' => '

The volume type.

', 'LaunchTemplateEbsBlockDeviceRequest$VolumeType' => '

The volume type. For more information, see Amazon EBS volume types in the Amazon Elastic Compute Cloud User Guide.

', 'ModifyVolumeRequest$VolumeType' => '

The target EBS volume type of the volume. For more information, see Amazon EBS volume types in the Amazon Elastic Compute Cloud User Guide.

Default: The existing type is retained.

', 'Volume$VolumeType' => '

The volume type.

', 'VolumeModification$TargetVolumeType' => '

The target EBS volume type of the volume.

', 'VolumeModification$OriginalVolumeType' => '

The original EBS volume type of the volume.

', ], ], 'Vpc' => [ 'base' => '

Describes a VPC.

', 'refs' => [ 'CreateDefaultVpcResult$Vpc' => '

Information about the VPC.

', 'CreateVpcResult$Vpc' => '

Information about the VPC.

', 'VpcList$member' => NULL, ], ], 'VpcAttachment' => [ 'base' => '

Describes an attachment between a virtual private gateway and a VPC.

', 'refs' => [ 'AttachVpnGatewayResult$VpcAttachment' => '

Information about the attachment.

', 'VpcAttachmentList$member' => NULL, ], ], 'VpcAttachmentList' => [ 'base' => NULL, 'refs' => [ 'VpnGateway$VpcAttachments' => '

Any VPCs attached to the virtual private gateway.

', ], ], 'VpcAttributeName' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcAttributeRequest$Attribute' => '

The VPC attribute.

', ], ], 'VpcCidrAssociationId' => [ 'base' => NULL, 'refs' => [ 'DisassociateVpcCidrBlockRequest$AssociationId' => '

The association ID for the CIDR block.

', ], ], 'VpcCidrBlockAssociation' => [ 'base' => '

Describes an IPv4 CIDR block associated with a VPC.

', 'refs' => [ 'AssociateVpcCidrBlockResult$CidrBlockAssociation' => '

Information about the IPv4 CIDR block association.

', 'DisassociateVpcCidrBlockResult$CidrBlockAssociation' => '

Information about the IPv4 CIDR block association.

', 'VpcCidrBlockAssociationSet$member' => NULL, ], ], 'VpcCidrBlockAssociationSet' => [ 'base' => NULL, 'refs' => [ 'Vpc$CidrBlockAssociationSet' => '

Information about the IPv4 CIDR blocks associated with the VPC.

', ], ], 'VpcCidrBlockState' => [ 'base' => '

Describes the state of a CIDR block.

', 'refs' => [ 'VpcCidrBlockAssociation$CidrBlockState' => '

Information about the state of the CIDR block.

', 'VpcIpv6CidrBlockAssociation$Ipv6CidrBlockState' => '

Information about the state of the CIDR block.

', ], ], 'VpcCidrBlockStateCode' => [ 'base' => NULL, 'refs' => [ 'VpcCidrBlockState$State' => '

The state of the CIDR block.

', ], ], 'VpcClassicLink' => [ 'base' => '

Deprecated.

Describes whether a VPC is enabled for ClassicLink.

', 'refs' => [ 'VpcClassicLinkList$member' => NULL, ], ], 'VpcClassicLinkIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcClassicLinkDnsSupportRequest$VpcIds' => '

The IDs of the VPCs.

', 'DescribeVpcClassicLinkRequest$VpcIds' => '

The VPCs for which you want to describe the ClassicLink status.

', ], ], 'VpcClassicLinkList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcClassicLinkResult$Vpcs' => '

The ClassicLink status of the VPCs.

', ], ], 'VpcEndpoint' => [ 'base' => '

Describes a VPC endpoint.

', 'refs' => [ 'CreateVpcEndpointResult$VpcEndpoint' => '

Information about the endpoint.

', 'VpcEndpointSet$member' => NULL, ], ], 'VpcEndpointConnection' => [ 'base' => '

Describes a VPC endpoint connection to a service.

', 'refs' => [ 'VpcEndpointConnectionSet$member' => NULL, ], ], 'VpcEndpointConnectionSet' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcEndpointConnectionsResult$VpcEndpointConnections' => '

Information about the VPC endpoint connections.

', ], ], 'VpcEndpointId' => [ 'base' => NULL, 'refs' => [ 'CreateRouteRequest$VpcEndpointId' => '

The ID of a VPC endpoint. Supported for Gateway Load Balancer endpoints only.

', 'CreateTrafficMirrorTargetRequest$GatewayLoadBalancerEndpointId' => '

The ID of the Gateway Load Balancer endpoint.

', 'CreateVpcEndpointConnectionNotificationRequest$VpcEndpointId' => '

The ID of the endpoint.

', 'ModifyVpcEndpointRequest$VpcEndpointId' => '

The ID of the endpoint.

', 'ReplaceRouteRequest$VpcEndpointId' => '

The ID of a VPC endpoint. Supported for Gateway Load Balancer endpoints only.

', 'VpcEndpointIdList$member' => NULL, ], ], 'VpcEndpointIdList' => [ 'base' => NULL, 'refs' => [ 'AcceptVpcEndpointConnectionsRequest$VpcEndpointIds' => '

The IDs of the interface VPC endpoints.

', 'DeleteVpcEndpointsRequest$VpcEndpointIds' => '

The IDs of the VPC endpoints.

', 'DescribeVpcEndpointsRequest$VpcEndpointIds' => '

The IDs of the VPC endpoints.

', 'RejectVpcEndpointConnectionsRequest$VpcEndpointIds' => '

The IDs of the VPC endpoints.

', ], ], 'VpcEndpointRouteTableIdList' => [ 'base' => NULL, 'refs' => [ 'CreateVpcEndpointRequest$RouteTableIds' => '

(Gateway endpoint) The route table IDs.

', 'ModifyVpcEndpointRequest$AddRouteTableIds' => '

(Gateway endpoint) The IDs of the route tables to associate with the endpoint.

', 'ModifyVpcEndpointRequest$RemoveRouteTableIds' => '

(Gateway endpoint) The IDs of the route tables to disassociate from the endpoint.

', ], ], 'VpcEndpointSecurityGroupIdList' => [ 'base' => NULL, 'refs' => [ 'CreateVpcEndpointRequest$SecurityGroupIds' => '

(Interface endpoint) The IDs of the security groups to associate with the endpoint network interfaces. If this parameter is not specified, we use the default security group for the VPC.

', 'ModifyVpcEndpointRequest$AddSecurityGroupIds' => '

(Interface endpoint) The IDs of the security groups to associate with the endpoint network interfaces.

', 'ModifyVpcEndpointRequest$RemoveSecurityGroupIds' => '

(Interface endpoint) The IDs of the security groups to disassociate from the endpoint network interfaces.

', ], ], 'VpcEndpointServiceId' => [ 'base' => NULL, 'refs' => [ 'AcceptVpcEndpointConnectionsRequest$ServiceId' => '

The ID of the VPC endpoint service.

', 'CreateVpcEndpointConnectionNotificationRequest$ServiceId' => '

The ID of the endpoint service.

', 'DescribeVpcEndpointServicePermissionsRequest$ServiceId' => '

The ID of the service.

', 'ModifyVpcEndpointServiceConfigurationRequest$ServiceId' => '

The ID of the service.

', 'ModifyVpcEndpointServicePayerResponsibilityRequest$ServiceId' => '

The ID of the service.

', 'ModifyVpcEndpointServicePermissionsRequest$ServiceId' => '

The ID of the service.

', 'RejectVpcEndpointConnectionsRequest$ServiceId' => '

The ID of the service.

', 'StartVpcEndpointServicePrivateDnsVerificationRequest$ServiceId' => '

The ID of the endpoint service.

', 'VpcEndpointServiceIdList$member' => NULL, ], ], 'VpcEndpointServiceIdList' => [ 'base' => NULL, 'refs' => [ 'DeleteVpcEndpointServiceConfigurationsRequest$ServiceIds' => '

The IDs of the services.

', 'DescribeVpcEndpointServiceConfigurationsRequest$ServiceIds' => '

The IDs of the endpoint services.

', ], ], 'VpcEndpointSet' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcEndpointsResult$VpcEndpoints' => '

Information about the endpoints.

', ], ], 'VpcEndpointSubnetIdList' => [ 'base' => NULL, 'refs' => [ 'CreateVpcEndpointRequest$SubnetIds' => '

(Interface and Gateway Load Balancer endpoints) The IDs of the subnets in which to create endpoint network interfaces. For a Gateway Load Balancer endpoint, you can specify only one subnet.

', 'ModifyVpcEndpointRequest$AddSubnetIds' => '

(Interface and Gateway Load Balancer endpoints) The IDs of the subnets in which to serve the endpoint. For a Gateway Load Balancer endpoint, you can specify only one subnet.

', 'ModifyVpcEndpointRequest$RemoveSubnetIds' => '

(Interface endpoint) The IDs of the subnets from which to remove the endpoint.

', ], ], 'VpcEndpointType' => [ 'base' => NULL, 'refs' => [ 'CreateVpcEndpointRequest$VpcEndpointType' => '

The type of endpoint.

Default: Gateway

', 'VpcEndpoint$VpcEndpointType' => '

The type of endpoint.

', ], ], 'VpcFlowLogId' => [ 'base' => NULL, 'refs' => [ 'FlowLogIdList$member' => NULL, 'GetFlowLogsIntegrationTemplateRequest$FlowLogId' => '

The ID of the flow log.

', ], ], 'VpcId' => [ 'base' => NULL, 'refs' => [ 'ApplySecurityGroupsToClientVpnTargetNetworkRequest$VpcId' => '

The ID of the VPC in which the associated target network is located.

', 'AssociateDhcpOptionsRequest$VpcId' => '

The ID of the VPC.

', 'AssociateVpcCidrBlockRequest$VpcId' => '

The ID of the VPC.

', 'AttachClassicLinkVpcRequest$VpcId' => '

The ID of the ClassicLink-enabled VPC.

', 'AttachInternetGatewayRequest$VpcId' => '

The ID of the VPC.

', 'AttachVpnGatewayRequest$VpcId' => '

The ID of the VPC.

', 'CarrierGateway$VpcId' => '

The ID of the VPC associated with the carrier gateway.

', 'ClientVpnEndpoint$VpcId' => '

The ID of the VPC.

', 'CreateCarrierGatewayRequest$VpcId' => '

The ID of the VPC to associate with the carrier gateway.

', 'CreateClientVpnEndpointRequest$VpcId' => '

The ID of the VPC to associate with the Client VPN endpoint. If no security group IDs are specified in the request, the default security group for the VPC is applied.

', 'CreateEgressOnlyInternetGatewayRequest$VpcId' => '

The ID of the VPC for which to create the egress-only internet gateway.

', 'CreateLocalGatewayRouteTableVpcAssociationRequest$VpcId' => '

The ID of the VPC.

', 'CreateNetworkAclRequest$VpcId' => '

The ID of the VPC.

', 'CreateRouteTableRequest$VpcId' => '

The ID of the VPC.

', 'CreateSecurityGroupRequest$VpcId' => '

The ID of the VPC. Required for a nondefault VPC.

', 'CreateSubnetRequest$VpcId' => '

The ID of the VPC.

', 'CreateTransitGatewayVpcAttachmentRequest$VpcId' => '

The ID of the VPC.

', 'CreateVpcEndpointRequest$VpcId' => '

The ID of the VPC.

', 'CreateVpcPeeringConnectionRequest$VpcId' => '

The ID of the requester VPC. You must specify this parameter in the request.

', 'DeleteVpcRequest$VpcId' => '

The ID of the VPC.

', 'DescribeStaleSecurityGroupsRequest$VpcId' => '

The ID of the VPC.

', 'DescribeVpcAttributeRequest$VpcId' => '

The ID of the VPC.

', 'DetachClassicLinkVpcRequest$VpcId' => '

The ID of the VPC to which the instance is linked.

', 'DetachInternetGatewayRequest$VpcId' => '

The ID of the VPC.

', 'DetachVpnGatewayRequest$VpcId' => '

The ID of the VPC.

', 'DisableVpcClassicLinkDnsSupportRequest$VpcId' => '

The ID of the VPC.

', 'DisableVpcClassicLinkRequest$VpcId' => '

The ID of the VPC.

', 'Ec2InstanceConnectEndpoint$VpcId' => '

The ID of the VPC in which the EC2 Instance Connect Endpoint was created.

', 'EnableVpcClassicLinkDnsSupportRequest$VpcId' => '

The ID of the VPC.

', 'EnableVpcClassicLinkRequest$VpcId' => '

The ID of the VPC.

', 'GetSecurityGroupsForVpcRequest$VpcId' => '

The VPC ID where the security group can be used.

', 'ModifyClientVpnEndpointRequest$VpcId' => '

The ID of the VPC to associate with the Client VPN endpoint.

', 'ModifyVpcAttributeRequest$VpcId' => '

The ID of the VPC.

', 'ModifyVpcTenancyRequest$VpcId' => '

The ID of the VPC.

', 'VpcClassicLinkIdList$member' => NULL, 'VpcIdStringList$member' => NULL, ], ], 'VpcIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcsRequest$VpcIds' => '

The IDs of the VPCs.

Default: Describes all your VPCs.

', ], ], 'VpcIpv6CidrBlockAssociation' => [ 'base' => '

Describes an IPv6 CIDR block associated with a VPC.

', 'refs' => [ 'AssociateVpcCidrBlockResult$Ipv6CidrBlockAssociation' => '

Information about the IPv6 CIDR block association.

', 'DisassociateVpcCidrBlockResult$Ipv6CidrBlockAssociation' => '

Information about the IPv6 CIDR block association.

', 'VpcIpv6CidrBlockAssociationSet$member' => NULL, ], ], 'VpcIpv6CidrBlockAssociationSet' => [ 'base' => NULL, 'refs' => [ 'Vpc$Ipv6CidrBlockAssociationSet' => '

Information about the IPv6 CIDR blocks associated with the VPC.

', ], ], 'VpcList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcsResult$Vpcs' => '

Information about one or more VPCs.

', ], ], 'VpcPeeringConnection' => [ 'base' => '

Describes a VPC peering connection.

', 'refs' => [ 'AcceptVpcPeeringConnectionResult$VpcPeeringConnection' => '

Information about the VPC peering connection.

', 'CreateVpcPeeringConnectionResult$VpcPeeringConnection' => '

Information about the VPC peering connection.

', 'VpcPeeringConnectionList$member' => NULL, ], ], 'VpcPeeringConnectionId' => [ 'base' => NULL, 'refs' => [ 'CreateRouteRequest$VpcPeeringConnectionId' => '

The ID of a VPC peering connection.

', 'DeleteVpcPeeringConnectionRequest$VpcPeeringConnectionId' => '

The ID of the VPC peering connection.

', 'ModifyVpcPeeringConnectionOptionsRequest$VpcPeeringConnectionId' => '

The ID of the VPC peering connection.

', 'RejectVpcPeeringConnectionRequest$VpcPeeringConnectionId' => '

The ID of the VPC peering connection.

', 'ReplaceRouteRequest$VpcPeeringConnectionId' => '

The ID of a VPC peering connection.

', 'VpcPeeringConnectionIdList$member' => NULL, ], ], 'VpcPeeringConnectionIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcPeeringConnectionsRequest$VpcPeeringConnectionIds' => '

The IDs of the VPC peering connections.

Default: Describes all your VPC peering connections.

', ], ], 'VpcPeeringConnectionIdWithResolver' => [ 'base' => NULL, 'refs' => [ 'AcceptVpcPeeringConnectionRequest$VpcPeeringConnectionId' => '

The ID of the VPC peering connection. You must specify this parameter in the request.

', ], ], 'VpcPeeringConnectionList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcPeeringConnectionsResult$VpcPeeringConnections' => '

Information about the VPC peering connections.

', ], ], 'VpcPeeringConnectionOptionsDescription' => [ 'base' => '

Describes the VPC peering connection options.

', 'refs' => [ 'VpcPeeringConnectionVpcInfo$PeeringOptions' => '

Information about the VPC peering connection options for the accepter or requester VPC.

', ], ], 'VpcPeeringConnectionStateReason' => [ 'base' => '

Describes the status of a VPC peering connection.

', 'refs' => [ 'VpcPeeringConnection$Status' => '

The status of the VPC peering connection.

', ], ], 'VpcPeeringConnectionStateReasonCode' => [ 'base' => NULL, 'refs' => [ 'VpcPeeringConnectionStateReason$Code' => '

The status of the VPC peering connection.

', ], ], 'VpcPeeringConnectionVpcInfo' => [ 'base' => '

Describes a VPC in a VPC peering connection.

', 'refs' => [ 'VpcPeeringConnection$AccepterVpcInfo' => '

Information about the accepter VPC. CIDR block information is only returned when describing an active VPC peering connection.

', 'VpcPeeringConnection$RequesterVpcInfo' => '

Information about the requester VPC. CIDR block information is only returned when describing an active VPC peering connection.

', ], ], 'VpcState' => [ 'base' => NULL, 'refs' => [ 'Vpc$State' => '

The current state of the VPC.

', ], ], 'VpcTenancy' => [ 'base' => NULL, 'refs' => [ 'ModifyVpcTenancyRequest$InstanceTenancy' => '

The instance tenancy attribute for the VPC.

', ], ], 'VpnConnection' => [ 'base' => '

Describes a VPN connection.

', 'refs' => [ 'CreateVpnConnectionResult$VpnConnection' => '

Information about the VPN connection.

', 'ModifyVpnConnectionOptionsResult$VpnConnection' => '

Information about the VPN connection.

', 'ModifyVpnConnectionResult$VpnConnection' => '

Information about the VPN connection.

', 'ModifyVpnTunnelCertificateResult$VpnConnection' => '

Information about the VPN connection.

', 'ModifyVpnTunnelOptionsResult$VpnConnection' => '

Information about the VPN connection.

', 'VpnConnectionList$member' => NULL, ], ], 'VpnConnectionDeviceSampleConfiguration' => [ 'base' => NULL, 'refs' => [ 'GetVpnConnectionDeviceSampleConfigurationResult$VpnConnectionDeviceSampleConfiguration' => '

Sample configuration file for the specified customer gateway device.

', ], ], 'VpnConnectionDeviceType' => [ 'base' => '

List of customer gateway devices that have a sample configuration file available for use. You can also see the list of device types with sample configuration files available under Your customer gateway device in the Amazon Web Services Site-to-Site VPN User Guide.

', 'refs' => [ 'VpnConnectionDeviceTypeList$member' => NULL, ], ], 'VpnConnectionDeviceTypeId' => [ 'base' => NULL, 'refs' => [ 'GetVpnConnectionDeviceSampleConfigurationRequest$VpnConnectionDeviceTypeId' => '

Device identifier provided by the GetVpnConnectionDeviceTypes API.

', ], ], 'VpnConnectionDeviceTypeList' => [ 'base' => NULL, 'refs' => [ 'GetVpnConnectionDeviceTypesResult$VpnConnectionDeviceTypes' => '

List of customer gateway devices that have a sample configuration file available for use.

', ], ], 'VpnConnectionId' => [ 'base' => NULL, 'refs' => [ 'CreateVpnConnectionRouteRequest$VpnConnectionId' => '

The ID of the VPN connection.

', 'DeleteVpnConnectionRequest$VpnConnectionId' => '

The ID of the VPN connection.

', 'DeleteVpnConnectionRouteRequest$VpnConnectionId' => '

The ID of the VPN connection.

', 'GetVpnConnectionDeviceSampleConfigurationRequest$VpnConnectionId' => '

The VpnConnectionId specifies the Site-to-Site VPN connection used for the sample configuration.

', 'GetVpnTunnelReplacementStatusRequest$VpnConnectionId' => '

The ID of the Site-to-Site VPN connection.

', 'GetVpnTunnelReplacementStatusResult$VpnConnectionId' => '

The ID of the Site-to-Site VPN connection.

', 'ModifyVpnConnectionOptionsRequest$VpnConnectionId' => '

The ID of the Site-to-Site VPN connection.

', 'ModifyVpnConnectionRequest$VpnConnectionId' => '

The ID of the VPN connection.

', 'ModifyVpnTunnelCertificateRequest$VpnConnectionId' => '

The ID of the Amazon Web Services Site-to-Site VPN connection.

', 'ModifyVpnTunnelOptionsRequest$VpnConnectionId' => '

The ID of the Amazon Web Services Site-to-Site VPN connection.

', 'ReplaceVpnTunnelRequest$VpnConnectionId' => '

The ID of the Site-to-Site VPN connection.

', 'VpnConnectionIdStringList$member' => NULL, ], ], 'VpnConnectionIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpnConnectionsRequest$VpnConnectionIds' => '

One or more VPN connection IDs.

Default: Describes your VPN connections.

', ], ], 'VpnConnectionList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpnConnectionsResult$VpnConnections' => '

Information about one or more VPN connections.

', ], ], 'VpnConnectionOptions' => [ 'base' => '

Describes VPN connection options.

', 'refs' => [ 'VpnConnection$Options' => '

The VPN connection options.

', ], ], 'VpnConnectionOptionsSpecification' => [ 'base' => '

Describes VPN connection options.

', 'refs' => [ 'CreateVpnConnectionRequest$Options' => '

The options for the VPN connection.

', ], ], 'VpnEcmpSupportValue' => [ 'base' => NULL, 'refs' => [ 'ModifyTransitGatewayOptions$VpnEcmpSupport' => '

Enable or disable Equal Cost Multipath Protocol support.

', 'TransitGatewayOptions$VpnEcmpSupport' => '

Indicates whether Equal Cost Multipath Protocol support is enabled.

', 'TransitGatewayRequestOptions$VpnEcmpSupport' => '

Enable or disable Equal Cost Multipath Protocol support. Enabled by default.

', ], ], 'VpnGateway' => [ 'base' => '

Describes a virtual private gateway.

', 'refs' => [ 'CreateVpnGatewayResult$VpnGateway' => '

Information about the virtual private gateway.

', 'VpnGatewayList$member' => NULL, ], ], 'VpnGatewayId' => [ 'base' => NULL, 'refs' => [ 'AttachVpnGatewayRequest$VpnGatewayId' => '

The ID of the virtual private gateway.

', 'CreateVpnConnectionRequest$VpnGatewayId' => '

The ID of the virtual private gateway. If you specify a virtual private gateway, you cannot specify a transit gateway.

', 'DeleteVpnGatewayRequest$VpnGatewayId' => '

The ID of the virtual private gateway.

', 'DetachVpnGatewayRequest$VpnGatewayId' => '

The ID of the virtual private gateway.

', 'DisableVgwRoutePropagationRequest$GatewayId' => '

The ID of the virtual private gateway.

', 'EnableVgwRoutePropagationRequest$GatewayId' => '

The ID of the virtual private gateway that is attached to a VPC. The virtual private gateway must be attached to the same VPC that the routing tables are associated with.

', 'GetVpnTunnelReplacementStatusResult$VpnGatewayId' => '

The ID of the virtual private gateway.

', 'ModifyVpnConnectionRequest$VpnGatewayId' => '

The ID of the virtual private gateway at the Amazon Web Services side of the VPN connection.

', 'VpnGatewayIdStringList$member' => NULL, ], ], 'VpnGatewayIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpnGatewaysRequest$VpnGatewayIds' => '

One or more virtual private gateway IDs.

Default: Describes all your virtual private gateways.

', ], ], 'VpnGatewayList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpnGatewaysResult$VpnGateways' => '

Information about one or more virtual private gateways.

', ], ], 'VpnProtocol' => [ 'base' => NULL, 'refs' => [ 'ClientVpnEndpoint$VpnProtocol' => '

The protocol used by the VPN session.

', ], ], 'VpnState' => [ 'base' => NULL, 'refs' => [ 'VpnConnection$State' => '

The current state of the VPN connection.

', 'VpnGateway$State' => '

The current state of the virtual private gateway.

', 'VpnStaticRoute$State' => '

The current state of the static route.

', ], ], 'VpnStaticRoute' => [ 'base' => '

Describes a static route for a VPN connection.

', 'refs' => [ 'VpnStaticRouteList$member' => NULL, ], ], 'VpnStaticRouteList' => [ 'base' => NULL, 'refs' => [ 'VpnConnection$Routes' => '

The static routes associated with the VPN connection.

', ], ], 'VpnStaticRouteSource' => [ 'base' => NULL, 'refs' => [ 'VpnStaticRoute$Source' => '

Indicates how the routes were provided.

', ], ], 'VpnTunnelLogOptions' => [ 'base' => '

Options for logging VPN tunnel activity.

', 'refs' => [ 'TunnelOption$LogOptions' => '

Options for logging VPN tunnel activity.

', ], ], 'VpnTunnelLogOptionsSpecification' => [ 'base' => '

Options for logging VPN tunnel activity.

', 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$LogOptions' => '

Options for logging VPN tunnel activity.

', 'VpnTunnelOptionsSpecification$LogOptions' => '

Options for logging VPN tunnel activity.

', ], ], 'VpnTunnelOptionsSpecification' => [ 'base' => '

The tunnel options for a single VPN tunnel.

', 'refs' => [ 'VpnTunnelOptionsSpecificationsList$member' => NULL, ], ], 'VpnTunnelOptionsSpecificationsList' => [ 'base' => NULL, 'refs' => [ 'VpnConnectionOptionsSpecification$TunnelOptions' => '

The tunnel options for the VPN connection.

', ], ], 'WeekDay' => [ 'base' => NULL, 'refs' => [ 'InstanceEventWindowTimeRange$StartWeekDay' => '

The day on which the time range begins.

', 'InstanceEventWindowTimeRange$EndWeekDay' => '

The day on which the time range ends.

', 'InstanceEventWindowTimeRangeRequest$StartWeekDay' => '

The day on which the time range begins.

', 'InstanceEventWindowTimeRangeRequest$EndWeekDay' => '

The day on which the time range ends.

', ], ], 'WithdrawByoipCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'WithdrawByoipCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'ZoneIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeAvailabilityZonesRequest$ZoneIds' => '

The IDs of the Availability Zones, Local Zones, and Wavelength Zones.

', ], ], 'ZoneNameStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeAvailabilityZonesRequest$ZoneNames' => '

The names of the Availability Zones, Local Zones, and Wavelength Zones.

', ], ], 'customerGatewayConfiguration' => [ 'base' => NULL, 'refs' => [ 'VpnConnection$CustomerGatewayConfiguration' => '

The configuration information for the VPN connection\'s customer gateway (in the native XML format). This element is always present in the CreateVpnConnection response; however, it\'s present in the DescribeVpnConnections response only if the VPN connection is in the pending or available state.

', ], ], 'preSharedKey' => [ 'base' => NULL, 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$PreSharedKey' => '

The pre-shared key (PSK) to establish initial authentication between the virtual private gateway and the customer gateway.

Constraints: Allowed characters are alphanumeric characters, periods (.), and underscores (_). Must be between 8 and 64 characters in length and cannot start with zero (0).

', 'TunnelOption$PreSharedKey' => '

The pre-shared key (PSK) to establish initial authentication between the virtual private gateway and the customer gateway.

', 'VpnTunnelOptionsSpecification$PreSharedKey' => '

The pre-shared key (PSK) to establish initial authentication between the virtual private gateway and customer gateway.

Constraints: Allowed characters are alphanumeric characters, periods (.), and underscores (_). Must be between 8 and 64 characters in length and cannot start with zero (0).

', ], ], 'scope' => [ 'base' => NULL, 'refs' => [ 'ReservedInstances$Scope' => '

The scope of the Reserved Instance.

', 'ReservedInstancesConfiguration$Scope' => '

Whether the Reserved Instance is applied to instances in a Region or instances in a specific Availability Zone.

', 'ReservedInstancesOffering$Scope' => '

Whether the Reserved Instance is applied to instances in a Region or an Availability Zone.

', ], ], 'snapshotTierStatusSet' => [ 'base' => NULL, 'refs' => [ 'DescribeSnapshotTierStatusResult$SnapshotTierStatuses' => '

Information about the snapshot\'s storage tier.

', ], ], 'totalFpgaMemory' => [ 'base' => NULL, 'refs' => [ 'FpgaInfo$TotalFpgaMemoryInMiB' => '

The total memory of all FPGA accelerators for the instance type.

', ], ], 'totalGpuMemory' => [ 'base' => NULL, 'refs' => [ 'GpuInfo$TotalGpuMemoryInMiB' => '

The total size of the memory for the GPU accelerators for the instance type, in MiB.

', ], ], 'totalInferenceMemory' => [ 'base' => NULL, 'refs' => [ 'InferenceAcceleratorInfo$TotalInferenceMemoryInMiB' => '

The total size of the memory for the inference accelerators for the instance type, in MiB.

', ], ], ],]; +return [ 'version' => '2.0', 'service' => 'Amazon Elastic Compute Cloud

Amazon Elastic Compute Cloud (Amazon EC2) provides secure and resizable computing capacity in the Amazon Web Services Cloud. Using Amazon EC2 eliminates the need to invest in hardware up front, so you can develop and deploy applications faster. Amazon Virtual Private Cloud (Amazon VPC) enables you to provision a logically isolated section of the Amazon Web Services Cloud where you can launch Amazon Web Services resources in a virtual network that you\'ve defined. Amazon Elastic Block Store (Amazon EBS) provides block level storage volumes for use with EC2 instances. EBS volumes are highly available and reliable storage volumes that can be attached to any running instance and used like a hard drive.

To learn more, see the following resources:

', 'operations' => [ 'AcceptAddressTransfer' => '

Accepts an Elastic IP address transfer. For more information, see Accept a transferred Elastic IP address in the Amazon Virtual Private Cloud User Guide.

', 'AcceptReservedInstancesExchangeQuote' => '

Accepts the Convertible Reserved Instance exchange quote described in the GetReservedInstancesExchangeQuote call.

', 'AcceptTransitGatewayMulticastDomainAssociations' => '

Accepts a request to associate subnets with a transit gateway multicast domain.

', 'AcceptTransitGatewayPeeringAttachment' => '

Accepts a transit gateway peering attachment request. The peering attachment must be in the pendingAcceptance state.

', 'AcceptTransitGatewayVpcAttachment' => '

Accepts a request to attach a VPC to a transit gateway.

The VPC attachment must be in the pendingAcceptance state. Use DescribeTransitGatewayVpcAttachments to view your pending VPC attachment requests. Use RejectTransitGatewayVpcAttachment to reject a VPC attachment request.

', 'AcceptVpcEndpointConnections' => '

Accepts connection requests to your VPC endpoint service.

', 'AcceptVpcPeeringConnection' => '

Accept a VPC peering connection request. To accept a request, the VPC peering connection must be in the pending-acceptance state, and you must be the owner of the peer VPC. Use DescribeVpcPeeringConnections to view your outstanding VPC peering connection requests.

For an inter-Region VPC peering connection request, you must accept the VPC peering connection in the Region of the accepter VPC.

', 'AdvertiseByoipCidr' => '

Advertises an IPv4 or IPv6 address range that is provisioned for use with your Amazon Web Services resources through bring your own IP addresses (BYOIP).

You can perform this operation at most once every 10 seconds, even if you specify different address ranges each time.

We recommend that you stop advertising the BYOIP CIDR from other locations when you advertise it from Amazon Web Services. To minimize down time, you can configure your Amazon Web Services resources to use an address from a BYOIP CIDR before it is advertised, and then simultaneously stop advertising it from the current location and start advertising it through Amazon Web Services.

It can take a few minutes before traffic to the specified addresses starts routing to Amazon Web Services because of BGP propagation delays.

To stop advertising the BYOIP CIDR, use WithdrawByoipCidr.

', 'AllocateAddress' => '

Allocates an Elastic IP address to your Amazon Web Services account. After you allocate the Elastic IP address you can associate it with an instance or network interface. After you release an Elastic IP address, it is released to the IP address pool and can be allocated to a different Amazon Web Services account.

You can allocate an Elastic IP address from an address pool owned by Amazon Web Services or from an address pool created from a public IPv4 address range that you have brought to Amazon Web Services for use with your Amazon Web Services resources using bring your own IP addresses (BYOIP). For more information, see Bring Your Own IP Addresses (BYOIP) in the Amazon Elastic Compute Cloud User Guide.

If you release an Elastic IP address, you might be able to recover it. You cannot recover an Elastic IP address that you released after it is allocated to another Amazon Web Services account. To attempt to recover an Elastic IP address that you released, specify it in this operation.

For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide.

You can allocate a carrier IP address which is a public IP address from a telecommunication carrier, to a network interface which resides in a subnet in a Wavelength Zone (for example an EC2 instance).

', 'AllocateHosts' => '

Allocates a Dedicated Host to your account. At a minimum, specify the supported instance type or instance family, the Availability Zone in which to allocate the host, and the number of hosts to allocate.

', 'AllocateIpamPoolCidr' => '

Allocate a CIDR from an IPAM pool. The Region you use should be the IPAM pool locale. The locale is the Amazon Web Services Region where this IPAM pool is available for allocations.

In IPAM, an allocation is a CIDR assignment from an IPAM pool to another IPAM pool or to a resource. For more information, see Allocate CIDRs in the Amazon VPC IPAM User Guide.

This action creates an allocation with strong consistency. The returned CIDR will not overlap with any other allocations from the same pool.

', 'ApplySecurityGroupsToClientVpnTargetNetwork' => '

Applies a security group to the association between the target network and the Client VPN endpoint. This action replaces the existing security groups with the specified security groups.

', 'AssignIpv6Addresses' => '

Assigns one or more IPv6 addresses to the specified network interface. You can specify one or more specific IPv6 addresses, or you can specify the number of IPv6 addresses to be automatically assigned from within the subnet\'s IPv6 CIDR block range. You can assign as many IPv6 addresses to a network interface as you can assign private IPv4 addresses, and the limit varies per instance type. For information, see IP Addresses Per Network Interface Per Instance Type in the Amazon Elastic Compute Cloud User Guide.

You must specify either the IPv6 addresses or the IPv6 address count in the request.

You can optionally use Prefix Delegation on the network interface. You must specify either the IPV6 Prefix Delegation prefixes, or the IPv6 Prefix Delegation count. For information, see Assigning prefixes to Amazon EC2 network interfaces in the Amazon Elastic Compute Cloud User Guide.

', 'AssignPrivateIpAddresses' => '

Assigns one or more secondary private IP addresses to the specified network interface.

You can specify one or more specific secondary IP addresses, or you can specify the number of secondary IP addresses to be automatically assigned within the subnet\'s CIDR block range. The number of secondary IP addresses that you can assign to an instance varies by instance type. For information about instance types, see Instance Types in the Amazon Elastic Compute Cloud User Guide. For more information about Elastic IP addresses, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide.

When you move a secondary private IP address to another network interface, any Elastic IP address that is associated with the IP address is also moved.

Remapping an IP address is an asynchronous operation. When you move an IP address from one network interface to another, check network/interfaces/macs/mac/local-ipv4s in the instance metadata to confirm that the remapping is complete.

You must specify either the IP addresses or the IP address count in the request.

You can optionally use Prefix Delegation on the network interface. You must specify either the IPv4 Prefix Delegation prefixes, or the IPv4 Prefix Delegation count. For information, see Assigning prefixes to Amazon EC2 network interfaces in the Amazon Elastic Compute Cloud User Guide.

', 'AssignPrivateNatGatewayAddress' => '

Assigns one or more private IPv4 addresses to a private NAT gateway. For more information, see Work with NAT gateways in the Amazon VPC User Guide.

', 'AssociateAddress' => '

Associates an Elastic IP address, or carrier IP address (for instances that are in subnets in Wavelength Zones) with an instance or a network interface. Before you can use an Elastic IP address, you must allocate it to your account.

If the Elastic IP address is already associated with a different instance, it is disassociated from that instance and associated with the specified instance. If you associate an Elastic IP address with an instance that has an existing Elastic IP address, the existing address is disassociated from the instance, but remains allocated to your account.

[Subnets in Wavelength Zones] You can associate an IP address from the telecommunication carrier to the instance or network interface.

You cannot associate an Elastic IP address with an interface in a different network border group.

This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn\'t return an error, and you may be charged for each time the Elastic IP address is remapped to the same instance. For more information, see the Elastic IP Addresses section of Amazon EC2 Pricing.

', 'AssociateClientVpnTargetNetwork' => '

Associates a target network with a Client VPN endpoint. A target network is a subnet in a VPC. You can associate multiple subnets from the same VPC with a Client VPN endpoint. You can associate only one subnet in each Availability Zone. We recommend that you associate at least two subnets to provide Availability Zone redundancy.

If you specified a VPC when you created the Client VPN endpoint or if you have previous subnet associations, the specified subnet must be in the same VPC. To specify a subnet that\'s in a different VPC, you must first modify the Client VPN endpoint (ModifyClientVpnEndpoint) and change the VPC that\'s associated with it.

', 'AssociateDhcpOptions' => '

Associates a set of DHCP options (that you\'ve previously created) with the specified VPC, or associates no DHCP options with the VPC.

After you associate the options with the VPC, any existing instances and all new instances that you launch in that VPC use the options. You don\'t need to restart or relaunch the instances. They automatically pick up the changes within a few hours, depending on how frequently the instance renews its DHCP lease. You can explicitly renew the lease using the operating system on the instance.

For more information, see DHCP options sets in the Amazon VPC User Guide.

', 'AssociateEnclaveCertificateIamRole' => '

Associates an Identity and Access Management (IAM) role with an Certificate Manager (ACM) certificate. This enables the certificate to be used by the ACM for Nitro Enclaves application inside an enclave. For more information, see Certificate Manager for Nitro Enclaves in the Amazon Web Services Nitro Enclaves User Guide.

When the IAM role is associated with the ACM certificate, the certificate, certificate chain, and encrypted private key are placed in an Amazon S3 location that only the associated IAM role can access. The private key of the certificate is encrypted with an Amazon Web Services managed key that has an attached attestation-based key policy.

To enable the IAM role to access the Amazon S3 object, you must grant it permission to call s3:GetObject on the Amazon S3 bucket returned by the command. To enable the IAM role to access the KMS key, you must grant it permission to call kms:Decrypt on the KMS key returned by the command. For more information, see Grant the role permission to access the certificate and encryption key in the Amazon Web Services Nitro Enclaves User Guide.

', 'AssociateIamInstanceProfile' => '

Associates an IAM instance profile with a running or stopped instance. You cannot associate more than one IAM instance profile with an instance.

', 'AssociateInstanceEventWindow' => '

Associates one or more targets with an event window. Only one type of target (instance IDs, Dedicated Host IDs, or tags) can be specified with an event window.

For more information, see Define event windows for scheduled events in the Amazon EC2 User Guide.

', 'AssociateIpamByoasn' => '

Associates your Autonomous System Number (ASN) with a BYOIP CIDR that you own in the same Amazon Web Services Region. For more information, see Tutorial: Bring your ASN to IPAM in the Amazon VPC IPAM guide.

After the association succeeds, the ASN is eligible for advertisement. You can view the association with DescribeByoipCidrs. You can advertise the CIDR with AdvertiseByoipCidr.

', 'AssociateIpamResourceDiscovery' => '

Associates an IPAM resource discovery with an Amazon VPC IPAM. A resource discovery is an IPAM component that enables IPAM to manage and monitor resources that belong to the owning account.

', 'AssociateNatGatewayAddress' => '

Associates Elastic IP addresses (EIPs) and private IPv4 addresses with a public NAT gateway. For more information, see Work with NAT gateways in the Amazon VPC User Guide.

By default, you can associate up to 2 Elastic IP addresses per public NAT gateway. You can increase the limit by requesting a quota adjustment. For more information, see Elastic IP address quotas in the Amazon VPC User Guide.

When you associate an EIP or secondary EIPs with a public NAT gateway, the network border group of the EIPs must match the network border group of the Availability Zone (AZ) that the public NAT gateway is in. If it\'s not the same, the EIP will fail to associate. You can see the network border group for the subnet\'s AZ by viewing the details of the subnet. Similarly, you can view the network border group of an EIP by viewing the details of the EIP address. For more information about network border groups and EIPs, see Allocate an Elastic IP address in the Amazon VPC User Guide.

', 'AssociateRouteTable' => '

Associates a subnet in your VPC or an internet gateway or virtual private gateway attached to your VPC with a route table in your VPC. This association causes traffic from the subnet or gateway to be routed according to the routes in the route table. The action returns an association ID, which you need in order to disassociate the route table later. A route table can be associated with multiple subnets.

For more information, see Route tables in the Amazon VPC User Guide.

', 'AssociateSubnetCidrBlock' => '

Associates a CIDR block with your subnet. You can only associate a single IPv6 CIDR block with your subnet.

', 'AssociateTransitGatewayMulticastDomain' => '

Associates the specified subnets and transit gateway attachments with the specified transit gateway multicast domain.

The transit gateway attachment must be in the available state before you can add a resource. Use DescribeTransitGatewayAttachments to see the state of the attachment.

', 'AssociateTransitGatewayPolicyTable' => '

Associates the specified transit gateway attachment with a transit gateway policy table.

', 'AssociateTransitGatewayRouteTable' => '

Associates the specified attachment with the specified transit gateway route table. You can associate only one route table with an attachment.

', 'AssociateTrunkInterface' => '

Associates a branch network interface with a trunk network interface.

Before you create the association, run the create-network-interface command and set --interface-type to trunk. You must also create a network interface for each branch network interface that you want to associate with the trunk network interface.

', 'AssociateVpcCidrBlock' => '

Associates a CIDR block with your VPC. You can associate a secondary IPv4 CIDR block, an Amazon-provided IPv6 CIDR block, or an IPv6 CIDR block from an IPv6 address pool that you provisioned through bring your own IP addresses (BYOIP).

You must specify one of the following in the request: an IPv4 CIDR block, an IPv6 pool, or an Amazon-provided IPv6 CIDR block.

For more information about associating CIDR blocks with your VPC and applicable restrictions, see IP addressing for your VPCs and subnets in the Amazon VPC User Guide.

', 'AttachClassicLinkVpc' => '

This action is deprecated.

Links an EC2-Classic instance to a ClassicLink-enabled VPC through one or more of the VPC security groups. You cannot link an EC2-Classic instance to more than one VPC at a time. You can only link an instance that\'s in the running state. An instance is automatically unlinked from a VPC when it\'s stopped - you can link it to the VPC again when you restart it.

After you\'ve linked an instance, you cannot change the VPC security groups that are associated with it. To change the security groups, you must first unlink the instance, and then link it again.

Linking your instance to a VPC is sometimes referred to as attaching your instance.

', 'AttachInternetGateway' => '

Attaches an internet gateway or a virtual private gateway to a VPC, enabling connectivity between the internet and the VPC. For more information, see Internet gateways in the Amazon VPC User Guide.

', 'AttachNetworkInterface' => '

Attaches a network interface to an instance.

', 'AttachVerifiedAccessTrustProvider' => '

Attaches the specified Amazon Web Services Verified Access trust provider to the specified Amazon Web Services Verified Access instance.

', 'AttachVolume' => '

Attaches an EBS volume to a running or stopped instance and exposes it to the instance with the specified device name.

Encrypted EBS volumes must be attached to instances that support Amazon EBS encryption. For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

After you attach an EBS volume, you must make it available. For more information, see Make an EBS volume available for use.

If a volume has an Amazon Web Services Marketplace product code:

  • The volume can be attached only to a stopped instance.

  • Amazon Web Services Marketplace product codes are copied from the volume to the instance.

  • You must be subscribed to the product.

  • The instance type and operating system of the instance must support the product. For example, you can\'t detach a volume from a Windows instance and attach it to a Linux instance.

For more information, see Attach an Amazon EBS volume to an instance in the Amazon Elastic Compute Cloud User Guide.

', 'AttachVpnGateway' => '

Attaches a virtual private gateway to a VPC. You can attach one virtual private gateway to one VPC at a time.

For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.

', 'AuthorizeClientVpnIngress' => '

Adds an ingress authorization rule to a Client VPN endpoint. Ingress authorization rules act as firewall rules that grant access to networks. You must configure ingress authorization rules to enable clients to access resources in Amazon Web Services or on-premises networks.

', 'AuthorizeSecurityGroupEgress' => '

Adds the specified outbound (egress) rules to a security group for use with a VPC.

An outbound rule permits instances to send traffic to the specified IPv4 or IPv6 CIDR address ranges, or to the instances that are associated with the specified source security groups. When specifying an outbound rule for your security group in a VPC, the IpPermissions must include a destination for the traffic.

You specify a protocol for each rule (for example, TCP). For the TCP and UDP protocols, you must also specify the destination port or port range. For the ICMP protocol, you must also specify the ICMP type and code. You can use -1 for the type or code to mean all types or all codes.

Rule changes are propagated to affected instances as quickly as possible. However, a small delay might occur.

For information about VPC security group quotas, see Amazon VPC quotas.

If you want to reference a security group across VPCs attached to a transit gateway using the security group referencing feature, note that you can only reference security groups for ingress rules. You cannot reference a security group for egress rules.

', 'AuthorizeSecurityGroupIngress' => '

Adds the specified inbound (ingress) rules to a security group.

An inbound rule permits instances to receive traffic from the specified IPv4 or IPv6 CIDR address range, or from the instances that are associated with the specified destination security groups. When specifying an inbound rule for your security group in a VPC, the IpPermissions must include a source for the traffic.

You specify a protocol for each rule (for example, TCP). For TCP and UDP, you must also specify the destination port or port range. For ICMP/ICMPv6, you must also specify the ICMP/ICMPv6 type and code. You can use -1 to mean all types or all codes.

Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.

For more information about VPC security group quotas, see Amazon VPC quotas.

', 'BundleInstance' => '

Bundles an Amazon instance store-backed Windows instance.

During bundling, only the root device volume (C:\\) is bundled. Data on other instance store volumes is not preserved.

This action is not applicable for Linux/Unix instances or Windows instances that are backed by Amazon EBS.

', 'CancelBundleTask' => '

Cancels a bundling operation for an instance store-backed Windows instance.

', 'CancelCapacityReservation' => '

Cancels the specified Capacity Reservation, releases the reserved capacity, and changes the Capacity Reservation\'s state to cancelled.

Instances running in the reserved capacity continue running until you stop them. Stopped instances that target the Capacity Reservation can no longer launch. Modify these instances to either target a different Capacity Reservation, launch On-Demand Instance capacity, or run in any open Capacity Reservation that has matching attributes and sufficient capacity.

', 'CancelCapacityReservationFleets' => '

Cancels one or more Capacity Reservation Fleets. When you cancel a Capacity Reservation Fleet, the following happens:

  • The Capacity Reservation Fleet\'s status changes to cancelled.

  • The individual Capacity Reservations in the Fleet are cancelled. Instances running in the Capacity Reservations at the time of cancelling the Fleet continue to run in shared capacity.

  • The Fleet stops creating new Capacity Reservations.

', 'CancelConversionTask' => '

Cancels an active conversion task. The task can be the import of an instance or volume. The action removes all artifacts of the conversion, including a partially uploaded volume or instance. If the conversion is complete or is in the process of transferring the final disk image, the command fails and returns an exception.

For more information, see Importing a Virtual Machine Using the Amazon EC2 CLI.

', 'CancelExportTask' => '

Cancels an active export task. The request removes all artifacts of the export, including any partially-created Amazon S3 objects. If the export task is complete or is in the process of transferring the final disk image, the command fails and returns an error.

', 'CancelImageLaunchPermission' => '

Removes your Amazon Web Services account from the launch permissions for the specified AMI. For more information, see Cancel having an AMI shared with your Amazon Web Services account in the Amazon EC2 User Guide.

', 'CancelImportTask' => '

Cancels an in-process import virtual machine or import snapshot task.

', 'CancelReservedInstancesListing' => '

Cancels the specified Reserved Instance listing in the Reserved Instance Marketplace.

For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide.

', 'CancelSpotFleetRequests' => '

Cancels the specified Spot Fleet requests.

After you cancel a Spot Fleet request, the Spot Fleet launches no new instances.

You must also specify whether a canceled Spot Fleet request should terminate its instances. If you choose to terminate the instances, the Spot Fleet request enters the cancelled_terminating state. Otherwise, the Spot Fleet request enters the cancelled_running state and the instances continue to run until they are interrupted or you terminate them manually.

', 'CancelSpotInstanceRequests' => '

Cancels one or more Spot Instance requests.

Canceling a Spot Instance request does not terminate running Spot Instances associated with the request.

', 'ConfirmProductInstance' => '

Determines whether a product code is associated with an instance. This action can only be used by the owner of the product code. It is useful when a product code owner must verify whether another user\'s instance is eligible for support.

', 'CopyFpgaImage' => '

Copies the specified Amazon FPGA Image (AFI) to the current Region.

', 'CopyImage' => '

Initiates the copy of an AMI. You can copy an AMI from one Region to another, or from a Region to an Outpost. You can\'t copy an AMI from an Outpost to a Region, from one Outpost to another, or within the same Outpost. To copy an AMI to another partition, see CreateStoreImageTask.

To copy an AMI from one Region to another, specify the source Region using the SourceRegion parameter, and specify the destination Region using its endpoint. Copies of encrypted backing snapshots for the AMI are encrypted. Copies of unencrypted backing snapshots remain unencrypted, unless you set Encrypted during the copy operation. You cannot create an unencrypted copy of an encrypted backing snapshot.

To copy an AMI from a Region to an Outpost, specify the source Region using the SourceRegion parameter, and specify the ARN of the destination Outpost using DestinationOutpostArn. Backing snapshots copied to an Outpost are encrypted by default using the default encryption key for the Region, or a different key that you specify in the request using KmsKeyId. Outposts do not support unencrypted snapshots. For more information, Amazon EBS local snapshots on Outposts in the Amazon EC2 User Guide.

For more information about the prerequisites and limits when copying an AMI, see Copy an AMI in the Amazon EC2 User Guide.

', 'CopySnapshot' => '

Copies a point-in-time snapshot of an EBS volume and stores it in Amazon S3. You can copy a snapshot within the same Region, from one Region to another, or from a Region to an Outpost. You can\'t copy a snapshot from an Outpost to a Region, from one Outpost to another, or within the same Outpost.

You can use the snapshot to create EBS volumes or Amazon Machine Images (AMIs).

When copying snapshots to a Region, copies of encrypted EBS snapshots remain encrypted. Copies of unencrypted snapshots remain unencrypted, unless you enable encryption for the snapshot copy operation. By default, encrypted snapshot copies use the default Key Management Service (KMS) KMS key; however, you can specify a different KMS key. To copy an encrypted snapshot that has been shared from another account, you must have permissions for the KMS key used to encrypt the snapshot.

Snapshots copied to an Outpost are encrypted by default using the default encryption key for the Region, or a different key that you specify in the request using KmsKeyId. Outposts do not support unencrypted snapshots. For more information, Amazon EBS local snapshots on Outposts in the Amazon Elastic Compute Cloud User Guide.

Snapshots created by copying another snapshot have an arbitrary volume ID that should not be used for any purpose.

For more information, see Copy an Amazon EBS snapshot in the Amazon Elastic Compute Cloud User Guide.

', 'CreateCapacityReservation' => '

Creates a new Capacity Reservation with the specified attributes.

Capacity Reservations enable you to reserve capacity for your Amazon EC2 instances in a specific Availability Zone for any duration. This gives you the flexibility to selectively add capacity reservations and still get the Regional RI discounts for that usage. By creating Capacity Reservations, you ensure that you always have access to Amazon EC2 capacity when you need it, for as long as you need it. For more information, see Capacity Reservations in the Amazon EC2 User Guide.

Your request to create a Capacity Reservation could fail if Amazon EC2 does not have sufficient capacity to fulfill the request. If your request fails due to Amazon EC2 capacity constraints, either try again at a later time, try in a different Availability Zone, or request a smaller capacity reservation. If your application is flexible across instance types and sizes, try to create a Capacity Reservation with different instance attributes.

Your request could also fail if the requested quantity exceeds your On-Demand Instance limit for the selected instance type. If your request fails due to limit constraints, increase your On-Demand Instance limit for the required instance type and try again. For more information about increasing your instance limits, see Amazon EC2 Service Quotas in the Amazon EC2 User Guide.

', 'CreateCapacityReservationFleet' => '

Creates a Capacity Reservation Fleet. For more information, see Create a Capacity Reservation Fleet in the Amazon EC2 User Guide.

', 'CreateCarrierGateway' => '

Creates a carrier gateway. For more information about carrier gateways, see Carrier gateways in the Amazon Web Services Wavelength Developer Guide.

', 'CreateClientVpnEndpoint' => '

Creates a Client VPN endpoint. A Client VPN endpoint is the resource you create and configure to enable and manage client VPN sessions. It is the destination endpoint at which all client VPN sessions are terminated.

', 'CreateClientVpnRoute' => '

Adds a route to a network to a Client VPN endpoint. Each Client VPN endpoint has a route table that describes the available destination network routes. Each route in the route table specifies the path for traffic to specific resources or networks.

', 'CreateCoipCidr' => '

Creates a range of customer-owned IP addresses.

', 'CreateCoipPool' => '

Creates a pool of customer-owned IP (CoIP) addresses.

', 'CreateCustomerGateway' => '

Provides information to Amazon Web Services about your customer gateway device. The customer gateway device is the appliance at your end of the VPN connection. You must provide the IP address of the customer gateway device’s external interface. The IP address must be static and can be behind a device performing network address translation (NAT).

For devices that use Border Gateway Protocol (BGP), you can also provide the device\'s BGP Autonomous System Number (ASN). You can use an existing ASN assigned to your network. If you don\'t have an ASN already, you can use a private ASN. For more information, see Customer gateway options for your Site-to-Site VPN connection in the Amazon Web Services Site-to-Site VPN User Guide.

To create more than one customer gateway with the same VPN type, IP address, and BGP ASN, specify a unique device name for each customer gateway. An identical request returns information about the existing customer gateway; it doesn\'t create a new customer gateway.

', 'CreateDefaultSubnet' => '

Creates a default subnet with a size /20 IPv4 CIDR block in the specified Availability Zone in your default VPC. You can have only one default subnet per Availability Zone. For more information, see Create a default subnet in the Amazon VPC User Guide.

', 'CreateDefaultVpc' => '

Creates a default VPC with a size /16 IPv4 CIDR block and a default subnet in each Availability Zone. For more information about the components of a default VPC, see Default VPCs in the Amazon VPC User Guide. You cannot specify the components of the default VPC yourself.

If you deleted your previous default VPC, you can create a default VPC. You cannot have more than one default VPC per Region.

', 'CreateDhcpOptions' => '

Creates a set of DHCP options for your VPC. After creating the set, you must associate it with the VPC, causing all existing and new instances that you launch in the VPC to use this set of DHCP options. The following are the individual DHCP options you can specify. For more information about the options, see RFC 2132.

  • domain-name-servers - The IP addresses of up to four domain name servers, or AmazonProvidedDNS. The default DHCP option set specifies AmazonProvidedDNS. If specifying more than one domain name server, specify the IP addresses in a single parameter, separated by commas. To have your instance receive a custom DNS hostname as specified in domain-name, you must set domain-name-servers to a custom DNS server.

  • domain-name - If you\'re using AmazonProvidedDNS in us-east-1, specify ec2.internal. If you\'re using AmazonProvidedDNS in another Region, specify region.compute.internal (for example, ap-northeast-1.compute.internal). Otherwise, specify a domain name (for example, ExampleCompany.com). This value is used to complete unqualified DNS hostnames. Important: Some Linux operating systems accept multiple domain names separated by spaces. However, Windows and other Linux operating systems treat the value as a single domain, which results in unexpected behavior. If your DHCP options set is associated with a VPC that has instances with multiple operating systems, specify only one domain name.

  • ntp-servers - The IP addresses of up to four Network Time Protocol (NTP) servers.

  • netbios-name-servers - The IP addresses of up to four NetBIOS name servers.

  • netbios-node-type - The NetBIOS node type (1, 2, 4, or 8). We recommend that you specify 2 (broadcast and multicast are not currently supported). For more information about these node types, see RFC 2132.

Your VPC automatically starts out with a set of DHCP options that includes only a DNS server that we provide (AmazonProvidedDNS). If you create a set of options, and if your VPC has an internet gateway, make sure to set the domain-name-servers option either to AmazonProvidedDNS or to a domain name server of your choice. For more information, see DHCP options sets in the Amazon VPC User Guide.

', 'CreateEgressOnlyInternetGateway' => '

[IPv6 only] Creates an egress-only internet gateway for your VPC. An egress-only internet gateway is used to enable outbound communication over IPv6 from instances in your VPC to the internet, and prevents hosts outside of your VPC from initiating an IPv6 connection with your instance.

', 'CreateFleet' => '

Creates an EC2 Fleet that contains the configuration information for On-Demand Instances and Spot Instances. Instances are launched immediately if there is available capacity.

A single EC2 Fleet can include multiple launch specifications that vary by instance type, AMI, Availability Zone, or subnet.

For more information, see EC2 Fleet in the Amazon EC2 User Guide.

', 'CreateFlowLogs' => '

Creates one or more flow logs to capture information about IP traffic for a specific network interface, subnet, or VPC.

Flow log data for a monitored network interface is recorded as flow log records, which are log events consisting of fields that describe the traffic flow. For more information, see Flow log records in the Amazon Virtual Private Cloud User Guide.

When publishing to CloudWatch Logs, flow log records are published to a log group, and each network interface has a unique log stream in the log group. When publishing to Amazon S3, flow log records for all of the monitored network interfaces are published to a single log file object that is stored in the specified bucket.

For more information, see VPC Flow Logs in the Amazon Virtual Private Cloud User Guide.

', 'CreateFpgaImage' => '

Creates an Amazon FPGA Image (AFI) from the specified design checkpoint (DCP).

The create operation is asynchronous. To verify that the AFI is ready for use, check the output logs.

An AFI contains the FPGA bitstream that is ready to download to an FPGA. You can securely deploy an AFI on multiple FPGA-accelerated instances. For more information, see the Amazon Web Services FPGA Hardware Development Kit.

', 'CreateImage' => '

Creates an Amazon EBS-backed AMI from an Amazon EBS-backed instance that is either running or stopped.

If you customized your instance with instance store volumes or Amazon EBS volumes in addition to the root device volume, the new AMI contains block device mapping information for those volumes. When you launch an instance from this new AMI, the instance automatically launches with those additional volumes.

For more information, see Create an Amazon EBS-backed Linux AMI in the Amazon Elastic Compute Cloud User Guide.

', 'CreateInstanceConnectEndpoint' => '

Creates an EC2 Instance Connect Endpoint.

An EC2 Instance Connect Endpoint allows you to connect to an instance, without requiring the instance to have a public IPv4 address. For more information, see Connect to your instances without requiring a public IPv4 address using EC2 Instance Connect Endpoint in the Amazon EC2 User Guide.

', 'CreateInstanceEventWindow' => '

Creates an event window in which scheduled events for the associated Amazon EC2 instances can run.

You can define either a set of time ranges or a cron expression when creating the event window, but not both. All event window times are in UTC.

You can create up to 200 event windows per Amazon Web Services Region.

When you create the event window, targets (instance IDs, Dedicated Host IDs, or tags) are not yet associated with it. To ensure that the event window can be used, you must associate one or more targets with it by using the AssociateInstanceEventWindow API.

Event windows are applicable only for scheduled events that stop, reboot, or terminate instances.

Event windows are not applicable for:

  • Expedited scheduled events and network maintenance events.

  • Unscheduled maintenance such as AutoRecovery and unplanned reboots.

For more information, see Define event windows for scheduled events in the Amazon EC2 User Guide.

', 'CreateInstanceExportTask' => '

Exports a running or stopped instance to an Amazon S3 bucket.

For information about the prerequisites for your Amazon S3 bucket, supported operating systems, image formats, and known limitations for the types of instances you can export, see Exporting an instance as a VM Using VM Import/Export in the VM Import/Export User Guide.

', 'CreateInternetGateway' => '

Creates an internet gateway for use with a VPC. After creating the internet gateway, you attach it to a VPC using AttachInternetGateway.

For more information, see Internet gateways in the Amazon VPC User Guide.

', 'CreateIpam' => '

Create an IPAM. Amazon VPC IP Address Manager (IPAM) is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across Amazon Web Services Regions and accounts throughout your Amazon Web Services Organization.

For more information, see Create an IPAM in the Amazon VPC IPAM User Guide.

', 'CreateIpamPool' => '

Create an IP address pool for Amazon VPC IP Address Manager (IPAM). In IPAM, a pool is a collection of contiguous IP addresses CIDRs. Pools enable you to organize your IP addresses according to your routing and security needs. For example, if you have separate routing and security needs for development and production applications, you can create a pool for each.

For more information, see Create a top-level pool in the Amazon VPC IPAM User Guide.

', 'CreateIpamResourceDiscovery' => '

Creates an IPAM resource discovery. A resource discovery is an IPAM component that enables IPAM to manage and monitor resources that belong to the owning account.

', 'CreateIpamScope' => '

Create an IPAM scope. In IPAM, a scope is the highest-level container within IPAM. An IPAM contains two default scopes. Each scope represents the IP space for a single network. The private scope is intended for all private IP address space. The public scope is intended for all public IP address space. Scopes enable you to reuse IP addresses across multiple unconnected networks without causing IP address overlap or conflict.

For more information, see Add a scope in the Amazon VPC IPAM User Guide.

', 'CreateKeyPair' => '

Creates an ED25519 or 2048-bit RSA key pair with the specified name and in the specified PEM or PPK format. Amazon EC2 stores the public key and displays the private key for you to save to a file. The private key is returned as an unencrypted PEM encoded PKCS#1 private key or an unencrypted PPK formatted private key for use with PuTTY. If a key with the specified name already exists, Amazon EC2 returns an error.

The key pair returned to you is available only in the Amazon Web Services Region in which you create it. If you prefer, you can create your own key pair using a third-party tool and upload it to any Region using ImportKeyPair.

You can have up to 5,000 key pairs per Amazon Web Services Region.

For more information, see Amazon EC2 key pairs in the Amazon Elastic Compute Cloud User Guide.

', 'CreateLaunchTemplate' => '

Creates a launch template.

A launch template contains the parameters to launch an instance. When you launch an instance using RunInstances, you can specify a launch template instead of providing the launch parameters in the request. For more information, see Launch an instance from a launch template in the Amazon Elastic Compute Cloud User Guide.

If you want to clone an existing launch template as the basis for creating a new launch template, you can use the Amazon EC2 console. The API, SDKs, and CLI do not support cloning a template. For more information, see Create a launch template from an existing launch template in the Amazon Elastic Compute Cloud User Guide.

', 'CreateLaunchTemplateVersion' => '

Creates a new version of a launch template. You can specify an existing version of launch template from which to base the new version.

Launch template versions are numbered in the order in which they are created. You cannot specify, change, or replace the numbering of launch template versions.

Launch templates are immutable; after you create a launch template, you can\'t modify it. Instead, you can create a new version of the launch template that includes any changes you require.

For more information, see Modify a launch template (manage launch template versions) in the Amazon Elastic Compute Cloud User Guide.

', 'CreateLocalGatewayRoute' => '

Creates a static route for the specified local gateway route table. You must specify one of the following targets:

  • LocalGatewayVirtualInterfaceGroupId

  • NetworkInterfaceId

', 'CreateLocalGatewayRouteTable' => '

Creates a local gateway route table.

', 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation' => '

Creates a local gateway route table virtual interface group association.

', 'CreateLocalGatewayRouteTableVpcAssociation' => '

Associates the specified VPC with the specified local gateway route table.

', 'CreateManagedPrefixList' => '

Creates a managed prefix list. You can specify one or more entries for the prefix list. Each entry consists of a CIDR block and an optional description.

', 'CreateNatGateway' => '

Creates a NAT gateway in the specified subnet. This action creates a network interface in the specified subnet with a private IP address from the IP address range of the subnet. You can create either a public NAT gateway or a private NAT gateway.

With a public NAT gateway, internet-bound traffic from a private subnet can be routed to the NAT gateway, so that instances in a private subnet can connect to the internet.

With a private NAT gateway, private communication is routed across VPCs and on-premises networks through a transit gateway or virtual private gateway. Common use cases include running large workloads behind a small pool of allowlisted IPv4 addresses, preserving private IPv4 addresses, and communicating between overlapping networks.

For more information, see NAT gateways in the Amazon VPC User Guide.

When you create a public NAT gateway and assign it an EIP or secondary EIPs, the network border group of the EIPs must match the network border group of the Availability Zone (AZ) that the public NAT gateway is in. If it\'s not the same, the NAT gateway will fail to launch. You can see the network border group for the subnet\'s AZ by viewing the details of the subnet. Similarly, you can view the network border group of an EIP by viewing the details of the EIP address. For more information about network border groups and EIPs, see Allocate an Elastic IP address in the Amazon VPC User Guide.

', 'CreateNetworkAcl' => '

Creates a network ACL in a VPC. Network ACLs provide an optional layer of security (in addition to security groups) for the instances in your VPC.

For more information, see Network ACLs in the Amazon VPC User Guide.

', 'CreateNetworkAclEntry' => '

Creates an entry (a rule) in a network ACL with the specified rule number. Each network ACL has a set of numbered ingress rules and a separate set of numbered egress rules. When determining whether a packet should be allowed in or out of a subnet associated with the ACL, we process the entries in the ACL according to the rule numbers, in ascending order. Each network ACL has a set of ingress rules and a separate set of egress rules.

We recommend that you leave room between the rule numbers (for example, 100, 110, 120, ...), and not number them one right after the other (for example, 101, 102, 103, ...). This makes it easier to add a rule between existing ones without having to renumber the rules.

After you add an entry, you can\'t modify it; you must either replace it, or create an entry and delete the old one.

For more information about network ACLs, see Network ACLs in the Amazon VPC User Guide.

', 'CreateNetworkInsightsAccessScope' => '

Creates a Network Access Scope.

Amazon Web Services Network Access Analyzer enables cloud networking and cloud operations teams to verify that their networks on Amazon Web Services conform to their network security and governance objectives. For more information, see the Amazon Web Services Network Access Analyzer Guide.

', 'CreateNetworkInsightsPath' => '

Creates a path to analyze for reachability.

Reachability Analyzer enables you to analyze and debug network reachability between two resources in your virtual private cloud (VPC). For more information, see the Reachability Analyzer Guide.

', 'CreateNetworkInterface' => '

Creates a network interface in the specified subnet.

The number of IP addresses you can assign to a network interface varies by instance type. For more information, see IP Addresses Per ENI Per Instance Type in the Amazon Virtual Private Cloud User Guide.

For more information about network interfaces, see Elastic network interfaces in the Amazon Elastic Compute Cloud User Guide.

', 'CreateNetworkInterfacePermission' => '

Grants an Amazon Web Services-authorized account permission to attach the specified network interface to an instance in their account.

You can grant permission to a single Amazon Web Services account only, and only one account at a time.

', 'CreatePlacementGroup' => '

Creates a placement group in which to launch instances. The strategy of the placement group determines how the instances are organized within the group.

A cluster placement group is a logical grouping of instances within a single Availability Zone that benefit from low network latency, high network throughput. A spread placement group places instances on distinct hardware. A partition placement group places groups of instances in different partitions, where instances in one partition do not share the same hardware with instances in another partition.

For more information, see Placement groups in the Amazon EC2 User Guide.

', 'CreatePublicIpv4Pool' => '

Creates a public IPv4 address pool. A public IPv4 pool is an EC2 IP address pool required for the public IPv4 CIDRs that you own and bring to Amazon Web Services to manage with IPAM. IPv6 addresses you bring to Amazon Web Services, however, use IPAM pools only. To monitor the status of pool creation, use DescribePublicIpv4Pools.

', 'CreateReplaceRootVolumeTask' => '

Replaces the EBS-backed root volume for a running instance with a new volume that is restored to the original root volume\'s launch state, that is restored to a specific snapshot taken from the original root volume, or that is restored from an AMI that has the same key characteristics as that of the instance.

For more information, see Replace a root volume in the Amazon Elastic Compute Cloud User Guide.

', 'CreateReservedInstancesListing' => '

Creates a listing for Amazon EC2 Standard Reserved Instances to be sold in the Reserved Instance Marketplace. You can submit one Standard Reserved Instance listing at a time. To get a list of your Standard Reserved Instances, you can use the DescribeReservedInstances operation.

Only Standard Reserved Instances can be sold in the Reserved Instance Marketplace. Convertible Reserved Instances cannot be sold.

The Reserved Instance Marketplace matches sellers who want to resell Standard Reserved Instance capacity that they no longer need with buyers who want to purchase additional capacity. Reserved Instances bought and sold through the Reserved Instance Marketplace work like any other Reserved Instances.

To sell your Standard Reserved Instances, you must first register as a seller in the Reserved Instance Marketplace. After completing the registration process, you can create a Reserved Instance Marketplace listing of some or all of your Standard Reserved Instances, and specify the upfront price to receive for them. Your Standard Reserved Instance listings then become available for purchase. To view the details of your Standard Reserved Instance listing, you can use the DescribeReservedInstancesListings operation.

For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide.

', 'CreateRestoreImageTask' => '

Starts a task that restores an AMI from an Amazon S3 object that was previously created by using CreateStoreImageTask.

To use this API, you must have the required permissions. For more information, see Permissions for storing and restoring AMIs using Amazon S3 in the Amazon EC2 User Guide.

For more information, see Store and restore an AMI using Amazon S3 in the Amazon EC2 User Guide.

', 'CreateRoute' => '

Creates a route in a route table within a VPC.

You must specify either a destination CIDR block or a prefix list ID. You must also specify exactly one of the resources from the parameter list.

When determining how to route traffic, we use the route with the most specific match. For example, traffic is destined for the IPv4 address 192.0.2.3, and the route table includes the following two IPv4 routes:

  • 192.0.2.0/24 (goes to some target A)

  • 192.0.2.0/28 (goes to some target B)

Both routes apply to the traffic destined for 192.0.2.3. However, the second route in the list covers a smaller number of IP addresses and is therefore more specific, so we use that route to determine where to target the traffic.

For more information about route tables, see Route tables in the Amazon VPC User Guide.

', 'CreateRouteTable' => '

Creates a route table for the specified VPC. After you create a route table, you can add routes and associate the table with a subnet.

For more information, see Route tables in the Amazon VPC User Guide.

', 'CreateSecurityGroup' => '

Creates a security group.

A security group acts as a virtual firewall for your instance to control inbound and outbound traffic. For more information, see Amazon EC2 security groups in the Amazon Elastic Compute Cloud User Guide and Security groups for your VPC in the Amazon Virtual Private Cloud User Guide.

When you create a security group, you specify a friendly name of your choice. You can\'t have two security groups for the same VPC with the same name.

You have a default security group for use in your VPC. If you don\'t specify a security group when you launch an instance, the instance is launched into the appropriate default security group. A default security group includes a default rule that grants instances unrestricted network access to each other.

You can add or remove rules from your security groups using AuthorizeSecurityGroupIngress, AuthorizeSecurityGroupEgress, RevokeSecurityGroupIngress, and RevokeSecurityGroupEgress.

For more information about VPC security group limits, see Amazon VPC Limits.

', 'CreateSnapshot' => '

Creates a snapshot of an EBS volume and stores it in Amazon S3. You can use snapshots for backups, to make copies of EBS volumes, and to save data before shutting down an instance.

You can create snapshots of volumes in a Region and volumes on an Outpost. If you create a snapshot of a volume in a Region, the snapshot must be stored in the same Region as the volume. If you create a snapshot of a volume on an Outpost, the snapshot can be stored on the same Outpost as the volume, or in the Region for that Outpost.

When a snapshot is created, any Amazon Web Services Marketplace product codes that are associated with the source volume are propagated to the snapshot.

You can take a snapshot of an attached volume that is in use. However, snapshots only capture data that has been written to your Amazon EBS volume at the time the snapshot command is issued; this might exclude any data that has been cached by any applications or the operating system. If you can pause any file systems on the volume long enough to take a snapshot, your snapshot should be complete. However, if you cannot pause all file writes to the volume, you should unmount the volume from within the instance, issue the snapshot command, and then remount the volume to ensure a consistent and complete snapshot. You may remount and use your volume while the snapshot status is pending.

When you create a snapshot for an EBS volume that serves as a root device, we recommend that you stop the instance before taking the snapshot.

Snapshots that are taken from encrypted volumes are automatically encrypted. Volumes that are created from encrypted snapshots are also automatically encrypted. Your encrypted volumes and any associated snapshots always remain protected.

You can tag your snapshots during creation. For more information, see Tag your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide.

For more information, see Amazon Elastic Block Store and Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

', 'CreateSnapshots' => '

Creates crash-consistent snapshots of multiple EBS volumes and stores the data in S3. Volumes are chosen by specifying an instance. Any attached volumes will produce one snapshot each that is crash-consistent across the instance.

You can include all of the volumes currently attached to the instance, or you can exclude the root volume or specific data (non-root) volumes from the multi-volume snapshot set.

You can create multi-volume snapshots of instances in a Region and instances on an Outpost. If you create snapshots from an instance in a Region, the snapshots must be stored in the same Region as the instance. If you create snapshots from an instance on an Outpost, the snapshots can be stored on the same Outpost as the instance, or in the Region for that Outpost.

', 'CreateSpotDatafeedSubscription' => '

Creates a data feed for Spot Instances, enabling you to view Spot Instance usage logs. You can create one data feed per Amazon Web Services account. For more information, see Spot Instance data feed in the Amazon EC2 User Guide for Linux Instances.

', 'CreateStoreImageTask' => '

Stores an AMI as a single object in an Amazon S3 bucket.

To use this API, you must have the required permissions. For more information, see Permissions for storing and restoring AMIs using Amazon S3 in the Amazon EC2 User Guide.

For more information, see Store and restore an AMI using Amazon S3 in the Amazon EC2 User Guide.

', 'CreateSubnet' => '

Creates a subnet in the specified VPC. For an IPv4 only subnet, specify an IPv4 CIDR block. If the VPC has an IPv6 CIDR block, you can create an IPv6 only subnet or a dual stack subnet instead. For an IPv6 only subnet, specify an IPv6 CIDR block. For a dual stack subnet, specify both an IPv4 CIDR block and an IPv6 CIDR block.

A subnet CIDR block must not overlap the CIDR block of an existing subnet in the VPC. After you create a subnet, you can\'t change its CIDR block.

The allowed size for an IPv4 subnet is between a /28 netmask (16 IP addresses) and a /16 netmask (65,536 IP addresses). Amazon Web Services reserves both the first four and the last IPv4 address in each subnet\'s CIDR block. They\'re not available for your use.

If you\'ve associated an IPv6 CIDR block with your VPC, you can associate an IPv6 CIDR block with a subnet when you create it.

If you add more than one subnet to a VPC, they\'re set up in a star topology with a logical router in the middle.

When you stop an instance in a subnet, it retains its private IPv4 address. It\'s therefore possible to have a subnet with no running instances (they\'re all stopped), but no remaining IP addresses available.

For more information, see Subnets in the Amazon VPC User Guide.

', 'CreateSubnetCidrReservation' => '

Creates a subnet CIDR reservation. For more information, see Subnet CIDR reservations in the Amazon Virtual Private Cloud User Guide and Assign prefixes to network interfaces in the Amazon Elastic Compute Cloud User Guide.

', 'CreateTags' => '

Adds or overwrites only the specified tags for the specified Amazon EC2 resource or resources. When you specify an existing tag key, the value is overwritten with the new value. Each resource can have a maximum of 50 tags. Each tag consists of a key and optional value. Tag keys must be unique per resource.

For more information about tags, see Tag your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide. For more information about creating IAM policies that control users\' access to resources based on tags, see Supported resource-level permissions for Amazon EC2 API actions in the Amazon Elastic Compute Cloud User Guide.

', 'CreateTrafficMirrorFilter' => '

Creates a Traffic Mirror filter.

A Traffic Mirror filter is a set of rules that defines the traffic to mirror.

By default, no traffic is mirrored. To mirror traffic, use CreateTrafficMirrorFilterRule to add Traffic Mirror rules to the filter. The rules you add define what traffic gets mirrored. You can also use ModifyTrafficMirrorFilterNetworkServices to mirror supported network services.

', 'CreateTrafficMirrorFilterRule' => '

Creates a Traffic Mirror filter rule.

A Traffic Mirror rule defines the Traffic Mirror source traffic to mirror.

You need the Traffic Mirror filter ID when you create the rule.

', 'CreateTrafficMirrorSession' => '

Creates a Traffic Mirror session.

A Traffic Mirror session actively copies packets from a Traffic Mirror source to a Traffic Mirror target. Create a filter, and then assign it to the session to define a subset of the traffic to mirror, for example all TCP traffic.

The Traffic Mirror source and the Traffic Mirror target (monitoring appliances) can be in the same VPC, or in a different VPC connected via VPC peering or a transit gateway.

By default, no traffic is mirrored. Use CreateTrafficMirrorFilter to create filter rules that specify the traffic to mirror.

', 'CreateTrafficMirrorTarget' => '

Creates a target for your Traffic Mirror session.

A Traffic Mirror target is the destination for mirrored traffic. The Traffic Mirror source and the Traffic Mirror target (monitoring appliances) can be in the same VPC, or in different VPCs connected via VPC peering or a transit gateway.

A Traffic Mirror target can be a network interface, a Network Load Balancer, or a Gateway Load Balancer endpoint.

To use the target in a Traffic Mirror session, use CreateTrafficMirrorSession.

', 'CreateTransitGateway' => '

Creates a transit gateway.

You can use a transit gateway to interconnect your virtual private clouds (VPC) and on-premises networks. After the transit gateway enters the available state, you can attach your VPCs and VPN connections to the transit gateway.

To attach your VPCs, use CreateTransitGatewayVpcAttachment.

To attach a VPN connection, use CreateCustomerGateway to create a customer gateway and specify the ID of the customer gateway and the ID of the transit gateway in a call to CreateVpnConnection.

When you create a transit gateway, we create a default transit gateway route table and use it as the default association route table and the default propagation route table. You can use CreateTransitGatewayRouteTable to create additional transit gateway route tables. If you disable automatic route propagation, we do not create a default transit gateway route table. You can use EnableTransitGatewayRouteTablePropagation to propagate routes from a resource attachment to a transit gateway route table. If you disable automatic associations, you can use AssociateTransitGatewayRouteTable to associate a resource attachment with a transit gateway route table.

', 'CreateTransitGatewayConnect' => '

Creates a Connect attachment from a specified transit gateway attachment. A Connect attachment is a GRE-based tunnel attachment that you can use to establish a connection between a transit gateway and an appliance.

A Connect attachment uses an existing VPC or Amazon Web Services Direct Connect attachment as the underlying transport mechanism.

', 'CreateTransitGatewayConnectPeer' => '

Creates a Connect peer for a specified transit gateway Connect attachment between a transit gateway and an appliance.

The peer address and transit gateway address must be the same IP address family (IPv4 or IPv6).

For more information, see Connect peers in the Transit Gateways Guide.

', 'CreateTransitGatewayMulticastDomain' => '

Creates a multicast domain using the specified transit gateway.

The transit gateway must be in the available state before you create a domain. Use DescribeTransitGateways to see the state of transit gateway.

', 'CreateTransitGatewayPeeringAttachment' => '

Requests a transit gateway peering attachment between the specified transit gateway (requester) and a peer transit gateway (accepter). The peer transit gateway can be in your account or a different Amazon Web Services account.

After you create the peering attachment, the owner of the accepter transit gateway must accept the attachment request.

', 'CreateTransitGatewayPolicyTable' => '

Creates a transit gateway policy table.

', 'CreateTransitGatewayPrefixListReference' => '

Creates a reference (route) to a prefix list in a specified transit gateway route table.

', 'CreateTransitGatewayRoute' => '

Creates a static route for the specified transit gateway route table.

', 'CreateTransitGatewayRouteTable' => '

Creates a route table for the specified transit gateway.

', 'CreateTransitGatewayRouteTableAnnouncement' => '

Advertises a new transit gateway route table.

', 'CreateTransitGatewayVpcAttachment' => '

Attaches the specified VPC to the specified transit gateway.

If you attach a VPC with a CIDR range that overlaps the CIDR range of a VPC that is already attached, the new VPC CIDR range is not propagated to the default propagation route table.

To send VPC traffic to an attached transit gateway, add a route to the VPC route table using CreateRoute.

', 'CreateVerifiedAccessEndpoint' => '

An Amazon Web Services Verified Access endpoint is where you define your application along with an optional endpoint-level access policy.

', 'CreateVerifiedAccessGroup' => '

An Amazon Web Services Verified Access group is a collection of Amazon Web Services Verified Access endpoints who\'s associated applications have similar security requirements. Each instance within a Verified Access group shares an Verified Access policy. For example, you can group all Verified Access instances associated with "sales" applications together and use one common Verified Access policy.

', 'CreateVerifiedAccessInstance' => '

An Amazon Web Services Verified Access instance is a regional entity that evaluates application requests and grants access only when your security requirements are met.

', 'CreateVerifiedAccessTrustProvider' => '

A trust provider is a third-party entity that creates, maintains, and manages identity information for users and devices. When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

', 'CreateVolume' => '

Creates an EBS volume that can be attached to an instance in the same Availability Zone.

You can create a new empty volume or restore a volume from an EBS snapshot. Any Amazon Web Services Marketplace product codes from the snapshot are propagated to the volume.

You can create encrypted volumes. Encrypted volumes must be attached to instances that support Amazon EBS encryption. Volumes that are created from encrypted snapshots are also automatically encrypted. For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

You can tag your volumes during creation. For more information, see Tag your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide.

For more information, see Create an Amazon EBS volume in the Amazon Elastic Compute Cloud User Guide.

', 'CreateVpc' => '

Creates a VPC with the specified CIDR blocks. For more information, see IP addressing for your VPCs and subnets in the Amazon VPC User Guide.

You can optionally request an IPv6 CIDR block for the VPC. You can request an Amazon-provided IPv6 CIDR block from Amazon\'s pool of IPv6 addresses or an IPv6 CIDR block from an IPv6 address pool that you provisioned through bring your own IP addresses (BYOIP).

By default, each instance that you launch in the VPC has the default DHCP options, which include only a default DNS server that we provide (AmazonProvidedDNS). For more information, see DHCP option sets in the Amazon VPC User Guide.

You can specify the instance tenancy value for the VPC when you create it. You can\'t change this value for the VPC after you create it. For more information, see Dedicated Instances in the Amazon EC2 User Guide.

', 'CreateVpcEndpoint' => '

Creates a VPC endpoint. A VPC endpoint provides a private connection between the specified VPC and the specified endpoint service. You can use an endpoint service provided by Amazon Web Services, an Amazon Web Services Marketplace Partner, or another Amazon Web Services account. For more information, see the Amazon Web Services PrivateLink User Guide.

', 'CreateVpcEndpointConnectionNotification' => '

Creates a connection notification for a specified VPC endpoint or VPC endpoint service. A connection notification notifies you of specific endpoint events. You must create an SNS topic to receive notifications. For more information, see Create a Topic in the Amazon Simple Notification Service Developer Guide.

You can create a connection notification for interface endpoints only.

', 'CreateVpcEndpointServiceConfiguration' => '

Creates a VPC endpoint service to which service consumers (Amazon Web Services accounts, users, and IAM roles) can connect.

Before you create an endpoint service, you must create one of the following for your service:

If you set the private DNS name, you must prove that you own the private DNS domain name.

For more information, see the Amazon Web Services PrivateLink Guide.

', 'CreateVpcPeeringConnection' => '

Requests a VPC peering connection between two VPCs: a requester VPC that you own and an accepter VPC with which to create the connection. The accepter VPC can belong to another Amazon Web Services account and can be in a different Region to the requester VPC. The requester VPC and accepter VPC cannot have overlapping CIDR blocks.

Limitations and rules apply to a VPC peering connection. For more information, see the limitations section in the VPC Peering Guide.

The owner of the accepter VPC must accept the peering request to activate the peering connection. The VPC peering connection request expires after 7 days, after which it cannot be accepted or rejected.

If you create a VPC peering connection request between VPCs with overlapping CIDR blocks, the VPC peering connection has a status of failed.

', 'CreateVpnConnection' => '

Creates a VPN connection between an existing virtual private gateway or transit gateway and a customer gateway. The supported connection type is ipsec.1.

The response includes information that you need to give to your network administrator to configure your customer gateway.

We strongly recommend that you use HTTPS when calling this operation because the response contains sensitive cryptographic information for configuring your customer gateway device.

If you decide to shut down your VPN connection for any reason and later create a new VPN connection, you must reconfigure your customer gateway with the new information returned from this call.

This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn\'t return an error.

For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.

', 'CreateVpnConnectionRoute' => '

Creates a static route associated with a VPN connection between an existing virtual private gateway and a VPN customer gateway. The static route allows traffic to be routed from the virtual private gateway to the VPN customer gateway.

For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.

', 'CreateVpnGateway' => '

Creates a virtual private gateway. A virtual private gateway is the endpoint on the VPC side of your VPN connection. You can create a virtual private gateway before creating the VPC itself.

For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.

', 'DeleteCarrierGateway' => '

Deletes a carrier gateway.

If you do not delete the route that contains the carrier gateway as the Target, the route is a blackhole route. For information about how to delete a route, see DeleteRoute.

', 'DeleteClientVpnEndpoint' => '

Deletes the specified Client VPN endpoint. You must disassociate all target networks before you can delete a Client VPN endpoint.

', 'DeleteClientVpnRoute' => '

Deletes a route from a Client VPN endpoint. You can only delete routes that you manually added using the CreateClientVpnRoute action. You cannot delete routes that were automatically added when associating a subnet. To remove routes that have been automatically added, disassociate the target subnet from the Client VPN endpoint.

', 'DeleteCoipCidr' => '

Deletes a range of customer-owned IP addresses.

', 'DeleteCoipPool' => '

Deletes a pool of customer-owned IP (CoIP) addresses.

', 'DeleteCustomerGateway' => '

Deletes the specified customer gateway. You must delete the VPN connection before you can delete the customer gateway.

', 'DeleteDhcpOptions' => '

Deletes the specified set of DHCP options. You must disassociate the set of DHCP options before you can delete it. You can disassociate the set of DHCP options by associating either a new set of options or the default set of options with the VPC.

', 'DeleteEgressOnlyInternetGateway' => '

Deletes an egress-only internet gateway.

', 'DeleteFleets' => '

Deletes the specified EC2 Fleets.

After you delete an EC2 Fleet, it launches no new instances.

You must also specify whether a deleted EC2 Fleet should terminate its instances. If you choose to terminate the instances, the EC2 Fleet enters the deleted_terminating state. Otherwise, the EC2 Fleet enters the deleted_running state, and the instances continue to run until they are interrupted or you terminate them manually.

For instant fleets, EC2 Fleet must terminate the instances when the fleet is deleted. A deleted instant fleet with running instances is not supported.

Restrictions

  • You can delete up to 25 instant fleets in a single request. If you exceed this number, no instant fleets are deleted and an error is returned. There is no restriction on the number of fleets of type maintain or request that can be deleted in a single request.

  • Up to 1000 instances can be terminated in a single request to delete instant fleets.

For more information, see Delete an EC2 Fleet in the Amazon EC2 User Guide.

', 'DeleteFlowLogs' => '

Deletes one or more flow logs.

', 'DeleteFpgaImage' => '

Deletes the specified Amazon FPGA Image (AFI).

', 'DeleteInstanceConnectEndpoint' => '

Deletes the specified EC2 Instance Connect Endpoint.

', 'DeleteInstanceEventWindow' => '

Deletes the specified event window.

For more information, see Define event windows for scheduled events in the Amazon EC2 User Guide.

', 'DeleteInternetGateway' => '

Deletes the specified internet gateway. You must detach the internet gateway from the VPC before you can delete it.

', 'DeleteIpam' => '

Delete an IPAM. Deleting an IPAM removes all monitored data associated with the IPAM including the historical data for CIDRs.

For more information, see Delete an IPAM in the Amazon VPC IPAM User Guide.

', 'DeleteIpamPool' => '

Delete an IPAM pool.

You cannot delete an IPAM pool if there are allocations in it or CIDRs provisioned to it. To release allocations, see ReleaseIpamPoolAllocation. To deprovision pool CIDRs, see DeprovisionIpamPoolCidr.

For more information, see Delete a pool in the Amazon VPC IPAM User Guide.

', 'DeleteIpamResourceDiscovery' => '

Deletes an IPAM resource discovery. A resource discovery is an IPAM component that enables IPAM to manage and monitor resources that belong to the owning account.

', 'DeleteIpamScope' => '

Delete the scope for an IPAM. You cannot delete the default scopes.

For more information, see Delete a scope in the Amazon VPC IPAM User Guide.

', 'DeleteKeyPair' => '

Deletes the specified key pair, by removing the public key from Amazon EC2.

', 'DeleteLaunchTemplate' => '

Deletes a launch template. Deleting a launch template deletes all of its versions.

', 'DeleteLaunchTemplateVersions' => '

Deletes one or more versions of a launch template.

You can\'t delete the default version of a launch template; you must first assign a different version as the default. If the default version is the only version for the launch template, you must delete the entire launch template using DeleteLaunchTemplate.

You can delete up to 200 launch template versions in a single request. To delete more than 200 versions in a single request, use DeleteLaunchTemplate, which deletes the launch template and all of its versions.

For more information, see Delete a launch template version in the EC2 User Guide.

', 'DeleteLocalGatewayRoute' => '

Deletes the specified route from the specified local gateway route table.

', 'DeleteLocalGatewayRouteTable' => '

Deletes a local gateway route table.

', 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation' => '

Deletes a local gateway route table virtual interface group association.

', 'DeleteLocalGatewayRouteTableVpcAssociation' => '

Deletes the specified association between a VPC and local gateway route table.

', 'DeleteManagedPrefixList' => '

Deletes the specified managed prefix list. You must first remove all references to the prefix list in your resources.

', 'DeleteNatGateway' => '

Deletes the specified NAT gateway. Deleting a public NAT gateway disassociates its Elastic IP address, but does not release the address from your account. Deleting a NAT gateway does not delete any NAT gateway routes in your route tables.

', 'DeleteNetworkAcl' => '

Deletes the specified network ACL. You can\'t delete the ACL if it\'s associated with any subnets. You can\'t delete the default network ACL.

', 'DeleteNetworkAclEntry' => '

Deletes the specified ingress or egress entry (rule) from the specified network ACL.

', 'DeleteNetworkInsightsAccessScope' => '

Deletes the specified Network Access Scope.

', 'DeleteNetworkInsightsAccessScopeAnalysis' => '

Deletes the specified Network Access Scope analysis.

', 'DeleteNetworkInsightsAnalysis' => '

Deletes the specified network insights analysis.

', 'DeleteNetworkInsightsPath' => '

Deletes the specified path.

', 'DeleteNetworkInterface' => '

Deletes the specified network interface. You must detach the network interface before you can delete it.

', 'DeleteNetworkInterfacePermission' => '

Deletes a permission for a network interface. By default, you cannot delete the permission if the account for which you\'re removing the permission has attached the network interface to an instance. However, you can force delete the permission, regardless of any attachment.

', 'DeletePlacementGroup' => '

Deletes the specified placement group. You must terminate all instances in the placement group before you can delete the placement group. For more information, see Placement groups in the Amazon EC2 User Guide.

', 'DeletePublicIpv4Pool' => '

Delete a public IPv4 pool. A public IPv4 pool is an EC2 IP address pool required for the public IPv4 CIDRs that you own and bring to Amazon Web Services to manage with IPAM. IPv6 addresses you bring to Amazon Web Services, however, use IPAM pools only.

', 'DeleteQueuedReservedInstances' => '

Deletes the queued purchases for the specified Reserved Instances.

', 'DeleteRoute' => '

Deletes the specified route from the specified route table.

', 'DeleteRouteTable' => '

Deletes the specified route table. You must disassociate the route table from any subnets before you can delete it. You can\'t delete the main route table.

', 'DeleteSecurityGroup' => '

Deletes a security group.

If you attempt to delete a security group that is associated with an instance or network interface or is referenced by another security group, the operation fails with DependencyViolation.

', 'DeleteSnapshot' => '

Deletes the specified snapshot.

When you make periodic snapshots of a volume, the snapshots are incremental, and only the blocks on the device that have changed since your last snapshot are saved in the new snapshot. When you delete a snapshot, only the data not needed for any other snapshot is removed. So regardless of which prior snapshots have been deleted, all active snapshots will have access to all the information needed to restore the volume.

You cannot delete a snapshot of the root device of an EBS volume used by a registered AMI. You must first de-register the AMI before you can delete the snapshot.

For more information, see Delete an Amazon EBS snapshot in the Amazon Elastic Compute Cloud User Guide.

', 'DeleteSpotDatafeedSubscription' => '

Deletes the data feed for Spot Instances.

', 'DeleteSubnet' => '

Deletes the specified subnet. You must terminate all running instances in the subnet before you can delete the subnet.

', 'DeleteSubnetCidrReservation' => '

Deletes a subnet CIDR reservation.

', 'DeleteTags' => '

Deletes the specified set of tags from the specified set of resources.

To list the current tags, use DescribeTags. For more information about tags, see Tag your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide.

', 'DeleteTrafficMirrorFilter' => '

Deletes the specified Traffic Mirror filter.

You cannot delete a Traffic Mirror filter that is in use by a Traffic Mirror session.

', 'DeleteTrafficMirrorFilterRule' => '

Deletes the specified Traffic Mirror rule.

', 'DeleteTrafficMirrorSession' => '

Deletes the specified Traffic Mirror session.

', 'DeleteTrafficMirrorTarget' => '

Deletes the specified Traffic Mirror target.

You cannot delete a Traffic Mirror target that is in use by a Traffic Mirror session.

', 'DeleteTransitGateway' => '

Deletes the specified transit gateway.

', 'DeleteTransitGatewayConnect' => '

Deletes the specified Connect attachment. You must first delete any Connect peers for the attachment.

', 'DeleteTransitGatewayConnectPeer' => '

Deletes the specified Connect peer.

', 'DeleteTransitGatewayMulticastDomain' => '

Deletes the specified transit gateway multicast domain.

', 'DeleteTransitGatewayPeeringAttachment' => '

Deletes a transit gateway peering attachment.

', 'DeleteTransitGatewayPolicyTable' => '

Deletes the specified transit gateway policy table.

', 'DeleteTransitGatewayPrefixListReference' => '

Deletes a reference (route) to a prefix list in a specified transit gateway route table.

', 'DeleteTransitGatewayRoute' => '

Deletes the specified route from the specified transit gateway route table.

', 'DeleteTransitGatewayRouteTable' => '

Deletes the specified transit gateway route table. You must disassociate the route table from any transit gateway route tables before you can delete it.

', 'DeleteTransitGatewayRouteTableAnnouncement' => '

Advertises to the transit gateway that a transit gateway route table is deleted.

', 'DeleteTransitGatewayVpcAttachment' => '

Deletes the specified VPC attachment.

', 'DeleteVerifiedAccessEndpoint' => '

Delete an Amazon Web Services Verified Access endpoint.

', 'DeleteVerifiedAccessGroup' => '

Delete an Amazon Web Services Verified Access group.

', 'DeleteVerifiedAccessInstance' => '

Delete an Amazon Web Services Verified Access instance.

', 'DeleteVerifiedAccessTrustProvider' => '

Delete an Amazon Web Services Verified Access trust provider.

', 'DeleteVolume' => '

Deletes the specified EBS volume. The volume must be in the available state (not attached to an instance).

The volume can remain in the deleting state for several minutes.

For more information, see Delete an Amazon EBS volume in the Amazon Elastic Compute Cloud User Guide.

', 'DeleteVpc' => '

Deletes the specified VPC. You must detach or delete all gateways and resources that are associated with the VPC before you can delete it. For example, you must terminate all instances running in the VPC, delete all security groups associated with the VPC (except the default one), delete all route tables associated with the VPC (except the default one), and so on. When you delete the VPC, it deletes the VPC\'s default security group, network ACL, and route table.

', 'DeleteVpcEndpointConnectionNotifications' => '

Deletes the specified VPC endpoint connection notifications.

', 'DeleteVpcEndpointServiceConfigurations' => '

Deletes the specified VPC endpoint service configurations. Before you can delete an endpoint service configuration, you must reject any Available or PendingAcceptance interface endpoint connections that are attached to the service.

', 'DeleteVpcEndpoints' => '

Deletes the specified VPC endpoints.

When you delete a gateway endpoint, we delete the endpoint routes in the route tables for the endpoint.

When you delete a Gateway Load Balancer endpoint, we delete its endpoint network interfaces. You can only delete Gateway Load Balancer endpoints when the routes that are associated with the endpoint are deleted.

When you delete an interface endpoint, we delete its endpoint network interfaces.

', 'DeleteVpcPeeringConnection' => '

Deletes a VPC peering connection. Either the owner of the requester VPC or the owner of the accepter VPC can delete the VPC peering connection if it\'s in the active state. The owner of the requester VPC can delete a VPC peering connection in the pending-acceptance state. You cannot delete a VPC peering connection that\'s in the failed or rejected state.

', 'DeleteVpnConnection' => '

Deletes the specified VPN connection.

If you\'re deleting the VPC and its associated components, we recommend that you detach the virtual private gateway from the VPC and delete the VPC before deleting the VPN connection. If you believe that the tunnel credentials for your VPN connection have been compromised, you can delete the VPN connection and create a new one that has new keys, without needing to delete the VPC or virtual private gateway. If you create a new VPN connection, you must reconfigure the customer gateway device using the new configuration information returned with the new VPN connection ID.

For certificate-based authentication, delete all Certificate Manager (ACM) private certificates used for the Amazon Web Services-side tunnel endpoints for the VPN connection before deleting the VPN connection.

', 'DeleteVpnConnectionRoute' => '

Deletes the specified static route associated with a VPN connection between an existing virtual private gateway and a VPN customer gateway. The static route allows traffic to be routed from the virtual private gateway to the VPN customer gateway.

', 'DeleteVpnGateway' => '

Deletes the specified virtual private gateway. You must first detach the virtual private gateway from the VPC. Note that you don\'t need to delete the virtual private gateway if you plan to delete and recreate the VPN connection between your VPC and your network.

', 'DeprovisionByoipCidr' => '

Releases the specified address range that you provisioned for use with your Amazon Web Services resources through bring your own IP addresses (BYOIP) and deletes the corresponding address pool.

Before you can release an address range, you must stop advertising it using WithdrawByoipCidr and you must not have any IP addresses allocated from its address range.

', 'DeprovisionIpamByoasn' => '

Deprovisions your Autonomous System Number (ASN) from your Amazon Web Services account. This action can only be called after any BYOIP CIDR associations are removed from your Amazon Web Services account with DisassociateIpamByoasn. For more information, see Tutorial: Bring your ASN to IPAM in the Amazon VPC IPAM guide.

', 'DeprovisionIpamPoolCidr' => '

Deprovision a CIDR provisioned from an IPAM pool. If you deprovision a CIDR from a pool that has a source pool, the CIDR is recycled back into the source pool. For more information, see Deprovision pool CIDRs in the Amazon VPC IPAM User Guide.

', 'DeprovisionPublicIpv4PoolCidr' => '

Deprovision a CIDR from a public IPv4 pool.

', 'DeregisterImage' => '

Deregisters the specified AMI. After you deregister an AMI, it can\'t be used to launch new instances.

If you deregister an AMI that matches a Recycle Bin retention rule, the AMI is retained in the Recycle Bin for the specified retention period. For more information, see Recycle Bin in the Amazon EC2 User Guide.

When you deregister an AMI, it doesn\'t affect any instances that you\'ve already launched from the AMI. You\'ll continue to incur usage costs for those instances until you terminate them.

When you deregister an Amazon EBS-backed AMI, it doesn\'t affect the snapshot that was created for the root volume of the instance during the AMI creation process. When you deregister an instance store-backed AMI, it doesn\'t affect the files that you uploaded to Amazon S3 when you created the AMI.

', 'DeregisterInstanceEventNotificationAttributes' => '

Deregisters tag keys to prevent tags that have the specified tag keys from being included in scheduled event notifications for resources in the Region.

', 'DeregisterTransitGatewayMulticastGroupMembers' => '

Deregisters the specified members (network interfaces) from the transit gateway multicast group.

', 'DeregisterTransitGatewayMulticastGroupSources' => '

Deregisters the specified sources (network interfaces) from the transit gateway multicast group.

', 'DescribeAccountAttributes' => '

Describes attributes of your Amazon Web Services account. The following are the supported account attributes:

  • default-vpc: The ID of the default VPC for your account, or none.

  • max-instances: This attribute is no longer supported. The returned value does not reflect your actual vCPU limit for running On-Demand Instances. For more information, see On-Demand Instance Limits in the Amazon Elastic Compute Cloud User Guide.

  • max-elastic-ips: The maximum number of Elastic IP addresses that you can allocate.

  • supported-platforms: This attribute is deprecated.

  • vpc-max-elastic-ips: The maximum number of Elastic IP addresses that you can allocate.

  • vpc-max-security-groups-per-interface: The maximum number of security groups that you can assign to a network interface.

', 'DescribeAddressTransfers' => '

Describes an Elastic IP address transfer. For more information, see Transfer Elastic IP addresses in the Amazon Virtual Private Cloud User Guide.

When you transfer an Elastic IP address, there is a two-step handshake between the source and transfer Amazon Web Services accounts. When the source account starts the transfer, the transfer account has seven days to accept the Elastic IP address transfer. During those seven days, the source account can view the pending transfer by using this action. After seven days, the transfer expires and ownership of the Elastic IP address returns to the source account. Accepted transfers are visible to the source account for three days after the transfers have been accepted.

', 'DescribeAddresses' => '

Describes the specified Elastic IP addresses or all of your Elastic IP addresses.

', 'DescribeAddressesAttribute' => '

Describes the attributes of the specified Elastic IP addresses. For requirements, see Using reverse DNS for email applications.

', 'DescribeAggregateIdFormat' => '

Describes the longer ID format settings for all resource types in a specific Region. This request is useful for performing a quick audit to determine whether a specific Region is fully opted in for longer IDs (17-character IDs).

This request only returns information about resource types that support longer IDs.

The following resource types support longer IDs: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | instance | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | reservation | route-table | route-table-association | security-group | snapshot | subnet | subnet-cidr-block-association | volume | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway.

', 'DescribeAvailabilityZones' => '

Describes the Availability Zones, Local Zones, and Wavelength Zones that are available to you. If there is an event impacting a zone, you can use this request to view the state and any provided messages for that zone.

For more information about Availability Zones, Local Zones, and Wavelength Zones, see Regions and zones in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeAwsNetworkPerformanceMetricSubscriptions' => '

Describes the current Infrastructure Performance metric subscriptions.

', 'DescribeBundleTasks' => '

Describes the specified bundle tasks or all of your bundle tasks.

Completed bundle tasks are listed for only a limited time. If your bundle task is no longer in the list, you can still register an AMI from it. Just use RegisterImage with the Amazon S3 bucket name and image manifest name you provided to the bundle task.

', 'DescribeByoipCidrs' => '

Describes the IP address ranges that were specified in calls to ProvisionByoipCidr.

To describe the address pools that were created when you provisioned the address ranges, use DescribePublicIpv4Pools or DescribeIpv6Pools.

', 'DescribeCapacityBlockOfferings' => '

Describes Capacity Block offerings available for purchase. With Capacity Blocks, you purchase a specific instance type for a period of time.

', 'DescribeCapacityReservationFleets' => '

Describes one or more Capacity Reservation Fleets.

', 'DescribeCapacityReservations' => '

Describes one or more of your Capacity Reservations. The results describe only the Capacity Reservations in the Amazon Web Services Region that you\'re currently using.

', 'DescribeCarrierGateways' => '

Describes one or more of your carrier gateways.

', 'DescribeClassicLinkInstances' => '

This action is deprecated.

Describes one or more of your linked EC2-Classic instances. This request only returns information about EC2-Classic instances linked to a VPC through ClassicLink. You cannot use this request to return information about other instances.

', 'DescribeClientVpnAuthorizationRules' => '

Describes the authorization rules for a specified Client VPN endpoint.

', 'DescribeClientVpnConnections' => '

Describes active client connections and connections that have been terminated within the last 60 minutes for the specified Client VPN endpoint.

', 'DescribeClientVpnEndpoints' => '

Describes one or more Client VPN endpoints in the account.

', 'DescribeClientVpnRoutes' => '

Describes the routes for the specified Client VPN endpoint.

', 'DescribeClientVpnTargetNetworks' => '

Describes the target networks associated with the specified Client VPN endpoint.

', 'DescribeCoipPools' => '

Describes the specified customer-owned address pools or all of your customer-owned address pools.

', 'DescribeConversionTasks' => '

Describes the specified conversion tasks or all your conversion tasks. For more information, see the VM Import/Export User Guide.

For information about the import manifest referenced by this API action, see VM Import Manifest.

', 'DescribeCustomerGateways' => '

Describes one or more of your VPN customer gateways.

For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.

', 'DescribeDhcpOptions' => '

Describes one or more of your DHCP options sets.

For more information, see DHCP options sets in the Amazon VPC User Guide.

', 'DescribeEgressOnlyInternetGateways' => '

Describes one or more of your egress-only internet gateways.

', 'DescribeElasticGpus' => '

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

Describes the Elastic Graphics accelerator associated with your instances. For more information about Elastic Graphics, see Amazon Elastic Graphics.

', 'DescribeExportImageTasks' => '

Describes the specified export image tasks or all of your export image tasks.

', 'DescribeExportTasks' => '

Describes the specified export instance tasks or all of your export instance tasks.

', 'DescribeFastLaunchImages' => '

Describe details for Windows AMIs that are configured for Windows fast launch.

', 'DescribeFastSnapshotRestores' => '

Describes the state of fast snapshot restores for your snapshots.

', 'DescribeFleetHistory' => '

Describes the events for the specified EC2 Fleet during the specified time.

EC2 Fleet events are delayed by up to 30 seconds before they can be described. This ensures that you can query by the last evaluated time and not miss a recorded event. EC2 Fleet events are available for 48 hours.

For more information, see Monitor fleet events using Amazon EventBridge in the Amazon EC2 User Guide.

', 'DescribeFleetInstances' => '

Describes the running instances for the specified EC2 Fleet.

For more information, see Monitor your EC2 Fleet in the Amazon EC2 User Guide.

', 'DescribeFleets' => '

Describes the specified EC2 Fleets or all of your EC2 Fleets.

For more information, see Monitor your EC2 Fleet in the Amazon EC2 User Guide.

', 'DescribeFlowLogs' => '

Describes one or more flow logs.

To view the published flow log records, you must view the log destination. For example, the CloudWatch Logs log group, the Amazon S3 bucket, or the Kinesis Data Firehose delivery stream.

', 'DescribeFpgaImageAttribute' => '

Describes the specified attribute of the specified Amazon FPGA Image (AFI).

', 'DescribeFpgaImages' => '

Describes the Amazon FPGA Images (AFIs) available to you. These include public AFIs, private AFIs that you own, and AFIs owned by other Amazon Web Services accounts for which you have load permissions.

', 'DescribeHostReservationOfferings' => '

Describes the Dedicated Host reservations that are available to purchase.

The results describe all of the Dedicated Host reservation offerings, including offerings that might not match the instance family and Region of your Dedicated Hosts. When purchasing an offering, ensure that the instance family and Region of the offering matches that of the Dedicated Hosts with which it is to be associated. For more information about supported instance types, see Dedicated Hosts in the Amazon EC2 User Guide.

', 'DescribeHostReservations' => '

Describes reservations that are associated with Dedicated Hosts in your account.

', 'DescribeHosts' => '

Describes the specified Dedicated Hosts or all your Dedicated Hosts.

The results describe only the Dedicated Hosts in the Region you\'re currently using. All listed instances consume capacity on your Dedicated Host. Dedicated Hosts that have recently been released are listed with the state released.

', 'DescribeIamInstanceProfileAssociations' => '

Describes your IAM instance profile associations.

', 'DescribeIdFormat' => '

Describes the ID format settings for your resources on a per-Region basis, for example, to view which resource types are enabled for longer IDs. This request only returns information about resource types whose ID formats can be modified; it does not return information about other resource types.

The following resource types support longer IDs: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | instance | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | reservation | route-table | route-table-association | security-group | snapshot | subnet | subnet-cidr-block-association | volume | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway.

These settings apply to the IAM user who makes the request; they do not apply to the entire Amazon Web Services account. By default, an IAM user defaults to the same settings as the root user, unless they explicitly override the settings by running the ModifyIdFormat command. Resources created with longer IDs are visible to all IAM users, regardless of these settings and provided that they have permission to use the relevant Describe command for the resource type.

', 'DescribeIdentityIdFormat' => '

Describes the ID format settings for resources for the specified IAM user, IAM role, or root user. For example, you can view the resource types that are enabled for longer IDs. This request only returns information about resource types whose ID formats can be modified; it does not return information about other resource types. For more information, see Resource IDs in the Amazon Elastic Compute Cloud User Guide.

The following resource types support longer IDs: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | instance | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | reservation | route-table | route-table-association | security-group | snapshot | subnet | subnet-cidr-block-association | volume | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway.

These settings apply to the principal specified in the request. They do not apply to the principal that makes the request.

', 'DescribeImageAttribute' => '

Describes the specified attribute of the specified AMI. You can specify only one attribute at a time.

', 'DescribeImages' => '

Describes the specified images (AMIs, AKIs, and ARIs) available to you or all of the images available to you.

The images available to you include public images, private images that you own, and private images owned by other Amazon Web Services accounts for which you have explicit launch permissions.

Recently deregistered images appear in the returned results for a short interval and then return empty results. After all instances that reference a deregistered AMI are terminated, specifying the ID of the image will eventually return an error indicating that the AMI ID cannot be found.

', 'DescribeImportImageTasks' => '

Displays details about an import virtual machine or import snapshot tasks that are already created.

', 'DescribeImportSnapshotTasks' => '

Describes your import snapshot tasks.

', 'DescribeInstanceAttribute' => '

Describes the specified attribute of the specified instance. You can specify only one attribute at a time. Valid attribute values are: instanceType | kernel | ramdisk | userData | disableApiTermination | instanceInitiatedShutdownBehavior | rootDeviceName | blockDeviceMapping | productCodes | sourceDestCheck | groupSet | ebsOptimized | sriovNetSupport

', 'DescribeInstanceConnectEndpoints' => '

Describes the specified EC2 Instance Connect Endpoints or all EC2 Instance Connect Endpoints.

', 'DescribeInstanceCreditSpecifications' => '

Describes the credit option for CPU usage of the specified burstable performance instances. The credit options are standard and unlimited.

If you do not specify an instance ID, Amazon EC2 returns burstable performance instances with the unlimited credit option, as well as instances that were previously configured as T2, T3, and T3a with the unlimited credit option. For example, if you resize a T2 instance, while it is configured as unlimited, to an M4 instance, Amazon EC2 returns the M4 instance.

If you specify one or more instance IDs, Amazon EC2 returns the credit option (standard or unlimited) of those instances. If you specify an instance ID that is not valid, such as an instance that is not a burstable performance instance, an error is returned.

Recently terminated instances might appear in the returned results. This interval is usually less than one hour.

If an Availability Zone is experiencing a service disruption and you specify instance IDs in the affected zone, or do not specify any instance IDs at all, the call fails. If you specify only instance IDs in an unaffected zone, the call works normally.

For more information, see Burstable performance instances in the Amazon EC2 User Guide.

', 'DescribeInstanceEventNotificationAttributes' => '

Describes the tag keys that are registered to appear in scheduled event notifications for resources in the current Region.

', 'DescribeInstanceEventWindows' => '

Describes the specified event windows or all event windows.

If you specify event window IDs, the output includes information for only the specified event windows. If you specify filters, the output includes information for only those event windows that meet the filter criteria. If you do not specify event windows IDs or filters, the output includes information for all event windows, which can affect performance. We recommend that you use pagination to ensure that the operation returns quickly and successfully.

For more information, see Define event windows for scheduled events in the Amazon EC2 User Guide.

', 'DescribeInstanceStatus' => '

Describes the status of the specified instances or all of your instances. By default, only running instances are described, unless you specifically indicate to return the status of all instances.

Instance status includes the following components:

  • Status checks - Amazon EC2 performs status checks on running EC2 instances to identify hardware and software issues. For more information, see Status checks for your instances and Troubleshoot instances with failed status checks in the Amazon EC2 User Guide.

  • Scheduled events - Amazon EC2 can schedule events (such as reboot, stop, or terminate) for your instances related to hardware issues, software updates, or system maintenance. For more information, see Scheduled events for your instances in the Amazon EC2 User Guide.

  • Instance state - You can manage your instances from the moment you launch them through their termination. For more information, see Instance lifecycle in the Amazon EC2 User Guide.

', 'DescribeInstanceTopology' => '

Describes a tree-based hierarchy that represents the physical host placement of your EC2 instances within an Availability Zone or Local Zone. You can use this information to determine the relative proximity of your EC2 instances within the Amazon Web Services network to support your tightly coupled workloads.

Limitations

  • Supported zones

    • Availability Zone

    • Local Zone

  • Supported instance types

    • hpc6a.48xlarge | hpc6id.32xlarge | hpc7a.12xlarge | hpc7a.24xlarge | hpc7a.48xlarge | hpc7a.96xlarge | hpc7g.4xlarge | hpc7g.8xlarge | hpc7g.16xlarge

    • p3dn.24xlarge | p4d.24xlarge | p4de.24xlarge | p5.48xlarge

    • trn1.2xlarge | trn1.32xlarge | trn1n.32xlarge

For more information, see Amazon EC2 instance topology in the Amazon EC2 User Guide.

', 'DescribeInstanceTypeOfferings' => '

Returns a list of all instance types offered. The results can be filtered by location (Region or Availability Zone). If no location is specified, the instance types offered in the current Region are returned.

', 'DescribeInstanceTypes' => '

Describes the details of the instance types that are offered in a location. The results can be filtered by the attributes of the instance types.

', 'DescribeInstances' => '

Describes the specified instances or all instances.

If you specify instance IDs, the output includes information for only the specified instances. If you specify filters, the output includes information for only those instances that meet the filter criteria. If you do not specify instance IDs or filters, the output includes information for all instances, which can affect performance. We recommend that you use pagination to ensure that the operation returns quickly and successfully.

If you specify an instance ID that is not valid, an error is returned. If you specify an instance that you do not own, it is not included in the output.

Recently terminated instances might appear in the returned results. This interval is usually less than one hour.

If you describe instances in the rare case where an Availability Zone is experiencing a service disruption and you specify instance IDs that are in the affected zone, or do not specify any instance IDs at all, the call fails. If you describe instances and specify only instance IDs that are in an unaffected zone, the call works normally.

', 'DescribeInternetGateways' => '

Describes one or more of your internet gateways.

', 'DescribeIpamByoasn' => '

Describes your Autonomous System Numbers (ASNs), their provisioning statuses, and the BYOIP CIDRs with which they are associated. For more information, see Tutorial: Bring your ASN to IPAM in the Amazon VPC IPAM guide.

', 'DescribeIpamPools' => '

Get information about your IPAM pools.

', 'DescribeIpamResourceDiscoveries' => '

Describes IPAM resource discoveries. A resource discovery is an IPAM component that enables IPAM to manage and monitor resources that belong to the owning account.

', 'DescribeIpamResourceDiscoveryAssociations' => '

Describes resource discovery association with an Amazon VPC IPAM. An associated resource discovery is a resource discovery that has been associated with an IPAM..

', 'DescribeIpamScopes' => '

Get information about your IPAM scopes.

', 'DescribeIpams' => '

Get information about your IPAM pools.

For more information, see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'DescribeIpv6Pools' => '

Describes your IPv6 address pools.

', 'DescribeKeyPairs' => '

Describes the specified key pairs or all of your key pairs.

For more information about key pairs, see Amazon EC2 key pairs in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeLaunchTemplateVersions' => '

Describes one or more versions of a specified launch template. You can describe all versions, individual versions, or a range of versions. You can also describe all the latest versions or all the default versions of all the launch templates in your account.

', 'DescribeLaunchTemplates' => '

Describes one or more launch templates.

', 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations' => '

Describes the associations between virtual interface groups and local gateway route tables.

', 'DescribeLocalGatewayRouteTableVpcAssociations' => '

Describes the specified associations between VPCs and local gateway route tables.

', 'DescribeLocalGatewayRouteTables' => '

Describes one or more local gateway route tables. By default, all local gateway route tables are described. Alternatively, you can filter the results.

', 'DescribeLocalGatewayVirtualInterfaceGroups' => '

Describes the specified local gateway virtual interface groups.

', 'DescribeLocalGatewayVirtualInterfaces' => '

Describes the specified local gateway virtual interfaces.

', 'DescribeLocalGateways' => '

Describes one or more local gateways. By default, all local gateways are described. Alternatively, you can filter the results.

', 'DescribeLockedSnapshots' => '

Describes the lock status for a snapshot.

', 'DescribeManagedPrefixLists' => '

Describes your managed prefix lists and any Amazon Web Services-managed prefix lists.

To view the entries for your prefix list, use GetManagedPrefixListEntries.

', 'DescribeMovingAddresses' => '

This action is deprecated.

Describes your Elastic IP addresses that are being moved from or being restored to the EC2-Classic platform. This request does not return information about any other Elastic IP addresses in your account.

', 'DescribeNatGateways' => '

Describes one or more of your NAT gateways.

', 'DescribeNetworkAcls' => '

Describes one or more of your network ACLs.

For more information, see Network ACLs in the Amazon VPC User Guide.

', 'DescribeNetworkInsightsAccessScopeAnalyses' => '

Describes the specified Network Access Scope analyses.

', 'DescribeNetworkInsightsAccessScopes' => '

Describes the specified Network Access Scopes.

', 'DescribeNetworkInsightsAnalyses' => '

Describes one or more of your network insights analyses.

', 'DescribeNetworkInsightsPaths' => '

Describes one or more of your paths.

', 'DescribeNetworkInterfaceAttribute' => '

Describes a network interface attribute. You can specify only one attribute at a time.

', 'DescribeNetworkInterfacePermissions' => '

Describes the permissions for your network interfaces.

', 'DescribeNetworkInterfaces' => '

Describes one or more of your network interfaces.

If you have a large number of network interfaces, the operation fails unless you use pagination or one of the following filters: group-id, mac-address, private-dns-name, private-ip-address, private-dns-name, subnet-id, or vpc-id.

', 'DescribePlacementGroups' => '

Describes the specified placement groups or all of your placement groups. For more information, see Placement groups in the Amazon EC2 User Guide.

', 'DescribePrefixLists' => '

Describes available Amazon Web Services services in a prefix list format, which includes the prefix list name and prefix list ID of the service and the IP address range for the service.

We recommend that you use DescribeManagedPrefixLists instead.

', 'DescribePrincipalIdFormat' => '

Describes the ID format settings for the root user and all IAM roles and IAM users that have explicitly specified a longer ID (17-character ID) preference.

By default, all IAM roles and IAM users default to the same ID settings as the root user, unless they explicitly override the settings. This request is useful for identifying those IAM users and IAM roles that have overridden the default ID settings.

The following resource types support longer IDs: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | instance | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | reservation | route-table | route-table-association | security-group | snapshot | subnet | subnet-cidr-block-association | volume | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway.

', 'DescribePublicIpv4Pools' => '

Describes the specified IPv4 address pools.

', 'DescribeRegions' => '

Describes the Regions that are enabled for your account, or all Regions.

For a list of the Regions supported by Amazon EC2, see Amazon Elastic Compute Cloud endpoints and quotas.

For information about enabling and disabling Regions for your account, see Managing Amazon Web Services Regions in the Amazon Web Services General Reference.

', 'DescribeReplaceRootVolumeTasks' => '

Describes a root volume replacement task. For more information, see Replace a root volume in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeReservedInstances' => '

Describes one or more of the Reserved Instances that you purchased.

For more information about Reserved Instances, see Reserved Instances in the Amazon EC2 User Guide.

', 'DescribeReservedInstancesListings' => '

Describes your account\'s Reserved Instance listings in the Reserved Instance Marketplace.

The Reserved Instance Marketplace matches sellers who want to resell Reserved Instance capacity that they no longer need with buyers who want to purchase additional capacity. Reserved Instances bought and sold through the Reserved Instance Marketplace work like any other Reserved Instances.

As a seller, you choose to list some or all of your Reserved Instances, and you specify the upfront price to receive for them. Your Reserved Instances are then listed in the Reserved Instance Marketplace and are available for purchase.

As a buyer, you specify the configuration of the Reserved Instance to purchase, and the Marketplace matches what you\'re searching for with what\'s available. The Marketplace first sells the lowest priced Reserved Instances to you, and continues to sell available Reserved Instance listings to you until your demand is met. You are charged based on the total price of all of the listings that you purchase.

For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide.

', 'DescribeReservedInstancesModifications' => '

Describes the modifications made to your Reserved Instances. If no parameter is specified, information about all your Reserved Instances modification requests is returned. If a modification ID is specified, only information about the specific modification is returned.

For more information, see Modifying Reserved Instances in the Amazon EC2 User Guide.

', 'DescribeReservedInstancesOfferings' => '

Describes Reserved Instance offerings that are available for purchase. With Reserved Instances, you purchase the right to launch instances for a period of time. During that time period, you do not receive insufficient capacity errors, and you pay a lower usage rate than the rate charged for On-Demand instances for the actual time used.

If you have listed your own Reserved Instances for sale in the Reserved Instance Marketplace, they will be excluded from these results. This is to ensure that you do not purchase your own Reserved Instances.

For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide.

', 'DescribeRouteTables' => '

Describes one or more of your route tables.

Each subnet in your VPC must be associated with a route table. If a subnet is not explicitly associated with any route table, it is implicitly associated with the main route table. This command does not return the subnet ID for implicit associations.

For more information, see Route tables in the Amazon VPC User Guide.

', 'DescribeScheduledInstanceAvailability' => '

Finds available schedules that meet the specified criteria.

You can search for an available schedule no more than 3 months in advance. You must meet the minimum required duration of 1,200 hours per year. For example, the minimum daily schedule is 4 hours, the minimum weekly schedule is 24 hours, and the minimum monthly schedule is 100 hours.

After you find a schedule that meets your needs, call PurchaseScheduledInstances to purchase Scheduled Instances with that schedule.

', 'DescribeScheduledInstances' => '

Describes the specified Scheduled Instances or all your Scheduled Instances.

', 'DescribeSecurityGroupReferences' => '

Describes the VPCs on the other side of a VPC peering connection or the VPCs attached to a transit gateway that are referencing the security groups you\'ve specified in this request.

', 'DescribeSecurityGroupRules' => '

Describes one or more of your security group rules.

', 'DescribeSecurityGroups' => '

Describes the specified security groups or all of your security groups.

', 'DescribeSnapshotAttribute' => '

Describes the specified attribute of the specified snapshot. You can specify only one attribute at a time.

For more information about EBS snapshots, see Amazon EBS snapshots in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeSnapshotTierStatus' => '

Describes the storage tier status of one or more Amazon EBS snapshots.

', 'DescribeSnapshots' => '

Describes the specified EBS snapshots available to you or all of the EBS snapshots available to you.

The snapshots available to you include public snapshots, private snapshots that you own, and private snapshots owned by other Amazon Web Services accounts for which you have explicit create volume permissions.

The create volume permissions fall into the following categories:

  • public: The owner of the snapshot granted create volume permissions for the snapshot to the all group. All Amazon Web Services accounts have create volume permissions for these snapshots.

  • explicit: The owner of the snapshot granted create volume permissions to a specific Amazon Web Services account.

  • implicit: An Amazon Web Services account has implicit create volume permissions for all snapshots it owns.

The list of snapshots returned can be filtered by specifying snapshot IDs, snapshot owners, or Amazon Web Services accounts with create volume permissions. If no options are specified, Amazon EC2 returns all snapshots for which you have create volume permissions.

If you specify one or more snapshot IDs, only snapshots that have the specified IDs are returned. If you specify an invalid snapshot ID, an error is returned. If you specify a snapshot ID for which you do not have access, it is not included in the returned results.

If you specify one or more snapshot owners using the OwnerIds option, only snapshots from the specified owners and for which you have access are returned. The results can include the Amazon Web Services account IDs of the specified owners, amazon for snapshots owned by Amazon, or self for snapshots that you own.

If you specify a list of restorable users, only snapshots with create snapshot permissions for those users are returned. You can specify Amazon Web Services account IDs (if you own the snapshots), self for snapshots for which you own or have explicit permissions, or all for public snapshots.

If you are describing a long list of snapshots, we recommend that you paginate the output to make the list more manageable. For more information, see Pagination.

To get the state of fast snapshot restores for a snapshot, use DescribeFastSnapshotRestores.

For more information about EBS snapshots, see Amazon EBS snapshots in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeSpotDatafeedSubscription' => '

Describes the data feed for Spot Instances. For more information, see Spot Instance data feed in the Amazon EC2 User Guide for Linux Instances.

', 'DescribeSpotFleetInstances' => '

Describes the running instances for the specified Spot Fleet.

', 'DescribeSpotFleetRequestHistory' => '

Describes the events for the specified Spot Fleet request during the specified time.

Spot Fleet events are delayed by up to 30 seconds before they can be described. This ensures that you can query by the last evaluated time and not miss a recorded event. Spot Fleet events are available for 48 hours.

For more information, see Monitor fleet events using Amazon EventBridge in the Amazon EC2 User Guide.

', 'DescribeSpotFleetRequests' => '

Describes your Spot Fleet requests.

Spot Fleet requests are deleted 48 hours after they are canceled and their instances are terminated.

', 'DescribeSpotInstanceRequests' => '

Describes the specified Spot Instance requests.

You can use DescribeSpotInstanceRequests to find a running Spot Instance by examining the response. If the status of the Spot Instance is fulfilled, the instance ID appears in the response and contains the identifier of the instance. Alternatively, you can use DescribeInstances with a filter to look for instances where the instance lifecycle is spot.

We recommend that you set MaxResults to a value between 5 and 1000 to limit the number of items returned. This paginates the output, which makes the list more manageable and returns the items faster. If the list of items exceeds your MaxResults value, then that number of items is returned along with a NextToken value that can be passed to a subsequent DescribeSpotInstanceRequests request to retrieve the remaining items.

Spot Instance requests are deleted four hours after they are canceled and their instances are terminated.

', 'DescribeSpotPriceHistory' => '

Describes the Spot price history. For more information, see Spot Instance pricing history in the Amazon EC2 User Guide for Linux Instances.

When you specify a start and end time, the operation returns the prices of the instance types within that time range. It also returns the last price change before the start time, which is the effective price as of the start time.

', 'DescribeStaleSecurityGroups' => '

Describes the stale security group rules for security groups in a specified VPC. Rules are stale when they reference a deleted security group in the same VPC, peered VPC, or in separate VPCs attached to a transit gateway (with security group referencing support enabled). Rules can also be stale if they reference a security group in a peer VPC for which the VPC peering connection has been deleted or if they reference a security group in a VPC that has been detached from a transit gateway.

', 'DescribeStoreImageTasks' => '

Describes the progress of the AMI store tasks. You can describe the store tasks for specified AMIs. If you don\'t specify the AMIs, you get a paginated list of store tasks from the last 31 days.

For each AMI task, the response indicates if the task is InProgress, Completed, or Failed. For tasks InProgress, the response shows the estimated progress as a percentage.

Tasks are listed in reverse chronological order. Currently, only tasks from the past 31 days can be viewed.

To use this API, you must have the required permissions. For more information, see Permissions for storing and restoring AMIs using Amazon S3 in the Amazon EC2 User Guide.

For more information, see Store and restore an AMI using Amazon S3 in the Amazon EC2 User Guide.

', 'DescribeSubnets' => '

Describes one or more of your subnets.

For more information, see Subnets in the Amazon VPC User Guide.

', 'DescribeTags' => '

Describes the specified tags for your EC2 resources.

For more information about tags, see Tag your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeTrafficMirrorFilters' => '

Describes one or more Traffic Mirror filters.

', 'DescribeTrafficMirrorSessions' => '

Describes one or more Traffic Mirror sessions. By default, all Traffic Mirror sessions are described. Alternatively, you can filter the results.

', 'DescribeTrafficMirrorTargets' => '

Information about one or more Traffic Mirror targets.

', 'DescribeTransitGatewayAttachments' => '

Describes one or more attachments between resources and transit gateways. By default, all attachments are described. Alternatively, you can filter the results by attachment ID, attachment state, resource ID, or resource owner.

', 'DescribeTransitGatewayConnectPeers' => '

Describes one or more Connect peers.

', 'DescribeTransitGatewayConnects' => '

Describes one or more Connect attachments.

', 'DescribeTransitGatewayMulticastDomains' => '

Describes one or more transit gateway multicast domains.

', 'DescribeTransitGatewayPeeringAttachments' => '

Describes your transit gateway peering attachments.

', 'DescribeTransitGatewayPolicyTables' => '

Describes one or more transit gateway route policy tables.

', 'DescribeTransitGatewayRouteTableAnnouncements' => '

Describes one or more transit gateway route table advertisements.

', 'DescribeTransitGatewayRouteTables' => '

Describes one or more transit gateway route tables. By default, all transit gateway route tables are described. Alternatively, you can filter the results.

', 'DescribeTransitGatewayVpcAttachments' => '

Describes one or more VPC attachments. By default, all VPC attachments are described. Alternatively, you can filter the results.

', 'DescribeTransitGateways' => '

Describes one or more transit gateways. By default, all transit gateways are described. Alternatively, you can filter the results.

', 'DescribeTrunkInterfaceAssociations' => '

Describes one or more network interface trunk associations.

', 'DescribeVerifiedAccessEndpoints' => '

Describes the specified Amazon Web Services Verified Access endpoints.

', 'DescribeVerifiedAccessGroups' => '

Describes the specified Verified Access groups.

', 'DescribeVerifiedAccessInstanceLoggingConfigurations' => '

Describes the specified Amazon Web Services Verified Access instances.

', 'DescribeVerifiedAccessInstances' => '

Describes the specified Amazon Web Services Verified Access instances.

', 'DescribeVerifiedAccessTrustProviders' => '

Describes the specified Amazon Web Services Verified Access trust providers.

', 'DescribeVolumeAttribute' => '

Describes the specified attribute of the specified volume. You can specify only one attribute at a time.

For more information about EBS volumes, see Amazon EBS volumes in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeVolumeStatus' => '

Describes the status of the specified volumes. Volume status provides the result of the checks performed on your volumes to determine events that can impair the performance of your volumes. The performance of a volume can be affected if an issue occurs on the volume\'s underlying host. If the volume\'s underlying host experiences a power outage or system issue, after the system is restored, there could be data inconsistencies on the volume. Volume events notify you if this occurs. Volume actions notify you if any action needs to be taken in response to the event.

The DescribeVolumeStatus operation provides the following information about the specified volumes:

Status: Reflects the current status of the volume. The possible values are ok, impaired , warning, or insufficient-data. If all checks pass, the overall status of the volume is ok. If the check fails, the overall status is impaired. If the status is insufficient-data, then the checks might still be taking place on your volume at the time. We recommend that you retry the request. For more information about volume status, see Monitor the status of your volumes in the Amazon Elastic Compute Cloud User Guide.

Events: Reflect the cause of a volume status and might require you to take action. For example, if your volume returns an impaired status, then the volume event might be potential-data-inconsistency. This means that your volume has been affected by an issue with the underlying host, has all I/O operations disabled, and might have inconsistent data.

Actions: Reflect the actions you might have to take in response to an event. For example, if the status of the volume is impaired and the volume event shows potential-data-inconsistency, then the action shows enable-volume-io. This means that you may want to enable the I/O operations for the volume by calling the EnableVolumeIO action and then check the volume for data consistency.

Volume status is based on the volume status checks, and does not reflect the volume state. Therefore, volume status does not indicate volumes in the error state (for example, when a volume is incapable of accepting I/O.)

', 'DescribeVolumes' => '

Describes the specified EBS volumes or all of your EBS volumes.

If you are describing a long list of volumes, we recommend that you paginate the output to make the list more manageable. For more information, see Pagination.

For more information about EBS volumes, see Amazon EBS volumes in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeVolumesModifications' => '

Describes the most recent volume modification request for the specified EBS volumes.

If a volume has never been modified, some information in the output will be null. If a volume has been modified more than once, the output includes only the most recent modification request.

You can also use CloudWatch Events to check the status of a modification to an EBS volume. For information about CloudWatch Events, see the Amazon CloudWatch Events User Guide. For more information, see Monitor the progress of volume modifications in the Amazon Elastic Compute Cloud User Guide.

', 'DescribeVpcAttribute' => '

Describes the specified attribute of the specified VPC. You can specify only one attribute at a time.

', 'DescribeVpcClassicLink' => '

This action is deprecated.

Describes the ClassicLink status of the specified VPCs.

', 'DescribeVpcClassicLinkDnsSupport' => '

This action is deprecated.

Describes the ClassicLink DNS support status of one or more VPCs. If enabled, the DNS hostname of a linked EC2-Classic instance resolves to its private IP address when addressed from an instance in the VPC to which it\'s linked. Similarly, the DNS hostname of an instance in a VPC resolves to its private IP address when addressed from a linked EC2-Classic instance.

', 'DescribeVpcEndpointConnectionNotifications' => '

Describes the connection notifications for VPC endpoints and VPC endpoint services.

', 'DescribeVpcEndpointConnections' => '

Describes the VPC endpoint connections to your VPC endpoint services, including any endpoints that are pending your acceptance.

', 'DescribeVpcEndpointServiceConfigurations' => '

Describes the VPC endpoint service configurations in your account (your services).

', 'DescribeVpcEndpointServicePermissions' => '

Describes the principals (service consumers) that are permitted to discover your VPC endpoint service.

', 'DescribeVpcEndpointServices' => '

Describes available services to which you can create a VPC endpoint.

When the service provider and the consumer have different accounts in multiple Availability Zones, and the consumer views the VPC endpoint service information, the response only includes the common Availability Zones. For example, when the service provider account uses us-east-1a and us-east-1c and the consumer uses us-east-1a and us-east-1b, the response includes the VPC endpoint services in the common Availability Zone, us-east-1a.

', 'DescribeVpcEndpoints' => '

Describes your VPC endpoints.

', 'DescribeVpcPeeringConnections' => '

Describes one or more of your VPC peering connections.

', 'DescribeVpcs' => '

Describes one or more of your VPCs.

', 'DescribeVpnConnections' => '

Describes one or more of your VPN connections.

For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.

', 'DescribeVpnGateways' => '

Describes one or more of your virtual private gateways.

For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.

', 'DetachClassicLinkVpc' => '

This action is deprecated.

Unlinks (detaches) a linked EC2-Classic instance from a VPC. After the instance has been unlinked, the VPC security groups are no longer associated with it. An instance is automatically unlinked from a VPC when it\'s stopped.

', 'DetachInternetGateway' => '

Detaches an internet gateway from a VPC, disabling connectivity between the internet and the VPC. The VPC must not contain any running instances with Elastic IP addresses or public IPv4 addresses.

', 'DetachNetworkInterface' => '

Detaches a network interface from an instance.

', 'DetachVerifiedAccessTrustProvider' => '

Detaches the specified Amazon Web Services Verified Access trust provider from the specified Amazon Web Services Verified Access instance.

', 'DetachVolume' => '

Detaches an EBS volume from an instance. Make sure to unmount any file systems on the device within your operating system before detaching the volume. Failure to do so can result in the volume becoming stuck in the busy state while detaching. If this happens, detachment can be delayed indefinitely until you unmount the volume, force detachment, reboot the instance, or all three. If an EBS volume is the root device of an instance, it can\'t be detached while the instance is running. To detach the root volume, stop the instance first.

When a volume with an Amazon Web Services Marketplace product code is detached from an instance, the product code is no longer associated with the instance.

You can\'t detach or force detach volumes that are attached to Amazon ECS or Fargate tasks. Attempting to do this results in the UnsupportedOperationException exception with the Unable to detach volume attached to ECS tasks error message.

For more information, see Detach an Amazon EBS volume in the Amazon Elastic Compute Cloud User Guide.

', 'DetachVpnGateway' => '

Detaches a virtual private gateway from a VPC. You do this if you\'re planning to turn off the VPC and not use it anymore. You can confirm a virtual private gateway has been completely detached from a VPC by describing the virtual private gateway (any attachments to the virtual private gateway are also described).

You must wait for the attachment\'s state to switch to detached before you can delete the VPC or attach a different VPC to the virtual private gateway.

', 'DisableAddressTransfer' => '

Disables Elastic IP address transfer. For more information, see Transfer Elastic IP addresses in the Amazon Virtual Private Cloud User Guide.

', 'DisableAwsNetworkPerformanceMetricSubscription' => '

Disables Infrastructure Performance metric subscriptions.

', 'DisableEbsEncryptionByDefault' => '

Disables EBS encryption by default for your account in the current Region.

After you disable encryption by default, you can still create encrypted volumes by enabling encryption when you create each volume.

Disabling encryption by default does not change the encryption status of your existing volumes.

For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

', 'DisableFastLaunch' => '

Discontinue Windows fast launch for a Windows AMI, and clean up existing pre-provisioned snapshots. After you disable Windows fast launch, the AMI uses the standard launch process for each new instance. Amazon EC2 must remove all pre-provisioned snapshots before you can enable Windows fast launch again.

You can only change these settings for Windows AMIs that you own or that have been shared with you.

', 'DisableFastSnapshotRestores' => '

Disables fast snapshot restores for the specified snapshots in the specified Availability Zones.

', 'DisableImage' => '

Sets the AMI state to disabled and removes all launch permissions from the AMI. A disabled AMI can\'t be used for instance launches.

A disabled AMI can\'t be shared. If an AMI was public or previously shared, it is made private. If an AMI was shared with an Amazon Web Services account, organization, or Organizational Unit, they lose access to the disabled AMI.

A disabled AMI does not appear in DescribeImages API calls by default.

Only the AMI owner can disable an AMI.

You can re-enable a disabled AMI using EnableImage.

For more information, see Disable an AMI in the Amazon EC2 User Guide.

', 'DisableImageBlockPublicAccess' => '

Disables block public access for AMIs at the account level in the specified Amazon Web Services Region. This removes the block public access restriction from your account. With the restriction removed, you can publicly share your AMIs in the specified Amazon Web Services Region.

The API can take up to 10 minutes to configure this setting. During this time, if you run GetImageBlockPublicAccessState, the response will be block-new-sharing. When the API has completed the configuration, the response will be unblocked.

For more information, see Block public access to your AMIs in the Amazon EC2 User Guide.

', 'DisableImageDeprecation' => '

Cancels the deprecation of the specified AMI.

For more information, see Deprecate an AMI in the Amazon EC2 User Guide.

', 'DisableIpamOrganizationAdminAccount' => '

Disable the IPAM account. For more information, see Enable integration with Organizations in the Amazon VPC IPAM User Guide.

', 'DisableSerialConsoleAccess' => '

Disables access to the EC2 serial console of all instances for your account. By default, access to the EC2 serial console is disabled for your account. For more information, see Manage account access to the EC2 serial console in the Amazon EC2 User Guide.

', 'DisableSnapshotBlockPublicAccess' => '

Disables the block public access for snapshots setting at the account level for the specified Amazon Web Services Region. After you disable block public access for snapshots in a Region, users can publicly share snapshots in that Region.

If block public access is enabled in block-all-sharing mode, and you disable block public access, all snapshots that were previously publicly shared are no longer treated as private and they become publicly accessible again.

For more information, see Block public access for snapshots in the Amazon Elastic Compute Cloud User Guide .

', 'DisableTransitGatewayRouteTablePropagation' => '

Disables the specified resource attachment from propagating routes to the specified propagation route table.

', 'DisableVgwRoutePropagation' => '

Disables a virtual private gateway (VGW) from propagating routes to a specified route table of a VPC.

', 'DisableVpcClassicLink' => '

This action is deprecated.

Disables ClassicLink for a VPC. You cannot disable ClassicLink for a VPC that has EC2-Classic instances linked to it.

', 'DisableVpcClassicLinkDnsSupport' => '

This action is deprecated.

Disables ClassicLink DNS support for a VPC. If disabled, DNS hostnames resolve to public IP addresses when addressed between a linked EC2-Classic instance and instances in the VPC to which it\'s linked.

You must specify a VPC ID in the request.

', 'DisassociateAddress' => '

Disassociates an Elastic IP address from the instance or network interface it\'s associated with.

This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn\'t return an error.

', 'DisassociateClientVpnTargetNetwork' => '

Disassociates a target network from the specified Client VPN endpoint. When you disassociate the last target network from a Client VPN, the following happens:

  • The route that was automatically added for the VPC is deleted

  • All active client connections are terminated

  • New client connections are disallowed

  • The Client VPN endpoint\'s status changes to pending-associate

', 'DisassociateEnclaveCertificateIamRole' => '

Disassociates an IAM role from an Certificate Manager (ACM) certificate. Disassociating an IAM role from an ACM certificate removes the Amazon S3 object that contains the certificate, certificate chain, and encrypted private key from the Amazon S3 bucket. It also revokes the IAM role\'s permission to use the KMS key used to encrypt the private key. This effectively revokes the role\'s permission to use the certificate.

', 'DisassociateIamInstanceProfile' => '

Disassociates an IAM instance profile from a running or stopped instance.

Use DescribeIamInstanceProfileAssociations to get the association ID.

', 'DisassociateInstanceEventWindow' => '

Disassociates one or more targets from an event window.

For more information, see Define event windows for scheduled events in the Amazon EC2 User Guide.

', 'DisassociateIpamByoasn' => '

Remove the association between your Autonomous System Number (ASN) and your BYOIP CIDR. You may want to use this action to disassociate an ASN from a CIDR or if you want to swap ASNs. For more information, see Tutorial: Bring your ASN to IPAM in the Amazon VPC IPAM guide.

', 'DisassociateIpamResourceDiscovery' => '

Disassociates a resource discovery from an Amazon VPC IPAM. A resource discovery is an IPAM component that enables IPAM to manage and monitor resources that belong to the owning account.

', 'DisassociateNatGatewayAddress' => '

Disassociates secondary Elastic IP addresses (EIPs) from a public NAT gateway. You cannot disassociate your primary EIP. For more information, see Edit secondary IP address associations in the Amazon VPC User Guide.

While disassociating is in progress, you cannot associate/disassociate additional EIPs while the connections are being drained. You are, however, allowed to delete the NAT gateway.

An EIP is released only at the end of MaxDrainDurationSeconds. It stays associated and supports the existing connections but does not support any new connections (new connections are distributed across the remaining associated EIPs). As the existing connections drain out, the EIPs (and the corresponding private IP addresses mapped to them) are released.

', 'DisassociateRouteTable' => '

Disassociates a subnet or gateway from a route table.

After you perform this action, the subnet no longer uses the routes in the route table. Instead, it uses the routes in the VPC\'s main route table. For more information about route tables, see Route tables in the Amazon VPC User Guide.

', 'DisassociateSubnetCidrBlock' => '

Disassociates a CIDR block from a subnet. Currently, you can disassociate an IPv6 CIDR block only. You must detach or delete all gateways and resources that are associated with the CIDR block before you can disassociate it.

', 'DisassociateTransitGatewayMulticastDomain' => '

Disassociates the specified subnets from the transit gateway multicast domain.

', 'DisassociateTransitGatewayPolicyTable' => '

Removes the association between an an attachment and a policy table.

', 'DisassociateTransitGatewayRouteTable' => '

Disassociates a resource attachment from a transit gateway route table.

', 'DisassociateTrunkInterface' => '

Removes an association between a branch network interface with a trunk network interface.

', 'DisassociateVpcCidrBlock' => '

Disassociates a CIDR block from a VPC. To disassociate the CIDR block, you must specify its association ID. You can get the association ID by using DescribeVpcs. You must detach or delete all gateways and resources that are associated with the CIDR block before you can disassociate it.

You cannot disassociate the CIDR block with which you originally created the VPC (the primary CIDR block).

', 'EnableAddressTransfer' => '

Enables Elastic IP address transfer. For more information, see Transfer Elastic IP addresses in the Amazon Virtual Private Cloud User Guide.

', 'EnableAwsNetworkPerformanceMetricSubscription' => '

Enables Infrastructure Performance subscriptions.

', 'EnableEbsEncryptionByDefault' => '

Enables EBS encryption by default for your account in the current Region.

After you enable encryption by default, the EBS volumes that you create are always encrypted, either using the default KMS key or the KMS key that you specified when you created each volume. For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

You can specify the default KMS key for encryption by default using ModifyEbsDefaultKmsKeyId or ResetEbsDefaultKmsKeyId.

Enabling encryption by default has no effect on the encryption status of your existing volumes.

After you enable encryption by default, you can no longer launch instances using instance types that do not support encryption. For more information, see Supported instance types.

', 'EnableFastLaunch' => '

When you enable Windows fast launch for a Windows AMI, images are pre-provisioned, using snapshots to launch instances up to 65% faster. To create the optimized Windows image, Amazon EC2 launches an instance and runs through Sysprep steps, rebooting as required. Then it creates a set of reserved snapshots that are used for subsequent launches. The reserved snapshots are automatically replenished as they are used, depending on your settings for launch frequency.

You can only change these settings for Windows AMIs that you own or that have been shared with you.

', 'EnableFastSnapshotRestores' => '

Enables fast snapshot restores for the specified snapshots in the specified Availability Zones.

You get the full benefit of fast snapshot restores after they enter the enabled state. To get the current state of fast snapshot restores, use DescribeFastSnapshotRestores. To disable fast snapshot restores, use DisableFastSnapshotRestores.

For more information, see Amazon EBS fast snapshot restore in the Amazon Elastic Compute Cloud User Guide.

', 'EnableImage' => '

Re-enables a disabled AMI. The re-enabled AMI is marked as available and can be used for instance launches, appears in describe operations, and can be shared. Amazon Web Services accounts, organizations, and Organizational Units that lost access to the AMI when it was disabled do not regain access automatically. Once the AMI is available, it can be shared with them again.

Only the AMI owner can re-enable a disabled AMI.

For more information, see Disable an AMI in the Amazon EC2 User Guide.

', 'EnableImageBlockPublicAccess' => '

Enables block public access for AMIs at the account level in the specified Amazon Web Services Region. This prevents the public sharing of your AMIs. However, if you already have public AMIs, they will remain publicly available.

The API can take up to 10 minutes to configure this setting. During this time, if you run GetImageBlockPublicAccessState, the response will be unblocked. When the API has completed the configuration, the response will be block-new-sharing.

For more information, see Block public access to your AMIs in the Amazon EC2 User Guide.

', 'EnableImageDeprecation' => '

Enables deprecation of the specified AMI at the specified date and time.

For more information, see Deprecate an AMI in the Amazon EC2 User Guide.

', 'EnableIpamOrganizationAdminAccount' => '

Enable an Organizations member account as the IPAM admin account. You cannot select the Organizations management account as the IPAM admin account. For more information, see Enable integration with Organizations in the Amazon VPC IPAM User Guide.

', 'EnableReachabilityAnalyzerOrganizationSharing' => '

Establishes a trust relationship between Reachability Analyzer and Organizations. This operation must be performed by the management account for the organization.

After you establish a trust relationship, a user in the management account or a delegated administrator account can run a cross-account analysis using resources from the member accounts.

', 'EnableSerialConsoleAccess' => '

Enables access to the EC2 serial console of all instances for your account. By default, access to the EC2 serial console is disabled for your account. For more information, see Manage account access to the EC2 serial console in the Amazon EC2 User Guide.

', 'EnableSnapshotBlockPublicAccess' => '

Enables or modifies the block public access for snapshots setting at the account level for the specified Amazon Web Services Region. After you enable block public access for snapshots in a Region, users can no longer request public sharing for snapshots in that Region. Snapshots that are already publicly shared are either treated as private or they remain publicly shared, depending on the State that you specify.

If block public access is enabled in block-all-sharing mode, and you change the mode to block-new-sharing, all snapshots that were previously publicly shared are no longer treated as private and they become publicly accessible again.

For more information, see Block public access for snapshots in the Amazon Elastic Compute Cloud User Guide.

', 'EnableTransitGatewayRouteTablePropagation' => '

Enables the specified attachment to propagate routes to the specified propagation route table.

', 'EnableVgwRoutePropagation' => '

Enables a virtual private gateway (VGW) to propagate routes to the specified route table of a VPC.

', 'EnableVolumeIO' => '

Enables I/O operations for a volume that had I/O operations disabled because the data on the volume was potentially inconsistent.

', 'EnableVpcClassicLink' => '

This action is deprecated.

Enables a VPC for ClassicLink. You can then link EC2-Classic instances to your ClassicLink-enabled VPC to allow communication over private IP addresses. You cannot enable your VPC for ClassicLink if any of your VPC route tables have existing routes for address ranges within the 10.0.0.0/8 IP address range, excluding local routes for VPCs in the 10.0.0.0/16 and 10.1.0.0/16 IP address ranges.

', 'EnableVpcClassicLinkDnsSupport' => '

This action is deprecated.

Enables a VPC to support DNS hostname resolution for ClassicLink. If enabled, the DNS hostname of a linked EC2-Classic instance resolves to its private IP address when addressed from an instance in the VPC to which it\'s linked. Similarly, the DNS hostname of an instance in a VPC resolves to its private IP address when addressed from a linked EC2-Classic instance.

You must specify a VPC ID in the request.

', 'ExportClientVpnClientCertificateRevocationList' => '

Downloads the client certificate revocation list for the specified Client VPN endpoint.

', 'ExportClientVpnClientConfiguration' => '

Downloads the contents of the Client VPN endpoint configuration file for the specified Client VPN endpoint. The Client VPN endpoint configuration file includes the Client VPN endpoint and certificate information clients need to establish a connection with the Client VPN endpoint.

', 'ExportImage' => '

Exports an Amazon Machine Image (AMI) to a VM file. For more information, see Exporting a VM directly from an Amazon Machine Image (AMI) in the VM Import/Export User Guide.

', 'ExportTransitGatewayRoutes' => '

Exports routes from the specified transit gateway route table to the specified S3 bucket. By default, all routes are exported. Alternatively, you can filter by CIDR range.

The routes are saved to the specified bucket in a JSON file. For more information, see Export Route Tables to Amazon S3 in Transit Gateways.

', 'GetAssociatedEnclaveCertificateIamRoles' => '

Returns the IAM roles that are associated with the specified ACM (ACM) certificate. It also returns the name of the Amazon S3 bucket and the Amazon S3 object key where the certificate, certificate chain, and encrypted private key bundle are stored, and the ARN of the KMS key that\'s used to encrypt the private key.

', 'GetAssociatedIpv6PoolCidrs' => '

Gets information about the IPv6 CIDR block associations for a specified IPv6 address pool.

', 'GetAwsNetworkPerformanceData' => '

Gets network performance data.

', 'GetCapacityReservationUsage' => '

Gets usage information about a Capacity Reservation. If the Capacity Reservation is shared, it shows usage information for the Capacity Reservation owner and each Amazon Web Services account that is currently using the shared capacity. If the Capacity Reservation is not shared, it shows only the Capacity Reservation owner\'s usage.

', 'GetCoipPoolUsage' => '

Describes the allocations from the specified customer-owned address pool.

', 'GetConsoleOutput' => '

Gets the console output for the specified instance. For Linux instances, the instance console output displays the exact console output that would normally be displayed on a physical monitor attached to a computer. For Windows instances, the instance console output includes the last three system event log errors.

By default, the console output returns buffered information that was posted shortly after an instance transition state (start, stop, reboot, or terminate). This information is available for at least one hour after the most recent post. Only the most recent 64 KB of console output is available.

You can optionally retrieve the latest serial console output at any time during the instance lifecycle. This option is supported on instance types that use the Nitro hypervisor.

For more information, see Instance console output in the Amazon EC2 User Guide.

', 'GetConsoleScreenshot' => '

Retrieve a JPG-format screenshot of a running instance to help with troubleshooting.

The returned content is Base64-encoded.

', 'GetDefaultCreditSpecification' => '

Describes the default credit option for CPU usage of a burstable performance instance family.

For more information, see Burstable performance instances in the Amazon EC2 User Guide.

', 'GetEbsDefaultKmsKeyId' => '

Describes the default KMS key for EBS encryption by default for your account in this Region. You can change the default KMS key for encryption by default using ModifyEbsDefaultKmsKeyId or ResetEbsDefaultKmsKeyId.

For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

', 'GetEbsEncryptionByDefault' => '

Describes whether EBS encryption by default is enabled for your account in the current Region.

For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

', 'GetFlowLogsIntegrationTemplate' => '

Generates a CloudFormation template that streamlines and automates the integration of VPC flow logs with Amazon Athena. This make it easier for you to query and gain insights from VPC flow logs data. Based on the information that you provide, we configure resources in the template to do the following:

  • Create a table in Athena that maps fields to a custom log format

  • Create a Lambda function that updates the table with new partitions on a daily, weekly, or monthly basis

  • Create a table partitioned between two timestamps in the past

  • Create a set of named queries in Athena that you can use to get started quickly

GetFlowLogsIntegrationTemplate does not support integration between Amazon Web Services Transit Gateway Flow Logs and Amazon Athena.

', 'GetGroupsForCapacityReservation' => '

Lists the resource groups to which a Capacity Reservation has been added.

', 'GetHostReservationPurchasePreview' => '

Preview a reservation purchase with configurations that match those of your Dedicated Host. You must have active Dedicated Hosts in your account before you purchase a reservation.

This is a preview of the PurchaseHostReservation action and does not result in the offering being purchased.

', 'GetImageBlockPublicAccessState' => '

Gets the current state of block public access for AMIs at the account level in the specified Amazon Web Services Region.

For more information, see Block public access to your AMIs in the Amazon EC2 User Guide.

', 'GetInstanceTypesFromInstanceRequirements' => '

Returns a list of instance types with the specified instance attributes. You can use the response to preview the instance types without launching instances. Note that the response does not consider capacity.

When you specify multiple parameters, you get instance types that satisfy all of the specified parameters. If you specify multiple values for a parameter, you get instance types that satisfy any of the specified values.

For more information, see Preview instance types with specified attributes, Attribute-based instance type selection for EC2 Fleet, Attribute-based instance type selection for Spot Fleet, and Spot placement score in the Amazon EC2 User Guide, and Creating an Auto Scaling group using attribute-based instance type selection in the Amazon EC2 Auto Scaling User Guide.

', 'GetInstanceUefiData' => '

A binary representation of the UEFI variable store. Only non-volatile variables are stored. This is a base64 encoded and zlib compressed binary value that must be properly encoded.

When you use register-image to create an AMI, you can create an exact copy of your variable store by passing the UEFI data in the UefiData parameter. You can modify the UEFI data by using the python-uefivars tool on GitHub. You can use the tool to convert the UEFI data into a human-readable format (JSON), which you can inspect and modify, and then convert back into the binary format to use with register-image.

For more information, see UEFI Secure Boot in the Amazon EC2 User Guide.

', 'GetIpamAddressHistory' => '

Retrieve historical information about a CIDR within an IPAM scope. For more information, see View the history of IP addresses in the Amazon VPC IPAM User Guide.

', 'GetIpamDiscoveredAccounts' => '

Gets IPAM discovered accounts. A discovered account is an Amazon Web Services account that is monitored under a resource discovery. If you have integrated IPAM with Amazon Web Services Organizations, all accounts in the organization are discovered accounts. Only the IPAM account can get all discovered accounts in the organization.

', 'GetIpamDiscoveredPublicAddresses' => '

Gets the public IP addresses that have been discovered by IPAM.

', 'GetIpamDiscoveredResourceCidrs' => '

Returns the resource CIDRs that are monitored as part of a resource discovery. A discovered resource is a resource CIDR monitored under a resource discovery. The following resources can be discovered: VPCs, Public IPv4 pools, VPC subnets, and Elastic IP addresses.

', 'GetIpamPoolAllocations' => '

Get a list of all the CIDR allocations in an IPAM pool. The Region you use should be the IPAM pool locale. The locale is the Amazon Web Services Region where this IPAM pool is available for allocations.

If you use this action after AllocateIpamPoolCidr or ReleaseIpamPoolAllocation, note that all EC2 API actions follow an eventual consistency model.

', 'GetIpamPoolCidrs' => '

Get the CIDRs provisioned to an IPAM pool.

', 'GetIpamResourceCidrs' => '

Returns resource CIDRs managed by IPAM in a given scope. If an IPAM is associated with more than one resource discovery, the resource CIDRs across all of the resource discoveries is returned. A resource discovery is an IPAM component that enables IPAM to manage and monitor resources that belong to the owning account.

', 'GetLaunchTemplateData' => '

Retrieves the configuration data of the specified instance. You can use this data to create a launch template.

This action calls on other describe actions to get instance information. Depending on your instance configuration, you may need to allow the following actions in your IAM policy: DescribeSpotInstanceRequests, DescribeInstanceCreditSpecifications, DescribeVolumes, and DescribeInstanceAttribute. Or, you can allow describe* depending on your instance requirements.

', 'GetManagedPrefixListAssociations' => '

Gets information about the resources that are associated with the specified managed prefix list.

', 'GetManagedPrefixListEntries' => '

Gets information about the entries for a specified managed prefix list.

', 'GetNetworkInsightsAccessScopeAnalysisFindings' => '

Gets the findings for the specified Network Access Scope analysis.

', 'GetNetworkInsightsAccessScopeContent' => '

Gets the content for the specified Network Access Scope.

', 'GetPasswordData' => '

Retrieves the encrypted administrator password for a running Windows instance.

The Windows password is generated at boot by the EC2Config service or EC2Launch scripts (Windows Server 2016 and later). This usually only happens the first time an instance is launched. For more information, see EC2Config and EC2Launch in the Amazon EC2 User Guide.

For the EC2Config service, the password is not generated for rebundled AMIs unless Ec2SetPassword is enabled before bundling.

The password is encrypted using the key pair that you specified when you launched the instance. You must provide the corresponding key pair file.

When you launch an instance, password generation and encryption may take a few minutes. If you try to retrieve the password before it\'s available, the output returns an empty string. We recommend that you wait up to 15 minutes after launching an instance before trying to retrieve the generated password.

', 'GetReservedInstancesExchangeQuote' => '

Returns a quote and exchange information for exchanging one or more specified Convertible Reserved Instances for a new Convertible Reserved Instance. If the exchange cannot be performed, the reason is returned in the response. Use AcceptReservedInstancesExchangeQuote to perform the exchange.

', 'GetSecurityGroupsForVpc' => '

Gets security groups that can be associated by the Amazon Web Services account making the request with network interfaces in the specified VPC.

', 'GetSerialConsoleAccessStatus' => '

Retrieves the access status of your account to the EC2 serial console of all instances. By default, access to the EC2 serial console is disabled for your account. For more information, see Manage account access to the EC2 serial console in the Amazon EC2 User Guide.

', 'GetSnapshotBlockPublicAccessState' => '

Gets the current state of block public access for snapshots setting for the account and Region.

For more information, see Block public access for snapshots in the Amazon Elastic Compute Cloud User Guide.

', 'GetSpotPlacementScores' => '

Calculates the Spot placement score for a Region or Availability Zone based on the specified target capacity and compute requirements.

You can specify your compute requirements either by using InstanceRequirementsWithMetadata and letting Amazon EC2 choose the optimal instance types to fulfill your Spot request, or you can specify the instance types by using InstanceTypes.

For more information, see Spot placement score in the Amazon EC2 User Guide.

', 'GetSubnetCidrReservations' => '

Gets information about the subnet CIDR reservations.

', 'GetTransitGatewayAttachmentPropagations' => '

Lists the route tables to which the specified resource attachment propagates routes.

', 'GetTransitGatewayMulticastDomainAssociations' => '

Gets information about the associations for the transit gateway multicast domain.

', 'GetTransitGatewayPolicyTableAssociations' => '

Gets a list of the transit gateway policy table associations.

', 'GetTransitGatewayPolicyTableEntries' => '

Returns a list of transit gateway policy table entries.

', 'GetTransitGatewayPrefixListReferences' => '

Gets information about the prefix list references in a specified transit gateway route table.

', 'GetTransitGatewayRouteTableAssociations' => '

Gets information about the associations for the specified transit gateway route table.

', 'GetTransitGatewayRouteTablePropagations' => '

Gets information about the route table propagations for the specified transit gateway route table.

', 'GetVerifiedAccessEndpointPolicy' => '

Get the Verified Access policy associated with the endpoint.

', 'GetVerifiedAccessGroupPolicy' => '

Shows the contents of the Verified Access policy associated with the group.

', 'GetVpnConnectionDeviceSampleConfiguration' => '

Download an Amazon Web Services-provided sample configuration file to be used with the customer gateway device specified for your Site-to-Site VPN connection.

', 'GetVpnConnectionDeviceTypes' => '

Obtain a list of customer gateway devices for which sample configuration files can be provided. The request has no additional parameters. You can also see the list of device types with sample configuration files available under Your customer gateway device in the Amazon Web Services Site-to-Site VPN User Guide.

', 'GetVpnTunnelReplacementStatus' => '

Get details of available tunnel endpoint maintenance.

', 'ImportClientVpnClientCertificateRevocationList' => '

Uploads a client certificate revocation list to the specified Client VPN endpoint. Uploading a client certificate revocation list overwrites the existing client certificate revocation list.

Uploading a client certificate revocation list resets existing client connections.

', 'ImportImage' => '

To import your virtual machines (VMs) with a console-based experience, you can use the Import virtual machine images to Amazon Web Services template in the Migration Hub Orchestrator console. For more information, see the Migration Hub Orchestrator User Guide .

Import single or multi-volume disk images or EBS snapshots into an Amazon Machine Image (AMI).

Amazon Web Services VM Import/Export strongly recommends specifying a value for either the --license-type or --usage-operation parameter when you create a new VM Import task. This ensures your operating system is licensed appropriately and your billing is optimized.

For more information, see Importing a VM as an image using VM Import/Export in the VM Import/Export User Guide.

', 'ImportInstance' => '

We recommend that you use the ImportImage API. For more information, see Importing a VM as an image using VM Import/Export in the VM Import/Export User Guide.

Creates an import instance task using metadata from the specified disk image.

This API action is not supported by the Command Line Interface (CLI). For information about using the Amazon EC2 CLI, which is deprecated, see Importing a VM to Amazon EC2 in the Amazon EC2 CLI Reference PDF file.

This API action supports only single-volume VMs. To import multi-volume VMs, use ImportImage instead.

For information about the import manifest referenced by this API action, see VM Import Manifest.

', 'ImportKeyPair' => '

Imports the public key from an RSA or ED25519 key pair that you created with a third-party tool. Compare this with CreateKeyPair, in which Amazon Web Services creates the key pair and gives the keys to you (Amazon Web Services keeps a copy of the public key). With ImportKeyPair, you create the key pair and give Amazon Web Services just the public key. The private key is never transferred between you and Amazon Web Services.

For more information about key pairs, see Amazon EC2 key pairs in the Amazon Elastic Compute Cloud User Guide.

', 'ImportSnapshot' => '

Imports a disk into an EBS snapshot.

For more information, see Importing a disk as a snapshot using VM Import/Export in the VM Import/Export User Guide.

', 'ImportVolume' => '

Creates an import volume task using metadata from the specified disk image.

This API action supports only single-volume VMs. To import multi-volume VMs, use ImportImage instead. To import a disk to a snapshot, use ImportSnapshot instead.

This API action is not supported by the Command Line Interface (CLI). For information about using the Amazon EC2 CLI, which is deprecated, see Importing Disks to Amazon EBS in the Amazon EC2 CLI Reference PDF file.

For information about the import manifest referenced by this API action, see VM Import Manifest.

', 'ListImagesInRecycleBin' => '

Lists one or more AMIs that are currently in the Recycle Bin. For more information, see Recycle Bin in the Amazon EC2 User Guide.

', 'ListSnapshotsInRecycleBin' => '

Lists one or more snapshots that are currently in the Recycle Bin.

', 'LockSnapshot' => '

Locks an Amazon EBS snapshot in either governance or compliance mode to protect it against accidental or malicious deletions for a specific duration. A locked snapshot can\'t be deleted.

You can also use this action to modify the lock settings for a snapshot that is already locked. The allowed modifications depend on the lock mode and lock state:

  • If the snapshot is locked in governance mode, you can modify the lock mode and the lock duration or lock expiration date.

  • If the snapshot is locked in compliance mode and it is in the cooling-off period, you can modify the lock mode and the lock duration or lock expiration date.

  • If the snapshot is locked in compliance mode and the cooling-off period has lapsed, you can only increase the lock duration or extend the lock expiration date.

', 'ModifyAddressAttribute' => '

Modifies an attribute of the specified Elastic IP address. For requirements, see Using reverse DNS for email applications.

', 'ModifyAvailabilityZoneGroup' => '

Changes the opt-in status of the Local Zone and Wavelength Zone group for your account.

Use DescribeAvailabilityZones to view the value for GroupName.

', 'ModifyCapacityReservation' => '

Modifies a Capacity Reservation\'s capacity and the conditions under which it is to be released. You cannot change a Capacity Reservation\'s instance type, EBS optimization, instance store settings, platform, Availability Zone, or instance eligibility. If you need to modify any of these attributes, we recommend that you cancel the Capacity Reservation, and then create a new one with the required attributes.

', 'ModifyCapacityReservationFleet' => '

Modifies a Capacity Reservation Fleet.

When you modify the total target capacity of a Capacity Reservation Fleet, the Fleet automatically creates new Capacity Reservations, or modifies or cancels existing Capacity Reservations in the Fleet to meet the new total target capacity. When you modify the end date for the Fleet, the end dates for all of the individual Capacity Reservations in the Fleet are updated accordingly.

', 'ModifyClientVpnEndpoint' => '

Modifies the specified Client VPN endpoint. Modifying the DNS server resets existing client connections.

', 'ModifyDefaultCreditSpecification' => '

Modifies the default credit option for CPU usage of burstable performance instances. The default credit option is set at the account level per Amazon Web Services Region, and is specified per instance family. All new burstable performance instances in the account launch using the default credit option.

ModifyDefaultCreditSpecification is an asynchronous operation, which works at an Amazon Web Services Region level and modifies the credit option for each Availability Zone. All zones in a Region are updated within five minutes. But if instances are launched during this operation, they might not get the new credit option until the zone is updated. To verify whether the update has occurred, you can call GetDefaultCreditSpecification and check DefaultCreditSpecification for updates.

For more information, see Burstable performance instances in the Amazon EC2 User Guide.

', 'ModifyEbsDefaultKmsKeyId' => '

Changes the default KMS key for EBS encryption by default for your account in this Region.

Amazon Web Services creates a unique Amazon Web Services managed KMS key in each Region for use with encryption by default. If you change the default KMS key to a symmetric customer managed KMS key, it is used instead of the Amazon Web Services managed KMS key. To reset the default KMS key to the Amazon Web Services managed KMS key for EBS, use ResetEbsDefaultKmsKeyId. Amazon EBS does not support asymmetric KMS keys.

If you delete or disable the customer managed KMS key that you specified for use with encryption by default, your instances will fail to launch.

For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

', 'ModifyFleet' => '

Modifies the specified EC2 Fleet.

You can only modify an EC2 Fleet request of type maintain.

While the EC2 Fleet is being modified, it is in the modifying state.

To scale up your EC2 Fleet, increase its target capacity. The EC2 Fleet launches the additional Spot Instances according to the allocation strategy for the EC2 Fleet request. If the allocation strategy is lowest-price, the EC2 Fleet launches instances using the Spot Instance pool with the lowest price. If the allocation strategy is diversified, the EC2 Fleet distributes the instances across the Spot Instance pools. If the allocation strategy is capacity-optimized, EC2 Fleet launches instances from Spot Instance pools with optimal capacity for the number of instances that are launching.

To scale down your EC2 Fleet, decrease its target capacity. First, the EC2 Fleet cancels any open requests that exceed the new target capacity. You can request that the EC2 Fleet terminate Spot Instances until the size of the fleet no longer exceeds the new target capacity. If the allocation strategy is lowest-price, the EC2 Fleet terminates the instances with the highest price per unit. If the allocation strategy is capacity-optimized, the EC2 Fleet terminates the instances in the Spot Instance pools that have the least available Spot Instance capacity. If the allocation strategy is diversified, the EC2 Fleet terminates instances across the Spot Instance pools. Alternatively, you can request that the EC2 Fleet keep the fleet at its current size, but not replace any Spot Instances that are interrupted or that you terminate manually.

If you are finished with your EC2 Fleet for now, but will use it again later, you can set the target capacity to 0.

', 'ModifyFpgaImageAttribute' => '

Modifies the specified attribute of the specified Amazon FPGA Image (AFI).

', 'ModifyHosts' => '

Modify the auto-placement setting of a Dedicated Host. When auto-placement is enabled, any instances that you launch with a tenancy of host but without a specific host ID are placed onto any available Dedicated Host in your account that has auto-placement enabled. When auto-placement is disabled, you need to provide a host ID to have the instance launch onto a specific host. If no host ID is provided, the instance is launched onto a suitable host with auto-placement enabled.

You can also use this API action to modify a Dedicated Host to support either multiple instance types in an instance family, or to support a specific instance type only.

', 'ModifyIdFormat' => '

Modifies the ID format for the specified resource on a per-Region basis. You can specify that resources should receive longer IDs (17-character IDs) when they are created.

This request can only be used to modify longer ID settings for resource types that are within the opt-in period. Resources currently in their opt-in period include: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | route-table | route-table-association | security-group | subnet | subnet-cidr-block-association | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway.

This setting applies to the IAM user who makes the request; it does not apply to the entire Amazon Web Services account. By default, an IAM user defaults to the same settings as the root user. If you\'re using this action as the root user, then these settings apply to the entire account, unless an IAM user explicitly overrides these settings for themselves. For more information, see Resource IDs in the Amazon Elastic Compute Cloud User Guide.

Resources created with longer IDs are visible to all IAM roles and users, regardless of these settings and provided that they have permission to use the relevant Describe command for the resource type.

', 'ModifyIdentityIdFormat' => '

Modifies the ID format of a resource for a specified IAM user, IAM role, or the root user for an account; or all IAM users, IAM roles, and the root user for an account. You can specify that resources should receive longer IDs (17-character IDs) when they are created.

This request can only be used to modify longer ID settings for resource types that are within the opt-in period. Resources currently in their opt-in period include: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | route-table | route-table-association | security-group | subnet | subnet-cidr-block-association | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway.

For more information, see Resource IDs in the Amazon Elastic Compute Cloud User Guide.

This setting applies to the principal specified in the request; it does not apply to the principal that makes the request.

Resources created with longer IDs are visible to all IAM roles and users, regardless of these settings and provided that they have permission to use the relevant Describe command for the resource type.

', 'ModifyImageAttribute' => '

Modifies the specified attribute of the specified AMI. You can specify only one attribute at a time.

To specify the attribute, you can use the Attribute parameter, or one of the following parameters: Description, ImdsSupport, or LaunchPermission.

Images with an Amazon Web Services Marketplace product code cannot be made public.

To enable the SriovNetSupport enhanced networking attribute of an image, enable SriovNetSupport on an instance and create an AMI from the instance.

', 'ModifyInstanceAttribute' => '

Modifies the specified attribute of the specified instance. You can specify only one attribute at a time.

Note: Using this action to change the security groups associated with an elastic network interface (ENI) attached to an instance can result in an error if the instance has more than one ENI. To change the security groups associated with an ENI attached to an instance that has multiple ENIs, we recommend that you use the ModifyNetworkInterfaceAttribute action.

To modify some attributes, the instance must be stopped. For more information, see Modify a stopped instance in the Amazon EC2 User Guide.

', 'ModifyInstanceCapacityReservationAttributes' => '

Modifies the Capacity Reservation settings for a stopped instance. Use this action to configure an instance to target a specific Capacity Reservation, run in any open Capacity Reservation with matching attributes, or run On-Demand Instance capacity.

', 'ModifyInstanceCreditSpecification' => '

Modifies the credit option for CPU usage on a running or stopped burstable performance instance. The credit options are standard and unlimited.

For more information, see Burstable performance instances in the Amazon EC2 User Guide.

', 'ModifyInstanceEventStartTime' => '

Modifies the start time for a scheduled Amazon EC2 instance event.

', 'ModifyInstanceEventWindow' => '

Modifies the specified event window.

You can define either a set of time ranges or a cron expression when modifying the event window, but not both.

To modify the targets associated with the event window, use the AssociateInstanceEventWindow and DisassociateInstanceEventWindow API.

If Amazon Web Services has already scheduled an event, modifying an event window won\'t change the time of the scheduled event.

For more information, see Define event windows for scheduled events in the Amazon EC2 User Guide.

', 'ModifyInstanceMaintenanceOptions' => '

Modifies the recovery behavior of your instance to disable simplified automatic recovery or set the recovery behavior to default. The default configuration will not enable simplified automatic recovery for an unsupported instance type. For more information, see Simplified automatic recovery.

', 'ModifyInstanceMetadataOptions' => '

Modify the instance metadata parameters on a running or stopped instance. When you modify the parameters on a stopped instance, they are applied when the instance is started. When you modify the parameters on a running instance, the API responds with a state of “pending”. After the parameter modifications are successfully applied to the instance, the state of the modifications changes from “pending” to “applied” in subsequent describe-instances API calls. For more information, see Instance metadata and user data in the Amazon EC2 User Guide.

', 'ModifyInstancePlacement' => '

Modifies the placement attributes for a specified instance. You can do the following:

  • Modify the affinity between an instance and a Dedicated Host. When affinity is set to host and the instance is not associated with a specific Dedicated Host, the next time the instance is launched, it is automatically associated with the host on which it lands. If the instance is restarted or rebooted, this relationship persists.

  • Change the Dedicated Host with which an instance is associated.

  • Change the instance tenancy of an instance.

  • Move an instance to or from a placement group.

At least one attribute for affinity, host ID, tenancy, or placement group name must be specified in the request. Affinity and tenancy can be modified in the same request.

To modify the host ID, tenancy, placement group, or partition for an instance, the instance must be in the stopped state.

', 'ModifyIpam' => '

Modify the configurations of an IPAM.

', 'ModifyIpamPool' => '

Modify the configurations of an IPAM pool.

For more information, see Modify a pool in the Amazon VPC IPAM User Guide.

', 'ModifyIpamResourceCidr' => '

Modify a resource CIDR. You can use this action to transfer resource CIDRs between scopes and ignore resource CIDRs that you do not want to manage. If set to false, the resource will not be tracked for overlap, it cannot be auto-imported into a pool, and it will be removed from any pool it has an allocation in.

For more information, see Move resource CIDRs between scopes and Change the monitoring state of resource CIDRs in the Amazon VPC IPAM User Guide.

', 'ModifyIpamResourceDiscovery' => '

Modifies a resource discovery. A resource discovery is an IPAM component that enables IPAM to manage and monitor resources that belong to the owning account.

', 'ModifyIpamScope' => '

Modify an IPAM scope.

', 'ModifyLaunchTemplate' => '

Modifies a launch template. You can specify which version of the launch template to set as the default version. When launching an instance, the default version applies when a launch template version is not specified.

', 'ModifyLocalGatewayRoute' => '

Modifies the specified local gateway route.

', 'ModifyManagedPrefixList' => '

Modifies the specified managed prefix list.

Adding or removing entries in a prefix list creates a new version of the prefix list. Changing the name of the prefix list does not affect the version.

If you specify a current version number that does not match the true current version number, the request fails.

', 'ModifyNetworkInterfaceAttribute' => '

Modifies the specified network interface attribute. You can specify only one attribute at a time. You can use this action to attach and detach security groups from an existing EC2 instance.

', 'ModifyPrivateDnsNameOptions' => '

Modifies the options for instance hostnames for the specified instance.

', 'ModifyReservedInstances' => '

Modifies the configuration of your Reserved Instances, such as the Availability Zone, instance count, or instance type. The Reserved Instances to be modified must be identical, except for Availability Zone, network platform, and instance type.

For more information, see Modifying Reserved Instances in the Amazon EC2 User Guide.

', 'ModifySecurityGroupRules' => '

Modifies the rules of a security group.

', 'ModifySnapshotAttribute' => '

Adds or removes permission settings for the specified snapshot. You may add or remove specified Amazon Web Services account IDs from a snapshot\'s list of create volume permissions, but you cannot do both in a single operation. If you need to both add and remove account IDs for a snapshot, you must use multiple operations. You can make up to 500 modifications to a snapshot in a single operation.

Encrypted snapshots and snapshots with Amazon Web Services Marketplace product codes cannot be made public. Snapshots encrypted with your default KMS key cannot be shared with other accounts.

For more information about modifying snapshot permissions, see Share a snapshot in the Amazon Elastic Compute Cloud User Guide.

', 'ModifySnapshotTier' => '

Archives an Amazon EBS snapshot. When you archive a snapshot, it is converted to a full snapshot that includes all of the blocks of data that were written to the volume at the time the snapshot was created, and moved from the standard tier to the archive tier. For more information, see Archive Amazon EBS snapshots in the Amazon Elastic Compute Cloud User Guide.

', 'ModifySpotFleetRequest' => '

Modifies the specified Spot Fleet request.

You can only modify a Spot Fleet request of type maintain.

While the Spot Fleet request is being modified, it is in the modifying state.

To scale up your Spot Fleet, increase its target capacity. The Spot Fleet launches the additional Spot Instances according to the allocation strategy for the Spot Fleet request. If the allocation strategy is lowestPrice, the Spot Fleet launches instances using the Spot Instance pool with the lowest price. If the allocation strategy is diversified, the Spot Fleet distributes the instances across the Spot Instance pools. If the allocation strategy is capacityOptimized, Spot Fleet launches instances from Spot Instance pools with optimal capacity for the number of instances that are launching.

To scale down your Spot Fleet, decrease its target capacity. First, the Spot Fleet cancels any open requests that exceed the new target capacity. You can request that the Spot Fleet terminate Spot Instances until the size of the fleet no longer exceeds the new target capacity. If the allocation strategy is lowestPrice, the Spot Fleet terminates the instances with the highest price per unit. If the allocation strategy is capacityOptimized, the Spot Fleet terminates the instances in the Spot Instance pools that have the least available Spot Instance capacity. If the allocation strategy is diversified, the Spot Fleet terminates instances across the Spot Instance pools. Alternatively, you can request that the Spot Fleet keep the fleet at its current size, but not replace any Spot Instances that are interrupted or that you terminate manually.

If you are finished with your Spot Fleet for now, but will use it again later, you can set the target capacity to 0.

', 'ModifySubnetAttribute' => '

Modifies a subnet attribute. You can only modify one attribute at a time.

Use this action to modify subnets on Amazon Web Services Outposts.

  • To modify a subnet on an Outpost rack, set both MapCustomerOwnedIpOnLaunch and CustomerOwnedIpv4Pool. These two parameters act as a single attribute.

  • To modify a subnet on an Outpost server, set either EnableLniAtDeviceIndex or DisableLniAtDeviceIndex.

For more information about Amazon Web Services Outposts, see the following:

', 'ModifyTrafficMirrorFilterNetworkServices' => '

Allows or restricts mirroring network services.

By default, Amazon DNS network services are not eligible for Traffic Mirror. Use AddNetworkServices to add network services to a Traffic Mirror filter. When a network service is added to the Traffic Mirror filter, all traffic related to that network service will be mirrored. When you no longer want to mirror network services, use RemoveNetworkServices to remove the network services from the Traffic Mirror filter.

', 'ModifyTrafficMirrorFilterRule' => '

Modifies the specified Traffic Mirror rule.

DestinationCidrBlock and SourceCidrBlock must both be an IPv4 range or an IPv6 range.

', 'ModifyTrafficMirrorSession' => '

Modifies a Traffic Mirror session.

', 'ModifyTransitGateway' => '

Modifies the specified transit gateway. When you modify a transit gateway, the modified options are applied to new transit gateway attachments only. Your existing transit gateway attachments are not modified.

', 'ModifyTransitGatewayPrefixListReference' => '

Modifies a reference (route) to a prefix list in a specified transit gateway route table.

', 'ModifyTransitGatewayVpcAttachment' => '

Modifies the specified VPC attachment.

', 'ModifyVerifiedAccessEndpoint' => '

Modifies the configuration of the specified Amazon Web Services Verified Access endpoint.

', 'ModifyVerifiedAccessEndpointPolicy' => '

Modifies the specified Amazon Web Services Verified Access endpoint policy.

', 'ModifyVerifiedAccessGroup' => '

Modifies the specified Amazon Web Services Verified Access group configuration.

', 'ModifyVerifiedAccessGroupPolicy' => '

Modifies the specified Amazon Web Services Verified Access group policy.

', 'ModifyVerifiedAccessInstance' => '

Modifies the configuration of the specified Amazon Web Services Verified Access instance.

', 'ModifyVerifiedAccessInstanceLoggingConfiguration' => '

Modifies the logging configuration for the specified Amazon Web Services Verified Access instance.

', 'ModifyVerifiedAccessTrustProvider' => '

Modifies the configuration of the specified Amazon Web Services Verified Access trust provider.

', 'ModifyVolume' => '

You can modify several parameters of an existing EBS volume, including volume size, volume type, and IOPS capacity. If your EBS volume is attached to a current-generation EC2 instance type, you might be able to apply these changes without stopping the instance or detaching the volume from it. For more information about modifying EBS volumes, see Amazon EBS Elastic Volumes (Linux instances) or Amazon EBS Elastic Volumes (Windows instances).

When you complete a resize operation on your volume, you need to extend the volume\'s file-system size to take advantage of the new storage capacity. For more information, see Extend a Linux file system or Extend a Windows file system.

You can use CloudWatch Events to check the status of a modification to an EBS volume. For information about CloudWatch Events, see the Amazon CloudWatch Events User Guide. You can also track the status of a modification using DescribeVolumesModifications. For information about tracking status changes using either method, see Monitor the progress of volume modifications.

With previous-generation instance types, resizing an EBS volume might require detaching and reattaching the volume or stopping and restarting the instance.

After modifying a volume, you must wait at least six hours and ensure that the volume is in the in-use or available state before you can modify the same volume. This is sometimes referred to as a cooldown period.

', 'ModifyVolumeAttribute' => '

Modifies a volume attribute.

By default, all I/O operations for the volume are suspended when the data on the volume is determined to be potentially inconsistent, to prevent undetectable, latent data corruption. The I/O access to the volume can be resumed by first enabling I/O access and then checking the data consistency on your volume.

You can change the default behavior to resume I/O operations. We recommend that you change this only for boot volumes or for volumes that are stateless or disposable.

', 'ModifyVpcAttribute' => '

Modifies the specified attribute of the specified VPC.

', 'ModifyVpcEndpoint' => '

Modifies attributes of a specified VPC endpoint. The attributes that you can modify depend on the type of VPC endpoint (interface, gateway, or Gateway Load Balancer). For more information, see the Amazon Web Services PrivateLink Guide.

', 'ModifyVpcEndpointConnectionNotification' => '

Modifies a connection notification for VPC endpoint or VPC endpoint service. You can change the SNS topic for the notification, or the events for which to be notified.

', 'ModifyVpcEndpointServiceConfiguration' => '

Modifies the attributes of your VPC endpoint service configuration. You can change the Network Load Balancers or Gateway Load Balancers for your service, and you can specify whether acceptance is required for requests to connect to your endpoint service through an interface VPC endpoint.

If you set or modify the private DNS name, you must prove that you own the private DNS domain name.

', 'ModifyVpcEndpointServicePayerResponsibility' => '

Modifies the payer responsibility for your VPC endpoint service.

', 'ModifyVpcEndpointServicePermissions' => '

Modifies the permissions for your VPC endpoint service. You can add or remove permissions for service consumers (Amazon Web Services accounts, users, and IAM roles) to connect to your endpoint service.

If you grant permissions to all principals, the service is public. Any users who know the name of a public service can send a request to attach an endpoint. If the service does not require manual approval, attachments are automatically approved.

', 'ModifyVpcPeeringConnectionOptions' => '

Modifies the VPC peering connection options on one side of a VPC peering connection.

If the peered VPCs are in the same Amazon Web Services account, you can enable DNS resolution for queries from the local VPC. This ensures that queries from the local VPC resolve to private IP addresses in the peer VPC. This option is not available if the peered VPCs are in different Amazon Web Services accounts or different Regions. For peered VPCs in different Amazon Web Services accounts, each Amazon Web Services account owner must initiate a separate request to modify the peering connection options. For inter-region peering connections, you must use the Region for the requester VPC to modify the requester VPC peering options and the Region for the accepter VPC to modify the accepter VPC peering options. To verify which VPCs are the accepter and the requester for a VPC peering connection, use the DescribeVpcPeeringConnections command.

', 'ModifyVpcTenancy' => '

Modifies the instance tenancy attribute of the specified VPC. You can change the instance tenancy attribute of a VPC to default only. You cannot change the instance tenancy attribute to dedicated.

After you modify the tenancy of the VPC, any new instances that you launch into the VPC have a tenancy of default, unless you specify otherwise during launch. The tenancy of any existing instances in the VPC is not affected.

For more information, see Dedicated Instances in the Amazon EC2 User Guide.

', 'ModifyVpnConnection' => '

Modifies the customer gateway or the target gateway of an Amazon Web Services Site-to-Site VPN connection. To modify the target gateway, the following migration options are available:

  • An existing virtual private gateway to a new virtual private gateway

  • An existing virtual private gateway to a transit gateway

  • An existing transit gateway to a new transit gateway

  • An existing transit gateway to a virtual private gateway

Before you perform the migration to the new gateway, you must configure the new gateway. Use CreateVpnGateway to create a virtual private gateway, or CreateTransitGateway to create a transit gateway.

This step is required when you migrate from a virtual private gateway with static routes to a transit gateway.

You must delete the static routes before you migrate to the new gateway.

Keep a copy of the static route before you delete it. You will need to add back these routes to the transit gateway after the VPN connection migration is complete.

After you migrate to the new gateway, you might need to modify your VPC route table. Use CreateRoute and DeleteRoute to make the changes described in Update VPC route tables in the Amazon Web Services Site-to-Site VPN User Guide.

When the new gateway is a transit gateway, modify the transit gateway route table to allow traffic between the VPC and the Amazon Web Services Site-to-Site VPN connection. Use CreateTransitGatewayRoute to add the routes.

If you deleted VPN static routes, you must add the static routes to the transit gateway route table.

After you perform this operation, the VPN endpoint\'s IP addresses on the Amazon Web Services side and the tunnel options remain intact. Your Amazon Web Services Site-to-Site VPN connection will be temporarily unavailable for a brief period while we provision the new endpoints.

', 'ModifyVpnConnectionOptions' => '

Modifies the connection options for your Site-to-Site VPN connection.

When you modify the VPN connection options, the VPN endpoint IP addresses on the Amazon Web Services side do not change, and the tunnel options do not change. Your VPN connection will be temporarily unavailable for a brief period while the VPN connection is updated.

', 'ModifyVpnTunnelCertificate' => '

Modifies the VPN tunnel endpoint certificate.

', 'ModifyVpnTunnelOptions' => '

Modifies the options for a VPN tunnel in an Amazon Web Services Site-to-Site VPN connection. You can modify multiple options for a tunnel in a single request, but you can only modify one tunnel at a time. For more information, see Site-to-Site VPN tunnel options for your Site-to-Site VPN connection in the Amazon Web Services Site-to-Site VPN User Guide.

', 'MonitorInstances' => '

Enables detailed monitoring for a running instance. Otherwise, basic monitoring is enabled. For more information, see Monitor your instances using CloudWatch in the Amazon EC2 User Guide.

To disable detailed monitoring, see UnmonitorInstances.

', 'MoveAddressToVpc' => '

This action is deprecated.

Moves an Elastic IP address from the EC2-Classic platform to the EC2-VPC platform. The Elastic IP address must be allocated to your account for more than 24 hours, and it must not be associated with an instance. After the Elastic IP address is moved, it is no longer available for use in the EC2-Classic platform, unless you move it back using the RestoreAddressToClassic request. You cannot move an Elastic IP address that was originally allocated for use in the EC2-VPC platform to the EC2-Classic platform.

', 'MoveByoipCidrToIpam' => '

Move a BYOIPv4 CIDR to IPAM from a public IPv4 pool.

If you already have a BYOIPv4 CIDR with Amazon Web Services, you can move the CIDR to IPAM from a public IPv4 pool. You cannot move an IPv6 CIDR to IPAM. If you are bringing a new IP address to Amazon Web Services for the first time, complete the steps in Tutorial: BYOIP address CIDRs to IPAM.

', 'ProvisionByoipCidr' => '

Provisions an IPv4 or IPv6 address range for use with your Amazon Web Services resources through bring your own IP addresses (BYOIP) and creates a corresponding address pool. After the address range is provisioned, it is ready to be advertised using AdvertiseByoipCidr.

Amazon Web Services verifies that you own the address range and are authorized to advertise it. You must ensure that the address range is registered to you and that you created an RPKI ROA to authorize Amazon ASNs 16509 and 14618 to advertise the address range. For more information, see Bring your own IP addresses (BYOIP) in the Amazon Elastic Compute Cloud User Guide.

Provisioning an address range is an asynchronous operation, so the call returns immediately, but the address range is not ready to use until its status changes from pending-provision to provisioned. To monitor the status of an address range, use DescribeByoipCidrs. To allocate an Elastic IP address from your IPv4 address pool, use AllocateAddress with either the specific address from the address pool or the ID of the address pool.

', 'ProvisionIpamByoasn' => '

Provisions your Autonomous System Number (ASN) for use in your Amazon Web Services account. This action requires authorization context for Amazon to bring the ASN to an Amazon Web Services account. For more information, see Tutorial: Bring your ASN to IPAM in the Amazon VPC IPAM guide.

', 'ProvisionIpamPoolCidr' => '

Provision a CIDR to an IPAM pool. You can use this action to provision new CIDRs to a top-level pool or to transfer a CIDR from a top-level pool to a pool within it.

For more information, see Provision CIDRs to pools in the Amazon VPC IPAM User Guide.

', 'ProvisionPublicIpv4PoolCidr' => '

Provision a CIDR to a public IPv4 pool.

For more information about IPAM, see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'PurchaseCapacityBlock' => '

Purchase the Capacity Block for use with your account. With Capacity Blocks you ensure GPU capacity is available for machine learning (ML) workloads. You must specify the ID of the Capacity Block offering you are purchasing.

', 'PurchaseHostReservation' => '

Purchase a reservation with configurations that match those of your Dedicated Host. You must have active Dedicated Hosts in your account before you purchase a reservation. This action results in the specified reservation being purchased and charged to your account.

', 'PurchaseReservedInstancesOffering' => '

Purchases a Reserved Instance for use with your account. With Reserved Instances, you pay a lower hourly rate compared to On-Demand instance pricing.

Use DescribeReservedInstancesOfferings to get a list of Reserved Instance offerings that match your specifications. After you\'ve purchased a Reserved Instance, you can check for your new Reserved Instance with DescribeReservedInstances.

To queue a purchase for a future date and time, specify a purchase time. If you do not specify a purchase time, the default is the current time.

For more information, see Reserved Instances and Reserved Instance Marketplace in the Amazon EC2 User Guide.

', 'PurchaseScheduledInstances' => '

You can no longer purchase Scheduled Instances.

Purchases the Scheduled Instances with the specified schedule.

Scheduled Instances enable you to purchase Amazon EC2 compute capacity by the hour for a one-year term. Before you can purchase a Scheduled Instance, you must call DescribeScheduledInstanceAvailability to check for available schedules and obtain a purchase token. After you purchase a Scheduled Instance, you must call RunScheduledInstances during each scheduled time period.

After you purchase a Scheduled Instance, you can\'t cancel, modify, or resell your purchase.

', 'RebootInstances' => '

Requests a reboot of the specified instances. This operation is asynchronous; it only queues a request to reboot the specified instances. The operation succeeds if the instances are valid and belong to you. Requests to reboot terminated instances are ignored.

If an instance does not cleanly shut down within a few minutes, Amazon EC2 performs a hard reboot.

For more information about troubleshooting, see Troubleshoot an unreachable instance in the Amazon EC2 User Guide.

', 'RegisterImage' => '

Registers an AMI. When you\'re creating an AMI, this is the final step you must complete before you can launch an instance from the AMI. For more information about creating AMIs, see Create your own AMI in the Amazon Elastic Compute Cloud User Guide.

For Amazon EBS-backed instances, CreateImage creates and registers the AMI in a single request, so you don\'t have to register the AMI yourself. We recommend that you always use CreateImage unless you have a specific reason to use RegisterImage.

If needed, you can deregister an AMI at any time. Any modifications you make to an AMI backed by an instance store volume invalidates its registration. If you make changes to an image, deregister the previous image and register the new image.

Register a snapshot of a root device volume

You can use RegisterImage to create an Amazon EBS-backed Linux AMI from a snapshot of a root device volume. You specify the snapshot using a block device mapping. You can\'t set the encryption state of the volume using the block device mapping. If the snapshot is encrypted, or encryption by default is enabled, the root volume of an instance launched from the AMI is encrypted.

For more information, see Create a Linux AMI from a snapshot and Use encryption with Amazon EBS-backed AMIs in the Amazon Elastic Compute Cloud User Guide.

Amazon Web Services Marketplace product codes

If any snapshots have Amazon Web Services Marketplace product codes, they are copied to the new AMI.

Windows and some Linux distributions, such as Red Hat Enterprise Linux (RHEL) and SUSE Linux Enterprise Server (SLES), use the Amazon EC2 billing product code associated with an AMI to verify the subscription status for package updates. To create a new AMI for operating systems that require a billing product code, instead of registering the AMI, do the following to preserve the billing product code association:

  1. Launch an instance from an existing AMI with that billing product code.

  2. Customize the instance.

  3. Create an AMI from the instance using CreateImage.

If you purchase a Reserved Instance to apply to an On-Demand Instance that was launched from an AMI with a billing product code, make sure that the Reserved Instance has the matching billing product code. If you purchase a Reserved Instance without the matching billing product code, the Reserved Instance will not be applied to the On-Demand Instance. For information about how to obtain the platform details and billing information of an AMI, see Understand AMI billing information in the Amazon EC2 User Guide.

', 'RegisterInstanceEventNotificationAttributes' => '

Registers a set of tag keys to include in scheduled event notifications for your resources.

To remove tags, use DeregisterInstanceEventNotificationAttributes.

', 'RegisterTransitGatewayMulticastGroupMembers' => '

Registers members (network interfaces) with the transit gateway multicast group. A member is a network interface associated with a supported EC2 instance that receives multicast traffic. For information about supported instances, see Multicast Consideration in Amazon VPC Transit Gateways.

After you add the members, use SearchTransitGatewayMulticastGroups to verify that the members were added to the transit gateway multicast group.

', 'RegisterTransitGatewayMulticastGroupSources' => '

Registers sources (network interfaces) with the specified transit gateway multicast group.

A multicast source is a network interface attached to a supported instance that sends multicast traffic. For information about supported instances, see Multicast Considerations in Amazon VPC Transit Gateways.

After you add the source, use SearchTransitGatewayMulticastGroups to verify that the source was added to the multicast group.

', 'RejectTransitGatewayMulticastDomainAssociations' => '

Rejects a request to associate cross-account subnets with a transit gateway multicast domain.

', 'RejectTransitGatewayPeeringAttachment' => '

Rejects a transit gateway peering attachment request.

', 'RejectTransitGatewayVpcAttachment' => '

Rejects a request to attach a VPC to a transit gateway.

The VPC attachment must be in the pendingAcceptance state. Use DescribeTransitGatewayVpcAttachments to view your pending VPC attachment requests. Use AcceptTransitGatewayVpcAttachment to accept a VPC attachment request.

', 'RejectVpcEndpointConnections' => '

Rejects VPC endpoint connection requests to your VPC endpoint service.

', 'RejectVpcPeeringConnection' => '

Rejects a VPC peering connection request. The VPC peering connection must be in the pending-acceptance state. Use the DescribeVpcPeeringConnections request to view your outstanding VPC peering connection requests. To delete an active VPC peering connection, or to delete a VPC peering connection request that you initiated, use DeleteVpcPeeringConnection.

', 'ReleaseAddress' => '

Releases the specified Elastic IP address.

[Default VPC] Releasing an Elastic IP address automatically disassociates it from any instance that it\'s associated with. To disassociate an Elastic IP address without releasing it, use DisassociateAddress.

[Nondefault VPC] You must use DisassociateAddress to disassociate the Elastic IP address before you can release it. Otherwise, Amazon EC2 returns an error (InvalidIPAddress.InUse).

After releasing an Elastic IP address, it is released to the IP address pool. Be sure to update your DNS records and any servers or devices that communicate with the address. If you attempt to release an Elastic IP address that you already released, you\'ll get an AuthFailure error if the address is already allocated to another Amazon Web Services account.

After you release an Elastic IP address, you might be able to recover it. For more information, see AllocateAddress.

', 'ReleaseHosts' => '

When you no longer want to use an On-Demand Dedicated Host it can be released. On-Demand billing is stopped and the host goes into released state. The host ID of Dedicated Hosts that have been released can no longer be specified in another request, for example, to modify the host. You must stop or terminate all instances on a host before it can be released.

When Dedicated Hosts are released, it may take some time for them to stop counting toward your limit and you may receive capacity errors when trying to allocate new Dedicated Hosts. Wait a few minutes and then try again.

Released hosts still appear in a DescribeHosts response.

', 'ReleaseIpamPoolAllocation' => '

Release an allocation within an IPAM pool. The Region you use should be the IPAM pool locale. The locale is the Amazon Web Services Region where this IPAM pool is available for allocations. You can only use this action to release manual allocations. To remove an allocation for a resource without deleting the resource, set its monitored state to false using ModifyIpamResourceCidr. For more information, see Release an allocation in the Amazon VPC IPAM User Guide.

All EC2 API actions follow an eventual consistency model.

', 'ReplaceIamInstanceProfileAssociation' => '

Replaces an IAM instance profile for the specified running instance. You can use this action to change the IAM instance profile that\'s associated with an instance without having to disassociate the existing IAM instance profile first.

Use DescribeIamInstanceProfileAssociations to get the association ID.

', 'ReplaceNetworkAclAssociation' => '

Changes which network ACL a subnet is associated with. By default when you create a subnet, it\'s automatically associated with the default network ACL. For more information, see Network ACLs in the Amazon VPC User Guide.

This is an idempotent operation.

', 'ReplaceNetworkAclEntry' => '

Replaces an entry (rule) in a network ACL. For more information, see Network ACLs in the Amazon VPC User Guide.

', 'ReplaceRoute' => '

Replaces an existing route within a route table in a VPC.

You must specify either a destination CIDR block or a prefix list ID. You must also specify exactly one of the resources from the parameter list, or reset the local route to its default target.

For more information, see Route tables in the Amazon VPC User Guide.

', 'ReplaceRouteTableAssociation' => '

Changes the route table associated with a given subnet, internet gateway, or virtual private gateway in a VPC. After the operation completes, the subnet or gateway uses the routes in the new route table. For more information about route tables, see Route tables in the Amazon VPC User Guide.

You can also use this operation to change which table is the main route table in the VPC. Specify the main route table\'s association ID and the route table ID of the new main route table.

', 'ReplaceTransitGatewayRoute' => '

Replaces the specified route in the specified transit gateway route table.

', 'ReplaceVpnTunnel' => '

Trigger replacement of specified VPN tunnel.

', 'ReportInstanceStatus' => '

Submits feedback about the status of an instance. The instance must be in the running state. If your experience with the instance differs from the instance status returned by DescribeInstanceStatus, use ReportInstanceStatus to report your experience with the instance. Amazon EC2 collects this information to improve the accuracy of status checks.

Use of this action does not change the value returned by DescribeInstanceStatus.

', 'RequestSpotFleet' => '

Creates a Spot Fleet request.

The Spot Fleet request specifies the total target capacity and the On-Demand target capacity. Amazon EC2 calculates the difference between the total capacity and On-Demand capacity, and launches the difference as Spot capacity.

You can submit a single request that includes multiple launch specifications that vary by instance type, AMI, Availability Zone, or subnet.

By default, the Spot Fleet requests Spot Instances in the Spot Instance pool where the price per unit is the lowest. Each launch specification can include its own instance weighting that reflects the value of the instance type to your application workload.

Alternatively, you can specify that the Spot Fleet distribute the target capacity across the Spot pools included in its launch specifications. By ensuring that the Spot Instances in your Spot Fleet are in different Spot pools, you can improve the availability of your fleet.

You can specify tags for the Spot Fleet request and instances launched by the fleet. You cannot tag other resource types in a Spot Fleet request because only the spot-fleet-request and instance resource types are supported.

For more information, see Spot Fleet requests in the Amazon EC2 User Guide.

We strongly discourage using the RequestSpotFleet API because it is a legacy API with no planned investment. For options for requesting Spot Instances, see Which is the best Spot request method to use? in the Amazon EC2 User Guide.

', 'RequestSpotInstances' => '

Creates a Spot Instance request.

For more information, see Spot Instance requests in the Amazon EC2 User Guide for Linux Instances.

We strongly discourage using the RequestSpotInstances API because it is a legacy API with no planned investment. For options for requesting Spot Instances, see Which is the best Spot request method to use? in the Amazon EC2 User Guide for Linux Instances.

', 'ResetAddressAttribute' => '

Resets the attribute of the specified IP address. For requirements, see Using reverse DNS for email applications.

', 'ResetEbsDefaultKmsKeyId' => '

Resets the default KMS key for EBS encryption for your account in this Region to the Amazon Web Services managed KMS key for EBS.

After resetting the default KMS key to the Amazon Web Services managed KMS key, you can continue to encrypt by a customer managed KMS key by specifying it when you create the volume. For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

', 'ResetFpgaImageAttribute' => '

Resets the specified attribute of the specified Amazon FPGA Image (AFI) to its default value. You can only reset the load permission attribute.

', 'ResetImageAttribute' => '

Resets an attribute of an AMI to its default value.

', 'ResetInstanceAttribute' => '

Resets an attribute of an instance to its default value. To reset the kernel or ramdisk, the instance must be in a stopped state. To reset the sourceDestCheck, the instance can be either running or stopped.

The sourceDestCheck attribute controls whether source/destination checking is enabled. The default value is true, which means checking is enabled. This value must be false for a NAT instance to perform NAT. For more information, see NAT Instances in the Amazon VPC User Guide.

', 'ResetNetworkInterfaceAttribute' => '

Resets a network interface attribute. You can specify only one attribute at a time.

', 'ResetSnapshotAttribute' => '

Resets permission settings for the specified snapshot.

For more information about modifying snapshot permissions, see Share a snapshot in the Amazon Elastic Compute Cloud User Guide.

', 'RestoreAddressToClassic' => '

This action is deprecated.

Restores an Elastic IP address that was previously moved to the EC2-VPC platform back to the EC2-Classic platform. You cannot move an Elastic IP address that was originally allocated for use in EC2-VPC. The Elastic IP address must not be associated with an instance or network interface.

', 'RestoreImageFromRecycleBin' => '

Restores an AMI from the Recycle Bin. For more information, see Recycle Bin in the Amazon EC2 User Guide.

', 'RestoreManagedPrefixListVersion' => '

Restores the entries from a previous version of a managed prefix list to a new version of the prefix list.

', 'RestoreSnapshotFromRecycleBin' => '

Restores a snapshot from the Recycle Bin. For more information, see Restore snapshots from the Recycle Bin in the Amazon Elastic Compute Cloud User Guide.

', 'RestoreSnapshotTier' => '

Restores an archived Amazon EBS snapshot for use temporarily or permanently, or modifies the restore period or restore type for a snapshot that was previously temporarily restored.

For more information see Restore an archived snapshot and modify the restore period or restore type for a temporarily restored snapshot in the Amazon Elastic Compute Cloud User Guide.

', 'RevokeClientVpnIngress' => '

Removes an ingress authorization rule from a Client VPN endpoint.

', 'RevokeSecurityGroupEgress' => '

Removes the specified outbound (egress) rules from the specified security group.

You can specify rules using either rule IDs or security group rule properties. If you use rule properties, the values that you specify (for example, ports) must match the existing rule\'s values exactly. Each rule has a protocol, from and to ports, and destination (CIDR range, security group, or prefix list). For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code. If the security group rule has a description, you do not need to specify the description to revoke the rule.

For a default VPC, if the values you specify do not match the existing rule\'s values, no error is returned, and the output describes the security group rules that were not revoked.

Amazon Web Services recommends that you describe the security group to verify that the rules were removed.

Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.

', 'RevokeSecurityGroupIngress' => '

Removes the specified inbound (ingress) rules from a security group.

You can specify rules using either rule IDs or security group rule properties. If you use rule properties, the values that you specify (for example, ports) must match the existing rule\'s values exactly. Each rule has a protocol, from and to ports, and source (CIDR range, security group, or prefix list). For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code. If the security group rule has a description, you do not need to specify the description to revoke the rule.

For a default VPC, if the values you specify do not match the existing rule\'s values, no error is returned, and the output describes the security group rules that were not revoked.

For a non-default VPC, if the values you specify do not match the existing rule\'s values, an InvalidPermission.NotFound client error is returned, and no rules are revoked.

Amazon Web Services recommends that you describe the security group to verify that the rules were removed.

Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.

', 'RunInstances' => '

Launches the specified number of instances using an AMI for which you have permissions.

You can specify a number of options, or leave the default options. The following rules apply:

  • If you don\'t specify a subnet ID, we choose a default subnet from your default VPC for you. If you don\'t have a default VPC, you must specify a subnet ID in the request.

  • All instances have a network interface with a primary private IPv4 address. If you don\'t specify this address, we choose one from the IPv4 range of your subnet.

  • Not all instance types support IPv6 addresses. For more information, see Instance types.

  • If you don\'t specify a security group ID, we use the default security group. For more information, see Security groups.

  • If any of the AMIs have a product code attached for which the user has not subscribed, the request fails.

You can create a launch template, which is a resource that contains the parameters to launch an instance. When you launch an instance using RunInstances, you can specify the launch template instead of specifying the launch parameters.

To ensure faster instance launches, break up large requests into smaller batches. For example, create five separate launch requests for 100 instances each instead of one launch request for 500 instances.

An instance is ready for you to use when it\'s in the running state. You can check the state of your instance using DescribeInstances. You can tag instances and EBS volumes during launch, after launch, or both. For more information, see CreateTags and Tagging your Amazon EC2 resources.

Linux instances have access to the public key of the key pair at boot. You can use this key to provide secure access to the instance. Amazon EC2 public images use this feature to provide secure access without passwords. For more information, see Key pairs.

For troubleshooting, see What to do if an instance immediately terminates, and Troubleshooting connecting to your instance.

', 'RunScheduledInstances' => '

Launches the specified Scheduled Instances.

Before you can launch a Scheduled Instance, you must purchase it and obtain an identifier using PurchaseScheduledInstances.

You must launch a Scheduled Instance during its scheduled time period. You can\'t stop or reboot a Scheduled Instance, but you can terminate it as needed. If you terminate a Scheduled Instance before the current scheduled time period ends, you can launch it again after a few minutes. For more information, see Scheduled Instances in the Amazon EC2 User Guide.

', 'SearchLocalGatewayRoutes' => '

Searches for routes in the specified local gateway route table.

', 'SearchTransitGatewayMulticastGroups' => '

Searches one or more transit gateway multicast groups and returns the group membership information.

', 'SearchTransitGatewayRoutes' => '

Searches for routes in the specified transit gateway route table.

', 'SendDiagnosticInterrupt' => '

Sends a diagnostic interrupt to the specified Amazon EC2 instance to trigger a kernel panic (on Linux instances), or a blue screen/stop error (on Windows instances). For instances based on Intel and AMD processors, the interrupt is received as a non-maskable interrupt (NMI).

In general, the operating system crashes and reboots when a kernel panic or stop error is triggered. The operating system can also be configured to perform diagnostic tasks, such as generating a memory dump file, loading a secondary kernel, or obtaining a call trace.

Before sending a diagnostic interrupt to your instance, ensure that its operating system is configured to perform the required diagnostic tasks.

For more information about configuring your operating system to generate a crash dump when a kernel panic or stop error occurs, see Send a diagnostic interrupt (for advanced users) (Linux instances) or Send a diagnostic interrupt (for advanced users) (Windows instances).

', 'StartInstances' => '

Starts an Amazon EBS-backed instance that you\'ve previously stopped.

Instances that use Amazon EBS volumes as their root devices can be quickly stopped and started. When an instance is stopped, the compute resources are released and you are not billed for instance usage. However, your root partition Amazon EBS volume remains and continues to persist your data, and you are charged for Amazon EBS volume usage. You can restart your instance at any time. Every time you start your instance, Amazon EC2 charges a one-minute minimum for instance usage, and thereafter charges per second for instance usage.

Before stopping an instance, make sure it is in a state from which it can be restarted. Stopping an instance does not preserve data stored in RAM.

Performing this operation on an instance that uses an instance store as its root device returns an error.

If you attempt to start a T3 instance with host tenancy and the unlimited CPU credit option, the request fails. The unlimited CPU credit option is not supported on Dedicated Hosts. Before you start the instance, either change its CPU credit option to standard, or change its tenancy to default or dedicated.

For more information, see Stop and start your instance in the Amazon EC2 User Guide.

', 'StartNetworkInsightsAccessScopeAnalysis' => '

Starts analyzing the specified Network Access Scope.

', 'StartNetworkInsightsAnalysis' => '

Starts analyzing the specified path. If the path is reachable, the operation returns the shortest feasible path.

', 'StartVpcEndpointServicePrivateDnsVerification' => '

Initiates the verification process to prove that the service provider owns the private DNS name domain for the endpoint service.

The service provider must successfully perform the verification before the consumer can use the name to access the service.

Before the service provider runs this command, they must add a record to the DNS server.

', 'StopInstances' => '

Stops an Amazon EBS-backed instance. For more information, see Stop and start your instance in the Amazon EC2 User Guide.

You can use the Stop action to hibernate an instance if the instance is enabled for hibernation and it meets the hibernation prerequisites. For more information, see Hibernate your instance in the Amazon EC2 User Guide.

We don\'t charge usage for a stopped instance, or data transfer fees; however, your root partition Amazon EBS volume remains and continues to persist your data, and you are charged for Amazon EBS volume usage. Every time you start your instance, Amazon EC2 charges a one-minute minimum for instance usage, and thereafter charges per second for instance usage.

You can\'t stop or hibernate instance store-backed instances. You can\'t use the Stop action to hibernate Spot Instances, but you can specify that Amazon EC2 should hibernate Spot Instances when they are interrupted. For more information, see Hibernating interrupted Spot Instances in the Amazon EC2 User Guide.

When you stop or hibernate an instance, we shut it down. You can restart your instance at any time. Before stopping or hibernating an instance, make sure it is in a state from which it can be restarted. Stopping an instance does not preserve data stored in RAM, but hibernating an instance does preserve data stored in RAM. If an instance cannot hibernate successfully, a normal shutdown occurs.

Stopping and hibernating an instance is different to rebooting or terminating it. For example, when you stop or hibernate an instance, the root device and any other devices attached to the instance persist. When you terminate an instance, the root device and any other devices attached during the instance launch are automatically deleted. For more information about the differences between rebooting, stopping, hibernating, and terminating instances, see Instance lifecycle in the Amazon EC2 User Guide.

When you stop an instance, we attempt to shut it down forcibly after a short while. If your instance appears stuck in the stopping state after a period of time, there may be an issue with the underlying host computer. For more information, see Troubleshoot stopping your instance in the Amazon EC2 User Guide.

', 'TerminateClientVpnConnections' => '

Terminates active Client VPN endpoint connections. This action can be used to terminate a specific client connection, or up to five connections established by a specific user.

', 'TerminateInstances' => '

Shuts down the specified instances. This operation is idempotent; if you terminate an instance more than once, each call succeeds.

If you specify multiple instances and the request fails (for example, because of a single incorrect instance ID), none of the instances are terminated.

If you terminate multiple instances across multiple Availability Zones, and one or more of the specified instances are enabled for termination protection, the request fails with the following results:

  • The specified instances that are in the same Availability Zone as the protected instance are not terminated.

  • The specified instances that are in different Availability Zones, where no other specified instances are protected, are successfully terminated.

For example, say you have the following instances:

  • Instance A: us-east-1a; Not protected

  • Instance B: us-east-1a; Not protected

  • Instance C: us-east-1b; Protected

  • Instance D: us-east-1b; not protected

If you attempt to terminate all of these instances in the same request, the request reports failure with the following results:

  • Instance A and Instance B are successfully terminated because none of the specified instances in us-east-1a are enabled for termination protection.

  • Instance C and Instance D fail to terminate because at least one of the specified instances in us-east-1b (Instance C) is enabled for termination protection.

Terminated instances remain visible after termination (for approximately one hour).

By default, Amazon EC2 deletes all EBS volumes that were attached when the instance launched. Volumes attached after instance launch continue running.

You can stop, start, and terminate EBS-backed instances. You can only terminate instance store-backed instances. What happens to an instance differs if you stop it or terminate it. For example, when you stop an instance, the root device and any other devices attached to the instance persist. When you terminate an instance, any attached EBS volumes with the DeleteOnTermination block device mapping parameter set to true are automatically deleted. For more information about the differences between stopping and terminating instances, see Instance lifecycle in the Amazon EC2 User Guide.

For more information about troubleshooting, see Troubleshooting terminating your instance in the Amazon EC2 User Guide.

', 'UnassignIpv6Addresses' => '

Unassigns one or more IPv6 addresses IPv4 Prefix Delegation prefixes from a network interface.

', 'UnassignPrivateIpAddresses' => '

Unassigns one or more secondary private IP addresses, or IPv4 Prefix Delegation prefixes from a network interface.

', 'UnassignPrivateNatGatewayAddress' => '

Unassigns secondary private IPv4 addresses from a private NAT gateway. You cannot unassign your primary private IP. For more information, see Edit secondary IP address associations in the Amazon VPC User Guide.

While unassigning is in progress, you cannot assign/unassign additional IP addresses while the connections are being drained. You are, however, allowed to delete the NAT gateway.

A private IP address will only be released at the end of MaxDrainDurationSeconds. The private IP addresses stay associated and support the existing connections, but do not support any new connections (new connections are distributed across the remaining assigned private IP address). After the existing connections drain out, the private IP addresses are released.

', 'UnlockSnapshot' => '

Unlocks a snapshot that is locked in governance mode or that is locked in compliance mode but still in the cooling-off period. You can\'t unlock a snapshot that is locked in compliance mode after the cooling-off period has expired.

', 'UnmonitorInstances' => '

Disables detailed monitoring for a running instance. For more information, see Monitoring your instances and volumes in the Amazon EC2 User Guide.

', 'UpdateSecurityGroupRuleDescriptionsEgress' => '

Updates the description of an egress (outbound) security group rule. You can replace an existing description, or add a description to a rule that did not have one previously. You can remove a description for a security group rule by omitting the description parameter in the request.

', 'UpdateSecurityGroupRuleDescriptionsIngress' => '

Updates the description of an ingress (inbound) security group rule. You can replace an existing description, or add a description to a rule that did not have one previously. You can remove a description for a security group rule by omitting the description parameter in the request.

', 'WithdrawByoipCidr' => '

Stops advertising an address range that is provisioned as an address pool.

You can perform this operation at most once every 10 seconds, even if you specify different address ranges each time.

It can take a few minutes before traffic to the specified addresses stops routing to Amazon Web Services because of BGP propagation delays.

', ], 'shapes' => [ 'AcceleratorCount' => [ 'base' => '

The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia chips) on an instance.

', 'refs' => [ 'InstanceRequirements$AcceleratorCount' => '

The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia chips) on an instance.

To exclude accelerator-enabled instance types, set Max to 0.

Default: No minimum or maximum limits

', ], ], 'AcceleratorCountRequest' => [ 'base' => '

The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia chips) on an instance. To exclude accelerator-enabled instance types, set Max to 0.

', 'refs' => [ 'InstanceRequirementsRequest$AcceleratorCount' => '

The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia chips) on an instance.

To exclude accelerator-enabled instance types, set Max to 0.

Default: No minimum or maximum limits

', ], ], 'AcceleratorManufacturer' => [ 'base' => NULL, 'refs' => [ 'AcceleratorManufacturerSet$member' => NULL, ], ], 'AcceleratorManufacturerSet' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$AcceleratorManufacturers' => '

Indicates whether instance types must have accelerators by specific manufacturers.

  • For instance types with Amazon Web Services devices, specify amazon-web-services.

  • For instance types with AMD devices, specify amd.

  • For instance types with Habana devices, specify habana.

  • For instance types with NVIDIA devices, specify nvidia.

  • For instance types with Xilinx devices, specify xilinx.

Default: Any manufacturer

', 'InstanceRequirementsRequest$AcceleratorManufacturers' => '

Indicates whether instance types must have accelerators by specific manufacturers.

  • For instance types with Amazon Web Services devices, specify amazon-web-services.

  • For instance types with AMD devices, specify amd.

  • For instance types with Habana devices, specify habana.

  • For instance types with NVIDIA devices, specify nvidia.

  • For instance types with Xilinx devices, specify xilinx.

Default: Any manufacturer

', ], ], 'AcceleratorName' => [ 'base' => NULL, 'refs' => [ 'AcceleratorNameSet$member' => NULL, ], ], 'AcceleratorNameSet' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$AcceleratorNames' => '

The accelerators that must be on the instance type.

  • For instance types with NVIDIA A10G GPUs, specify a10g.

  • For instance types with NVIDIA A100 GPUs, specify a100.

  • For instance types with NVIDIA H100 GPUs, specify h100.

  • For instance types with Amazon Web Services Inferentia chips, specify inferentia.

  • For instance types with NVIDIA GRID K520 GPUs, specify k520.

  • For instance types with NVIDIA K80 GPUs, specify k80.

  • For instance types with NVIDIA M60 GPUs, specify m60.

  • For instance types with AMD Radeon Pro V520 GPUs, specify radeon-pro-v520.

  • For instance types with NVIDIA T4 GPUs, specify t4.

  • For instance types with NVIDIA T4G GPUs, specify t4g.

  • For instance types with Xilinx VU9P FPGAs, specify vu9p.

  • For instance types with NVIDIA V100 GPUs, specify v100.

Default: Any accelerator

', 'InstanceRequirementsRequest$AcceleratorNames' => '

The accelerators that must be on the instance type.

  • For instance types with NVIDIA A10G GPUs, specify a10g.

  • For instance types with NVIDIA A100 GPUs, specify a100.

  • For instance types with NVIDIA H100 GPUs, specify h100.

  • For instance types with Amazon Web Services Inferentia chips, specify inferentia.

  • For instance types with NVIDIA GRID K520 GPUs, specify k520.

  • For instance types with NVIDIA K80 GPUs, specify k80.

  • For instance types with NVIDIA M60 GPUs, specify m60.

  • For instance types with AMD Radeon Pro V520 GPUs, specify radeon-pro-v520.

  • For instance types with NVIDIA T4 GPUs, specify t4.

  • For instance types with NVIDIA T4G GPUs, specify t4g.

  • For instance types with Xilinx VU9P FPGAs, specify vu9p.

  • For instance types with NVIDIA V100 GPUs, specify v100.

Default: Any accelerator

', ], ], 'AcceleratorTotalMemoryMiB' => [ 'base' => '

The minimum and maximum amount of total accelerator memory, in MiB.

', 'refs' => [ 'InstanceRequirements$AcceleratorTotalMemoryMiB' => '

The minimum and maximum amount of total accelerator memory, in MiB.

Default: No minimum or maximum limits

', ], ], 'AcceleratorTotalMemoryMiBRequest' => [ 'base' => '

The minimum and maximum amount of total accelerator memory, in MiB.

', 'refs' => [ 'InstanceRequirementsRequest$AcceleratorTotalMemoryMiB' => '

The minimum and maximum amount of total accelerator memory, in MiB.

Default: No minimum or maximum limits

', ], ], 'AcceleratorType' => [ 'base' => NULL, 'refs' => [ 'AcceleratorTypeSet$member' => NULL, ], ], 'AcceleratorTypeSet' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$AcceleratorTypes' => '

The accelerator types that must be on the instance type.

  • For instance types with GPU accelerators, specify gpu.

  • For instance types with FPGA accelerators, specify fpga.

  • For instance types with inference accelerators, specify inference.

Default: Any accelerator type

', 'InstanceRequirementsRequest$AcceleratorTypes' => '

The accelerator types that must be on the instance type.

  • To include instance types with GPU hardware, specify gpu.

  • To include instance types with FPGA hardware, specify fpga.

  • To include instance types with inference hardware, specify inference.

Default: Any accelerator type

', ], ], 'AcceptAddressTransferRequest' => [ 'base' => NULL, 'refs' => [], ], 'AcceptAddressTransferResult' => [ 'base' => NULL, 'refs' => [], ], 'AcceptReservedInstancesExchangeQuoteRequest' => [ 'base' => '

Contains the parameters for accepting the quote.

', 'refs' => [], ], 'AcceptReservedInstancesExchangeQuoteResult' => [ 'base' => '

The result of the exchange and whether it was successful.

', 'refs' => [], ], 'AcceptTransitGatewayMulticastDomainAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'AcceptTransitGatewayMulticastDomainAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'AcceptTransitGatewayPeeringAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'AcceptTransitGatewayPeeringAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'AcceptTransitGatewayVpcAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'AcceptTransitGatewayVpcAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'AcceptVpcEndpointConnectionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'AcceptVpcEndpointConnectionsResult' => [ 'base' => NULL, 'refs' => [], ], 'AcceptVpcPeeringConnectionRequest' => [ 'base' => NULL, 'refs' => [], ], 'AcceptVpcPeeringConnectionResult' => [ 'base' => NULL, 'refs' => [], ], 'AccessScopeAnalysisFinding' => [ 'base' => '

Describes a finding for a Network Access Scope.

', 'refs' => [ 'AccessScopeAnalysisFindingList$member' => NULL, ], ], 'AccessScopeAnalysisFindingList' => [ 'base' => NULL, 'refs' => [ 'GetNetworkInsightsAccessScopeAnalysisFindingsResult$AnalysisFindings' => '

The findings associated with Network Access Scope Analysis.

', ], ], 'AccessScopePath' => [ 'base' => '

Describes a path.

', 'refs' => [ 'AccessScopePathList$member' => NULL, ], ], 'AccessScopePathList' => [ 'base' => NULL, 'refs' => [ 'NetworkInsightsAccessScopeContent$MatchPaths' => '

The paths to match.

', 'NetworkInsightsAccessScopeContent$ExcludePaths' => '

The paths to exclude.

', ], ], 'AccessScopePathListRequest' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInsightsAccessScopeRequest$MatchPaths' => '

The paths to match.

', 'CreateNetworkInsightsAccessScopeRequest$ExcludePaths' => '

The paths to exclude.

', ], ], 'AccessScopePathRequest' => [ 'base' => '

Describes a path.

', 'refs' => [ 'AccessScopePathListRequest$member' => NULL, ], ], 'AccountAttribute' => [ 'base' => '

Describes an account attribute.

', 'refs' => [ 'AccountAttributeList$member' => NULL, ], ], 'AccountAttributeList' => [ 'base' => NULL, 'refs' => [ 'DescribeAccountAttributesResult$AccountAttributes' => '

Information about the account attributes.

', ], ], 'AccountAttributeName' => [ 'base' => NULL, 'refs' => [ 'AccountAttributeNameStringList$member' => NULL, ], ], 'AccountAttributeNameStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeAccountAttributesRequest$AttributeNames' => '

The account attribute names.

', ], ], 'AccountAttributeValue' => [ 'base' => '

Describes a value of an account attribute.

', 'refs' => [ 'AccountAttributeValueList$member' => NULL, ], ], 'AccountAttributeValueList' => [ 'base' => NULL, 'refs' => [ 'AccountAttribute$AttributeValues' => '

The values for the account attribute.

', ], ], 'ActiveInstance' => [ 'base' => '

Describes a running instance in a Spot Fleet.

', 'refs' => [ 'ActiveInstanceSet$member' => NULL, ], ], 'ActiveInstanceSet' => [ 'base' => NULL, 'refs' => [ 'DescribeFleetInstancesResult$ActiveInstances' => '

The running instances. This list is refreshed periodically and might be out of date.

', 'DescribeSpotFleetInstancesResponse$ActiveInstances' => '

The running instances. This list is refreshed periodically and might be out of date.

', ], ], 'ActivityStatus' => [ 'base' => NULL, 'refs' => [ 'SpotFleetRequestConfig$ActivityStatus' => '

The progress of the Spot Fleet request. If there is an error, the status is error. After all requests are placed, the status is pending_fulfillment. If the size of the fleet is equal to or greater than its target capacity, the status is fulfilled. If the size of the fleet is decreased, the status is pending_termination while Spot Instances are terminating.

', ], ], 'AddIpamOperatingRegion' => [ 'base' => '

Add an operating Region to an IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

For more information about operating Regions, see Create an IPAM in the Amazon VPC IPAM User Guide.

', 'refs' => [ 'AddIpamOperatingRegionSet$member' => NULL, ], ], 'AddIpamOperatingRegionSet' => [ 'base' => NULL, 'refs' => [ 'CreateIpamRequest$OperatingRegions' => '

The operating Regions for the IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

For more information about operating Regions, see Create an IPAM in the Amazon VPC IPAM User Guide.

', 'CreateIpamResourceDiscoveryRequest$OperatingRegions' => '

Operating Regions for the IPAM resource discovery. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

', 'ModifyIpamRequest$AddOperatingRegions' => '

Choose the operating Regions for the IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

For more information about operating Regions, see Create an IPAM in the Amazon VPC IPAM User Guide.

', 'ModifyIpamResourceDiscoveryRequest$AddOperatingRegions' => '

Add operating Regions to the resource discovery. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

', ], ], 'AddPrefixListEntries' => [ 'base' => NULL, 'refs' => [ 'CreateManagedPrefixListRequest$Entries' => '

One or more entries for the prefix list.

', 'ModifyManagedPrefixListRequest$AddEntries' => '

One or more entries to add to the prefix list.

', ], ], 'AddPrefixListEntry' => [ 'base' => '

An entry for a prefix list.

', 'refs' => [ 'AddPrefixListEntries$member' => NULL, ], ], 'AddedPrincipal' => [ 'base' => '

Describes a principal.

', 'refs' => [ 'AddedPrincipalSet$member' => NULL, ], ], 'AddedPrincipalSet' => [ 'base' => NULL, 'refs' => [ 'ModifyVpcEndpointServicePermissionsResult$AddedPrincipals' => '

Information about the added principals.

', ], ], 'AdditionalDetail' => [ 'base' => '

Describes an additional detail for a path analysis. For more information, see Reachability Analyzer additional detail codes.

', 'refs' => [ 'AdditionalDetailList$member' => NULL, ], ], 'AdditionalDetailList' => [ 'base' => NULL, 'refs' => [ 'PathComponent$AdditionalDetails' => '

The additional details.

', ], ], 'Address' => [ 'base' => '

Describes an Elastic IP address, or a carrier IP address.

', 'refs' => [ 'AddressList$member' => NULL, ], ], 'AddressAttribute' => [ 'base' => '

The attributes associated with an Elastic IP address.

', 'refs' => [ 'AddressSet$member' => NULL, 'ModifyAddressAttributeResult$Address' => '

Information about the Elastic IP address.

', 'ResetAddressAttributeResult$Address' => '

Information about the IP address.

', ], ], 'AddressAttributeName' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressesAttributeRequest$Attribute' => '

The attribute of the IP address.

', 'ResetAddressAttributeRequest$Attribute' => '

The attribute of the IP address.

', ], ], 'AddressFamily' => [ 'base' => NULL, 'refs' => [ 'CreateIpamPoolRequest$AddressFamily' => '

The IP protocol assigned to this IPAM pool. You must choose either IPv4 or IPv6 protocol for a pool.

', 'IpamPool$AddressFamily' => '

The address family of the pool.

', ], ], 'AddressList' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressesResult$Addresses' => '

Information about the Elastic IP addresses.

', ], ], 'AddressMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressesAttributeRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'AddressSet' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressesAttributeResult$Addresses' => '

Information about the IP addresses.

', ], ], 'AddressTransfer' => [ 'base' => '

Details on the Elastic IP address transfer. For more information, see Transfer Elastic IP addresses in the Amazon Virtual Private Cloud User Guide.

', 'refs' => [ 'AcceptAddressTransferResult$AddressTransfer' => '

An Elastic IP address transfer.

', 'AddressTransferList$member' => NULL, 'DisableAddressTransferResult$AddressTransfer' => '

An Elastic IP address transfer.

', 'EnableAddressTransferResult$AddressTransfer' => '

An Elastic IP address transfer.

', ], ], 'AddressTransferList' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressTransfersResult$AddressTransfers' => '

The Elastic IP address transfer.

', ], ], 'AddressTransferStatus' => [ 'base' => NULL, 'refs' => [ 'AddressTransfer$AddressTransferStatus' => '

The Elastic IP address transfer status.

', ], ], 'AdvertiseByoipCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'AdvertiseByoipCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'Affinity' => [ 'base' => NULL, 'refs' => [ 'ModifyInstancePlacementRequest$Affinity' => '

The affinity setting for the instance.

', ], ], 'AllocateAddressRequest' => [ 'base' => NULL, 'refs' => [], ], 'AllocateAddressResult' => [ 'base' => NULL, 'refs' => [], ], 'AllocateHostsRequest' => [ 'base' => NULL, 'refs' => [], ], 'AllocateHostsResult' => [ 'base' => '

Contains the output of AllocateHosts.

', 'refs' => [], ], 'AllocateIpamPoolCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'AllocateIpamPoolCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'AllocationId' => [ 'base' => NULL, 'refs' => [ 'AddressAttribute$AllocationId' => '

[EC2-VPC] The allocation ID.

', 'AllocationIdList$member' => NULL, 'AllocationIds$member' => NULL, 'AssociateAddressRequest$AllocationId' => '

The allocation ID. This is required.

', 'CreateNatGatewayRequest$AllocationId' => '

[Public NAT gateways only] The allocation ID of an Elastic IP address to associate with the NAT gateway. You cannot specify an Elastic IP address with a private NAT gateway. If the Elastic IP address is associated with another resource, you must first disassociate it.

', 'DisableAddressTransferRequest$AllocationId' => '

The allocation ID of an Elastic IP address.

', 'EnableAddressTransferRequest$AllocationId' => '

The allocation ID of an Elastic IP address.

', 'ModifyAddressAttributeRequest$AllocationId' => '

[EC2-VPC] The allocation ID.

', 'ReleaseAddressRequest$AllocationId' => '

The allocation ID. This parameter is required.

', 'ResetAddressAttributeRequest$AllocationId' => '

[EC2-VPC] The allocation ID.

', ], ], 'AllocationIdList' => [ 'base' => NULL, 'refs' => [ 'AssociateNatGatewayAddressRequest$AllocationIds' => '

The allocation IDs of EIPs that you want to associate with your NAT gateway.

', 'CreateNatGatewayRequest$SecondaryAllocationIds' => '

Secondary EIP allocation IDs. For more information, see Create a NAT gateway in the Amazon VPC User Guide.

', 'DescribeAddressTransfersRequest$AllocationIds' => '

The allocation IDs of Elastic IP addresses.

', 'DescribeAddressesRequest$AllocationIds' => '

Information about the allocation IDs.

', ], ], 'AllocationIds' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressesAttributeRequest$AllocationIds' => '

[EC2-VPC] The allocation IDs.

', ], ], 'AllocationState' => [ 'base' => NULL, 'refs' => [ 'Host$State' => '

The Dedicated Host\'s state.

', ], ], 'AllocationStrategy' => [ 'base' => NULL, 'refs' => [ 'SpotFleetRequestConfigData$AllocationStrategy' => '

The strategy that determines how to allocate the target Spot Instance capacity across the Spot Instance pools specified by the Spot Fleet launch configuration. For more information, see Allocation strategies for Spot Instances in the Amazon EC2 User Guide.

priceCapacityOptimized (recommended)

Spot Fleet identifies the pools with the highest capacity availability for the number of instances that are launching. This means that we will request Spot Instances from the pools that we believe have the lowest chance of interruption in the near term. Spot Fleet then requests Spot Instances from the lowest priced of these pools.

capacityOptimized

Spot Fleet identifies the pools with the highest capacity availability for the number of instances that are launching. This means that we will request Spot Instances from the pools that we believe have the lowest chance of interruption in the near term. To give certain instance types a higher chance of launching first, use capacityOptimizedPrioritized. Set a priority for each instance type by using the Priority parameter for LaunchTemplateOverrides. You can assign the same priority to different LaunchTemplateOverrides. EC2 implements the priorities on a best-effort basis, but optimizes for capacity first. capacityOptimizedPrioritized is supported only if your Spot Fleet uses a launch template. Note that if the OnDemandAllocationStrategy is set to prioritized, the same priority is applied when fulfilling On-Demand capacity.

diversified

Spot Fleet requests instances from all of the Spot Instance pools that you specify.

lowestPrice

Spot Fleet requests instances from the lowest priced Spot Instance pool that has available capacity. If the lowest priced pool doesn\'t have available capacity, the Spot Instances come from the next lowest priced pool that has available capacity. If a pool runs out of capacity before fulfilling your desired capacity, Spot Fleet will continue to fulfill your request by drawing from the next lowest priced pool. To ensure that your desired capacity is met, you might receive Spot Instances from several pools. Because this strategy only considers instance price and not capacity availability, it might lead to high interruption rates.

Default: lowestPrice

', ], ], 'AllocationType' => [ 'base' => NULL, 'refs' => [ 'CapacityAllocation$AllocationType' => '

The usage type. used indicates that the instance capacity is in use by instances that are running in the Capacity Reservation.

', ], ], 'AllowedInstanceType' => [ 'base' => NULL, 'refs' => [ 'AllowedInstanceTypeSet$member' => NULL, ], ], 'AllowedInstanceTypeSet' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$AllowedInstanceTypes' => '

The instance types to apply your specified attributes against. All other instance types are ignored, even if they match your specified attributes.

You can use strings with one or more wild cards, represented by an asterisk (*), to allow an instance type, size, or generation. The following are examples: m5.8xlarge, c5*.*, m5a.*, r*, *3*.

For example, if you specify c5*,Amazon EC2 will allow the entire C5 instance family, which includes all C5a and C5n instance types. If you specify m5a.*, Amazon EC2 will allow all the M5a instance types, but not the M5n instance types.

If you specify AllowedInstanceTypes, you can\'t specify ExcludedInstanceTypes.

Default: All instance types

', 'InstanceRequirementsRequest$AllowedInstanceTypes' => '

The instance types to apply your specified attributes against. All other instance types are ignored, even if they match your specified attributes.

You can use strings with one or more wild cards, represented by an asterisk (*), to allow an instance type, size, or generation. The following are examples: m5.8xlarge, c5*.*, m5a.*, r*, *3*.

For example, if you specify c5*,Amazon EC2 will allow the entire C5 instance family, which includes all C5a and C5n instance types. If you specify m5a.*, Amazon EC2 will allow all the M5a instance types, but not the M5n instance types.

If you specify AllowedInstanceTypes, you can\'t specify ExcludedInstanceTypes.

Default: All instance types

', ], ], 'AllowedPrincipal' => [ 'base' => '

Describes a principal.

', 'refs' => [ 'AllowedPrincipalSet$member' => NULL, ], ], 'AllowedPrincipalSet' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcEndpointServicePermissionsResult$AllowedPrincipals' => '

Information about the allowed principals.

', ], ], 'AllowsMultipleInstanceTypes' => [ 'base' => NULL, 'refs' => [ 'Host$AllowsMultipleInstanceTypes' => '

Indicates whether the Dedicated Host supports multiple instance types of the same instance family. If the value is on, the Dedicated Host supports multiple instance types in the instance family. If the value is off, the Dedicated Host supports a single instance type only.

', ], ], 'AlternatePathHint' => [ 'base' => '

Describes an potential intermediate component of a feasible path.

', 'refs' => [ 'AlternatePathHintList$member' => NULL, ], ], 'AlternatePathHintList' => [ 'base' => NULL, 'refs' => [ 'NetworkInsightsAnalysis$AlternatePathHints' => '

Potential intermediate components.

', ], ], 'AmdSevSnpSpecification' => [ 'base' => NULL, 'refs' => [ 'CpuOptions$AmdSevSnp' => '

Indicates whether the instance is enabled for AMD SEV-SNP. For more information, see AMD SEV-SNP.

', 'CpuOptionsRequest$AmdSevSnp' => '

Indicates whether to enable the instance for AMD SEV-SNP. AMD SEV-SNP is supported with M6a, R6a, and C6a instance types only. For more information, see AMD SEV-SNP.

', 'LaunchTemplateCpuOptions$AmdSevSnp' => '

Indicates whether the instance is enabled for AMD SEV-SNP. For more information, see AMD SEV-SNP.

', 'LaunchTemplateCpuOptionsRequest$AmdSevSnp' => '

Indicates whether to enable the instance for AMD SEV-SNP. AMD SEV-SNP is supported with M6a, R6a, and C6a instance types only. For more information, see AMD SEV-SNP.

', ], ], 'AnalysisAclRule' => [ 'base' => '

Describes a network access control (ACL) rule.

', 'refs' => [ 'Explanation$AclRule' => '

The network ACL rule.

', 'PathComponent$AclRule' => '

The network ACL rule.

', ], ], 'AnalysisComponent' => [ 'base' => '

Describes a path component.

', 'refs' => [ 'AdditionalDetail$Component' => '

The path component.

', 'AdditionalDetail$VpcEndpointService' => '

The VPC endpoint service.

', 'AnalysisComponentList$member' => NULL, 'AnalysisLoadBalancerTarget$Instance' => '

Information about the instance.

', 'Explanation$Acl' => '

The network ACL.

', 'Explanation$AttachedTo' => '

The resource to which the component is attached.

', 'Explanation$Component' => '

The component.

', 'Explanation$CustomerGateway' => '

The customer gateway.

', 'Explanation$Destination' => '

The destination.

', 'Explanation$DestinationVpc' => '

The destination VPC.

', 'Explanation$IngressRouteTable' => '

The route table.

', 'Explanation$InternetGateway' => '

The internet gateway.

', 'Explanation$LoadBalancerTargetGroup' => '

The target group.

', 'Explanation$ElasticLoadBalancerListener' => '

The load balancer listener.

', 'Explanation$NatGateway' => '

The NAT gateway.

', 'Explanation$NetworkInterface' => '

The network interface.

', 'Explanation$VpcPeeringConnection' => '

The VPC peering connection.

', 'Explanation$PrefixList' => '

The prefix list.

', 'Explanation$RouteTable' => '

The route table.

', 'Explanation$SecurityGroup' => '

The security group.

', 'Explanation$SourceVpc' => '

The source VPC.

', 'Explanation$Subnet' => '

The subnet.

', 'Explanation$SubnetRouteTable' => '

The route table for the subnet.

', 'Explanation$Vpc' => '

The component VPC.

', 'Explanation$VpcEndpoint' => '

The VPC endpoint.

', 'Explanation$VpnConnection' => '

The VPN connection.

', 'Explanation$VpnGateway' => '

The VPN gateway.

', 'Explanation$TransitGateway' => '

The transit gateway.

', 'Explanation$TransitGatewayRouteTable' => '

The transit gateway route table.

', 'Explanation$TransitGatewayAttachment' => '

The transit gateway attachment.

', 'PathComponent$AttachedTo' => '

The resource to which the path component is attached.

', 'PathComponent$Component' => '

The component.

', 'PathComponent$DestinationVpc' => '

The destination VPC.

', 'PathComponent$SourceVpc' => '

The source VPC.

', 'PathComponent$Subnet' => '

The subnet.

', 'PathComponent$Vpc' => '

The component VPC.

', 'PathComponent$TransitGateway' => '

The transit gateway.

', 'PathComponent$ElasticLoadBalancerListener' => '

The load balancer listener.

', ], ], 'AnalysisComponentList' => [ 'base' => NULL, 'refs' => [ 'AdditionalDetail$LoadBalancers' => '

The load balancers.

', 'Explanation$LoadBalancerTargetGroups' => '

The target groups.

', 'Explanation$SecurityGroups' => '

The security groups.

', ], ], 'AnalysisLoadBalancerListener' => [ 'base' => '

Describes a load balancer listener.

', 'refs' => [ 'Explanation$ClassicLoadBalancerListener' => '

The listener for a Classic Load Balancer.

', ], ], 'AnalysisLoadBalancerTarget' => [ 'base' => '

Describes a load balancer target.

', 'refs' => [ 'Explanation$LoadBalancerTarget' => '

The target.

', ], ], 'AnalysisPacketHeader' => [ 'base' => '

Describes a header. Reflects any changes made by a component as traffic passes through. The fields of an inbound header are null except for the first component of a path.

', 'refs' => [ 'PathComponent$OutboundHeader' => '

The outbound header.

', 'PathComponent$InboundHeader' => '

The inbound header.

', ], ], 'AnalysisRouteTableRoute' => [ 'base' => '

Describes a route table route.

', 'refs' => [ 'Explanation$RouteTableRoute' => '

The route table route.

', 'PathComponent$RouteTableRoute' => '

The route table route.

', ], ], 'AnalysisSecurityGroupRule' => [ 'base' => '

Describes a security group rule.

', 'refs' => [ 'Explanation$SecurityGroupRule' => '

The security group rule.

', 'PathComponent$SecurityGroupRule' => '

The security group rule.

', ], ], 'AnalysisStatus' => [ 'base' => NULL, 'refs' => [ 'GetNetworkInsightsAccessScopeAnalysisFindingsResult$AnalysisStatus' => '

The status of Network Access Scope Analysis.

', 'NetworkInsightsAccessScopeAnalysis$Status' => '

The status.

', 'NetworkInsightsAnalysis$Status' => '

The status of the network insights analysis.

', ], ], 'ApplianceModeSupportValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayVpcAttachmentRequestOptions$ApplianceModeSupport' => '

Enable or disable support for appliance mode. If enabled, a traffic flow between a source and destination uses the same Availability Zone for the VPC attachment for the lifetime of that flow. The default is disable.

', 'ModifyTransitGatewayVpcAttachmentRequestOptions$ApplianceModeSupport' => '

Enable or disable support for appliance mode. If enabled, a traffic flow between a source and destination uses the same Availability Zone for the VPC attachment for the lifetime of that flow. The default is disable.

', 'TransitGatewayVpcAttachmentOptions$ApplianceModeSupport' => '

Indicates whether appliance mode support is enabled.

', ], ], 'ApplySecurityGroupsToClientVpnTargetNetworkRequest' => [ 'base' => NULL, 'refs' => [], ], 'ApplySecurityGroupsToClientVpnTargetNetworkResult' => [ 'base' => NULL, 'refs' => [], ], 'ArchitectureType' => [ 'base' => NULL, 'refs' => [ 'ArchitectureTypeList$member' => NULL, 'ArchitectureTypeSet$member' => NULL, ], ], 'ArchitectureTypeList' => [ 'base' => NULL, 'refs' => [ 'ProcessorInfo$SupportedArchitectures' => '

The architectures supported by the instance type.

', ], ], 'ArchitectureTypeSet' => [ 'base' => NULL, 'refs' => [ 'GetInstanceTypesFromInstanceRequirementsRequest$ArchitectureTypes' => '

The processor architecture type.

', 'InstanceRequirementsWithMetadataRequest$ArchitectureTypes' => '

The architecture type.

', ], ], 'ArchitectureValues' => [ 'base' => NULL, 'refs' => [ 'Image$Architecture' => '

The architecture of the image.

', 'ImportInstanceLaunchSpecification$Architecture' => '

The architecture of the instance.

', 'Instance$Architecture' => '

The architecture of the image.

', 'RegisterImageRequest$Architecture' => '

The architecture of the AMI.

Default: For Amazon EBS-backed AMIs, i386. For instance store-backed AMIs, the architecture specified in the manifest file.

', ], ], 'ArnList' => [ 'base' => NULL, 'refs' => [ 'NetworkInsightsAnalysis$FilterInArns' => '

The Amazon Resource Names (ARN) of the resources that the path must traverse.

', 'StartNetworkInsightsAnalysisRequest$FilterInArns' => '

The Amazon Resource Names (ARN) of the resources that the path must traverse.

', ], ], 'AsnAssociation' => [ 'base' => '

An Autonomous System Number (ASN) and BYOIP CIDR association.

', 'refs' => [ 'AsnAssociationSet$member' => NULL, 'AssociateIpamByoasnResult$AsnAssociation' => '

The ASN and BYOIP CIDR association.

', 'DisassociateIpamByoasnResult$AsnAssociation' => '

An ASN and BYOIP CIDR association.

', ], ], 'AsnAssociationSet' => [ 'base' => NULL, 'refs' => [ 'ByoipCidr$AsnAssociations' => '

The BYOIP CIDR associations with ASNs.

', ], ], 'AsnAssociationState' => [ 'base' => NULL, 'refs' => [ 'AsnAssociation$State' => '

The association\'s state.

', ], ], 'AsnAuthorizationContext' => [ 'base' => '

Provides authorization for Amazon to bring an Autonomous System Number (ASN) to a specific Amazon Web Services account using bring your own ASN (BYOASN). For details on the format of the message and signature, see Tutorial: Bring your ASN to IPAM in the Amazon VPC IPAM guide.

', 'refs' => [ 'ProvisionIpamByoasnRequest$AsnAuthorizationContext' => '

An ASN authorization context.

', ], ], 'AsnState' => [ 'base' => NULL, 'refs' => [ 'Byoasn$State' => '

The provisioning state of the BYOASN.

', ], ], 'AssetId' => [ 'base' => NULL, 'refs' => [ 'AssetIdList$member' => NULL, 'Host$AssetId' => '

The ID of the Outpost hardware asset on which the Dedicated Host is allocated.

', ], ], 'AssetIdList' => [ 'base' => NULL, 'refs' => [ 'AllocateHostsRequest$AssetIds' => '

The IDs of the Outpost hardware assets on which to allocate the Dedicated Hosts. Targeting specific hardware assets on an Outpost can help to minimize latency between your workloads. This parameter is supported only if you specify OutpostArn. If you are allocating the Dedicated Hosts in a Region, omit this parameter.

  • If you specify this parameter, you can omit Quantity. In this case, Amazon EC2 allocates a Dedicated Host on each specified hardware asset.

  • If you specify both AssetIds and Quantity, then the value for Quantity must be equal to the number of asset IDs specified.

', ], ], 'AssignIpv6AddressesRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssignIpv6AddressesResult' => [ 'base' => NULL, 'refs' => [], ], 'AssignPrivateIpAddressesRequest' => [ 'base' => '

Contains the parameters for AssignPrivateIpAddresses.

', 'refs' => [], ], 'AssignPrivateIpAddressesResult' => [ 'base' => NULL, 'refs' => [], ], 'AssignPrivateNatGatewayAddressRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssignPrivateNatGatewayAddressResult' => [ 'base' => NULL, 'refs' => [], ], 'AssignedPrivateIpAddress' => [ 'base' => '

Describes the private IP addresses assigned to a network interface.

', 'refs' => [ 'AssignedPrivateIpAddressList$member' => NULL, ], ], 'AssignedPrivateIpAddressList' => [ 'base' => NULL, 'refs' => [ 'AssignPrivateIpAddressesResult$AssignedPrivateIpAddresses' => '

The private IP addresses assigned to the network interface.

', ], ], 'AssociateAddressRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateAddressResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateClientVpnTargetNetworkRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateClientVpnTargetNetworkResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateDhcpOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateEnclaveCertificateIamRoleRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateEnclaveCertificateIamRoleResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateIamInstanceProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateIamInstanceProfileResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateInstanceEventWindowRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateInstanceEventWindowResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateIpamByoasnRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateIpamByoasnResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateIpamResourceDiscoveryRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateIpamResourceDiscoveryResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateNatGatewayAddressRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateNatGatewayAddressResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateRouteTableResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateSubnetCidrBlockRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateSubnetCidrBlockResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTransitGatewayMulticastDomainRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTransitGatewayMulticastDomainResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTransitGatewayPolicyTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTransitGatewayPolicyTableResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTransitGatewayRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTransitGatewayRouteTableResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTrunkInterfaceRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTrunkInterfaceResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociateVpcCidrBlockRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateVpcCidrBlockResult' => [ 'base' => NULL, 'refs' => [], ], 'AssociatedNetworkType' => [ 'base' => NULL, 'refs' => [ 'AssociatedTargetNetwork$NetworkType' => '

The target network type.

', ], ], 'AssociatedRole' => [ 'base' => '

Information about the associated IAM roles.

', 'refs' => [ 'AssociatedRolesList$member' => NULL, ], ], 'AssociatedRolesList' => [ 'base' => NULL, 'refs' => [ 'GetAssociatedEnclaveCertificateIamRolesResult$AssociatedRoles' => '

Information about the associated IAM roles.

', ], ], 'AssociatedTargetNetwork' => [ 'base' => '

Describes a target network that is associated with a Client VPN endpoint. A target network is a subnet in a VPC.

', 'refs' => [ 'AssociatedTargetNetworkSet$member' => NULL, ], ], 'AssociatedTargetNetworkSet' => [ 'base' => NULL, 'refs' => [ 'ClientVpnEndpoint$AssociatedTargetNetworks' => '

Information about the associated target networks. A target network is a subnet in a VPC.

', ], ], 'AssociationIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeIamInstanceProfileAssociationsRequest$AssociationIds' => '

The IAM instance profile associations.

', ], ], 'AssociationStatus' => [ 'base' => '

Describes the state of a target network association.

', 'refs' => [ 'AssociateClientVpnTargetNetworkResult$Status' => '

The current state of the target network association.

', 'DisassociateClientVpnTargetNetworkResult$Status' => '

The current state of the target network association.

', 'TargetNetwork$Status' => '

The current state of the target network association.

', ], ], 'AssociationStatusCode' => [ 'base' => NULL, 'refs' => [ 'AssociationStatus$Code' => '

The state of the target network association.

', ], ], 'AthenaIntegration' => [ 'base' => '

Describes integration options for Amazon Athena.

', 'refs' => [ 'AthenaIntegrationsSet$member' => NULL, ], ], 'AthenaIntegrationsSet' => [ 'base' => NULL, 'refs' => [ 'IntegrateServices$AthenaIntegrations' => '

Information about the integration with Amazon Athena.

', ], ], 'AttachClassicLinkVpcRequest' => [ 'base' => NULL, 'refs' => [], ], 'AttachClassicLinkVpcResult' => [ 'base' => NULL, 'refs' => [], ], 'AttachInternetGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'AttachNetworkInterfaceRequest' => [ 'base' => '

Contains the parameters for AttachNetworkInterface.

', 'refs' => [], ], 'AttachNetworkInterfaceResult' => [ 'base' => '

Contains the output of AttachNetworkInterface.

', 'refs' => [], ], 'AttachVerifiedAccessTrustProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'AttachVerifiedAccessTrustProviderResult' => [ 'base' => NULL, 'refs' => [], ], 'AttachVolumeRequest' => [ 'base' => NULL, 'refs' => [], ], 'AttachVpnGatewayRequest' => [ 'base' => '

Contains the parameters for AttachVpnGateway.

', 'refs' => [], ], 'AttachVpnGatewayResult' => [ 'base' => '

Contains the output of AttachVpnGateway.

', 'refs' => [], ], 'AttachmentEnaSrdSpecification' => [ 'base' => '

ENA Express uses Amazon Web Services Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled.

To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it.

', 'refs' => [ 'NetworkInterfaceAttachment$EnaSrdSpecification' => '

Configures ENA Express for the network interface that this action attaches to the instance.

', ], ], 'AttachmentEnaSrdUdpSpecification' => [ 'base' => '

ENA Express is compatible with both TCP and UDP transport protocols. When it\'s enabled, TCP traffic automatically uses it. However, some UDP-based applications are designed to handle network packets that are out of order, without a need for retransmission, such as live video broadcasting or other near-real-time applications. For UDP traffic, you can specify whether to use ENA Express, based on your application environment needs.

', 'refs' => [ 'AttachmentEnaSrdSpecification$EnaSrdUdpSpecification' => '

Configures ENA Express for UDP network traffic.

', ], ], 'AttachmentStatus' => [ 'base' => NULL, 'refs' => [ 'EbsInstanceBlockDevice$Status' => '

The attachment state.

', 'InstanceNetworkInterfaceAttachment$Status' => '

The attachment state.

', 'InternetGatewayAttachment$State' => '

The current state of the attachment. For an internet gateway, the state is available when attached to a VPC; otherwise, this value is not returned.

', 'NetworkInterfaceAttachment$Status' => '

The attachment state.

', 'VpcAttachment$State' => '

The current state of the attachment.

', ], ], 'AttributeBooleanValue' => [ 'base' => '

Describes a value for a resource attribute that is a Boolean value.

', 'refs' => [ 'DescribeNetworkInterfaceAttributeResult$SourceDestCheck' => '

Indicates whether source/destination checking is enabled.

', 'DescribeVolumeAttributeResult$AutoEnableIO' => '

The state of autoEnableIO attribute.

', 'DescribeVpcAttributeResult$EnableDnsHostnames' => '

Indicates whether the instances launched in the VPC get DNS hostnames. If this attribute is true, instances in the VPC get DNS hostnames; otherwise, they do not.

', 'DescribeVpcAttributeResult$EnableDnsSupport' => '

Indicates whether DNS resolution is enabled for the VPC. If this attribute is true, the Amazon DNS server resolves DNS hostnames for your instances to their corresponding IP addresses; otherwise, it does not.

', 'DescribeVpcAttributeResult$EnableNetworkAddressUsageMetrics' => '

Indicates whether Network Address Usage metrics are enabled for your VPC.

', 'InstanceAttribute$DisableApiTermination' => '

If the value is true, you can\'t terminate the instance through the Amazon EC2 console, CLI, or API; otherwise, you can.

', 'InstanceAttribute$EnaSupport' => '

Indicates whether enhanced networking with ENA is enabled.

', 'InstanceAttribute$EbsOptimized' => '

Indicates whether the instance is optimized for Amazon EBS I/O.

', 'InstanceAttribute$SourceDestCheck' => '

Enable or disable source/destination checks, which ensure that the instance is either the source or the destination of any traffic that it receives. If the value is true, source/destination checks are enabled; otherwise, they are disabled. The default value is true. You must disable source/destination checks if the instance runs services such as network address translation, routing, or firewalls.

', 'InstanceAttribute$DisableApiStop' => '

To enable the instance for Amazon Web Services Stop Protection, set this parameter to true; otherwise, set it to false.

', 'ModifyInstanceAttributeRequest$SourceDestCheck' => '

Enable or disable source/destination checks, which ensure that the instance is either the source or the destination of any traffic that it receives. If the value is true, source/destination checks are enabled; otherwise, they are disabled. The default value is true. You must disable source/destination checks if the instance runs services such as network address translation, routing, or firewalls.

', 'ModifyInstanceAttributeRequest$DisableApiTermination' => '

If the value is true, you can\'t terminate the instance using the Amazon EC2 console, CLI, or API; otherwise, you can. You cannot use this parameter for Spot Instances.

', 'ModifyInstanceAttributeRequest$EbsOptimized' => '

Specifies whether the instance is optimized for Amazon EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal EBS I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS Optimized instance.

', 'ModifyInstanceAttributeRequest$EnaSupport' => '

Set to true to enable enhanced networking with ENA for the instance.

This option is supported only for HVM instances. Specifying this option with a PV instance can make it unreachable.

', 'ModifyInstanceAttributeRequest$DisableApiStop' => '

Indicates whether an instance is enabled for stop protection. For more information, see Stop Protection.

', 'ModifyNetworkInterfaceAttributeRequest$SourceDestCheck' => '

Enable or disable source/destination checks, which ensure that the instance is either the source or the destination of any traffic that it receives. If the value is true, source/destination checks are enabled; otherwise, they are disabled. The default value is true. You must disable source/destination checks if the instance runs services such as network address translation, routing, or firewalls.

', 'ModifySubnetAttributeRequest$AssignIpv6AddressOnCreation' => '

Specify true to indicate that network interfaces created in the specified subnet should be assigned an IPv6 address. This includes a network interface that\'s created when launching an instance into the subnet (the instance therefore receives an IPv6 address).

If you enable the IPv6 addressing feature for your subnet, your network interface or instance only receives an IPv6 address if it\'s created using version 2016-11-15 or later of the Amazon EC2 API.

', 'ModifySubnetAttributeRequest$MapPublicIpOnLaunch' => '

Specify true to indicate that network interfaces attached to instances created in the specified subnet should be assigned a public IPv4 address.

Starting on February 1, 2024, Amazon Web Services will charge for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the Public IPv4 Address tab on the Amazon VPC pricing page.

', 'ModifySubnetAttributeRequest$MapCustomerOwnedIpOnLaunch' => '

Specify true to indicate that network interfaces attached to instances created in the specified subnet should be assigned a customer-owned IPv4 address.

When this value is true, you must specify the customer-owned IP pool using CustomerOwnedIpv4Pool.

', 'ModifySubnetAttributeRequest$EnableDns64' => '

Indicates whether DNS queries made to the Amazon-provided DNS Resolver in this subnet should return synthetic IPv6 addresses for IPv4-only destinations.

', 'ModifySubnetAttributeRequest$EnableResourceNameDnsARecordOnLaunch' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS A records.

', 'ModifySubnetAttributeRequest$EnableResourceNameDnsAAAARecordOnLaunch' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.

', 'ModifySubnetAttributeRequest$DisableLniAtDeviceIndex' => '

Specify true to indicate that local network interfaces at the current position should be disabled.

', 'ModifyVolumeAttributeRequest$AutoEnableIO' => '

Indicates whether the volume should be auto-enabled for I/O operations.

', 'ModifyVpcAttributeRequest$EnableDnsHostnames' => '

Indicates whether the instances launched in the VPC get DNS hostnames. If enabled, instances in the VPC get DNS hostnames; otherwise, they do not.

You cannot modify the DNS resolution and DNS hostnames attributes in the same request. Use separate requests for each attribute. You can only enable DNS hostnames if you\'ve enabled DNS support.

', 'ModifyVpcAttributeRequest$EnableDnsSupport' => '

Indicates whether the DNS resolution is supported for the VPC. If enabled, queries to the Amazon provided DNS server at the 169.254.169.253 IP address, or the reserved IP address at the base of the VPC network range "plus two" succeed. If disabled, the Amazon provided DNS service in the VPC that resolves public DNS hostnames to IP addresses is not enabled.

You cannot modify the DNS resolution and DNS hostnames attributes in the same request. Use separate requests for each attribute.

', 'ModifyVpcAttributeRequest$EnableNetworkAddressUsageMetrics' => '

Indicates whether Network Address Usage metrics are enabled for your VPC.

', ], ], 'AttributeValue' => [ 'base' => '

Describes a value for a resource attribute that is a String.

', 'refs' => [ 'DescribeNetworkInterfaceAttributeResult$Description' => '

The description of the network interface.

', 'DhcpConfigurationValueList$member' => NULL, 'ImageAttribute$Description' => '

A description for the AMI.

', 'ImageAttribute$KernelId' => '

The kernel ID.

', 'ImageAttribute$RamdiskId' => '

The RAM disk ID.

', 'ImageAttribute$SriovNetSupport' => '

Indicates whether enhanced networking with the Intel 82599 Virtual Function interface is enabled.

', 'ImageAttribute$BootMode' => '

The boot mode.

', 'ImageAttribute$TpmSupport' => '

If the image is configured for NitroTPM support, the value is v2.0.

', 'ImageAttribute$UefiData' => '

Base64 representation of the non-volatile UEFI variable store. To retrieve the UEFI data, use the GetInstanceUefiData command. You can inspect and modify the UEFI data by using the python-uefivars tool on GitHub. For more information, see UEFI Secure Boot in the Amazon EC2 User Guide.

', 'ImageAttribute$LastLaunchedTime' => '

The date and time, in ISO 8601 date-time format, when the AMI was last used to launch an EC2 instance. When the AMI is used to launch an instance, there is a 24-hour delay before that usage is reported.

lastLaunchedTime data is available starting April 2017.

', 'ImageAttribute$ImdsSupport' => '

If v2.0, it indicates that IMDSv2 is specified in the AMI. Instances launched from this AMI will have HttpTokens automatically set to required so that, by default, the instance requires that IMDSv2 is used when requesting instance metadata. In addition, HttpPutResponseHopLimit is set to 2. For more information, see Configure the AMI in the Amazon EC2 User Guide.

', 'InstanceAttribute$InstanceInitiatedShutdownBehavior' => '

Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the operating system command for system shutdown).

', 'InstanceAttribute$InstanceType' => '

The instance type.

', 'InstanceAttribute$KernelId' => '

The kernel ID.

', 'InstanceAttribute$RamdiskId' => '

The RAM disk ID.

', 'InstanceAttribute$RootDeviceName' => '

The device name of the root device volume (for example, /dev/sda1).

', 'InstanceAttribute$SriovNetSupport' => '

Indicates whether enhanced networking with the Intel 82599 Virtual Function interface is enabled.

', 'InstanceAttribute$UserData' => '

The user data.

', 'ModifyImageAttributeRequest$Description' => '

A new description for the AMI.

', 'ModifyImageAttributeRequest$ImdsSupport' => '

Set to v2.0 to indicate that IMDSv2 is specified in the AMI. Instances launched from this AMI will have HttpTokens automatically set to required so that, by default, the instance requires that IMDSv2 is used when requesting instance metadata. In addition, HttpPutResponseHopLimit is set to 2. For more information, see Configure the AMI in the Amazon EC2 User Guide.

Do not use this parameter unless your AMI software supports IMDSv2. After you set the value to v2.0, you can\'t undo it. The only way to “reset” your AMI is to create a new AMI from the underlying snapshot.

', 'ModifyInstanceAttributeRequest$InstanceInitiatedShutdownBehavior' => '

Specifies whether an instance stops or terminates when you initiate shutdown from the instance (using the operating system command for system shutdown).

', 'ModifyInstanceAttributeRequest$InstanceType' => '

Changes the instance type to the specified value. For more information, see Instance types in the Amazon EC2 User Guide. If the instance type is not valid, the error returned is InvalidInstanceAttributeValue.

', 'ModifyInstanceAttributeRequest$Kernel' => '

Changes the instance\'s kernel to the specified value. We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see PV-GRUB.

', 'ModifyInstanceAttributeRequest$Ramdisk' => '

Changes the instance\'s RAM disk to the specified value. We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see PV-GRUB.

', 'ModifyInstanceAttributeRequest$SriovNetSupport' => '

Set to simple to enable enhanced networking with the Intel 82599 Virtual Function interface for the instance.

There is no way to disable enhanced networking with the Intel 82599 Virtual Function interface at this time.

This option is supported only for HVM instances. Specifying this option with a PV instance can make it unreachable.

', 'ModifyNetworkInterfaceAttributeRequest$Description' => '

A description for the network interface.

', ], ], 'AuthorizationRule' => [ 'base' => '

Information about an authorization rule.

', 'refs' => [ 'AuthorizationRuleSet$member' => NULL, ], ], 'AuthorizationRuleSet' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnAuthorizationRulesResult$AuthorizationRules' => '

Information about the authorization rules.

', ], ], 'AuthorizeClientVpnIngressRequest' => [ 'base' => NULL, 'refs' => [], ], 'AuthorizeClientVpnIngressResult' => [ 'base' => NULL, 'refs' => [], ], 'AuthorizeSecurityGroupEgressRequest' => [ 'base' => NULL, 'refs' => [], ], 'AuthorizeSecurityGroupEgressResult' => [ 'base' => NULL, 'refs' => [], ], 'AuthorizeSecurityGroupIngressRequest' => [ 'base' => NULL, 'refs' => [], ], 'AuthorizeSecurityGroupIngressResult' => [ 'base' => NULL, 'refs' => [], ], 'AutoAcceptSharedAssociationsValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayMulticastDomainRequestOptions$AutoAcceptSharedAssociations' => '

Indicates whether to automatically accept cross-account subnet associations that are associated with the transit gateway multicast domain.

', 'TransitGatewayMulticastDomainOptions$AutoAcceptSharedAssociations' => '

Indicates whether to automatically cross-account subnet associations that are associated with the transit gateway multicast domain.

', ], ], 'AutoAcceptSharedAttachmentsValue' => [ 'base' => NULL, 'refs' => [ 'ModifyTransitGatewayOptions$AutoAcceptSharedAttachments' => '

Enable or disable automatic acceptance of attachment requests.

', 'TransitGatewayOptions$AutoAcceptSharedAttachments' => '

Indicates whether attachment requests are automatically accepted.

', 'TransitGatewayRequestOptions$AutoAcceptSharedAttachments' => '

Enable or disable automatic acceptance of attachment requests. Disabled by default.

', ], ], 'AutoPlacement' => [ 'base' => NULL, 'refs' => [ 'AllocateHostsRequest$AutoPlacement' => '

Indicates whether the host accepts any untargeted instance launches that match its instance type configuration, or if it only accepts Host tenancy instance launches that specify its unique host ID. For more information, see Understanding auto-placement and affinity in the Amazon EC2 User Guide.

Default: on

', 'Host$AutoPlacement' => '

Whether auto-placement is on or off.

', 'ModifyHostsRequest$AutoPlacement' => '

Specify whether to enable or disable auto-placement.

', ], ], 'AutoRecoveryFlag' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$AutoRecoverySupported' => '

Indicates whether Amazon CloudWatch action based recovery is supported.

', ], ], 'AvailabilityZone' => [ 'base' => '

Describes Availability Zones, Local Zones, and Wavelength Zones.

', 'refs' => [ 'AvailabilityZoneList$member' => NULL, ], ], 'AvailabilityZoneId' => [ 'base' => NULL, 'refs' => [ 'CreateCapacityReservationRequest$AvailabilityZoneId' => '

The ID of the Availability Zone in which to create the Capacity Reservation.

', ], ], 'AvailabilityZoneList' => [ 'base' => NULL, 'refs' => [ 'DescribeAvailabilityZonesResult$AvailabilityZones' => '

Information about the Availability Zones, Local Zones, and Wavelength Zones.

', ], ], 'AvailabilityZoneMessage' => [ 'base' => '

Describes a message about an Availability Zone, Local Zone, or Wavelength Zone.

', 'refs' => [ 'AvailabilityZoneMessageList$member' => NULL, ], ], 'AvailabilityZoneMessageList' => [ 'base' => NULL, 'refs' => [ 'AvailabilityZone$Messages' => '

Any messages about the Availability Zone, Local Zone, or Wavelength Zone.

', ], ], 'AvailabilityZoneName' => [ 'base' => NULL, 'refs' => [ 'CreateCapacityReservationRequest$AvailabilityZone' => '

The Availability Zone in which to create the Capacity Reservation.

', 'CreateDefaultSubnetRequest$AvailabilityZone' => '

The Availability Zone in which to create the default subnet.

', 'CreateVolumeRequest$AvailabilityZone' => '

The ID of the Availability Zone in which to create the volume. For example, us-east-1a.

', ], ], 'AvailabilityZoneOptInStatus' => [ 'base' => NULL, 'refs' => [ 'AvailabilityZone$OptInStatus' => '

For Availability Zones, this parameter always has the value of opt-in-not-required.

For Local Zones and Wavelength Zones, this parameter is the opt-in status. The possible values are opted-in, and not-opted-in.

', ], ], 'AvailabilityZoneState' => [ 'base' => NULL, 'refs' => [ 'AvailabilityZone$State' => '

The state of the Availability Zone, Local Zone, or Wavelength Zone. This value is always available.

', ], ], 'AvailabilityZoneStringList' => [ 'base' => NULL, 'refs' => [ 'DisableFastSnapshotRestoresRequest$AvailabilityZones' => '

One or more Availability Zones. For example, us-east-2a.

', 'EnableFastSnapshotRestoresRequest$AvailabilityZones' => '

One or more Availability Zones. For example, us-east-2a.

', ], ], 'AvailableCapacity' => [ 'base' => '

The capacity information for instances that can be launched onto the Dedicated Host.

', 'refs' => [ 'Host$AvailableCapacity' => '

Information about the instances running on the Dedicated Host.

', ], ], 'AvailableInstanceCapacityList' => [ 'base' => NULL, 'refs' => [ 'AvailableCapacity$AvailableInstanceCapacity' => '

The number of instances that can be launched onto the Dedicated Host depending on the host\'s available capacity. For Dedicated Hosts that support multiple instance types, this parameter represents the number of instances for each instance size that is supported on the host.

', ], ], 'BareMetal' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$BareMetal' => '

Indicates whether bare metal instance types must be included, excluded, or required.

  • To include bare metal instance types, specify included.

  • To require only bare metal instance types, specify required.

  • To exclude bare metal instance types, specify excluded.

Default: excluded

', 'InstanceRequirementsRequest$BareMetal' => '

Indicates whether bare metal instance types must be included, excluded, or required.

  • To include bare metal instance types, specify included.

  • To require only bare metal instance types, specify required.

  • To exclude bare metal instance types, specify excluded.

Default: excluded

', ], ], 'BareMetalFlag' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$BareMetal' => '

Indicates whether the instance is a bare metal instance type.

', ], ], 'BaselineBandwidthInGbps' => [ 'base' => NULL, 'refs' => [ 'NetworkCardInfo$BaselineBandwidthInGbps' => '

The baseline network performance of the network card, in Gbps.

', ], ], 'BaselineBandwidthInMbps' => [ 'base' => NULL, 'refs' => [ 'EbsOptimizedInfo$BaselineBandwidthInMbps' => '

The baseline bandwidth performance for an EBS-optimized instance type, in Mbps.

', ], ], 'BaselineEbsBandwidthMbps' => [ 'base' => '

The minimum and maximum baseline bandwidth to Amazon EBS, in Mbps. For more information, see Amazon EBS–optimized instances in the Amazon EC2 User Guide.

', 'refs' => [ 'InstanceRequirements$BaselineEbsBandwidthMbps' => '

The minimum and maximum baseline bandwidth to Amazon EBS, in Mbps. For more information, see Amazon EBS–optimized instances in the Amazon EC2 User Guide.

Default: No minimum or maximum limits

', ], ], 'BaselineEbsBandwidthMbpsRequest' => [ 'base' => '

The minimum and maximum baseline bandwidth to Amazon EBS, in Mbps. For more information, see Amazon EBS–optimized instances in the Amazon EC2 User Guide.

', 'refs' => [ 'InstanceRequirementsRequest$BaselineEbsBandwidthMbps' => '

The minimum and maximum baseline bandwidth to Amazon EBS, in Mbps. For more information, see Amazon EBS–optimized instances in the Amazon EC2 User Guide.

Default: No minimum or maximum limits

', ], ], 'BaselineIops' => [ 'base' => NULL, 'refs' => [ 'EbsOptimizedInfo$BaselineIops' => '

The baseline input/output storage operations per seconds for an EBS-optimized instance type.

', ], ], 'BaselineThroughputInMBps' => [ 'base' => NULL, 'refs' => [ 'EbsOptimizedInfo$BaselineThroughputInMBps' => '

The baseline throughput performance for an EBS-optimized instance type, in MB/s.

', ], ], 'BatchState' => [ 'base' => NULL, 'refs' => [ 'CancelSpotFleetRequestsSuccessItem$CurrentSpotFleetRequestState' => '

The current state of the Spot Fleet request.

', 'CancelSpotFleetRequestsSuccessItem$PreviousSpotFleetRequestState' => '

The previous state of the Spot Fleet request.

', 'SpotFleetRequestConfig$SpotFleetRequestState' => '

The state of the Spot Fleet request.

', ], ], 'BgpStatus' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayAttachmentBgpConfiguration$BgpStatus' => '

The BGP status.

', ], ], 'BillingProductList' => [ 'base' => NULL, 'refs' => [ 'RegisterImageRequest$BillingProducts' => '

The billing product codes. Your account must be authorized to specify billing product codes.

If your account is not authorized to specify billing product codes, you can publish AMIs that include billable software and list them on the Amazon Web Services Marketplace. You must first register as a seller on the Amazon Web Services Marketplace. For more information, see Getting started as a seller and AMI-based products in the Amazon Web Services Marketplace Seller Guide.

', ], ], 'Blob' => [ 'base' => NULL, 'refs' => [ 'BlobAttributeValue$Value' => NULL, 'ImportKeyPairRequest$PublicKeyMaterial' => '

The public key. For API calls, the text must be base64-encoded. For command line tools, base64 encoding is performed for you.

', 'S3Storage$UploadPolicy' => '

An Amazon S3 upload policy that gives Amazon EC2 permission to upload items into Amazon S3 on your behalf.

', ], ], 'BlobAttributeValue' => [ 'base' => NULL, 'refs' => [ 'ModifyInstanceAttributeRequest$UserData' => '

Changes the instance\'s user data to the specified value. If you are using an Amazon Web Services SDK or command line tool, base64-encoding is performed for you, and you can load the text from a file. Otherwise, you must provide base64-encoded text.

', ], ], 'BlockDeviceMapping' => [ 'base' => '

Describes a block device mapping, which defines the EBS volumes and instance store volumes to attach to an instance at launch.

', 'refs' => [ 'BlockDeviceMappingList$member' => NULL, 'BlockDeviceMappingRequestList$member' => NULL, ], ], 'BlockDeviceMappingList' => [ 'base' => NULL, 'refs' => [ 'Image$BlockDeviceMappings' => '

Any block device mapping entries.

', 'ImageAttribute$BlockDeviceMappings' => '

The block device mapping entries.

', 'LaunchSpecification$BlockDeviceMappings' => '

The block device mapping entries.

', 'RequestSpotLaunchSpecification$BlockDeviceMappings' => '

The block device mapping entries. You can\'t specify both a snapshot ID and an encryption value. This is because only blank volumes can be encrypted on creation. If a snapshot is the basis for a volume, it is not blank and its encryption status is used for the volume encryption status.

', 'SpotFleetLaunchSpecification$BlockDeviceMappings' => '

One or more block devices that are mapped to the Spot Instances. You can\'t specify both a snapshot ID and an encryption value. This is because only blank volumes can be encrypted on creation. If a snapshot is the basis for a volume, it is not blank and its encryption status is used for the volume encryption status.

', ], ], 'BlockDeviceMappingRequestList' => [ 'base' => NULL, 'refs' => [ 'CreateImageRequest$BlockDeviceMappings' => '

The block device mappings.

When using the CreateImage action:

  • You can\'t change the volume size using the VolumeSize parameter. If you want a different volume size, you must first change the volume size of the source instance.

  • You can\'t modify the encryption status of existing volumes or snapshots. To create an AMI with volumes or snapshots that have a different encryption status (for example, where the source volume and snapshots are unencrypted, and you want to create an AMI with encrypted volumes or snapshots), use the CopyImage action.

  • The only option that can be changed for existing mappings or snapshots is DeleteOnTermination.

', 'RegisterImageRequest$BlockDeviceMappings' => '

The block device mapping entries.

If you specify an Amazon EBS volume using the ID of an Amazon EBS snapshot, you can\'t specify the encryption state of the volume.

If you create an AMI on an Outpost, then all backing snapshots must be on the same Outpost or in the Region of that Outpost. AMIs on an Outpost that include local snapshots can be used to launch instances on the same Outpost only. For more information, Amazon EBS local snapshots on Outposts in the Amazon EC2 User Guide.

', 'RunInstancesRequest$BlockDeviceMappings' => '

The block device mapping, which defines the EBS volumes and instance store volumes to attach to the instance at launch. For more information, see Block device mappings in the Amazon EC2 User Guide.

', ], ], 'Boolean' => [ 'base' => NULL, 'refs' => [ 'AcceptAddressTransferRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AcceptReservedInstancesExchangeQuoteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AcceptTransitGatewayMulticastDomainAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AcceptTransitGatewayPeeringAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AcceptTransitGatewayVpcAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AcceptVpcEndpointConnectionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AcceptVpcPeeringConnectionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AdvertiseByoipCidrRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AllocateAddressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AllocateIpamPoolCidrRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AllocateIpamPoolCidrRequest$PreviewNextCidr' => '

A preview of the next available CIDR in a pool.

', 'AnalysisAclRule$Egress' => '

Indicates whether the rule is an outbound rule.

', 'ApplySecurityGroupsToClientVpnTargetNetworkRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssignPrivateIpAddressesRequest$AllowReassignment' => '

Indicates whether to allow an IP address that is already assigned to another network interface or instance to be reassigned to the specified network interface.

', 'AssignPrivateNatGatewayAddressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateAddressRequest$AllowReassociation' => '

Reassociation is automatic, but you can specify false to ensure the operation fails if the Elastic IP address is already associated with another resource.

', 'AssociateAddressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateClientVpnTargetNetworkRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateDhcpOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateEnclaveCertificateIamRoleRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateInstanceEventWindowRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateIpamByoasnRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateIpamResourceDiscoveryRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateNatGatewayAddressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateTransitGatewayMulticastDomainRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateTransitGatewayPolicyTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateTransitGatewayRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateTrunkInterfaceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AssociateVpcCidrBlockRequest$AmazonProvidedIpv6CidrBlock' => '

Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length for the VPC. You cannot specify the range of IPv6 addresses or the size of the CIDR block.

', 'AttachClassicLinkVpcRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AttachClassicLinkVpcResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'AttachInternetGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AttachNetworkInterfaceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AttachVerifiedAccessTrustProviderRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AttachVolumeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AttachVpnGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AttachmentEnaSrdSpecification$EnaSrdEnabled' => '

Indicates whether ENA Express is enabled for the network interface.

', 'AttachmentEnaSrdUdpSpecification$EnaSrdUdpEnabled' => '

Indicates whether UDP traffic to and from the instance uses ENA Express. To specify this setting, you must first enable ENA Express.

', 'AttributeBooleanValue$Value' => '

The attribute value. The valid values are true or false.

', 'AuthorizationRule$AccessAll' => '

Indicates whether the authorization rule grants access to all clients.

', 'AuthorizeClientVpnIngressRequest$AuthorizeAllGroups' => '

Indicates whether to grant access to all clients. Specify true to grant all clients who successfully establish a VPN connection access to the network. Must be set to true if AccessGroupId is not specified.

', 'AuthorizeClientVpnIngressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AuthorizeSecurityGroupEgressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AuthorizeSecurityGroupEgressResult$Return' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'AuthorizeSecurityGroupIngressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'AuthorizeSecurityGroupIngressResult$Return' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'BundleInstanceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CancelBundleTaskRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CancelCapacityReservationFleetsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CancelCapacityReservationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CancelCapacityReservationResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'CancelConversionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CancelImageLaunchPermissionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CancelImageLaunchPermissionResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'CancelImportTaskRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CancelSpotFleetRequestsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CancelSpotFleetRequestsRequest$TerminateInstances' => '

Indicates whether to terminate the associated instances when the Spot Fleet request is canceled. The default is to terminate the instances.

To let the instances continue to run after the Spot Fleet request is canceled, specify no-terminate-instances.

', 'CancelSpotInstanceRequestsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CapacityReservation$EbsOptimized' => '

Indicates whether the Capacity Reservation supports EBS-optimized instances. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS- optimized instance.

', 'CapacityReservation$EphemeralStorage' => '

Deprecated.

', 'ClassicLinkDnsSupport$ClassicLinkDnsSupported' => '

Indicates whether ClassicLink DNS support is enabled for the VPC.

', 'ClientConnectOptions$Enabled' => '

Indicates whether client connect options are enabled. The default is false (not enabled).

', 'ClientConnectResponseOptions$Enabled' => '

Indicates whether client connect options are enabled.

', 'ClientLoginBannerOptions$Enabled' => '

Enable or disable a customizable text banner that will be displayed on Amazon Web Services provided clients when a VPN session is established.

Valid values: true | false

Default value: false

', 'ClientLoginBannerResponseOptions$Enabled' => '

Current state of text banner feature.

Valid values: true | false

', 'ClientVpnEndpoint$SplitTunnel' => '

Indicates whether split-tunnel is enabled in the Client VPN endpoint.

For information about split-tunnel VPN endpoints, see Split-Tunnel Client VPN endpoint in the Client VPN Administrator Guide.

', 'CloudWatchLogOptions$LogEnabled' => '

Status of VPN tunnel logging feature. Default value is False.

Valid values: True | False

', 'CloudWatchLogOptionsSpecification$LogEnabled' => '

Enable or disable VPN tunnel logging feature. Default value is False.

Valid values: True | False

', 'ConfirmProductInstanceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ConfirmProductInstanceResult$Return' => '

The return value of the request. Returns true if the specified product code is owned by the requester and associated with the specified instance.

', 'ConnectionLogOptions$Enabled' => '

Indicates whether connection logging is enabled.

', 'ConnectionLogResponseOptions$Enabled' => '

Indicates whether client connection logging is enabled for the Client VPN endpoint.

', 'CopyFpgaImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CopyImageRequest$Encrypted' => '

Specifies whether the destination snapshots of the copied image should be encrypted. You can encrypt a copy of an unencrypted snapshot, but you cannot create an unencrypted copy of an encrypted snapshot. The default KMS key for Amazon EBS is used unless you specify a non-default Key Management Service (KMS) KMS key using KmsKeyId. For more information, see Amazon EBS encryption in the Amazon EC2 User Guide.

', 'CopyImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CopyImageRequest$CopyImageTags' => '

Indicates whether to include your user-defined AMI tags when copying the AMI.

The following tags will not be copied:

  • System tags (prefixed with aws:)

  • For public and shared AMIs, user-defined tags that are attached by other Amazon Web Services accounts

Default: Your user-defined AMI tags are not copied.

', 'CopySnapshotRequest$Encrypted' => '

To encrypt a copy of an unencrypted snapshot if encryption by default is not enabled, enable encryption using this parameter. Otherwise, omit this parameter. Encrypted snapshots are encrypted, even if you omit this parameter and encryption by default is not enabled. You cannot set this parameter to false. For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

', 'CopySnapshotRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateCapacityReservationFleetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateCapacityReservationRequest$EbsOptimized' => '

Indicates whether the Capacity Reservation supports EBS-optimized instances. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS- optimized instance.

', 'CreateCapacityReservationRequest$EphemeralStorage' => '

Deprecated.

', 'CreateCapacityReservationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateCarrierGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateClientVpnEndpointRequest$SplitTunnel' => '

Indicates whether split-tunnel is enabled on the Client VPN endpoint.

By default, split-tunnel on a VPN endpoint is disabled.

For information about split-tunnel VPN endpoints, see Split-tunnel Client VPN endpoint in the Client VPN Administrator Guide.

', 'CreateClientVpnEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateClientVpnRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateCoipCidrRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateCoipPoolRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateCustomerGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateDefaultSubnetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateDefaultSubnetRequest$Ipv6Native' => '

Indicates whether to create an IPv6 only subnet. If you already have a default subnet for this Availability Zone, you must delete it before you can create an IPv6 only subnet.

', 'CreateDefaultVpcRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateDhcpOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateEgressOnlyInternetGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateFleetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateFleetRequest$TerminateInstancesWithExpiration' => '

Indicates whether running instances should be terminated when the EC2 Fleet expires.

', 'CreateFleetRequest$ReplaceUnhealthyInstances' => '

Indicates whether EC2 Fleet should replace unhealthy Spot Instances. Supported only for fleets of type maintain. For more information, see EC2 Fleet health checks in the Amazon EC2 User Guide.

', 'CreateFlowLogsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateFpgaImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateImageRequest$NoReboot' => '

Indicates whether or not the instance should be automatically rebooted before creating the image. Specify one of the following values:

  • true - The instance is not rebooted before creating the image. This creates crash-consistent snapshots that include only the data that has been written to the volumes at the time the snapshots are created. Buffered data and data in memory that has not yet been written to the volumes is not included in the snapshots.

  • false - The instance is rebooted before creating the image. This ensures that all buffered data and data in memory is written to the volumes before the snapshots are created.

Default: false

', 'CreateInstanceConnectEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateInstanceConnectEndpointRequest$PreserveClientIp' => '

Indicates whether your client\'s IP address is preserved as the source. The value is true or false.

  • If true, your client\'s IP address is used when you connect to a resource.

  • If false, the elastic network interface IP address is used when you connect to a resource.

Default: true

', 'CreateInstanceEventWindowRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateInternetGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateIpamPoolRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateIpamPoolRequest$AutoImport' => '

If selected, IPAM will continuously look for resources within the CIDR range of this pool and automatically import them as allocations into your IPAM. The CIDRs that will be allocated for these resources must not already be allocated to other resources in order for the import to succeed. IPAM will import a CIDR regardless of its compliance with the pool\'s allocation rules, so a resource might be imported and subsequently marked as noncompliant. If IPAM discovers multiple CIDRs that overlap, IPAM will import the largest CIDR only. If IPAM discovers multiple CIDRs with matching CIDRs, IPAM will randomly import one of them only.

A locale must be set on the pool for this feature to work.

', 'CreateIpamPoolRequest$PubliclyAdvertisable' => '

Determines if the pool is publicly advertisable. This option is not available for pools with AddressFamily set to ipv4.

', 'CreateIpamRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateIpamResourceDiscoveryRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateIpamScopeRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateKeyPairRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateLaunchTemplateRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateLaunchTemplateVersionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateLaunchTemplateVersionRequest$ResolveAlias' => '

If true, and if a Systems Manager parameter is specified for ImageId, the AMI ID is displayed in the response for imageID. For more information, see Use a Systems Manager parameter instead of an AMI ID in the Amazon Elastic Compute Cloud User Guide.

Default: false

', 'CreateLocalGatewayRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateLocalGatewayRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateLocalGatewayRouteTableVpcAssociationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateManagedPrefixListRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateNatGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateNetworkAclEntryRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateNetworkAclEntryRequest$Egress' => '

Indicates whether this is an egress rule (rule is applied to traffic leaving the subnet).

', 'CreateNetworkAclRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateNetworkInsightsAccessScopeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateNetworkInsightsPathRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateNetworkInterfacePermissionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateNetworkInterfaceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateNetworkInterfaceRequest$EnablePrimaryIpv6' => '

If you’re creating a network interface in a dual-stack or IPv6-only subnet, you have the option to assign a primary IPv6 IP address. A primary IPv6 address is an IPv6 GUA address associated with an ENI that you have enabled to use a primary IPv6 address. Use this option if the instance that this ENI will be attached to relies on its IPv6 address not changing. Amazon Web Services will automatically assign an IPv6 address associated with the ENI attached to your instance to be the primary IPv6 address. Once you enable an IPv6 GUA address to be a primary IPv6, you cannot disable it. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. If you have multiple IPv6 addresses associated with an ENI attached to your instance and you enable a primary IPv6 address, the first IPv6 GUA address associated with the ENI becomes the primary IPv6 address.

', 'CreatePlacementGroupRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreatePublicIpv4PoolRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateReplaceRootVolumeTaskRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateReplaceRootVolumeTaskRequest$DeleteReplacedRootVolume' => '

Indicates whether to automatically delete the original root volume after the root volume replacement task completes. To delete the original root volume, specify true. If you choose to keep the original root volume after the replacement task completes, you must manually delete it when you no longer need it.

', 'CreateRestoreImageTaskRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateRouteResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'CreateRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateSecurityGroupRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateSnapshotRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateSnapshotsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateSpotDatafeedSubscriptionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateStoreImageTaskRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateSubnetCidrReservationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateSubnetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateSubnetRequest$Ipv6Native' => '

Indicates whether to create an IPv6 only subnet.

', 'CreateTagsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTrafficMirrorFilterRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTrafficMirrorFilterRuleRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTrafficMirrorSessionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTrafficMirrorTargetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayConnectPeerRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayConnectRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayMulticastDomainRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayPeeringAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayPolicyTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayPrefixListReferenceRequest$Blackhole' => '

Indicates whether to drop traffic that matches this route.

', 'CreateTransitGatewayPrefixListReferenceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayRouteRequest$Blackhole' => '

Indicates whether to drop traffic that matches this route.

', 'CreateTransitGatewayRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayRouteTableAnnouncementRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateTransitGatewayVpcAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVerifiedAccessEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVerifiedAccessGroupRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVerifiedAccessInstanceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVerifiedAccessInstanceRequest$FIPSEnabled' => '

Enable or disable support for Federal Information Processing Standards (FIPS) on the instance.

', 'CreateVerifiedAccessTrustProviderRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVolumeRequest$Encrypted' => '

Indicates whether the volume should be encrypted. The effect of setting the encryption state to true depends on the volume origin (new or from a snapshot), starting encryption state, ownership, and whether encryption by default is enabled. For more information, see Encryption by default in the Amazon Elastic Compute Cloud User Guide.

Encrypted Amazon EBS volumes must be attached to instances that support Amazon EBS encryption. For more information, see Supported instance types.

', 'CreateVolumeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVolumeRequest$MultiAttachEnabled' => '

Indicates whether to enable Amazon EBS Multi-Attach. If you enable Multi-Attach, you can attach the volume to up to 16 Instances built on the Nitro System in the same Availability Zone. This parameter is supported with io1 and io2 volumes only. For more information, see Amazon EBS Multi-Attach in the Amazon Elastic Compute Cloud User Guide.

', 'CreateVpcEndpointConnectionNotificationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVpcEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVpcEndpointRequest$PrivateDnsEnabled' => '

(Interface endpoint) Indicates whether to associate a private hosted zone with the specified VPC. The private hosted zone contains a record set for the default public DNS name for the service for the Region (for example, kinesis.us-east-1.amazonaws.com), which resolves to the private IP addresses of the endpoint network interfaces in the VPC. This enables you to make requests to the default public DNS name for the service instead of the public DNS names that are automatically generated by the VPC endpoint service.

To use a private hosted zone, you must set the following VPC attributes to true: enableDnsHostnames and enableDnsSupport. Use ModifyVpcAttribute to set the VPC attributes.

Default: true

', 'CreateVpcEndpointServiceConfigurationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVpcEndpointServiceConfigurationRequest$AcceptanceRequired' => '

Indicates whether requests from service consumers to create an endpoint to your service must be accepted manually.

', 'CreateVpcPeeringConnectionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVpcRequest$AmazonProvidedIpv6CidrBlock' => '

Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length for the VPC. You cannot specify the range of IP addresses, or the size of the CIDR block.

', 'CreateVpcRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVpnConnectionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'CreateVpnGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteCarrierGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteClientVpnEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteClientVpnRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteCoipCidrRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteCoipPoolRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteCustomerGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteDhcpOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteEgressOnlyInternetGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteEgressOnlyInternetGatewayResult$ReturnCode' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DeleteFleetsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteFleetsRequest$TerminateInstances' => '

Indicates whether to terminate the associated instances when the EC2 Fleet is deleted. The default is to terminate the instances.

To let the instances continue to run after the EC2 Fleet is deleted, specify no-terminate-instances. Supported only for fleets of type maintain and request.

For instant fleets, you cannot specify NoTerminateInstances. A deleted instant fleet with running instances is not supported.

', 'DeleteFlowLogsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteFpgaImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteFpgaImageResult$Return' => '

Is true if the request succeeds, and an error otherwise.

', 'DeleteInstanceConnectEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteInstanceEventWindowRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteInstanceEventWindowRequest$ForceDelete' => '

Specify true to force delete the event window. Use the force delete parameter if the event window is currently associated with targets.

', 'DeleteInternetGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteIpamPoolRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteIpamPoolRequest$Cascade' => '

Enables you to quickly delete an IPAM pool and all resources within that pool, including provisioned CIDRs, allocations, and other pools.

You can only use this option to delete pools in the private scope or pools in the public scope with a source resource. A source resource is a resource used to provision CIDRs to a resource planning pool.

', 'DeleteIpamRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteIpamRequest$Cascade' => '

Enables you to quickly delete an IPAM, private scopes, pools in private scopes, and any allocations in the pools in private scopes. You cannot delete the IPAM with this option if there is a pool in your public scope. If you use this option, IPAM does the following:

  • Deallocates any CIDRs allocated to VPC resources (such as VPCs) in pools in private scopes.

    No VPC resources are deleted as a result of enabling this option. The CIDR associated with the resource will no longer be allocated from an IPAM pool, but the CIDR itself will remain unchanged.

  • Deprovisions all IPv4 CIDRs provisioned to IPAM pools in private scopes.

  • Deletes all IPAM pools in private scopes.

  • Deletes all non-default private scopes in the IPAM.

  • Deletes the default public and private scopes and the IPAM.

', 'DeleteIpamResourceDiscoveryRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteIpamScopeRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteKeyPairRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteKeyPairResult$Return' => '

Is true if the request succeeds, and an error otherwise.

', 'DeleteLaunchTemplateRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteLaunchTemplateVersionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteLocalGatewayRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteLocalGatewayRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteLocalGatewayRouteTableVpcAssociationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteManagedPrefixListRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNatGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNetworkAclEntryRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNetworkAclEntryRequest$Egress' => '

Indicates whether the rule is an egress rule.

', 'DeleteNetworkAclRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNetworkInsightsAccessScopeAnalysisRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNetworkInsightsAccessScopeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNetworkInsightsAnalysisRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNetworkInsightsPathRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNetworkInterfacePermissionRequest$Force' => '

Specify true to remove the permission even if the network interface is attached to an instance.

', 'DeleteNetworkInterfacePermissionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteNetworkInterfacePermissionResult$Return' => '

Returns true if the request succeeds, otherwise returns an error.

', 'DeleteNetworkInterfaceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeletePlacementGroupRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeletePublicIpv4PoolRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeletePublicIpv4PoolResult$ReturnValue' => '

Information about the result of deleting the public IPv4 pool.

', 'DeleteQueuedReservedInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteSecurityGroupRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteSnapshotRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteSpotDatafeedSubscriptionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteSubnetCidrReservationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteSubnetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTagsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTrafficMirrorFilterRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTrafficMirrorFilterRuleRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTrafficMirrorSessionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTrafficMirrorTargetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayConnectPeerRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayConnectRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayMulticastDomainRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayPeeringAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayPolicyTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayPrefixListReferenceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayRouteTableAnnouncementRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteTransitGatewayVpcAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVerifiedAccessEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVerifiedAccessGroupRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVerifiedAccessInstanceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVerifiedAccessTrustProviderRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVolumeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVpcEndpointConnectionNotificationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVpcEndpointServiceConfigurationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVpcEndpointsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVpcPeeringConnectionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVpcPeeringConnectionResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DeleteVpcRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVpnConnectionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeleteVpnGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeprovisionByoipCidrRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeprovisionIpamByoasnRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeprovisionIpamPoolCidrRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeprovisionPublicIpv4PoolCidrRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeregisterImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeregisterInstanceEventNotificationAttributesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeregisterInstanceTagAttributeRequest$IncludeAllTagsOfInstance' => '

Indicates whether to deregister all tag keys in the current Region. Specify false to deregister all tag keys.

', 'DeregisterTransitGatewayMulticastGroupMembersRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DeregisterTransitGatewayMulticastGroupSourcesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeAccountAttributesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeAddressTransfersRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeAddressesAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeAddressesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeAggregateIdFormatRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeAggregateIdFormatResult$UseLongIdsAggregated' => '

Indicates whether all resource types in the Region are configured to use longer IDs. This value is only true if all users are configured to use longer IDs for all resources types in the Region.

', 'DescribeAvailabilityZonesRequest$AllAvailabilityZones' => '

Include all Availability Zones, Local Zones, and Wavelength Zones regardless of your opt-in status.

If you do not use this parameter, the results include only the zones for the Regions where you have chosen the option to opt in.

', 'DescribeAvailabilityZonesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeAwsNetworkPerformanceMetricSubscriptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeBundleTasksRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeByoipCidrsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeCapacityBlockOfferingsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeCapacityReservationFleetsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeCapacityReservationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeCarrierGatewaysRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeClassicLinkInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeClientVpnAuthorizationRulesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeClientVpnConnectionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeClientVpnEndpointsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeClientVpnRoutesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeClientVpnTargetNetworksRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeCoipPoolsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeConversionTasksRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeCustomerGatewaysRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeDhcpOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeEgressOnlyInternetGatewaysRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeElasticGpusRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeExportImageTasksRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeFastLaunchImagesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeFastSnapshotRestoresRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeFleetHistoryRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeFleetInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeFleetsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeFlowLogsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeFpgaImageAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeFpgaImagesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeImageAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeImagesRequest$IncludeDeprecated' => '

Specifies whether to include deprecated AMIs.

Default: No deprecated AMIs are included in the response.

If you are the AMI owner, all deprecated AMIs appear in the response regardless of what you specify for this parameter.

', 'DescribeImagesRequest$IncludeDisabled' => '

Specifies whether to include disabled AMIs.

Default: No disabled AMIs are included in the response.

', 'DescribeImagesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeImportImageTasksRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeImportSnapshotTasksRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceConnectEndpointsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceCreditSpecificationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceEventNotificationAttributesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceEventWindowsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceStatusRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceStatusRequest$IncludeAllInstances' => '

When true, includes the health status for all instances. When false, includes the health status for running instances only.

Default: false

', 'DescribeInstanceTopologyRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceTypeOfferingsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstanceTypesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeInternetGatewaysRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeIpamByoasnRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeIpamPoolsRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeIpamResourceDiscoveriesRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeIpamResourceDiscoveryAssociationsRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeIpamScopesRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeIpamsRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeIpv6PoolsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeKeyPairsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeKeyPairsRequest$IncludePublicKey' => '

If true, the public key material is included in the response.

Default: false

', 'DescribeLaunchTemplateVersionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeLaunchTemplateVersionsRequest$ResolveAlias' => '

If true, and if a Systems Manager parameter is specified for ImageId, the AMI ID is displayed in the response for imageId.

If false, and if a Systems Manager parameter is specified for ImageId, the parameter is displayed in the response for imageId.

For more information, see Use a Systems Manager parameter instead of an AMI ID in the Amazon Elastic Compute Cloud User Guide.

Default: false

', 'DescribeLaunchTemplatesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeLocalGatewayRouteTableVpcAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeLocalGatewayRouteTablesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeLocalGatewayVirtualInterfaceGroupsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeLocalGatewayVirtualInterfacesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeLocalGatewaysRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeLockedSnapshotsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeManagedPrefixListsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeMovingAddressesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeNatGatewaysRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeNetworkAclsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeNetworkInsightsAccessScopeAnalysesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeNetworkInsightsAccessScopesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeNetworkInsightsAnalysesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeNetworkInsightsPathsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeNetworkInterfaceAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeNetworkInterfacesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribePlacementGroupsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribePrefixListsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribePrincipalIdFormatRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeRegionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeRegionsRequest$AllRegions' => '

Indicates whether to display all Regions, including Regions that are disabled for your account.

', 'DescribeReplaceRootVolumeTasksRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeReservedInstancesOfferingsRequest$IncludeMarketplace' => '

Include Reserved Instance Marketplace offerings in the response.

', 'DescribeReservedInstancesOfferingsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeReservedInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeRouteTablesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeScheduledInstanceAvailabilityRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeScheduledInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSecurityGroupReferencesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSecurityGroupRulesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSecurityGroupsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSnapshotAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSnapshotTierStatusRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSnapshotsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSpotDatafeedSubscriptionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSpotFleetInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSpotFleetRequestHistoryRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSpotFleetRequestsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSpotInstanceRequestsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSpotPriceHistoryRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeStaleSecurityGroupsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeStoreImageTasksRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeSubnetsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTagsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTrafficMirrorFiltersRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTrafficMirrorSessionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTrafficMirrorTargetsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayAttachmentsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayConnectPeersRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayConnectsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayMulticastDomainsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayPeeringAttachmentsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayPolicyTablesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayRouteTableAnnouncementsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayRouteTablesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewayVpcAttachmentsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTransitGatewaysRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeTrunkInterfaceAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVerifiedAccessEndpointsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVerifiedAccessGroupsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVerifiedAccessInstanceLoggingConfigurationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVerifiedAccessInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVerifiedAccessTrustProvidersRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVolumeAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVolumeStatusRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVolumesModificationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVolumesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcClassicLinkRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcEndpointConnectionNotificationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcEndpointConnectionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcEndpointServiceConfigurationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcEndpointServicePermissionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcEndpointServicesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcEndpointsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcPeeringConnectionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpcsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpnConnectionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DescribeVpnGatewaysRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DestinationOptionsRequest$HiveCompatiblePartitions' => '

Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3. The default is false.

', 'DestinationOptionsRequest$PerHourPartition' => '

Indicates whether to partition the flow log per hour. This reduces the cost and response time for queries. The default is false.

', 'DestinationOptionsResponse$HiveCompatiblePartitions' => '

Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3.

', 'DestinationOptionsResponse$PerHourPartition' => '

Indicates whether to partition the flow log per hour.

', 'DetachClassicLinkVpcRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DetachClassicLinkVpcResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DetachInternetGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DetachNetworkInterfaceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DetachNetworkInterfaceRequest$Force' => '

Specifies whether to force a detachment.

  • Use the Force parameter only as a last resort to detach a network interface from a failed instance.

  • If you use the Force parameter to detach a network interface, you might not be able to attach a different network interface to the same index on the instance without first stopping and starting the instance.

  • If you force the detachment of a network interface, the instance metadata might not get updated. This means that the attributes associated with the detached network interface might still be visible. The instance metadata will get updated when you stop and start the instance.

', 'DetachVerifiedAccessTrustProviderRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DetachVolumeRequest$Force' => '

Forces detachment if the previous detachment attempt did not occur cleanly (for example, logging into an instance, unmounting the volume, and detaching normally). This option can lead to data loss or a corrupted file system. Use this option only as a last resort to detach a volume from a failed instance. The instance won\'t have an opportunity to flush file system caches or file system metadata. If you use this option, you must perform file system check and repair procedures.

', 'DetachVolumeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DetachVpnGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableAddressTransferRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableAwsNetworkPerformanceMetricSubscriptionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableAwsNetworkPerformanceMetricSubscriptionResult$Output' => '

Indicates whether the unsubscribe action was successful.

', 'DisableEbsEncryptionByDefaultRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableEbsEncryptionByDefaultResult$EbsEncryptionByDefault' => '

The updated status of encryption by default.

', 'DisableFastLaunchRequest$Force' => '

Forces the image settings to turn off Windows fast launch for your Windows AMI. This parameter overrides any errors that are encountered while cleaning up resources in your account.

', 'DisableFastLaunchRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableFastSnapshotRestoresRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableImageBlockPublicAccessRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableImageDeprecationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableImageDeprecationResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DisableImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableImageResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DisableIpamOrganizationAdminAccountRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableIpamOrganizationAdminAccountResult$Success' => '

The result of disabling the IPAM account.

', 'DisableSerialConsoleAccessRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableSerialConsoleAccessResult$SerialConsoleAccessEnabled' => '

If true, access to the EC2 serial console of all instances is enabled for your account. If false, access to the EC2 serial console of all instances is disabled for your account.

', 'DisableSnapshotBlockPublicAccessRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableTransitGatewayRouteTablePropagationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableVgwRoutePropagationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableVpcClassicLinkDnsSupportResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DisableVpcClassicLinkRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisableVpcClassicLinkResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DisassociateAddressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateClientVpnTargetNetworkRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateEnclaveCertificateIamRoleRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateEnclaveCertificateIamRoleResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DisassociateInstanceEventWindowRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateIpamByoasnRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateIpamResourceDiscoveryRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateNatGatewayAddressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateTransitGatewayMulticastDomainRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateTransitGatewayPolicyTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateTransitGatewayRouteTableRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateTrunkInterfaceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'DisassociateTrunkInterfaceResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'DnsOptions$PrivateDnsOnlyForInboundResolverEndpoint' => '

Indicates whether to enable private DNS only for inbound endpoints.

', 'DnsOptionsSpecification$PrivateDnsOnlyForInboundResolverEndpoint' => '

Indicates whether to enable private DNS only for inbound endpoints. This option is available only for services that support both gateway and interface endpoints. It routes traffic that originates from the VPC to the gateway endpoint and traffic that originates from on-premises to the interface endpoint.

', 'DnsServersOptionsModifyStructure$Enabled' => '

Indicates whether DNS servers should be used. Specify False to delete the existing DNS servers.

', 'EbsBlockDevice$DeleteOnTermination' => '

Indicates whether the EBS volume is deleted on instance termination. For more information, see Preserving Amazon EBS volumes on instance termination in the Amazon EC2 User Guide.

', 'EbsBlockDevice$Encrypted' => '

Indicates whether the encryption state of an EBS volume is changed while being restored from a backing snapshot. The effect of setting the encryption state to true depends on the volume origin (new or from a snapshot), starting encryption state, ownership, and whether encryption by default is enabled. For more information, see Amazon EBS encryption in the Amazon EC2 User Guide.

In no case can you remove encryption from an encrypted volume.

Encrypted volumes can only be attached to instances that support Amazon EBS encryption. For more information, see Supported instance types.

This parameter is not returned by DescribeImageAttribute.

For CreateImage and RegisterImage, whether you can include this parameter, and the allowed values differ depending on the type of block device mapping you are creating.

  • If you are creating a block device mapping for a new (empty) volume, you can include this parameter, and specify either true for an encrypted volume, or false for an unencrypted volume. If you omit this parameter, it defaults to false (unencrypted).

  • If you are creating a block device mapping from an existing encrypted or unencrypted snapshot, you must omit this parameter. If you include this parameter, the request will fail, regardless of the value that you specify.

  • If you are creating a block device mapping from an existing unencrypted volume, you can include this parameter, but you must specify false. If you specify true, the request will fail. In this case, we recommend that you omit the parameter.

  • If you are creating a block device mapping from an existing encrypted volume, you can include this parameter, and specify either true or false. However, if you specify false, the parameter is ignored and the block device mapping is always encrypted. In this case, we recommend that you omit the parameter.

', 'EbsInstanceBlockDevice$DeleteOnTermination' => '

Indicates whether the volume is deleted on instance termination.

', 'EbsInstanceBlockDeviceSpecification$DeleteOnTermination' => '

Indicates whether the volume is deleted on instance termination.

', 'Ec2InstanceConnectEndpoint$PreserveClientIp' => '

Indicates whether your client\'s IP address is preserved as the source. The value is true or false.

  • If true, your client\'s IP address is used when you connect to a resource.

  • If false, the elastic network interface IP address is used when you connect to a resource.

Default: true

', 'EnaSrdSpecification$EnaSrdEnabled' => '

Indicates whether ENA Express is enabled for the network interface.

', 'EnaSrdSpecificationRequest$EnaSrdEnabled' => '

Specifies whether ENA Express is enabled for the network interface when you launch an instance from your launch template.

', 'EnaSrdUdpSpecification$EnaSrdUdpEnabled' => '

Indicates whether UDP traffic to and from the instance uses ENA Express. To specify this setting, you must first enable ENA Express.

', 'EnaSrdUdpSpecificationRequest$EnaSrdUdpEnabled' => '

Indicates whether UDP traffic uses ENA Express for your instance. To ensure that UDP traffic can use ENA Express when you launch an instance, you must also set EnaSrdEnabled in the EnaSrdSpecificationRequest to true in your launch template.

', 'EnableAddressTransferRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableAwsNetworkPerformanceMetricSubscriptionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableAwsNetworkPerformanceMetricSubscriptionResult$Output' => '

Indicates whether the subscribe action was successful.

', 'EnableEbsEncryptionByDefaultRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableEbsEncryptionByDefaultResult$EbsEncryptionByDefault' => '

The updated status of encryption by default.

', 'EnableFastLaunchRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableFastSnapshotRestoresRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableImageBlockPublicAccessRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableImageDeprecationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableImageDeprecationResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'EnableImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableImageResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'EnableIpamOrganizationAdminAccountRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableIpamOrganizationAdminAccountResult$Success' => '

The result of enabling the IPAM account.

', 'EnableReachabilityAnalyzerOrganizationSharingRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableReachabilityAnalyzerOrganizationSharingResult$ReturnValue' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'EnableSerialConsoleAccessRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableSerialConsoleAccessResult$SerialConsoleAccessEnabled' => '

If true, access to the EC2 serial console of all instances is enabled for your account. If false, access to the EC2 serial console of all instances is disabled for your account.

', 'EnableSnapshotBlockPublicAccessRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableTransitGatewayRouteTablePropagationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableVgwRoutePropagationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableVolumeIORequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableVpcClassicLinkDnsSupportResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'EnableVpcClassicLinkRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'EnableVpcClassicLinkResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'EnclaveOptions$Enabled' => '

If this parameter is set to true, the instance is enabled for Amazon Web Services Nitro Enclaves; otherwise, it is not enabled for Amazon Web Services Nitro Enclaves.

', 'EnclaveOptionsRequest$Enabled' => '

To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to true.

', 'ExportClientVpnClientCertificateRevocationListRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ExportClientVpnClientConfigurationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ExportImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ExportTransitGatewayRoutesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'FleetCapacityReservation$EbsOptimized' => '

Indicates whether the Capacity Reservation reserves capacity for EBS-optimized instance types.

', 'FleetData$TerminateInstancesWithExpiration' => '

Indicates whether running instances should be terminated when the EC2 Fleet expires.

', 'FleetData$ReplaceUnhealthyInstances' => '

Indicates whether EC2 Fleet should replace unhealthy Spot Instances. Supported only for fleets of type maintain. For more information, see EC2 Fleet health checks in the Amazon EC2 User Guide.

', 'FpgaImage$Public' => '

Indicates whether the AFI is public.

', 'FpgaImage$DataRetentionSupport' => '

Indicates whether data retention support is enabled for the AFI.

', 'GetAssociatedEnclaveCertificateIamRolesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetAssociatedIpv6PoolCidrsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetAwsNetworkPerformanceDataRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetCapacityReservationUsageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetCoipPoolUsageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetConsoleOutputRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetConsoleOutputRequest$Latest' => '

When enabled, retrieves the latest console output for the instance.

Default: disabled (false)

', 'GetConsoleScreenshotRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetConsoleScreenshotRequest$WakeUp' => '

When set to true, acts as keystroke input and wakes up an instance that\'s in standby or "sleep" mode.

', 'GetDefaultCreditSpecificationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetEbsDefaultKmsKeyIdRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetEbsEncryptionByDefaultRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetEbsEncryptionByDefaultResult$EbsEncryptionByDefault' => '

Indicates whether encryption by default is enabled.

', 'GetFlowLogsIntegrationTemplateRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetGroupsForCapacityReservationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetImageBlockPublicAccessStateRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetInstanceTypesFromInstanceRequirementsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetInstanceUefiDataRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetIpamAddressHistoryRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetIpamDiscoveredAccountsRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetIpamDiscoveredPublicAddressesRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetIpamDiscoveredResourceCidrsRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetIpamPoolAllocationsRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetIpamPoolCidrsRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetIpamResourceCidrsRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetLaunchTemplateDataRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetManagedPrefixListAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetManagedPrefixListEntriesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetNetworkInsightsAccessScopeAnalysisFindingsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetNetworkInsightsAccessScopeContentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetPasswordDataRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetReservedInstancesExchangeQuoteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetReservedInstancesExchangeQuoteResult$IsValidExchange' => '

If true, the exchange is valid. If false, the exchange cannot be completed.

', 'GetSecurityGroupsForVpcRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetSerialConsoleAccessStatusRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetSerialConsoleAccessStatusResult$SerialConsoleAccessEnabled' => '

If true, access to the EC2 serial console of all instances is enabled for your account. If false, access to the EC2 serial console of all instances is disabled for your account.

', 'GetSnapshotBlockPublicAccessStateRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetSpotPlacementScoresRequest$SingleAvailabilityZone' => '

Specify true so that the response returns a list of scored Availability Zones. Otherwise, the response returns a list of scored Regions.

A list of scored Availability Zones is useful if you want to launch all of your Spot capacity into a single Availability Zone.

', 'GetSpotPlacementScoresRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetSubnetCidrReservationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetTransitGatewayAttachmentPropagationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetTransitGatewayMulticastDomainAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetTransitGatewayPolicyTableAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetTransitGatewayPolicyTableEntriesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetTransitGatewayPrefixListReferencesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetTransitGatewayRouteTableAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetTransitGatewayRouteTablePropagationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetVerifiedAccessEndpointPolicyRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetVerifiedAccessEndpointPolicyResult$PolicyEnabled' => '

The status of the Verified Access policy.

', 'GetVerifiedAccessGroupPolicyRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetVerifiedAccessGroupPolicyResult$PolicyEnabled' => '

The status of the Verified Access policy.

', 'GetVpnConnectionDeviceSampleConfigurationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetVpnConnectionDeviceTypesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'GetVpnTunnelReplacementStatusRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'HibernationOptions$Configured' => '

If true, your instance is enabled for hibernation; otherwise, it is not enabled for hibernation.

', 'HibernationOptionsRequest$Configured' => '

Set to true to enable your instance for hibernation.

For Spot Instances, if you set Configured to true, either omit the InstanceInterruptionBehavior parameter (for SpotMarketOptions ), or set it to hibernate. When Configured is true:

  • If you omit InstanceInterruptionBehavior, it defaults to hibernate.

  • If you set InstanceInterruptionBehavior to a value other than hibernate, you\'ll get an error.

Default: false

', 'Host$MemberOfServiceLinkedResourceGroup' => '

Indicates whether the Dedicated Host is in a host resource group. If memberOfServiceLinkedResourceGroup is true, the host is in a host resource group; otherwise, it is not.

', 'IdFormat$UseLongIds' => '

Indicates whether longer IDs (17-character IDs) are enabled for the resource.

', 'Image$Public' => '

Indicates whether the image has public launch permissions. The value is true if this image has public launch permissions or false if it has only implicit and explicit launch permissions.

', 'Image$EnaSupport' => '

Specifies whether enhanced networking with ENA is enabled.

', 'ImportClientVpnClientCertificateRevocationListRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ImportClientVpnClientCertificateRevocationListResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ImportImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ImportImageRequest$Encrypted' => '

Specifies whether the destination AMI of the imported image should be encrypted. The default KMS key for EBS is used unless you specify a non-default KMS key using KmsKeyId. For more information, see Amazon EBS Encryption in the Amazon Elastic Compute Cloud User Guide.

', 'ImportImageResult$Encrypted' => '

Indicates whether the AMI is encrypted.

', 'ImportImageTask$Encrypted' => '

Indicates whether the image is encrypted.

', 'ImportInstanceLaunchSpecification$Monitoring' => '

Indicates whether monitoring is enabled.

', 'ImportInstanceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ImportKeyPairRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ImportSnapshotRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ImportSnapshotRequest$Encrypted' => '

Specifies whether the destination snapshot of the imported image should be encrypted. The default KMS key for EBS is used unless you specify a non-default KMS key using KmsKeyId. For more information, see Amazon EBS Encryption in the Amazon Elastic Compute Cloud User Guide.

', 'ImportVolumeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'Instance$EbsOptimized' => '

Indicates whether the instance is optimized for Amazon EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS Optimized instance.

', 'Instance$EnaSupport' => '

Specifies whether enhanced networking with ENA is enabled.

', 'Instance$SourceDestCheck' => '

Indicates whether source/destination checking is enabled.

', 'InstanceAttachmentEnaSrdSpecification$EnaSrdEnabled' => '

Indicates whether ENA Express is enabled for the network interface.

', 'InstanceAttachmentEnaSrdUdpSpecification$EnaSrdUdpEnabled' => '

Indicates whether UDP traffic to and from the instance uses ENA Express. To specify this setting, you must first enable ENA Express.

', 'InstanceIpv6Address$IsPrimaryIpv6' => '

Determines if an IPv6 address associated with a network interface is the primary IPv6 address. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. For more information, see RunInstances.

', 'InstanceNetworkInterface$SourceDestCheck' => '

Indicates whether source/destination checking is enabled.

', 'InstanceNetworkInterfaceAttachment$DeleteOnTermination' => '

Indicates whether the network interface is deleted when the instance is terminated.

', 'InstanceNetworkInterfaceSpecification$AssociatePublicIpAddress' => '

Indicates whether to assign a public IPv4 address to an instance you launch in a VPC. The public IP address can only be assigned to a network interface for eth0, and can only be assigned to a new network interface, not an existing one. You cannot specify more than one network interface in the request. If launching into a default subnet, the default value is true.

Starting on February 1, 2024, Amazon Web Services will charge for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the Public IPv4 Address tab on the Amazon VPC pricing page.

', 'InstanceNetworkInterfaceSpecification$DeleteOnTermination' => '

If set to true, the interface is deleted when the instance is terminated. You can specify true only if creating a new network interface when launching an instance.

', 'InstanceNetworkInterfaceSpecification$AssociateCarrierIpAddress' => '

Indicates whether to assign a carrier IP address to the network interface.

You can only assign a carrier IP address to a network interface that is in a subnet in a Wavelength Zone. For more information about carrier IP addresses, see Carrier IP address in the Amazon Web Services Wavelength Developer Guide.

', 'InstanceNetworkInterfaceSpecification$PrimaryIpv6' => '

The primary IPv6 address of the network interface. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. For more information about primary IPv6 addresses, see RunInstances.

', 'InstancePrivateIpAddress$Primary' => '

Indicates whether this IPv4 address is the primary private IP address of the network interface.

', 'InstanceRequirements$RequireHibernateSupport' => '

Indicates whether instance types must support hibernation for On-Demand Instances.

This parameter is not supported for GetSpotPlacementScores.

Default: false

', 'InstanceRequirementsRequest$RequireHibernateSupport' => '

Indicates whether instance types must support hibernation for On-Demand Instances.

This parameter is not supported for GetSpotPlacementScores.

Default: false

', 'InstanceSpecification$ExcludeBootVolume' => '

Excludes the root volume from being snapshotted.

', 'InstanceTagNotificationAttribute$IncludeAllTagsOfInstance' => '

Indicates wheter all tag keys in the current Region are registered to appear in scheduled event notifications. true indicates that all tag keys in the current Region are registered.

', 'IpamPool$AutoImport' => '

If selected, IPAM will continuously look for resources within the CIDR range of this pool and automatically import them as allocations into your IPAM. The CIDRs that will be allocated for these resources must not already be allocated to other resources in order for the import to succeed. IPAM will import a CIDR regardless of its compliance with the pool\'s allocation rules, so a resource might be imported and subsequently marked as noncompliant. If IPAM discovers multiple CIDRs that overlap, IPAM will import the largest CIDR only. If IPAM discovers multiple CIDRs with matching CIDRs, IPAM will randomly import one of them only.

A locale must be set on the pool for this feature to work.

', 'IpamPool$PubliclyAdvertisable' => '

Determines if a pool is publicly advertisable. This option is not available for pools with AddressFamily set to ipv4.

', 'IpamResourceDiscovery$IsDefault' => '

Defines if the resource discovery is the default. The default resource discovery is the resource discovery automatically created when you create an IPAM.

', 'IpamResourceDiscoveryAssociation$IsDefault' => '

Defines if the resource discovery is the default. When you create an IPAM, a default resource discovery is created for your IPAM and it\'s associated with your IPAM.

', 'IpamScope$IsDefault' => '

Defines if the scope is the default scope or not.

', 'LaunchSpecification$EbsOptimized' => '

Indicates whether the instance is optimized for EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal EBS I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS Optimized instance.

Default: false

', 'LaunchTemplateEbsBlockDevice$Encrypted' => '

Indicates whether the EBS volume is encrypted.

', 'LaunchTemplateEbsBlockDevice$DeleteOnTermination' => '

Indicates whether the EBS volume is deleted on instance termination.

', 'LaunchTemplateEbsBlockDeviceRequest$Encrypted' => '

Indicates whether the EBS volume is encrypted. Encrypted volumes can only be attached to instances that support Amazon EBS encryption. If you are creating a volume from a snapshot, you can\'t specify an encryption value.

', 'LaunchTemplateEbsBlockDeviceRequest$DeleteOnTermination' => '

Indicates whether the EBS volume is deleted on instance termination.

', 'LaunchTemplateEnaSrdSpecification$EnaSrdEnabled' => '

Indicates whether ENA Express is enabled for the network interface.

', 'LaunchTemplateEnaSrdUdpSpecification$EnaSrdUdpEnabled' => '

Indicates whether UDP traffic to and from the instance uses ENA Express. To specify this setting, you must first enable ENA Express.

', 'LaunchTemplateEnclaveOptions$Enabled' => '

If this parameter is set to true, the instance is enabled for Amazon Web Services Nitro Enclaves; otherwise, it is not enabled for Amazon Web Services Nitro Enclaves.

', 'LaunchTemplateEnclaveOptionsRequest$Enabled' => '

To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to true.

', 'LaunchTemplateHibernationOptions$Configured' => '

If this parameter is set to true, the instance is enabled for hibernation; otherwise, it is not enabled for hibernation.

', 'LaunchTemplateHibernationOptionsRequest$Configured' => '

If you set this parameter to true, the instance is enabled for hibernation.

Default: false

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$AssociateCarrierIpAddress' => '

Indicates whether to associate a Carrier IP address with eth0 for a new network interface.

Use this option when you launch an instance in a Wavelength Zone and want to associate a Carrier IP address with the network interface. For more information about Carrier IP addresses, see Carrier IP addresses in the Wavelength Developer Guide.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$AssociatePublicIpAddress' => '

Indicates whether to associate a public IPv4 address with eth0 for a new network interface.

Starting on February 1, 2024, Amazon Web Services will charge for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the Public IPv4 Address tab on the Amazon VPC pricing page.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$DeleteOnTermination' => '

Indicates whether the network interface is deleted when the instance is terminated.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$PrimaryIpv6' => '

The primary IPv6 address of the network interface. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. For more information about primary IPv6 addresses, see RunInstances.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$AssociateCarrierIpAddress' => '

Associates a Carrier IP address with eth0 for a new network interface.

Use this option when you launch an instance in a Wavelength Zone and want to associate a Carrier IP address with the network interface. For more information about Carrier IP addresses, see Carrier IP addresses in the Wavelength Developer Guide.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$AssociatePublicIpAddress' => '

Associates a public IPv4 address with eth0 for a new network interface.

Starting on February 1, 2024, Amazon Web Services will charge for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the Public IPv4 Address tab on the Amazon VPC pricing page.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$DeleteOnTermination' => '

Indicates whether the network interface is deleted when the instance is terminated.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$PrimaryIpv6' => '

The primary IPv6 address of the network interface. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. For more information about primary IPv6 addresses, see RunInstances.

', 'LaunchTemplatePrivateDnsNameOptions$EnableResourceNameDnsARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS A records.

', 'LaunchTemplatePrivateDnsNameOptions$EnableResourceNameDnsAAAARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.

', 'LaunchTemplatePrivateDnsNameOptionsRequest$EnableResourceNameDnsARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS A records.

', 'LaunchTemplatePrivateDnsNameOptionsRequest$EnableResourceNameDnsAAAARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.

', 'LaunchTemplateVersion$DefaultVersion' => '

Indicates whether the version is the default version.

', 'LaunchTemplatesMonitoring$Enabled' => '

Indicates whether detailed monitoring is enabled. Otherwise, basic monitoring is enabled.

', 'LaunchTemplatesMonitoringRequest$Enabled' => '

Specify true to enable detailed monitoring. Otherwise, basic monitoring is enabled.

', 'ListImagesInRecycleBinRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ListSnapshotsInRecycleBinRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'LockSnapshotRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyAddressAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyAvailabilityZoneGroupRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyAvailabilityZoneGroupResult$Return' => '

Is true if the request succeeds, and an error otherwise.

', 'ModifyCapacityReservationFleetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyCapacityReservationFleetRequest$RemoveEndDate' => '

Indicates whether to remove the end date from the Capacity Reservation Fleet. If you remove the end date, the Capacity Reservation Fleet does not expire and it remains active until you explicitly cancel it using the CancelCapacityReservationFleet action.

You can\'t specify RemoveEndDate and EndDate in the same request.

', 'ModifyCapacityReservationFleetResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyCapacityReservationRequest$Accept' => '

Reserved. Capacity Reservations you have created are accepted by default.

', 'ModifyCapacityReservationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyCapacityReservationResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyClientVpnEndpointRequest$SplitTunnel' => '

Indicates whether the VPN is split-tunnel.

For information about split-tunnel VPN endpoints, see Split-tunnel Client VPN endpoint in the Client VPN Administrator Guide.

', 'ModifyClientVpnEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyClientVpnEndpointResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyDefaultCreditSpecificationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyEbsDefaultKmsKeyIdRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyFleetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyFleetResult$Return' => '

If the request succeeds, the response returns true. If the request fails, no response is returned, and instead an error message is returned.

', 'ModifyFpgaImageAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyIdFormatRequest$UseLongIds' => '

Indicate whether the resource should use longer IDs (17-character IDs).

', 'ModifyIdentityIdFormatRequest$UseLongIds' => '

Indicates whether the resource should use longer IDs (17-character IDs)

', 'ModifyImageAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyInstanceAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyInstanceCapacityReservationAttributesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyInstanceCapacityReservationAttributesResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyInstanceCreditSpecificationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyInstanceEventStartTimeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyInstanceEventWindowRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyInstanceMaintenanceOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyInstanceMetadataOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyInstancePlacementResult$Return' => '

Is true if the request succeeds, and an error otherwise.

', 'ModifyIpamPoolRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyIpamPoolRequest$AutoImport' => '

If true, IPAM will continuously look for resources within the CIDR range of this pool and automatically import them as allocations into your IPAM. The CIDRs that will be allocated for these resources must not already be allocated to other resources in order for the import to succeed. IPAM will import a CIDR regardless of its compliance with the pool\'s allocation rules, so a resource might be imported and subsequently marked as noncompliant. If IPAM discovers multiple CIDRs that overlap, IPAM will import the largest CIDR only. If IPAM discovers multiple CIDRs with matching CIDRs, IPAM will randomly import one of them only.

A locale must be set on the pool for this feature to work.

', 'ModifyIpamPoolRequest$ClearAllocationDefaultNetmaskLength' => '

Clear the default netmask length allocation rule for this pool.

', 'ModifyIpamRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyIpamResourceCidrRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyIpamResourceCidrRequest$Monitored' => '

Determines if the resource is monitored by IPAM. If a resource is monitored, the resource is discovered by IPAM and you can view details about the resource’s CIDR.

', 'ModifyIpamResourceDiscoveryRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyIpamScopeRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyLaunchTemplateRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyLocalGatewayRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyManagedPrefixListRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyNetworkInterfaceAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyNetworkInterfaceAttributeRequest$EnablePrimaryIpv6' => '

If you’re modifying a network interface in a dual-stack or IPv6-only subnet, you have the option to assign a primary IPv6 IP address. A primary IPv6 address is an IPv6 GUA address associated with an ENI that you have enabled to use a primary IPv6 address. Use this option if the instance that this ENI will be attached to relies on its IPv6 address not changing. Amazon Web Services will automatically assign an IPv6 address associated with the ENI attached to your instance to be the primary IPv6 address. Once you enable an IPv6 GUA address to be a primary IPv6, you cannot disable it. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. If you have multiple IPv6 addresses associated with an ENI attached to your instance and you enable a primary IPv6 address, the first IPv6 GUA address associated with the ENI becomes the primary IPv6 address.

', 'ModifyPrivateDnsNameOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyPrivateDnsNameOptionsRequest$EnableResourceNameDnsARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS A records.

', 'ModifyPrivateDnsNameOptionsRequest$EnableResourceNameDnsAAAARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.

', 'ModifyPrivateDnsNameOptionsResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifySecurityGroupRulesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifySecurityGroupRulesResult$Return' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'ModifySnapshotAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifySnapshotTierRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifySpotFleetRequestResponse$Return' => '

If the request succeeds, the response returns true. If the request fails, no response is returned, and instead an error message is returned.

', 'ModifyTrafficMirrorFilterNetworkServicesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyTrafficMirrorFilterRuleRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyTrafficMirrorSessionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyTransitGatewayPrefixListReferenceRequest$Blackhole' => '

Indicates whether to drop traffic that matches this route.

', 'ModifyTransitGatewayPrefixListReferenceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyTransitGatewayRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyTransitGatewayVpcAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVerifiedAccessEndpointPolicyRequest$PolicyEnabled' => '

The status of the Verified Access policy.

', 'ModifyVerifiedAccessEndpointPolicyRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVerifiedAccessEndpointPolicyResult$PolicyEnabled' => '

The status of the Verified Access policy.

', 'ModifyVerifiedAccessEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVerifiedAccessGroupPolicyRequest$PolicyEnabled' => '

The status of the Verified Access policy.

', 'ModifyVerifiedAccessGroupPolicyRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVerifiedAccessGroupPolicyResult$PolicyEnabled' => '

The status of the Verified Access policy.

', 'ModifyVerifiedAccessGroupRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVerifiedAccessInstanceLoggingConfigurationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVerifiedAccessInstanceRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVerifiedAccessTrustProviderRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVolumeAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVolumeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVolumeRequest$MultiAttachEnabled' => '

Specifies whether to enable Amazon EBS Multi-Attach. If you enable Multi-Attach, you can attach the volume to up to 16 Nitro-based instances in the same Availability Zone. This parameter is supported with io1 and io2 volumes only. For more information, see Amazon EBS Multi-Attach in the Amazon Elastic Compute Cloud User Guide.

', 'ModifyVpcEndpointConnectionNotificationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpcEndpointConnectionNotificationResult$ReturnValue' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyVpcEndpointRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpcEndpointRequest$ResetPolicy' => '

(Gateway endpoint) Specify true to reset the policy document to the default policy. The default policy allows full access to the service.

', 'ModifyVpcEndpointRequest$PrivateDnsEnabled' => '

(Interface endpoint) Indicates whether a private hosted zone is associated with the VPC.

', 'ModifyVpcEndpointResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyVpcEndpointServiceConfigurationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpcEndpointServiceConfigurationRequest$RemovePrivateDnsName' => '

(Interface endpoint configuration) Removes the private DNS name of the endpoint service.

', 'ModifyVpcEndpointServiceConfigurationRequest$AcceptanceRequired' => '

Indicates whether requests to create an endpoint to your service must be accepted.

', 'ModifyVpcEndpointServiceConfigurationResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyVpcEndpointServicePayerResponsibilityRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpcEndpointServicePayerResponsibilityResult$ReturnValue' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyVpcEndpointServicePermissionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpcEndpointServicePermissionsResult$ReturnValue' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ModifyVpcPeeringConnectionOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpcTenancyRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpcTenancyResult$ReturnValue' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'ModifyVpnConnectionOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpnConnectionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpnTunnelCertificateRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpnTunnelOptionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ModifyVpnTunnelOptionsRequest$SkipTunnelReplacement' => '

Choose whether or not to trigger immediate tunnel replacement. This is only applicable when turning on or off EnableTunnelLifecycleControl.

Valid values: True | False

', 'ModifyVpnTunnelOptionsSpecification$EnableTunnelLifecycleControl' => '

Turn on or off tunnel endpoint lifecycle control feature.

', 'MonitorInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'MoveAddressToVpcRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'MoveByoipCidrToIpamRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'NatGatewayAddress$IsPrimary' => '

Defines if the IP address is the primary address.

', 'NetworkAcl$IsDefault' => '

Indicates whether this is the default network ACL for the VPC.

', 'NetworkAclEntry$Egress' => '

Indicates whether the rule is an egress rule (applied to traffic leaving the subnet).

', 'NetworkInsightsAnalysis$NetworkPathFound' => '

Indicates whether the destination is reachable from the source.

', 'NetworkInterface$RequesterManaged' => '

Indicates whether the network interface is being managed by Amazon Web Services.

', 'NetworkInterface$SourceDestCheck' => '

Indicates whether source/destination checking is enabled.

', 'NetworkInterface$DenyAllIgwTraffic' => '

Indicates whether a network interface with an IPv6 address is unreachable from the public internet. If the value is true, inbound traffic from the internet is dropped and you cannot assign an elastic IP address to the network interface. The network interface is reachable from peered VPCs and resources connected through a transit gateway, including on-premises networks.

', 'NetworkInterface$Ipv6Native' => '

Indicates whether this is an IPv6 only network interface.

', 'NetworkInterfaceAttachment$DeleteOnTermination' => '

Indicates whether the network interface is deleted when the instance is terminated.

', 'NetworkInterfaceAttachmentChanges$DeleteOnTermination' => '

Indicates whether the network interface is deleted when the instance is terminated.

', 'NetworkInterfaceIpv6Address$IsPrimaryIpv6' => '

Determines if an IPv6 address associated with a network interface is the primary IPv6 address. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. For more information, see ModifyNetworkInterfaceAttribute.

', 'NetworkInterfacePrivateIpAddress$Primary' => '

Indicates whether this IPv4 address is the primary private IPv4 address of the network interface.

', 'OnDemandOptions$SingleInstanceType' => '

Indicates that the fleet uses a single instance type to launch all On-Demand Instances in the fleet.

Supported only for fleets of type instant.

', 'OnDemandOptions$SingleAvailabilityZone' => '

Indicates that the fleet launches all On-Demand Instances into a single Availability Zone.

Supported only for fleets of type instant.

', 'OnDemandOptionsRequest$SingleInstanceType' => '

Indicates that the fleet uses a single instance type to launch all On-Demand Instances in the fleet.

Supported only for fleets of type instant.

', 'OnDemandOptionsRequest$SingleAvailabilityZone' => '

Indicates that the fleet launches all On-Demand Instances into a single Availability Zone.

Supported only for fleets of type instant.

', 'PeeringConnectionOptions$AllowDnsResolutionFromRemoteVpc' => '

If true, the public DNS hostnames of instances in the specified VPC resolve to private IP addresses when queried from instances in the peer VPC.

', 'PeeringConnectionOptions$AllowEgressFromLocalClassicLinkToRemoteVpc' => '

Deprecated.

', 'PeeringConnectionOptions$AllowEgressFromLocalVpcToRemoteClassicLink' => '

Deprecated.

', 'PeeringConnectionOptionsRequest$AllowDnsResolutionFromRemoteVpc' => '

If true, enables a local VPC to resolve public DNS hostnames to private IP addresses when queried from instances in the peer VPC.

', 'PeeringConnectionOptionsRequest$AllowEgressFromLocalClassicLinkToRemoteVpc' => '

Deprecated.

', 'PeeringConnectionOptionsRequest$AllowEgressFromLocalVpcToRemoteClassicLink' => '

Deprecated.

', 'PriceSchedule$Active' => '

The current price schedule, as determined by the term remaining for the Reserved Instance in the listing.

A specific price schedule is always in effect, but only one price schedule can be active at any time. Take, for example, a Reserved Instance listing that has five months remaining in its term. When you specify price schedules for five months and two months, this means that schedule 1, covering the first three months of the remaining term, will be active during months 5, 4, and 3. Then schedule 2, covering the last two months of the term, will be active for months 2 and 1.

', 'PrivateDnsNameOptionsOnLaunch$EnableResourceNameDnsARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS A records.

', 'PrivateDnsNameOptionsOnLaunch$EnableResourceNameDnsAAAARecord' => '

Indicates whether to respond to DNS queries for instance hostname with DNS AAAA records.

', 'PrivateDnsNameOptionsRequest$EnableResourceNameDnsARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS A records.

', 'PrivateDnsNameOptionsRequest$EnableResourceNameDnsAAAARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.

', 'PrivateDnsNameOptionsResponse$EnableResourceNameDnsARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS A records.

', 'PrivateDnsNameOptionsResponse$EnableResourceNameDnsAAAARecord' => '

Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.

', 'PrivateIpAddressSpecification$Primary' => '

Indicates whether the private IPv4 address is the primary private IPv4 address. Only one IPv4 address can be designated as primary.

', 'ProvisionByoipCidrRequest$PubliclyAdvertisable' => '

(IPv6 only) Indicate whether the address range will be publicly advertised to the internet.

Default: true

', 'ProvisionByoipCidrRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ProvisionByoipCidrRequest$MultiRegion' => '

Reserved.

', 'ProvisionIpamByoasnRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ProvisionIpamPoolCidrRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ProvisionPublicIpv4PoolCidrRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'PurchaseCapacityBlockRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'PurchaseReservedInstancesOfferingRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'PurchaseScheduledInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RebootInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RegisterImageRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RegisterImageRequest$EnaSupport' => '

Set to true to enable enhanced networking with ENA for the AMI and any instances that you launch from the AMI.

This option is supported only for HVM AMIs. Specifying this option with a PV AMI can make instances launched from the AMI unreachable.

', 'RegisterInstanceEventNotificationAttributesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RegisterInstanceTagAttributeRequest$IncludeAllTagsOfInstance' => '

Indicates whether to register all tag keys in the current Region. Specify true to register all tag keys.

', 'RegisterTransitGatewayMulticastGroupMembersRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RegisterTransitGatewayMulticastGroupSourcesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RejectTransitGatewayMulticastDomainAssociationsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RejectTransitGatewayPeeringAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RejectTransitGatewayVpcAttachmentRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RejectVpcEndpointConnectionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RejectVpcPeeringConnectionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RejectVpcPeeringConnectionResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'ReleaseAddressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ReleaseIpamPoolAllocationRequest$DryRun' => '

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ReleaseIpamPoolAllocationResult$Success' => '

Indicates if the release was successful.

', 'ReplaceNetworkAclAssociationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ReplaceNetworkAclEntryRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ReplaceNetworkAclEntryRequest$Egress' => '

Indicates whether to replace the egress rule.

Default: If no value is specified, we replace the ingress rule.

', 'ReplaceRootVolumeTask$DeleteReplacedRootVolume' => '

Indicates whether the original root volume is to be deleted after the root volume replacement task completes.

', 'ReplaceRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ReplaceRouteRequest$LocalTarget' => '

Specifies whether to reset the local route to its default target (local).

', 'ReplaceRouteTableAssociationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ReplaceTransitGatewayRouteRequest$Blackhole' => '

Indicates whether traffic matching this route is to be dropped.

', 'ReplaceTransitGatewayRouteRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ReplaceVpnTunnelRequest$ApplyPendingMaintenance' => '

Trigger pending tunnel endpoint maintenance.

', 'ReplaceVpnTunnelRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ReplaceVpnTunnelResult$Return' => '

Confirmation of replace tunnel operation.

', 'ReportInstanceStatusRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RequestLaunchTemplateData$EbsOptimized' => '

Indicates whether the instance is optimized for Amazon EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal Amazon EBS I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS-optimized instance.

', 'RequestLaunchTemplateData$DisableApiTermination' => '

If you set this parameter to true, you can\'t terminate the instance using the Amazon EC2 console, CLI, or API; otherwise, you can. To change this attribute after launch, use ModifyInstanceAttribute. Alternatively, if you set InstanceInitiatedShutdownBehavior to terminate, you can terminate the instance by running the shutdown command from the instance.

', 'RequestLaunchTemplateData$DisableApiStop' => '

Indicates whether to enable the instance for stop protection. For more information, see Stop protection in the Amazon Elastic Compute Cloud User Guide.

', 'RequestSpotFleetRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RequestSpotInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RequestSpotLaunchSpecification$EbsOptimized' => '

Indicates whether the instance is optimized for EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal EBS I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS Optimized instance.

Default: false

', 'ReservationFleetInstanceSpecification$EbsOptimized' => '

Indicates whether the Capacity Reservation Fleet supports EBS-optimized instances types. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using EBS-optimized instance types.

', 'ReservedInstancesOffering$Marketplace' => '

Indicates whether the offering is available through the Reserved Instance Marketplace (resale) or Amazon Web Services. If it\'s a Reserved Instance Marketplace offering, this is true.

', 'ResetAddressAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ResetEbsDefaultKmsKeyIdRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ResetFpgaImageAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ResetFpgaImageAttributeResult$Return' => '

Is true if the request succeeds, and an error otherwise.

', 'ResetImageAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ResetInstanceAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ResetNetworkInterfaceAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ResetSnapshotAttributeRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ResponseLaunchTemplateData$EbsOptimized' => '

Indicates whether the instance is optimized for Amazon EBS I/O.

', 'ResponseLaunchTemplateData$DisableApiTermination' => '

If set to true, indicates that the instance cannot be terminated using the Amazon EC2 console, command line tool, or API.

', 'ResponseLaunchTemplateData$DisableApiStop' => '

Indicates whether the instance is enabled for stop protection. For more information, see Stop protection in the Amazon Elastic Compute Cloud User Guide.

', 'RestoreAddressToClassicRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RestoreImageFromRecycleBinRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RestoreImageFromRecycleBinResult$Return' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'RestoreManagedPrefixListVersionRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RestoreSnapshotFromRecycleBinRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RestoreSnapshotFromRecycleBinResult$Encrypted' => '

Indicates whether the snapshot is encrypted.

', 'RestoreSnapshotTierRequest$PermanentRestore' => '

Indicates whether to permanently restore an archived snapshot. To permanently restore an archived snapshot, specify true and omit the RestoreSnapshotTierRequest$TemporaryRestoreDays parameter.

', 'RestoreSnapshotTierRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RestoreSnapshotTierResult$IsPermanentRestore' => '

Indicates whether the snapshot is permanently restored. true indicates a permanent restore. false indicates a temporary restore.

', 'RevokeClientVpnIngressRequest$RevokeAllGroups' => '

Indicates whether access should be revoked for all clients.

', 'RevokeClientVpnIngressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RevokeSecurityGroupEgressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RevokeSecurityGroupEgressResult$Return' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'RevokeSecurityGroupIngressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RevokeSecurityGroupIngressResult$Return' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'RouteTableAssociation$Main' => '

Indicates whether this is the main route table.

', 'RunInstancesMonitoringEnabled$Enabled' => '

Indicates whether detailed monitoring is enabled. Otherwise, basic monitoring is enabled.

', 'RunInstancesRequest$DisableApiTermination' => '

If you set this parameter to true, you can\'t terminate the instance using the Amazon EC2 console, CLI, or API; otherwise, you can. To change this attribute after launch, use ModifyInstanceAttribute. Alternatively, if you set InstanceInitiatedShutdownBehavior to terminate, you can terminate the instance by running the shutdown command from the instance.

Default: false

', 'RunInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'RunInstancesRequest$EbsOptimized' => '

Indicates whether the instance is optimized for Amazon EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal Amazon EBS I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS-optimized instance.

Default: false

', 'RunInstancesRequest$DisableApiStop' => '

Indicates whether an instance is enabled for stop protection. For more information, see Stop protection.

', 'RunInstancesRequest$EnablePrimaryIpv6' => '

If you’re launching an instance into a dual-stack or IPv6-only subnet, you can enable assigning a primary IPv6 address. A primary IPv6 address is an IPv6 GUA address associated with an ENI that you have enabled to use a primary IPv6 address. Use this option if an instance relies on its IPv6 address not changing. When you launch the instance, Amazon Web Services will automatically assign an IPv6 address associated with the ENI attached to your instance to be the primary IPv6 address. Once you enable an IPv6 GUA address to be a primary IPv6, you cannot disable it. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. If you have multiple IPv6 addresses associated with an ENI attached to your instance and you enable a primary IPv6 address, the first IPv6 GUA address associated with the ENI becomes the primary IPv6 address.

', 'RunScheduledInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ScheduledInstanceRecurrence$OccurrenceRelativeToEnd' => '

Indicates whether the occurrence is relative to the end of the specified week or month.

', 'ScheduledInstanceRecurrenceRequest$OccurrenceRelativeToEnd' => '

Indicates whether the occurrence is relative to the end of the specified week or month. You can\'t specify this value with a daily schedule.

', 'ScheduledInstancesEbs$DeleteOnTermination' => '

Indicates whether the volume is deleted on instance termination.

', 'ScheduledInstancesEbs$Encrypted' => '

Indicates whether the volume is encrypted. You can attached encrypted volumes only to instances that support them.

', 'ScheduledInstancesLaunchSpecification$EbsOptimized' => '

Indicates whether the instances are optimized for EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal EBS I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS-optimized instance.

Default: false

', 'ScheduledInstancesMonitoring$Enabled' => '

Indicates whether monitoring is enabled.

', 'ScheduledInstancesNetworkInterface$AssociatePublicIpAddress' => '

Indicates whether to assign a public IPv4 address to instances launched in a VPC. The public IPv4 address can only be assigned to a network interface for eth0, and can only be assigned to a new network interface, not an existing one. You cannot specify more than one network interface in the request. If launching into a default subnet, the default value is true.

Starting on February 1, 2024, Amazon Web Services will charge for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the Public IPv4 Address tab on the Amazon VPC pricing page.

', 'ScheduledInstancesNetworkInterface$DeleteOnTermination' => '

Indicates whether to delete the interface when the instance is terminated.

', 'ScheduledInstancesPrivateIpAddressConfig$Primary' => '

Indicates whether this is a primary IPv4 address. Otherwise, this is a secondary IPv4 address.

', 'SearchLocalGatewayRoutesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'SearchTransitGatewayMulticastGroupsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'SearchTransitGatewayRoutesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'SearchTransitGatewayRoutesResult$AdditionalRoutesAvailable' => '

Indicates whether there are additional routes available.

', 'SecurityGroupRule$IsEgress' => '

Indicates whether the security group rule is an outbound rule.

', 'SendDiagnosticInterruptRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'ServiceConfiguration$AcceptanceRequired' => '

Indicates whether requests from other Amazon Web Services accounts to create an endpoint to the service must first be accepted.

', 'ServiceConfiguration$ManagesVpcEndpoints' => '

Indicates whether the service manages its VPC endpoints. Management of the service VPC endpoints using the VPC endpoint API is restricted.

', 'ServiceDetail$VpcEndpointPolicySupported' => '

Indicates whether the service supports endpoint policies.

', 'ServiceDetail$AcceptanceRequired' => '

Indicates whether VPC endpoint connection requests to the service must be accepted by the service owner.

', 'ServiceDetail$ManagesVpcEndpoints' => '

Indicates whether the service manages its VPC endpoints. Management of the service VPC endpoints using the VPC endpoint API is restricted.

', 'Snapshot$Encrypted' => '

Indicates whether the snapshot is encrypted.

', 'SnapshotInfo$Encrypted' => '

Indicates whether the snapshot is encrypted.

', 'SnapshotTaskDetail$Encrypted' => '

Indicates whether the snapshot is encrypted.

', 'SpotFleetLaunchSpecification$EbsOptimized' => '

Indicates whether the instances are optimized for EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal EBS I/O performance. This optimization isn\'t available with all instance types. Additional usage charges apply when using an EBS Optimized instance.

Default: false

', 'SpotFleetMonitoring$Enabled' => '

Enables monitoring for the instance.

Default: false

', 'SpotFleetRequestConfigData$TerminateInstancesWithExpiration' => '

Indicates whether running Spot Instances are terminated when the Spot Fleet request expires.

', 'SpotFleetRequestConfigData$ReplaceUnhealthyInstances' => '

Indicates whether Spot Fleet should replace unhealthy instances.

', 'SpotOptions$SingleInstanceType' => '

Indicates that the fleet uses a single instance type to launch all Spot Instances in the fleet.

Supported only for fleets of type instant.

', 'SpotOptions$SingleAvailabilityZone' => '

Indicates that the fleet launches all Spot Instances into a single Availability Zone.

Supported only for fleets of type instant.

', 'SpotOptionsRequest$SingleInstanceType' => '

Indicates that the fleet uses a single instance type to launch all Spot Instances in the fleet.

Supported only for fleets of type instant.

', 'SpotOptionsRequest$SingleAvailabilityZone' => '

Indicates that the fleet launches all Spot Instances into a single Availability Zone.

Supported only for fleets of type instant.

', 'StartInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'StartNetworkInsightsAccessScopeAnalysisRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'StartNetworkInsightsAnalysisRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'StartVpcEndpointServicePrivateDnsVerificationRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'StartVpcEndpointServicePrivateDnsVerificationResult$ReturnValue' => '

Returns true if the request succeeds; otherwise, it returns an error.

', 'StopInstancesRequest$Hibernate' => '

Hibernates the instance if the instance was enabled for hibernation at launch. If the instance cannot hibernate successfully, a normal shutdown occurs. For more information, see Hibernate your instance in the Amazon EC2 User Guide.

Default: false

', 'StopInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'StopInstancesRequest$Force' => '

Forces the instances to stop. The instances do not have an opportunity to flush file system caches or file system metadata. If you use this option, you must perform file system check and repair procedures. This option is not recommended for Windows instances.

Default: false

', 'Subnet$DefaultForAz' => '

Indicates whether this is the default subnet for the Availability Zone.

', 'Subnet$MapPublicIpOnLaunch' => '

Indicates whether instances launched in this subnet receive a public IPv4 address.

Starting on February 1, 2024, Amazon Web Services will charge for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the Public IPv4 Address tab on the Amazon VPC pricing page.

', 'Subnet$MapCustomerOwnedIpOnLaunch' => '

Indicates whether a network interface created in this subnet (including a network interface created by RunInstances) receives a customer-owned IPv4 address.

', 'Subnet$AssignIpv6AddressOnCreation' => '

Indicates whether a network interface created in this subnet (including a network interface created by RunInstances) receives an IPv6 address.

', 'Subnet$EnableDns64' => '

Indicates whether DNS queries made to the Amazon-provided DNS Resolver in this subnet should return synthetic IPv6 addresses for IPv4-only destinations.

', 'Subnet$Ipv6Native' => '

Indicates whether this is an IPv6 only subnet.

', 'TerminateClientVpnConnectionsRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'TerminateInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'TransitGatewayMulticastGroup$GroupMember' => '

Indicates that the resource is a transit gateway multicast group member.

', 'TransitGatewayMulticastGroup$GroupSource' => '

Indicates that the resource is a transit gateway multicast group member.

', 'TransitGatewayPrefixListReference$Blackhole' => '

Indicates whether traffic that matches this route is dropped.

', 'TransitGatewayRouteTable$DefaultAssociationRouteTable' => '

Indicates whether this is the default association route table for the transit gateway.

', 'TransitGatewayRouteTable$DefaultPropagationRouteTable' => '

Indicates whether this is the default propagation route table for the transit gateway.

', 'TunnelOption$EnableTunnelLifecycleControl' => '

Status of tunnel endpoint lifecycle control feature.

', 'UnassignPrivateNatGatewayAddressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'UnlockSnapshotRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'UnmonitorInstancesRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'UpdateSecurityGroupRuleDescriptionsEgressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'UpdateSecurityGroupRuleDescriptionsEgressResult$Return' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'UpdateSecurityGroupRuleDescriptionsIngressRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', 'UpdateSecurityGroupRuleDescriptionsIngressResult$Return' => '

Returns true if the request succeeds; otherwise, returns an error.

', 'VerifiedAccessInstance$FipsEnabled' => '

Indicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance.

', 'VerifiedAccessLogCloudWatchLogsDestination$Enabled' => '

Indicates whether logging is enabled.

', 'VerifiedAccessLogCloudWatchLogsDestinationOptions$Enabled' => '

Indicates whether logging is enabled.

', 'VerifiedAccessLogKinesisDataFirehoseDestination$Enabled' => '

Indicates whether logging is enabled.

', 'VerifiedAccessLogKinesisDataFirehoseDestinationOptions$Enabled' => '

Indicates whether logging is enabled.

', 'VerifiedAccessLogOptions$IncludeTrustContext' => '

Indicates whether to include trust data sent by trust providers in the logs.

', 'VerifiedAccessLogS3Destination$Enabled' => '

Indicates whether logging is enabled.

', 'VerifiedAccessLogS3DestinationOptions$Enabled' => '

Indicates whether logging is enabled.

', 'VerifiedAccessLogs$IncludeTrustContext' => '

Indicates whether trust data is included in the logs.

', 'VerifiedAccessSseSpecificationRequest$CustomerManagedKeyEnabled' => '

Enable or disable the use of customer managed KMS keys for server side encryption.

Valid values: True | False

', 'VerifiedAccessSseSpecificationResponse$CustomerManagedKeyEnabled' => '

Indicates whether customer managed KMS keys are in use for server side encryption.

Valid values: True | False

', 'Volume$Encrypted' => '

Indicates whether the volume is encrypted.

', 'Volume$FastRestored' => '

Indicates whether the volume was created using fast snapshot restore.

', 'Volume$MultiAttachEnabled' => '

Indicates whether Amazon EBS Multi-Attach is enabled.

', 'VolumeAttachment$DeleteOnTermination' => '

Indicates whether the EBS volume is deleted on instance termination.

', 'VolumeModification$TargetMultiAttachEnabled' => '

The target setting for Amazon EBS Multi-Attach.

', 'VolumeModification$OriginalMultiAttachEnabled' => '

The original setting for Amazon EBS Multi-Attach.

', 'Vpc$IsDefault' => '

Indicates whether the VPC is the default VPC.

', 'VpcClassicLink$ClassicLinkEnabled' => '

Indicates whether the VPC is enabled for ClassicLink.

', 'VpcEndpoint$PrivateDnsEnabled' => '

(Interface endpoint) Indicates whether the VPC is associated with a private hosted zone.

', 'VpcEndpoint$RequesterManaged' => '

Indicates whether the endpoint is being managed by its service.

', 'VpcPeeringConnectionOptionsDescription$AllowDnsResolutionFromRemoteVpc' => '

Indicates whether a local VPC can resolve public DNS hostnames to private IP addresses when queried from instances in a peer VPC.

', 'VpcPeeringConnectionOptionsDescription$AllowEgressFromLocalClassicLinkToRemoteVpc' => '

Deprecated.

', 'VpcPeeringConnectionOptionsDescription$AllowEgressFromLocalVpcToRemoteClassicLink' => '

Deprecated.

', 'VpnConnectionOptions$EnableAcceleration' => '

Indicates whether acceleration is enabled for the VPN connection.

', 'VpnConnectionOptions$StaticRoutesOnly' => '

Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don\'t support BGP.

', 'VpnConnectionOptionsSpecification$EnableAcceleration' => '

Indicate whether to enable acceleration for the VPN connection.

Default: false

', 'VpnConnectionOptionsSpecification$StaticRoutesOnly' => '

Indicate whether the VPN connection uses static routes only. If you are creating a VPN connection for a device that does not support BGP, you must specify true. Use CreateVpnConnectionRoute to create a static route.

Default: false

', 'VpnTunnelOptionsSpecification$EnableTunnelLifecycleControl' => '

Turn on or off tunnel endpoint lifecycle control feature.

', 'WithdrawByoipCidrRequest$DryRun' => '

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

', ], ], 'BootModeType' => [ 'base' => NULL, 'refs' => [ 'BootModeTypeList$member' => NULL, ], ], 'BootModeTypeList' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$SupportedBootModes' => '

The supported boot modes. For more information, see Boot modes in the Amazon EC2 User Guide.

', ], ], 'BootModeValues' => [ 'base' => NULL, 'refs' => [ 'Image$BootMode' => '

The boot mode of the image. For more information, see Boot modes in the Amazon EC2 User Guide.

', 'ImportImageRequest$BootMode' => '

The boot mode of the virtual machine.

The uefi-preferred boot mode isn\'t supported for importing images. For more information, see Boot modes in the VM Import/Export User Guide.

', 'ImportImageTask$BootMode' => '

The boot mode of the virtual machine.

', 'Instance$BootMode' => '

The boot mode that was specified by the AMI. If the value is uefi-preferred, the AMI supports both UEFI and Legacy BIOS. The currentInstanceBootMode parameter is the boot mode that is used to boot the instance at launch or start.

The operating system contained in the AMI must be configured to support the specified boot mode.

For more information, see Boot modes in the Amazon EC2 User Guide.

', 'RegisterImageRequest$BootMode' => '

The boot mode of the AMI. A value of uefi-preferred indicates that the AMI supports both UEFI and Legacy BIOS.

The operating system contained in the AMI must be configured to support the specified boot mode.

For more information, see Boot modes in the Amazon EC2 User Guide.

', ], ], 'BoxedDouble' => [ 'base' => NULL, 'refs' => [ 'IpamDiscoveredResourceCidr$IpUsage' => '

The percentage of IP address space in use. To convert the decimal to a percentage, multiply the decimal by 100. Note the following:

  • For resources that are VPCs, this is the percentage of IP address space in the VPC that\'s taken up by subnet CIDRs.

  • For resources that are subnets, if the subnet has an IPv4 CIDR provisioned to it, this is the percentage of IPv4 address space in the subnet that\'s in use. If the subnet has an IPv6 CIDR provisioned to it, the percentage of IPv6 address space in use is not represented. The percentage of IPv6 address space in use cannot currently be calculated.

  • For resources that are public IPv4 pools, this is the percentage of IP address space in the pool that\'s been allocated to Elastic IP addresses (EIPs).

', 'IpamResourceCidr$IpUsage' => '

The percentage of IP address space in use. To convert the decimal to a percentage, multiply the decimal by 100. Note the following:

  • For resources that are VPCs, this is the percentage of IP address space in the VPC that\'s taken up by subnet CIDRs.

  • For resources that are subnets, if the subnet has an IPv4 CIDR provisioned to it, this is the percentage of IPv4 address space in the subnet that\'s in use. If the subnet has an IPv6 CIDR provisioned to it, the percentage of IPv6 address space in use is not represented. The percentage of IPv6 address space in use cannot currently be calculated.

  • For resources that are public IPv4 pools, this is the percentage of IP address space in the pool that\'s been allocated to Elastic IP addresses (EIPs).

', ], ], 'BundleId' => [ 'base' => NULL, 'refs' => [ 'BundleIdStringList$member' => NULL, 'CancelBundleTaskRequest$BundleId' => '

The ID of the bundle task.

', ], ], 'BundleIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeBundleTasksRequest$BundleIds' => '

The bundle task IDs.

Default: Describes all your bundle tasks.

', ], ], 'BundleInstanceRequest' => [ 'base' => '

Contains the parameters for BundleInstance.

', 'refs' => [], ], 'BundleInstanceResult' => [ 'base' => '

Contains the output of BundleInstance.

', 'refs' => [], ], 'BundleTask' => [ 'base' => '

Describes a bundle task.

', 'refs' => [ 'BundleInstanceResult$BundleTask' => '

Information about the bundle task.

', 'BundleTaskList$member' => NULL, 'CancelBundleTaskResult$BundleTask' => '

Information about the bundle task.

', ], ], 'BundleTaskError' => [ 'base' => '

Describes an error for BundleInstance.

', 'refs' => [ 'BundleTask$BundleTaskError' => '

If the task fails, a description of the error.

', ], ], 'BundleTaskList' => [ 'base' => NULL, 'refs' => [ 'DescribeBundleTasksResult$BundleTasks' => '

Information about the bundle tasks.

', ], ], 'BundleTaskState' => [ 'base' => NULL, 'refs' => [ 'BundleTask$State' => '

The state of the task.

', ], ], 'BurstablePerformance' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$BurstablePerformance' => '

Indicates whether burstable performance T instance types are included, excluded, or required. For more information, see Burstable performance instances.

  • To include burstable performance instance types, specify included.

  • To require only burstable performance instance types, specify required.

  • To exclude burstable performance instance types, specify excluded.

Default: excluded

', 'InstanceRequirementsRequest$BurstablePerformance' => '

Indicates whether burstable performance T instance types are included, excluded, or required. For more information, see Burstable performance instances.

  • To include burstable performance instance types, specify included.

  • To require only burstable performance instance types, specify required.

  • To exclude burstable performance instance types, specify excluded.

Default: excluded

', ], ], 'BurstablePerformanceFlag' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$BurstablePerformanceSupported' => '

Indicates whether the instance type is a burstable performance T instance type. For more information, see Burstable performance instances.

', ], ], 'Byoasn' => [ 'base' => '

The Autonomous System Number (ASN) and BYOIP CIDR association.

', 'refs' => [ 'ByoasnSet$member' => NULL, 'DeprovisionIpamByoasnResult$Byoasn' => '

An ASN and BYOIP CIDR association.

', 'ProvisionIpamByoasnResult$Byoasn' => '

An ASN and BYOIP CIDR association.

', ], ], 'ByoasnSet' => [ 'base' => NULL, 'refs' => [ 'DescribeIpamByoasnResult$Byoasns' => '

ASN and BYOIP CIDR associations.

', ], ], 'ByoipCidr' => [ 'base' => '

Information about an address range that is provisioned for use with your Amazon Web Services resources through bring your own IP addresses (BYOIP).

', 'refs' => [ 'AdvertiseByoipCidrResult$ByoipCidr' => '

Information about the address range.

', 'ByoipCidrSet$member' => NULL, 'DeprovisionByoipCidrResult$ByoipCidr' => '

Information about the address range.

', 'MoveByoipCidrToIpamResult$ByoipCidr' => '

The BYOIP CIDR.

', 'ProvisionByoipCidrResult$ByoipCidr' => '

Information about the address range.

', 'WithdrawByoipCidrResult$ByoipCidr' => '

Information about the address pool.

', ], ], 'ByoipCidrSet' => [ 'base' => NULL, 'refs' => [ 'DescribeByoipCidrsResult$ByoipCidrs' => '

Information about your address ranges.

', ], ], 'ByoipCidrState' => [ 'base' => NULL, 'refs' => [ 'ByoipCidr$State' => '

The state of the address pool.

', ], ], 'CancelBatchErrorCode' => [ 'base' => NULL, 'refs' => [ 'CancelSpotFleetRequestsError$Code' => '

The error code.

', ], ], 'CancelBundleTaskRequest' => [ 'base' => '

Contains the parameters for CancelBundleTask.

', 'refs' => [], ], 'CancelBundleTaskResult' => [ 'base' => '

Contains the output of CancelBundleTask.

', 'refs' => [], ], 'CancelCapacityReservationFleetError' => [ 'base' => '

Describes a Capacity Reservation Fleet cancellation error.

', 'refs' => [ 'FailedCapacityReservationFleetCancellationResult$CancelCapacityReservationFleetError' => '

Information about the Capacity Reservation Fleet cancellation error.

', ], ], 'CancelCapacityReservationFleetErrorCode' => [ 'base' => NULL, 'refs' => [ 'CancelCapacityReservationFleetError$Code' => '

The error code.

', ], ], 'CancelCapacityReservationFleetErrorMessage' => [ 'base' => NULL, 'refs' => [ 'CancelCapacityReservationFleetError$Message' => '

The error message.

', ], ], 'CancelCapacityReservationFleetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelCapacityReservationFleetsResult' => [ 'base' => NULL, 'refs' => [], ], 'CancelCapacityReservationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelCapacityReservationResult' => [ 'base' => NULL, 'refs' => [], ], 'CancelConversionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelExportTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelImageLaunchPermissionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelImageLaunchPermissionResult' => [ 'base' => NULL, 'refs' => [], ], 'CancelImportTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelImportTaskResult' => [ 'base' => NULL, 'refs' => [], ], 'CancelReservedInstancesListingRequest' => [ 'base' => '

Contains the parameters for CancelReservedInstancesListing.

', 'refs' => [], ], 'CancelReservedInstancesListingResult' => [ 'base' => '

Contains the output of CancelReservedInstancesListing.

', 'refs' => [], ], 'CancelSpotFleetRequestsError' => [ 'base' => '

Describes a Spot Fleet error.

', 'refs' => [ 'CancelSpotFleetRequestsErrorItem$Error' => '

The error.

', ], ], 'CancelSpotFleetRequestsErrorItem' => [ 'base' => '

Describes a Spot Fleet request that was not successfully canceled.

', 'refs' => [ 'CancelSpotFleetRequestsErrorSet$member' => NULL, ], ], 'CancelSpotFleetRequestsErrorSet' => [ 'base' => NULL, 'refs' => [ 'CancelSpotFleetRequestsResponse$UnsuccessfulFleetRequests' => '

Information about the Spot Fleet requests that are not successfully canceled.

', ], ], 'CancelSpotFleetRequestsRequest' => [ 'base' => '

Contains the parameters for CancelSpotFleetRequests.

', 'refs' => [], ], 'CancelSpotFleetRequestsResponse' => [ 'base' => '

Contains the output of CancelSpotFleetRequests.

', 'refs' => [], ], 'CancelSpotFleetRequestsSuccessItem' => [ 'base' => '

Describes a Spot Fleet request that was successfully canceled.

', 'refs' => [ 'CancelSpotFleetRequestsSuccessSet$member' => NULL, ], ], 'CancelSpotFleetRequestsSuccessSet' => [ 'base' => NULL, 'refs' => [ 'CancelSpotFleetRequestsResponse$SuccessfulFleetRequests' => '

Information about the Spot Fleet requests that are successfully canceled.

', ], ], 'CancelSpotInstanceRequestState' => [ 'base' => NULL, 'refs' => [ 'CancelledSpotInstanceRequest$State' => '

The state of the Spot Instance request.

', ], ], 'CancelSpotInstanceRequestsRequest' => [ 'base' => '

Contains the parameters for CancelSpotInstanceRequests.

', 'refs' => [], ], 'CancelSpotInstanceRequestsResult' => [ 'base' => '

Contains the output of CancelSpotInstanceRequests.

', 'refs' => [], ], 'CancelledSpotInstanceRequest' => [ 'base' => '

Describes a request to cancel a Spot Instance.

', 'refs' => [ 'CancelledSpotInstanceRequestList$member' => NULL, ], ], 'CancelledSpotInstanceRequestList' => [ 'base' => NULL, 'refs' => [ 'CancelSpotInstanceRequestsResult$CancelledSpotInstanceRequests' => '

The Spot Instance requests.

', ], ], 'CapacityAllocation' => [ 'base' => '

Information about instance capacity usage for a Capacity Reservation.

', 'refs' => [ 'CapacityAllocations$member' => NULL, ], ], 'CapacityAllocations' => [ 'base' => NULL, 'refs' => [ 'CapacityReservation$CapacityAllocations' => '

Information about instance capacity usage.

', ], ], 'CapacityBlockOffering' => [ 'base' => '

The recommended Capacity Block that fits your search requirements.

', 'refs' => [ 'CapacityBlockOfferingSet$member' => NULL, ], ], 'CapacityBlockOfferingSet' => [ 'base' => NULL, 'refs' => [ 'DescribeCapacityBlockOfferingsResult$CapacityBlockOfferings' => '

The recommended Capacity Block offering for the dates specified.

', ], ], 'CapacityReservation' => [ 'base' => '

Describes a Capacity Reservation.

', 'refs' => [ 'CapacityReservationSet$member' => NULL, 'CreateCapacityReservationResult$CapacityReservation' => '

Information about the Capacity Reservation.

', 'PurchaseCapacityBlockResult$CapacityReservation' => '

The Capacity Reservation.

', ], ], 'CapacityReservationFleet' => [ 'base' => '

Information about a Capacity Reservation Fleet.

', 'refs' => [ 'CapacityReservationFleetSet$member' => NULL, ], ], 'CapacityReservationFleetCancellationState' => [ 'base' => '

Describes a Capacity Reservation Fleet that was successfully cancelled.

', 'refs' => [ 'CapacityReservationFleetCancellationStateSet$member' => NULL, ], ], 'CapacityReservationFleetCancellationStateSet' => [ 'base' => NULL, 'refs' => [ 'CancelCapacityReservationFleetsResult$SuccessfulFleetCancellations' => '

Information about the Capacity Reservation Fleets that were successfully cancelled.

', ], ], 'CapacityReservationFleetId' => [ 'base' => NULL, 'refs' => [ 'CapacityReservationFleet$CapacityReservationFleetId' => '

The ID of the Capacity Reservation Fleet.

', 'CapacityReservationFleetCancellationState$CapacityReservationFleetId' => '

The ID of the Capacity Reservation Fleet that was successfully cancelled.

', 'CapacityReservationFleetIdSet$member' => NULL, 'CreateCapacityReservationFleetResult$CapacityReservationFleetId' => '

The ID of the Capacity Reservation Fleet.

', 'FailedCapacityReservationFleetCancellationResult$CapacityReservationFleetId' => '

The ID of the Capacity Reservation Fleet that could not be cancelled.

', 'ModifyCapacityReservationFleetRequest$CapacityReservationFleetId' => '

The ID of the Capacity Reservation Fleet to modify.

', ], ], 'CapacityReservationFleetIdSet' => [ 'base' => NULL, 'refs' => [ 'CancelCapacityReservationFleetsRequest$CapacityReservationFleetIds' => '

The IDs of the Capacity Reservation Fleets to cancel.

', 'DescribeCapacityReservationFleetsRequest$CapacityReservationFleetIds' => '

The IDs of the Capacity Reservation Fleets to describe.

', ], ], 'CapacityReservationFleetSet' => [ 'base' => NULL, 'refs' => [ 'DescribeCapacityReservationFleetsResult$CapacityReservationFleets' => '

Information about the Capacity Reservation Fleets.

', ], ], 'CapacityReservationFleetState' => [ 'base' => NULL, 'refs' => [ 'CapacityReservationFleet$State' => '

The state of the Capacity Reservation Fleet. Possible states include:

  • submitted - The Capacity Reservation Fleet request has been submitted and Amazon Elastic Compute Cloud is preparing to create the Capacity Reservations.

  • modifying - The Capacity Reservation Fleet is being modified. The Fleet remains in this state until the modification is complete.

  • active - The Capacity Reservation Fleet has fulfilled its total target capacity and it is attempting to maintain this capacity. The Fleet remains in this state until it is modified or deleted.

  • partially_fulfilled - The Capacity Reservation Fleet has partially fulfilled its total target capacity. There is insufficient Amazon EC2 to fulfill the total target capacity. The Fleet is attempting to asynchronously fulfill its total target capacity.

  • expiring - The Capacity Reservation Fleet has reach its end date and it is in the process of expiring. One or more of its Capacity reservations might still be active.

  • expired - The Capacity Reservation Fleet has reach its end date. The Fleet and its Capacity Reservations are expired. The Fleet can\'t create new Capacity Reservations.

  • cancelling - The Capacity Reservation Fleet is in the process of being cancelled. One or more of its Capacity reservations might still be active.

  • cancelled - The Capacity Reservation Fleet has been manually cancelled. The Fleet and its Capacity Reservations are cancelled and the Fleet can\'t create new Capacity Reservations.

  • failed - The Capacity Reservation Fleet failed to reserve capacity for the specified instance types.

', 'CapacityReservationFleetCancellationState$CurrentFleetState' => '

The current state of the Capacity Reservation Fleet.

', 'CapacityReservationFleetCancellationState$PreviousFleetState' => '

The previous state of the Capacity Reservation Fleet.

', 'CreateCapacityReservationFleetResult$State' => '

The status of the Capacity Reservation Fleet.

', ], ], 'CapacityReservationGroup' => [ 'base' => '

Describes a resource group to which a Capacity Reservation has been added.

', 'refs' => [ 'CapacityReservationGroupSet$member' => NULL, ], ], 'CapacityReservationGroupSet' => [ 'base' => NULL, 'refs' => [ 'GetGroupsForCapacityReservationResult$CapacityReservationGroups' => '

Information about the resource groups to which the Capacity Reservation has been added.

', ], ], 'CapacityReservationId' => [ 'base' => NULL, 'refs' => [ 'CancelCapacityReservationRequest$CapacityReservationId' => '

The ID of the Capacity Reservation to be cancelled.

', 'CapacityReservationIdSet$member' => NULL, 'CapacityReservationTarget$CapacityReservationId' => '

The ID of the Capacity Reservation in which to run the instance.

', 'FleetCapacityReservation$CapacityReservationId' => '

The ID of the Capacity Reservation.

', 'GetCapacityReservationUsageRequest$CapacityReservationId' => '

The ID of the Capacity Reservation.

', 'GetGroupsForCapacityReservationRequest$CapacityReservationId' => '

The ID of the Capacity Reservation. If you specify a Capacity Reservation that is shared with you, the operation returns only Capacity Reservation groups that you own.

', 'ModifyCapacityReservationRequest$CapacityReservationId' => '

The ID of the Capacity Reservation.

', ], ], 'CapacityReservationIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeCapacityReservationsRequest$CapacityReservationIds' => '

The ID of the Capacity Reservation.

', ], ], 'CapacityReservationInstancePlatform' => [ 'base' => NULL, 'refs' => [ 'CapacityReservation$InstancePlatform' => '

The type of operating system for which the Capacity Reservation reserves capacity.

', 'CreateCapacityReservationRequest$InstancePlatform' => '

The type of operating system for which to reserve capacity.

', 'FleetCapacityReservation$InstancePlatform' => '

The type of operating system for which the Capacity Reservation reserves capacity.

', 'PurchaseCapacityBlockRequest$InstancePlatform' => '

The type of operating system for which to reserve capacity.

', 'ReservationFleetInstanceSpecification$InstancePlatform' => '

The type of operating system for which the Capacity Reservation Fleet reserves capacity.

', ], ], 'CapacityReservationOptions' => [ 'base' => '

Describes the strategy for using unused Capacity Reservations for fulfilling On-Demand capacity.

This strategy can only be used if the EC2 Fleet is of type instant.

For more information about Capacity Reservations, see On-Demand Capacity Reservations in the Amazon EC2 User Guide. For examples of using Capacity Reservations in an EC2 Fleet, see EC2 Fleet example configurations in the Amazon EC2 User Guide.

', 'refs' => [ 'OnDemandOptions$CapacityReservationOptions' => '

The strategy for using unused Capacity Reservations for fulfilling On-Demand capacity.

Supported only for fleets of type instant.

', ], ], 'CapacityReservationOptionsRequest' => [ 'base' => '

Describes the strategy for using unused Capacity Reservations for fulfilling On-Demand capacity.

This strategy can only be used if the EC2 Fleet is of type instant.

For more information about Capacity Reservations, see On-Demand Capacity Reservations in the Amazon EC2 User Guide. For examples of using Capacity Reservations in an EC2 Fleet, see EC2 Fleet example configurations in the Amazon EC2 User Guide.

', 'refs' => [ 'OnDemandOptionsRequest$CapacityReservationOptions' => '

The strategy for using unused Capacity Reservations for fulfilling On-Demand capacity.

Supported only for fleets of type instant.

', ], ], 'CapacityReservationPreference' => [ 'base' => NULL, 'refs' => [ 'CapacityReservationSpecification$CapacityReservationPreference' => '

Indicates the instance\'s Capacity Reservation preferences. Possible preferences include:

  • open - The instance can run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).

  • none - The instance avoids running in a Capacity Reservation even if one is available. The instance runs as an On-Demand Instance.

', 'CapacityReservationSpecificationResponse$CapacityReservationPreference' => '

Describes the instance\'s Capacity Reservation preferences. Possible preferences include:

  • open - The instance can run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).

  • none - The instance avoids running in a Capacity Reservation even if one is available. The instance runs in On-Demand capacity.

', 'LaunchTemplateCapacityReservationSpecificationRequest$CapacityReservationPreference' => '

Indicates the instance\'s Capacity Reservation preferences. Possible preferences include:

  • open - The instance can run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).

  • none - The instance avoids running in a Capacity Reservation even if one is available. The instance runs in On-Demand capacity.

', 'LaunchTemplateCapacityReservationSpecificationResponse$CapacityReservationPreference' => '

Indicates the instance\'s Capacity Reservation preferences. Possible preferences include:

  • open - The instance can run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).

  • none - The instance avoids running in a Capacity Reservation even if one is available. The instance runs in On-Demand capacity.

', ], ], 'CapacityReservationSet' => [ 'base' => NULL, 'refs' => [ 'DescribeCapacityReservationsResult$CapacityReservations' => '

Information about the Capacity Reservations.

', ], ], 'CapacityReservationSpecification' => [ 'base' => '

Describes an instance\'s Capacity Reservation targeting option. You can specify only one parameter at a time. If you specify CapacityReservationPreference and CapacityReservationTarget, the request fails.

Use the CapacityReservationPreference parameter to configure the instance to run as an On-Demand Instance or to run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone). Use the CapacityReservationTarget parameter to explicitly target a specific Capacity Reservation or a Capacity Reservation group.

', 'refs' => [ 'ModifyInstanceCapacityReservationAttributesRequest$CapacityReservationSpecification' => '

Information about the Capacity Reservation targeting option.

', 'RunInstancesRequest$CapacityReservationSpecification' => '

Information about the Capacity Reservation targeting option. If you do not specify this parameter, the instance\'s Capacity Reservation preference defaults to open, which enables it to run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).

', ], ], 'CapacityReservationSpecificationResponse' => [ 'base' => '

Describes the instance\'s Capacity Reservation targeting preferences. The action returns the capacityReservationPreference response element if the instance is configured to run in On-Demand capacity, or if it is configured in run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone). The action returns the capacityReservationTarget response element if the instance explicily targets a specific Capacity Reservation or Capacity Reservation group.

', 'refs' => [ 'Instance$CapacityReservationSpecification' => '

Information about the Capacity Reservation targeting option.

', ], ], 'CapacityReservationState' => [ 'base' => NULL, 'refs' => [ 'CapacityReservation$State' => '

The current state of the Capacity Reservation. A Capacity Reservation can be in one of the following states:

  • active - The Capacity Reservation is active and the capacity is available for your use.

  • expired - The Capacity Reservation expired automatically at the date and time specified in your request. The reserved capacity is no longer available for your use.

  • cancelled - The Capacity Reservation was cancelled. The reserved capacity is no longer available for your use.

  • pending - The Capacity Reservation request was successful but the capacity provisioning is still pending.

  • failed - The Capacity Reservation request has failed. A request might fail due to invalid request parameters, capacity constraints, or instance limit constraints. Failed requests are retained for 60 minutes.

', 'GetCapacityReservationUsageResult$State' => '

The current state of the Capacity Reservation. A Capacity Reservation can be in one of the following states:

  • active - The Capacity Reservation is active and the capacity is available for your use.

  • expired - The Capacity Reservation expired automatically at the date and time specified in your request. The reserved capacity is no longer available for your use.

  • cancelled - The Capacity Reservation was cancelled. The reserved capacity is no longer available for your use.

  • pending - The Capacity Reservation request was successful but the capacity provisioning is still pending.

  • failed - The Capacity Reservation request has failed. A request might fail due to invalid request parameters, capacity constraints, or instance limit constraints. Failed requests are retained for 60 minutes.

', ], ], 'CapacityReservationTarget' => [ 'base' => '

Describes a target Capacity Reservation or Capacity Reservation group.

', 'refs' => [ 'CapacityReservationSpecification$CapacityReservationTarget' => '

Information about the target Capacity Reservation or Capacity Reservation group.

', 'LaunchTemplateCapacityReservationSpecificationRequest$CapacityReservationTarget' => '

Information about the target Capacity Reservation or Capacity Reservation group.

', ], ], 'CapacityReservationTargetResponse' => [ 'base' => '

Describes a target Capacity Reservation or Capacity Reservation group.

', 'refs' => [ 'CapacityReservationSpecificationResponse$CapacityReservationTarget' => '

Information about the targeted Capacity Reservation or Capacity Reservation group.

', 'LaunchTemplateCapacityReservationSpecificationResponse$CapacityReservationTarget' => '

Information about the target Capacity Reservation or Capacity Reservation group.

', ], ], 'CapacityReservationTenancy' => [ 'base' => NULL, 'refs' => [ 'CapacityBlockOffering$Tenancy' => '

The tenancy of the Capacity Block.

', 'CapacityReservation$Tenancy' => '

Indicates the tenancy of the Capacity Reservation. A Capacity Reservation can have one of the following tenancy settings:

  • default - The Capacity Reservation is created on hardware that is shared with other Amazon Web Services accounts.

  • dedicated - The Capacity Reservation is created on single-tenant hardware that is dedicated to a single Amazon Web Services account.

', 'CreateCapacityReservationRequest$Tenancy' => '

Indicates the tenancy of the Capacity Reservation. A Capacity Reservation can have one of the following tenancy settings:

  • default - The Capacity Reservation is created on hardware that is shared with other Amazon Web Services accounts.

  • dedicated - The Capacity Reservation is created on single-tenant hardware that is dedicated to a single Amazon Web Services account.

', ], ], 'CapacityReservationType' => [ 'base' => NULL, 'refs' => [ 'CapacityReservation$ReservationType' => '

The type of Capacity Reservation.

', ], ], 'CarrierGateway' => [ 'base' => '

Describes a carrier gateway.

', 'refs' => [ 'CarrierGatewaySet$member' => NULL, 'CreateCarrierGatewayResult$CarrierGateway' => '

Information about the carrier gateway.

', 'DeleteCarrierGatewayResult$CarrierGateway' => '

Information about the carrier gateway.

', ], ], 'CarrierGatewayId' => [ 'base' => NULL, 'refs' => [ 'CarrierGateway$CarrierGatewayId' => '

The ID of the carrier gateway.

', 'CarrierGatewayIdSet$member' => NULL, 'CreateRouteRequest$CarrierGatewayId' => '

The ID of the carrier gateway.

You can only use this option when the VPC contains a subnet which is associated with a Wavelength Zone.

', 'DeleteCarrierGatewayRequest$CarrierGatewayId' => '

The ID of the carrier gateway.

', 'ReplaceRouteRequest$CarrierGatewayId' => '

[IPv4 traffic only] The ID of a carrier gateway.

', 'Route$CarrierGatewayId' => '

The ID of the carrier gateway.

', ], ], 'CarrierGatewayIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeCarrierGatewaysRequest$CarrierGatewayIds' => '

One or more carrier gateway IDs.

', ], ], 'CarrierGatewayMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeCarrierGatewaysRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'CarrierGatewaySet' => [ 'base' => NULL, 'refs' => [ 'DescribeCarrierGatewaysResult$CarrierGateways' => '

Information about the carrier gateway.

', ], ], 'CarrierGatewayState' => [ 'base' => NULL, 'refs' => [ 'CarrierGateway$State' => '

The state of the carrier gateway.

', ], ], 'CertificateArn' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointRequest$DomainCertificateArn' => '

The ARN of the public TLS/SSL certificate in Amazon Web Services Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.

', ], ], 'CertificateAuthentication' => [ 'base' => '

Information about the client certificate used for authentication.

', 'refs' => [ 'ClientVpnAuthentication$MutualAuthentication' => '

Information about the authentication certificates, if applicable.

', ], ], 'CertificateAuthenticationRequest' => [ 'base' => '

Information about the client certificate to be used for authentication.

', 'refs' => [ 'ClientVpnAuthenticationRequest$MutualAuthentication' => '

Information about the authentication certificates to be used, if applicable. You must provide this information if Type is certificate-authentication.

', ], ], 'CertificateId' => [ 'base' => NULL, 'refs' => [ 'AssociateEnclaveCertificateIamRoleRequest$CertificateArn' => '

The ARN of the ACM certificate with which to associate the IAM role.

', 'DisassociateEnclaveCertificateIamRoleRequest$CertificateArn' => '

The ARN of the ACM certificate from which to disassociate the IAM role.

', 'GetAssociatedEnclaveCertificateIamRolesRequest$CertificateArn' => '

The ARN of the ACM certificate for which to view the associated IAM roles, encryption keys, and Amazon S3 object information.

', ], ], 'CidrAuthorizationContext' => [ 'base' => '

Provides authorization for Amazon to bring a specific IP address range to a specific Amazon Web Services account using bring your own IP addresses (BYOIP). For more information, see Configuring your BYOIP address range in the Amazon Elastic Compute Cloud User Guide.

', 'refs' => [ 'ProvisionByoipCidrRequest$CidrAuthorizationContext' => '

A signed document that proves that you are authorized to bring the specified IP address range to Amazon using BYOIP.

', ], ], 'CidrBlock' => [ 'base' => '

Describes an IPv4 CIDR block.

', 'refs' => [ 'CidrBlockSet$member' => NULL, ], ], 'CidrBlockSet' => [ 'base' => NULL, 'refs' => [ 'VpcPeeringConnectionVpcInfo$CidrBlockSet' => '

Information about the IPv4 CIDR blocks for the VPC.

', ], ], 'ClassicLinkDnsSupport' => [ 'base' => '

Deprecated.

Describes the ClassicLink DNS support status of a VPC.

', 'refs' => [ 'ClassicLinkDnsSupportList$member' => NULL, ], ], 'ClassicLinkDnsSupportList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcClassicLinkDnsSupportResult$Vpcs' => '

Information about the ClassicLink DNS support status of the VPCs.

', ], ], 'ClassicLinkInstance' => [ 'base' => '

Deprecated.

Describes a linked EC2-Classic instance.

', 'refs' => [ 'ClassicLinkInstanceList$member' => NULL, ], ], 'ClassicLinkInstanceList' => [ 'base' => NULL, 'refs' => [ 'DescribeClassicLinkInstancesResult$Instances' => '

Information about one or more linked EC2-Classic instances.

', ], ], 'ClassicLoadBalancer' => [ 'base' => '

Describes a Classic Load Balancer.

', 'refs' => [ 'ClassicLoadBalancers$member' => NULL, ], ], 'ClassicLoadBalancers' => [ 'base' => NULL, 'refs' => [ 'ClassicLoadBalancersConfig$ClassicLoadBalancers' => '

One or more Classic Load Balancers.

', ], ], 'ClassicLoadBalancersConfig' => [ 'base' => '

Describes the Classic Load Balancers to attach to a Spot Fleet. Spot Fleet registers the running Spot Instances with these Classic Load Balancers.

', 'refs' => [ 'LoadBalancersConfig$ClassicLoadBalancersConfig' => '

The Classic Load Balancers.

', ], ], 'ClientCertificateRevocationListStatus' => [ 'base' => '

Describes the state of a client certificate revocation list.

', 'refs' => [ 'ExportClientVpnClientCertificateRevocationListResult$Status' => '

The current state of the client certificate revocation list.

', ], ], 'ClientCertificateRevocationListStatusCode' => [ 'base' => NULL, 'refs' => [ 'ClientCertificateRevocationListStatus$Code' => '

The state of the client certificate revocation list.

', ], ], 'ClientConnectOptions' => [ 'base' => '

The options for managing connection authorization for new client connections.

', 'refs' => [ 'CreateClientVpnEndpointRequest$ClientConnectOptions' => '

The options for managing connection authorization for new client connections.

', 'ModifyClientVpnEndpointRequest$ClientConnectOptions' => '

The options for managing connection authorization for new client connections.

', ], ], 'ClientConnectResponseOptions' => [ 'base' => '

The options for managing connection authorization for new client connections.

', 'refs' => [ 'ClientVpnEndpoint$ClientConnectOptions' => '

The options for managing connection authorization for new client connections.

', ], ], 'ClientData' => [ 'base' => '

Describes the client-specific data.

', 'refs' => [ 'ImportImageRequest$ClientData' => '

The client-specific data.

', 'ImportSnapshotRequest$ClientData' => '

The client-specific data.

', ], ], 'ClientLoginBannerOptions' => [ 'base' => '

Options for enabling a customizable text banner that will be displayed on Amazon Web Services provided clients when a VPN session is established.

', 'refs' => [ 'CreateClientVpnEndpointRequest$ClientLoginBannerOptions' => '

Options for enabling a customizable text banner that will be displayed on Amazon Web Services provided clients when a VPN session is established.

', 'ModifyClientVpnEndpointRequest$ClientLoginBannerOptions' => '

Options for enabling a customizable text banner that will be displayed on Amazon Web Services provided clients when a VPN session is established.

', ], ], 'ClientLoginBannerResponseOptions' => [ 'base' => '

Current state of options for customizable text banner that will be displayed on Amazon Web Services provided clients when a VPN session is established.

', 'refs' => [ 'ClientVpnEndpoint$ClientLoginBannerOptions' => '

Options for enabling a customizable text banner that will be displayed on Amazon Web Services provided clients when a VPN session is established.

', ], ], 'ClientSecretType' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessTrustProviderOidcOptions$ClientSecret' => '

The client secret.

', 'ModifyVerifiedAccessTrustProviderOidcOptions$ClientSecret' => '

The client secret.

', 'OidcOptions$ClientSecret' => '

The client secret.

', ], ], 'ClientVpnAuthentication' => [ 'base' => '

Describes the authentication methods used by a Client VPN endpoint. For more information, see Authentication in the Client VPN Administrator Guide.

', 'refs' => [ 'ClientVpnAuthenticationList$member' => NULL, ], ], 'ClientVpnAuthenticationList' => [ 'base' => NULL, 'refs' => [ 'ClientVpnEndpoint$AuthenticationOptions' => '

Information about the authentication method used by the Client VPN endpoint.

', ], ], 'ClientVpnAuthenticationRequest' => [ 'base' => '

Describes the authentication method to be used by a Client VPN endpoint. For more information, see Authentication in the Client VPN Administrator Guide.

', 'refs' => [ 'ClientVpnAuthenticationRequestList$member' => NULL, ], ], 'ClientVpnAuthenticationRequestList' => [ 'base' => NULL, 'refs' => [ 'CreateClientVpnEndpointRequest$AuthenticationOptions' => '

Information about the authentication method to be used to authenticate clients.

', ], ], 'ClientVpnAuthenticationType' => [ 'base' => NULL, 'refs' => [ 'ClientVpnAuthentication$Type' => '

The authentication type used.

', 'ClientVpnAuthenticationRequest$Type' => '

The type of client authentication to be used.

', ], ], 'ClientVpnAuthorizationRuleStatus' => [ 'base' => '

Describes the state of an authorization rule.

', 'refs' => [ 'AuthorizationRule$Status' => '

The current state of the authorization rule.

', 'AuthorizeClientVpnIngressResult$Status' => '

The current state of the authorization rule.

', 'RevokeClientVpnIngressResult$Status' => '

The current state of the authorization rule.

', ], ], 'ClientVpnAuthorizationRuleStatusCode' => [ 'base' => NULL, 'refs' => [ 'ClientVpnAuthorizationRuleStatus$Code' => '

The state of the authorization rule.

', ], ], 'ClientVpnConnection' => [ 'base' => '

Describes a client connection.

', 'refs' => [ 'ClientVpnConnectionSet$member' => NULL, ], ], 'ClientVpnConnectionSet' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnConnectionsResult$Connections' => '

Information about the active and terminated client connections.

', ], ], 'ClientVpnConnectionStatus' => [ 'base' => '

Describes the status of a client connection.

', 'refs' => [ 'ClientVpnConnection$Status' => '

The current state of the client connection.

', 'TerminateConnectionStatus$PreviousStatus' => '

The state of the client connection.

', 'TerminateConnectionStatus$CurrentStatus' => '

A message about the status of the client connection, if applicable.

', ], ], 'ClientVpnConnectionStatusCode' => [ 'base' => NULL, 'refs' => [ 'ClientVpnConnectionStatus$Code' => '

The state of the client connection.

', ], ], 'ClientVpnEndpoint' => [ 'base' => '

Describes a Client VPN endpoint.

', 'refs' => [ 'EndpointSet$member' => NULL, ], ], 'ClientVpnEndpointAttributeStatus' => [ 'base' => '

Describes the status of the Client VPN endpoint attribute.

', 'refs' => [ 'ClientConnectResponseOptions$Status' => '

The status of any updates to the client connect options.

', ], ], 'ClientVpnEndpointAttributeStatusCode' => [ 'base' => NULL, 'refs' => [ 'ClientVpnEndpointAttributeStatus$Code' => '

The status code.

', ], ], 'ClientVpnEndpointId' => [ 'base' => NULL, 'refs' => [ 'ApplySecurityGroupsToClientVpnTargetNetworkRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'AssociateClientVpnTargetNetworkRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'AuthorizeClientVpnIngressRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'ClientVpnEndpointIdList$member' => NULL, 'CreateClientVpnRouteRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint to which to add the route.

', 'DeleteClientVpnEndpointRequest$ClientVpnEndpointId' => '

The ID of the Client VPN to be deleted.

', 'DeleteClientVpnRouteRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint from which the route is to be deleted.

', 'DescribeClientVpnAuthorizationRulesRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'DescribeClientVpnConnectionsRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'DescribeClientVpnRoutesRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'DescribeClientVpnTargetNetworksRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'DisassociateClientVpnTargetNetworkRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint from which to disassociate the target network.

', 'ExportClientVpnClientCertificateRevocationListRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'ExportClientVpnClientConfigurationRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'ImportClientVpnClientCertificateRevocationListRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint to which the client certificate revocation list applies.

', 'ModifyClientVpnEndpointRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint to modify.

', 'RevokeClientVpnIngressRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint with which the authorization rule is associated.

', 'TerminateClientVpnConnectionsRequest$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint to which the client is connected.

', ], ], 'ClientVpnEndpointIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnEndpointsRequest$ClientVpnEndpointIds' => '

The ID of the Client VPN endpoint.

', ], ], 'ClientVpnEndpointStatus' => [ 'base' => '

Describes the state of a Client VPN endpoint.

', 'refs' => [ 'ClientVpnEndpoint$Status' => '

The current state of the Client VPN endpoint.

', 'CreateClientVpnEndpointResult$Status' => '

The current state of the Client VPN endpoint.

', 'DeleteClientVpnEndpointResult$Status' => '

The current state of the Client VPN endpoint.

', ], ], 'ClientVpnEndpointStatusCode' => [ 'base' => NULL, 'refs' => [ 'ClientVpnEndpointStatus$Code' => '

The state of the Client VPN endpoint. Possible states include:

  • pending-associate - The Client VPN endpoint has been created but no target networks have been associated. The Client VPN endpoint cannot accept connections.

  • available - The Client VPN endpoint has been created and a target network has been associated. The Client VPN endpoint can accept connections.

  • deleting - The Client VPN endpoint is being deleted. The Client VPN endpoint cannot accept connections.

  • deleted - The Client VPN endpoint has been deleted. The Client VPN endpoint cannot accept connections.

', ], ], 'ClientVpnRoute' => [ 'base' => '

Information about a Client VPN endpoint route.

', 'refs' => [ 'ClientVpnRouteSet$member' => NULL, ], ], 'ClientVpnRouteSet' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnRoutesResult$Routes' => '

Information about the Client VPN endpoint routes.

', ], ], 'ClientVpnRouteStatus' => [ 'base' => '

Describes the state of a Client VPN endpoint route.

', 'refs' => [ 'ClientVpnRoute$Status' => '

The current state of the route.

', 'CreateClientVpnRouteResult$Status' => '

The current state of the route.

', 'DeleteClientVpnRouteResult$Status' => '

The current state of the route.

', ], ], 'ClientVpnRouteStatusCode' => [ 'base' => NULL, 'refs' => [ 'ClientVpnRouteStatus$Code' => '

The state of the Client VPN endpoint route.

', ], ], 'ClientVpnSecurityGroupIdSet' => [ 'base' => NULL, 'refs' => [ 'ApplySecurityGroupsToClientVpnTargetNetworkRequest$SecurityGroupIds' => '

The IDs of the security groups to apply to the associated target network. Up to 5 security groups can be applied to an associated target network.

', 'ApplySecurityGroupsToClientVpnTargetNetworkResult$SecurityGroupIds' => '

The IDs of the applied security groups.

', 'ClientVpnEndpoint$SecurityGroupIds' => '

The IDs of the security groups for the target network.

', 'CreateClientVpnEndpointRequest$SecurityGroupIds' => '

The IDs of one or more security groups to apply to the target network. You must also specify the ID of the VPC that contains the security groups.

', 'ModifyClientVpnEndpointRequest$SecurityGroupIds' => '

The IDs of one or more security groups to apply to the target network.

', ], ], 'CloudWatchLogGroupArn' => [ 'base' => NULL, 'refs' => [ 'CloudWatchLogOptionsSpecification$LogGroupArn' => '

The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.

', ], ], 'CloudWatchLogOptions' => [ 'base' => '

Options for sending VPN tunnel logs to CloudWatch.

', 'refs' => [ 'VpnTunnelLogOptions$CloudWatchLogOptions' => '

Options for sending VPN tunnel logs to CloudWatch.

', ], ], 'CloudWatchLogOptionsSpecification' => [ 'base' => '

Options for sending VPN tunnel logs to CloudWatch.

', 'refs' => [ 'VpnTunnelLogOptionsSpecification$CloudWatchLogOptions' => '

Options for sending VPN tunnel logs to CloudWatch.

', ], ], 'CoipAddressUsage' => [ 'base' => '

Describes address usage for a customer-owned address pool.

', 'refs' => [ 'CoipAddressUsageSet$member' => NULL, ], ], 'CoipAddressUsageSet' => [ 'base' => NULL, 'refs' => [ 'GetCoipPoolUsageResult$CoipAddressUsages' => '

Information about the address usage.

', ], ], 'CoipCidr' => [ 'base' => '

Information about a customer-owned IP address range.

', 'refs' => [ 'CreateCoipCidrResult$CoipCidr' => '

Information about a range of customer-owned IP addresses.

', 'DeleteCoipCidrResult$CoipCidr' => '

Information about a range of customer-owned IP addresses.

', ], ], 'CoipPool' => [ 'base' => '

Describes a customer-owned address pool.

', 'refs' => [ 'CoipPoolSet$member' => NULL, 'CreateCoipPoolResult$CoipPool' => '

Information about the CoIP address pool.

', 'DeleteCoipPoolResult$CoipPool' => '

Information about the CoIP address pool.

', ], ], 'CoipPoolId' => [ 'base' => NULL, 'refs' => [ 'LocalGatewayRoute$CoipPoolId' => '

The ID of the customer-owned address pool.

', 'ModifySubnetAttributeRequest$CustomerOwnedIpv4Pool' => '

The customer-owned IPv4 address pool associated with the subnet.

You must set this value when you specify true for MapCustomerOwnedIpOnLaunch.

', 'Subnet$CustomerOwnedIpv4Pool' => '

The customer-owned IPv4 address pool associated with the subnet.

', ], ], 'CoipPoolIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeCoipPoolsRequest$PoolIds' => '

The IDs of the address pools.

', ], ], 'CoipPoolMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeCoipPoolsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetCoipPoolUsageRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'CoipPoolSet' => [ 'base' => NULL, 'refs' => [ 'DescribeCoipPoolsResult$CoipPools' => '

Information about the address pools.

', ], ], 'ComponentAccount' => [ 'base' => NULL, 'refs' => [ 'Explanation$ComponentAccount' => '

The Amazon Web Services account for the component.

', ], ], 'ComponentRegion' => [ 'base' => NULL, 'refs' => [ 'Explanation$ComponentRegion' => '

The Region for the component.

', ], ], 'ConfirmProductInstanceRequest' => [ 'base' => NULL, 'refs' => [], ], 'ConfirmProductInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'ConnectionLogOptions' => [ 'base' => '

Describes the client connection logging options for the Client VPN endpoint.

', 'refs' => [ 'CreateClientVpnEndpointRequest$ConnectionLogOptions' => '

Information about the client connection logging options.

If you enable client connection logging, data about client connections is sent to a Cloudwatch Logs log stream. The following information is logged:

  • Client connection requests

  • Client connection results (successful and unsuccessful)

  • Reasons for unsuccessful client connection requests

  • Client connection termination time

', 'ModifyClientVpnEndpointRequest$ConnectionLogOptions' => '

Information about the client connection logging options.

If you enable client connection logging, data about client connections is sent to a Cloudwatch Logs log stream. The following information is logged:

  • Client connection requests

  • Client connection results (successful and unsuccessful)

  • Reasons for unsuccessful client connection requests

  • Client connection termination time

', ], ], 'ConnectionLogResponseOptions' => [ 'base' => '

Information about the client connection logging options for a Client VPN endpoint.

', 'refs' => [ 'ClientVpnEndpoint$ConnectionLogOptions' => '

Information about the client connection logging options for the Client VPN endpoint.

', ], ], 'ConnectionNotification' => [ 'base' => '

Describes a connection notification for a VPC endpoint or VPC endpoint service.

', 'refs' => [ 'ConnectionNotificationSet$member' => NULL, 'CreateVpcEndpointConnectionNotificationResult$ConnectionNotification' => '

Information about the notification.

', ], ], 'ConnectionNotificationId' => [ 'base' => NULL, 'refs' => [ 'ConnectionNotificationIdsList$member' => NULL, 'DescribeVpcEndpointConnectionNotificationsRequest$ConnectionNotificationId' => '

The ID of the notification.

', 'ModifyVpcEndpointConnectionNotificationRequest$ConnectionNotificationId' => '

The ID of the notification.

', ], ], 'ConnectionNotificationIdsList' => [ 'base' => NULL, 'refs' => [ 'DeleteVpcEndpointConnectionNotificationsRequest$ConnectionNotificationIds' => '

The IDs of the notifications.

', ], ], 'ConnectionNotificationSet' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcEndpointConnectionNotificationsResult$ConnectionNotificationSet' => '

The notifications.

', ], ], 'ConnectionNotificationState' => [ 'base' => NULL, 'refs' => [ 'ConnectionNotification$ConnectionNotificationState' => '

The state of the notification.

', ], ], 'ConnectionNotificationType' => [ 'base' => NULL, 'refs' => [ 'ConnectionNotification$ConnectionNotificationType' => '

The type of notification.

', ], ], 'ConnectionTrackingConfiguration' => [ 'base' => '

A security group connection tracking configuration that enables you to set the idle timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', 'refs' => [ 'NetworkInterface$ConnectionTrackingConfiguration' => '

A security group connection tracking configuration that enables you to set the timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'ConnectionTrackingSpecification' => [ 'base' => '

A security group connection tracking specification that enables you to set the idle timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', 'refs' => [ 'LaunchTemplateInstanceNetworkInterfaceSpecification$ConnectionTrackingSpecification' => '

A security group connection tracking specification that enables you to set the timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'ConnectionTrackingSpecificationRequest' => [ 'base' => '

A security group connection tracking specification request that enables you to set the idle timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', 'refs' => [ 'CreateNetworkInterfaceRequest$ConnectionTrackingSpecification' => '

A connection tracking specification for the network interface.

', 'InstanceNetworkInterfaceSpecification$ConnectionTrackingSpecification' => '

A security group connection tracking specification that enables you to set the timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$ConnectionTrackingSpecification' => '

A security group connection tracking specification that enables you to set the timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', 'ModifyNetworkInterfaceAttributeRequest$ConnectionTrackingSpecification' => '

A connection tracking specification.

', ], ], 'ConnectionTrackingSpecificationResponse' => [ 'base' => '

A security group connection tracking specification response that enables you to set the idle timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', 'refs' => [ 'InstanceNetworkInterface$ConnectionTrackingConfiguration' => '

A security group connection tracking configuration that enables you to set the timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'ConnectivityType' => [ 'base' => NULL, 'refs' => [ 'CreateNatGatewayRequest$ConnectivityType' => '

Indicates whether the NAT gateway supports public or private connectivity. The default is public connectivity.

', 'NatGateway$ConnectivityType' => '

Indicates whether the NAT gateway supports public or private connectivity.

', ], ], 'ContainerFormat' => [ 'base' => NULL, 'refs' => [ 'ExportToS3Task$ContainerFormat' => '

The container format used to combine disk images with metadata (such as OVF). If absent, only the disk image is exported.

', 'ExportToS3TaskSpecification$ContainerFormat' => '

The container format used to combine disk images with metadata (such as OVF). If absent, only the disk image is exported.

', ], ], 'ConversionIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeConversionTasksRequest$ConversionTaskIds' => '

The conversion task IDs.

', ], ], 'ConversionTask' => [ 'base' => '

Describes a conversion task.

', 'refs' => [ 'DescribeConversionTaskList$member' => NULL, 'ImportInstanceResult$ConversionTask' => '

Information about the conversion task.

', 'ImportVolumeResult$ConversionTask' => '

Information about the conversion task.

', ], ], 'ConversionTaskId' => [ 'base' => NULL, 'refs' => [ 'CancelConversionRequest$ConversionTaskId' => '

The ID of the conversion task.

', 'ConversionIdStringList$member' => NULL, ], ], 'ConversionTaskState' => [ 'base' => NULL, 'refs' => [ 'ConversionTask$State' => '

The state of the conversion task.

', ], ], 'CoolOffPeriodRequestHours' => [ 'base' => NULL, 'refs' => [ 'LockSnapshotRequest$CoolOffPeriod' => '

The cooling-off period during which you can unlock the snapshot or modify the lock settings after locking the snapshot in compliance mode, in hours. After the cooling-off period expires, you can\'t unlock or delete the snapshot, decrease the lock duration, or change the lock mode. You can increase the lock duration after the cooling-off period expires.

The cooling-off period is optional when locking a snapshot in compliance mode. If you are locking the snapshot in governance mode, omit this parameter.

To lock the snapshot in compliance mode immediately without a cooling-off period, omit this parameter.

If you are extending the lock duration for a snapshot that is locked in compliance mode after the cooling-off period has expired, omit this parameter. If you specify a cooling-period in a such a request, the request fails.

Allowed values: Min 1, max 72.

', ], ], 'CoolOffPeriodResponseHours' => [ 'base' => NULL, 'refs' => [ 'LockSnapshotResult$CoolOffPeriod' => '

The compliance mode cooling-off period, in hours.

', 'LockedSnapshotsInfo$CoolOffPeriod' => '

The compliance mode cooling-off period, in hours.

', ], ], 'CopyFpgaImageRequest' => [ 'base' => NULL, 'refs' => [], ], 'CopyFpgaImageResult' => [ 'base' => NULL, 'refs' => [], ], 'CopyImageRequest' => [ 'base' => '

Contains the parameters for CopyImage.

', 'refs' => [], ], 'CopyImageResult' => [ 'base' => '

Contains the output of CopyImage.

', 'refs' => [], ], 'CopySnapshotRequest' => [ 'base' => NULL, 'refs' => [], ], 'CopySnapshotRequestPSU' => [ 'base' => NULL, 'refs' => [ 'CopySnapshotRequest$PresignedUrl' => '

When you copy an encrypted source snapshot using the Amazon EC2 Query API, you must supply a pre-signed URL. This parameter is optional for unencrypted snapshots. For more information, see Query requests.

The PresignedUrl should use the snapshot source endpoint, the CopySnapshot action, and include the SourceRegion, SourceSnapshotId, and DestinationRegion parameters. The PresignedUrl must be signed using Amazon Web Services Signature Version 4. Because EBS snapshots are stored in Amazon S3, the signing algorithm for this parameter uses the same logic that is described in Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4) in the Amazon Simple Storage Service API Reference. An invalid or improperly signed PresignedUrl will cause the copy operation to fail asynchronously, and the snapshot will move to an error state.

', ], ], 'CopySnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'CopyTagsFromSource' => [ 'base' => NULL, 'refs' => [ 'CreateSnapshotsRequest$CopyTagsFromSource' => '

Copies the tags from the specified volume to corresponding snapshot.

', ], ], 'CoreCount' => [ 'base' => NULL, 'refs' => [ 'CoreCountList$member' => NULL, 'VCpuInfo$DefaultCores' => '

The default number of cores for the instance type.

', ], ], 'CoreCountList' => [ 'base' => NULL, 'refs' => [ 'VCpuInfo$ValidCores' => '

The valid number of cores that can be configured for the instance type.

', ], ], 'CoreNetworkArn' => [ 'base' => NULL, 'refs' => [ 'CreateRouteRequest$CoreNetworkArn' => '

The Amazon Resource Name (ARN) of the core network.

', 'ReplaceRouteRequest$CoreNetworkArn' => '

The Amazon Resource Name (ARN) of the core network.

', 'Route$CoreNetworkArn' => '

The Amazon Resource Name (ARN) of the core network.

', ], ], 'CpuManufacturer' => [ 'base' => NULL, 'refs' => [ 'CpuManufacturerSet$member' => NULL, ], ], 'CpuManufacturerName' => [ 'base' => NULL, 'refs' => [ 'ProcessorInfo$Manufacturer' => '

The manufacturer of the processor.

', ], ], 'CpuManufacturerSet' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$CpuManufacturers' => '

The CPU manufacturers to include.

  • For instance types with Intel CPUs, specify intel.

  • For instance types with AMD CPUs, specify amd.

  • For instance types with Amazon Web Services CPUs, specify amazon-web-services.

Don\'t confuse the CPU manufacturer with the CPU architecture. Instances will be launched with a compatible CPU architecture based on the Amazon Machine Image (AMI) that you specify in your launch template.

Default: Any manufacturer

', 'InstanceRequirementsRequest$CpuManufacturers' => '

The CPU manufacturers to include.

  • For instance types with Intel CPUs, specify intel.

  • For instance types with AMD CPUs, specify amd.

  • For instance types with Amazon Web Services CPUs, specify amazon-web-services.

Don\'t confuse the CPU manufacturer with the CPU architecture. Instances will be launched with a compatible CPU architecture based on the Amazon Machine Image (AMI) that you specify in your launch template.

Default: Any manufacturer

', ], ], 'CpuOptions' => [ 'base' => '

The CPU options for the instance.

', 'refs' => [ 'Instance$CpuOptions' => '

The CPU options for the instance.

', ], ], 'CpuOptionsRequest' => [ 'base' => '

The CPU options for the instance. Both the core count and threads per core must be specified in the request.

', 'refs' => [ 'RunInstancesRequest$CpuOptions' => '

The CPU options for the instance. For more information, see Optimize CPU options in the Amazon EC2 User Guide.

', ], ], 'CreateCapacityReservationFleetRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateCapacityReservationFleetResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateCapacityReservationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateCapacityReservationResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateCarrierGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateCarrierGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateClientVpnEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateClientVpnEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateClientVpnRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateClientVpnRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateCoipCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateCoipCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateCoipPoolRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateCoipPoolResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateCustomerGatewayRequest' => [ 'base' => '

Contains the parameters for CreateCustomerGateway.

', 'refs' => [], ], 'CreateCustomerGatewayResult' => [ 'base' => '

Contains the output of CreateCustomerGateway.

', 'refs' => [], ], 'CreateDefaultSubnetRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateDefaultSubnetResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDefaultVpcRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateDefaultVpcResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDhcpOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateDhcpOptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateEgressOnlyInternetGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateEgressOnlyInternetGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateFleetError' => [ 'base' => '

Describes the instances that could not be launched by the fleet.

', 'refs' => [ 'CreateFleetErrorsSet$member' => NULL, ], ], 'CreateFleetErrorsSet' => [ 'base' => NULL, 'refs' => [ 'CreateFleetResult$Errors' => '

Information about the instances that could not be launched by the fleet. Supported only for fleets of type instant.

', ], ], 'CreateFleetInstance' => [ 'base' => '

Describes the instances that were launched by the fleet.

', 'refs' => [ 'CreateFleetInstancesSet$member' => NULL, ], ], 'CreateFleetInstancesSet' => [ 'base' => NULL, 'refs' => [ 'CreateFleetResult$Instances' => '

Information about the instances that were launched by the fleet. Supported only for fleets of type instant.

', ], ], 'CreateFleetRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateFleetResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateFlowLogsRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateFlowLogsResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateFpgaImageRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateFpgaImageResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateImageRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateImageResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateInstanceConnectEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateInstanceConnectEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateInstanceEventWindowRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateInstanceEventWindowResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateInstanceExportTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateInstanceExportTaskResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateInternetGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateInternetGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateIpamPoolRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateIpamPoolResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateIpamRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateIpamResourceDiscoveryRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateIpamResourceDiscoveryResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateIpamResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateIpamScopeRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateIpamScopeResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateKeyPairRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateLaunchTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateLaunchTemplateResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateLaunchTemplateVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateLaunchTemplateVersionResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateLocalGatewayRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateLocalGatewayRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateLocalGatewayRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateLocalGatewayRouteTableResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateLocalGatewayRouteTableVpcAssociationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateLocalGatewayRouteTableVpcAssociationResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateManagedPrefixListRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateManagedPrefixListResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateNatGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateNatGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkAclEntryRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkAclRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkAclResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkInsightsAccessScopeRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkInsightsAccessScopeResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkInsightsPathRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkInsightsPathResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkInterfacePermissionRequest' => [ 'base' => '

Contains the parameters for CreateNetworkInterfacePermission.

', 'refs' => [], ], 'CreateNetworkInterfacePermissionResult' => [ 'base' => '

Contains the output of CreateNetworkInterfacePermission.

', 'refs' => [], ], 'CreateNetworkInterfaceRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateNetworkInterfaceResult' => [ 'base' => NULL, 'refs' => [], ], 'CreatePlacementGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreatePlacementGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CreatePublicIpv4PoolRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreatePublicIpv4PoolResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateReplaceRootVolumeTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateReplaceRootVolumeTaskResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateReservedInstancesListingRequest' => [ 'base' => '

Contains the parameters for CreateReservedInstancesListing.

', 'refs' => [], ], 'CreateReservedInstancesListingResult' => [ 'base' => '

Contains the output of CreateReservedInstancesListing.

', 'refs' => [], ], 'CreateRestoreImageTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateRestoreImageTaskResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateRouteTableResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateSecurityGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateSecurityGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateSnapshotRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateSnapshotsRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateSnapshotsResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateSpotDatafeedSubscriptionRequest' => [ 'base' => '

Contains the parameters for CreateSpotDatafeedSubscription.

', 'refs' => [], ], 'CreateSpotDatafeedSubscriptionResult' => [ 'base' => '

Contains the output of CreateSpotDatafeedSubscription.

', 'refs' => [], ], 'CreateStoreImageTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateStoreImageTaskResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateSubnetCidrReservationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateSubnetCidrReservationResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateSubnetRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateSubnetResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTagsRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTrafficMirrorFilterRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTrafficMirrorFilterResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTrafficMirrorFilterRuleRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTrafficMirrorFilterRuleResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTrafficMirrorSessionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTrafficMirrorSessionResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTrafficMirrorTargetRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTrafficMirrorTargetResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayConnectPeerRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayConnectPeerResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayConnectRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayConnectRequestOptions' => [ 'base' => '

The options for a Connect attachment.

', 'refs' => [ 'CreateTransitGatewayConnectRequest$Options' => '

The Connect attachment options.

', ], ], 'CreateTransitGatewayConnectResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayMulticastDomainRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayMulticastDomainRequestOptions' => [ 'base' => '

The options for the transit gateway multicast domain.

', 'refs' => [ 'CreateTransitGatewayMulticastDomainRequest$Options' => '

The options for the transit gateway multicast domain.

', ], ], 'CreateTransitGatewayMulticastDomainResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayPeeringAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayPeeringAttachmentRequestOptions' => [ 'base' => '

Describes whether dynamic routing is enabled or disabled for the transit gateway peering request.

', 'refs' => [ 'CreateTransitGatewayPeeringAttachmentRequest$Options' => '

Requests a transit gateway peering attachment.

', ], ], 'CreateTransitGatewayPeeringAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayPolicyTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayPolicyTableResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayPrefixListReferenceRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayPrefixListReferenceResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayRouteTableAnnouncementRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayRouteTableAnnouncementResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayRouteTableResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayVpcAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTransitGatewayVpcAttachmentRequestOptions' => [ 'base' => '

Describes the options for a VPC attachment.

', 'refs' => [ 'CreateTransitGatewayVpcAttachmentRequest$Options' => '

The VPC attachment options.

', ], ], 'CreateTransitGatewayVpcAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVerifiedAccessEndpointEniOptions' => [ 'base' => '

Describes the network interface options when creating an Amazon Web Services Verified Access endpoint using the network-interface type.

', 'refs' => [ 'CreateVerifiedAccessEndpointRequest$NetworkInterfaceOptions' => '

The network interface details. This parameter is required if the endpoint type is network-interface.

', ], ], 'CreateVerifiedAccessEndpointLoadBalancerOptions' => [ 'base' => '

Describes the load balancer options when creating an Amazon Web Services Verified Access endpoint using the load-balancer type.

', 'refs' => [ 'CreateVerifiedAccessEndpointRequest$LoadBalancerOptions' => '

The load balancer details. This parameter is required if the endpoint type is load-balancer.

', ], ], 'CreateVerifiedAccessEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVerifiedAccessEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVerifiedAccessEndpointSubnetIdList' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointLoadBalancerOptions$SubnetIds' => '

The IDs of the subnets.

', ], ], 'CreateVerifiedAccessGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVerifiedAccessGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVerifiedAccessInstanceRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVerifiedAccessInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVerifiedAccessTrustProviderDeviceOptions' => [ 'base' => '

Describes the options when creating an Amazon Web Services Verified Access trust provider using the device type.

', 'refs' => [ 'CreateVerifiedAccessTrustProviderRequest$DeviceOptions' => '

The options for a device-based trust provider. This parameter is required when the provider type is device.

', ], ], 'CreateVerifiedAccessTrustProviderOidcOptions' => [ 'base' => '

Describes the options when creating an Amazon Web Services Verified Access trust provider using the user type.

', 'refs' => [ 'CreateVerifiedAccessTrustProviderRequest$OidcOptions' => '

The options for a OpenID Connect-compatible user-identity trust provider. This parameter is required when the provider type is user.

', ], ], 'CreateVerifiedAccessTrustProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVerifiedAccessTrustProviderResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVolumePermission' => [ 'base' => '

Describes the user or group to be added or removed from the list of create volume permissions for a volume.

', 'refs' => [ 'CreateVolumePermissionList$member' => NULL, ], ], 'CreateVolumePermissionList' => [ 'base' => NULL, 'refs' => [ 'CreateVolumePermissionModifications$Add' => '

Adds the specified Amazon Web Services account ID or group to the list.

', 'CreateVolumePermissionModifications$Remove' => '

Removes the specified Amazon Web Services account ID or group from the list.

', 'DescribeSnapshotAttributeResult$CreateVolumePermissions' => '

The users and groups that have the permissions for creating volumes from the snapshot.

', ], ], 'CreateVolumePermissionModifications' => [ 'base' => '

Describes modifications to the list of create volume permissions for a volume.

', 'refs' => [ 'ModifySnapshotAttributeRequest$CreateVolumePermission' => '

A JSON representation of the snapshot attribute modification.

', ], ], 'CreateVolumeRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcEndpointConnectionNotificationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcEndpointConnectionNotificationResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcEndpointServiceConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcEndpointServiceConfigurationResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcPeeringConnectionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcPeeringConnectionResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpcResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateVpnConnectionRequest' => [ 'base' => '

Contains the parameters for CreateVpnConnection.

', 'refs' => [], ], 'CreateVpnConnectionResult' => [ 'base' => '

Contains the output of CreateVpnConnection.

', 'refs' => [], ], 'CreateVpnConnectionRouteRequest' => [ 'base' => '

Contains the parameters for CreateVpnConnectionRoute.

', 'refs' => [], ], 'CreateVpnGatewayRequest' => [ 'base' => '

Contains the parameters for CreateVpnGateway.

', 'refs' => [], ], 'CreateVpnGatewayResult' => [ 'base' => '

Contains the output of CreateVpnGateway.

', 'refs' => [], ], 'CreditSpecification' => [ 'base' => '

Describes the credit option for CPU usage of a T instance.

', 'refs' => [ 'ResponseLaunchTemplateData$CreditSpecification' => '

The credit option for CPU usage of the instance.

', ], ], 'CreditSpecificationRequest' => [ 'base' => '

The credit option for CPU usage of a T instance.

', 'refs' => [ 'RequestLaunchTemplateData$CreditSpecification' => '

The credit option for CPU usage of the instance. Valid only for T instances.

', 'RunInstancesRequest$CreditSpecification' => '

The credit option for CPU usage of the burstable performance instance. Valid values are standard and unlimited. To change this attribute after launch, use ModifyInstanceCreditSpecification. For more information, see Burstable performance instances in the Amazon EC2 User Guide.

Default: standard (T2 instances) or unlimited (T3/T3a/T4g instances)

For T3 instances with host tenancy, only standard is supported.

', ], ], 'CurrencyCodeValues' => [ 'base' => NULL, 'refs' => [ 'GetHostReservationPurchasePreviewResult$CurrencyCode' => '

The currency in which the totalUpfrontPrice and totalHourlyPrice amounts are specified. At this time, the only supported currency is USD.

', 'HostOffering$CurrencyCode' => '

The currency of the offering.

', 'HostReservation$CurrencyCode' => '

The currency in which the upfrontPrice and hourlyPrice amounts are specified. At this time, the only supported currency is USD.

', 'PriceSchedule$CurrencyCode' => '

The currency for transacting the Reserved Instance resale. At this time, the only supported currency is USD.

', 'PriceScheduleSpecification$CurrencyCode' => '

The currency for transacting the Reserved Instance resale. At this time, the only supported currency is USD.

', 'Purchase$CurrencyCode' => '

The currency in which the UpfrontPrice and HourlyPrice amounts are specified. At this time, the only supported currency is USD.

', 'PurchaseHostReservationRequest$CurrencyCode' => '

The currency in which the totalUpfrontPrice, LimitPrice, and totalHourlyPrice amounts are specified. At this time, the only supported currency is USD.

', 'PurchaseHostReservationResult$CurrencyCode' => '

The currency in which the totalUpfrontPrice and totalHourlyPrice amounts are specified. At this time, the only supported currency is USD.

', 'ReservedInstanceLimitPrice$CurrencyCode' => '

The currency in which the limitPrice amount is specified. At this time, the only supported currency is USD.

', 'ReservedInstances$CurrencyCode' => '

The currency of the Reserved Instance. It\'s specified using ISO 4217 standard currency codes. At this time, the only supported currency is USD.

', 'ReservedInstancesOffering$CurrencyCode' => '

The currency of the Reserved Instance offering you are purchasing. It\'s specified using ISO 4217 standard currency codes. At this time, the only supported currency is USD.

', ], ], 'CurrentGenerationFlag' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$CurrentGeneration' => '

Indicates whether the instance type is current generation.

', ], ], 'CustomerGateway' => [ 'base' => '

Describes a customer gateway.

', 'refs' => [ 'CreateCustomerGatewayResult$CustomerGateway' => '

Information about the customer gateway.

', 'CustomerGatewayList$member' => NULL, ], ], 'CustomerGatewayId' => [ 'base' => NULL, 'refs' => [ 'CreateVpnConnectionRequest$CustomerGatewayId' => '

The ID of the customer gateway.

', 'CustomerGatewayIdStringList$member' => NULL, 'DeleteCustomerGatewayRequest$CustomerGatewayId' => '

The ID of the customer gateway.

', 'GetVpnTunnelReplacementStatusResult$CustomerGatewayId' => '

The ID of the customer gateway.

', 'ModifyVpnConnectionRequest$CustomerGatewayId' => '

The ID of the customer gateway at your end of the VPN connection.

', ], ], 'CustomerGatewayIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeCustomerGatewaysRequest$CustomerGatewayIds' => '

One or more customer gateway IDs.

Default: Describes all your customer gateways.

', ], ], 'CustomerGatewayList' => [ 'base' => NULL, 'refs' => [ 'DescribeCustomerGatewaysResult$CustomerGateways' => '

Information about one or more customer gateways.

', ], ], 'DITMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTypesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DITOMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTypeOfferingsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DataQueries' => [ 'base' => NULL, 'refs' => [ 'GetAwsNetworkPerformanceDataRequest$DataQueries' => '

A list of network performance data queries.

', ], ], 'DataQuery' => [ 'base' => '

A query used for retrieving network health data.

', 'refs' => [ 'DataQueries$member' => NULL, ], ], 'DataResponse' => [ 'base' => '

The response to a DataQuery.

', 'refs' => [ 'DataResponses$member' => NULL, ], ], 'DataResponses' => [ 'base' => NULL, 'refs' => [ 'GetAwsNetworkPerformanceDataResult$DataResponses' => '

The list of data responses.

', ], ], 'DatafeedSubscriptionState' => [ 'base' => NULL, 'refs' => [ 'SpotDatafeedSubscription$State' => '

The state of the Spot Instance data feed subscription.

', ], ], 'DateTime' => [ 'base' => NULL, 'refs' => [ 'BundleTask$StartTime' => '

The time this task started.

', 'BundleTask$UpdateTime' => '

The time of the most recent update for the task.

', 'CapacityReservation$EndDate' => '

The date and time at which the Capacity Reservation expires. When a Capacity Reservation expires, the reserved capacity is released and you can no longer launch instances into it. The Capacity Reservation\'s state changes to expired when it reaches its end date and time.

', 'CapacityReservation$CreateDate' => '

The date and time at which the Capacity Reservation was created.

', 'ClientData$UploadEnd' => '

The time that the disk upload ends.

', 'ClientData$UploadStart' => '

The time that the disk upload starts.

', 'CreateCapacityReservationRequest$EndDate' => '

The date and time at which the Capacity Reservation expires. When a Capacity Reservation expires, the reserved capacity is released and you can no longer launch instances into it. The Capacity Reservation\'s state changes to expired when it reaches its end date and time.

You must provide an EndDate value if EndDateType is limited. Omit EndDate if EndDateType is unlimited.

If the EndDateType is limited, the Capacity Reservation is cancelled within an hour from the specified time. For example, if you specify 5/31/2019, 13:30:55, the Capacity Reservation is guaranteed to end between 13:30:55 and 14:30:55 on 5/31/2019.

', 'CreateFleetRequest$ValidFrom' => '

The start date and time of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). The default is to start fulfilling the request immediately.

', 'CreateFleetRequest$ValidUntil' => '

The end date and time of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). At this point, no new EC2 Fleet requests are placed or able to fulfill the request. If no value is specified, the request remains until you cancel it.

', 'DescribeFleetHistoryRequest$StartTime' => '

The start date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'DescribeFleetHistoryResult$LastEvaluatedTime' => '

The last date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). All records up to this time were retrieved.

If nextToken indicates that there are more items, this value is not present.

', 'DescribeFleetHistoryResult$StartTime' => '

The start date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'DescribeSpotFleetRequestHistoryRequest$StartTime' => '

The starting date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'DescribeSpotFleetRequestHistoryResponse$LastEvaluatedTime' => '

The last date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). All records up to this time were retrieved.

If nextToken indicates that there are more items, this value is not present.

', 'DescribeSpotFleetRequestHistoryResponse$StartTime' => '

The starting date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'DescribeSpotPriceHistoryRequest$EndTime' => '

The date and time, up to the current date, from which to stop retrieving the price history data, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'DescribeSpotPriceHistoryRequest$StartTime' => '

The date and time, up to the past 90 days, from which to start retrieving the price history data, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'EbsInstanceBlockDevice$AttachTime' => '

The time stamp when the attachment initiated.

', 'ElasticInferenceAcceleratorAssociation$ElasticInferenceAcceleratorAssociationTime' => '

The time at which the elastic inference accelerator is associated with an instance.

', 'FleetData$CreateTime' => '

The creation date and time of the EC2 Fleet.

', 'FleetData$ValidFrom' => '

The start date and time of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). The default is to start fulfilling the request immediately.

', 'FleetData$ValidUntil' => '

The end date and time of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). At this point, no new instance requests are placed or able to fulfill the request. The default end date is 7 days from the current date.

', 'FpgaImage$CreateTime' => '

The date and time the AFI was created.

', 'FpgaImage$UpdateTime' => '

The time of the most recent update to the AFI.

', 'GetConsoleOutputResult$Timestamp' => '

The time at which the output was last updated.

', 'GetPasswordDataResult$Timestamp' => '

The time the data was last updated.

', 'GetReservedInstancesExchangeQuoteResult$OutputReservedInstancesWillExpireAt' => '

The new end date of the reservation term.

', 'HistoryRecord$Timestamp' => '

The date and time of the event, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'HistoryRecordEntry$Timestamp' => '

The date and time of the event, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'Host$AllocationTime' => '

The time that the Dedicated Host was allocated.

', 'Host$ReleaseTime' => '

The time that the Dedicated Host was released.

', 'HostReservation$End' => '

The date and time that the reservation ends.

', 'HostReservation$Start' => '

The date and time that the reservation started.

', 'IamInstanceProfileAssociation$Timestamp' => '

The time the IAM instance profile was associated with the instance.

', 'IdFormat$Deadline' => '

The date in UTC at which you are permanently switched over to using longer IDs. If a deadline is not yet available for this resource type, this field is not returned.

', 'Instance$LaunchTime' => '

The time the instance was launched.

', 'InstanceNetworkInterfaceAttachment$AttachTime' => '

The time stamp when the attachment initiated.

', 'InstanceStatusDetails$ImpairedSince' => '

The time when a status check failed. For an instance that was launched and impaired, this is the time when the instance was launched.

', 'InstanceStatusEvent$NotAfter' => '

The latest scheduled end time for the event.

', 'InstanceStatusEvent$NotBefore' => '

The earliest scheduled start time for the event.

', 'InstanceStatusEvent$NotBeforeDeadline' => '

The deadline for starting the event.

', 'LaunchTemplate$CreateTime' => '

The time launch template was created.

', 'LaunchTemplateSpotMarketOptions$ValidUntil' => '

The end date of the request. For a one-time request, the request remains active until all instances launch, the request is canceled, or this date is reached. If the request is persistent, it remains active until it is canceled or this date and time is reached.

', 'LaunchTemplateSpotMarketOptionsRequest$ValidUntil' => '

The end date of the request, in UTC format (YYYY-MM-DDTHH:MM:SSZ). Supported only for persistent requests.

  • For a persistent request, the request remains active until the ValidUntil date and time is reached. Otherwise, the request remains active until you cancel it.

  • For a one-time request, ValidUntil is not supported. The request remains active until all instances launch or you cancel the request.

Default: 7 days from the current date

', 'LaunchTemplateVersion$CreateTime' => '

The time the version was created.

', 'ModifyCapacityReservationRequest$EndDate' => '

The date and time at which the Capacity Reservation expires. When a Capacity Reservation expires, the reserved capacity is released and you can no longer launch instances into it. The Capacity Reservation\'s state changes to expired when it reaches its end date and time.

The Capacity Reservation is cancelled within an hour from the specified time. For example, if you specify 5/31/2019, 13:30:55, the Capacity Reservation is guaranteed to end between 13:30:55 and 14:30:55 on 5/31/2019.

You must provide an EndDate value if EndDateType is limited. Omit EndDate if EndDateType is unlimited.

', 'ModifyInstanceEventStartTimeRequest$NotBefore' => '

The new date and time when the event will take place.

', 'NatGateway$CreateTime' => '

The date and time the NAT gateway was created.

', 'NatGateway$DeleteTime' => '

The date and time the NAT gateway was deleted, if applicable.

', 'NetworkInterfaceAttachment$AttachTime' => '

The timestamp indicating when the attachment initiated.

', 'ProvisionedBandwidth$ProvisionTime' => '

Reserved. If you need to sustain traffic greater than the documented limits, contact us through the Support Center.

', 'ProvisionedBandwidth$RequestTime' => '

Reserved. If you need to sustain traffic greater than the documented limits, contact us through the Support Center.

', 'PurchaseReservedInstancesOfferingRequest$PurchaseTime' => '

The time at which to purchase the Reserved Instance, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'ReportInstanceStatusRequest$EndTime' => '

The time at which the reported instance health state ended.

', 'ReportInstanceStatusRequest$StartTime' => '

The time at which the reported instance health state began.

', 'RequestSpotInstancesRequest$ValidFrom' => '

The start date of the request. If this is a one-time request, the request becomes active at this date and time and remains active until all instances launch, the request expires, or the request is canceled. If the request is persistent, the request becomes active at this date and time and remains active until it expires or is canceled.

The specified start date and time cannot be equal to the current date and time. You must specify a start date and time that occurs after the current date and time.

', 'RequestSpotInstancesRequest$ValidUntil' => '

The end date of the request, in UTC format (YYYY-MM-DDTHH:MM:SSZ).

  • For a persistent request, the request remains active until the ValidUntil date and time is reached. Otherwise, the request remains active until you cancel it.

  • For a one-time request, the request remains active until all instances launch, the request is canceled, or the ValidUntil date and time is reached. By default, the request is valid for 7 days from the date the request was created.

', 'ReservedInstances$End' => '

The time when the Reserved Instance expires.

', 'ReservedInstances$Start' => '

The date and time the Reserved Instance started.

', 'ReservedInstancesListing$CreateDate' => '

The time the listing was created.

', 'ReservedInstancesListing$UpdateDate' => '

The last modified timestamp of the listing.

', 'ReservedInstancesModification$CreateDate' => '

The time when the modification request was created.

', 'ReservedInstancesModification$EffectiveDate' => '

The time for the modification to become effective.

', 'ReservedInstancesModification$UpdateDate' => '

The time when the modification request was last updated.

', 'ScheduledInstance$CreateDate' => '

The date when the Scheduled Instance was purchased.

', 'ScheduledInstance$NextSlotStartTime' => '

The time for the next schedule to start.

', 'ScheduledInstance$PreviousSlotEndTime' => '

The time that the previous schedule ended or will end.

', 'ScheduledInstance$TermEndDate' => '

The end date for the Scheduled Instance.

', 'ScheduledInstance$TermStartDate' => '

The start date for the Scheduled Instance.

', 'ScheduledInstanceAvailability$FirstSlotStartTime' => '

The time period for the first schedule to start.

', 'SlotDateTimeRangeRequest$EarliestTime' => '

The earliest date and time, in UTC, for the Scheduled Instance to start.

', 'SlotDateTimeRangeRequest$LatestTime' => '

The latest date and time, in UTC, for the Scheduled Instance to start. This value must be later than or equal to the earliest date and at most three months in the future.

', 'SlotStartTimeRangeRequest$EarliestTime' => '

The earliest date and time, in UTC, for the Scheduled Instance to start.

', 'SlotStartTimeRangeRequest$LatestTime' => '

The latest date and time, in UTC, for the Scheduled Instance to start.

', 'Snapshot$StartTime' => '

The time stamp when the snapshot was initiated.

', 'SpotFleetRequestConfigData$ValidFrom' => '

The start date and time of the request, in UTC format (YYYY-MM-DDTHH:MM:SSZ). By default, Amazon EC2 starts fulfilling the request immediately.

', 'SpotFleetRequestConfigData$ValidUntil' => '

The end date and time of the request, in UTC format (YYYY-MM-DDTHH:MM:SSZ). After the end date and time, no new Spot Instance requests are placed or able to fulfill the request. If no value is specified, the Spot Fleet request remains until you cancel it.

', 'SpotInstanceRequest$CreateTime' => '

The date and time when the Spot Instance request was created, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'SpotInstanceRequest$ValidFrom' => '

The start date of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). The request becomes active at this date and time.

', 'SpotInstanceRequest$ValidUntil' => '

The end date of the request, in UTC format (YYYY-MM-DDTHH:MM:SSZ).

  • For a persistent request, the request remains active until the validUntil date and time is reached. Otherwise, the request remains active until you cancel it.

  • For a one-time request, the request remains active until all instances launch, the request is canceled, or the validUntil date and time is reached. By default, the request is valid for 7 days from the date the request was created.

', 'SpotInstanceStatus$UpdateTime' => '

The date and time of the most recent status update, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'SpotMarketOptions$ValidUntil' => '

The end date of the request, in UTC format (YYYY-MM-DDTHH:MM:SSZ). Supported only for persistent requests.

  • For a persistent request, the request remains active until the ValidUntil date and time is reached. Otherwise, the request remains active until you cancel it.

  • For a one-time request, ValidUntil is not supported. The request remains active until all instances launch or you cancel the request.

', 'SpotPrice$Timestamp' => '

The date and time the request was created, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

', 'TransitGateway$CreationTime' => '

The creation time.

', 'TransitGatewayAttachment$CreationTime' => '

The creation time.

', 'TransitGatewayConnect$CreationTime' => '

The creation time.

', 'TransitGatewayConnectPeer$CreationTime' => '

The creation time.

', 'TransitGatewayMulticastDomain$CreationTime' => '

The time the transit gateway multicast domain was created.

', 'TransitGatewayPeeringAttachment$CreationTime' => '

The time the transit gateway peering attachment was created.

', 'TransitGatewayPolicyTable$CreationTime' => '

The timestamp when the transit gateway policy table was created.

', 'TransitGatewayRouteTable$CreationTime' => '

The creation time.

', 'TransitGatewayRouteTableAnnouncement$CreationTime' => '

The timestamp when the transit gateway route table announcement was created.

', 'TransitGatewayVpcAttachment$CreationTime' => '

The creation time.

', 'VgwTelemetry$LastStatusChange' => '

The date and time of the last change in status. This field is updated when changes in IKE (Phase 1), IPSec (Phase 2), or BGP status are detected.

', 'Volume$CreateTime' => '

The time stamp when volume creation was initiated.

', 'VolumeAttachment$AttachTime' => '

The time stamp when the attachment initiated.

', 'VolumeModification$StartTime' => '

The modification start time.

', 'VolumeModification$EndTime' => '

The modification completion or failure time.

', 'VpcPeeringConnection$ExpirationTime' => '

The time that an unaccepted VPC peering connection will expire.

', ], ], 'DedicatedHostFlag' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$DedicatedHostsSupported' => '

Indicates whether Dedicated Hosts are supported on the instance type.

', ], ], 'DedicatedHostId' => [ 'base' => NULL, 'refs' => [ 'DedicatedHostIdList$member' => NULL, 'LaunchTemplatePlacementRequest$HostId' => '

The ID of the Dedicated Host for the instance.

', 'ModifyInstancePlacementRequest$HostId' => '

The ID of the Dedicated Host with which to associate the instance.

', 'RequestHostIdList$member' => NULL, 'RequestHostIdSet$member' => NULL, ], ], 'DedicatedHostIdList' => [ 'base' => NULL, 'refs' => [ 'InstanceEventWindowAssociationRequest$DedicatedHostIds' => '

The IDs of the Dedicated Hosts to associate with the event window.

', 'InstanceEventWindowAssociationTarget$DedicatedHostIds' => '

The IDs of the Dedicated Hosts associated with the event window.

', 'InstanceEventWindowDisassociationRequest$DedicatedHostIds' => '

The IDs of the Dedicated Hosts to disassociate from the event window.

', ], ], 'DefaultNetworkCardIndex' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$DefaultNetworkCardIndex' => '

The index of the default network card, starting at 0.

', ], ], 'DefaultRouteTableAssociationValue' => [ 'base' => NULL, 'refs' => [ 'ModifyTransitGatewayOptions$DefaultRouteTableAssociation' => '

Enable or disable automatic association with the default association route table.

', 'TransitGatewayOptions$DefaultRouteTableAssociation' => '

Indicates whether resource attachments are automatically associated with the default association route table.

', 'TransitGatewayRequestOptions$DefaultRouteTableAssociation' => '

Enable or disable automatic association with the default association route table. Enabled by default.

', ], ], 'DefaultRouteTablePropagationValue' => [ 'base' => NULL, 'refs' => [ 'ModifyTransitGatewayOptions$DefaultRouteTablePropagation' => '

Enable or disable automatic propagation of routes to the default propagation route table.

', 'TransitGatewayOptions$DefaultRouteTablePropagation' => '

Indicates whether resource attachments automatically propagate routes to the default propagation route table.

', 'TransitGatewayRequestOptions$DefaultRouteTablePropagation' => '

Enable or disable automatic propagation of routes to the default propagation route table. Enabled by default.

', ], ], 'DefaultTargetCapacityType' => [ 'base' => NULL, 'refs' => [ 'TargetCapacitySpecification$DefaultTargetCapacityType' => '

The default target capacity type.

', 'TargetCapacitySpecificationRequest$DefaultTargetCapacityType' => '

The default target capacity type.

', ], ], 'DefaultingDhcpOptionsId' => [ 'base' => NULL, 'refs' => [ 'AssociateDhcpOptionsRequest$DhcpOptionsId' => '

The ID of the DHCP options set, or default to associate no DHCP options with the VPC.

', ], ], 'DeleteCarrierGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCarrierGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteClientVpnEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteClientVpnEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteClientVpnRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteClientVpnRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCoipCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCoipCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCoipPoolRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCoipPoolResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCustomerGatewayRequest' => [ 'base' => '

Contains the parameters for DeleteCustomerGateway.

', 'refs' => [], ], 'DeleteDhcpOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteEgressOnlyInternetGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteEgressOnlyInternetGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFleetError' => [ 'base' => '

Describes an EC2 Fleet error.

', 'refs' => [ 'DeleteFleetErrorItem$Error' => '

The error.

', ], ], 'DeleteFleetErrorCode' => [ 'base' => NULL, 'refs' => [ 'DeleteFleetError$Code' => '

The error code.

', ], ], 'DeleteFleetErrorItem' => [ 'base' => '

Describes an EC2 Fleet that was not successfully deleted.

', 'refs' => [ 'DeleteFleetErrorSet$member' => NULL, ], ], 'DeleteFleetErrorSet' => [ 'base' => NULL, 'refs' => [ 'DeleteFleetsResult$UnsuccessfulFleetDeletions' => '

Information about the EC2 Fleets that are not successfully deleted.

', ], ], 'DeleteFleetSuccessItem' => [ 'base' => '

Describes an EC2 Fleet that was successfully deleted.

', 'refs' => [ 'DeleteFleetSuccessSet$member' => NULL, ], ], 'DeleteFleetSuccessSet' => [ 'base' => NULL, 'refs' => [ 'DeleteFleetsResult$SuccessfulFleetDeletions' => '

Information about the EC2 Fleets that are successfully deleted.

', ], ], 'DeleteFleetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFleetsResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFlowLogsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFlowLogsResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFpgaImageRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFpgaImageResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteInstanceConnectEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteInstanceConnectEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteInstanceEventWindowRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteInstanceEventWindowResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteInternetGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIpamPoolRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIpamPoolResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIpamRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIpamResourceDiscoveryRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIpamResourceDiscoveryResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIpamResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIpamScopeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIpamScopeResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteKeyPairRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteKeyPairResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLaunchTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLaunchTemplateResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLaunchTemplateVersionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLaunchTemplateVersionsResponseErrorItem' => [ 'base' => '

Describes a launch template version that could not be deleted.

', 'refs' => [ 'DeleteLaunchTemplateVersionsResponseErrorSet$member' => NULL, ], ], 'DeleteLaunchTemplateVersionsResponseErrorSet' => [ 'base' => NULL, 'refs' => [ 'DeleteLaunchTemplateVersionsResult$UnsuccessfullyDeletedLaunchTemplateVersions' => '

Information about the launch template versions that could not be deleted.

', ], ], 'DeleteLaunchTemplateVersionsResponseSuccessItem' => [ 'base' => '

Describes a launch template version that was successfully deleted.

', 'refs' => [ 'DeleteLaunchTemplateVersionsResponseSuccessSet$member' => NULL, ], ], 'DeleteLaunchTemplateVersionsResponseSuccessSet' => [ 'base' => NULL, 'refs' => [ 'DeleteLaunchTemplateVersionsResult$SuccessfullyDeletedLaunchTemplateVersions' => '

Information about the launch template versions that were successfully deleted.

', ], ], 'DeleteLaunchTemplateVersionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLocalGatewayRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLocalGatewayRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLocalGatewayRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLocalGatewayRouteTableResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLocalGatewayRouteTableVpcAssociationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLocalGatewayRouteTableVpcAssociationResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteManagedPrefixListRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteManagedPrefixListResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNatGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNatGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkAclEntryRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkAclRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInsightsAccessScopeAnalysisRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInsightsAccessScopeAnalysisResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInsightsAccessScopeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInsightsAccessScopeResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInsightsAnalysisRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInsightsAnalysisResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInsightsPathRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInsightsPathResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteNetworkInterfacePermissionRequest' => [ 'base' => '

Contains the parameters for DeleteNetworkInterfacePermission.

', 'refs' => [], ], 'DeleteNetworkInterfacePermissionResult' => [ 'base' => '

Contains the output for DeleteNetworkInterfacePermission.

', 'refs' => [], ], 'DeleteNetworkInterfaceRequest' => [ 'base' => '

Contains the parameters for DeleteNetworkInterface.

', 'refs' => [], ], 'DeletePlacementGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeletePublicIpv4PoolRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeletePublicIpv4PoolResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteQueuedReservedInstancesError' => [ 'base' => '

Describes the error for a Reserved Instance whose queued purchase could not be deleted.

', 'refs' => [ 'FailedQueuedPurchaseDeletion$Error' => '

The error.

', ], ], 'DeleteQueuedReservedInstancesErrorCode' => [ 'base' => NULL, 'refs' => [ 'DeleteQueuedReservedInstancesError$Code' => '

The error code.

', ], ], 'DeleteQueuedReservedInstancesIdList' => [ 'base' => NULL, 'refs' => [ 'DeleteQueuedReservedInstancesRequest$ReservedInstancesIds' => '

The IDs of the Reserved Instances.

', ], ], 'DeleteQueuedReservedInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteQueuedReservedInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteSecurityGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteSnapshotRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteSpotDatafeedSubscriptionRequest' => [ 'base' => '

Contains the parameters for DeleteSpotDatafeedSubscription.

', 'refs' => [], ], 'DeleteSubnetCidrReservationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteSubnetCidrReservationResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteSubnetRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTagsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTrafficMirrorFilterRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTrafficMirrorFilterResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTrafficMirrorFilterRuleRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTrafficMirrorFilterRuleResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTrafficMirrorSessionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTrafficMirrorSessionResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTrafficMirrorTargetRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTrafficMirrorTargetResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayConnectPeerRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayConnectPeerResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayConnectRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayConnectResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayMulticastDomainRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayMulticastDomainResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayPeeringAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayPeeringAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayPolicyTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayPolicyTableResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayPrefixListReferenceRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayPrefixListReferenceResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayRouteTableAnnouncementRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayRouteTableAnnouncementResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayRouteTableResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayVpcAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTransitGatewayVpcAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVerifiedAccessEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVerifiedAccessEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVerifiedAccessGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVerifiedAccessGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVerifiedAccessInstanceRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVerifiedAccessInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVerifiedAccessTrustProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVerifiedAccessTrustProviderResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVolumeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcEndpointConnectionNotificationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcEndpointConnectionNotificationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcEndpointServiceConfigurationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcEndpointServiceConfigurationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcEndpointsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcEndpointsResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcPeeringConnectionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcPeeringConnectionResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpcRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteVpnConnectionRequest' => [ 'base' => '

Contains the parameters for DeleteVpnConnection.

', 'refs' => [], ], 'DeleteVpnConnectionRouteRequest' => [ 'base' => '

Contains the parameters for DeleteVpnConnectionRoute.

', 'refs' => [], ], 'DeleteVpnGatewayRequest' => [ 'base' => '

Contains the parameters for DeleteVpnGateway.

', 'refs' => [], ], 'DeprovisionByoipCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeprovisionByoipCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'DeprovisionIpamByoasnRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeprovisionIpamByoasnResult' => [ 'base' => NULL, 'refs' => [], ], 'DeprovisionIpamPoolCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeprovisionIpamPoolCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'DeprovisionPublicIpv4PoolCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeprovisionPublicIpv4PoolCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'DeprovisionedAddressSet' => [ 'base' => NULL, 'refs' => [ 'DeprovisionPublicIpv4PoolCidrResult$DeprovisionedAddresses' => '

The deprovisioned CIDRs.

', ], ], 'DeregisterImageRequest' => [ 'base' => '

Contains the parameters for DeregisterImage.

', 'refs' => [], ], 'DeregisterInstanceEventNotificationAttributesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeregisterInstanceEventNotificationAttributesResult' => [ 'base' => NULL, 'refs' => [], ], 'DeregisterInstanceTagAttributeRequest' => [ 'base' => '

Information about the tag keys to deregister for the current Region. You can either specify individual tag keys or deregister all tag keys in the current Region. You must specify either IncludeAllTagsOfInstance or InstanceTagKeys in the request

', 'refs' => [ 'DeregisterInstanceEventNotificationAttributesRequest$InstanceTagAttribute' => '

Information about the tag keys to deregister.

', ], ], 'DeregisterTransitGatewayMulticastGroupMembersRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeregisterTransitGatewayMulticastGroupMembersResult' => [ 'base' => NULL, 'refs' => [], ], 'DeregisterTransitGatewayMulticastGroupSourcesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeregisterTransitGatewayMulticastGroupSourcesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAccountAttributesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAccountAttributesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAddressTransfersMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressTransfersRequest$MaxResults' => '

The maximum number of address transfers to return in one page of results.

', ], ], 'DescribeAddressTransfersRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAddressTransfersResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAddressesAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAddressesAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAddressesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAddressesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAggregateIdFormatRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAggregateIdFormatResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAvailabilityZonesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAvailabilityZonesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAwsNetworkPerformanceMetricSubscriptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAwsNetworkPerformanceMetricSubscriptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeBundleTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeBundleTasksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeByoipCidrsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeByoipCidrsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'DescribeByoipCidrsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeByoipCidrsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCapacityBlockOfferingsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeCapacityBlockOfferingsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeCapacityBlockOfferingsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCapacityBlockOfferingsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCapacityReservationFleetsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeCapacityReservationFleetsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeCapacityReservationFleetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCapacityReservationFleetsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCapacityReservationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeCapacityReservationsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeCapacityReservationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCapacityReservationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCarrierGatewaysRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCarrierGatewaysResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClassicLinkInstancesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeClassicLinkInstancesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

Constraint: If the value is greater than 1000, we return only 1000 items.

', ], ], 'DescribeClassicLinkInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClassicLinkInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnAuthorizationRulesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnAuthorizationRulesRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the nextToken value.

', ], ], 'DescribeClientVpnAuthorizationRulesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnAuthorizationRulesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnConnectionsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnConnectionsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the nextToken value.

', ], ], 'DescribeClientVpnConnectionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnConnectionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnEndpointMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnEndpointsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the nextToken value.

', ], ], 'DescribeClientVpnEndpointsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnEndpointsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnRoutesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnRoutesRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the nextToken value.

', ], ], 'DescribeClientVpnRoutesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnRoutesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnTargetNetworksMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnTargetNetworksRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the nextToken value.

', ], ], 'DescribeClientVpnTargetNetworksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeClientVpnTargetNetworksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCoipPoolsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCoipPoolsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeConversionTaskList' => [ 'base' => NULL, 'refs' => [ 'DescribeConversionTasksResult$ConversionTasks' => '

Information about the conversion tasks.

', ], ], 'DescribeConversionTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeConversionTasksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCustomerGatewaysRequest' => [ 'base' => '

Contains the parameters for DescribeCustomerGateways.

', 'refs' => [], ], 'DescribeCustomerGatewaysResult' => [ 'base' => '

Contains the output of DescribeCustomerGateways.

', 'refs' => [], ], 'DescribeDhcpOptionsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeDhcpOptionsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeDhcpOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDhcpOptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeEgressOnlyInternetGatewaysMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeEgressOnlyInternetGatewaysRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeEgressOnlyInternetGatewaysRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeEgressOnlyInternetGatewaysResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeElasticGpusMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeElasticGpusRequest$MaxResults' => '

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value. This value can be between 5 and 1000.

', ], ], 'DescribeElasticGpusRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeElasticGpusResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeExportImageTasksMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeExportImageTasksRequest$MaxResults' => '

The maximum number of results to return in a single call.

', ], ], 'DescribeExportImageTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeExportImageTasksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeExportTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeExportTasksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFastLaunchImagesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFastLaunchImagesRequestMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeFastLaunchImagesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeFastLaunchImagesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFastLaunchImagesSuccessItem' => [ 'base' => '

Describe details about a Windows image with Windows fast launch enabled that meets the requested criteria. Criteria are defined by the DescribeFastLaunchImages action filters.

', 'refs' => [ 'DescribeFastLaunchImagesSuccessSet$member' => NULL, ], ], 'DescribeFastLaunchImagesSuccessSet' => [ 'base' => NULL, 'refs' => [ 'DescribeFastLaunchImagesResult$FastLaunchImages' => '

A collection of details about the fast-launch enabled Windows images that meet the requested criteria.

', ], ], 'DescribeFastSnapshotRestoreSuccessItem' => [ 'base' => '

Describes fast snapshot restores for a snapshot.

', 'refs' => [ 'DescribeFastSnapshotRestoreSuccessSet$member' => NULL, ], ], 'DescribeFastSnapshotRestoreSuccessSet' => [ 'base' => NULL, 'refs' => [ 'DescribeFastSnapshotRestoresResult$FastSnapshotRestores' => '

Information about the state of fast snapshot restores.

', ], ], 'DescribeFastSnapshotRestoresMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeFastSnapshotRestoresRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeFastSnapshotRestoresRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFastSnapshotRestoresResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFleetError' => [ 'base' => '

Describes the instances that could not be launched by the fleet.

', 'refs' => [ 'DescribeFleetsErrorSet$member' => NULL, ], ], 'DescribeFleetHistoryRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFleetHistoryResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFleetInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFleetInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFleetsErrorSet' => [ 'base' => NULL, 'refs' => [ 'FleetData$Errors' => '

Information about the instances that could not be launched by the fleet. Valid only when Type is set to instant.

', ], ], 'DescribeFleetsInstances' => [ 'base' => '

Describes the instances that were launched by the fleet.

', 'refs' => [ 'DescribeFleetsInstancesSet$member' => NULL, ], ], 'DescribeFleetsInstancesSet' => [ 'base' => NULL, 'refs' => [ 'FleetData$Instances' => '

Information about the instances that were launched by the fleet. Valid only when Type is set to instant.

', ], ], 'DescribeFleetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFleetsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFlowLogsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFlowLogsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFpgaImageAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFpgaImageAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFpgaImagesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeFpgaImagesRequest$MaxResults' => '

The maximum number of results to return in a single call.

', ], ], 'DescribeFpgaImagesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFpgaImagesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeHostReservationOfferingsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeHostReservationOfferingsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeHostReservationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeHostReservationOfferingsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the returned nextToken value. This value can be between 5 and 500. If maxResults is given a larger value than 500, you receive an error.

', ], ], 'DescribeHostReservationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeHostReservationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeHostsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeHostsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIamInstanceProfileAssociationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeIamInstanceProfileAssociationsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeIamInstanceProfileAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIamInstanceProfileAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIdFormatRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIdFormatResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIdentityIdFormatRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIdentityIdFormatResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeImageAttributeRequest' => [ 'base' => '

Contains the parameters for DescribeImageAttribute.

', 'refs' => [], ], 'DescribeImagesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeImagesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeImportImageTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeImportImageTasksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeImportSnapshotTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeImportSnapshotTasksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceConnectEndpointsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceConnectEndpointsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceCreditSpecificationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceCreditSpecificationsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

You cannot specify this parameter and the instance IDs parameter in the same call.

', ], ], 'DescribeInstanceCreditSpecificationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceCreditSpecificationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceEventNotificationAttributesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceEventNotificationAttributesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceEventWindowsRequest' => [ 'base' => 'Describe instance event windows by InstanceEventWindow.', 'refs' => [], ], 'DescribeInstanceEventWindowsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceStatusRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceStatusResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceTopologyGroupNameSet' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTopologyRequest$GroupNames' => '

The name of the placement group that each instance is in.

Constraints: Maximum 100 explicitly specified placement group names.

', ], ], 'DescribeInstanceTopologyInstanceIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTopologyRequest$InstanceIds' => '

The instance IDs.

Default: Describes all your instances.

Constraints: Maximum 100 explicitly specified instance IDs.

', ], ], 'DescribeInstanceTopologyMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTopologyRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

You can\'t specify this parameter and the instance IDs parameter in the same request.

Default: 20

', ], ], 'DescribeInstanceTopologyRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceTopologyResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceTypeOfferingsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceTypeOfferingsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceTypesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstanceTypesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInternetGatewaysMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeInternetGatewaysRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeInternetGatewaysRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeInternetGatewaysResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamByoasnMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeIpamByoasnRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'DescribeIpamByoasnRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamByoasnResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamPoolsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamPoolsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamResourceDiscoveriesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamResourceDiscoveriesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamResourceDiscoveryAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamResourceDiscoveryAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamScopesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamScopesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpamsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpv6PoolsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIpv6PoolsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeKeyPairsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeKeyPairsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLaunchTemplateVersionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLaunchTemplateVersionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLaunchTemplatesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeLaunchTemplatesRequest$MaxResults' => '

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value. This value can be between 1 and 200.

', ], ], 'DescribeLaunchTemplatesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLaunchTemplatesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayRouteTableVpcAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayRouteTableVpcAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayRouteTablesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayRouteTablesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayVirtualInterfaceGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayVirtualInterfaceGroupsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayVirtualInterfacesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewayVirtualInterfacesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewaysRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLocalGatewaysResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLockedSnapshotsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeLockedSnapshotsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeLockedSnapshotsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeLockedSnapshotsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeManagedPrefixListsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeManagedPrefixListsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeMovingAddressesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeMovingAddressesRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results of the initial request can be seen by sending another request with the returned NextToken value. This value can be between 5 and 1000; if MaxResults is given a value outside of this range, an error is returned.

Default: If no value is provided, the default is 1000.

', ], ], 'DescribeMovingAddressesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeMovingAddressesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNatGatewaysMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeNatGatewaysRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeNatGatewaysRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNatGatewaysResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkAclsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkAclsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeNetworkAclsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkAclsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInsightsAccessScopeAnalysesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInsightsAccessScopeAnalysesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInsightsAccessScopesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInsightsAccessScopesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInsightsAnalysesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInsightsAnalysesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInsightsPathsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInsightsPathsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeNetworkInterfaceAttributeRequest' => [ 'base' => '

Contains the parameters for DescribeNetworkInterfaceAttribute.

', 'refs' => [], ], 'DescribeNetworkInterfaceAttributeResult' => [ 'base' => '

Contains the output of DescribeNetworkInterfaceAttribute.

', 'refs' => [], ], 'DescribeNetworkInterfacePermissionsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInterfacePermissionsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. If this parameter is not specified, up to 50 results are returned by default. For more information, see Pagination.

', ], ], 'DescribeNetworkInterfacePermissionsRequest' => [ 'base' => '

Contains the parameters for DescribeNetworkInterfacePermissions.

', 'refs' => [], ], 'DescribeNetworkInterfacePermissionsResult' => [ 'base' => '

Contains the output for DescribeNetworkInterfacePermissions.

', 'refs' => [], ], 'DescribeNetworkInterfacesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInterfacesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. You cannot specify this parameter and the network interface IDs parameter in the same request. For more information, see Pagination.

', ], ], 'DescribeNetworkInterfacesRequest' => [ 'base' => '

Contains the parameters for DescribeNetworkInterfaces.

', 'refs' => [], ], 'DescribeNetworkInterfacesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribePlacementGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribePlacementGroupsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribePrefixListsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribePrefixListsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribePrincipalIdFormatMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribePrincipalIdFormatRequest$MaxResults' => '

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value.

', ], ], 'DescribePrincipalIdFormatRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribePrincipalIdFormatResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribePublicIpv4PoolsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribePublicIpv4PoolsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeRegionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeRegionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeReplaceRootVolumeTasksMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeReplaceRootVolumeTasksRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeReplaceRootVolumeTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeReplaceRootVolumeTasksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeReservedInstancesListingsRequest' => [ 'base' => '

Contains the parameters for DescribeReservedInstancesListings.

', 'refs' => [], ], 'DescribeReservedInstancesListingsResult' => [ 'base' => '

Contains the output of DescribeReservedInstancesListings.

', 'refs' => [], ], 'DescribeReservedInstancesModificationsRequest' => [ 'base' => '

Contains the parameters for DescribeReservedInstancesModifications.

', 'refs' => [], ], 'DescribeReservedInstancesModificationsResult' => [ 'base' => '

Contains the output of DescribeReservedInstancesModifications.

', 'refs' => [], ], 'DescribeReservedInstancesOfferingsRequest' => [ 'base' => '

Contains the parameters for DescribeReservedInstancesOfferings.

', 'refs' => [], ], 'DescribeReservedInstancesOfferingsResult' => [ 'base' => '

Contains the output of DescribeReservedInstancesOfferings.

', 'refs' => [], ], 'DescribeReservedInstancesRequest' => [ 'base' => '

Contains the parameters for DescribeReservedInstances.

', 'refs' => [], ], 'DescribeReservedInstancesResult' => [ 'base' => '

Contains the output for DescribeReservedInstances.

', 'refs' => [], ], 'DescribeRouteTablesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeRouteTablesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeRouteTablesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeRouteTablesResult' => [ 'base' => '

Contains the output of DescribeRouteTables.

', 'refs' => [], ], 'DescribeScheduledInstanceAvailabilityMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeScheduledInstanceAvailabilityRequest$MaxResults' => '

The maximum number of results to return in a single call. This value can be between 5 and 300. The default value is 300. To retrieve the remaining results, make another call with the returned NextToken value.

', ], ], 'DescribeScheduledInstanceAvailabilityRequest' => [ 'base' => '

Contains the parameters for DescribeScheduledInstanceAvailability.

', 'refs' => [], ], 'DescribeScheduledInstanceAvailabilityResult' => [ 'base' => '

Contains the output of DescribeScheduledInstanceAvailability.

', 'refs' => [], ], 'DescribeScheduledInstancesRequest' => [ 'base' => '

Contains the parameters for DescribeScheduledInstances.

', 'refs' => [], ], 'DescribeScheduledInstancesResult' => [ 'base' => '

Contains the output of DescribeScheduledInstances.

', 'refs' => [], ], 'DescribeSecurityGroupReferencesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSecurityGroupReferencesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSecurityGroupRulesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeSecurityGroupRulesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. This value can be between 5 and 1000. If this parameter is not specified, then all items are returned. For more information, see Pagination.

', ], ], 'DescribeSecurityGroupRulesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSecurityGroupRulesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSecurityGroupsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeSecurityGroupsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. This value can be between 5 and 1000. If this parameter is not specified, then all items are returned. For more information, see Pagination.

', ], ], 'DescribeSecurityGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSecurityGroupsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSnapshotAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSnapshotAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSnapshotTierStatusMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeSnapshotTierStatusRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeSnapshotTierStatusRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSnapshotTierStatusResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSnapshotsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSnapshotsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSpotDatafeedSubscriptionRequest' => [ 'base' => '

Contains the parameters for DescribeSpotDatafeedSubscription.

', 'refs' => [], ], 'DescribeSpotDatafeedSubscriptionResult' => [ 'base' => '

Contains the output of DescribeSpotDatafeedSubscription.

', 'refs' => [], ], 'DescribeSpotFleetInstancesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotFleetInstancesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeSpotFleetInstancesRequest' => [ 'base' => '

Contains the parameters for DescribeSpotFleetInstances.

', 'refs' => [], ], 'DescribeSpotFleetInstancesResponse' => [ 'base' => '

Contains the output of DescribeSpotFleetInstances.

', 'refs' => [], ], 'DescribeSpotFleetRequestHistoryMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotFleetRequestHistoryRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeSpotFleetRequestHistoryRequest' => [ 'base' => '

Contains the parameters for DescribeSpotFleetRequestHistory.

', 'refs' => [], ], 'DescribeSpotFleetRequestHistoryResponse' => [ 'base' => '

Contains the output of DescribeSpotFleetRequestHistory.

', 'refs' => [], ], 'DescribeSpotFleetRequestsRequest' => [ 'base' => '

Contains the parameters for DescribeSpotFleetRequests.

', 'refs' => [], ], 'DescribeSpotFleetRequestsResponse' => [ 'base' => '

Contains the output of DescribeSpotFleetRequests.

', 'refs' => [], ], 'DescribeSpotInstanceRequestsRequest' => [ 'base' => '

Contains the parameters for DescribeSpotInstanceRequests.

', 'refs' => [], ], 'DescribeSpotInstanceRequestsResult' => [ 'base' => '

Contains the output of DescribeSpotInstanceRequests.

', 'refs' => [], ], 'DescribeSpotPriceHistoryRequest' => [ 'base' => '

Contains the parameters for DescribeSpotPriceHistory.

', 'refs' => [], ], 'DescribeSpotPriceHistoryResult' => [ 'base' => '

Contains the output of DescribeSpotPriceHistory.

', 'refs' => [], ], 'DescribeStaleSecurityGroupsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeStaleSecurityGroupsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeStaleSecurityGroupsNextToken' => [ 'base' => NULL, 'refs' => [ 'DescribeStaleSecurityGroupsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', ], ], 'DescribeStaleSecurityGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeStaleSecurityGroupsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeStoreImageTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeStoreImageTasksRequestMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeStoreImageTasksRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

You cannot specify this parameter and the ImageIds parameter in the same call.

', ], ], 'DescribeStoreImageTasksResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSubnetsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeSubnetsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeSubnetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSubnetsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTagsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTagsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTrafficMirrorFiltersRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTrafficMirrorFiltersResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTrafficMirrorSessionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTrafficMirrorSessionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTrafficMirrorTargetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTrafficMirrorTargetsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayAttachmentsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayAttachmentsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayConnectPeersRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayConnectPeersResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayConnectsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayConnectsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayMulticastDomainsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayMulticastDomainsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayPeeringAttachmentsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayPeeringAttachmentsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayPolicyTablesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayPolicyTablesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayRouteTableAnnouncementsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayRouteTableAnnouncementsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayRouteTablesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayRouteTablesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayVpcAttachmentsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewayVpcAttachmentsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewaysRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTransitGatewaysResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTrunkInterfaceAssociationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeTrunkInterfaceAssociationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'DescribeTrunkInterfaceAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTrunkInterfaceAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessEndpointsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessEndpointsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'DescribeVerifiedAccessEndpointsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessEndpointsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessGroupMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessGroupsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'DescribeVerifiedAccessGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessGroupsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessInstanceLoggingConfigurationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessInstanceLoggingConfigurationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'DescribeVerifiedAccessInstanceLoggingConfigurationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessInstanceLoggingConfigurationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessInstancesMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessInstancesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'DescribeVerifiedAccessInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessTrustProvidersMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessTrustProvidersRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'DescribeVerifiedAccessTrustProvidersRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVerifiedAccessTrustProvidersResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVolumeAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVolumeAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVolumeStatusRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVolumeStatusResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVolumesModificationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVolumesModificationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVolumesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVolumesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcClassicLinkDnsSupportMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcClassicLinkDnsSupportRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeVpcClassicLinkDnsSupportNextToken' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcClassicLinkDnsSupportRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeVpcClassicLinkDnsSupportResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', ], ], 'DescribeVpcClassicLinkDnsSupportRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcClassicLinkDnsSupportResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcClassicLinkRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcClassicLinkResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointConnectionNotificationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointConnectionNotificationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointConnectionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointConnectionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointServiceConfigurationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointServiceConfigurationsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointServicePermissionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointServicePermissionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointServicesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointServicesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcEndpointsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcPeeringConnectionsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcPeeringConnectionsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeVpcPeeringConnectionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcPeeringConnectionsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'DescribeVpcsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpcsResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeVpnConnectionsRequest' => [ 'base' => '

Contains the parameters for DescribeVpnConnections.

', 'refs' => [], ], 'DescribeVpnConnectionsResult' => [ 'base' => '

Contains the output of DescribeVpnConnections.

', 'refs' => [], ], 'DescribeVpnGatewaysRequest' => [ 'base' => '

Contains the parameters for DescribeVpnGateways.

', 'refs' => [], ], 'DescribeVpnGatewaysResult' => [ 'base' => '

Contains the output of DescribeVpnGateways.

', 'refs' => [], ], 'DestinationFileFormat' => [ 'base' => NULL, 'refs' => [ 'DestinationOptionsRequest$FileFormat' => '

The format for the flow log. The default is plain-text.

', 'DestinationOptionsResponse$FileFormat' => '

The format for the flow log.

', ], ], 'DestinationOptionsRequest' => [ 'base' => '

Describes the destination options for a flow log.

', 'refs' => [ 'CreateFlowLogsRequest$DestinationOptions' => '

The destination options.

', ], ], 'DestinationOptionsResponse' => [ 'base' => '

Describes the destination options for a flow log.

', 'refs' => [ 'FlowLog$DestinationOptions' => '

The destination options.

', ], ], 'DetachClassicLinkVpcRequest' => [ 'base' => NULL, 'refs' => [], ], 'DetachClassicLinkVpcResult' => [ 'base' => NULL, 'refs' => [], ], 'DetachInternetGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'DetachNetworkInterfaceRequest' => [ 'base' => '

Contains the parameters for DetachNetworkInterface.

', 'refs' => [], ], 'DetachVerifiedAccessTrustProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'DetachVerifiedAccessTrustProviderResult' => [ 'base' => NULL, 'refs' => [], ], 'DetachVolumeRequest' => [ 'base' => NULL, 'refs' => [], ], 'DetachVpnGatewayRequest' => [ 'base' => '

Contains the parameters for DetachVpnGateway.

', 'refs' => [], ], 'DeviceOptions' => [ 'base' => '

Describes the options for an Amazon Web Services Verified Access device-identity based trust provider.

', 'refs' => [ 'VerifiedAccessTrustProvider$DeviceOptions' => '

The options for device-identity trust provider.

', ], ], 'DeviceTrustProviderType' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessTrustProviderRequest$DeviceTrustProviderType' => '

The type of device-based trust provider. This parameter is required when the provider type is device.

', 'VerifiedAccessTrustProvider$DeviceTrustProviderType' => '

The type of device-based trust provider.

', 'VerifiedAccessTrustProviderCondensed$DeviceTrustProviderType' => '

The type of device-based trust provider.

', ], ], 'DeviceType' => [ 'base' => NULL, 'refs' => [ 'Image$RootDeviceType' => '

The type of root device used by the AMI. The AMI can use an Amazon EBS volume or an instance store volume.

', 'Instance$RootDeviceType' => '

The root device type used by the AMI. The AMI can use an EBS volume or an instance store volume.

', ], ], 'DhcpConfiguration' => [ 'base' => '

Describes a DHCP configuration option.

', 'refs' => [ 'DhcpConfigurationList$member' => NULL, ], ], 'DhcpConfigurationList' => [ 'base' => NULL, 'refs' => [ 'DhcpOptions$DhcpConfigurations' => '

The DHCP options in the set.

', ], ], 'DhcpConfigurationValueList' => [ 'base' => NULL, 'refs' => [ 'DhcpConfiguration$Values' => '

The values for the DHCP option.

', ], ], 'DhcpOptions' => [ 'base' => '

The set of DHCP options.

', 'refs' => [ 'CreateDhcpOptionsResult$DhcpOptions' => '

A set of DHCP options.

', 'DhcpOptionsList$member' => NULL, ], ], 'DhcpOptionsId' => [ 'base' => NULL, 'refs' => [ 'DeleteDhcpOptionsRequest$DhcpOptionsId' => '

The ID of the DHCP options set.

', 'DhcpOptionsIdStringList$member' => NULL, ], ], 'DhcpOptionsIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeDhcpOptionsRequest$DhcpOptionsIds' => '

The IDs of one or more DHCP options sets.

Default: Describes all your DHCP options sets.

', ], ], 'DhcpOptionsList' => [ 'base' => NULL, 'refs' => [ 'DescribeDhcpOptionsResult$DhcpOptions' => '

Information about one or more DHCP options sets.

', ], ], 'DirectoryServiceAuthentication' => [ 'base' => '

Describes an Active Directory.

', 'refs' => [ 'ClientVpnAuthentication$ActiveDirectory' => '

Information about the Active Directory, if applicable.

', ], ], 'DirectoryServiceAuthenticationRequest' => [ 'base' => '

Describes the Active Directory to be used for client authentication.

', 'refs' => [ 'ClientVpnAuthenticationRequest$ActiveDirectory' => '

Information about the Active Directory to be used, if applicable. You must provide this information if Type is directory-service-authentication.

', ], ], 'DisableAddressTransferRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableAddressTransferResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableAwsNetworkPerformanceMetricSubscriptionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableAwsNetworkPerformanceMetricSubscriptionResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableEbsEncryptionByDefaultRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableEbsEncryptionByDefaultResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableFastLaunchRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableFastLaunchResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableFastSnapshotRestoreErrorItem' => [ 'base' => '

Contains information about the errors that occurred when disabling fast snapshot restores.

', 'refs' => [ 'DisableFastSnapshotRestoreErrorSet$member' => NULL, ], ], 'DisableFastSnapshotRestoreErrorSet' => [ 'base' => NULL, 'refs' => [ 'DisableFastSnapshotRestoresResult$Unsuccessful' => '

Information about the snapshots for which fast snapshot restores could not be disabled.

', ], ], 'DisableFastSnapshotRestoreStateError' => [ 'base' => '

Describes an error that occurred when disabling fast snapshot restores.

', 'refs' => [ 'DisableFastSnapshotRestoreStateErrorItem$Error' => '

The error.

', ], ], 'DisableFastSnapshotRestoreStateErrorItem' => [ 'base' => '

Contains information about an error that occurred when disabling fast snapshot restores.

', 'refs' => [ 'DisableFastSnapshotRestoreStateErrorSet$member' => NULL, ], ], 'DisableFastSnapshotRestoreStateErrorSet' => [ 'base' => NULL, 'refs' => [ 'DisableFastSnapshotRestoreErrorItem$FastSnapshotRestoreStateErrors' => '

The errors.

', ], ], 'DisableFastSnapshotRestoreSuccessItem' => [ 'base' => '

Describes fast snapshot restores that were successfully disabled.

', 'refs' => [ 'DisableFastSnapshotRestoreSuccessSet$member' => NULL, ], ], 'DisableFastSnapshotRestoreSuccessSet' => [ 'base' => NULL, 'refs' => [ 'DisableFastSnapshotRestoresResult$Successful' => '

Information about the snapshots for which fast snapshot restores were successfully disabled.

', ], ], 'DisableFastSnapshotRestoresRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableFastSnapshotRestoresResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableImageBlockPublicAccessRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableImageBlockPublicAccessResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableImageDeprecationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableImageDeprecationResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableImageRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableImageResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableIpamOrganizationAdminAccountRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableIpamOrganizationAdminAccountResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableSerialConsoleAccessRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableSerialConsoleAccessResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableSnapshotBlockPublicAccessRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableSnapshotBlockPublicAccessResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableTransitGatewayRouteTablePropagationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableTransitGatewayRouteTablePropagationResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableVgwRoutePropagationRequest' => [ 'base' => '

Contains the parameters for DisableVgwRoutePropagation.

', 'refs' => [], ], 'DisableVpcClassicLinkDnsSupportRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableVpcClassicLinkDnsSupportResult' => [ 'base' => NULL, 'refs' => [], ], 'DisableVpcClassicLinkRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableVpcClassicLinkResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateAddressRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateClientVpnTargetNetworkRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateClientVpnTargetNetworkResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateEnclaveCertificateIamRoleRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateEnclaveCertificateIamRoleResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateIamInstanceProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateIamInstanceProfileResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateInstanceEventWindowRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateInstanceEventWindowResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateIpamByoasnRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateIpamByoasnResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateIpamResourceDiscoveryRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateIpamResourceDiscoveryResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateNatGatewayAddressRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateNatGatewayAddressResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateSubnetCidrBlockRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateSubnetCidrBlockResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateTransitGatewayMulticastDomainRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateTransitGatewayMulticastDomainResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateTransitGatewayPolicyTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateTransitGatewayPolicyTableResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateTransitGatewayRouteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateTransitGatewayRouteTableResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateTrunkInterfaceRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateTrunkInterfaceResult' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateVpcCidrBlockRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateVpcCidrBlockResult' => [ 'base' => NULL, 'refs' => [], ], 'DiskCount' => [ 'base' => NULL, 'refs' => [ 'DiskInfo$Count' => '

The number of disks with this configuration.

', ], ], 'DiskImage' => [ 'base' => '

Describes a disk image.

', 'refs' => [ 'DiskImageList$member' => NULL, ], ], 'DiskImageDescription' => [ 'base' => '

Describes a disk image.

', 'refs' => [ 'ImportInstanceVolumeDetailItem$Image' => '

The image.

', 'ImportVolumeTaskDetails$Image' => '

The image.

', ], ], 'DiskImageDetail' => [ 'base' => '

Describes a disk image.

', 'refs' => [ 'DiskImage$Image' => '

Information about the disk image.

', 'ImportVolumeRequest$Image' => '

The disk image.

', ], ], 'DiskImageFormat' => [ 'base' => NULL, 'refs' => [ 'DiskImageDescription$Format' => '

The disk image format.

', 'DiskImageDetail$Format' => '

The disk image format.

', 'ExportImageRequest$DiskImageFormat' => '

The disk image format.

', 'ExportImageResult$DiskImageFormat' => '

The disk image format for the exported image.

', 'ExportToS3Task$DiskImageFormat' => '

The format for the exported image.

', 'ExportToS3TaskSpecification$DiskImageFormat' => '

The format for the exported image.

', ], ], 'DiskImageList' => [ 'base' => NULL, 'refs' => [ 'ImportInstanceRequest$DiskImages' => '

The disk image.

', ], ], 'DiskImageVolumeDescription' => [ 'base' => '

Describes a disk image volume.

', 'refs' => [ 'ImportInstanceVolumeDetailItem$Volume' => '

The volume.

', 'ImportVolumeTaskDetails$Volume' => '

The volume.

', ], ], 'DiskInfo' => [ 'base' => '

Describes a disk.

', 'refs' => [ 'DiskInfoList$member' => NULL, ], ], 'DiskInfoList' => [ 'base' => NULL, 'refs' => [ 'InstanceStorageInfo$Disks' => '

Describes the disks that are available for the instance type.

', ], ], 'DiskSize' => [ 'base' => NULL, 'refs' => [ 'DiskInfo$SizeInGB' => '

The size of the disk in GB.

', 'InstanceStorageInfo$TotalSizeInGB' => '

The total size of the disks, in GB.

', ], ], 'DiskType' => [ 'base' => NULL, 'refs' => [ 'DiskInfo$Type' => '

The type of disk.

', ], ], 'DnsEntry' => [ 'base' => '

Describes a DNS entry.

', 'refs' => [ 'DnsEntrySet$member' => NULL, ], ], 'DnsEntrySet' => [ 'base' => NULL, 'refs' => [ 'VpcEndpoint$DnsEntries' => '

(Interface endpoint) The DNS entries for the endpoint.

', 'VpcEndpointConnection$DnsEntries' => '

The DNS entries for the VPC endpoint.

', ], ], 'DnsNameState' => [ 'base' => NULL, 'refs' => [ 'PrivateDnsNameConfiguration$State' => '

The verification state of the VPC endpoint service.

>Consumers of the endpoint service can use the private name only when the state is verified.

', 'ServiceDetail$PrivateDnsNameVerificationState' => '

The verification state of the VPC endpoint service.

Consumers of the endpoint service cannot use the private name when the state is not verified.

', ], ], 'DnsOptions' => [ 'base' => '

Describes the DNS options for an endpoint.

', 'refs' => [ 'VpcEndpoint$DnsOptions' => '

The DNS options for the endpoint.

', ], ], 'DnsOptionsSpecification' => [ 'base' => '

Describes the DNS options for an endpoint.

', 'refs' => [ 'CreateVpcEndpointRequest$DnsOptions' => '

The DNS options for the endpoint.

', 'ModifyVpcEndpointRequest$DnsOptions' => '

The DNS options for the endpoint.

', ], ], 'DnsRecordIpType' => [ 'base' => NULL, 'refs' => [ 'DnsOptions$DnsRecordIpType' => '

The DNS records created for the endpoint.

', 'DnsOptionsSpecification$DnsRecordIpType' => '

The DNS records created for the endpoint.

', ], ], 'DnsServersOptionsModifyStructure' => [ 'base' => '

Information about the DNS server to be used.

', 'refs' => [ 'ModifyClientVpnEndpointRequest$DnsServers' => '

Information about the DNS servers to be used by Client VPN connections. A Client VPN endpoint can have up to two DNS servers.

', ], ], 'DnsSupportValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayVpcAttachmentRequestOptions$DnsSupport' => '

Enable or disable DNS support. The default is enable.

', 'ModifyTransitGatewayOptions$DnsSupport' => '

Enable or disable DNS support.

', 'ModifyTransitGatewayVpcAttachmentRequestOptions$DnsSupport' => '

Enable or disable DNS support. The default is enable.

', 'TransitGatewayOptions$DnsSupport' => '

Indicates whether DNS support is enabled.

', 'TransitGatewayRequestOptions$DnsSupport' => '

Enable or disable DNS support. Enabled by default.

', 'TransitGatewayVpcAttachmentOptions$DnsSupport' => '

Indicates whether DNS support is enabled.

', ], ], 'DomainType' => [ 'base' => NULL, 'refs' => [ 'Address$Domain' => '

The network (vpc).

', 'AllocateAddressRequest$Domain' => '

The network (vpc).

', 'AllocateAddressResult$Domain' => '

The network (vpc).

', ], ], 'Double' => [ 'base' => NULL, 'refs' => [ 'CapacityReservationFleet$TotalFulfilledCapacity' => '

The capacity units that have been fulfilled.

', 'ClientData$UploadSize' => '

The size of the uploaded disk image, in GiB.

', 'CreateCapacityReservationFleetResult$TotalFulfilledCapacity' => '

The requested capacity units that have been successfully reserved.

', 'FleetCapacityReservation$FulfilledCapacity' => '

The number of capacity units fulfilled by the Capacity Reservation. For more information, see Total target capacity in the Amazon EC2 User Guide.

', 'FleetData$FulfilledCapacity' => '

The number of units fulfilled by this request compared to the set target capacity.

', 'FleetData$FulfilledOnDemandCapacity' => '

The number of units fulfilled by this request compared to the set target On-Demand capacity.

', 'FleetLaunchTemplateOverrides$WeightedCapacity' => '

The number of units provided by the specified instance type.

', 'FleetLaunchTemplateOverrides$Priority' => '

The priority for the launch template override. The highest priority is launched first.

If the On-Demand AllocationStrategy is set to prioritized, EC2 Fleet uses priority to determine which launch template override to use first in fulfilling On-Demand capacity.

If the Spot AllocationStrategy is set to capacity-optimized-prioritized, EC2 Fleet uses priority on a best-effort basis to determine which launch template override to use in fulfilling Spot capacity, but optimizes for capacity first.

Valid values are whole numbers starting at 0. The lower the number, the higher the priority. If no number is set, the override has the lowest priority. You can set the same priority for different launch template overrides.

', 'FleetLaunchTemplateOverridesRequest$WeightedCapacity' => '

The number of units provided by the specified instance type.

', 'FleetLaunchTemplateOverridesRequest$Priority' => '

The priority for the launch template override. The highest priority is launched first.

If the On-Demand AllocationStrategy is set to prioritized, EC2 Fleet uses priority to determine which launch template override to use first in fulfilling On-Demand capacity.

If the Spot AllocationStrategy is set to capacity-optimized-prioritized, EC2 Fleet uses priority on a best-effort basis to determine which launch template override to use in fulfilling Spot capacity, but optimizes for capacity first.

Valid values are whole numbers starting at 0. The lower the number, the higher the priority. If no number is set, the launch template override has the lowest priority. You can set the same priority for different launch template overrides.

', 'LaunchTemplateOverrides$WeightedCapacity' => '

The number of units provided by the specified instance type.

', 'LaunchTemplateOverrides$Priority' => '

The priority for the launch template override. The highest priority is launched first.

If OnDemandAllocationStrategy is set to prioritized, Spot Fleet uses priority to determine which launch template override to use first in fulfilling On-Demand capacity.

If the Spot AllocationStrategy is set to capacityOptimizedPrioritized, Spot Fleet uses priority on a best-effort basis to determine which launch template override to use in fulfilling Spot capacity, but optimizes for capacity first.

Valid values are whole numbers starting at 0. The lower the number, the higher the priority. If no number is set, the launch template override has the lowest priority. You can set the same priority for different launch template overrides.

', 'MemoryGiBPerVCpu$Min' => '

The minimum amount of memory per vCPU, in GiB. If this parameter is not specified, there is no minimum limit.

', 'MemoryGiBPerVCpu$Max' => '

The maximum amount of memory per vCPU, in GiB. If this parameter is not specified, there is no maximum limit.

', 'MemoryGiBPerVCpuRequest$Min' => '

The minimum amount of memory per vCPU, in GiB. To specify no minimum limit, omit this parameter.

', 'MemoryGiBPerVCpuRequest$Max' => '

The maximum amount of memory per vCPU, in GiB. To specify no maximum limit, omit this parameter.

', 'NetworkBandwidthGbps$Min' => '

The minimum amount of network bandwidth, in Gbps. If this parameter is not specified, there is no minimum limit.

', 'NetworkBandwidthGbps$Max' => '

The maximum amount of network bandwidth, in Gbps. If this parameter is not specified, there is no maximum limit.

', 'NetworkBandwidthGbpsRequest$Min' => '

The minimum amount of network bandwidth, in Gbps. To specify no minimum limit, omit this parameter.

', 'NetworkBandwidthGbpsRequest$Max' => '

The maximum amount of network bandwidth, in Gbps. To specify no maximum limit, omit this parameter.

', 'PriceSchedule$Price' => '

The fixed price for the term.

', 'PriceScheduleSpecification$Price' => '

The fixed price for the term.

', 'PricingDetail$Price' => '

The price per instance.

', 'RecurringCharge$Amount' => '

The amount of the recurring charge.

', 'ReservedInstanceLimitPrice$Amount' => '

Used for Reserved Instance Marketplace offerings. Specifies the limit price on the total order (instanceCount * price).

', 'SnapshotDetail$DiskImageSize' => '

The size of the disk in the snapshot, in GiB.

', 'SnapshotTaskDetail$DiskImageSize' => '

The size of the disk in the snapshot, in GiB.

', 'SpotFleetLaunchSpecification$WeightedCapacity' => '

The number of units provided by the specified instance type. These are the same units that you chose to set the target capacity in terms of instances, or a performance characteristic such as vCPUs, memory, or I/O.

If the target capacity divided by this value is not a whole number, Amazon EC2 rounds the number of instances to the next whole number. If this value is not specified, the default is 1.

', 'SpotFleetRequestConfigData$FulfilledCapacity' => '

The number of units fulfilled by this request compared to the set target capacity. You cannot set this value.

', 'SpotFleetRequestConfigData$OnDemandFulfilledCapacity' => '

The number of On-Demand units fulfilled by this request compared to the set target On-Demand capacity.

', 'TotalLocalStorageGB$Min' => '

The minimum amount of total local storage, in GB. If this parameter is not specified, there is no minimum limit.

', 'TotalLocalStorageGB$Max' => '

The maximum amount of total local storage, in GB. If this parameter is not specified, there is no maximum limit.

', 'TotalLocalStorageGBRequest$Min' => '

The minimum amount of total local storage, in GB. To specify no minimum limit, omit this parameter.

', 'TotalLocalStorageGBRequest$Max' => '

The maximum amount of total local storage, in GB. To specify no maximum limit, omit this parameter.

', ], ], 'DoubleWithConstraints' => [ 'base' => NULL, 'refs' => [ 'FleetCapacityReservation$Weight' => '

The weight of the instance type in the Capacity Reservation Fleet. For more information, see Instance type weight in the Amazon EC2 User Guide.

', 'ReservationFleetInstanceSpecification$Weight' => '

The number of capacity units provided by the specified instance type. This value, together with the total target capacity that you specify for the Fleet determine the number of instances for which the Fleet reserves capacity. Both values are based on units that make sense for your workload. For more information, see Total target capacity in the Amazon EC2 User Guide.

', ], ], 'DrainSeconds' => [ 'base' => NULL, 'refs' => [ 'DisassociateNatGatewayAddressRequest$MaxDrainDurationSeconds' => '

The maximum amount of time to wait (in seconds) before forcibly releasing the IP addresses if connections are still in progress. Default value is 350 seconds.

', 'UnassignPrivateNatGatewayAddressRequest$MaxDrainDurationSeconds' => '

The maximum amount of time to wait (in seconds) before forcibly releasing the IP addresses if connections are still in progress. Default value is 350 seconds.

', ], ], 'DynamicRoutingValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayPeeringAttachmentRequestOptions$DynamicRouting' => '

Indicates whether dynamic routing is enabled or disabled.

', 'TransitGatewayPeeringAttachmentOptions$DynamicRouting' => '

Describes whether dynamic routing is enabled or disabled for the transit gateway peering attachment.

', ], ], 'EbsBlockDevice' => [ 'base' => '

Describes a block device for an EBS volume.

', 'refs' => [ 'BlockDeviceMapping$Ebs' => '

Parameters used to automatically set up EBS volumes when the instance is launched.

', ], ], 'EbsEncryptionSupport' => [ 'base' => NULL, 'refs' => [ 'EbsInfo$EncryptionSupport' => '

Indicates whether Amazon EBS encryption is supported.

', ], ], 'EbsInfo' => [ 'base' => '

Describes the Amazon EBS features supported by the instance type.

', 'refs' => [ 'InstanceTypeInfo$EbsInfo' => '

Describes the Amazon EBS settings for the instance type.

', ], ], 'EbsInstanceBlockDevice' => [ 'base' => '

Describes a parameter used to set up an EBS volume in a block device mapping.

', 'refs' => [ 'InstanceBlockDeviceMapping$Ebs' => '

Parameters used to automatically set up EBS volumes when the instance is launched.

', ], ], 'EbsInstanceBlockDeviceSpecification' => [ 'base' => '

Describes information used to set up an EBS volume specified in a block device mapping.

', 'refs' => [ 'InstanceBlockDeviceMappingSpecification$Ebs' => '

Parameters used to automatically set up EBS volumes when the instance is launched.

', ], ], 'EbsNvmeSupport' => [ 'base' => NULL, 'refs' => [ 'EbsInfo$NvmeSupport' => '

Indicates whether non-volatile memory express (NVMe) is supported.

', ], ], 'EbsOptimizedInfo' => [ 'base' => '

Describes the optimized EBS performance for supported instance types.

', 'refs' => [ 'EbsInfo$EbsOptimizedInfo' => '

Describes the optimized EBS performance for the instance type.

', ], ], 'EbsOptimizedSupport' => [ 'base' => NULL, 'refs' => [ 'EbsInfo$EbsOptimizedSupport' => '

Indicates whether the instance type is Amazon EBS-optimized. For more information, see Amazon EBS-optimized instances in Amazon EC2 User Guide.

', ], ], 'Ec2InstanceConnectEndpoint' => [ 'base' => '

The EC2 Instance Connect Endpoint.

', 'refs' => [ 'CreateInstanceConnectEndpointResult$InstanceConnectEndpoint' => '

Information about the EC2 Instance Connect Endpoint.

', 'DeleteInstanceConnectEndpointResult$InstanceConnectEndpoint' => '

Information about the EC2 Instance Connect Endpoint.

', 'InstanceConnectEndpointSet$member' => NULL, ], ], 'Ec2InstanceConnectEndpointState' => [ 'base' => NULL, 'refs' => [ 'Ec2InstanceConnectEndpoint$State' => '

The current state of the EC2 Instance Connect Endpoint.

', ], ], 'EfaInfo' => [ 'base' => '

Describes the Elastic Fabric Adapters for the instance type.

', 'refs' => [ 'NetworkInfo$EfaInfo' => '

Describes the Elastic Fabric Adapters for the instance type.

', ], ], 'EfaSupportedFlag' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$EfaSupported' => '

Indicates whether Elastic Fabric Adapter (EFA) is supported.

', ], ], 'EgressOnlyInternetGateway' => [ 'base' => '

Describes an egress-only internet gateway.

', 'refs' => [ 'CreateEgressOnlyInternetGatewayResult$EgressOnlyInternetGateway' => '

Information about the egress-only internet gateway.

', 'EgressOnlyInternetGatewayList$member' => NULL, ], ], 'EgressOnlyInternetGatewayId' => [ 'base' => NULL, 'refs' => [ 'CreateRouteRequest$EgressOnlyInternetGatewayId' => '

[IPv6 traffic only] The ID of an egress-only internet gateway.

', 'DeleteEgressOnlyInternetGatewayRequest$EgressOnlyInternetGatewayId' => '

The ID of the egress-only internet gateway.

', 'EgressOnlyInternetGateway$EgressOnlyInternetGatewayId' => '

The ID of the egress-only internet gateway.

', 'EgressOnlyInternetGatewayIdList$member' => NULL, 'ReplaceRouteRequest$EgressOnlyInternetGatewayId' => '

[IPv6 traffic only] The ID of an egress-only internet gateway.

', ], ], 'EgressOnlyInternetGatewayIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeEgressOnlyInternetGatewaysRequest$EgressOnlyInternetGatewayIds' => '

The IDs of the egress-only internet gateways.

', ], ], 'EgressOnlyInternetGatewayList' => [ 'base' => NULL, 'refs' => [ 'DescribeEgressOnlyInternetGatewaysResult$EgressOnlyInternetGateways' => '

Information about the egress-only internet gateways.

', ], ], 'EipAllocationPublicIp' => [ 'base' => NULL, 'refs' => [ 'AssociateAddressRequest$PublicIp' => '

Deprecated.

', 'DisassociateAddressRequest$PublicIp' => '

Deprecated.

', ], ], 'EipAssociationIdList' => [ 'base' => NULL, 'refs' => [ 'DisassociateNatGatewayAddressRequest$AssociationIds' => '

The association IDs of EIPs that have been associated with the NAT gateway.

', ], ], 'ElasticGpuAssociation' => [ 'base' => '

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

Describes the association between an instance and an Elastic Graphics accelerator.

', 'refs' => [ 'ElasticGpuAssociationList$member' => NULL, ], ], 'ElasticGpuAssociationList' => [ 'base' => NULL, 'refs' => [ 'Instance$ElasticGpuAssociations' => '

Deprecated.

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

', ], ], 'ElasticGpuHealth' => [ 'base' => '

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

Describes the status of an Elastic Graphics accelerator.

', 'refs' => [ 'ElasticGpus$ElasticGpuHealth' => '

The status of the Elastic Graphics accelerator.

', ], ], 'ElasticGpuId' => [ 'base' => NULL, 'refs' => [ 'ElasticGpuAssociation$ElasticGpuId' => '

The ID of the Elastic Graphics accelerator.

', 'ElasticGpuIdSet$member' => NULL, ], ], 'ElasticGpuIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeElasticGpusRequest$ElasticGpuIds' => '

The Elastic Graphics accelerator IDs.

', ], ], 'ElasticGpuSet' => [ 'base' => NULL, 'refs' => [ 'DescribeElasticGpusResult$ElasticGpuSet' => '

Information about the Elastic Graphics accelerators.

', ], ], 'ElasticGpuSpecification' => [ 'base' => '

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

A specification for an Elastic Graphics accelerator.

', 'refs' => [ 'ElasticGpuSpecificationList$member' => NULL, 'ElasticGpuSpecifications$member' => NULL, ], ], 'ElasticGpuSpecificationList' => [ 'base' => NULL, 'refs' => [ 'RequestLaunchTemplateData$ElasticGpuSpecifications' => '

Deprecated.

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

', ], ], 'ElasticGpuSpecificationResponse' => [ 'base' => '

Deprecated.

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

', 'refs' => [ 'ElasticGpuSpecificationResponseList$member' => NULL, ], ], 'ElasticGpuSpecificationResponseList' => [ 'base' => NULL, 'refs' => [ 'ResponseLaunchTemplateData$ElasticGpuSpecifications' => '

Deprecated.

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

', ], ], 'ElasticGpuSpecifications' => [ 'base' => NULL, 'refs' => [ 'RunInstancesRequest$ElasticGpuSpecification' => '

Deprecated.

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

', ], ], 'ElasticGpuState' => [ 'base' => NULL, 'refs' => [ 'ElasticGpus$ElasticGpuState' => '

The state of the Elastic Graphics accelerator.

', ], ], 'ElasticGpuStatus' => [ 'base' => NULL, 'refs' => [ 'ElasticGpuHealth$Status' => '

The health status.

', ], ], 'ElasticGpus' => [ 'base' => '

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

Describes an Elastic Graphics accelerator.

', 'refs' => [ 'ElasticGpuSet$member' => NULL, ], ], 'ElasticInferenceAccelerator' => [ 'base' => '

Describes an elastic inference accelerator.

', 'refs' => [ 'ElasticInferenceAccelerators$member' => NULL, ], ], 'ElasticInferenceAcceleratorAssociation' => [ 'base' => '

Describes the association between an instance and an elastic inference accelerator.

', 'refs' => [ 'ElasticInferenceAcceleratorAssociationList$member' => NULL, ], ], 'ElasticInferenceAcceleratorAssociationList' => [ 'base' => NULL, 'refs' => [ 'Instance$ElasticInferenceAcceleratorAssociations' => '

The elastic inference accelerator associated with the instance.

', ], ], 'ElasticInferenceAcceleratorCount' => [ 'base' => NULL, 'refs' => [ 'ElasticInferenceAccelerator$Count' => '

The number of elastic inference accelerators to attach to the instance.

Default: 1

', ], ], 'ElasticInferenceAccelerators' => [ 'base' => NULL, 'refs' => [ 'RunInstancesRequest$ElasticInferenceAccelerators' => '

An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.

You cannot specify accelerators from different generations in the same request.

Starting April 15, 2023, Amazon Web Services will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.

', ], ], 'ElasticIpAssociationId' => [ 'base' => NULL, 'refs' => [ 'DisassociateAddressRequest$AssociationId' => '

The association ID. This parameter is required.

', 'EipAssociationIdList$member' => NULL, ], ], 'EnaSrdSpecification' => [ 'base' => '

ENA Express uses Amazon Web Services Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled.

To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it.

', 'refs' => [ 'AttachNetworkInterfaceRequest$EnaSrdSpecification' => '

Configures ENA Express for the network interface that this action attaches to the instance.

', 'ModifyNetworkInterfaceAttributeRequest$EnaSrdSpecification' => '

Updates the ENA Express configuration for the network interface that’s attached to the instance.

', ], ], 'EnaSrdSpecificationRequest' => [ 'base' => '

Launch instances with ENA Express settings configured from your launch template.

', 'refs' => [ 'InstanceNetworkInterfaceSpecification$EnaSrdSpecification' => '

Specifies the ENA Express settings for the network interface that\'s attached to the instance.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$EnaSrdSpecification' => '

Configure ENA Express settings for your launch template.

', ], ], 'EnaSrdSupported' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$EnaSrdSupported' => '

Indicates whether the instance type supports ENA Express. ENA Express uses Amazon Web Services Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances.

', ], ], 'EnaSrdUdpSpecification' => [ 'base' => '

ENA Express is compatible with both TCP and UDP transport protocols. When it\'s enabled, TCP traffic automatically uses it. However, some UDP-based applications are designed to handle network packets that are out of order, without a need for retransmission, such as live video broadcasting or other near-real-time applications. For UDP traffic, you can specify whether to use ENA Express, based on your application environment needs.

', 'refs' => [ 'EnaSrdSpecification$EnaSrdUdpSpecification' => '

Configures ENA Express for UDP network traffic.

', ], ], 'EnaSrdUdpSpecificationRequest' => [ 'base' => '

Configures ENA Express for UDP network traffic from your launch template.

', 'refs' => [ 'EnaSrdSpecificationRequest$EnaSrdUdpSpecification' => '

Contains ENA Express settings for UDP network traffic in your launch template.

', ], ], 'EnaSupport' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$EnaSupport' => '

Indicates whether Elastic Network Adapter (ENA) is supported.

', ], ], 'EnableAddressTransferRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableAddressTransferResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableAwsNetworkPerformanceMetricSubscriptionRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableAwsNetworkPerformanceMetricSubscriptionResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableEbsEncryptionByDefaultRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableEbsEncryptionByDefaultResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableFastLaunchRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableFastLaunchResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableFastSnapshotRestoreErrorItem' => [ 'base' => '

Contains information about the errors that occurred when enabling fast snapshot restores.

', 'refs' => [ 'EnableFastSnapshotRestoreErrorSet$member' => NULL, ], ], 'EnableFastSnapshotRestoreErrorSet' => [ 'base' => NULL, 'refs' => [ 'EnableFastSnapshotRestoresResult$Unsuccessful' => '

Information about the snapshots for which fast snapshot restores could not be enabled.

', ], ], 'EnableFastSnapshotRestoreStateError' => [ 'base' => '

Describes an error that occurred when enabling fast snapshot restores.

', 'refs' => [ 'EnableFastSnapshotRestoreStateErrorItem$Error' => '

The error.

', ], ], 'EnableFastSnapshotRestoreStateErrorItem' => [ 'base' => '

Contains information about an error that occurred when enabling fast snapshot restores.

', 'refs' => [ 'EnableFastSnapshotRestoreStateErrorSet$member' => NULL, ], ], 'EnableFastSnapshotRestoreStateErrorSet' => [ 'base' => NULL, 'refs' => [ 'EnableFastSnapshotRestoreErrorItem$FastSnapshotRestoreStateErrors' => '

The errors.

', ], ], 'EnableFastSnapshotRestoreSuccessItem' => [ 'base' => '

Describes fast snapshot restores that were successfully enabled.

', 'refs' => [ 'EnableFastSnapshotRestoreSuccessSet$member' => NULL, ], ], 'EnableFastSnapshotRestoreSuccessSet' => [ 'base' => NULL, 'refs' => [ 'EnableFastSnapshotRestoresResult$Successful' => '

Information about the snapshots for which fast snapshot restores were successfully enabled.

', ], ], 'EnableFastSnapshotRestoresRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableFastSnapshotRestoresResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableImageBlockPublicAccessRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableImageBlockPublicAccessResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableImageDeprecationRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableImageDeprecationResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableImageRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableImageResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableIpamOrganizationAdminAccountRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableIpamOrganizationAdminAccountResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableReachabilityAnalyzerOrganizationSharingRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableReachabilityAnalyzerOrganizationSharingResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableSerialConsoleAccessRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableSerialConsoleAccessResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableSnapshotBlockPublicAccessRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableSnapshotBlockPublicAccessResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableTransitGatewayRouteTablePropagationRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableTransitGatewayRouteTablePropagationResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableVgwRoutePropagationRequest' => [ 'base' => '

Contains the parameters for EnableVgwRoutePropagation.

', 'refs' => [], ], 'EnableVolumeIORequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableVpcClassicLinkDnsSupportRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableVpcClassicLinkDnsSupportResult' => [ 'base' => NULL, 'refs' => [], ], 'EnableVpcClassicLinkRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableVpcClassicLinkResult' => [ 'base' => NULL, 'refs' => [], ], 'EnclaveOptions' => [ 'base' => '

Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves.

', 'refs' => [ 'Instance$EnclaveOptions' => '

Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves.

', 'InstanceAttribute$EnclaveOptions' => '

To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to true; otherwise, set it to false.

', ], ], 'EnclaveOptionsRequest' => [ 'base' => '

Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For more information, see What is Amazon Web Services Nitro Enclaves? in the Amazon Web Services Nitro Enclaves User Guide.

', 'refs' => [ 'RunInstancesRequest$EnclaveOptions' => '

Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For more information, see What is Amazon Web Services Nitro Enclaves? in the Amazon Web Services Nitro Enclaves User Guide.

You can\'t enable Amazon Web Services Nitro Enclaves and hibernation on the same instance.

', ], ], 'EncryptionInTransitSupported' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$EncryptionInTransitSupported' => '

Indicates whether the instance type automatically encrypts in-transit traffic between instances.

', ], ], 'EndDateType' => [ 'base' => NULL, 'refs' => [ 'CapacityReservation$EndDateType' => '

Indicates the way in which the Capacity Reservation ends. A Capacity Reservation can have one of the following end types:

  • unlimited - The Capacity Reservation remains active until you explicitly cancel it.

  • limited - The Capacity Reservation expires automatically at a specified date and time.

', 'CreateCapacityReservationRequest$EndDateType' => '

Indicates the way in which the Capacity Reservation ends. A Capacity Reservation can have one of the following end types:

  • unlimited - The Capacity Reservation remains active until you explicitly cancel it. Do not provide an EndDate if the EndDateType is unlimited.

  • limited - The Capacity Reservation expires automatically at a specified date and time. You must provide an EndDate value if the EndDateType value is limited.

', 'ModifyCapacityReservationRequest$EndDateType' => '

Indicates the way in which the Capacity Reservation ends. A Capacity Reservation can have one of the following end types:

  • unlimited - The Capacity Reservation remains active until you explicitly cancel it. Do not provide an EndDate value if EndDateType is unlimited.

  • limited - The Capacity Reservation expires automatically at a specified date and time. You must provide an EndDate value if EndDateType is limited.

', ], ], 'EndpointSet' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnEndpointsResult$ClientVpnEndpoints' => '

Information about the Client VPN endpoints.

', ], ], 'EphemeralNvmeSupport' => [ 'base' => NULL, 'refs' => [ 'InstanceStorageInfo$NvmeSupport' => '

Indicates whether non-volatile memory express (NVMe) is supported.

', ], ], 'ErrorSet' => [ 'base' => NULL, 'refs' => [ 'ValidationWarning$Errors' => '

The error codes and error messages.

', ], ], 'EventCode' => [ 'base' => NULL, 'refs' => [ 'InstanceStatusEvent$Code' => '

The event code.

', ], ], 'EventInformation' => [ 'base' => '

Describes an EC2 Fleet or Spot Fleet event.

', 'refs' => [ 'HistoryRecord$EventInformation' => '

Information about the event.

', 'HistoryRecordEntry$EventInformation' => '

Information about the event.

', ], ], 'EventType' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotFleetRequestHistoryRequest$EventType' => '

The type of events to describe. By default, all events are described.

', 'HistoryRecord$EventType' => '

The event type.

  • error - An error with the Spot Fleet request.

  • fleetRequestChange - A change in the status or configuration of the Spot Fleet request.

  • instanceChange - An instance was launched or terminated.

  • Information - An informational event.

', ], ], 'ExcessCapacityTerminationPolicy' => [ 'base' => NULL, 'refs' => [ 'ModifySpotFleetRequestRequest$ExcessCapacityTerminationPolicy' => '

Indicates whether running instances should be terminated if the target capacity of the Spot Fleet request is decreased below the current size of the Spot Fleet.

Supported only for fleets of type maintain.

', 'SpotFleetRequestConfigData$ExcessCapacityTerminationPolicy' => '

Indicates whether running instances should be terminated if you decrease the target capacity of the Spot Fleet request below the current size of the Spot Fleet.

Supported only for fleets of type maintain.

', ], ], 'ExcludedInstanceType' => [ 'base' => NULL, 'refs' => [ 'ExcludedInstanceTypeSet$member' => NULL, ], ], 'ExcludedInstanceTypeSet' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$ExcludedInstanceTypes' => '

The instance types to exclude.

You can use strings with one or more wild cards, represented by an asterisk (*), to exclude an instance type, size, or generation. The following are examples: m5.8xlarge, c5*.*, m5a.*, r*, *3*.

For example, if you specify c5*,Amazon EC2 will exclude the entire C5 instance family, which includes all C5a and C5n instance types. If you specify m5a.*, Amazon EC2 will exclude all the M5a instance types, but not the M5n instance types.

If you specify ExcludedInstanceTypes, you can\'t specify AllowedInstanceTypes.

Default: No excluded instance types

', 'InstanceRequirementsRequest$ExcludedInstanceTypes' => '

The instance types to exclude.

You can use strings with one or more wild cards, represented by an asterisk (*), to exclude an instance family, type, size, or generation. The following are examples: m5.8xlarge, c5*.*, m5a.*, r*, *3*.

For example, if you specify c5*,Amazon EC2 will exclude the entire C5 instance family, which includes all C5a and C5n instance types. If you specify m5a.*, Amazon EC2 will exclude all the M5a instance types, but not the M5n instance types.

If you specify ExcludedInstanceTypes, you can\'t specify AllowedInstanceTypes.

Default: No excluded instance types

', ], ], 'ExecutableByStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeImagesRequest$ExecutableUsers' => '

Scopes the images by users with explicit launch permissions. Specify an Amazon Web Services account ID, self (the sender of the request), or all (public AMIs).

  • If you specify an Amazon Web Services account ID that is not your own, only AMIs shared with that specific Amazon Web Services account ID are returned. However, AMIs that are shared with the account’s organization or organizational unit (OU) are not returned.

  • If you specify self or your own Amazon Web Services account ID, AMIs shared with your account are returned. In addition, AMIs that are shared with the organization or OU of which you are member are also returned.

  • If you specify all, all public AMIs are returned.

', ], ], 'Explanation' => [ 'base' => '

Describes an explanation code for an unreachable path. For more information, see Reachability Analyzer explanation codes.

', 'refs' => [ 'ExplanationList$member' => NULL, ], ], 'ExplanationList' => [ 'base' => NULL, 'refs' => [ 'NetworkInsightsAnalysis$Explanations' => '

The explanations. For more information, see Reachability Analyzer explanation codes.

', 'PathComponent$Explanations' => '

The explanation codes.

', ], ], 'ExportClientVpnClientCertificateRevocationListRequest' => [ 'base' => NULL, 'refs' => [], ], 'ExportClientVpnClientCertificateRevocationListResult' => [ 'base' => NULL, 'refs' => [], ], 'ExportClientVpnClientConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ExportClientVpnClientConfigurationResult' => [ 'base' => NULL, 'refs' => [], ], 'ExportEnvironment' => [ 'base' => NULL, 'refs' => [ 'CreateInstanceExportTaskRequest$TargetEnvironment' => '

The target virtualization environment.

', 'InstanceExportDetails$TargetEnvironment' => '

The target virtualization environment.

', ], ], 'ExportImageRequest' => [ 'base' => NULL, 'refs' => [], ], 'ExportImageResult' => [ 'base' => NULL, 'refs' => [], ], 'ExportImageTask' => [ 'base' => '

Describes an export image task.

', 'refs' => [ 'ExportImageTaskList$member' => NULL, ], ], 'ExportImageTaskId' => [ 'base' => NULL, 'refs' => [ 'ExportImageTaskIdList$member' => NULL, ], ], 'ExportImageTaskIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeExportImageTasksRequest$ExportImageTaskIds' => '

The IDs of the export image tasks.

', ], ], 'ExportImageTaskList' => [ 'base' => NULL, 'refs' => [ 'DescribeExportImageTasksResult$ExportImageTasks' => '

Information about the export image tasks.

', ], ], 'ExportTask' => [ 'base' => '

Describes an export instance task.

', 'refs' => [ 'CreateInstanceExportTaskResult$ExportTask' => '

Information about the export instance task.

', 'ExportTaskList$member' => NULL, ], ], 'ExportTaskId' => [ 'base' => NULL, 'refs' => [ 'ExportTaskIdStringList$member' => NULL, ], ], 'ExportTaskIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeExportTasksRequest$ExportTaskIds' => '

The export task IDs.

', ], ], 'ExportTaskList' => [ 'base' => NULL, 'refs' => [ 'DescribeExportTasksResult$ExportTasks' => '

Information about the export tasks.

', ], ], 'ExportTaskS3Location' => [ 'base' => '

Describes the destination for an export image task.

', 'refs' => [ 'ExportImageResult$S3ExportLocation' => '

Information about the destination Amazon S3 bucket.

', 'ExportImageTask$S3ExportLocation' => '

Information about the destination Amazon S3 bucket.

', ], ], 'ExportTaskS3LocationRequest' => [ 'base' => '

Describes the destination for an export image task.

', 'refs' => [ 'ExportImageRequest$S3ExportLocation' => '

The Amazon S3 bucket for the destination image. The destination bucket must exist.

', ], ], 'ExportTaskState' => [ 'base' => NULL, 'refs' => [ 'ExportTask$State' => '

The state of the export task.

', ], ], 'ExportToS3Task' => [ 'base' => '

Describes the format and location for the export task.

', 'refs' => [ 'ExportTask$ExportToS3Task' => '

Information about the export task.

', ], ], 'ExportToS3TaskSpecification' => [ 'base' => '

Describes an export instance task.

', 'refs' => [ 'CreateInstanceExportTaskRequest$ExportToS3Task' => '

The format and location for an export instance task.

', ], ], 'ExportTransitGatewayRoutesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ExportTransitGatewayRoutesResult' => [ 'base' => NULL, 'refs' => [], ], 'ExportVmTaskId' => [ 'base' => NULL, 'refs' => [ 'CancelExportTaskRequest$ExportTaskId' => '

The ID of the export task. This is the ID returned by the CreateInstanceExportTask and ExportImage operations.

', ], ], 'FailedCapacityReservationFleetCancellationResult' => [ 'base' => '

Describes a Capacity Reservation Fleet that could not be cancelled.

', 'refs' => [ 'FailedCapacityReservationFleetCancellationResultSet$member' => NULL, ], ], 'FailedCapacityReservationFleetCancellationResultSet' => [ 'base' => NULL, 'refs' => [ 'CancelCapacityReservationFleetsResult$FailedFleetCancellations' => '

Information about the Capacity Reservation Fleets that could not be cancelled.

', ], ], 'FailedQueuedPurchaseDeletion' => [ 'base' => '

Describes a Reserved Instance whose queued purchase was not deleted.

', 'refs' => [ 'FailedQueuedPurchaseDeletionSet$member' => NULL, ], ], 'FailedQueuedPurchaseDeletionSet' => [ 'base' => NULL, 'refs' => [ 'DeleteQueuedReservedInstancesResult$FailedQueuedPurchaseDeletions' => '

Information about the queued purchases that could not be deleted.

', ], ], 'FastLaunchImageIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeFastLaunchImagesRequest$ImageIds' => '

Specify one or more Windows AMI image IDs for the request.

', ], ], 'FastLaunchLaunchTemplateSpecificationRequest' => [ 'base' => '

Request to create a launch template for a Windows fast launch enabled AMI.

Note - You can specify either the LaunchTemplateName or the LaunchTemplateId, but not both.

', 'refs' => [ 'EnableFastLaunchRequest$LaunchTemplate' => '

The launch template to use when launching Windows instances from pre-provisioned snapshots. Launch template parameters can include either the name or ID of the launch template, but not both.

', ], ], 'FastLaunchLaunchTemplateSpecificationResponse' => [ 'base' => '

Identifies the launch template that the AMI uses for Windows fast launch.

', 'refs' => [ 'DescribeFastLaunchImagesSuccessItem$LaunchTemplate' => '

The launch template that the Windows fast launch enabled AMI uses when it launches Windows instances from pre-provisioned snapshots.

', 'DisableFastLaunchResult$LaunchTemplate' => '

The launch template that was used to launch Windows instances from pre-provisioned snapshots.

', 'EnableFastLaunchResult$LaunchTemplate' => '

The launch template that is used when launching Windows instances from pre-provisioned snapshots.

', ], ], 'FastLaunchResourceType' => [ 'base' => NULL, 'refs' => [ 'DescribeFastLaunchImagesSuccessItem$ResourceType' => '

The resource type that Amazon EC2 uses for pre-provisioning the Windows AMI. Supported values include: snapshot.

', 'DisableFastLaunchResult$ResourceType' => '

The pre-provisioning resource type that must be cleaned after turning off Windows fast launch for the Windows AMI. Supported values include: snapshot.

', 'EnableFastLaunchResult$ResourceType' => '

The type of resource that was defined for pre-provisioning the AMI for Windows fast launch.

', ], ], 'FastLaunchSnapshotConfigurationRequest' => [ 'base' => '

Configuration settings for creating and managing pre-provisioned snapshots for a Windows fast launch enabled AMI.

', 'refs' => [ 'EnableFastLaunchRequest$SnapshotConfiguration' => '

Configuration settings for creating and managing the snapshots that are used for pre-provisioning the AMI for Windows fast launch. The associated ResourceType must be snapshot.

', ], ], 'FastLaunchSnapshotConfigurationResponse' => [ 'base' => '

Configuration settings for creating and managing pre-provisioned snapshots for a Windows fast launch enabled Windows AMI.

', 'refs' => [ 'DescribeFastLaunchImagesSuccessItem$SnapshotConfiguration' => '

A group of parameters that are used for pre-provisioning the associated Windows AMI using snapshots.

', 'DisableFastLaunchResult$SnapshotConfiguration' => '

Parameters that were used for Windows fast launch for the Windows AMI before Windows fast launch was disabled. This informs the clean-up process.

', 'EnableFastLaunchResult$SnapshotConfiguration' => '

Settings to create and manage the pre-provisioned snapshots that Amazon EC2 uses for faster launches from the Windows AMI. This property is returned when the associated resourceType is snapshot.

', ], ], 'FastLaunchStateCode' => [ 'base' => NULL, 'refs' => [ 'DescribeFastLaunchImagesSuccessItem$State' => '

The current state of Windows fast launch for the specified Windows AMI.

', 'DisableFastLaunchResult$State' => '

The current state of Windows fast launch for the specified Windows AMI.

', 'EnableFastLaunchResult$State' => '

The current state of Windows fast launch for the specified AMI.

', ], ], 'FastSnapshotRestoreStateCode' => [ 'base' => NULL, 'refs' => [ 'DescribeFastSnapshotRestoreSuccessItem$State' => '

The state of fast snapshot restores.

', 'DisableFastSnapshotRestoreSuccessItem$State' => '

The state of fast snapshot restores for the snapshot.

', 'EnableFastSnapshotRestoreSuccessItem$State' => '

The state of fast snapshot restores.

', ], ], 'FederatedAuthentication' => [ 'base' => '

Describes the IAM SAML identity providers used for federated authentication.

', 'refs' => [ 'ClientVpnAuthentication$FederatedAuthentication' => '

Information about the IAM SAML identity provider, if applicable.

', ], ], 'FederatedAuthenticationRequest' => [ 'base' => '

The IAM SAML identity provider used for federated authentication.

', 'refs' => [ 'ClientVpnAuthenticationRequest$FederatedAuthentication' => '

Information about the IAM SAML identity provider to be used, if applicable. You must provide this information if Type is federated-authentication.

', ], ], 'Filter' => [ 'base' => '

A filter name and value pair that is used to return a more specific list of results from a describe operation. Filters can be used to match a set of resources by specific criteria, such as tags, attributes, or IDs.

If you specify multiple filters, the filters are joined with an AND, and the request returns only results that match all of the specified filters.

', 'refs' => [ 'FilterList$member' => NULL, ], ], 'FilterList' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressesRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

  • allocation-id - The allocation ID for the address.

  • association-id - The association ID for the address.

  • instance-id - The ID of the instance the address is associated with, if any.

  • network-border-group - A unique set of Availability Zones, Local Zones, or Wavelength Zones from where Amazon Web Services advertises IP addresses.

  • network-interface-id - The ID of the network interface that the address is associated with, if any.

  • network-interface-owner-id - The Amazon Web Services account ID of the owner.

  • private-ip-address - The private IP address associated with the Elastic IP address.

  • public-ip - The Elastic IP address, or the carrier IP address.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeAvailabilityZonesRequest$Filters' => '

The filters.

  • group-name - For Availability Zones, use the Region name. For Local Zones, use the name of the group associated with the Local Zone (for example, us-west-2-lax-1) For Wavelength Zones, use the name of the group associated with the Wavelength Zone (for example, us-east-1-wl1-bos-wlz-1).

  • message - The Zone message.

  • opt-in-status - The opt-in status (opted-in | not-opted-in | opt-in-not-required).

  • parent-zone-id - The ID of the zone that handles some of the Local Zone and Wavelength Zone control plane operations, such as API calls.

  • parent-zone-name - The ID of the zone that handles some of the Local Zone and Wavelength Zone control plane operations, such as API calls.

  • region-name - The name of the Region for the Zone (for example, us-east-1).

  • state - The state of the Availability Zone, the Local Zone, or the Wavelength Zone (available).

  • zone-id - The ID of the Availability Zone (for example, use1-az1), the Local Zone (for example, usw2-lax1-az1), or the Wavelength Zone (for example, us-east-1-wl1-bos-wlz-1).

  • zone-name - The name of the Availability Zone (for example, us-east-1a), the Local Zone (for example, us-west-2-lax-1a), or the Wavelength Zone (for example, us-east-1-wl1-bos-wlz-1).

  • zone-type - The type of zone (availability-zone | local-zone | wavelength-zone).

', 'DescribeAwsNetworkPerformanceMetricSubscriptionsRequest$Filters' => '

One or more filters.

', 'DescribeBundleTasksRequest$Filters' => '

The filters.

  • bundle-id - The ID of the bundle task.

  • error-code - If the task failed, the error code returned.

  • error-message - If the task failed, the error message returned.

  • instance-id - The ID of the instance.

  • progress - The level of task completion, as a percentage (for example, 20%).

  • s3-bucket - The Amazon S3 bucket to store the AMI.

  • s3-prefix - The beginning of the AMI name.

  • start-time - The time the task started (for example, 2013-09-15T17:15:20.000Z).

  • state - The state of the task (pending | waiting-for-shutdown | bundling | storing | cancelling | complete | failed).

  • update-time - The time of the most recent update for the task.

', 'DescribeCapacityReservationFleetsRequest$Filters' => '

One or more filters.

  • state - The state of the Fleet (submitted | modifying | active | partially_fulfilled | expiring | expired | cancelling | cancelled | failed).

  • instance-match-criteria - The instance matching criteria for the Fleet. Only open is supported.

  • tenancy - The tenancy of the Fleet (default | dedicated).

  • allocation-strategy - The allocation strategy used by the Fleet. Only prioritized is supported.

', 'DescribeCapacityReservationsRequest$Filters' => '

One or more filters.

  • instance-type - The type of instance for which the Capacity Reservation reserves capacity.

  • owner-id - The ID of the Amazon Web Services account that owns the Capacity Reservation.

  • instance-platform - The type of operating system for which the Capacity Reservation reserves capacity.

  • availability-zone - The Availability Zone of the Capacity Reservation.

  • tenancy - Indicates the tenancy of the Capacity Reservation. A Capacity Reservation can have one of the following tenancy settings:

    • default - The Capacity Reservation is created on hardware that is shared with other Amazon Web Services accounts.

    • dedicated - The Capacity Reservation is created on single-tenant hardware that is dedicated to a single Amazon Web Services account.

  • outpost-arn - The Amazon Resource Name (ARN) of the Outpost on which the Capacity Reservation was created.

  • state - The current state of the Capacity Reservation. A Capacity Reservation can be in one of the following states:

    • active- The Capacity Reservation is active and the capacity is available for your use.

    • expired - The Capacity Reservation expired automatically at the date and time specified in your request. The reserved capacity is no longer available for your use.

    • cancelled - The Capacity Reservation was cancelled. The reserved capacity is no longer available for your use.

    • pending - The Capacity Reservation request was successful but the capacity provisioning is still pending.

    • failed - The Capacity Reservation request has failed. A request might fail due to invalid request parameters, capacity constraints, or instance limit constraints. Failed requests are retained for 60 minutes.

  • start-date - The date and time at which the Capacity Reservation was started.

  • end-date - The date and time at which the Capacity Reservation expires. When a Capacity Reservation expires, the reserved capacity is released and you can no longer launch instances into it. The Capacity Reservation\'s state changes to expired when it reaches its end date and time.

  • end-date-type - Indicates the way in which the Capacity Reservation ends. A Capacity Reservation can have one of the following end types:

    • unlimited - The Capacity Reservation remains active until you explicitly cancel it.

    • limited - The Capacity Reservation expires automatically at a specified date and time.

  • instance-match-criteria - Indicates the type of instance launches that the Capacity Reservation accepts. The options include:

    • open - The Capacity Reservation accepts all instances that have matching attributes (instance type, platform, and Availability Zone). Instances that have matching attributes launch into the Capacity Reservation automatically without specifying any additional parameters.

    • targeted - The Capacity Reservation only accepts instances that have matching attributes (instance type, platform, and Availability Zone), and explicitly target the Capacity Reservation. This ensures that only permitted instances can use the reserved capacity.

  • placement-group-arn - The ARN of the cluster placement group in which the Capacity Reservation was created.

', 'DescribeCarrierGatewaysRequest$Filters' => '

One or more filters.

  • carrier-gateway-id - The ID of the carrier gateway.

  • state - The state of the carrier gateway (pending | failed | available | deleting | deleted).

  • owner-id - The Amazon Web Services account ID of the owner of the carrier gateway.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC associated with the carrier gateway.

', 'DescribeClassicLinkInstancesRequest$Filters' => '

The filters.

  • group-id - The ID of a VPC security group that\'s associated with the instance.

  • instance-id - The ID of the instance.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC to which the instance is linked.

', 'DescribeClientVpnAuthorizationRulesRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

  • description - The description of the authorization rule.

  • destination-cidr - The CIDR of the network to which the authorization rule applies.

  • group-id - The ID of the Active Directory group to which the authorization rule grants access.

', 'DescribeClientVpnConnectionsRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

  • connection-id - The ID of the connection.

  • username - For Active Directory client authentication, the user name of the client who established the client connection.

', 'DescribeClientVpnEndpointsRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

  • endpoint-id - The ID of the Client VPN endpoint.

  • transport-protocol - The transport protocol (tcp | udp).

', 'DescribeClientVpnRoutesRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

  • destination-cidr - The CIDR of the route destination.

  • origin - How the route was associated with the Client VPN endpoint (associate | add-route).

  • target-subnet - The ID of the subnet through which traffic is routed.

', 'DescribeClientVpnTargetNetworksRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

  • association-id - The ID of the association.

  • target-network-id - The ID of the subnet specified as the target network.

  • vpc-id - The ID of the VPC in which the target network is located.

', 'DescribeCoipPoolsRequest$Filters' => '

One or more filters.

  • coip-pool.local-gateway-route-table-id - The ID of the local gateway route table.

  • coip-pool.pool-id - The ID of the address pool.

', 'DescribeCustomerGatewaysRequest$Filters' => '

One or more filters.

  • bgp-asn - The customer gateway\'s Border Gateway Protocol (BGP) Autonomous System Number (ASN).

  • customer-gateway-id - The ID of the customer gateway.

  • ip-address - The IP address of the customer gateway device\'s external interface.

  • state - The state of the customer gateway (pending | available | deleting | deleted).

  • type - The type of customer gateway. Currently, the only supported type is ipsec.1.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeDhcpOptionsRequest$Filters' => '

The filters.

  • dhcp-options-id - The ID of a DHCP options set.

  • key - The key for one of the options (for example, domain-name).

  • value - The value for one of the options.

  • owner-id - The ID of the Amazon Web Services account that owns the DHCP options set.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeEgressOnlyInternetGatewaysRequest$Filters' => '

The filters.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeElasticGpusRequest$Filters' => '

The filters.

  • availability-zone - The Availability Zone in which the Elastic Graphics accelerator resides.

  • elastic-gpu-health - The status of the Elastic Graphics accelerator (OK | IMPAIRED).

  • elastic-gpu-state - The state of the Elastic Graphics accelerator (ATTACHED).

  • elastic-gpu-type - The type of Elastic Graphics accelerator; for example, eg1.medium.

  • instance-id - The ID of the instance to which the Elastic Graphics accelerator is associated.

', 'DescribeExportImageTasksRequest$Filters' => '

Filter tasks using the task-state filter and one of the following values: active, completed, deleting, or deleted.

', 'DescribeExportTasksRequest$Filters' => '

the filters for the export tasks.

', 'DescribeFastLaunchImagesRequest$Filters' => '

Use the following filters to streamline results.

  • resource-type - The resource type for pre-provisioning.

  • owner-id - The owner ID for the pre-provisioning resource.

  • state - The current state of fast launching for the Windows AMI.

', 'DescribeFastSnapshotRestoresRequest$Filters' => '

The filters. The possible values are:

  • availability-zone: The Availability Zone of the snapshot.

  • owner-id: The ID of the Amazon Web Services account that enabled fast snapshot restore on the snapshot.

  • snapshot-id: The ID of the snapshot.

  • state: The state of fast snapshot restores for the snapshot (enabling | optimizing | enabled | disabling | disabled).

', 'DescribeFleetInstancesRequest$Filters' => '

The filters.

  • instance-type - The instance type.

', 'DescribeFleetsRequest$Filters' => '

The filters.

  • activity-status - The progress of the EC2 Fleet ( error | pending-fulfillment | pending-termination | fulfilled).

  • excess-capacity-termination-policy - Indicates whether to terminate running instances if the target capacity is decreased below the current EC2 Fleet size (true | false).

  • fleet-state - The state of the EC2 Fleet (submitted | active | deleted | failed | deleted-running | deleted-terminating | modifying).

  • replace-unhealthy-instances - Indicates whether EC2 Fleet should replace unhealthy instances (true | false).

  • type - The type of request (instant | request | maintain).

', 'DescribeFlowLogsRequest$Filter' => '

One or more filters.

  • deliver-log-status - The status of the logs delivery (SUCCESS | FAILED).

  • log-destination-type - The type of destination for the flow log data (cloud-watch-logs | s3 | kinesis-data-firehose).

  • flow-log-id - The ID of the flow log.

  • log-group-name - The name of the log group.

  • resource-id - The ID of the VPC, subnet, or network interface.

  • traffic-type - The type of traffic (ACCEPT | REJECT | ALL).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeFpgaImagesRequest$Filters' => '

The filters.

  • create-time - The creation time of the AFI.

  • fpga-image-id - The FPGA image identifier (AFI ID).

  • fpga-image-global-id - The global FPGA image identifier (AGFI ID).

  • name - The name of the AFI.

  • owner-id - The Amazon Web Services account ID of the AFI owner.

  • product-code - The product code.

  • shell-version - The version of the Amazon Web Services Shell that was used to create the bitstream.

  • state - The state of the AFI (pending | failed | available | unavailable).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • update-time - The time of the most recent update.

', 'DescribeHostReservationOfferingsRequest$Filter' => '

The filters.

  • instance-family - The instance family of the offering (for example, m4).

  • payment-option - The payment option (NoUpfront | PartialUpfront | AllUpfront).

', 'DescribeHostReservationsRequest$Filter' => '

The filters.

  • instance-family - The instance family (for example, m4).

  • payment-option - The payment option (NoUpfront | PartialUpfront | AllUpfront).

  • state - The state of the reservation (payment-pending | payment-failed | active | retired).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeHostsRequest$Filter' => '

The filters.

  • auto-placement - Whether auto-placement is enabled or disabled (on | off).

  • availability-zone - The Availability Zone of the host.

  • client-token - The idempotency token that you provided when you allocated the host.

  • host-reservation-id - The ID of the reservation assigned to this host.

  • instance-type - The instance type size that the Dedicated Host is configured to support.

  • state - The allocation state of the Dedicated Host (available | under-assessment | permanent-failure | released | released-permanent-failure).

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeIamInstanceProfileAssociationsRequest$Filters' => '

The filters.

  • instance-id - The ID of the instance.

  • state - The state of the association (associating | associated | disassociating).

', 'DescribeImagesRequest$Filters' => '

The filters.

  • architecture - The image architecture (i386 | x86_64 | arm64 | x86_64_mac | arm64_mac).

  • block-device-mapping.delete-on-termination - A Boolean value that indicates whether the Amazon EBS volume is deleted on instance termination.

  • block-device-mapping.device-name - The device name specified in the block device mapping (for example, /dev/sdh or xvdh).

  • block-device-mapping.snapshot-id - The ID of the snapshot used for the Amazon EBS volume.

  • block-device-mapping.volume-size - The volume size of the Amazon EBS volume, in GiB.

  • block-device-mapping.volume-type - The volume type of the Amazon EBS volume (io1 | io2 | gp2 | gp3 | sc1 | st1 | standard).

  • block-device-mapping.encrypted - A Boolean that indicates whether the Amazon EBS volume is encrypted.

  • creation-date - The time when the image was created, in the ISO 8601 format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for example, 2021-09-29T11:04:43.305Z. You can use a wildcard (*), for example, 2021-09-29T*, which matches an entire day.

  • description - The description of the image (provided during image creation).

  • ena-support - A Boolean that indicates whether enhanced networking with ENA is enabled.

  • hypervisor - The hypervisor type (ovm | xen).

  • image-id - The ID of the image.

  • image-type - The image type (machine | kernel | ramdisk).

  • is-public - A Boolean that indicates whether the image is public.

  • kernel-id - The kernel ID.

  • manifest-location - The location of the image manifest.

  • name - The name of the AMI (provided during image creation).

  • owner-alias - The owner alias (amazon | aws-marketplace). The valid aliases are defined in an Amazon-maintained list. This is not the Amazon Web Services account alias that can be set using the IAM console. We recommend that you use the Owner request parameter instead of this filter.

  • owner-id - The Amazon Web Services account ID of the owner. We recommend that you use the Owner request parameter instead of this filter.

  • platform - The platform. The only supported value is windows.

  • product-code - The product code.

  • product-code.type - The type of the product code (marketplace).

  • ramdisk-id - The RAM disk ID.

  • root-device-name - The device name of the root device volume (for example, /dev/sda1).

  • root-device-type - The type of the root device volume (ebs | instance-store).

  • source-instance-id - The ID of the instance that the AMI was created from if the AMI was created using CreateImage. This filter is applicable only if the AMI was created using CreateImage.

  • state - The state of the image (available | pending | failed).

  • state-reason-code - The reason code for the state change.

  • state-reason-message - The message for the state change.

  • sriov-net-support - A value of simple indicates that enhanced networking with the Intel 82599 VF interface is enabled.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • virtualization-type - The virtualization type (paravirtual | hvm).

', 'DescribeImportImageTasksRequest$Filters' => '

Filter tasks using the task-state filter and one of the following values: active, completed, deleting, or deleted.

', 'DescribeImportSnapshotTasksRequest$Filters' => '

The filters.

', 'DescribeInstanceConnectEndpointsRequest$Filters' => '

One or more filters.

  • instance-connect-endpoint-id - The ID of the EC2 Instance Connect Endpoint.

  • state - The state of the EC2 Instance Connect Endpoint (create-in-progress | create-complete | create-failed | delete-in-progress | delete-complete | delete-failed).

  • subnet-id - The ID of the subnet in which the EC2 Instance Connect Endpoint was created.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • tag-value - The value of a tag assigned to the resource. Use this filter to find all resources that have a tag with a specific value, regardless of tag key.

  • vpc-id - The ID of the VPC in which the EC2 Instance Connect Endpoint was created.

', 'DescribeInstanceCreditSpecificationsRequest$Filters' => '

The filters.

  • instance-id - The ID of the instance.

', 'DescribeInstanceEventWindowsRequest$Filters' => '

One or more filters.

  • dedicated-host-id - The event windows associated with the specified Dedicated Host ID.

  • event-window-name - The event windows associated with the specified names.

  • instance-id - The event windows associated with the specified instance ID.

  • instance-tag - The event windows associated with the specified tag and value.

  • instance-tag-key - The event windows associated with the specified tag key, regardless of the value.

  • instance-tag-value - The event windows associated with the specified tag value, regardless of the key.

  • tag:<key> - The key/value combination of a tag assigned to the event window. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value CMX, specify tag:Owner for the filter name and CMX for the filter value.

  • tag-key - The key of a tag assigned to the event window. Use this filter to find all event windows that have a tag with a specific key, regardless of the tag value.

  • tag-value - The value of a tag assigned to the event window. Use this filter to find all event windows that have a tag with a specific value, regardless of the tag key.

', 'DescribeInstanceStatusRequest$Filters' => '

The filters.

  • availability-zone - The Availability Zone of the instance.

  • event.code - The code for the scheduled event (instance-reboot | system-reboot | system-maintenance | instance-retirement | instance-stop).

  • event.description - A description of the event.

  • event.instance-event-id - The ID of the event whose date and time you are modifying.

  • event.not-after - The latest end time for the scheduled event (for example, 2014-09-15T17:15:20.000Z).

  • event.not-before - The earliest start time for the scheduled event (for example, 2014-09-15T17:15:20.000Z).

  • event.not-before-deadline - The deadline for starting the event (for example, 2014-09-15T17:15:20.000Z).

  • instance-state-code - The code for the instance state, as a 16-bit unsigned integer. The high byte is used for internal purposes and should be ignored. The low byte is set based on the state represented. The valid values are 0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping), and 80 (stopped).

  • instance-state-name - The state of the instance (pending | running | shutting-down | terminated | stopping | stopped).

  • instance-status.reachability - Filters on instance status where the name is reachability (passed | failed | initializing | insufficient-data).

  • instance-status.status - The status of the instance (ok | impaired | initializing | insufficient-data | not-applicable).

  • system-status.reachability - Filters on system status where the name is reachability (passed | failed | initializing | insufficient-data).

  • system-status.status - The system status of the instance (ok | impaired | initializing | insufficient-data | not-applicable).

', 'DescribeInstanceTopologyRequest$Filters' => '

The filters.

  • availability-zone - The name of the Availability Zone (for example, us-west-2a) or Local Zone (for example, us-west-2-lax-1b) that the instance is in.

  • instance-type - The instance type (for example, p4d.24xlarge) or instance family (for example, p4d*). You can use the * wildcard to match zero or more characters, or the ? wildcard to match zero or one character.

  • zone-id - The ID of the Availability Zone (for example, usw2-az2) or Local Zone (for example, usw2-lax1-az1) that the instance is in.

', 'DescribeInstanceTypeOfferingsRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

  • location - This depends on the location type. For example, if the location type is region (default), the location is the Region code (for example, us-east-2.)

  • instance-type - The instance type. For example, c5.2xlarge.

', 'DescribeInstanceTypesRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

  • auto-recovery-supported - Indicates whether Amazon CloudWatch action based recovery is supported (true | false).

  • bare-metal - Indicates whether it is a bare metal instance type (true | false).

  • burstable-performance-supported - Indicates whether the instance type is a burstable performance T instance type (true | false).

  • current-generation - Indicates whether this instance type is the latest generation instance type of an instance family (true | false).

  • ebs-info.ebs-optimized-info.baseline-bandwidth-in-mbps - The baseline bandwidth performance for an EBS-optimized instance type, in Mbps.

  • ebs-info.ebs-optimized-info.baseline-iops - The baseline input/output storage operations per second for an EBS-optimized instance type.

  • ebs-info.ebs-optimized-info.baseline-throughput-in-mbps - The baseline throughput performance for an EBS-optimized instance type, in MB/s.

  • ebs-info.ebs-optimized-info.maximum-bandwidth-in-mbps - The maximum bandwidth performance for an EBS-optimized instance type, in Mbps.

  • ebs-info.ebs-optimized-info.maximum-iops - The maximum input/output storage operations per second for an EBS-optimized instance type.

  • ebs-info.ebs-optimized-info.maximum-throughput-in-mbps - The maximum throughput performance for an EBS-optimized instance type, in MB/s.

  • ebs-info.ebs-optimized-support - Indicates whether the instance type is EBS-optimized (supported | unsupported | default).

  • ebs-info.encryption-support - Indicates whether EBS encryption is supported (supported | unsupported).

  • ebs-info.nvme-support - Indicates whether non-volatile memory express (NVMe) is supported for EBS volumes (required | supported | unsupported).

  • free-tier-eligible - Indicates whether the instance type is eligible to use in the free tier (true | false).

  • hibernation-supported - Indicates whether On-Demand hibernation is supported (true | false).

  • hypervisor - The hypervisor (nitro | xen).

  • instance-storage-info.disk.count - The number of local disks.

  • instance-storage-info.disk.size-in-gb - The storage size of each instance storage disk, in GB.

  • instance-storage-info.disk.type - The storage technology for the local instance storage disks (hdd | ssd).

  • instance-storage-info.encryption-support - Indicates whether data is encrypted at rest (required | supported | unsupported).

  • instance-storage-info.nvme-support - Indicates whether non-volatile memory express (NVMe) is supported for instance store (required | supported | unsupported).

  • instance-storage-info.total-size-in-gb - The total amount of storage available from all local instance storage, in GB.

  • instance-storage-supported - Indicates whether the instance type has local instance storage (true | false).

  • instance-type - The instance type (for example c5.2xlarge or c5*).

  • memory-info.size-in-mib - The memory size.

  • network-info.efa-info.maximum-efa-interfaces - The maximum number of Elastic Fabric Adapters (EFAs) per instance.

  • network-info.efa-supported - Indicates whether the instance type supports Elastic Fabric Adapter (EFA) (true | false).

  • network-info.ena-support - Indicates whether Elastic Network Adapter (ENA) is supported or required (required | supported | unsupported).

  • network-info.encryption-in-transit-supported - Indicates whether the instance type automatically encrypts in-transit traffic between instances (true | false).

  • network-info.ipv4-addresses-per-interface - The maximum number of private IPv4 addresses per network interface.

  • network-info.ipv6-addresses-per-interface - The maximum number of private IPv6 addresses per network interface.

  • network-info.ipv6-supported - Indicates whether the instance type supports IPv6 (true | false).

  • network-info.maximum-network-cards - The maximum number of network cards per instance.

  • network-info.maximum-network-interfaces - The maximum number of network interfaces per instance.

  • network-info.network-performance - The network performance (for example, "25 Gigabit").

  • nitro-enclaves-support - Indicates whether Nitro Enclaves is supported (supported | unsupported).

  • nitro-tpm-support - Indicates whether NitroTPM is supported (supported | unsupported).

  • nitro-tpm-info.supported-versions - The supported NitroTPM version (2.0).

  • processor-info.supported-architecture - The CPU architecture (arm64 | i386 | x86_64).

  • processor-info.sustained-clock-speed-in-ghz - The CPU clock speed, in GHz.

  • processor-info.supported-features - The supported CPU features (amd-sev-snp).

  • supported-boot-mode - The boot mode (legacy-bios | uefi).

  • supported-root-device-type - The root device type (ebs | instance-store).

  • supported-usage-class - The usage class (on-demand | spot).

  • supported-virtualization-type - The virtualization type (hvm | paravirtual).

  • vcpu-info.default-cores - The default number of cores for the instance type.

  • vcpu-info.default-threads-per-core - The default number of threads per core for the instance type.

  • vcpu-info.default-vcpus - The default number of vCPUs for the instance type.

  • vcpu-info.valid-cores - The number of cores that can be configured for the instance type.

  • vcpu-info.valid-threads-per-core - The number of threads per core that can be configured for the instance type. For example, "1" or "1,2".

', 'DescribeInstancesRequest$Filters' => '

The filters.

  • affinity - The affinity setting for an instance running on a Dedicated Host (default | host).

  • architecture - The instance architecture (i386 | x86_64 | arm64).

  • availability-zone - The Availability Zone of the instance.

  • block-device-mapping.attach-time - The attach time for an EBS volume mapped to the instance, for example, 2022-09-15T17:15:20.000Z.

  • block-device-mapping.delete-on-termination - A Boolean that indicates whether the EBS volume is deleted on instance termination.

  • block-device-mapping.device-name - The device name specified in the block device mapping (for example, /dev/sdh or xvdh).

  • block-device-mapping.status - The status for the EBS volume (attaching | attached | detaching | detached).

  • block-device-mapping.volume-id - The volume ID of the EBS volume.

  • boot-mode - The boot mode that was specified by the AMI (legacy-bios | uefi | uefi-preferred).

  • capacity-reservation-id - The ID of the Capacity Reservation into which the instance was launched.

  • capacity-reservation-specification.capacity-reservation-preference - The instance\'s Capacity Reservation preference (open | none).

  • capacity-reservation-specification.capacity-reservation-target.capacity-reservation-id - The ID of the targeted Capacity Reservation.

  • capacity-reservation-specification.capacity-reservation-target.capacity-reservation-resource-group-arn - The ARN of the targeted Capacity Reservation group.

  • client-token - The idempotency token you provided when you launched the instance.

  • current-instance-boot-mode - The boot mode that is used to launch the instance at launch or start (legacy-bios | uefi).

  • dns-name - The public DNS name of the instance.

  • ebs-optimized - A Boolean that indicates whether the instance is optimized for Amazon EBS I/O.

  • ena-support - A Boolean that indicates whether the instance is enabled for enhanced networking with ENA.

  • enclave-options.enabled - A Boolean that indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves.

  • hibernation-options.configured - A Boolean that indicates whether the instance is enabled for hibernation. A value of true means that the instance is enabled for hibernation.

  • host-id - The ID of the Dedicated Host on which the instance is running, if applicable.

  • hypervisor - The hypervisor type of the instance (ovm | xen). The value xen is used for both Xen and Nitro hypervisors.

  • iam-instance-profile.arn - The instance profile associated with the instance. Specified as an ARN.

  • iam-instance-profile.id - The instance profile associated with the instance. Specified as an ID.

  • iam-instance-profile.name - The instance profile associated with the instance. Specified as an name.

  • image-id - The ID of the image used to launch the instance.

  • instance-id - The ID of the instance.

  • instance-lifecycle - Indicates whether this is a Spot Instance, a Scheduled Instance, or a Capacity Block (spot | scheduled | capacity-block).

  • instance-state-code - The state of the instance, as a 16-bit unsigned integer. The high byte is used for internal purposes and should be ignored. The low byte is set based on the state represented. The valid values are: 0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping), and 80 (stopped).

  • instance-state-name - The state of the instance (pending | running | shutting-down | terminated | stopping | stopped).

  • instance-type - The type of instance (for example, t2.micro).

  • instance.group-id - The ID of the security group for the instance.

  • instance.group-name - The name of the security group for the instance.

  • ip-address - The public IPv4 address of the instance.

  • ipv6-address - The IPv6 address of the instance.

  • kernel-id - The kernel ID.

  • key-name - The name of the key pair used when the instance was launched.

  • launch-index - When launching multiple instances, this is the index for the instance in the launch group (for example, 0, 1, 2, and so on).

  • launch-time - The time when the instance was launched, in the ISO 8601 format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for example, 2021-09-29T11:04:43.305Z. You can use a wildcard (*), for example, 2021-09-29T*, which matches an entire day.

  • maintenance-options.auto-recovery - The current automatic recovery behavior of the instance (disabled | default).

  • metadata-options.http-endpoint - The status of access to the HTTP metadata endpoint on your instance (enabled | disabled)

  • metadata-options.http-protocol-ipv4 - Indicates whether the IPv4 endpoint is enabled (disabled | enabled).

  • metadata-options.http-protocol-ipv6 - Indicates whether the IPv6 endpoint is enabled (disabled | enabled).

  • metadata-options.http-put-response-hop-limit - The HTTP metadata request put response hop limit (integer, possible values 1 to 64)

  • metadata-options.http-tokens - The metadata request authorization state (optional | required)

  • metadata-options.instance-metadata-tags - The status of access to instance tags from the instance metadata (enabled | disabled)

  • metadata-options.state - The state of the metadata option changes (pending | applied).

  • monitoring-state - Indicates whether detailed monitoring is enabled (disabled | enabled).

  • network-interface.addresses.association.allocation-id - The allocation ID.

  • network-interface.addresses.association.association-id - The association ID.

  • network-interface.addresses.association.carrier-ip - The carrier IP address.

  • network-interface.addresses.association.customer-owned-ip - The customer-owned IP address.

  • network-interface.addresses.association.ip-owner-id - The owner ID of the private IPv4 address associated with the network interface.

  • network-interface.addresses.association.public-dns-name - The public DNS name.

  • network-interface.addresses.association.public-ip - The ID of the association of an Elastic IP address (IPv4) with a network interface.

  • network-interface.addresses.primary - Specifies whether the IPv4 address of the network interface is the primary private IPv4 address.

  • network-interface.addresses.private-dns-name - The private DNS name.

  • network-interface.addresses.private-ip-address - The private IPv4 address associated with the network interface.

  • network-interface.association.allocation-id - The allocation ID returned when you allocated the Elastic IP address (IPv4) for your network interface.

  • network-interface.association.association-id - The association ID returned when the network interface was associated with an IPv4 address.

  • network-interface.association.carrier-ip - The customer-owned IP address.

  • network-interface.association.customer-owned-ip - The customer-owned IP address.

  • network-interface.association.ip-owner-id - The owner of the Elastic IP address (IPv4) associated with the network interface.

  • network-interface.association.public-dns-name - The public DNS name.

  • network-interface.association.public-ip - The address of the Elastic IP address (IPv4) bound to the network interface.

  • network-interface.attachment.attach-time - The time that the network interface was attached to an instance.

  • network-interface.attachment.attachment-id - The ID of the interface attachment.

  • network-interface.attachment.delete-on-termination - Specifies whether the attachment is deleted when an instance is terminated.

  • network-interface.attachment.device-index - The device index to which the network interface is attached.

  • network-interface.attachment.instance-id - The ID of the instance to which the network interface is attached.

  • network-interface.attachment.instance-owner-id - The owner ID of the instance to which the network interface is attached.

  • network-interface.attachment.network-card-index - The index of the network card.

  • network-interface.attachment.status - The status of the attachment (attaching | attached | detaching | detached).

  • network-interface.availability-zone - The Availability Zone for the network interface.

  • network-interface.deny-all-igw-traffic - A Boolean that indicates whether a network interface with an IPv6 address is unreachable from the public internet.

  • network-interface.description - The description of the network interface.

  • network-interface.group-id - The ID of a security group associated with the network interface.

  • network-interface.group-name - The name of a security group associated with the network interface.

  • network-interface.ipv4-prefixes.ipv4-prefix - The IPv4 prefixes that are assigned to the network interface.

  • network-interface.ipv6-address - The IPv6 address associated with the network interface.

  • network-interface.ipv6-addresses.ipv6-address - The IPv6 address associated with the network interface.

  • network-interface.ipv6-addresses.is-primary-ipv6 - A Boolean that indicates whether this is the primary IPv6 address.

  • network-interface.ipv6-native - A Boolean that indicates whether this is an IPv6 only network interface.

  • network-interface.ipv6-prefixes.ipv6-prefix - The IPv6 prefix assigned to the network interface.

  • network-interface.mac-address - The MAC address of the network interface.

  • network-interface.network-interface-id - The ID of the network interface.

  • network-interface.outpost-arn - The ARN of the Outpost.

  • network-interface.owner-id - The ID of the owner of the network interface.

  • network-interface.private-dns-name - The private DNS name of the network interface.

  • network-interface.private-ip-address - The private IPv4 address.

  • network-interface.public-dns-name - The public DNS name.

  • network-interface.requester-id - The requester ID for the network interface.

  • network-interface.requester-managed - Indicates whether the network interface is being managed by Amazon Web Services.

  • network-interface.status - The status of the network interface (available) | in-use).

  • network-interface.source-dest-check - Whether the network interface performs source/destination checking. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the network interface to perform network address translation (NAT) in your VPC.

  • network-interface.subnet-id - The ID of the subnet for the network interface.

  • network-interface.tag-key - The key of a tag assigned to the network interface.

  • network-interface.tag-value - The value of a tag assigned to the network interface.

  • network-interface.vpc-id - The ID of the VPC for the network interface.

  • outpost-arn - The Amazon Resource Name (ARN) of the Outpost.

  • owner-id - The Amazon Web Services account ID of the instance owner.

  • placement-group-name - The name of the placement group for the instance.

  • placement-partition-number - The partition in which the instance is located.

  • platform - The platform. To list only Windows instances, use windows.

  • platform-details - The platform (Linux/UNIX | Red Hat BYOL Linux | Red Hat Enterprise Linux | Red Hat Enterprise Linux with HA | Red Hat Enterprise Linux with SQL Server Standard and HA | Red Hat Enterprise Linux with SQL Server Enterprise and HA | Red Hat Enterprise Linux with SQL Server Standard | Red Hat Enterprise Linux with SQL Server Web | Red Hat Enterprise Linux with SQL Server Enterprise | SQL Server Enterprise | SQL Server Standard | SQL Server Web | SUSE Linux | Ubuntu Pro | Windows | Windows BYOL | Windows with SQL Server Enterprise | Windows with SQL Server Standard | Windows with SQL Server Web).

  • private-dns-name - The private IPv4 DNS name of the instance.

  • private-dns-name-options.enable-resource-name-dns-a-record - A Boolean that indicates whether to respond to DNS queries for instance hostnames with DNS A records.

  • private-dns-name-options.enable-resource-name-dns-aaaa-record - A Boolean that indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.

  • private-dns-name-options.hostname-type - The type of hostname (ip-name | resource-name).

  • private-ip-address - The private IPv4 address of the instance.

  • product-code - The product code associated with the AMI used to launch the instance.

  • product-code.type - The type of product code (devpay | marketplace).

  • ramdisk-id - The RAM disk ID.

  • reason - The reason for the current state of the instance (for example, shows "User Initiated [date]" when you stop or terminate the instance). Similar to the state-reason-code filter.

  • requester-id - The ID of the entity that launched the instance on your behalf (for example, Amazon Web Services Management Console, Auto Scaling, and so on).

  • reservation-id - The ID of the instance\'s reservation. A reservation ID is created any time you launch an instance. A reservation ID has a one-to-one relationship with an instance launch request, but can be associated with more than one instance if you launch multiple instances using the same launch request. For example, if you launch one instance, you get one reservation ID. If you launch ten instances using the same launch request, you also get one reservation ID.

  • root-device-name - The device name of the root device volume (for example, /dev/sda1).

  • root-device-type - The type of the root device volume (ebs | instance-store).

  • source-dest-check - Indicates whether the instance performs source/destination checking. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the instance to perform network address translation (NAT) in your VPC.

  • spot-instance-request-id - The ID of the Spot Instance request.

  • state-reason-code - The reason code for the state change.

  • state-reason-message - A message that describes the state change.

  • subnet-id - The ID of the subnet for the instance.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources that have a tag with a specific key, regardless of the tag value.

  • tenancy - The tenancy of an instance (dedicated | default | host).

  • tpm-support - Indicates if the instance is configured for NitroTPM support (v2.0).

  • usage-operation - The usage operation value for the instance (RunInstances | RunInstances:00g0 | RunInstances:0010 | RunInstances:1010 | RunInstances:1014 | RunInstances:1110 | RunInstances:0014 | RunInstances:0210 | RunInstances:0110 | RunInstances:0100 | RunInstances:0004 | RunInstances:0200 | RunInstances:000g | RunInstances:0g00 | RunInstances:0002 | RunInstances:0800 | RunInstances:0102 | RunInstances:0006 | RunInstances:0202).

  • usage-operation-update-time - The time that the usage operation was last updated, for example, 2022-09-15T17:15:20.000Z.

  • virtualization-type - The virtualization type of the instance (paravirtual | hvm).

  • vpc-id - The ID of the VPC that the instance is running in.

', 'DescribeInternetGatewaysRequest$Filters' => '

The filters.

  • attachment.state - The current state of the attachment between the gateway and the VPC (available). Present only if a VPC is attached.

  • attachment.vpc-id - The ID of an attached VPC.

  • internet-gateway-id - The ID of the Internet gateway.

  • owner-id - The ID of the Amazon Web Services account that owns the internet gateway.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeIpamPoolsRequest$Filters' => '

One or more filters for the request. For more information about filtering, see Filtering CLI output.

', 'DescribeIpamResourceDiscoveriesRequest$Filters' => '

The resource discovery filters.

', 'DescribeIpamResourceDiscoveryAssociationsRequest$Filters' => '

The resource discovery association filters.

', 'DescribeIpamScopesRequest$Filters' => '

One or more filters for the request. For more information about filtering, see Filtering CLI output.

', 'DescribeIpamsRequest$Filters' => '

One or more filters for the request. For more information about filtering, see Filtering CLI output.

', 'DescribeIpv6PoolsRequest$Filters' => '

One or more filters.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeKeyPairsRequest$Filters' => '

The filters.

  • key-pair-id - The ID of the key pair.

  • fingerprint - The fingerprint of the key pair.

  • key-name - The name of the key pair.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'DescribeLaunchTemplateVersionsRequest$Filters' => '

One or more filters.

  • create-time - The time the launch template version was created.

  • ebs-optimized - A boolean that indicates whether the instance is optimized for Amazon EBS I/O.

  • http-endpoint - Indicates whether the HTTP metadata endpoint on your instances is enabled (enabled | disabled).

  • http-protocol-ipv4 - Indicates whether the IPv4 endpoint for the instance metadata service is enabled (enabled | disabled).

  • host-resource-group-arn - The ARN of the host resource group in which to launch the instances.

  • http-tokens - The state of token usage for your instance metadata requests (optional | required).

  • iam-instance-profile - The ARN of the IAM instance profile.

  • image-id - The ID of the AMI.

  • instance-type - The instance type.

  • is-default-version - A boolean that indicates whether the launch template version is the default version.

  • kernel-id - The kernel ID.

  • license-configuration-arn - The ARN of the license configuration.

  • network-card-index - The index of the network card.

  • ram-disk-id - The RAM disk ID.

', 'DescribeLaunchTemplatesRequest$Filters' => '

One or more filters.

  • create-time - The time the launch template was created.

  • launch-template-name - The name of the launch template.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest$Filters' => '

One or more filters.

  • local-gateway-id - The ID of a local gateway.

  • local-gateway-route-table-arn - The Amazon Resource Name (ARN) of the local gateway route table for the virtual interface group.

  • local-gateway-route-table-id - The ID of the local gateway route table.

  • local-gateway-route-table-virtual-interface-group-association-id - The ID of the association.

  • local-gateway-route-table-virtual-interface-group-id - The ID of the virtual interface group.

  • owner-id - The ID of the Amazon Web Services account that owns the local gateway virtual interface group association.

  • state - The state of the association.

', 'DescribeLocalGatewayRouteTableVpcAssociationsRequest$Filters' => '

One or more filters.

  • local-gateway-id - The ID of a local gateway.

  • local-gateway-route-table-arn - The Amazon Resource Name (ARN) of the local gateway route table for the association.

  • local-gateway-route-table-id - The ID of the local gateway route table.

  • local-gateway-route-table-vpc-association-id - The ID of the association.

  • owner-id - The ID of the Amazon Web Services account that owns the local gateway route table for the association.

  • state - The state of the association.

  • vpc-id - The ID of the VPC.

', 'DescribeLocalGatewayRouteTablesRequest$Filters' => '

One or more filters.

  • local-gateway-id - The ID of a local gateway.

  • local-gateway-route-table-arn - The Amazon Resource Name (ARN) of the local gateway route table.

  • local-gateway-route-table-id - The ID of a local gateway route table.

  • outpost-arn - The Amazon Resource Name (ARN) of the Outpost.

  • owner-id - The ID of the Amazon Web Services account that owns the local gateway route table.

  • state - The state of the local gateway route table.

', 'DescribeLocalGatewayVirtualInterfaceGroupsRequest$Filters' => '

One or more filters.

  • local-gateway-id - The ID of a local gateway.

  • local-gateway-virtual-interface-group-id - The ID of the virtual interface group.

  • local-gateway-virtual-interface-id - The ID of the virtual interface.

  • owner-id - The ID of the Amazon Web Services account that owns the local gateway virtual interface group.

', 'DescribeLocalGatewayVirtualInterfacesRequest$Filters' => '

One or more filters.

  • local-address - The local address.

  • local-bgp-asn - The Border Gateway Protocol (BGP) Autonomous System Number (ASN) of the local gateway.

  • local-gateway-id - The ID of the local gateway.

  • local-gateway-virtual-interface-id - The ID of the virtual interface.

  • owner-id - The ID of the Amazon Web Services account that owns the local gateway virtual interface.

  • peer-address - The peer address.

  • peer-bgp-asn - The peer BGP ASN.

  • vlan - The ID of the VLAN.

', 'DescribeLocalGatewaysRequest$Filters' => '

One or more filters.

  • local-gateway-id - The ID of a local gateway.

  • outpost-arn - The Amazon Resource Name (ARN) of the Outpost.

  • owner-id - The ID of the Amazon Web Services account that owns the local gateway.

  • state - The state of the association.

', 'DescribeLockedSnapshotsRequest$Filters' => '

The filters.

  • lock-state - The state of the snapshot lock (compliance-cooloff | governance | compliance | expired).

', 'DescribeManagedPrefixListsRequest$Filters' => '

One or more filters.

  • owner-id - The ID of the prefix list owner.

  • prefix-list-id - The ID of the prefix list.

  • prefix-list-name - The name of the prefix list.

', 'DescribeMovingAddressesRequest$Filters' => '

One or more filters.

  • moving-status - The status of the Elastic IP address (MovingToVpc | RestoringToClassic).

', 'DescribeNatGatewaysRequest$Filter' => '

The filters.

  • nat-gateway-id - The ID of the NAT gateway.

  • state - The state of the NAT gateway (pending | failed | available | deleting | deleted).

  • subnet-id - The ID of the subnet in which the NAT gateway resides.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC in which the NAT gateway resides.

', 'DescribeNetworkAclsRequest$Filters' => '

The filters.

  • association.association-id - The ID of an association ID for the ACL.

  • association.network-acl-id - The ID of the network ACL involved in the association.

  • association.subnet-id - The ID of the subnet involved in the association.

  • default - Indicates whether the ACL is the default network ACL for the VPC.

  • entry.cidr - The IPv4 CIDR range specified in the entry.

  • entry.icmp.code - The ICMP code specified in the entry, if any.

  • entry.icmp.type - The ICMP type specified in the entry, if any.

  • entry.ipv6-cidr - The IPv6 CIDR range specified in the entry.

  • entry.port-range.from - The start of the port range specified in the entry.

  • entry.port-range.to - The end of the port range specified in the entry.

  • entry.protocol - The protocol specified in the entry (tcp | udp | icmp or a protocol number).

  • entry.rule-action - Allows or denies the matching traffic (allow | deny).

  • entry.egress - A Boolean that indicates the type of rule. Specify true for egress rules, or false for ingress rules.

  • entry.rule-number - The number of an entry (in other words, rule) in the set of ACL entries.

  • network-acl-id - The ID of the network ACL.

  • owner-id - The ID of the Amazon Web Services account that owns the network ACL.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC for the network ACL.

', 'DescribeNetworkInsightsAccessScopeAnalysesRequest$Filters' => '

There are no supported filters.

', 'DescribeNetworkInsightsAccessScopesRequest$Filters' => '

There are no supported filters.

', 'DescribeNetworkInsightsAnalysesRequest$Filters' => '

The filters. The following are the possible values:

  • path-found - A Boolean value that indicates whether a feasible path is found.

  • status - The status of the analysis (running | succeeded | failed).

', 'DescribeNetworkInsightsPathsRequest$Filters' => '

The filters. The following are the possible values:

  • destination - The ID of the resource.

  • filter-at-source.source-address - The source IPv4 address at the source.

  • filter-at-source.source-port-range - The source port range at the source.

  • filter-at-source.destination-address - The destination IPv4 address at the source.

  • filter-at-source.destination-port-range - The destination port range at the source.

  • filter-at-destination.source-address - The source IPv4 address at the destination.

  • filter-at-destination.source-port-range - The source port range at the destination.

  • filter-at-destination.destination-address - The destination IPv4 address at the destination.

  • filter-at-destination.destination-port-range - The destination port range at the destination.

  • protocol - The protocol.

  • source - The ID of the resource.

', 'DescribeNetworkInterfacePermissionsRequest$Filters' => '

One or more filters.

  • network-interface-permission.network-interface-permission-id - The ID of the permission.

  • network-interface-permission.network-interface-id - The ID of the network interface.

  • network-interface-permission.aws-account-id - The Amazon Web Services account ID.

  • network-interface-permission.aws-service - The Amazon Web Service.

  • network-interface-permission.permission - The type of permission (INSTANCE-ATTACH | EIP-ASSOCIATE).

', 'DescribeNetworkInterfacesRequest$Filters' => '

One or more filters.

  • association.allocation-id - The allocation ID returned when you allocated the Elastic IP address (IPv4) for your network interface.

  • association.association-id - The association ID returned when the network interface was associated with an IPv4 address.

  • addresses.association.owner-id - The owner ID of the addresses associated with the network interface.

  • addresses.association.public-ip - The association ID returned when the network interface was associated with the Elastic IP address (IPv4).

  • addresses.primary - Whether the private IPv4 address is the primary IP address associated with the network interface.

  • addresses.private-ip-address - The private IPv4 addresses associated with the network interface.

  • association.ip-owner-id - The owner of the Elastic IP address (IPv4) associated with the network interface.

  • association.public-ip - The address of the Elastic IP address (IPv4) bound to the network interface.

  • association.public-dns-name - The public DNS name for the network interface (IPv4).

  • attachment.attach-time - The time that the network interface was attached to an instance.

  • attachment.attachment-id - The ID of the interface attachment.

  • attachment.delete-on-termination - Indicates whether the attachment is deleted when an instance is terminated.

  • attachment.device-index - The device index to which the network interface is attached.

  • attachment.instance-id - The ID of the instance to which the network interface is attached.

  • attachment.instance-owner-id - The owner ID of the instance to which the network interface is attached.

  • attachment.status - The status of the attachment (attaching | attached | detaching | detached).

  • availability-zone - The Availability Zone of the network interface.

  • description - The description of the network interface.

  • group-id - The ID of a security group associated with the network interface.

  • ipv6-addresses.ipv6-address - An IPv6 address associated with the network interface.

  • interface-type - The type of network interface (api_gateway_managed | aws_codestar_connections_managed | branch | ec2_instance_connect_endpoint | efa | efs | gateway_load_balancer | gateway_load_balancer_endpoint | global_accelerator_managed | interface | iot_rules_managed | lambda | load_balancer | nat_gateway | network_load_balancer | quicksight | transit_gateway | trunk | vpc_endpoint).

  • mac-address - The MAC address of the network interface.

  • network-interface-id - The ID of the network interface.

  • owner-id - The Amazon Web Services account ID of the network interface owner.

  • private-dns-name - The private DNS name of the network interface (IPv4).

  • private-ip-address - The private IPv4 address or addresses of the network interface.

  • requester-id - The alias or Amazon Web Services account ID of the principal or service that created the network interface.

  • requester-managed - Indicates whether the network interface is being managed by an Amazon Web Service (for example, Amazon Web Services Management Console, Auto Scaling, and so on).

  • source-dest-check - Indicates whether the network interface performs source/destination checking. A value of true means checking is enabled, and false means checking is disabled. The value must be false for the network interface to perform network address translation (NAT) in your VPC.

  • status - The status of the network interface. If the network interface is not attached to an instance, the status is available; if a network interface is attached to an instance the status is in-use.

  • subnet-id - The ID of the subnet for the network interface.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC for the network interface.

', 'DescribePlacementGroupsRequest$Filters' => '

The filters.

  • group-name - The name of the placement group.

  • group-arn - The Amazon Resource Name (ARN) of the placement group.

  • spread-level - The spread level for the placement group (host | rack).

  • state - The state of the placement group (pending | available | deleting | deleted).

  • strategy - The strategy of the placement group (cluster | spread | partition).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources that have a tag with a specific key, regardless of the tag value.

', 'DescribePrefixListsRequest$Filters' => '

One or more filters.

  • prefix-list-id: The ID of a prefix list.

  • prefix-list-name: The name of a prefix list.

', 'DescribePublicIpv4PoolsRequest$Filters' => '

One or more filters.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeRegionsRequest$Filters' => '

The filters.

  • endpoint - The endpoint of the Region (for example, ec2.us-east-1.amazonaws.com).

  • opt-in-status - The opt-in status of the Region (opt-in-not-required | opted-in | not-opted-in).

  • region-name - The name of the Region (for example, us-east-1).

', 'DescribeReplaceRootVolumeTasksRequest$Filters' => '

Filter to use:

  • instance-id - The ID of the instance for which the root volume replacement task was created.

', 'DescribeReservedInstancesListingsRequest$Filters' => '

One or more filters.

  • reserved-instances-id - The ID of the Reserved Instances.

  • reserved-instances-listing-id - The ID of the Reserved Instances listing.

  • status - The status of the Reserved Instance listing (pending | active | cancelled | closed).

  • status-message - The reason for the status.

', 'DescribeReservedInstancesModificationsRequest$Filters' => '

One or more filters.

  • client-token - The idempotency token for the modification request.

  • create-date - The time when the modification request was created.

  • effective-date - The time when the modification becomes effective.

  • modification-result.reserved-instances-id - The ID for the Reserved Instances created as part of the modification request. This ID is only available when the status of the modification is fulfilled.

  • modification-result.target-configuration.availability-zone - The Availability Zone for the new Reserved Instances.

  • modification-result.target-configuration.instance-count - The number of new Reserved Instances.

  • modification-result.target-configuration.instance-type - The instance type of the new Reserved Instances.

  • reserved-instances-id - The ID of the Reserved Instances modified.

  • reserved-instances-modification-id - The ID of the modification request.

  • status - The status of the Reserved Instances modification request (processing | fulfilled | failed).

  • status-message - The reason for the status.

  • update-date - The time when the modification request was last updated.

', 'DescribeReservedInstancesOfferingsRequest$Filters' => '

One or more filters.

  • availability-zone - The Availability Zone where the Reserved Instance can be used.

  • duration - The duration of the Reserved Instance (for example, one year or three years), in seconds (31536000 | 94608000).

  • fixed-price - The purchase price of the Reserved Instance (for example, 9800.0).

  • instance-type - The instance type that is covered by the reservation.

  • marketplace - Set to true to show only Reserved Instance Marketplace offerings. When this filter is not used, which is the default behavior, all offerings from both Amazon Web Services and the Reserved Instance Marketplace are listed.

  • product-description - The Reserved Instance product platform description (Linux/UNIX | Linux with SQL Server Standard | Linux with SQL Server Web | Linux with SQL Server Enterprise | SUSE Linux | Red Hat Enterprise Linux | Red Hat Enterprise Linux with HA | Windows | Windows with SQL Server Standard | Windows with SQL Server Web | Windows with SQL Server Enterprise).

  • reserved-instances-offering-id - The Reserved Instances offering ID.

  • scope - The scope of the Reserved Instance (Availability Zone or Region).

  • usage-price - The usage price of the Reserved Instance, per hour (for example, 0.84).

', 'DescribeReservedInstancesRequest$Filters' => '

One or more filters.

  • availability-zone - The Availability Zone where the Reserved Instance can be used.

  • duration - The duration of the Reserved Instance (one year or three years), in seconds (31536000 | 94608000).

  • end - The time when the Reserved Instance expires (for example, 2015-08-07T11:54:42.000Z).

  • fixed-price - The purchase price of the Reserved Instance (for example, 9800.0).

  • instance-type - The instance type that is covered by the reservation.

  • scope - The scope of the Reserved Instance (Region or Availability Zone).

  • product-description - The Reserved Instance product platform description (Linux/UNIX | Linux with SQL Server Standard | Linux with SQL Server Web | Linux with SQL Server Enterprise | SUSE Linux | Red Hat Enterprise Linux | Red Hat Enterprise Linux with HA | Windows | Windows with SQL Server Standard | Windows with SQL Server Web | Windows with SQL Server Enterprise).

  • reserved-instances-id - The ID of the Reserved Instance.

  • start - The time at which the Reserved Instance purchase request was placed (for example, 2014-08-07T11:54:42.000Z).

  • state - The state of the Reserved Instance (payment-pending | active | payment-failed | retired).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • usage-price - The usage price of the Reserved Instance, per hour (for example, 0.84).

', 'DescribeRouteTablesRequest$Filters' => '

The filters.

  • association.gateway-id - The ID of the gateway involved in the association.

  • association.route-table-association-id - The ID of an association ID for the route table.

  • association.route-table-id - The ID of the route table involved in the association.

  • association.subnet-id - The ID of the subnet involved in the association.

  • association.main - Indicates whether the route table is the main route table for the VPC (true | false). Route tables that do not have an association ID are not returned in the response.

  • owner-id - The ID of the Amazon Web Services account that owns the route table.

  • route-table-id - The ID of the route table.

  • route.destination-cidr-block - The IPv4 CIDR range specified in a route in the table.

  • route.destination-ipv6-cidr-block - The IPv6 CIDR range specified in a route in the route table.

  • route.destination-prefix-list-id - The ID (prefix) of the Amazon Web Service specified in a route in the table.

  • route.egress-only-internet-gateway-id - The ID of an egress-only Internet gateway specified in a route in the route table.

  • route.gateway-id - The ID of a gateway specified in a route in the table.

  • route.instance-id - The ID of an instance specified in a route in the table.

  • route.nat-gateway-id - The ID of a NAT gateway.

  • route.transit-gateway-id - The ID of a transit gateway.

  • route.origin - Describes how the route was created. CreateRouteTable indicates that the route was automatically created when the route table was created; CreateRoute indicates that the route was manually added to the route table; EnableVgwRoutePropagation indicates that the route was propagated by route propagation.

  • route.state - The state of a route in the route table (active | blackhole). The blackhole state indicates that the route\'s target isn\'t available (for example, the specified gateway isn\'t attached to the VPC, the specified NAT instance has been terminated, and so on).

  • route.vpc-peering-connection-id - The ID of a VPC peering connection specified in a route in the table.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC for the route table.

', 'DescribeScheduledInstanceAvailabilityRequest$Filters' => '

The filters.

  • availability-zone - The Availability Zone (for example, us-west-2a).

  • instance-type - The instance type (for example, c4.large).

  • platform - The platform (Linux/UNIX or Windows).

', 'DescribeScheduledInstancesRequest$Filters' => '

The filters.

  • availability-zone - The Availability Zone (for example, us-west-2a).

  • instance-type - The instance type (for example, c4.large).

  • platform - The platform (Linux/UNIX or Windows).

', 'DescribeSecurityGroupRulesRequest$Filters' => '

One or more filters.

  • group-id - The ID of the security group.

  • security-group-rule-id - The ID of the security group rule.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'DescribeSecurityGroupsRequest$Filters' => '

The filters. If using multiple filters for rules, the results include security groups for which any combination of rules - not necessarily a single rule - match all filters.

  • description - The description of the security group.

  • egress.ip-permission.cidr - An IPv4 CIDR block for an outbound security group rule.

  • egress.ip-permission.from-port - For an outbound rule, the start of port range for the TCP and UDP protocols, or an ICMP type number.

  • egress.ip-permission.group-id - The ID of a security group that has been referenced in an outbound security group rule.

  • egress.ip-permission.group-name - The name of a security group that is referenced in an outbound security group rule.

  • egress.ip-permission.ipv6-cidr - An IPv6 CIDR block for an outbound security group rule.

  • egress.ip-permission.prefix-list-id - The ID of a prefix list to which a security group rule allows outbound access.

  • egress.ip-permission.protocol - The IP protocol for an outbound security group rule (tcp | udp | icmp, a protocol number, or -1 for all protocols).

  • egress.ip-permission.to-port - For an outbound rule, the end of port range for the TCP and UDP protocols, or an ICMP code.

  • egress.ip-permission.user-id - The ID of an Amazon Web Services account that has been referenced in an outbound security group rule.

  • group-id - The ID of the security group.

  • group-name - The name of the security group.

  • ip-permission.cidr - An IPv4 CIDR block for an inbound security group rule.

  • ip-permission.from-port - For an inbound rule, the start of port range for the TCP and UDP protocols, or an ICMP type number.

  • ip-permission.group-id - The ID of a security group that has been referenced in an inbound security group rule.

  • ip-permission.group-name - The name of a security group that is referenced in an inbound security group rule.

  • ip-permission.ipv6-cidr - An IPv6 CIDR block for an inbound security group rule.

  • ip-permission.prefix-list-id - The ID of a prefix list from which a security group rule allows inbound access.

  • ip-permission.protocol - The IP protocol for an inbound security group rule (tcp | udp | icmp, a protocol number, or -1 for all protocols).

  • ip-permission.to-port - For an inbound rule, the end of port range for the TCP and UDP protocols, or an ICMP code.

  • ip-permission.user-id - The ID of an Amazon Web Services account that has been referenced in an inbound security group rule.

  • owner-id - The Amazon Web Services account ID of the owner of the security group.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC specified when the security group was created.

', 'DescribeSnapshotTierStatusRequest$Filters' => '

The filters.

  • snapshot-id - The snapshot ID.

  • volume-id - The ID of the volume the snapshot is for.

  • last-tiering-operation - The state of the last archive or restore action. (archival-in-progress | archival-completed | archival-failed | permanent-restore-in-progress | permanent-restore-completed | permanent-restore-failed | temporary-restore-in-progress | temporary-restore-completed | temporary-restore-failed)

', 'DescribeSnapshotsRequest$Filters' => '

The filters.

  • description - A description of the snapshot.

  • encrypted - Indicates whether the snapshot is encrypted (true | false)

  • owner-alias - The owner alias, from an Amazon-maintained list (amazon). This is not the user-configured Amazon Web Services account alias set using the IAM console. We recommend that you use the related parameter instead of this filter.

  • owner-id - The Amazon Web Services account ID of the owner. We recommend that you use the related parameter instead of this filter.

  • progress - The progress of the snapshot, as a percentage (for example, 80%).

  • snapshot-id - The snapshot ID.

  • start-time - The time stamp when the snapshot was initiated.

  • status - The status of the snapshot (pending | completed | error).

  • storage-tier - The storage tier of the snapshot (archive | standard).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • volume-id - The ID of the volume the snapshot is for.

  • volume-size - The size of the volume, in GiB.

', 'DescribeSpotInstanceRequestsRequest$Filters' => '

The filters.

  • availability-zone-group - The Availability Zone group.

  • create-time - The time stamp when the Spot Instance request was created.

  • fault-code - The fault code related to the request.

  • fault-message - The fault message related to the request.

  • instance-id - The ID of the instance that fulfilled the request.

  • launch-group - The Spot Instance launch group.

  • launch.block-device-mapping.delete-on-termination - Indicates whether the EBS volume is deleted on instance termination.

  • launch.block-device-mapping.device-name - The device name for the volume in the block device mapping (for example, /dev/sdh or xvdh).

  • launch.block-device-mapping.snapshot-id - The ID of the snapshot for the EBS volume.

  • launch.block-device-mapping.volume-size - The size of the EBS volume, in GiB.

  • launch.block-device-mapping.volume-type - The type of EBS volume: gp2 or gp3 for General Purpose SSD, io1 or io2 for Provisioned IOPS SSD, st1 for Throughput Optimized HDD, sc1 for Cold HDD, or standard for Magnetic.

  • launch.group-id - The ID of the security group for the instance.

  • launch.group-name - The name of the security group for the instance.

  • launch.image-id - The ID of the AMI.

  • launch.instance-type - The type of instance (for example, m3.medium).

  • launch.kernel-id - The kernel ID.

  • launch.key-name - The name of the key pair the instance launched with.

  • launch.monitoring-enabled - Whether detailed monitoring is enabled for the Spot Instance.

  • launch.ramdisk-id - The RAM disk ID.

  • launched-availability-zone - The Availability Zone in which the request is launched.

  • network-interface.addresses.primary - Indicates whether the IP address is the primary private IP address.

  • network-interface.delete-on-termination - Indicates whether the network interface is deleted when the instance is terminated.

  • network-interface.description - A description of the network interface.

  • network-interface.device-index - The index of the device for the network interface attachment on the instance.

  • network-interface.group-id - The ID of the security group associated with the network interface.

  • network-interface.network-interface-id - The ID of the network interface.

  • network-interface.private-ip-address - The primary private IP address of the network interface.

  • network-interface.subnet-id - The ID of the subnet for the instance.

  • product-description - The product description associated with the instance (Linux/UNIX | Windows).

  • spot-instance-request-id - The Spot Instance request ID.

  • spot-price - The maximum hourly price for any Spot Instance launched to fulfill the request.

  • state - The state of the Spot Instance request (open | active | closed | cancelled | failed). Spot request status information can help you track your Amazon EC2 Spot Instance requests. For more information, see Spot request status in the Amazon EC2 User Guide for Linux Instances.

  • status-code - The short code describing the most recent evaluation of your Spot Instance request.

  • status-message - The message explaining the status of the Spot Instance request.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • type - The type of Spot Instance request (one-time | persistent).

  • valid-from - The start date of the request.

  • valid-until - The end date of the request.

', 'DescribeSpotPriceHistoryRequest$Filters' => '

The filters.

  • availability-zone - The Availability Zone for which prices should be returned.

  • instance-type - The type of instance (for example, m3.medium).

  • product-description - The product description for the Spot price (Linux/UNIX | Red Hat Enterprise Linux | SUSE Linux | Windows | Linux/UNIX (Amazon VPC) | Red Hat Enterprise Linux (Amazon VPC) | SUSE Linux (Amazon VPC) | Windows (Amazon VPC)).

  • spot-price - The Spot price. The value must match exactly (or use wildcards; greater than or less than comparison is not supported).

  • timestamp - The time stamp of the Spot price history, in UTC format (for example, ddd MMM dd HH:mm:ss UTC YYYY). You can use wildcards (* and ?). Greater than or less than comparison is not supported.

', 'DescribeStoreImageTasksRequest$Filters' => '

The filters.

  • task-state - Returns tasks in a certain state (InProgress | Completed | Failed)

  • bucket - Returns task information for tasks that targeted a specific bucket. For the filter value, specify the bucket name.

When you specify the ImageIds parameter, any filters that you specify are ignored. To use the filters, you must remove the ImageIds parameter.

', 'DescribeSubnetsRequest$Filters' => '

The filters.

  • availability-zone - The Availability Zone for the subnet. You can also use availabilityZone as the filter name.

  • availability-zone-id - The ID of the Availability Zone for the subnet. You can also use availabilityZoneId as the filter name.

  • available-ip-address-count - The number of IPv4 addresses in the subnet that are available.

  • cidr-block - The IPv4 CIDR block of the subnet. The CIDR block you specify must exactly match the subnet\'s CIDR block for information to be returned for the subnet. You can also use cidr or cidrBlock as the filter names.

  • customer-owned-ipv4-pool - The customer-owned IPv4 address pool associated with the subnet.

  • default-for-az - Indicates whether this is the default subnet for the Availability Zone (true | false). You can also use defaultForAz as the filter name.

  • enable-dns64 - Indicates whether DNS queries made to the Amazon-provided DNS Resolver in this subnet should return synthetic IPv6 addresses for IPv4-only destinations.

  • enable-lni-at-device-index - Indicates the device position for local network interfaces in this subnet. For example, 1 indicates local network interfaces in this subnet are the secondary network interface (eth1).

  • ipv6-cidr-block-association.ipv6-cidr-block - An IPv6 CIDR block associated with the subnet.

  • ipv6-cidr-block-association.association-id - An association ID for an IPv6 CIDR block associated with the subnet.

  • ipv6-cidr-block-association.state - The state of an IPv6 CIDR block associated with the subnet.

  • ipv6-native - Indicates whether this is an IPv6 only subnet (true | false).

  • map-customer-owned-ip-on-launch - Indicates whether a network interface created in this subnet (including a network interface created by RunInstances) receives a customer-owned IPv4 address.

  • map-public-ip-on-launch - Indicates whether instances launched in this subnet receive a public IPv4 address.

  • outpost-arn - The Amazon Resource Name (ARN) of the Outpost.

  • owner-id - The ID of the Amazon Web Services account that owns the subnet.

  • private-dns-name-options-on-launch.hostname-type - The type of hostname to assign to instances in the subnet at launch. For IPv4-only and dual-stack (IPv4 and IPv6) subnets, an instance DNS name can be based on the instance IPv4 address (ip-name) or the instance ID (resource-name). For IPv6 only subnets, an instance DNS name must be based on the instance ID (resource-name).

  • private-dns-name-options-on-launch.enable-resource-name-dns-a-record - Indicates whether to respond to DNS queries for instance hostnames with DNS A records.

  • private-dns-name-options-on-launch.enable-resource-name-dns-aaaa-record - Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.

  • state - The state of the subnet (pending | available).

  • subnet-arn - The Amazon Resource Name (ARN) of the subnet.

  • subnet-id - The ID of the subnet.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC for the subnet.

', 'DescribeTagsRequest$Filters' => '

The filters.

  • key - The tag key.

  • resource-id - The ID of the resource.

  • resource-type - The resource type (customer-gateway | dedicated-host | dhcp-options | elastic-ip | fleet | fpga-image | host-reservation | image | instance | internet-gateway | key-pair | launch-template | natgateway | network-acl | network-interface | placement-group | reserved-instances | route-table | security-group | snapshot | spot-instances-request | subnet | volume | vpc | vpc-endpoint | vpc-endpoint-service | vpc-peering-connection | vpn-connection | vpn-gateway).

  • tag:<key> - The key/value combination of the tag. For example, specify "tag:Owner" for the filter name and "TeamA" for the filter value to find resources with the tag "Owner=TeamA".

  • value - The tag value.

', 'DescribeTrafficMirrorFiltersRequest$Filters' => '

One or more filters. The possible values are:

  • description: The Traffic Mirror filter description.

  • traffic-mirror-filter-id: The ID of the Traffic Mirror filter.

', 'DescribeTrafficMirrorSessionsRequest$Filters' => '

One or more filters. The possible values are:

  • description: The Traffic Mirror session description.

  • network-interface-id: The ID of the Traffic Mirror session network interface.

  • owner-id: The ID of the account that owns the Traffic Mirror session.

  • packet-length: The assigned number of packets to mirror.

  • session-number: The assigned session number.

  • traffic-mirror-filter-id: The ID of the Traffic Mirror filter.

  • traffic-mirror-session-id: The ID of the Traffic Mirror session.

  • traffic-mirror-target-id: The ID of the Traffic Mirror target.

  • virtual-network-id: The virtual network ID of the Traffic Mirror session.

', 'DescribeTrafficMirrorTargetsRequest$Filters' => '

One or more filters. The possible values are:

  • description: The Traffic Mirror target description.

  • network-interface-id: The ID of the Traffic Mirror session network interface.

  • network-load-balancer-arn: The Amazon Resource Name (ARN) of the Network Load Balancer that is associated with the session.

  • owner-id: The ID of the account that owns the Traffic Mirror session.

  • traffic-mirror-target-id: The ID of the Traffic Mirror target.

', 'DescribeTransitGatewayAttachmentsRequest$Filters' => '

One or more filters. The possible values are:

  • association.state - The state of the association (associating | associated | disassociating).

  • association.transit-gateway-route-table-id - The ID of the route table for the transit gateway.

  • resource-id - The ID of the resource.

  • resource-owner-id - The ID of the Amazon Web Services account that owns the resource.

  • resource-type - The resource type. Valid values are vpc | vpn | direct-connect-gateway | peering | connect.

  • state - The state of the attachment. Valid values are available | deleted | deleting | failed | failing | initiatingRequest | modifying | pendingAcceptance | pending | rollingBack | rejected | rejecting.

  • transit-gateway-attachment-id - The ID of the attachment.

  • transit-gateway-id - The ID of the transit gateway.

  • transit-gateway-owner-id - The ID of the Amazon Web Services account that owns the transit gateway.

', 'DescribeTransitGatewayConnectPeersRequest$Filters' => '

One or more filters. The possible values are:

  • state - The state of the Connect peer (pending | available | deleting | deleted).

  • transit-gateway-attachment-id - The ID of the attachment.

  • transit-gateway-connect-peer-id - The ID of the Connect peer.

', 'DescribeTransitGatewayConnectsRequest$Filters' => '

One or more filters. The possible values are:

  • options.protocol - The tunnel protocol (gre).

  • state - The state of the attachment (initiating | initiatingRequest | pendingAcceptance | rollingBack | pending | available | modifying | deleting | deleted | failed | rejected | rejecting | failing).

  • transit-gateway-attachment-id - The ID of the Connect attachment.

  • transit-gateway-id - The ID of the transit gateway.

  • transport-transit-gateway-attachment-id - The ID of the transit gateway attachment from which the Connect attachment was created.

', 'DescribeTransitGatewayMulticastDomainsRequest$Filters' => '

One or more filters. The possible values are:

  • state - The state of the transit gateway multicast domain. Valid values are pending | available | deleting | deleted.

  • transit-gateway-id - The ID of the transit gateway.

  • transit-gateway-multicast-domain-id - The ID of the transit gateway multicast domain.

', 'DescribeTransitGatewayPeeringAttachmentsRequest$Filters' => '

One or more filters. The possible values are:

  • transit-gateway-attachment-id - The ID of the transit gateway attachment.

  • local-owner-id - The ID of your Amazon Web Services account.

  • remote-owner-id - The ID of the Amazon Web Services account in the remote Region that owns the transit gateway.

  • state - The state of the peering attachment. Valid values are available | deleted | deleting | failed | failing | initiatingRequest | modifying | pendingAcceptance | pending | rollingBack | rejected | rejecting).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources that have a tag with a specific key, regardless of the tag value.

  • transit-gateway-id - The ID of the transit gateway.

', 'DescribeTransitGatewayPolicyTablesRequest$Filters' => '

The filters associated with the transit gateway policy table.

', 'DescribeTransitGatewayRouteTableAnnouncementsRequest$Filters' => '

The filters associated with the transit gateway policy table.

', 'DescribeTransitGatewayRouteTablesRequest$Filters' => '

One or more filters. The possible values are:

  • default-association-route-table - Indicates whether this is the default association route table for the transit gateway (true | false).

  • default-propagation-route-table - Indicates whether this is the default propagation route table for the transit gateway (true | false).

  • state - The state of the route table (available | deleting | deleted | pending).

  • transit-gateway-id - The ID of the transit gateway.

  • transit-gateway-route-table-id - The ID of the transit gateway route table.

', 'DescribeTransitGatewayVpcAttachmentsRequest$Filters' => '

One or more filters. The possible values are:

  • state - The state of the attachment. Valid values are available | deleted | deleting | failed | failing | initiatingRequest | modifying | pendingAcceptance | pending | rollingBack | rejected | rejecting.

  • transit-gateway-attachment-id - The ID of the attachment.

  • transit-gateway-id - The ID of the transit gateway.

  • vpc-id - The ID of the VPC.

', 'DescribeTransitGatewaysRequest$Filters' => '

One or more filters. The possible values are:

  • options.propagation-default-route-table-id - The ID of the default propagation route table.

  • options.amazon-side-asn - The private ASN for the Amazon side of a BGP session.

  • options.association-default-route-table-id - The ID of the default association route table.

  • options.auto-accept-shared-attachments - Indicates whether there is automatic acceptance of attachment requests (enable | disable).

  • options.default-route-table-association - Indicates whether resource attachments are automatically associated with the default association route table (enable | disable).

  • options.default-route-table-propagation - Indicates whether resource attachments automatically propagate routes to the default propagation route table (enable | disable).

  • options.dns-support - Indicates whether DNS support is enabled (enable | disable).

  • options.vpn-ecmp-support - Indicates whether Equal Cost Multipath Protocol support is enabled (enable | disable).

  • owner-id - The ID of the Amazon Web Services account that owns the transit gateway.

  • state - The state of the transit gateway (available | deleted | deleting | modifying | pending).

  • transit-gateway-id - The ID of the transit gateway.

', 'DescribeTrunkInterfaceAssociationsRequest$Filters' => '

One or more filters.

  • gre-key - The ID of a trunk interface association.

  • interface-protocol - The interface protocol. Valid values are VLAN and GRE.

', 'DescribeVerifiedAccessEndpointsRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

', 'DescribeVerifiedAccessGroupsRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

', 'DescribeVerifiedAccessInstanceLoggingConfigurationsRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

', 'DescribeVerifiedAccessInstancesRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

', 'DescribeVerifiedAccessTrustProvidersRequest$Filters' => '

One or more filters. Filter names and values are case-sensitive.

', 'DescribeVolumeStatusRequest$Filters' => '

The filters.

  • action.code - The action code for the event (for example, enable-volume-io).

  • action.description - A description of the action.

  • action.event-id - The event ID associated with the action.

  • availability-zone - The Availability Zone of the instance.

  • event.description - A description of the event.

  • event.event-id - The event ID.

  • event.event-type - The event type (for io-enabled: passed | failed; for io-performance: io-performance:degraded | io-performance:severely-degraded | io-performance:stalled).

  • event.not-after - The latest end time for the event.

  • event.not-before - The earliest start time for the event.

  • volume-status.details-name - The cause for volume-status.status (io-enabled | io-performance).

  • volume-status.details-status - The status of volume-status.details-name (for io-enabled: passed | failed; for io-performance: normal | degraded | severely-degraded | stalled).

  • volume-status.status - The status of the volume (ok | impaired | warning | insufficient-data).

', 'DescribeVolumesModificationsRequest$Filters' => '

The filters.

  • modification-state - The current modification state (modifying | optimizing | completed | failed).

  • original-iops - The original IOPS rate of the volume.

  • original-size - The original size of the volume, in GiB.

  • original-volume-type - The original volume type of the volume (standard | io1 | io2 | gp2 | sc1 | st1).

  • originalMultiAttachEnabled - Indicates whether Multi-Attach support was enabled (true | false).

  • start-time - The modification start time.

  • target-iops - The target IOPS rate of the volume.

  • target-size - The target size of the volume, in GiB.

  • target-volume-type - The target volume type of the volume (standard | io1 | io2 | gp2 | sc1 | st1).

  • targetMultiAttachEnabled - Indicates whether Multi-Attach support is to be enabled (true | false).

  • volume-id - The ID of the volume.

', 'DescribeVolumesRequest$Filters' => '

The filters.

  • attachment.attach-time - The time stamp when the attachment initiated.

  • attachment.delete-on-termination - Whether the volume is deleted on instance termination.

  • attachment.device - The device name specified in the block device mapping (for example, /dev/sda1).

  • attachment.instance-id - The ID of the instance the volume is attached to.

  • attachment.status - The attachment state (attaching | attached | detaching).

  • availability-zone - The Availability Zone in which the volume was created.

  • create-time - The time stamp when the volume was created.

  • encrypted - Indicates whether the volume is encrypted (true | false)

  • multi-attach-enabled - Indicates whether the volume is enabled for Multi-Attach (true | false)

  • fast-restored - Indicates whether the volume was created from a snapshot that is enabled for fast snapshot restore (true | false).

  • size - The size of the volume, in GiB.

  • snapshot-id - The snapshot from which the volume was created.

  • status - The state of the volume (creating | available | in-use | deleting | deleted | error).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • volume-id - The volume ID.

  • volume-type - The Amazon EBS volume type (gp2 | gp3 | io1 | io2 | st1 | sc1| standard)

', 'DescribeVpcClassicLinkRequest$Filters' => '

The filters.

  • is-classic-link-enabled - Whether the VPC is enabled for ClassicLink (true | false).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeVpcEndpointConnectionNotificationsRequest$Filters' => '

The filters.

  • connection-notification-arn - The ARN of the SNS topic for the notification.

  • connection-notification-id - The ID of the notification.

  • connection-notification-state - The state of the notification (Enabled | Disabled).

  • connection-notification-type - The type of notification (Topic).

  • service-id - The ID of the endpoint service.

  • vpc-endpoint-id - The ID of the VPC endpoint.

', 'DescribeVpcEndpointConnectionsRequest$Filters' => '

The filters.

  • ip-address-type - The IP address type (ipv4 | ipv6).

  • service-id - The ID of the service.

  • vpc-endpoint-owner - The ID of the Amazon Web Services account ID that owns the endpoint.

  • vpc-endpoint-state - The state of the endpoint (pendingAcceptance | pending | available | deleting | deleted | rejected | failed).

  • vpc-endpoint-id - The ID of the endpoint.

', 'DescribeVpcEndpointServiceConfigurationsRequest$Filters' => '

The filters.

  • service-name - The name of the service.

  • service-id - The ID of the service.

  • service-state - The state of the service (Pending | Available | Deleting | Deleted | Failed).

  • supported-ip-address-types - The IP address type (ipv4 | ipv6).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeVpcEndpointServicePermissionsRequest$Filters' => '

The filters.

  • principal - The ARN of the principal.

  • principal-type - The principal type (All | Service | OrganizationUnit | Account | User | Role).

', 'DescribeVpcEndpointServicesRequest$Filters' => '

The filters.

  • owner - The ID or alias of the Amazon Web Services account that owns the service.

  • service-name - The name of the service.

  • service-type - The type of service (Interface | Gateway | GatewayLoadBalancer).

  • supported-ip-address-types - The IP address type (ipv4 | ipv6).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'DescribeVpcEndpointsRequest$Filters' => '

The filters.

  • ip-address-type - The IP address type (ipv4 | ipv6).

  • service-name - The name of the service.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC in which the endpoint resides.

  • vpc-endpoint-id - The ID of the endpoint.

  • vpc-endpoint-state - The state of the endpoint (pendingAcceptance | pending | available | deleting | deleted | rejected | failed).

  • vpc-endpoint-type - The type of VPC endpoint (Interface | Gateway | GatewayLoadBalancer).

', 'DescribeVpcPeeringConnectionsRequest$Filters' => '

The filters.

  • accepter-vpc-info.cidr-block - The IPv4 CIDR block of the accepter VPC.

  • accepter-vpc-info.owner-id - The ID of the Amazon Web Services account that owns the accepter VPC.

  • accepter-vpc-info.vpc-id - The ID of the accepter VPC.

  • expiration-time - The expiration date and time for the VPC peering connection.

  • requester-vpc-info.cidr-block - The IPv4 CIDR block of the requester\'s VPC.

  • requester-vpc-info.owner-id - The ID of the Amazon Web Services account that owns the requester VPC.

  • requester-vpc-info.vpc-id - The ID of the requester VPC.

  • status-code - The status of the VPC peering connection (pending-acceptance | failed | expired | provisioning | active | deleting | deleted | rejected).

  • status-message - A message that provides more information about the status of the VPC peering connection, if applicable.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-peering-connection-id - The ID of the VPC peering connection.

', 'DescribeVpcsRequest$Filters' => '

The filters.

  • cidr - The primary IPv4 CIDR block of the VPC. The CIDR block you specify must exactly match the VPC\'s CIDR block for information to be returned for the VPC. Must contain the slash followed by one or two digits (for example, /28).

  • cidr-block-association.cidr-block - An IPv4 CIDR block associated with the VPC.

  • cidr-block-association.association-id - The association ID for an IPv4 CIDR block associated with the VPC.

  • cidr-block-association.state - The state of an IPv4 CIDR block associated with the VPC.

  • dhcp-options-id - The ID of a set of DHCP options.

  • ipv6-cidr-block-association.ipv6-cidr-block - An IPv6 CIDR block associated with the VPC.

  • ipv6-cidr-block-association.ipv6-pool - The ID of the IPv6 address pool from which the IPv6 CIDR block is allocated.

  • ipv6-cidr-block-association.association-id - The association ID for an IPv6 CIDR block associated with the VPC.

  • ipv6-cidr-block-association.state - The state of an IPv6 CIDR block associated with the VPC.

  • is-default - Indicates whether the VPC is the default VPC.

  • owner-id - The ID of the Amazon Web Services account that owns the VPC.

  • state - The state of the VPC (pending | available).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • vpc-id - The ID of the VPC.

', 'DescribeVpnConnectionsRequest$Filters' => '

One or more filters.

  • customer-gateway-configuration - The configuration information for the customer gateway.

  • customer-gateway-id - The ID of a customer gateway associated with the VPN connection.

  • state - The state of the VPN connection (pending | available | deleting | deleted).

  • option.static-routes-only - Indicates whether the connection has static routes only. Used for devices that do not support Border Gateway Protocol (BGP).

  • route.destination-cidr-block - The destination CIDR block. This corresponds to the subnet used in a customer data center.

  • bgp-asn - The BGP Autonomous System Number (ASN) associated with a BGP device.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • type - The type of VPN connection. Currently the only supported type is ipsec.1.

  • vpn-connection-id - The ID of the VPN connection.

  • vpn-gateway-id - The ID of a virtual private gateway associated with the VPN connection.

  • transit-gateway-id - The ID of a transit gateway associated with the VPN connection.

', 'DescribeVpnGatewaysRequest$Filters' => '

One or more filters.

  • amazon-side-asn - The Autonomous System Number (ASN) for the Amazon side of the gateway.

  • attachment.state - The current state of the attachment between the gateway and the VPC (attaching | attached | detaching | detached).

  • attachment.vpc-id - The ID of an attached VPC.

  • availability-zone - The Availability Zone for the virtual private gateway (if applicable).

  • state - The state of the virtual private gateway (pending | available | deleting | deleted).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • type - The type of virtual private gateway. Currently the only supported type is ipsec.1.

  • vpn-gateway-id - The ID of the virtual private gateway.

', 'ExportTransitGatewayRoutesRequest$Filters' => '

One or more filters. The possible values are:

  • attachment.transit-gateway-attachment-id - The id of the transit gateway attachment.

  • attachment.resource-id - The resource id of the transit gateway attachment.

  • route-search.exact-match - The exact match of the specified filter.

  • route-search.longest-prefix-match - The longest prefix that matches the route.

  • route-search.subnet-of-match - The routes with a subnet that match the specified CIDR filter.

  • route-search.supernet-of-match - The routes with a CIDR that encompass the CIDR filter. For example, if you have 10.0.1.0/29 and 10.0.1.0/31 routes in your route table and you specify supernet-of-match as 10.0.1.0/30, then the result returns 10.0.1.0/29.

  • state - The state of the route (active | blackhole).

  • transit-gateway-route-destination-cidr-block - The CIDR range.

  • type - The type of route (propagated | static).

', 'GetCoipPoolUsageRequest$Filters' => '

One or more filters.

  • coip-address-usage.allocation-id - The allocation ID of the address.

  • coip-address-usage.aws-account-id - The ID of the Amazon Web Services account that is using the customer-owned IP address.

  • coip-address-usage.aws-service - The Amazon Web Services service that is using the customer-owned IP address.

  • coip-address-usage.co-ip - The customer-owned IP address.

', 'GetIpamDiscoveredAccountsRequest$Filters' => '

Discovered account filters.

', 'GetIpamDiscoveredPublicAddressesRequest$Filters' => '

Filters.

', 'GetIpamDiscoveredResourceCidrsRequest$Filters' => '

Filters.

', 'GetIpamPoolAllocationsRequest$Filters' => '

One or more filters for the request. For more information about filtering, see Filtering CLI output.

', 'GetIpamPoolCidrsRequest$Filters' => '

One or more filters for the request. For more information about filtering, see Filtering CLI output.

', 'GetIpamResourceCidrsRequest$Filters' => '

One or more filters for the request. For more information about filtering, see Filtering CLI output.

', 'GetSecurityGroupsForVpcRequest$Filters' => '

The filters. If using multiple filters, the results include security groups which match all filters.

  • group-id: The security group ID.

  • description: The security group\'s description.

  • group-name: The security group name.

  • owner-id: The security group owner ID.

  • primary-vpc-id: The VPC ID in which the security group was created.

', 'GetSubnetCidrReservationsRequest$Filters' => '

One or more filters.

  • reservationType - The type of reservation (prefix | explicit).

  • subnet-id - The ID of the subnet.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'GetTransitGatewayAttachmentPropagationsRequest$Filters' => '

One or more filters. The possible values are:

  • transit-gateway-route-table-id - The ID of the transit gateway route table.

', 'GetTransitGatewayMulticastDomainAssociationsRequest$Filters' => '

One or more filters. The possible values are:

  • resource-id - The ID of the resource.

  • resource-type - The type of resource. The valid value is: vpc.

  • state - The state of the subnet association. Valid values are associated | associating | disassociated | disassociating.

  • subnet-id - The ID of the subnet.

  • transit-gateway-attachment-id - The id of the transit gateway attachment.

', 'GetTransitGatewayPolicyTableAssociationsRequest$Filters' => '

The filters associated with the transit gateway policy table.

', 'GetTransitGatewayPolicyTableEntriesRequest$Filters' => '

The filters associated with the transit gateway policy table.

', 'GetTransitGatewayPrefixListReferencesRequest$Filters' => '

One or more filters. The possible values are:

  • attachment.resource-id - The ID of the resource for the attachment.

  • attachment.resource-type - The type of resource for the attachment. Valid values are vpc | vpn | direct-connect-gateway | peering.

  • attachment.transit-gateway-attachment-id - The ID of the attachment.

  • is-blackhole - Whether traffic matching the route is blocked (true | false).

  • prefix-list-id - The ID of the prefix list.

  • prefix-list-owner-id - The ID of the owner of the prefix list.

  • state - The state of the prefix list reference (pending | available | modifying | deleting).

', 'GetTransitGatewayRouteTableAssociationsRequest$Filters' => '

One or more filters. The possible values are:

  • resource-id - The ID of the resource.

  • resource-type - The resource type. Valid values are vpc | vpn | direct-connect-gateway | peering | connect.

  • transit-gateway-attachment-id - The ID of the attachment.

', 'GetTransitGatewayRouteTablePropagationsRequest$Filters' => '

One or more filters. The possible values are:

  • resource-id - The ID of the resource.

  • resource-type - The resource type. Valid values are vpc | vpn | direct-connect-gateway | peering | connect.

  • transit-gateway-attachment-id - The ID of the attachment.

', 'SearchLocalGatewayRoutesRequest$Filters' => '

One or more filters.

  • prefix-list-id - The ID of the prefix list.

  • route-search.exact-match - The exact match of the specified filter.

  • route-search.longest-prefix-match - The longest prefix that matches the route.

  • route-search.subnet-of-match - The routes with a subnet that match the specified CIDR filter.

  • route-search.supernet-of-match - The routes with a CIDR that encompass the CIDR filter. For example, if you have 10.0.1.0/29 and 10.0.1.0/31 routes in your route table and you specify supernet-of-match as 10.0.1.0/30, then the result returns 10.0.1.0/29.

  • state - The state of the route.

  • type - The route type.

', 'SearchTransitGatewayMulticastGroupsRequest$Filters' => '

One or more filters. The possible values are:

  • group-ip-address - The IP address of the transit gateway multicast group.

  • is-group-member - The resource is a group member. Valid values are true | false.

  • is-group-source - The resource is a group source. Valid values are true | false.

  • member-type - The member type. Valid values are igmp | static.

  • resource-id - The ID of the resource.

  • resource-type - The type of resource. Valid values are vpc | vpn | direct-connect-gateway | tgw-peering.

  • source-type - The source type. Valid values are igmp | static.

  • subnet-id - The ID of the subnet.

  • transit-gateway-attachment-id - The id of the transit gateway attachment.

', 'SearchTransitGatewayRoutesRequest$Filters' => '

One or more filters. The possible values are:

  • attachment.transit-gateway-attachment-id- The id of the transit gateway attachment.

  • attachment.resource-id - The resource id of the transit gateway attachment.

  • attachment.resource-type - The attachment resource type. Valid values are vpc | vpn | direct-connect-gateway | peering | connect.

  • prefix-list-id - The ID of the prefix list.

  • route-search.exact-match - The exact match of the specified filter.

  • route-search.longest-prefix-match - The longest prefix that matches the route.

  • route-search.subnet-of-match - The routes with a subnet that match the specified CIDR filter.

  • route-search.supernet-of-match - The routes with a CIDR that encompass the CIDR filter. For example, if you have 10.0.1.0/29 and 10.0.1.0/31 routes in your route table and you specify supernet-of-match as 10.0.1.0/30, then the result returns 10.0.1.0/29.

  • state - The state of the route (active | blackhole).

  • type - The type of route (propagated | static).

', ], ], 'FilterPortRange' => [ 'base' => '

Describes a port range.

', 'refs' => [ 'PathFilter$SourcePortRange' => '

The source port range.

', 'PathFilter$DestinationPortRange' => '

The destination port range.

', ], ], 'FindingsFound' => [ 'base' => NULL, 'refs' => [ 'NetworkInsightsAccessScopeAnalysis$FindingsFound' => '

Indicates whether there are findings.

', ], ], 'FirewallStatefulRule' => [ 'base' => '

Describes a stateful rule.

', 'refs' => [ 'Explanation$FirewallStatefulRule' => '

The Network Firewall stateful rule.

', 'PathComponent$FirewallStatefulRule' => '

The Network Firewall stateful rule.

', ], ], 'FirewallStatelessRule' => [ 'base' => '

Describes a stateless rule.

', 'refs' => [ 'Explanation$FirewallStatelessRule' => '

The Network Firewall stateless rule.

', 'PathComponent$FirewallStatelessRule' => '

The Network Firewall stateless rule.

', ], ], 'FleetActivityStatus' => [ 'base' => NULL, 'refs' => [ 'FleetData$ActivityStatus' => '

The progress of the EC2 Fleet. If there is an error, the status is error. After all requests are placed, the status is pending_fulfillment. If the size of the EC2 Fleet is equal to or greater than its target capacity, the status is fulfilled. If the size of the EC2 Fleet is decreased, the status is pending_termination while instances are terminating.

', ], ], 'FleetCapacityReservation' => [ 'base' => '

Information about a Capacity Reservation in a Capacity Reservation Fleet.

', 'refs' => [ 'FleetCapacityReservationSet$member' => NULL, ], ], 'FleetCapacityReservationSet' => [ 'base' => NULL, 'refs' => [ 'CapacityReservationFleet$InstanceTypeSpecifications' => '

Information about the instance types for which to reserve the capacity.

', 'CreateCapacityReservationFleetResult$FleetCapacityReservations' => '

Information about the individual Capacity Reservations in the Capacity Reservation Fleet.

', ], ], 'FleetCapacityReservationTenancy' => [ 'base' => NULL, 'refs' => [ 'CapacityReservationFleet$Tenancy' => '

The tenancy of the Capacity Reservation Fleet. Tenancies include:

  • default - The Capacity Reservation Fleet is created on hardware that is shared with other Amazon Web Services accounts.

  • dedicated - The Capacity Reservation Fleet is created on single-tenant hardware that is dedicated to a single Amazon Web Services account.

', 'CreateCapacityReservationFleetRequest$Tenancy' => '

Indicates the tenancy of the Capacity Reservation Fleet. All Capacity Reservations in the Fleet inherit this tenancy. The Capacity Reservation Fleet can have one of the following tenancy settings:

  • default - The Capacity Reservation Fleet is created on hardware that is shared with other Amazon Web Services accounts.

  • dedicated - The Capacity Reservations are created on single-tenant hardware that is dedicated to a single Amazon Web Services account.

', 'CreateCapacityReservationFleetResult$Tenancy' => '

Indicates the tenancy of Capacity Reservation Fleet.

', ], ], 'FleetCapacityReservationUsageStrategy' => [ 'base' => NULL, 'refs' => [ 'CapacityReservationOptions$UsageStrategy' => '

Indicates whether to use unused Capacity Reservations for fulfilling On-Demand capacity.

If you specify use-capacity-reservations-first, the fleet uses unused Capacity Reservations to fulfill On-Demand capacity up to the target On-Demand capacity. If multiple instance pools have unused Capacity Reservations, the On-Demand allocation strategy (lowest-price or prioritized) is applied. If the number of unused Capacity Reservations is less than the On-Demand target capacity, the remaining On-Demand target capacity is launched according to the On-Demand allocation strategy (lowest-price or prioritized).

If you do not specify a value, the fleet fulfils the On-Demand capacity according to the chosen On-Demand allocation strategy.

', 'CapacityReservationOptionsRequest$UsageStrategy' => '

Indicates whether to use unused Capacity Reservations for fulfilling On-Demand capacity.

If you specify use-capacity-reservations-first, the fleet uses unused Capacity Reservations to fulfill On-Demand capacity up to the target On-Demand capacity. If multiple instance pools have unused Capacity Reservations, the On-Demand allocation strategy (lowest-price or prioritized) is applied. If the number of unused Capacity Reservations is less than the On-Demand target capacity, the remaining On-Demand target capacity is launched according to the On-Demand allocation strategy (lowest-price or prioritized).

If you do not specify a value, the fleet fulfils the On-Demand capacity according to the chosen On-Demand allocation strategy.

', ], ], 'FleetData' => [ 'base' => '

Describes an EC2 Fleet.

', 'refs' => [ 'FleetSet$member' => NULL, ], ], 'FleetEventType' => [ 'base' => NULL, 'refs' => [ 'DescribeFleetHistoryRequest$EventType' => '

The type of events to describe. By default, all events are described.

', 'HistoryRecordEntry$EventType' => '

The event type.

', ], ], 'FleetExcessCapacityTerminationPolicy' => [ 'base' => NULL, 'refs' => [ 'CreateFleetRequest$ExcessCapacityTerminationPolicy' => '

Indicates whether running instances should be terminated if the total target capacity of the EC2 Fleet is decreased below the current size of the EC2 Fleet.

Supported only for fleets of type maintain.

', 'FleetData$ExcessCapacityTerminationPolicy' => '

Indicates whether running instances should be terminated if the target capacity of the EC2 Fleet is decreased below the current size of the EC2 Fleet.

Supported only for fleets of type maintain.

', 'ModifyFleetRequest$ExcessCapacityTerminationPolicy' => '

Indicates whether running instances should be terminated if the total target capacity of the EC2 Fleet is decreased below the current size of the EC2 Fleet.

Supported only for fleets of type maintain.

', ], ], 'FleetId' => [ 'base' => NULL, 'refs' => [ 'CreateFleetResult$FleetId' => '

The ID of the EC2 Fleet.

', 'DeleteFleetErrorItem$FleetId' => '

The ID of the EC2 Fleet.

', 'DeleteFleetSuccessItem$FleetId' => '

The ID of the EC2 Fleet.

', 'DescribeFleetHistoryRequest$FleetId' => '

The ID of the EC2 Fleet.

', 'DescribeFleetHistoryResult$FleetId' => '

The ID of the EC Fleet.

', 'DescribeFleetInstancesRequest$FleetId' => '

The ID of the EC2 Fleet.

', 'DescribeFleetInstancesResult$FleetId' => '

The ID of the EC2 Fleet.

', 'FleetData$FleetId' => '

The ID of the EC2 Fleet.

', 'FleetIdSet$member' => NULL, 'ModifyFleetRequest$FleetId' => '

The ID of the EC2 Fleet.

', ], ], 'FleetIdSet' => [ 'base' => NULL, 'refs' => [ 'DeleteFleetsRequest$FleetIds' => '

The IDs of the EC2 Fleets.

', 'DescribeFleetsRequest$FleetIds' => '

The IDs of the EC2 Fleets.

If a fleet is of type instant, you must specify the fleet ID, otherwise it does not appear in the response.

', ], ], 'FleetInstanceMatchCriteria' => [ 'base' => NULL, 'refs' => [ 'CapacityReservationFleet$InstanceMatchCriteria' => '

Indicates the type of instance launches that the Capacity Reservation Fleet accepts. All Capacity Reservations in the Fleet inherit this instance matching criteria.

Currently, Capacity Reservation Fleets support open instance matching criteria only. This means that instances that have matching attributes (instance type, platform, and Availability Zone) run in the Capacity Reservations automatically. Instances do not need to explicitly target a Capacity Reservation Fleet to use its reserved capacity.

', 'CreateCapacityReservationFleetRequest$InstanceMatchCriteria' => '

Indicates the type of instance launches that the Capacity Reservation Fleet accepts. All Capacity Reservations in the Fleet inherit this instance matching criteria.

Currently, Capacity Reservation Fleets support open instance matching criteria only. This means that instances that have matching attributes (instance type, platform, and Availability Zone) run in the Capacity Reservations automatically. Instances do not need to explicitly target a Capacity Reservation Fleet to use its reserved capacity.

', 'CreateCapacityReservationFleetResult$InstanceMatchCriteria' => '

The instance matching criteria for the Capacity Reservation Fleet.

', ], ], 'FleetLaunchTemplateConfig' => [ 'base' => '

Describes a launch template and overrides.

', 'refs' => [ 'FleetLaunchTemplateConfigList$member' => NULL, ], ], 'FleetLaunchTemplateConfigList' => [ 'base' => NULL, 'refs' => [ 'FleetData$LaunchTemplateConfigs' => '

The launch template and overrides.

', ], ], 'FleetLaunchTemplateConfigListRequest' => [ 'base' => NULL, 'refs' => [ 'CreateFleetRequest$LaunchTemplateConfigs' => '

The configuration for the EC2 Fleet.

', 'ModifyFleetRequest$LaunchTemplateConfigs' => '

The launch template and overrides.

', ], ], 'FleetLaunchTemplateConfigRequest' => [ 'base' => '

Describes a launch template and overrides.

', 'refs' => [ 'FleetLaunchTemplateConfigListRequest$member' => NULL, ], ], 'FleetLaunchTemplateOverrides' => [ 'base' => '

Describes overrides for a launch template.

', 'refs' => [ 'FleetLaunchTemplateOverridesList$member' => NULL, 'LaunchTemplateAndOverridesResponse$Overrides' => '

Any parameters that you specify override the same parameters in the launch template.

', ], ], 'FleetLaunchTemplateOverridesList' => [ 'base' => NULL, 'refs' => [ 'FleetLaunchTemplateConfig$Overrides' => '

Any parameters that you specify override the same parameters in the launch template.

', ], ], 'FleetLaunchTemplateOverridesListRequest' => [ 'base' => NULL, 'refs' => [ 'FleetLaunchTemplateConfigRequest$Overrides' => '

Any parameters that you specify override the same parameters in the launch template.

For fleets of type request and maintain, a maximum of 300 items is allowed across all launch templates.

', ], ], 'FleetLaunchTemplateOverridesRequest' => [ 'base' => '

Describes overrides for a launch template.

', 'refs' => [ 'FleetLaunchTemplateOverridesListRequest$member' => NULL, ], ], 'FleetLaunchTemplateSpecification' => [ 'base' => '

The Amazon EC2 launch template that can be used by a Spot Fleet to configure Amazon EC2 instances. You must specify either the ID or name of the launch template in the request, but not both.

For information about launch templates, see Launch an instance from a launch template in the Amazon EC2 User Guide.

', 'refs' => [ 'FleetLaunchTemplateConfig$LaunchTemplateSpecification' => '

The launch template.

', 'LaunchTemplateAndOverridesResponse$LaunchTemplateSpecification' => '

The launch template.

', 'LaunchTemplateConfig$LaunchTemplateSpecification' => '

The launch template to use. Make sure that the launch template does not contain the NetworkInterfaceId parameter because you can\'t specify a network interface ID in a Spot Fleet.

', ], ], 'FleetLaunchTemplateSpecificationRequest' => [ 'base' => '

The Amazon EC2 launch template that can be used by an EC2 Fleet to configure Amazon EC2 instances. You must specify either the ID or name of the launch template in the request, but not both.

For information about launch templates, see Launch an instance from a launch template in the Amazon EC2 User Guide.

', 'refs' => [ 'FleetLaunchTemplateConfigRequest$LaunchTemplateSpecification' => '

The launch template to use. You must specify either the launch template ID or launch template name in the request.

', ], ], 'FleetOnDemandAllocationStrategy' => [ 'base' => NULL, 'refs' => [ 'OnDemandOptions$AllocationStrategy' => '

The strategy that determines the order of the launch template overrides to use in fulfilling On-Demand capacity.

lowest-price - EC2 Fleet uses price to determine the order, launching the lowest price first.

prioritized - EC2 Fleet uses the priority that you assigned to each launch template override, launching the highest priority first.

Default: lowest-price

', 'OnDemandOptionsRequest$AllocationStrategy' => '

The strategy that determines the order of the launch template overrides to use in fulfilling On-Demand capacity.

lowest-price - EC2 Fleet uses price to determine the order, launching the lowest price first.

prioritized - EC2 Fleet uses the priority that you assigned to each launch template override, launching the highest priority first.

Default: lowest-price

', ], ], 'FleetReplacementStrategy' => [ 'base' => NULL, 'refs' => [ 'FleetSpotCapacityRebalance$ReplacementStrategy' => '

The replacement strategy to use. Only available for fleets of type maintain.

launch - EC2 Fleet launches a new replacement Spot Instance when a rebalance notification is emitted for an existing Spot Instance in the fleet. EC2 Fleet does not terminate the instances that receive a rebalance notification. You can terminate the old instances, or you can leave them running. You are charged for all instances while they are running.

launch-before-terminate - EC2 Fleet launches a new replacement Spot Instance when a rebalance notification is emitted for an existing Spot Instance in the fleet, and then, after a delay that you specify (in TerminationDelay), terminates the instances that received a rebalance notification.

', 'FleetSpotCapacityRebalanceRequest$ReplacementStrategy' => '

The replacement strategy to use. Only available for fleets of type maintain.

launch - EC2 Fleet launches a replacement Spot Instance when a rebalance notification is emitted for an existing Spot Instance in the fleet. EC2 Fleet does not terminate the instances that receive a rebalance notification. You can terminate the old instances, or you can leave them running. You are charged for all instances while they are running.

launch-before-terminate - EC2 Fleet launches a replacement Spot Instance when a rebalance notification is emitted for an existing Spot Instance in the fleet, and then, after a delay that you specify (in TerminationDelay), terminates the instances that received a rebalance notification.

', ], ], 'FleetSet' => [ 'base' => NULL, 'refs' => [ 'DescribeFleetsResult$Fleets' => '

Information about the EC2 Fleets.

', ], ], 'FleetSpotCapacityRebalance' => [ 'base' => '

The strategy to use when Amazon EC2 emits a signal that your Spot Instance is at an elevated risk of being interrupted.

', 'refs' => [ 'FleetSpotMaintenanceStrategies$CapacityRebalance' => '

The strategy to use when Amazon EC2 emits a signal that your Spot Instance is at an elevated risk of being interrupted.

', ], ], 'FleetSpotCapacityRebalanceRequest' => [ 'base' => '

The Spot Instance replacement strategy to use when Amazon EC2 emits a rebalance notification signal that your Spot Instance is at an elevated risk of being interrupted. For more information, see Capacity rebalancing in the Amazon EC2 User Guide.

', 'refs' => [ 'FleetSpotMaintenanceStrategiesRequest$CapacityRebalance' => '

The strategy to use when Amazon EC2 emits a signal that your Spot Instance is at an elevated risk of being interrupted.

', ], ], 'FleetSpotMaintenanceStrategies' => [ 'base' => '

The strategies for managing your Spot Instances that are at an elevated risk of being interrupted.

', 'refs' => [ 'SpotOptions$MaintenanceStrategies' => '

The strategies for managing your workloads on your Spot Instances that will be interrupted. Currently only the capacity rebalance strategy is available.

', ], ], 'FleetSpotMaintenanceStrategiesRequest' => [ 'base' => '

The strategies for managing your Spot Instances that are at an elevated risk of being interrupted.

', 'refs' => [ 'SpotOptionsRequest$MaintenanceStrategies' => '

The strategies for managing your Spot Instances that are at an elevated risk of being interrupted.

', ], ], 'FleetStateCode' => [ 'base' => NULL, 'refs' => [ 'DeleteFleetSuccessItem$CurrentFleetState' => '

The current state of the EC2 Fleet.

', 'DeleteFleetSuccessItem$PreviousFleetState' => '

The previous state of the EC2 Fleet.

', 'FleetData$FleetState' => '

The state of the EC2 Fleet.

', ], ], 'FleetType' => [ 'base' => NULL, 'refs' => [ 'CreateFleetRequest$Type' => '

The fleet type. The default value is maintain.

  • maintain - The EC2 Fleet places an asynchronous request for your desired capacity, and continues to maintain your desired Spot capacity by replenishing interrupted Spot Instances.

  • request - The EC2 Fleet places an asynchronous one-time request for your desired capacity, but does submit Spot requests in alternative capacity pools if Spot capacity is unavailable, and does not maintain Spot capacity if Spot Instances are interrupted.

  • instant - The EC2 Fleet places a synchronous one-time request for your desired capacity, and returns errors for any instances that could not be launched.

For more information, see EC2 Fleet request types in the Amazon EC2 User Guide.

', 'FleetData$Type' => '

The type of request. Indicates whether the EC2 Fleet only requests the target capacity, or also attempts to maintain it. If you request a certain target capacity, EC2 Fleet only places the required requests; it does not attempt to replenish instances if capacity is diminished, and it does not submit requests in alternative capacity pools if capacity is unavailable. To maintain a certain target capacity, EC2 Fleet places the required requests to meet this target capacity. It also automatically replenishes any interrupted Spot Instances. Default: maintain.

', 'SpotFleetRequestConfigData$Type' => '

The type of request. Indicates whether the Spot Fleet only requests the target capacity or also attempts to maintain it. When this value is request, the Spot Fleet only places the required requests. It does not attempt to replenish Spot Instances if capacity is diminished, nor does it submit requests in alternative Spot pools if capacity is not available. When this value is maintain, the Spot Fleet maintains the target capacity. The Spot Fleet places the required requests to meet capacity and automatically replenishes any interrupted instances. Default: maintain. instant is listed but is not used by Spot Fleet.

', ], ], 'Float' => [ 'base' => NULL, 'refs' => [ 'MetricPoint$Value' => NULL, 'ReservedInstances$FixedPrice' => '

The purchase price of the Reserved Instance.

', 'ReservedInstances$UsagePrice' => '

The usage price of the Reserved Instance, per hour.

', 'ReservedInstancesOffering$FixedPrice' => '

The purchase price of the Reserved Instance.

', 'ReservedInstancesOffering$UsagePrice' => '

The usage price of the Reserved Instance, per hour.

', ], ], 'FlowLog' => [ 'base' => '

Describes a flow log.

', 'refs' => [ 'FlowLogSet$member' => NULL, ], ], 'FlowLogIdList' => [ 'base' => NULL, 'refs' => [ 'DeleteFlowLogsRequest$FlowLogIds' => '

One or more flow log IDs.

Constraint: Maximum of 1000 flow log IDs.

', 'DescribeFlowLogsRequest$FlowLogIds' => '

One or more flow log IDs.

Constraint: Maximum of 1000 flow log IDs.

', ], ], 'FlowLogResourceId' => [ 'base' => NULL, 'refs' => [ 'FlowLogResourceIds$member' => NULL, ], ], 'FlowLogResourceIds' => [ 'base' => NULL, 'refs' => [ 'CreateFlowLogsRequest$ResourceIds' => '

The IDs of the resources to monitor. For example, if the resource type is VPC, specify the IDs of the VPCs.

Constraints: Maximum of 25 for transit gateway resource types. Maximum of 1000 for the other resource types.

', ], ], 'FlowLogSet' => [ 'base' => NULL, 'refs' => [ 'DescribeFlowLogsResult$FlowLogs' => '

Information about the flow logs.

', ], ], 'FlowLogsResourceType' => [ 'base' => NULL, 'refs' => [ 'CreateFlowLogsRequest$ResourceType' => '

The type of resource to monitor.

', ], ], 'FpgaDeviceCount' => [ 'base' => NULL, 'refs' => [ 'FpgaDeviceInfo$Count' => '

The count of FPGA accelerators for the instance type.

', ], ], 'FpgaDeviceInfo' => [ 'base' => '

Describes the FPGA accelerator for the instance type.

', 'refs' => [ 'FpgaDeviceInfoList$member' => NULL, ], ], 'FpgaDeviceInfoList' => [ 'base' => NULL, 'refs' => [ 'FpgaInfo$Fpgas' => '

Describes the FPGAs for the instance type.

', ], ], 'FpgaDeviceManufacturerName' => [ 'base' => NULL, 'refs' => [ 'FpgaDeviceInfo$Manufacturer' => '

The manufacturer of the FPGA accelerator.

', ], ], 'FpgaDeviceMemoryInfo' => [ 'base' => '

Describes the memory for the FPGA accelerator for the instance type.

', 'refs' => [ 'FpgaDeviceInfo$MemoryInfo' => '

Describes the memory for the FPGA accelerator for the instance type.

', ], ], 'FpgaDeviceMemorySize' => [ 'base' => NULL, 'refs' => [ 'FpgaDeviceMemoryInfo$SizeInMiB' => '

The size of the memory available to the FPGA accelerator, in MiB.

', ], ], 'FpgaDeviceName' => [ 'base' => NULL, 'refs' => [ 'FpgaDeviceInfo$Name' => '

The name of the FPGA accelerator.

', ], ], 'FpgaImage' => [ 'base' => '

Describes an Amazon FPGA image (AFI).

', 'refs' => [ 'FpgaImageList$member' => NULL, ], ], 'FpgaImageAttribute' => [ 'base' => '

Describes an Amazon FPGA image (AFI) attribute.

', 'refs' => [ 'DescribeFpgaImageAttributeResult$FpgaImageAttribute' => '

Information about the attribute.

', 'ModifyFpgaImageAttributeResult$FpgaImageAttribute' => '

Information about the attribute.

', ], ], 'FpgaImageAttributeName' => [ 'base' => NULL, 'refs' => [ 'DescribeFpgaImageAttributeRequest$Attribute' => '

The AFI attribute.

', 'ModifyFpgaImageAttributeRequest$Attribute' => '

The name of the attribute.

', ], ], 'FpgaImageId' => [ 'base' => NULL, 'refs' => [ 'DeleteFpgaImageRequest$FpgaImageId' => '

The ID of the AFI.

', 'DescribeFpgaImageAttributeRequest$FpgaImageId' => '

The ID of the AFI.

', 'FpgaImageIdList$member' => NULL, 'ModifyFpgaImageAttributeRequest$FpgaImageId' => '

The ID of the AFI.

', 'ResetFpgaImageAttributeRequest$FpgaImageId' => '

The ID of the AFI.

', ], ], 'FpgaImageIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeFpgaImagesRequest$FpgaImageIds' => '

The AFI IDs.

', ], ], 'FpgaImageList' => [ 'base' => NULL, 'refs' => [ 'DescribeFpgaImagesResult$FpgaImages' => '

Information about the FPGA images.

', ], ], 'FpgaImageState' => [ 'base' => '

Describes the state of the bitstream generation process for an Amazon FPGA image (AFI).

', 'refs' => [ 'FpgaImage$State' => '

Information about the state of the AFI.

', ], ], 'FpgaImageStateCode' => [ 'base' => NULL, 'refs' => [ 'FpgaImageState$Code' => '

The state. The following are the possible values:

  • pending - AFI bitstream generation is in progress.

  • available - The AFI is available for use.

  • failed - AFI bitstream generation failed.

  • unavailable - The AFI is no longer available for use.

', ], ], 'FpgaInfo' => [ 'base' => '

Describes the FPGAs for the instance type.

', 'refs' => [ 'InstanceTypeInfo$FpgaInfo' => '

Describes the FPGA accelerator settings for the instance type.

', ], ], 'FreeTierEligibleFlag' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$FreeTierEligible' => '

Indicates whether the instance type is eligible for the free tier.

', ], ], 'GVCDMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetVpnConnectionDeviceTypesRequest$MaxResults' => '

The maximum number of results returned by GetVpnConnectionDeviceTypes in paginated output. When this parameter is used, GetVpnConnectionDeviceTypes only returns MaxResults results in a single page along with a NextToken response element. The remaining results of the initial request can be seen by sending another GetVpnConnectionDeviceTypes request with the returned NextToken value. This value can be between 200 and 1000. If this parameter is not used, then GetVpnConnectionDeviceTypes returns all results.

', ], ], 'GatewayAssociationState' => [ 'base' => NULL, 'refs' => [ 'VpnConnection$GatewayAssociationState' => '

The current state of the gateway association.

', ], ], 'GatewayType' => [ 'base' => NULL, 'refs' => [ 'CreateCustomerGatewayRequest$Type' => '

The type of VPN connection that this customer gateway supports (ipsec.1).

', 'CreateVpnGatewayRequest$Type' => '

The type of VPN connection this virtual private gateway supports.

', 'VpnConnection$Type' => '

The type of VPN connection.

', 'VpnGateway$Type' => '

The type of VPN connection the virtual private gateway supports.

', ], ], 'GetAssociatedEnclaveCertificateIamRolesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetAssociatedEnclaveCertificateIamRolesResult' => [ 'base' => NULL, 'refs' => [], ], 'GetAssociatedIpv6PoolCidrsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetAssociatedIpv6PoolCidrsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetAwsNetworkPerformanceDataRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetAwsNetworkPerformanceDataResult' => [ 'base' => NULL, 'refs' => [], ], 'GetCapacityReservationUsageRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetCapacityReservationUsageRequestMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetCapacityReservationUsageRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'GetCapacityReservationUsageResult' => [ 'base' => NULL, 'refs' => [], ], 'GetCoipPoolUsageRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetCoipPoolUsageResult' => [ 'base' => NULL, 'refs' => [], ], 'GetConsoleOutputRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetConsoleOutputResult' => [ 'base' => NULL, 'refs' => [], ], 'GetConsoleScreenshotRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetConsoleScreenshotResult' => [ 'base' => NULL, 'refs' => [], ], 'GetDefaultCreditSpecificationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetDefaultCreditSpecificationResult' => [ 'base' => NULL, 'refs' => [], ], 'GetEbsDefaultKmsKeyIdRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetEbsDefaultKmsKeyIdResult' => [ 'base' => NULL, 'refs' => [], ], 'GetEbsEncryptionByDefaultRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetEbsEncryptionByDefaultResult' => [ 'base' => NULL, 'refs' => [], ], 'GetFlowLogsIntegrationTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetFlowLogsIntegrationTemplateResult' => [ 'base' => NULL, 'refs' => [], ], 'GetGroupsForCapacityReservationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetGroupsForCapacityReservationRequestMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetGroupsForCapacityReservationRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'GetGroupsForCapacityReservationResult' => [ 'base' => NULL, 'refs' => [], ], 'GetHostReservationPurchasePreviewRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetHostReservationPurchasePreviewResult' => [ 'base' => NULL, 'refs' => [], ], 'GetImageBlockPublicAccessStateRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetImageBlockPublicAccessStateResult' => [ 'base' => NULL, 'refs' => [], ], 'GetInstanceTypesFromInstanceRequirementsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetInstanceTypesFromInstanceRequirementsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetInstanceUefiDataRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetInstanceUefiDataResult' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamAddressHistoryRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamAddressHistoryResult' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamDiscoveredAccountsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamDiscoveredAccountsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamDiscoveredPublicAddressesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamDiscoveredPublicAddressesResult' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamDiscoveredResourceCidrsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamDiscoveredResourceCidrsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamPoolAllocationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetIpamPoolAllocationsRequest$MaxResults' => '

The maximum number of results you would like returned per page.

', ], ], 'GetIpamPoolAllocationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamPoolAllocationsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamPoolCidrsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamPoolCidrsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamResourceCidrsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIpamResourceCidrsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetLaunchTemplateDataRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetLaunchTemplateDataResult' => [ 'base' => NULL, 'refs' => [], ], 'GetManagedPrefixListAssociationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetManagedPrefixListAssociationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'GetManagedPrefixListAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetManagedPrefixListAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetManagedPrefixListEntriesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetManagedPrefixListEntriesResult' => [ 'base' => NULL, 'refs' => [], ], 'GetNetworkInsightsAccessScopeAnalysisFindingsMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetNetworkInsightsAccessScopeAnalysisFindingsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'GetNetworkInsightsAccessScopeAnalysisFindingsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetNetworkInsightsAccessScopeAnalysisFindingsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetNetworkInsightsAccessScopeContentRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetNetworkInsightsAccessScopeContentResult' => [ 'base' => NULL, 'refs' => [], ], 'GetPasswordDataRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetPasswordDataResult' => [ 'base' => NULL, 'refs' => [], ], 'GetReservedInstancesExchangeQuoteRequest' => [ 'base' => '

Contains the parameters for GetReservedInstanceExchangeQuote.

', 'refs' => [], ], 'GetReservedInstancesExchangeQuoteResult' => [ 'base' => '

Contains the output of GetReservedInstancesExchangeQuote.

', 'refs' => [], ], 'GetSecurityGroupsForVpcRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSecurityGroupsForVpcRequestMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetSecurityGroupsForVpcRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'GetSecurityGroupsForVpcResult' => [ 'base' => NULL, 'refs' => [], ], 'GetSerialConsoleAccessStatusRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSerialConsoleAccessStatusResult' => [ 'base' => NULL, 'refs' => [], ], 'GetSnapshotBlockPublicAccessStateRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSnapshotBlockPublicAccessStateResult' => [ 'base' => NULL, 'refs' => [], ], 'GetSpotPlacementScoresRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSpotPlacementScoresResult' => [ 'base' => NULL, 'refs' => [], ], 'GetSubnetCidrReservationsMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetSubnetCidrReservationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'GetSubnetCidrReservationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSubnetCidrReservationsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayAttachmentPropagationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayAttachmentPropagationsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayMulticastDomainAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayMulticastDomainAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayPolicyTableAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayPolicyTableAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayPolicyTableEntriesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayPolicyTableEntriesResult' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayPrefixListReferencesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayPrefixListReferencesResult' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayRouteTableAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayRouteTableAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayRouteTablePropagationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTransitGatewayRouteTablePropagationsResult' => [ 'base' => NULL, 'refs' => [], ], 'GetVerifiedAccessEndpointPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetVerifiedAccessEndpointPolicyResult' => [ 'base' => NULL, 'refs' => [], ], 'GetVerifiedAccessGroupPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetVerifiedAccessGroupPolicyResult' => [ 'base' => NULL, 'refs' => [], ], 'GetVpnConnectionDeviceSampleConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetVpnConnectionDeviceSampleConfigurationResult' => [ 'base' => NULL, 'refs' => [], ], 'GetVpnConnectionDeviceTypesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetVpnConnectionDeviceTypesResult' => [ 'base' => NULL, 'refs' => [], ], 'GetVpnTunnelReplacementStatusRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetVpnTunnelReplacementStatusResult' => [ 'base' => NULL, 'refs' => [], ], 'GpuDeviceCount' => [ 'base' => NULL, 'refs' => [ 'GpuDeviceInfo$Count' => '

The number of GPUs for the instance type.

', ], ], 'GpuDeviceInfo' => [ 'base' => '

Describes the GPU accelerators for the instance type.

', 'refs' => [ 'GpuDeviceInfoList$member' => NULL, ], ], 'GpuDeviceInfoList' => [ 'base' => NULL, 'refs' => [ 'GpuInfo$Gpus' => '

Describes the GPU accelerators for the instance type.

', ], ], 'GpuDeviceManufacturerName' => [ 'base' => NULL, 'refs' => [ 'GpuDeviceInfo$Manufacturer' => '

The manufacturer of the GPU accelerator.

', ], ], 'GpuDeviceMemoryInfo' => [ 'base' => '

Describes the memory available to the GPU accelerator.

', 'refs' => [ 'GpuDeviceInfo$MemoryInfo' => '

Describes the memory available to the GPU accelerator.

', ], ], 'GpuDeviceMemorySize' => [ 'base' => NULL, 'refs' => [ 'GpuDeviceMemoryInfo$SizeInMiB' => '

The size of the memory available to the GPU accelerator, in MiB.

', ], ], 'GpuDeviceName' => [ 'base' => NULL, 'refs' => [ 'GpuDeviceInfo$Name' => '

The name of the GPU accelerator.

', ], ], 'GpuInfo' => [ 'base' => '

Describes the GPU accelerators for the instance type.

', 'refs' => [ 'InstanceTypeInfo$GpuInfo' => '

Describes the GPU accelerator settings for the instance type.

', ], ], 'GroupIdStringList' => [ 'base' => NULL, 'refs' => [ 'AttachClassicLinkVpcRequest$Groups' => '

The IDs of the security groups. You cannot specify security groups from a different VPC.

', 'DescribeSecurityGroupsRequest$GroupIds' => '

The IDs of the security groups. Required for security groups in a nondefault VPC.

Default: Describes all of your security groups.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$Groups' => '

The IDs of one or more security groups.

', 'ModifyInstanceAttributeRequest$Groups' => '

Replaces the security groups of the instance with the specified security groups. You must specify the ID of at least one security group, even if it\'s just the default security group for the VPC.

', ], ], 'GroupIdentifier' => [ 'base' => '

Describes a security group.

', 'refs' => [ 'GroupIdentifierList$member' => NULL, ], ], 'GroupIdentifierList' => [ 'base' => NULL, 'refs' => [ 'ClassicLinkInstance$Groups' => '

The security groups.

', 'DescribeNetworkInterfaceAttributeResult$Groups' => '

The security groups associated with the network interface.

', 'Instance$SecurityGroups' => '

The security groups for the instance.

', 'InstanceAttribute$Groups' => '

The security groups associated with the instance.

', 'InstanceNetworkInterface$Groups' => '

The security groups.

', 'LaunchSpecification$SecurityGroups' => '

The IDs of the security groups.

', 'NetworkInterface$Groups' => '

Any security groups for the network interface.

', 'Reservation$Groups' => '

Not supported.

', 'SpotFleetLaunchSpecification$SecurityGroups' => '

The security groups.

', ], ], 'GroupIdentifierSet' => [ 'base' => NULL, 'refs' => [ 'VpcEndpoint$Groups' => '

(Interface endpoint) Information about the security groups that are associated with the network interface.

', ], ], 'GroupIds' => [ 'base' => NULL, 'refs' => [ 'DescribeSecurityGroupReferencesRequest$GroupId' => '

The IDs of the security groups in your account.

', ], ], 'GroupNameStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeSecurityGroupsRequest$GroupNames' => '

[Default VPC] The names of the security groups. You can specify either the security group name or the security group ID.

Default: Describes all of your security groups.

', 'ModifySnapshotAttributeRequest$GroupNames' => '

The group to modify for the snapshot.

', ], ], 'HibernationFlag' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$HibernationSupported' => '

Indicates whether On-Demand hibernation is supported.

', ], ], 'HibernationOptions' => [ 'base' => '

Indicates whether your instance is configured for hibernation. This parameter is valid only if the instance meets the hibernation prerequisites. For more information, see Hibernate your instance in the Amazon EC2 User Guide.

', 'refs' => [ 'Instance$HibernationOptions' => '

Indicates whether the instance is enabled for hibernation.

', ], ], 'HibernationOptionsRequest' => [ 'base' => '

Indicates whether your instance is configured for hibernation. This parameter is valid only if the instance meets the hibernation prerequisites. For more information, see Hibernate your instance in the Amazon EC2 User Guide.

', 'refs' => [ 'RunInstancesRequest$HibernationOptions' => '

Indicates whether an instance is enabled for hibernation. This parameter is valid only if the instance meets the hibernation prerequisites. For more information, see Hibernate your instance in the Amazon EC2 User Guide.

You can\'t enable hibernation and Amazon Web Services Nitro Enclaves on the same instance.

', ], ], 'HistoryRecord' => [ 'base' => '

Describes an event in the history of the Spot Fleet request.

', 'refs' => [ 'HistoryRecords$member' => NULL, ], ], 'HistoryRecordEntry' => [ 'base' => '

Describes an event in the history of an EC2 Fleet.

', 'refs' => [ 'HistoryRecordSet$member' => NULL, ], ], 'HistoryRecordSet' => [ 'base' => NULL, 'refs' => [ 'DescribeFleetHistoryResult$HistoryRecords' => '

Information about the events in the history of the EC2 Fleet.

', ], ], 'HistoryRecords' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotFleetRequestHistoryResponse$HistoryRecords' => '

Information about the events in the history of the Spot Fleet request.

', ], ], 'Host' => [ 'base' => '

Describes the properties of the Dedicated Host.

', 'refs' => [ 'HostList$member' => NULL, ], ], 'HostInstance' => [ 'base' => '

Describes an instance running on a Dedicated Host.

', 'refs' => [ 'HostInstanceList$member' => NULL, ], ], 'HostInstanceList' => [ 'base' => NULL, 'refs' => [ 'Host$Instances' => '

The IDs and instance type that are currently running on the Dedicated Host.

', ], ], 'HostList' => [ 'base' => NULL, 'refs' => [ 'DescribeHostsResult$Hosts' => '

Information about the Dedicated Hosts.

', ], ], 'HostMaintenance' => [ 'base' => NULL, 'refs' => [ 'AllocateHostsRequest$HostMaintenance' => '

Indicates whether to enable or disable host maintenance for the Dedicated Host. For more information, see Host maintenance in the Amazon EC2 User Guide.

', 'Host$HostMaintenance' => '

Indicates whether host maintenance is enabled or disabled for the Dedicated Host.

', 'ModifyHostsRequest$HostMaintenance' => '

Indicates whether to enable or disable host maintenance for the Dedicated Host. For more information, see Host maintenance in the Amazon EC2 User Guide.

', ], ], 'HostOffering' => [ 'base' => '

Details about the Dedicated Host Reservation offering.

', 'refs' => [ 'HostOfferingSet$member' => NULL, ], ], 'HostOfferingSet' => [ 'base' => NULL, 'refs' => [ 'DescribeHostReservationOfferingsResult$OfferingSet' => '

Information about the offerings.

', ], ], 'HostProperties' => [ 'base' => '

Describes the properties of a Dedicated Host.

', 'refs' => [ 'Host$HostProperties' => '

The hardware specifications of the Dedicated Host.

', ], ], 'HostRecovery' => [ 'base' => NULL, 'refs' => [ 'AllocateHostsRequest$HostRecovery' => '

Indicates whether to enable or disable host recovery for the Dedicated Host. Host recovery is disabled by default. For more information, see Host recovery in the Amazon EC2 User Guide.

Default: off

', 'Host$HostRecovery' => '

Indicates whether host recovery is enabled or disabled for the Dedicated Host.

', 'ModifyHostsRequest$HostRecovery' => '

Indicates whether to enable or disable host recovery for the Dedicated Host. For more information, see Host recovery in the Amazon EC2 User Guide.

', ], ], 'HostReservation' => [ 'base' => '

Details about the Dedicated Host Reservation and associated Dedicated Hosts.

', 'refs' => [ 'HostReservationSet$member' => NULL, ], ], 'HostReservationId' => [ 'base' => NULL, 'refs' => [ 'HostReservation$HostReservationId' => '

The ID of the reservation that specifies the associated Dedicated Hosts.

', 'HostReservationIdSet$member' => NULL, 'Purchase$HostReservationId' => '

The ID of the reservation.

', ], ], 'HostReservationIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeHostReservationsRequest$HostReservationIdSet' => '

The host reservation IDs.

', ], ], 'HostReservationSet' => [ 'base' => NULL, 'refs' => [ 'DescribeHostReservationsResult$HostReservationSet' => '

Details about the reservation\'s configuration.

', ], ], 'HostTenancy' => [ 'base' => NULL, 'refs' => [ 'ModifyInstancePlacementRequest$Tenancy' => '

The tenancy for the instance.

For T3 instances, you must launch the instance on a Dedicated Host to use a tenancy of host. You can\'t change the tenancy from host to dedicated or default. Attempting to make one of these unsupported tenancy changes results in an InvalidRequest error code.

', ], ], 'HostnameType' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplatePrivateDnsNameOptions$HostnameType' => '

The type of hostname to assign to an instance.

', 'LaunchTemplatePrivateDnsNameOptionsRequest$HostnameType' => '

The type of hostname for Amazon EC2 instances. For IPv4 only subnets, an instance DNS name must be based on the instance IPv4 address. For IPv6 native subnets, an instance DNS name must be based on the instance ID. For dual-stack subnets, you can specify whether DNS names use the instance IPv4 address or the instance ID.

', 'ModifyPrivateDnsNameOptionsRequest$PrivateDnsHostnameType' => '

The type of hostname for EC2 instances. For IPv4 only subnets, an instance DNS name must be based on the instance IPv4 address. For IPv6 only subnets, an instance DNS name must be based on the instance ID. For dual-stack subnets, you can specify whether DNS names use the instance IPv4 address or the instance ID.

', 'ModifySubnetAttributeRequest$PrivateDnsHostnameTypeOnLaunch' => '

The type of hostname to assign to instances in the subnet at launch. For IPv4-only and dual-stack (IPv4 and IPv6) subnets, an instance DNS name can be based on the instance IPv4 address (ip-name) or the instance ID (resource-name). For IPv6 only subnets, an instance DNS name must be based on the instance ID (resource-name).

', 'PrivateDnsNameOptionsOnLaunch$HostnameType' => '

The type of hostname for EC2 instances. For IPv4 only subnets, an instance DNS name must be based on the instance IPv4 address. For IPv6 only subnets, an instance DNS name must be based on the instance ID. For dual-stack subnets, you can specify whether DNS names use the instance IPv4 address or the instance ID.

', 'PrivateDnsNameOptionsRequest$HostnameType' => '

The type of hostname for EC2 instances. For IPv4 only subnets, an instance DNS name must be based on the instance IPv4 address. For IPv6 only subnets, an instance DNS name must be based on the instance ID. For dual-stack subnets, you can specify whether DNS names use the instance IPv4 address or the instance ID.

', 'PrivateDnsNameOptionsResponse$HostnameType' => '

The type of hostname to assign to an instance.

', ], ], 'Hour' => [ 'base' => NULL, 'refs' => [ 'InstanceEventWindowTimeRange$StartHour' => '

The hour when the time range begins.

', 'InstanceEventWindowTimeRange$EndHour' => '

The hour when the time range ends.

', 'InstanceEventWindowTimeRangeRequest$StartHour' => '

The hour when the time range begins.

', 'InstanceEventWindowTimeRangeRequest$EndHour' => '

The hour when the time range ends.

', ], ], 'HttpTokensState' => [ 'base' => NULL, 'refs' => [ 'InstanceMetadataOptionsRequest$HttpTokens' => '

Indicates whether IMDSv2 is required.

  • optional - IMDSv2 is optional. You can choose whether to send a session token in your instance metadata retrieval requests. If you retrieve IAM role credentials without a session token, you receive the IMDSv1 role credentials. If you retrieve IAM role credentials using a valid session token, you receive the IMDSv2 role credentials.

  • required - IMDSv2 is required. You must send a session token in your instance metadata retrieval requests. With this option, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available.

Default: If the value of ImdsSupport for the Amazon Machine Image (AMI) for your instance is v2.0, the default is required.

', 'InstanceMetadataOptionsResponse$HttpTokens' => '

Indicates whether IMDSv2 is required.

  • optional - IMDSv2 is optional. You can choose whether to send a session token in your instance metadata retrieval requests. If you retrieve IAM role credentials without a session token, you receive the IMDSv1 role credentials. If you retrieve IAM role credentials using a valid session token, you receive the IMDSv2 role credentials.

  • required - IMDSv2 is required. You must send a session token in your instance metadata retrieval requests. With this option, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available.

', 'ModifyInstanceMetadataOptionsRequest$HttpTokens' => '

Indicates whether IMDSv2 is required.

  • optional - IMDSv2 is optional. You can choose whether to send a session token in your instance metadata retrieval requests. If you retrieve IAM role credentials without a session token, you receive the IMDSv1 role credentials. If you retrieve IAM role credentials using a valid session token, you receive the IMDSv2 role credentials.

  • required - IMDSv2 is required. You must send a session token in your instance metadata retrieval requests. With this option, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available.

Default: If the value of ImdsSupport for the Amazon Machine Image (AMI) for your instance is v2.0, the default is required.

', ], ], 'HypervisorType' => [ 'base' => NULL, 'refs' => [ 'Image$Hypervisor' => '

The hypervisor type of the image. Only xen is supported. ovm is not supported.

', 'Instance$Hypervisor' => '

The hypervisor type of the instance. The value xen is used for both Xen and Nitro hypervisors.

', ], ], 'IKEVersionsList' => [ 'base' => NULL, 'refs' => [ 'TunnelOption$IkeVersions' => '

The IKE versions that are permitted for the VPN tunnel.

', ], ], 'IKEVersionsListValue' => [ 'base' => '

The internet key exchange (IKE) version permitted for the VPN tunnel.

', 'refs' => [ 'IKEVersionsList$member' => NULL, ], ], 'IKEVersionsRequestList' => [ 'base' => NULL, 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$IKEVersions' => '

The IKE versions that are permitted for the VPN tunnel.

Valid values: ikev1 | ikev2

', 'VpnTunnelOptionsSpecification$IKEVersions' => '

The IKE versions that are permitted for the VPN tunnel.

Valid values: ikev1 | ikev2

', ], ], 'IKEVersionsRequestListValue' => [ 'base' => '

The IKE version that is permitted for the VPN tunnel.

', 'refs' => [ 'IKEVersionsRequestList$member' => NULL, ], ], 'IamInstanceProfile' => [ 'base' => '

Describes an IAM instance profile.

', 'refs' => [ 'IamInstanceProfileAssociation$IamInstanceProfile' => '

The IAM instance profile.

', 'Instance$IamInstanceProfile' => '

The IAM instance profile associated with the instance, if applicable.

', ], ], 'IamInstanceProfileAssociation' => [ 'base' => '

Describes an association between an IAM instance profile and an instance.

', 'refs' => [ 'AssociateIamInstanceProfileResult$IamInstanceProfileAssociation' => '

Information about the IAM instance profile association.

', 'DisassociateIamInstanceProfileResult$IamInstanceProfileAssociation' => '

Information about the IAM instance profile association.

', 'IamInstanceProfileAssociationSet$member' => NULL, 'ReplaceIamInstanceProfileAssociationResult$IamInstanceProfileAssociation' => '

Information about the IAM instance profile association.

', ], ], 'IamInstanceProfileAssociationId' => [ 'base' => NULL, 'refs' => [ 'AssociationIdList$member' => NULL, 'DisassociateIamInstanceProfileRequest$AssociationId' => '

The ID of the IAM instance profile association.

', 'ReplaceIamInstanceProfileAssociationRequest$AssociationId' => '

The ID of the existing IAM instance profile association.

', ], ], 'IamInstanceProfileAssociationSet' => [ 'base' => NULL, 'refs' => [ 'DescribeIamInstanceProfileAssociationsResult$IamInstanceProfileAssociations' => '

Information about the IAM instance profile associations.

', ], ], 'IamInstanceProfileAssociationState' => [ 'base' => NULL, 'refs' => [ 'IamInstanceProfileAssociation$State' => '

The state of the association.

', ], ], 'IamInstanceProfileSpecification' => [ 'base' => '

Describes an IAM instance profile.

', 'refs' => [ 'AssociateIamInstanceProfileRequest$IamInstanceProfile' => '

The IAM instance profile.

', 'LaunchSpecification$IamInstanceProfile' => '

The IAM instance profile.

', 'ReplaceIamInstanceProfileAssociationRequest$IamInstanceProfile' => '

The IAM instance profile.

', 'RequestSpotLaunchSpecification$IamInstanceProfile' => '

The IAM instance profile.

', 'RunInstancesRequest$IamInstanceProfile' => '

The name or Amazon Resource Name (ARN) of an IAM instance profile.

', 'SpotFleetLaunchSpecification$IamInstanceProfile' => '

The IAM instance profile.

', ], ], 'IcmpTypeCode' => [ 'base' => '

Describes the ICMP type and code.

', 'refs' => [ 'CreateNetworkAclEntryRequest$IcmpTypeCode' => '

ICMP protocol: The ICMP or ICMPv6 type and code. Required if specifying protocol 1 (ICMP) or protocol 58 (ICMPv6) with an IPv6 CIDR block.

', 'NetworkAclEntry$IcmpTypeCode' => '

ICMP protocol: The ICMP type and code.

', 'ReplaceNetworkAclEntryRequest$IcmpTypeCode' => '

ICMP protocol: The ICMP or ICMPv6 type and code. Required if specifying protocol 1 (ICMP) or protocol 58 (ICMPv6) with an IPv6 CIDR block.

', ], ], 'IdFormat' => [ 'base' => '

Describes the ID format for a resource.

', 'refs' => [ 'IdFormatList$member' => NULL, ], ], 'IdFormatList' => [ 'base' => NULL, 'refs' => [ 'DescribeAggregateIdFormatResult$Statuses' => '

Information about each resource\'s ID format.

', 'DescribeIdFormatResult$Statuses' => '

Information about the ID format for the resource.

', 'DescribeIdentityIdFormatResult$Statuses' => '

Information about the ID format for the resources.

', 'PrincipalIdFormat$Statuses' => '

PrincipalIdFormatStatuses description

', ], ], 'Igmpv2SupportValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayMulticastDomainRequestOptions$Igmpv2Support' => '

Specify whether to enable Internet Group Management Protocol (IGMP) version 2 for the transit gateway multicast domain.

', 'TransitGatewayMulticastDomainOptions$Igmpv2Support' => '

Indicates whether Internet Group Management Protocol (IGMP) version 2 is turned on for the transit gateway multicast domain.

', ], ], 'Image' => [ 'base' => '

Describes an image.

', 'refs' => [ 'ImageList$member' => NULL, ], ], 'ImageAttribute' => [ 'base' => '

Describes an image attribute.

', 'refs' => [], ], 'ImageAttributeName' => [ 'base' => NULL, 'refs' => [ 'DescribeImageAttributeRequest$Attribute' => '

The AMI attribute.

Note: The blockDeviceMapping attribute is deprecated. Using this attribute returns the Client.AuthFailure error. To get information about the block device mappings for an AMI, use the DescribeImages action.

', ], ], 'ImageBlockPublicAccessDisabledState' => [ 'base' => NULL, 'refs' => [ 'DisableImageBlockPublicAccessResult$ImageBlockPublicAccessState' => '

Returns unblocked if the request succeeds; otherwise, it returns an error.

', ], ], 'ImageBlockPublicAccessEnabledState' => [ 'base' => NULL, 'refs' => [ 'EnableImageBlockPublicAccessRequest$ImageBlockPublicAccessState' => '

Specify block-new-sharing to enable block public access for AMIs at the account level in the specified Region. This will block any attempt to publicly share your AMIs in the specified Region.

', 'EnableImageBlockPublicAccessResult$ImageBlockPublicAccessState' => '

Returns block-new-sharing if the request succeeds; otherwise, it returns an error.

', ], ], 'ImageDiskContainer' => [ 'base' => '

Describes the disk container object for an import image task.

', 'refs' => [ 'ImageDiskContainerList$member' => NULL, ], ], 'ImageDiskContainerList' => [ 'base' => NULL, 'refs' => [ 'ImportImageRequest$DiskContainers' => '

Information about the disk containers.

', ], ], 'ImageId' => [ 'base' => NULL, 'refs' => [ 'CancelImageLaunchPermissionRequest$ImageId' => '

The ID of the AMI that was shared with your Amazon Web Services account.

', 'CreateReplaceRootVolumeTaskRequest$ImageId' => '

The ID of the AMI to use to restore the root volume. The specified AMI must have the same product code, billing information, architecture type, and virtualization type as that of the instance.

If you want to restore the replacement volume from a specific snapshot, or if you want to restore it to its launch state, omit this parameter.

', 'CreateStoreImageTaskRequest$ImageId' => '

The ID of the AMI.

', 'DeregisterImageRequest$ImageId' => '

The ID of the AMI.

', 'DescribeFastLaunchImagesSuccessItem$ImageId' => '

The image ID that identifies the Windows fast launch enabled image.

', 'DescribeImageAttributeRequest$ImageId' => '

The ID of the AMI.

', 'DisableFastLaunchRequest$ImageId' => '

Specify the ID of the image for which to disable Windows fast launch.

', 'DisableFastLaunchResult$ImageId' => '

The ID of the image for which Windows fast launch was disabled.

', 'DisableImageDeprecationRequest$ImageId' => '

The ID of the AMI.

', 'DisableImageRequest$ImageId' => '

The ID of the AMI.

', 'EnableFastLaunchRequest$ImageId' => '

Specify the ID of the image for which to enable Windows fast launch.

', 'EnableFastLaunchResult$ImageId' => '

The image ID that identifies the AMI for which Windows fast launch was enabled.

', 'EnableImageDeprecationRequest$ImageId' => '

The ID of the AMI.

', 'EnableImageRequest$ImageId' => '

The ID of the AMI.

', 'ExportImageRequest$ImageId' => '

The ID of the image.

', 'FastLaunchImageIdList$member' => NULL, 'FleetLaunchTemplateOverrides$ImageId' => '

The ID of the AMI. An AMI is required to launch an instance. This parameter is only available for fleets of type instant. For fleets of type maintain and request, you must specify the AMI ID in the launch template.

', 'FleetLaunchTemplateOverridesRequest$ImageId' => '

The ID of the AMI. An AMI is required to launch an instance. This parameter is only available for fleets of type instant. For fleets of type maintain and request, you must specify the AMI ID in the launch template.

', 'ImageIdList$member' => NULL, 'ImageIdStringList$member' => NULL, 'ModifyImageAttributeRequest$ImageId' => '

The ID of the AMI.

', 'ReplaceRootVolumeTask$ImageId' => '

The ID of the AMI used to create the replacement root volume.

', 'RequestLaunchTemplateData$ImageId' => '

The ID of the AMI. Alternatively, you can specify a Systems Manager parameter, which will resolve to an AMI ID on launch.

Valid formats:

  • ami-17characters00000

  • resolve:ssm:parameter-name

  • resolve:ssm:parameter-name:version-number

  • resolve:ssm:parameter-name:label

  • resolve:ssm:public-parameter

Currently, EC2 Fleet and Spot Fleet do not support specifying a Systems Manager parameter. If the launch template will be used by an EC2 Fleet or Spot Fleet, you must specify the AMI ID.

For more information, see Use a Systems Manager parameter instead of an AMI ID in the Amazon Elastic Compute Cloud User Guide.

', 'RequestSpotLaunchSpecification$ImageId' => '

The ID of the AMI.

', 'ResetImageAttributeRequest$ImageId' => '

The ID of the AMI.

', 'RestoreImageFromRecycleBinRequest$ImageId' => '

The ID of the AMI to restore.

', 'RunInstancesRequest$ImageId' => '

The ID of the AMI. An AMI ID is required to launch an instance and must be specified here or in a launch template.

', 'ScheduledInstancesLaunchSpecification$ImageId' => '

The ID of the Amazon Machine Image (AMI).

', 'SpotFleetLaunchSpecification$ImageId' => '

The ID of the AMI.

', ], ], 'ImageIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeStoreImageTasksRequest$ImageIds' => '

The AMI IDs for which to show progress. Up to 20 AMI IDs can be included in a request.

', ], ], 'ImageIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeImagesRequest$ImageIds' => '

The image IDs.

Default: Describes all images available to you.

', 'ListImagesInRecycleBinRequest$ImageIds' => '

The IDs of the AMIs to list. Omit this parameter to list all of the AMIs that are in the Recycle Bin. You can specify up to 20 IDs in a single request.

', ], ], 'ImageList' => [ 'base' => NULL, 'refs' => [ 'DescribeImagesResult$Images' => '

Information about the images.

', ], ], 'ImageRecycleBinInfo' => [ 'base' => '

Information about an AMI that is currently in the Recycle Bin.

', 'refs' => [ 'ImageRecycleBinInfoList$member' => NULL, ], ], 'ImageRecycleBinInfoList' => [ 'base' => NULL, 'refs' => [ 'ListImagesInRecycleBinResult$Images' => '

Information about the AMIs.

', ], ], 'ImageState' => [ 'base' => NULL, 'refs' => [ 'Image$State' => '

The current state of the AMI. If the state is available, the image is successfully registered and can be used to launch an instance.

', ], ], 'ImageTypeValues' => [ 'base' => NULL, 'refs' => [ 'Image$ImageType' => '

The type of image.

', ], ], 'ImdsSupportValues' => [ 'base' => NULL, 'refs' => [ 'Image$ImdsSupport' => '

If v2.0, it indicates that IMDSv2 is specified in the AMI. Instances launched from this AMI will have HttpTokens automatically set to required so that, by default, the instance requires that IMDSv2 is used when requesting instance metadata. In addition, HttpPutResponseHopLimit is set to 2. For more information, see Configure the AMI in the Amazon EC2 User Guide.

', 'RegisterImageRequest$ImdsSupport' => '

Set to v2.0 to indicate that IMDSv2 is specified in the AMI. Instances launched from this AMI will have HttpTokens automatically set to required so that, by default, the instance requires that IMDSv2 is used when requesting instance metadata. In addition, HttpPutResponseHopLimit is set to 2. For more information, see Configure the AMI in the Amazon EC2 User Guide.

If you set the value to v2.0, make sure that your AMI software can support IMDSv2.

', ], ], 'ImportClientVpnClientCertificateRevocationListRequest' => [ 'base' => NULL, 'refs' => [], ], 'ImportClientVpnClientCertificateRevocationListResult' => [ 'base' => NULL, 'refs' => [], ], 'ImportImageLicenseConfigurationRequest' => [ 'base' => '

The request information of license configurations.

', 'refs' => [ 'ImportImageLicenseSpecificationListRequest$member' => NULL, ], ], 'ImportImageLicenseConfigurationResponse' => [ 'base' => '

The response information for license configurations.

', 'refs' => [ 'ImportImageLicenseSpecificationListResponse$member' => NULL, ], ], 'ImportImageLicenseSpecificationListRequest' => [ 'base' => NULL, 'refs' => [ 'ImportImageRequest$LicenseSpecifications' => '

The ARNs of the license configurations.

', ], ], 'ImportImageLicenseSpecificationListResponse' => [ 'base' => NULL, 'refs' => [ 'ImportImageResult$LicenseSpecifications' => '

The ARNs of the license configurations.

', 'ImportImageTask$LicenseSpecifications' => '

The ARNs of the license configurations that are associated with the import image task.

', ], ], 'ImportImageRequest' => [ 'base' => NULL, 'refs' => [], ], 'ImportImageResult' => [ 'base' => NULL, 'refs' => [], ], 'ImportImageTask' => [ 'base' => '

Describes an import image task.

', 'refs' => [ 'ImportImageTaskList$member' => NULL, ], ], 'ImportImageTaskId' => [ 'base' => NULL, 'refs' => [ 'ImportImageResult$ImportTaskId' => '

The task ID of the import image task.

', 'ImportTaskIdList$member' => NULL, ], ], 'ImportImageTaskList' => [ 'base' => NULL, 'refs' => [ 'DescribeImportImageTasksResult$ImportImageTasks' => '

A list of zero or more import image tasks that are currently active or were completed or canceled in the previous 7 days.

', ], ], 'ImportInstanceLaunchSpecification' => [ 'base' => '

Describes the launch specification for VM import.

', 'refs' => [ 'ImportInstanceRequest$LaunchSpecification' => '

The launch specification.

', ], ], 'ImportInstanceRequest' => [ 'base' => NULL, 'refs' => [], ], 'ImportInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'ImportInstanceTaskDetails' => [ 'base' => '

Describes an import instance task.

', 'refs' => [ 'ConversionTask$ImportInstance' => '

If the task is for importing an instance, this contains information about the import instance task.

', ], ], 'ImportInstanceVolumeDetailItem' => [ 'base' => '

Describes an import volume task.

', 'refs' => [ 'ImportInstanceVolumeDetailSet$member' => NULL, ], ], 'ImportInstanceVolumeDetailSet' => [ 'base' => NULL, 'refs' => [ 'ImportInstanceTaskDetails$Volumes' => '

The volumes.

', ], ], 'ImportKeyPairRequest' => [ 'base' => NULL, 'refs' => [], ], 'ImportKeyPairResult' => [ 'base' => NULL, 'refs' => [], ], 'ImportManifestUrl' => [ 'base' => NULL, 'refs' => [ 'DiskImageDescription$ImportManifestUrl' => '

A presigned URL for the import manifest stored in Amazon S3. For information about creating a presigned URL for an Amazon S3 object, read the "Query String Request Authentication Alternative" section of the Authenticating REST Requests topic in the Amazon Simple Storage Service Developer Guide.

For information about the import manifest referenced by this API action, see VM Import Manifest.

', 'DiskImageDetail$ImportManifestUrl' => '

A presigned URL for the import manifest stored in Amazon S3 and presented here as an Amazon S3 presigned URL. For information about creating a presigned URL for an Amazon S3 object, read the "Query String Request Authentication Alternative" section of the Authenticating REST Requests topic in the Amazon Simple Storage Service Developer Guide.

For information about the import manifest referenced by this API action, see VM Import Manifest.

', ], ], 'ImportSnapshotRequest' => [ 'base' => NULL, 'refs' => [], ], 'ImportSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'ImportSnapshotTask' => [ 'base' => '

Describes an import snapshot task.

', 'refs' => [ 'ImportSnapshotTaskList$member' => NULL, ], ], 'ImportSnapshotTaskId' => [ 'base' => NULL, 'refs' => [ 'ImportSnapshotTaskIdList$member' => NULL, ], ], 'ImportSnapshotTaskIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeImportSnapshotTasksRequest$ImportTaskIds' => '

A list of import snapshot task IDs.

', ], ], 'ImportSnapshotTaskList' => [ 'base' => NULL, 'refs' => [ 'DescribeImportSnapshotTasksResult$ImportSnapshotTasks' => '

A list of zero or more import snapshot tasks that are currently active or were completed or canceled in the previous 7 days.

', ], ], 'ImportTaskId' => [ 'base' => NULL, 'refs' => [ 'CancelImportTaskRequest$ImportTaskId' => '

The ID of the import image or import snapshot task to be canceled.

', ], ], 'ImportTaskIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeImportImageTasksRequest$ImportTaskIds' => '

The IDs of the import image tasks.

', ], ], 'ImportVolumeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ImportVolumeResult' => [ 'base' => NULL, 'refs' => [], ], 'ImportVolumeTaskDetails' => [ 'base' => '

Describes an import volume task.

', 'refs' => [ 'ConversionTask$ImportVolume' => '

If the task is for importing a volume, this contains information about the import volume task.

', ], ], 'InferenceAcceleratorInfo' => [ 'base' => '

Describes the Inference accelerators for the instance type.

', 'refs' => [ 'InstanceTypeInfo$InferenceAcceleratorInfo' => '

Describes the Inference accelerator settings for the instance type.

', ], ], 'InferenceDeviceCount' => [ 'base' => NULL, 'refs' => [ 'InferenceDeviceInfo$Count' => '

The number of Inference accelerators for the instance type.

', ], ], 'InferenceDeviceInfo' => [ 'base' => '

Describes the Inference accelerators for the instance type.

', 'refs' => [ 'InferenceDeviceInfoList$member' => NULL, ], ], 'InferenceDeviceInfoList' => [ 'base' => NULL, 'refs' => [ 'InferenceAcceleratorInfo$Accelerators' => '

Describes the Inference accelerators for the instance type.

', ], ], 'InferenceDeviceManufacturerName' => [ 'base' => NULL, 'refs' => [ 'InferenceDeviceInfo$Manufacturer' => '

The manufacturer of the Inference accelerator.

', ], ], 'InferenceDeviceMemoryInfo' => [ 'base' => '

Describes the memory available to the inference accelerator.

', 'refs' => [ 'InferenceDeviceInfo$MemoryInfo' => '

Describes the memory available to the inference accelerator.

', ], ], 'InferenceDeviceMemorySize' => [ 'base' => NULL, 'refs' => [ 'InferenceDeviceMemoryInfo$SizeInMiB' => '

The size of the memory available to the inference accelerator, in MiB.

', ], ], 'InferenceDeviceName' => [ 'base' => NULL, 'refs' => [ 'InferenceDeviceInfo$Name' => '

The name of the Inference accelerator.

', ], ], 'InsideCidrBlocksStringList' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayConnectPeerRequest$InsideCidrBlocks' => '

The range of inside IP addresses that are used for BGP peering. You must specify a size /29 IPv4 CIDR block from the 169.254.0.0/16 range. The first address from the range must be configured on the appliance as the BGP IP address. You can also optionally specify a size /125 IPv6 CIDR block from the fd00::/8 range.

', 'TransitGatewayConnectPeerConfiguration$InsideCidrBlocks' => '

The range of interior BGP peer IP addresses.

', ], ], 'Instance' => [ 'base' => '

Describes an instance.

', 'refs' => [ 'InstanceList$member' => NULL, ], ], 'InstanceAttachmentEnaSrdSpecification' => [ 'base' => '

ENA Express uses Amazon Web Services Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled.

To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it.

', 'refs' => [ 'InstanceNetworkInterfaceAttachment$EnaSrdSpecification' => '

Contains the ENA Express settings for the network interface that\'s attached to the instance.

', ], ], 'InstanceAttachmentEnaSrdUdpSpecification' => [ 'base' => '

ENA Express is compatible with both TCP and UDP transport protocols. When it\'s enabled, TCP traffic automatically uses it. However, some UDP-based applications are designed to handle network packets that are out of order, without a need for retransmission, such as live video broadcasting or other near-real-time applications. For UDP traffic, you can specify whether to use ENA Express, based on your application environment needs.

', 'refs' => [ 'InstanceAttachmentEnaSrdSpecification$EnaSrdUdpSpecification' => '

Configures ENA Express for UDP network traffic.

', ], ], 'InstanceAttribute' => [ 'base' => '

Describes an instance attribute.

', 'refs' => [], ], 'InstanceAttributeName' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceAttributeRequest$Attribute' => '

The instance attribute.

Note: The enaSupport attribute is not supported at this time.

', 'ModifyInstanceAttributeRequest$Attribute' => '

The name of the attribute to modify.

You can modify the following attributes only: disableApiTermination | instanceType | kernel | ramdisk | instanceInitiatedShutdownBehavior | blockDeviceMapping | userData | sourceDestCheck | groupSet | ebsOptimized | sriovNetSupport | enaSupport | nvmeSupport | disableApiStop | enclaveOptions

', 'ResetInstanceAttributeRequest$Attribute' => '

The attribute to reset.

You can only reset the following attributes: kernel | ramdisk | sourceDestCheck.

', ], ], 'InstanceAutoRecoveryState' => [ 'base' => NULL, 'refs' => [ 'InstanceMaintenanceOptions$AutoRecovery' => '

Provides information on the current automatic recovery behavior of your instance.

', 'InstanceMaintenanceOptionsRequest$AutoRecovery' => '

Disables the automatic recovery behavior of your instance or sets it to default. For more information, see Simplified automatic recovery.

', 'ModifyInstanceMaintenanceOptionsRequest$AutoRecovery' => '

Disables the automatic recovery behavior of your instance or sets it to default.

', 'ModifyInstanceMaintenanceOptionsResult$AutoRecovery' => '

Provides information on the current automatic recovery behavior of your instance.

', ], ], 'InstanceBlockDeviceMapping' => [ 'base' => '

Describes a block device mapping.

', 'refs' => [ 'InstanceBlockDeviceMappingList$member' => NULL, ], ], 'InstanceBlockDeviceMappingList' => [ 'base' => NULL, 'refs' => [ 'Instance$BlockDeviceMappings' => '

Any block device mapping entries for the instance.

', 'InstanceAttribute$BlockDeviceMappings' => '

The block device mapping of the instance.

', ], ], 'InstanceBlockDeviceMappingSpecification' => [ 'base' => '

Describes a block device mapping entry.

', 'refs' => [ 'InstanceBlockDeviceMappingSpecificationList$member' => NULL, ], ], 'InstanceBlockDeviceMappingSpecificationList' => [ 'base' => NULL, 'refs' => [ 'ModifyInstanceAttributeRequest$BlockDeviceMappings' => '

Modifies the DeleteOnTermination attribute for volumes that are currently attached. The volume must be owned by the caller. If no value is specified for DeleteOnTermination, the default is true and the volume is deleted when the instance is terminated. You can\'t modify the DeleteOnTermination attribute for volumes that are attached to Fargate tasks.

To add instance store volumes to an Amazon EBS-backed instance, you must add them when you launch the instance. For more information, see Update the block device mapping when launching an instance in the Amazon EC2 User Guide.

', ], ], 'InstanceBootModeValues' => [ 'base' => NULL, 'refs' => [ 'Instance$CurrentInstanceBootMode' => '

The boot mode that is used to boot the instance at launch or start. For more information, see Boot modes in the Amazon EC2 User Guide.

', ], ], 'InstanceCapacity' => [ 'base' => '

Information about the number of instances that can be launched onto the Dedicated Host.

', 'refs' => [ 'AvailableInstanceCapacityList$member' => NULL, ], ], 'InstanceConnectEndpointId' => [ 'base' => NULL, 'refs' => [ 'DeleteInstanceConnectEndpointRequest$InstanceConnectEndpointId' => '

The ID of the EC2 Instance Connect Endpoint to delete.

', 'Ec2InstanceConnectEndpoint$InstanceConnectEndpointId' => '

The ID of the EC2 Instance Connect Endpoint.

', ], ], 'InstanceConnectEndpointMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceConnectEndpointsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'InstanceConnectEndpointSet' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceConnectEndpointsResult$InstanceConnectEndpoints' => '

Information about the EC2 Instance Connect Endpoints.

', ], ], 'InstanceCount' => [ 'base' => '

Describes a Reserved Instance listing state.

', 'refs' => [ 'InstanceCountList$member' => NULL, ], ], 'InstanceCountList' => [ 'base' => NULL, 'refs' => [ 'ReservedInstancesListing$InstanceCounts' => '

The number of instances in this state.

', ], ], 'InstanceCreditSpecification' => [ 'base' => '

Describes the credit option for CPU usage of a burstable performance instance.

', 'refs' => [ 'InstanceCreditSpecificationList$member' => NULL, ], ], 'InstanceCreditSpecificationList' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceCreditSpecificationsResult$InstanceCreditSpecifications' => '

Information about the credit option for CPU usage of an instance.

', ], ], 'InstanceCreditSpecificationListRequest' => [ 'base' => NULL, 'refs' => [ 'ModifyInstanceCreditSpecificationRequest$InstanceCreditSpecifications' => '

Information about the credit option for CPU usage.

', ], ], 'InstanceCreditSpecificationRequest' => [ 'base' => '

Describes the credit option for CPU usage of a burstable performance instance.

', 'refs' => [ 'InstanceCreditSpecificationListRequest$member' => NULL, ], ], 'InstanceEventId' => [ 'base' => NULL, 'refs' => [ 'InstanceStatusEvent$InstanceEventId' => '

The ID of the event.

', ], ], 'InstanceEventWindow' => [ 'base' => '

The event window.

', 'refs' => [ 'AssociateInstanceEventWindowResult$InstanceEventWindow' => '

Information about the event window.

', 'CreateInstanceEventWindowResult$InstanceEventWindow' => '

Information about the event window.

', 'DisassociateInstanceEventWindowResult$InstanceEventWindow' => '

Information about the event window.

', 'InstanceEventWindowSet$member' => NULL, 'ModifyInstanceEventWindowResult$InstanceEventWindow' => '

Information about the event window.

', ], ], 'InstanceEventWindowAssociationRequest' => [ 'base' => '

One or more targets associated with the specified event window. Only one type of target (instance ID, instance tag, or Dedicated Host ID) can be associated with an event window.

', 'refs' => [ 'AssociateInstanceEventWindowRequest$AssociationTarget' => '

One or more targets associated with the specified event window.

', ], ], 'InstanceEventWindowAssociationTarget' => [ 'base' => '

One or more targets associated with the event window.

', 'refs' => [ 'InstanceEventWindow$AssociationTarget' => '

One or more targets associated with the event window.

', ], ], 'InstanceEventWindowCronExpression' => [ 'base' => NULL, 'refs' => [ 'CreateInstanceEventWindowRequest$CronExpression' => '

The cron expression for the event window, for example, * 0-4,20-23 * * 1,5. If you specify a cron expression, you can\'t specify a time range.

Constraints:

  • Only hour and day of the week values are supported.

  • For day of the week values, you can specify either integers 0 through 6, or alternative single values SUN through SAT.

  • The minute, month, and year must be specified by *.

  • The hour value must be one or a multiple range, for example, 0-4 or 0-4,20-23.

  • Each hour range must be >= 2 hours, for example, 0-2 or 20-23.

  • The event window must be >= 4 hours. The combined total time ranges in the event window must be >= 4 hours.

For more information about cron expressions, see cron on the Wikipedia website.

', 'InstanceEventWindow$CronExpression' => '

The cron expression defined for the event window.

', 'ModifyInstanceEventWindowRequest$CronExpression' => '

The cron expression of the event window, for example, * 0-4,20-23 * * 1,5.

Constraints:

  • Only hour and day of the week values are supported.

  • For day of the week values, you can specify either integers 0 through 6, or alternative single values SUN through SAT.

  • The minute, month, and year must be specified by *.

  • The hour value must be one or a multiple range, for example, 0-4 or 0-4,20-23.

  • Each hour range must be >= 2 hours, for example, 0-2 or 20-23.

  • The event window must be >= 4 hours. The combined total time ranges in the event window must be >= 4 hours.

For more information about cron expressions, see cron on the Wikipedia website.

', ], ], 'InstanceEventWindowDisassociationRequest' => [ 'base' => '

The targets to disassociate from the specified event window.

', 'refs' => [ 'DisassociateInstanceEventWindowRequest$AssociationTarget' => '

One or more targets to disassociate from the specified event window.

', ], ], 'InstanceEventWindowId' => [ 'base' => NULL, 'refs' => [ 'AssociateInstanceEventWindowRequest$InstanceEventWindowId' => '

The ID of the event window.

', 'DeleteInstanceEventWindowRequest$InstanceEventWindowId' => '

The ID of the event window.

', 'DisassociateInstanceEventWindowRequest$InstanceEventWindowId' => '

The ID of the event window.

', 'InstanceEventWindow$InstanceEventWindowId' => '

The ID of the event window.

', 'InstanceEventWindowIdSet$member' => NULL, 'InstanceEventWindowStateChange$InstanceEventWindowId' => '

The ID of the event window.

', 'ModifyInstanceEventWindowRequest$InstanceEventWindowId' => '

The ID of the event window.

', ], ], 'InstanceEventWindowIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceEventWindowsRequest$InstanceEventWindowIds' => '

The IDs of the event windows.

', ], ], 'InstanceEventWindowSet' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceEventWindowsResult$InstanceEventWindows' => '

Information about the event windows.

', ], ], 'InstanceEventWindowState' => [ 'base' => NULL, 'refs' => [ 'InstanceEventWindow$State' => '

The current state of the event window.

', 'InstanceEventWindowStateChange$State' => '

The current state of the event window.

', ], ], 'InstanceEventWindowStateChange' => [ 'base' => '

The state of the event window.

', 'refs' => [ 'DeleteInstanceEventWindowResult$InstanceEventWindowState' => '

The state of the event window.

', ], ], 'InstanceEventWindowTimeRange' => [ 'base' => '

The start day and time and the end day and time of the time range, in UTC.

', 'refs' => [ 'InstanceEventWindowTimeRangeList$member' => NULL, ], ], 'InstanceEventWindowTimeRangeList' => [ 'base' => NULL, 'refs' => [ 'InstanceEventWindow$TimeRanges' => '

One or more time ranges defined for the event window.

', ], ], 'InstanceEventWindowTimeRangeRequest' => [ 'base' => '

The start day and time and the end day and time of the time range, in UTC.

', 'refs' => [ 'InstanceEventWindowTimeRangeRequestSet$member' => NULL, ], ], 'InstanceEventWindowTimeRangeRequestSet' => [ 'base' => NULL, 'refs' => [ 'CreateInstanceEventWindowRequest$TimeRanges' => '

The time range for the event window. If you specify a time range, you can\'t specify a cron expression.

', 'ModifyInstanceEventWindowRequest$TimeRanges' => '

The time ranges of the event window.

', ], ], 'InstanceExportDetails' => [ 'base' => '

Describes an instance to export.

', 'refs' => [ 'ExportTask$InstanceExportDetails' => '

Information about the instance to export.

', ], ], 'InstanceFamilyCreditSpecification' => [ 'base' => '

Describes the default credit option for CPU usage of a burstable performance instance family.

', 'refs' => [ 'GetDefaultCreditSpecificationResult$InstanceFamilyCreditSpecification' => '

The default credit option for CPU usage of the instance family.

', 'ModifyDefaultCreditSpecificationResult$InstanceFamilyCreditSpecification' => '

The default credit option for CPU usage of the instance family.

', ], ], 'InstanceGeneration' => [ 'base' => NULL, 'refs' => [ 'InstanceGenerationSet$member' => NULL, ], ], 'InstanceGenerationSet' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$InstanceGenerations' => '

Indicates whether current or previous generation instance types are included. The current generation instance types are recommended for use. Current generation instance types are typically the latest two to three generations in each instance family. For more information, see Instance types in the Amazon EC2 User Guide.

For current generation instance types, specify current.

For previous generation instance types, specify previous.

Default: Current and previous generation instance types

', 'InstanceRequirementsRequest$InstanceGenerations' => '

Indicates whether current or previous generation instance types are included. The current generation instance types are recommended for use. Current generation instance types are typically the latest two to three generations in each instance family. For more information, see Instance types in the Amazon EC2 User Guide.

For current generation instance types, specify current.

For previous generation instance types, specify previous.

Default: Current and previous generation instance types

', ], ], 'InstanceHealthStatus' => [ 'base' => NULL, 'refs' => [ 'ActiveInstance$InstanceHealth' => '

The health status of the instance. If the status of either the instance status check or the system status check is impaired, the health status of the instance is unhealthy. Otherwise, the health status is healthy.

', ], ], 'InstanceId' => [ 'base' => NULL, 'refs' => [ 'AssociateAddressRequest$InstanceId' => '

The ID of the instance. The instance must have exactly one attached network interface. You can specify either the instance ID or the network interface ID, but not both.

', 'AssociateIamInstanceProfileRequest$InstanceId' => '

The ID of the instance.

', 'AttachClassicLinkVpcRequest$InstanceId' => '

The ID of the EC2-Classic instance.

', 'AttachNetworkInterfaceRequest$InstanceId' => '

The ID of the instance.

', 'AttachVolumeRequest$InstanceId' => '

The ID of the instance.

', 'BundleInstanceRequest$InstanceId' => '

The ID of the instance to bundle.

Type: String

Default: None

Required: Yes

', 'ConfirmProductInstanceRequest$InstanceId' => '

The ID of the instance.

', 'CreateImageRequest$InstanceId' => '

The ID of the instance.

', 'CreateInstanceExportTaskRequest$InstanceId' => '

The ID of the instance.

', 'CreateReplaceRootVolumeTaskRequest$InstanceId' => '

The ID of the instance for which to replace the root volume.

', 'CreateRouteRequest$InstanceId' => '

The ID of a NAT instance in your VPC. The operation fails if you specify an instance ID unless exactly one network interface is attached.

', 'DescribeInstanceAttributeRequest$InstanceId' => '

The ID of the instance.

', 'DescribeInstanceTopologyInstanceIdSet$member' => NULL, 'DetachClassicLinkVpcRequest$InstanceId' => '

The ID of the instance to unlink from the VPC.

', 'GetConsoleOutputRequest$InstanceId' => '

The ID of the instance.

', 'GetConsoleScreenshotRequest$InstanceId' => '

The ID of the instance.

', 'GetInstanceUefiDataRequest$InstanceId' => '

The ID of the instance from which to retrieve the UEFI data.

', 'GetInstanceUefiDataResult$InstanceId' => '

The ID of the instance from which to retrieve the UEFI data.

', 'GetLaunchTemplateDataRequest$InstanceId' => '

The ID of the instance.

', 'GetPasswordDataRequest$InstanceId' => '

The ID of the Windows instance.

', 'InstanceCreditSpecificationRequest$InstanceId' => '

The ID of the instance.

', 'InstanceIdList$member' => NULL, 'InstanceIdSet$member' => NULL, 'InstanceIdStringList$member' => NULL, 'InstanceIdsSet$member' => NULL, 'ModifyInstanceAttributeRequest$InstanceId' => '

The ID of the instance.

', 'ModifyInstanceCapacityReservationAttributesRequest$InstanceId' => '

The ID of the instance to be modified.

', 'ModifyInstanceEventStartTimeRequest$InstanceId' => '

The ID of the instance with the scheduled event.

', 'ModifyInstanceMaintenanceOptionsRequest$InstanceId' => '

The ID of the instance.

', 'ModifyInstanceMetadataOptionsRequest$InstanceId' => '

The ID of the instance.

', 'ModifyInstancePlacementRequest$InstanceId' => '

The ID of the instance that you are modifying.

', 'ModifyPrivateDnsNameOptionsRequest$InstanceId' => '

The ID of the instance.

', 'ReplaceRouteRequest$InstanceId' => '

The ID of a NAT instance in your VPC.

', 'ResetInstanceAttributeRequest$InstanceId' => '

The ID of the instance.

', 'SendDiagnosticInterruptRequest$InstanceId' => '

The ID of the instance.

', 'SpotInstanceRequest$InstanceId' => '

The instance ID, if an instance has been launched to fulfill the Spot Instance request.

', ], ], 'InstanceIdForResolver' => [ 'base' => NULL, 'refs' => [ 'DetachVolumeRequest$InstanceId' => '

The ID of the instance. If you are detaching a Multi-Attach enabled volume, you must specify an instance ID.

', ], ], 'InstanceIdList' => [ 'base' => NULL, 'refs' => [ 'InstanceEventWindowAssociationRequest$InstanceIds' => '

The IDs of the instances to associate with the event window. If the instance is on a Dedicated Host, you can\'t specify the Instance ID parameter; you must use the Dedicated Host ID parameter.

', 'InstanceEventWindowAssociationTarget$InstanceIds' => '

The IDs of the instances associated with the event window.

', 'InstanceEventWindowDisassociationRequest$InstanceIds' => '

The IDs of the instances to disassociate from the event window.

', ], ], 'InstanceIdSet' => [ 'base' => NULL, 'refs' => [ 'RunScheduledInstancesResult$InstanceIdSet' => '

The IDs of the newly launched instances.

', ], ], 'InstanceIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeClassicLinkInstancesRequest$InstanceIds' => '

The instance IDs. Must be instances linked to a VPC through ClassicLink.

', 'DescribeInstanceCreditSpecificationsRequest$InstanceIds' => '

The instance IDs.

Default: Describes all your instances.

Constraints: Maximum 1000 explicitly specified instance IDs.

', 'DescribeInstanceStatusRequest$InstanceIds' => '

The instance IDs.

Default: Describes all your instances.

Constraints: Maximum 100 explicitly specified instance IDs.

', 'DescribeInstancesRequest$InstanceIds' => '

The instance IDs.

Default: Describes all your instances.

', 'MonitorInstancesRequest$InstanceIds' => '

The IDs of the instances.

', 'RebootInstancesRequest$InstanceIds' => '

The instance IDs.

', 'ReportInstanceStatusRequest$Instances' => '

The instances.

', 'StartInstancesRequest$InstanceIds' => '

The IDs of the instances.

', 'StopInstancesRequest$InstanceIds' => '

The IDs of the instances.

', 'TerminateInstancesRequest$InstanceIds' => '

The IDs of the instances.

Constraints: Up to 1000 instance IDs. We recommend breaking up this request into smaller batches.

', 'UnmonitorInstancesRequest$InstanceIds' => '

The IDs of the instances.

', ], ], 'InstanceIdWithVolumeResolver' => [ 'base' => NULL, 'refs' => [ 'InstanceSpecification$InstanceId' => '

The instance to specify which volumes should be snapshotted.

', ], ], 'InstanceIdsSet' => [ 'base' => NULL, 'refs' => [ 'CreateFleetInstance$InstanceIds' => '

The IDs of the instances.

', 'DescribeFleetsInstances$InstanceIds' => '

The IDs of the instances.

', ], ], 'InstanceInterruptionBehavior' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateSpotMarketOptions$InstanceInterruptionBehavior' => '

The behavior when a Spot Instance is interrupted.

', 'LaunchTemplateSpotMarketOptionsRequest$InstanceInterruptionBehavior' => '

The behavior when a Spot Instance is interrupted. The default is terminate.

', 'RequestSpotInstancesRequest$InstanceInterruptionBehavior' => '

The behavior when a Spot Instance is interrupted. The default is terminate.

', 'SpotFleetRequestConfigData$InstanceInterruptionBehavior' => '

The behavior when a Spot Instance is interrupted. The default is terminate.

', 'SpotInstanceRequest$InstanceInterruptionBehavior' => '

The behavior when a Spot Instance is interrupted.

', 'SpotMarketOptions$InstanceInterruptionBehavior' => '

The behavior when a Spot Instance is interrupted.

If Configured (for HibernationOptions ) is set to true, the InstanceInterruptionBehavior parameter is automatically set to hibernate. If you set it to stop or terminate, you\'ll get an error.

If Configured (for HibernationOptions ) is set to false or null, the InstanceInterruptionBehavior parameter is automatically set to terminate. You can also set it to stop or hibernate.

For more information, see Interruption behavior in the Amazon EC2 User Guide.

', ], ], 'InstanceIpv4Prefix' => [ 'base' => '

Information about an IPv4 prefix.

', 'refs' => [ 'InstanceIpv4PrefixList$member' => NULL, ], ], 'InstanceIpv4PrefixList' => [ 'base' => NULL, 'refs' => [ 'InstanceNetworkInterface$Ipv4Prefixes' => '

The IPv4 delegated prefixes that are assigned to the network interface.

', ], ], 'InstanceIpv6Address' => [ 'base' => '

Describes an IPv6 address.

', 'refs' => [ 'InstanceIpv6AddressList$member' => NULL, ], ], 'InstanceIpv6AddressList' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInterfaceRequest$Ipv6Addresses' => '

The IPv6 addresses from the IPv6 CIDR block range of your subnet.

You can\'t specify IPv6 addresses using this parameter if you\'ve specified one of the following: a count of IPv6 addresses, specific IPv6 prefixes, or a count of IPv6 prefixes.

', 'InstanceNetworkInterface$Ipv6Addresses' => '

The IPv6 addresses associated with the network interface.

', 'InstanceNetworkInterfaceSpecification$Ipv6Addresses' => '

The IPv6 addresses to assign to the network interface. You cannot specify this option and the option to assign a number of IPv6 addresses in the same request. You cannot specify this option if you\'ve specified a minimum number of instances to launch.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$Ipv6Addresses' => '

The IPv6 addresses for the network interface.

', 'RunInstancesRequest$Ipv6Addresses' => '

The IPv6 addresses from the range of the subnet to associate with the primary network interface. You cannot specify this option and the option to assign a number of IPv6 addresses in the same request. You cannot specify this option if you\'ve specified a minimum number of instances to launch.

You cannot specify this option and the network interfaces option in the same request.

', ], ], 'InstanceIpv6AddressListRequest' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$Ipv6Addresses' => '

One or more specific IPv6 addresses from the IPv6 CIDR block range of your subnet. You can\'t use this option if you\'re specifying a number of IPv6 addresses.

', ], ], 'InstanceIpv6AddressRequest' => [ 'base' => '

Describes an IPv6 address.

', 'refs' => [ 'InstanceIpv6AddressListRequest$member' => NULL, ], ], 'InstanceIpv6Prefix' => [ 'base' => '

Information about an IPv6 prefix.

', 'refs' => [ 'InstanceIpv6PrefixList$member' => NULL, ], ], 'InstanceIpv6PrefixList' => [ 'base' => NULL, 'refs' => [ 'InstanceNetworkInterface$Ipv6Prefixes' => '

The IPv6 delegated prefixes that are assigned to the network interface.

', ], ], 'InstanceLifecycle' => [ 'base' => NULL, 'refs' => [ 'CreateFleetError$Lifecycle' => '

Indicates if the instance that could not be launched was a Spot Instance or On-Demand Instance.

', 'CreateFleetInstance$Lifecycle' => '

Indicates if the instance that was launched is a Spot Instance or On-Demand Instance.

', 'DescribeFleetError$Lifecycle' => '

Indicates if the instance that could not be launched was a Spot Instance or On-Demand Instance.

', 'DescribeFleetsInstances$Lifecycle' => '

Indicates if the instance that was launched is a Spot Instance or On-Demand Instance.

', ], ], 'InstanceLifecycleType' => [ 'base' => NULL, 'refs' => [ 'Instance$InstanceLifecycle' => '

Indicates whether this is a Spot Instance or a Scheduled Instance.

', ], ], 'InstanceList' => [ 'base' => NULL, 'refs' => [ 'Reservation$Instances' => '

The instances.

', ], ], 'InstanceMaintenanceOptions' => [ 'base' => '

The maintenance options for the instance.

', 'refs' => [ 'Instance$MaintenanceOptions' => '

Provides information on the recovery and maintenance options of your instance.

', ], ], 'InstanceMaintenanceOptionsRequest' => [ 'base' => '

The maintenance options for the instance.

', 'refs' => [ 'RunInstancesRequest$MaintenanceOptions' => '

The maintenance and recovery options for the instance.

', ], ], 'InstanceMarketOptionsRequest' => [ 'base' => '

Describes the market (purchasing) option for the instances.

', 'refs' => [ 'RunInstancesRequest$InstanceMarketOptions' => '

The market (purchasing) option for the instances.

For RunInstances, persistent Spot Instance requests are only supported when InstanceInterruptionBehavior is set to either hibernate or stop.

', ], ], 'InstanceMatchCriteria' => [ 'base' => NULL, 'refs' => [ 'CapacityReservation$InstanceMatchCriteria' => '

Indicates the type of instance launches that the Capacity Reservation accepts. The options include:

  • open - The Capacity Reservation accepts all instances that have matching attributes (instance type, platform, and Availability Zone). Instances that have matching attributes launch into the Capacity Reservation automatically without specifying any additional parameters.

  • targeted - The Capacity Reservation only accepts instances that have matching attributes (instance type, platform, and Availability Zone), and explicitly target the Capacity Reservation. This ensures that only permitted instances can use the reserved capacity.

', 'CreateCapacityReservationRequest$InstanceMatchCriteria' => '

Indicates the type of instance launches that the Capacity Reservation accepts. The options include:

  • open - The Capacity Reservation automatically matches all instances that have matching attributes (instance type, platform, and Availability Zone). Instances that have matching attributes run in the Capacity Reservation automatically without specifying any additional parameters.

  • targeted - The Capacity Reservation only accepts instances that have matching attributes (instance type, platform, and Availability Zone), and explicitly target the Capacity Reservation. This ensures that only permitted instances can use the reserved capacity.

Default: open

', ], ], 'InstanceMetadataEndpointState' => [ 'base' => NULL, 'refs' => [ 'InstanceMetadataOptionsRequest$HttpEndpoint' => '

Enables or disables the HTTP metadata endpoint on your instances.

If you specify a value of disabled, you cannot access your instance metadata.

Default: enabled

', 'InstanceMetadataOptionsResponse$HttpEndpoint' => '

Indicates whether the HTTP metadata endpoint on your instances is enabled or disabled.

If the value is disabled, you cannot access your instance metadata.

', 'ModifyInstanceMetadataOptionsRequest$HttpEndpoint' => '

Enables or disables the HTTP metadata endpoint on your instances. If this parameter is not specified, the existing state is maintained.

If you specify a value of disabled, you cannot access your instance metadata.

', ], ], 'InstanceMetadataOptionsRequest' => [ 'base' => '

The metadata options for the instance.

', 'refs' => [ 'RunInstancesRequest$MetadataOptions' => '

The metadata options for the instance. For more information, see Instance metadata and user data.

', ], ], 'InstanceMetadataOptionsResponse' => [ 'base' => '

The metadata options for the instance.

', 'refs' => [ 'Instance$MetadataOptions' => '

The metadata options for the instance.

', 'ModifyInstanceMetadataOptionsResult$InstanceMetadataOptions' => '

The metadata options for the instance.

', ], ], 'InstanceMetadataOptionsState' => [ 'base' => NULL, 'refs' => [ 'InstanceMetadataOptionsResponse$State' => '

The state of the metadata option changes.

pending - The metadata options are being updated and the instance is not ready to process metadata traffic with the new selection.

applied - The metadata options have been successfully applied on the instance.

', ], ], 'InstanceMetadataProtocolState' => [ 'base' => NULL, 'refs' => [ 'InstanceMetadataOptionsRequest$HttpProtocolIpv6' => '

Enables or disables the IPv6 endpoint for the instance metadata service.

', 'InstanceMetadataOptionsResponse$HttpProtocolIpv6' => '

Indicates whether the IPv6 endpoint for the instance metadata service is enabled or disabled.

', 'ModifyInstanceMetadataOptionsRequest$HttpProtocolIpv6' => '

Enables or disables the IPv6 endpoint for the instance metadata service. Applies only if you enabled the HTTP metadata endpoint.

', ], ], 'InstanceMetadataTagsState' => [ 'base' => NULL, 'refs' => [ 'InstanceMetadataOptionsRequest$InstanceMetadataTags' => '

Set to enabled to allow access to instance tags from the instance metadata. Set to disabled to turn off access to instance tags from the instance metadata. For more information, see Work with instance tags using the instance metadata.

Default: disabled

', 'InstanceMetadataOptionsResponse$InstanceMetadataTags' => '

Indicates whether access to instance tags from the instance metadata is enabled or disabled. For more information, see Work with instance tags using the instance metadata.

', 'ModifyInstanceMetadataOptionsRequest$InstanceMetadataTags' => '

Set to enabled to allow access to instance tags from the instance metadata. Set to disabled to turn off access to instance tags from the instance metadata. For more information, see Work with instance tags using the instance metadata.

Default: disabled

', ], ], 'InstanceMonitoring' => [ 'base' => '

Describes the monitoring of an instance.

', 'refs' => [ 'InstanceMonitoringList$member' => NULL, ], ], 'InstanceMonitoringList' => [ 'base' => NULL, 'refs' => [ 'MonitorInstancesResult$InstanceMonitorings' => '

The monitoring information.

', 'UnmonitorInstancesResult$InstanceMonitorings' => '

The monitoring information.

', ], ], 'InstanceNetworkInterface' => [ 'base' => '

Describes a network interface.

', 'refs' => [ 'InstanceNetworkInterfaceList$member' => NULL, ], ], 'InstanceNetworkInterfaceAssociation' => [ 'base' => '

Describes association information for an Elastic IP address (IPv4).

', 'refs' => [ 'InstanceNetworkInterface$Association' => '

The association information for an Elastic IPv4 associated with the network interface.

', 'InstancePrivateIpAddress$Association' => '

The association information for an Elastic IP address for the network interface.

', ], ], 'InstanceNetworkInterfaceAttachment' => [ 'base' => '

Describes a network interface attachment.

', 'refs' => [ 'InstanceNetworkInterface$Attachment' => '

The network interface attachment.

', ], ], 'InstanceNetworkInterfaceList' => [ 'base' => NULL, 'refs' => [ 'Instance$NetworkInterfaces' => '

The network interfaces for the instance.

', ], ], 'InstanceNetworkInterfaceSpecification' => [ 'base' => '

Describes a network interface.

', 'refs' => [ 'InstanceNetworkInterfaceSpecificationList$member' => NULL, ], ], 'InstanceNetworkInterfaceSpecificationList' => [ 'base' => NULL, 'refs' => [ 'LaunchSpecification$NetworkInterfaces' => '

The network interfaces. If you specify a network interface, you must specify subnet IDs and security group IDs using the network interface.

', 'RequestSpotLaunchSpecification$NetworkInterfaces' => '

The network interfaces. If you specify a network interface, you must specify subnet IDs and security group IDs using the network interface.

', 'RunInstancesRequest$NetworkInterfaces' => '

The network interfaces to associate with the instance. If you specify a network interface, you must specify any security groups and subnets as part of the network interface.

', 'SpotFleetLaunchSpecification$NetworkInterfaces' => '

One or more network interfaces. If you specify a network interface, you must specify subnet IDs and security group IDs using the network interface.

SpotFleetLaunchSpecification currently does not support Elastic Fabric Adapter (EFA). To specify an EFA, you must use LaunchTemplateConfig.

', ], ], 'InstancePrivateIpAddress' => [ 'base' => '

Describes a private IPv4 address.

', 'refs' => [ 'InstancePrivateIpAddressList$member' => NULL, ], ], 'InstancePrivateIpAddressList' => [ 'base' => NULL, 'refs' => [ 'InstanceNetworkInterface$PrivateIpAddresses' => '

The private IPv4 addresses associated with the network interface.

', ], ], 'InstanceRequirements' => [ 'base' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with these attributes.

You must specify VCpuCount and MemoryMiB. All other attributes are optional. Any unspecified optional attribute is set to its default.

When you specify multiple attributes, you get instance types that satisfy all of the specified attributes. If you specify multiple values for an attribute, you get instance types that satisfy any of the specified values.

To limit the list of instance types from which Amazon EC2 can identify matching instance types, you can use one of the following parameters, but not both in the same request:

  • AllowedInstanceTypes - The instance types to include in the list. All other instance types are ignored, even if they match your specified attributes.

  • ExcludedInstanceTypes - The instance types to exclude from the list, even if they match your specified attributes.

If you specify InstanceRequirements, you can\'t specify InstanceType.

Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the launch instance wizard or with the RunInstances API, you can\'t specify InstanceRequirements.

For more information, see Create a mixed instances group using attribute-based instance type selection in the Amazon EC2 Auto Scaling User Guide, and also Attribute-based instance type selection for EC2 Fleet, Attribute-based instance type selection for Spot Fleet, and Spot placement score in the Amazon EC2 User Guide.

', 'refs' => [ 'FleetLaunchTemplateOverrides$InstanceRequirements' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes.

If you specify InstanceRequirements, you can\'t specify InstanceType.

', 'LaunchTemplateOverrides$InstanceRequirements' => '

The instance requirements. When you specify instance requirements, Amazon EC2 will identify instance types with the provided requirements, and then use your On-Demand and Spot allocation strategies to launch instances from these instance types, in the same way as when you specify a list of instance types.

If you specify InstanceRequirements, you can\'t specify InstanceType.

', 'ResponseLaunchTemplateData$InstanceRequirements' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with these attributes.

If you specify InstanceRequirements, you can\'t specify InstanceTypes.

', 'SpotFleetLaunchSpecification$InstanceRequirements' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes.

If you specify InstanceRequirements, you can\'t specify InstanceType.

', ], ], 'InstanceRequirementsRequest' => [ 'base' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with these attributes.

You must specify VCpuCount and MemoryMiB. All other attributes are optional. Any unspecified optional attribute is set to its default.

When you specify multiple attributes, you get instance types that satisfy all of the specified attributes. If you specify multiple values for an attribute, you get instance types that satisfy any of the specified values.

To limit the list of instance types from which Amazon EC2 can identify matching instance types, you can use one of the following parameters, but not both in the same request:

  • AllowedInstanceTypes - The instance types to include in the list. All other instance types are ignored, even if they match your specified attributes.

  • ExcludedInstanceTypes - The instance types to exclude from the list, even if they match your specified attributes.

If you specify InstanceRequirements, you can\'t specify InstanceType.

Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the launch instance wizard, or with the RunInstances API or AWS::EC2::Instance Amazon Web Services CloudFormation resource, you can\'t specify InstanceRequirements.

For more information, see Attribute-based instance type selection for EC2 Fleet, Attribute-based instance type selection for Spot Fleet, and Spot placement score in the Amazon EC2 User Guide.

', 'refs' => [ 'FleetLaunchTemplateOverridesRequest$InstanceRequirements' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes.

If you specify InstanceRequirements, you can\'t specify InstanceType.

', 'GetInstanceTypesFromInstanceRequirementsRequest$InstanceRequirements' => '

The attributes required for the instance types.

', 'InstanceRequirementsWithMetadataRequest$InstanceRequirements' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes.

', 'RequestLaunchTemplateData$InstanceRequirements' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with these attributes.

You must specify VCpuCount and MemoryMiB. All other attributes are optional. Any unspecified optional attribute is set to its default.

When you specify multiple attributes, you get instance types that satisfy all of the specified attributes. If you specify multiple values for an attribute, you get instance types that satisfy any of the specified values.

To limit the list of instance types from which Amazon EC2 can identify matching instance types, you can use one of the following parameters, but not both in the same request:

  • AllowedInstanceTypes - The instance types to include in the list. All other instance types are ignored, even if they match your specified attributes.

  • ExcludedInstanceTypes - The instance types to exclude from the list, even if they match your specified attributes.

If you specify InstanceRequirements, you can\'t specify InstanceType.

Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the launch instance wizard, or with the RunInstances API or AWS::EC2::Instance Amazon Web Services CloudFormation resource, you can\'t specify InstanceRequirements.

For more information, see Attribute-based instance type selection for EC2 Fleet, Attribute-based instance type selection for Spot Fleet, and Spot placement score in the Amazon EC2 User Guide.

', ], ], 'InstanceRequirementsWithMetadataRequest' => [ 'base' => '

The architecture type, virtualization type, and other attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes.

If you specify InstanceRequirementsWithMetadataRequest, you can\'t specify InstanceTypes.

', 'refs' => [ 'GetSpotPlacementScoresRequest$InstanceRequirementsWithMetadata' => '

The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes.

If you specify InstanceRequirementsWithMetadata, you can\'t specify InstanceTypes.

', ], ], 'InstanceSet' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTopologyResult$Instances' => '

Information about the topology of each instance.

', ], ], 'InstanceSpecification' => [ 'base' => '

The instance details to specify which volumes should be snapshotted.

', 'refs' => [ 'CreateSnapshotsRequest$InstanceSpecification' => '

The instance to specify which volumes should be included in the snapshots.

', ], ], 'InstanceState' => [ 'base' => '

Describes the current state of an instance.

', 'refs' => [ 'Instance$State' => '

The current state of the instance.

', 'InstanceStateChange$CurrentState' => '

The current state of the instance.

', 'InstanceStateChange$PreviousState' => '

The previous state of the instance.

', 'InstanceStatus$InstanceState' => '

The intended state of the instance. DescribeInstanceStatus requires that an instance be in the running state.

', ], ], 'InstanceStateChange' => [ 'base' => '

Describes an instance state change.

', 'refs' => [ 'InstanceStateChangeList$member' => NULL, ], ], 'InstanceStateChangeList' => [ 'base' => NULL, 'refs' => [ 'StartInstancesResult$StartingInstances' => '

Information about the started instances.

', 'StopInstancesResult$StoppingInstances' => '

Information about the stopped instances.

', 'TerminateInstancesResult$TerminatingInstances' => '

Information about the terminated instances.

', ], ], 'InstanceStateName' => [ 'base' => NULL, 'refs' => [ 'InstanceState$Name' => '

The current state of the instance.

', ], ], 'InstanceStatus' => [ 'base' => '

Describes the status of an instance.

', 'refs' => [ 'InstanceStatusList$member' => NULL, ], ], 'InstanceStatusDetails' => [ 'base' => '

Describes the instance status.

', 'refs' => [ 'InstanceStatusDetailsList$member' => NULL, ], ], 'InstanceStatusDetailsList' => [ 'base' => NULL, 'refs' => [ 'InstanceStatusSummary$Details' => '

The system instance health or application instance health.

', ], ], 'InstanceStatusEvent' => [ 'base' => '

Describes a scheduled event for an instance.

', 'refs' => [ 'InstanceStatusEventList$member' => NULL, 'ModifyInstanceEventStartTimeResult$Event' => '

Information about the event.

', ], ], 'InstanceStatusEventList' => [ 'base' => NULL, 'refs' => [ 'InstanceStatus$Events' => '

Any scheduled events associated with the instance.

', ], ], 'InstanceStatusList' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceStatusResult$InstanceStatuses' => '

Information about the status of the instances.

', ], ], 'InstanceStatusSummary' => [ 'base' => '

Describes the status of an instance.

', 'refs' => [ 'InstanceStatus$InstanceStatus' => '

Reports impaired functionality that stems from issues internal to the instance, such as impaired reachability.

', 'InstanceStatus$SystemStatus' => '

Reports impaired functionality that stems from issues related to the systems that support an instance, such as hardware failures and network connectivity problems.

', ], ], 'InstanceStorageEncryptionSupport' => [ 'base' => NULL, 'refs' => [ 'InstanceStorageInfo$EncryptionSupport' => '

Indicates whether data is encrypted at rest.

', ], ], 'InstanceStorageFlag' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$InstanceStorageSupported' => '

Indicates whether instance storage is supported.

', ], ], 'InstanceStorageInfo' => [ 'base' => '

Describes the instance store features that are supported by the instance type.

', 'refs' => [ 'InstanceTypeInfo$InstanceStorageInfo' => '

Describes the instance storage for the instance type.

', ], ], 'InstanceTagKeySet' => [ 'base' => NULL, 'refs' => [ 'DeregisterInstanceTagAttributeRequest$InstanceTagKeys' => '

Information about the tag keys to deregister.

', 'InstanceTagNotificationAttribute$InstanceTagKeys' => '

The registered tag keys.

', 'RegisterInstanceTagAttributeRequest$InstanceTagKeys' => '

The tag keys to register.

', ], ], 'InstanceTagNotificationAttribute' => [ 'base' => '

Describes the registered tag keys for the current Region.

', 'refs' => [ 'DeregisterInstanceEventNotificationAttributesResult$InstanceTagAttribute' => '

The resulting set of tag keys.

', 'DescribeInstanceEventNotificationAttributesResult$InstanceTagAttribute' => '

Information about the registered tag keys.

', 'RegisterInstanceEventNotificationAttributesResult$InstanceTagAttribute' => '

The resulting set of tag keys.

', ], ], 'InstanceTopology' => [ 'base' => '

Information about the instance topology.

', 'refs' => [ 'InstanceSet$member' => NULL, ], ], 'InstanceType' => [ 'base' => NULL, 'refs' => [ 'CreateFleetInstance$InstanceType' => '

The instance type.

', 'DescribeFleetsInstances$InstanceType' => '

The instance type.

', 'DescribeReservedInstancesOfferingsRequest$InstanceType' => '

The instance type that the reservation will cover (for example, m1.small). For more information, see Instance types in the Amazon EC2 User Guide.

', 'FleetCapacityReservation$InstanceType' => '

The instance type for which the Capacity Reservation reserves capacity.

', 'FleetLaunchTemplateOverrides$InstanceType' => '

The instance type.

mac1.metal is not supported as a launch template override.

If you specify InstanceType, you can\'t specify InstanceRequirements.

', 'FleetLaunchTemplateOverridesRequest$InstanceType' => '

The instance type.

mac1.metal is not supported as a launch template override.

If you specify InstanceType, you can\'t specify InstanceRequirements.

', 'ImportInstanceLaunchSpecification$InstanceType' => '

The instance type. For more information about the instance types that you can import, see Instance Types in the VM Import/Export User Guide.

', 'Instance$InstanceType' => '

The instance type.

', 'InstanceTypeInfo$InstanceType' => '

The instance type. For more information, see Instance types in the Amazon EC2 User Guide.

', 'InstanceTypeList$member' => NULL, 'InstanceTypeOffering$InstanceType' => '

The instance type. For more information, see Instance types in the Amazon EC2 User Guide.

', 'LaunchSpecification$InstanceType' => '

The instance type. Only one instance type can be specified.

', 'LaunchTemplateOverrides$InstanceType' => '

The instance type.

', 'RequestInstanceTypeList$member' => NULL, 'RequestLaunchTemplateData$InstanceType' => '

The instance type. For more information, see Instance types in the Amazon Elastic Compute Cloud User Guide.

If you specify InstanceType, you can\'t specify InstanceRequirements.

', 'RequestSpotLaunchSpecification$InstanceType' => '

The instance type. Only one instance type can be specified.

', 'ReservationFleetInstanceSpecification$InstanceType' => '

The instance type for which the Capacity Reservation Fleet reserves capacity.

', 'ReservedInstances$InstanceType' => '

The instance type on which the Reserved Instance can be used.

', 'ReservedInstancesConfiguration$InstanceType' => '

The instance type for the modified Reserved Instances.

', 'ReservedInstancesOffering$InstanceType' => '

The instance type on which the Reserved Instance can be used.

', 'ResponseLaunchTemplateData$InstanceType' => '

The instance type.

', 'RunInstancesRequest$InstanceType' => '

The instance type. For more information, see Instance types in the Amazon EC2 User Guide.

', 'SpotFleetLaunchSpecification$InstanceType' => '

The instance type.

', 'SpotPrice$InstanceType' => '

The instance type.

', ], ], 'InstanceTypeHypervisor' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$Hypervisor' => '

The hypervisor for the instance type.

', ], ], 'InstanceTypeInfo' => [ 'base' => '

Describes the instance type.

', 'refs' => [ 'InstanceTypeInfoList$member' => NULL, ], ], 'InstanceTypeInfoFromInstanceRequirements' => [ 'base' => '

The list of instance types with the specified instance attributes.

', 'refs' => [ 'InstanceTypeInfoFromInstanceRequirementsSet$member' => NULL, ], ], 'InstanceTypeInfoFromInstanceRequirementsSet' => [ 'base' => NULL, 'refs' => [ 'GetInstanceTypesFromInstanceRequirementsResult$InstanceTypes' => '

The instance types with the specified instance attributes.

', ], ], 'InstanceTypeInfoList' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTypesResult$InstanceTypes' => '

The instance type. For more information, see Instance types in the Amazon EC2 User Guide.

', ], ], 'InstanceTypeList' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotPriceHistoryRequest$InstanceTypes' => '

Filters the results by the specified instance types.

', ], ], 'InstanceTypeOffering' => [ 'base' => '

The instance types offered.

', 'refs' => [ 'InstanceTypeOfferingsList$member' => NULL, ], ], 'InstanceTypeOfferingsList' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTypeOfferingsResult$InstanceTypeOfferings' => '

The instance types offered.

', ], ], 'InstanceTypes' => [ 'base' => NULL, 'refs' => [ 'GetSpotPlacementScoresRequest$InstanceTypes' => '

The instance types. We recommend that you specify at least three instance types. If you specify one or two instance types, or specify variations of a single instance type (for example, an m3.xlarge with and without instance storage), the returned placement score will always be low.

If you specify InstanceTypes, you can\'t specify InstanceRequirementsWithMetadata.

', ], ], 'InstanceTypesList' => [ 'base' => NULL, 'refs' => [ 'FpgaImage$InstanceTypes' => '

The instance types supported by the AFI.

', ], ], 'InstanceUsage' => [ 'base' => '

Information about the Capacity Reservation usage.

', 'refs' => [ 'InstanceUsageSet$member' => NULL, ], ], 'InstanceUsageSet' => [ 'base' => NULL, 'refs' => [ 'GetCapacityReservationUsageResult$InstanceUsages' => '

Information about the Capacity Reservation usage.

', ], ], 'Integer' => [ 'base' => NULL, 'refs' => [ 'AcceleratorCount$Min' => '

The minimum number of accelerators. If this parameter is not specified, there is no minimum limit.

', 'AcceleratorCount$Max' => '

The maximum number of accelerators. If this parameter is not specified, there is no maximum limit.

', 'AcceleratorCountRequest$Min' => '

The minimum number of accelerators. To specify no minimum limit, omit this parameter.

', 'AcceleratorCountRequest$Max' => '

The maximum number of accelerators. To specify no maximum limit, omit this parameter. To exclude accelerator-enabled instance types, set Max to 0.

', 'AcceleratorTotalMemoryMiB$Min' => '

The minimum amount of accelerator memory, in MiB. If this parameter is not specified, there is no minimum limit.

', 'AcceleratorTotalMemoryMiB$Max' => '

The maximum amount of accelerator memory, in MiB. If this parameter is not specified, there is no maximum limit.

', 'AcceleratorTotalMemoryMiBRequest$Min' => '

The minimum amount of accelerator memory, in MiB. To specify no minimum limit, omit this parameter.

', 'AcceleratorTotalMemoryMiBRequest$Max' => '

The maximum amount of accelerator memory, in MiB. To specify no maximum limit, omit this parameter.

', 'AllocateHostsRequest$Quantity' => '

The number of Dedicated Hosts to allocate to your account with these parameters. If you are allocating the Dedicated Hosts on an Outpost, and you specify AssetIds, you can omit this parameter. In this case, Amazon EC2 allocates a Dedicated Host on each specified hardware asset. If you specify both AssetIds and Quantity, then the value that you specify for Quantity must be equal to the number of asset IDs specified.

', 'AllocateIpamPoolCidrRequest$NetmaskLength' => '

The netmask length of the CIDR you would like to allocate from the IPAM pool. Note the following:

  • If there is no DefaultNetmaskLength allocation rule set on the pool, you must specify either the NetmaskLength or the CIDR.

  • If the DefaultNetmaskLength allocation rule is set on the pool, you can specify either the NetmaskLength or the CIDR and the DefaultNetmaskLength allocation rule will be ignored.

Possible netmask lengths for IPv4 addresses are 0 - 32. Possible netmask lengths for IPv6 addresses are 0 - 128.

', 'AnalysisAclRule$RuleNumber' => '

The rule number.

', 'AssignIpv6AddressesRequest$Ipv6AddressCount' => '

The number of additional IPv6 addresses to assign to the network interface. The specified number of IPv6 addresses are assigned in addition to the existing IPv6 addresses that are already assigned to the network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range. You can\'t use this option if specifying specific IPv6 addresses.

', 'AssignIpv6AddressesRequest$Ipv6PrefixCount' => '

The number of IPv6 prefixes that Amazon Web Services automatically assigns to the network interface. You cannot use this option if you use the Ipv6Prefixes option.

', 'AssignPrivateIpAddressesRequest$SecondaryPrivateIpAddressCount' => '

The number of secondary IP addresses to assign to the network interface. You can\'t specify this parameter when also specifying private IP addresses.

', 'AssignPrivateIpAddressesRequest$Ipv4PrefixCount' => '

The number of IPv4 prefixes that Amazon Web Services automatically assigns to the network interface. You cannot use this option if you use the Ipv4 Prefixes option.

', 'AssociateTrunkInterfaceRequest$VlanId' => '

The ID of the VLAN. This applies to the VLAN protocol.

', 'AssociateTrunkInterfaceRequest$GreKey' => '

The application key. This applies to the GRE protocol.

', 'AttachNetworkInterfaceRequest$DeviceIndex' => '

The index of the device for the network interface attachment.

', 'AttachNetworkInterfaceRequest$NetworkCardIndex' => '

The index of the network card. Some instance types support multiple network cards. The primary network interface must be assigned to network card index 0. The default is network card index 0.

', 'AttachNetworkInterfaceResult$NetworkCardIndex' => '

The index of the network card.

', 'AuthorizeSecurityGroupEgressRequest$FromPort' => '

Not supported. Use a set of IP permissions to specify the port.

', 'AuthorizeSecurityGroupEgressRequest$ToPort' => '

Not supported. Use a set of IP permissions to specify the port.

', 'AuthorizeSecurityGroupIngressRequest$FromPort' => '

If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP, this is the type number. A value of -1 indicates all ICMP types. If you specify all ICMP types, you must specify all ICMP codes.

Alternatively, use a set of IP permissions to specify multiple rules and a description for the rule.

', 'AuthorizeSecurityGroupIngressRequest$ToPort' => '

If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP, this is the code. A value of -1 indicates all ICMP codes. If you specify all ICMP types, you must specify all ICMP codes.

Alternatively, use a set of IP permissions to specify multiple rules and a description for the rule.

', 'AvailableCapacity$AvailableVCpus' => '

The number of vCPUs available for launching instances onto the Dedicated Host.

', 'BaselineEbsBandwidthMbps$Min' => '

The minimum baseline bandwidth, in Mbps. If this parameter is not specified, there is no minimum limit.

', 'BaselineEbsBandwidthMbps$Max' => '

The maximum baseline bandwidth, in Mbps. If this parameter is not specified, there is no maximum limit.

', 'BaselineEbsBandwidthMbpsRequest$Min' => '

The minimum baseline bandwidth, in Mbps. To specify no minimum limit, omit this parameter.

', 'BaselineEbsBandwidthMbpsRequest$Max' => '

The maximum baseline bandwidth, in Mbps. To specify no maximum limit, omit this parameter.

', 'CapacityAllocation$Count' => '

The amount of instance capacity associated with the usage. For example a value of 4 indicates that instance capacity for 4 instances is currently in use.

', 'CapacityBlockOffering$InstanceCount' => '

The number of instances in the Capacity Block offering.

', 'CapacityBlockOffering$CapacityBlockDurationHours' => '

The amount of time of the Capacity Block reservation in hours.

', 'CapacityReservation$TotalInstanceCount' => '

The total number of instances for which the Capacity Reservation reserves capacity.

', 'CapacityReservation$AvailableInstanceCount' => '

The remaining capacity. Indicates the number of instances that can be launched in the Capacity Reservation.

', 'CapacityReservationFleet$TotalTargetCapacity' => '

The total number of capacity units for which the Capacity Reservation Fleet reserves capacity. For more information, see Total target capacity in the Amazon EC2 User Guide.

', 'ClientVpnEndpoint$VpnPort' => '

The port number for the Client VPN endpoint.

', 'ClientVpnEndpoint$SessionTimeoutHours' => '

The maximum VPN session duration time in hours.

Valid values: 8 | 10 | 12 | 24

Default value: 24

', 'ConnectionTrackingConfiguration$TcpEstablishedTimeout' => '

Timeout (in seconds) for idle TCP connections in an established state. Min: 60 seconds. Max: 432000 seconds (5 days). Default: 432000 seconds. Recommended: Less than 432000 seconds.

', 'ConnectionTrackingConfiguration$UdpStreamTimeout' => '

Timeout (in seconds) for idle UDP flows classified as streams which have seen more than one request-response transaction. Min: 60 seconds. Max: 180 seconds (3 minutes). Default: 180 seconds.

', 'ConnectionTrackingConfiguration$UdpTimeout' => '

Timeout (in seconds) for idle UDP flows that have seen traffic only in a single direction or a single request-response transaction. Min: 30 seconds. Max: 60 seconds. Default: 30 seconds.

', 'ConnectionTrackingSpecification$TcpEstablishedTimeout' => '

Timeout (in seconds) for idle TCP connections in an established state. Min: 60 seconds. Max: 432000 seconds (5 days). Default: 432000 seconds. Recommended: Less than 432000 seconds.

', 'ConnectionTrackingSpecification$UdpTimeout' => '

Timeout (in seconds) for idle UDP flows that have seen traffic only in a single direction or a single request-response transaction. Min: 30 seconds. Max: 60 seconds. Default: 30 seconds.

', 'ConnectionTrackingSpecification$UdpStreamTimeout' => '

Timeout (in seconds) for idle UDP flows classified as streams which have seen more than one request-response transaction. Min: 60 seconds. Max: 180 seconds (3 minutes). Default: 180 seconds.

', 'ConnectionTrackingSpecificationRequest$TcpEstablishedTimeout' => '

Timeout (in seconds) for idle TCP connections in an established state. Min: 60 seconds. Max: 432000 seconds (5 days). Default: 432000 seconds. Recommended: Less than 432000 seconds.

', 'ConnectionTrackingSpecificationRequest$UdpStreamTimeout' => '

Timeout (in seconds) for idle UDP flows classified as streams which have seen more than one request-response transaction. Min: 60 seconds. Max: 180 seconds (3 minutes). Default: 180 seconds.

', 'ConnectionTrackingSpecificationRequest$UdpTimeout' => '

Timeout (in seconds) for idle UDP flows that have seen traffic only in a single direction or a single request-response transaction. Min: 30 seconds. Max: 60 seconds. Default: 30 seconds.

', 'ConnectionTrackingSpecificationResponse$TcpEstablishedTimeout' => '

Timeout (in seconds) for idle TCP connections in an established state. Min: 60 seconds. Max: 432000 seconds (5 days). Default: 432000 seconds. Recommended: Less than 432000 seconds.

', 'ConnectionTrackingSpecificationResponse$UdpStreamTimeout' => '

Timeout (in seconds) for idle UDP flows classified as streams which have seen more than one request-response transaction. Min: 60 seconds. Max: 180 seconds (3 minutes). Default: 180 seconds.

', 'ConnectionTrackingSpecificationResponse$UdpTimeout' => '

Timeout (in seconds) for idle UDP flows that have seen traffic only in a single direction or a single request-response transaction. Min: 30 seconds. Max: 60 seconds. Default: 30 seconds.

', 'CpuOptions$CoreCount' => '

The number of CPU cores for the instance.

', 'CpuOptions$ThreadsPerCore' => '

The number of threads per CPU core.

', 'CpuOptionsRequest$CoreCount' => '

The number of CPU cores for the instance.

', 'CpuOptionsRequest$ThreadsPerCore' => '

The number of threads per CPU core. To disable multithreading for the instance, specify a value of 1. Otherwise, specify the default value of 2.

', 'CreateCapacityReservationFleetRequest$TotalTargetCapacity' => '

The total number of capacity units to be reserved by the Capacity Reservation Fleet. This value, together with the instance type weights that you assign to each instance type used by the Fleet determine the number of instances for which the Fleet reserves capacity. Both values are based on units that make sense for your workload. For more information, see Total target capacity in the Amazon EC2 User Guide.

', 'CreateCapacityReservationFleetResult$TotalTargetCapacity' => '

The total number of capacity units for which the Capacity Reservation Fleet reserves capacity.

', 'CreateCapacityReservationRequest$InstanceCount' => '

The number of instances for which to reserve capacity.

Valid range: 1 - 1000

', 'CreateClientVpnEndpointRequest$VpnPort' => '

The port number to assign to the Client VPN endpoint for TCP and UDP traffic.

Valid Values: 443 | 1194

Default Value: 443

', 'CreateClientVpnEndpointRequest$SessionTimeoutHours' => '

The maximum VPN session duration time in hours.

Valid values: 8 | 10 | 12 | 24

Default value: 24

', 'CreateCustomerGatewayRequest$BgpAsn' => '

For devices that support BGP, the customer gateway\'s BGP ASN.

Default: 65000

', 'CreateFlowLogsRequest$MaxAggregationInterval' => '

The maximum interval of time during which a flow of packets is captured and aggregated into a flow log record. The possible values are 60 seconds (1 minute) or 600 seconds (10 minutes). This parameter must be 60 seconds for transit gateway resource types.

When a network interface is attached to a Nitro-based instance, the aggregation interval is always 60 seconds or less, regardless of the value that you specify.

Default: 600

', 'CreateManagedPrefixListRequest$MaxEntries' => '

The maximum number of entries for the prefix list.

', 'CreateNetworkAclEntryRequest$RuleNumber' => '

The rule number for the entry (for example, 100). ACL entries are processed in ascending order by rule number.

Constraints: Positive integer from 1 to 32766. The range 32767 to 65535 is reserved for internal use.

', 'CreateNetworkInterfaceRequest$Ipv6AddressCount' => '

The number of IPv6 addresses to assign to a network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range.

You can\'t specify a count of IPv6 addresses using this parameter if you\'ve specified one of the following: specific IPv6 addresses, specific IPv6 prefixes, or a count of IPv6 prefixes.

If your subnet has the AssignIpv6AddressOnCreation attribute set, you can override that setting by specifying 0 as the IPv6 address count.

', 'CreateNetworkInterfaceRequest$SecondaryPrivateIpAddressCount' => '

The number of secondary private IPv4 addresses to assign to a network interface. When you specify a number of secondary IPv4 addresses, Amazon EC2 selects these IP addresses within the subnet\'s IPv4 CIDR range. You can\'t specify this option and specify more than one private IP address using privateIpAddresses.

You can\'t specify a count of private IPv4 addresses if you\'ve specified one of the following: specific private IPv4 addresses, specific IPv4 prefixes, or a count of IPv4 prefixes.

', 'CreateNetworkInterfaceRequest$Ipv4PrefixCount' => '

The number of IPv4 prefixes that Amazon Web Services automatically assigns to the network interface.

You can\'t specify a count of IPv4 prefixes if you\'ve specified one of the following: specific IPv4 prefixes, specific private IPv4 addresses, or a count of private IPv4 addresses.

', 'CreateNetworkInterfaceRequest$Ipv6PrefixCount' => '

The number of IPv6 prefixes that Amazon Web Services automatically assigns to the network interface.

You can\'t specify a count of IPv6 prefixes if you\'ve specified one of the following: specific IPv6 prefixes, specific IPv6 addresses, or a count of IPv6 addresses.

', 'CreatePlacementGroupRequest$PartitionCount' => '

The number of partitions. Valid only when Strategy is set to partition.

', 'CreateReservedInstancesListingRequest$InstanceCount' => '

The number of instances that are a part of a Reserved Instance account to be listed in the Reserved Instance Marketplace. This number should be less than or equal to the instance count associated with the Reserved Instance ID specified in this call.

', 'CreateTrafficMirrorFilterRuleRequest$RuleNumber' => '

The number of the Traffic Mirror rule. This number must be unique for each Traffic Mirror rule in a given direction. The rules are processed in ascending order by rule number.

', 'CreateTrafficMirrorFilterRuleRequest$Protocol' => '

The protocol, for example UDP, to assign to the Traffic Mirror rule.

For information about the protocol value, see Protocol Numbers on the Internet Assigned Numbers Authority (IANA) website.

', 'CreateTrafficMirrorSessionRequest$PacketLength' => '

The number of bytes in each packet to mirror. These are bytes after the VXLAN header. Do not specify this parameter when you want to mirror the entire packet. To mirror a subset of the packet, set this to the length (in bytes) that you want to mirror. For example, if you set this value to 100, then the first 100 bytes that meet the filter criteria are copied to the target.

If you do not want to mirror the entire packet, use the PacketLength parameter to specify the number of bytes in each packet to mirror.

For sessions with Network Load Balancer (NLB) Traffic Mirror targets the default PacketLength will be set to 8500. Valid values are 1-8500. Setting a PacketLength greater than 8500 will result in an error response.

', 'CreateTrafficMirrorSessionRequest$SessionNumber' => '

The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.

Valid values are 1-32766.

', 'CreateTrafficMirrorSessionRequest$VirtualNetworkId' => '

The VXLAN ID for the Traffic Mirror session. For more information about the VXLAN protocol, see RFC 7348. If you do not specify a VirtualNetworkId, an account-wide unique id is chosen at random.

', 'CreateVolumeRequest$Iops' => '

The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.

The following are the supported values for each volume type:

  • gp3: 3,000 - 16,000 IOPS

  • io1: 100 - 64,000 IOPS

  • io2: 100 - 256,000 IOPS

For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.

This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS. This parameter is not supported for gp2, st1, sc1, or standard volumes.

', 'CreateVolumeRequest$Size' => '

The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.

The following are the supported volumes sizes for each volume type:

  • gp2 and gp3: 1 - 16,384 GiB

  • io1: 4 - 16,384 GiB

  • io2: 4 - 65,536 GiB

  • st1 and sc1: 125 - 16,384 GiB

  • standard: 1 - 1024 GiB

', 'CreateVolumeRequest$Throughput' => '

The throughput to provision for a volume, with a maximum of 1,000 MiB/s.

This parameter is valid only for gp3 volumes.

Valid Range: Minimum value of 125. Maximum value of 1000.

', 'DeleteNetworkAclEntryRequest$RuleNumber' => '

The rule number of the entry to delete.

', 'DescribeCapacityBlockOfferingsRequest$InstanceCount' => '

The number of instances for which to reserve capacity.

', 'DescribeCapacityBlockOfferingsRequest$CapacityDurationHours' => '

The number of hours for which to reserve Capacity Block.

', 'DescribeElasticGpusResult$MaxResults' => '

The total number of items to return. If the total number of items available is more than the value specified in max-items then a Next-Token will be provided in the output that you can use to resume pagination.

', 'DescribeFastLaunchImagesSuccessItem$MaxParallelLaunches' => '

The maximum number of instances that Amazon EC2 can launch at the same time to create pre-provisioned snapshots for Windows fast launch.

', 'DescribeFleetHistoryRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeFleetInstancesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeFleetsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeFlowLogsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeHostReservationOfferingsRequest$MaxDuration' => '

This is the maximum duration of the reservation to purchase, specified in seconds. Reservations are available in one-year and three-year terms. The number of seconds specified must be the number of seconds in a year (365x24x60x60) times one of the supported durations (1 or 3). For example, specify 94608000 for three years.

', 'DescribeHostReservationOfferingsRequest$MinDuration' => '

This is the minimum duration of the reservation you\'d like to purchase, specified in seconds. Reservations are available in one-year and three-year terms. The number of seconds specified must be the number of seconds in a year (365x24x60x60) times one of the supported durations (1 or 3). For example, specify 31536000 for one year.

', 'DescribeHostReservationsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the returned nextToken value. This value can be between 5 and 500. If maxResults is given a larger value than 500, you receive an error.

', 'DescribeHostsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the returned nextToken value. This value can be between 5 and 500. If maxResults is given a larger value than 500, you receive an error.

You cannot specify this parameter and the host IDs parameter in the same request.

', 'DescribeImagesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeImportImageTasksRequest$MaxResults' => '

The maximum number of results to return in a single call.

', 'DescribeImportSnapshotTasksRequest$MaxResults' => '

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value.

', 'DescribeInstanceStatusRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

You cannot specify this parameter and the instance IDs parameter in the same request.

', 'DescribeInstancesRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

You cannot specify this parameter and the instance IDs parameter in the same request.

', 'DescribeLaunchTemplateVersionsRequest$MaxResults' => '

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value. This value can be between 1 and 200.

', 'DescribePrefixListsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeReservedInstancesOfferingsRequest$MaxInstanceCount' => '

The maximum number of instances to filter when searching for offerings.

Default: 20

', 'DescribeReservedInstancesOfferingsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results of the initial request can be seen by sending another request with the returned NextToken value. The maximum is 100.

Default: 100

', 'DescribeScheduledInstanceAvailabilityRequest$MaxSlotDurationInHours' => '

The maximum available duration, in hours. This value must be greater than MinSlotDurationInHours and less than 1,720.

', 'DescribeScheduledInstanceAvailabilityRequest$MinSlotDurationInHours' => '

The minimum available duration, in hours. The minimum required duration is 1,200 hours per year. For example, the minimum daily schedule is 4 hours, the minimum weekly schedule is 24 hours, and the minimum monthly schedule is 100 hours.

', 'DescribeScheduledInstancesRequest$MaxResults' => '

The maximum number of results to return in a single call. This value can be between 5 and 300. The default value is 100. To retrieve the remaining results, make another call with the returned NextToken value.

', 'DescribeSnapshotsRequest$MaxResults' => '

The maximum number of snapshots to return for this request. This value can be between 5 and 1,000; if this value is larger than 1,000, only 1,000 results are returned. If this parameter is not used, then the request returns all snapshots. You cannot specify this parameter and the snapshot IDs parameter in the same request. For more information, see Pagination.

', 'DescribeSpotFleetRequestsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeSpotInstanceRequestsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeSpotPriceHistoryRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeTagsRequest$MaxResults' => '

The maximum number of items to return for this request. This value can be between 5 and 1000. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'DescribeVolumeStatusRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. This value can be between 5 and 1,000; if the value is larger than 1,000, only 1,000 results are returned. If this parameter is not used, then all items are returned. You cannot specify this parameter and the volume IDs parameter in the same request. For more information, see Pagination.

', 'DescribeVolumesModificationsRequest$MaxResults' => '

The maximum number of results (up to a limit of 500) to be returned in a paginated request. For more information, see Pagination.

', 'DescribeVolumesRequest$MaxResults' => '

The maximum number of volumes to return for this request. This value can be between 5 and 500; if you specify a value larger than 500, only 500 items are returned. If this parameter is not used, then all items are returned. You cannot specify this parameter and the volume IDs parameter in the same request. For more information, see Pagination.

', 'DescribeVpcEndpointConnectionNotificationsRequest$MaxResults' => '

The maximum number of results to return in a single call. To retrieve the remaining results, make another request with the returned NextToken value.

', 'DescribeVpcEndpointConnectionsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results of the initial request can be seen by sending another request with the returned NextToken value. This value can be between 5 and 1,000; if MaxResults is given a value larger than 1,000, only 1,000 results are returned.

', 'DescribeVpcEndpointServiceConfigurationsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results of the initial request can be seen by sending another request with the returned NextToken value. This value can be between 5 and 1,000; if MaxResults is given a value larger than 1,000, only 1,000 results are returned.

', 'DescribeVpcEndpointServicePermissionsRequest$MaxResults' => '

The maximum number of results to return for the request in a single page. The remaining results of the initial request can be seen by sending another request with the returned NextToken value. This value can be between 5 and 1,000; if MaxResults is given a value larger than 1,000, only 1,000 results are returned.

', 'DescribeVpcEndpointServicesRequest$MaxResults' => '

The maximum number of items to return for this request. The request returns a token that you can specify in a subsequent call to get the next set of results.

Constraint: If the value is greater than 1,000, we return only 1,000 items.

', 'DescribeVpcEndpointsRequest$MaxResults' => '

The maximum number of items to return for this request. The request returns a token that you can specify in a subsequent call to get the next set of results.

Constraint: If the value is greater than 1,000, we return only 1,000 items.

', 'DisableFastLaunchResult$MaxParallelLaunches' => '

The maximum number of instances that Amazon EC2 can launch at the same time to create pre-provisioned snapshots for Windows fast launch.

', 'EbsBlockDevice$Iops' => '

The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.

The following are the supported values for each volume type:

  • gp3: 3,000 - 16,000 IOPS

  • io1: 100 - 64,000 IOPS

  • io2: 100 - 256,000 IOPS

For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.

This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS.

', 'EbsBlockDevice$VolumeSize' => '

The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.

The following are the supported sizes for each volume type:

  • gp2 and gp3: 1 - 16,384 GiB

  • io1: 4 - 16,384 GiB

  • io2: 4 - 65,536 GiB

  • st1 and sc1: 125 - 16,384 GiB

  • standard: 1 - 1024 GiB

', 'EbsBlockDevice$Throughput' => '

The throughput that the volume supports, in MiB/s.

This parameter is valid only for gp3 volumes.

Valid Range: Minimum value of 125. Maximum value of 1000.

', 'EnableFastLaunchRequest$MaxParallelLaunches' => '

The maximum number of instances that Amazon EC2 can launch at the same time to create pre-provisioned snapshots for Windows fast launch. Value must be 6 or greater.

', 'EnableFastLaunchResult$MaxParallelLaunches' => '

The maximum number of instances that Amazon EC2 can launch at the same time to create pre-provisioned snapshots for Windows fast launch.

', 'FastLaunchSnapshotConfigurationRequest$TargetResourceCount' => '

The number of pre-provisioned snapshots to keep on hand for a Windows fast launch enabled AMI.

', 'FastLaunchSnapshotConfigurationResponse$TargetResourceCount' => '

The number of pre-provisioned snapshots requested to keep on hand for a Windows fast launch enabled AMI.

', 'FleetCapacityReservation$TotalInstanceCount' => '

The total number of instances for which the Capacity Reservation reserves capacity.

', 'FleetSpotCapacityRebalance$TerminationDelay' => '

The amount of time (in seconds) that Amazon EC2 waits before terminating the old Spot Instance after launching a new replacement Spot Instance.

Required when ReplacementStrategy is set to launch-before-terminate.

Not valid when ReplacementStrategy is set to launch.

Valid values: Minimum value of 120 seconds. Maximum value of 7200 seconds.

', 'FleetSpotCapacityRebalanceRequest$TerminationDelay' => '

The amount of time (in seconds) that Amazon EC2 waits before terminating the old Spot Instance after launching a new replacement Spot Instance.

Required when ReplacementStrategy is set to launch-before-terminate.

Not valid when ReplacementStrategy is set to launch.

Valid values: Minimum value of 120 seconds. Maximum value of 7200 seconds.

', 'FlowLog$MaxAggregationInterval' => '

The maximum interval of time, in seconds, during which a flow of packets is captured and aggregated into a flow log record.

When a network interface is attached to a Nitro-based instance, the aggregation interval is always 60 seconds (1 minute) or less, regardless of the specified value.

Valid Values: 60 | 600

', 'GetAwsNetworkPerformanceDataRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetCapacityReservationUsageResult$TotalInstanceCount' => '

The number of instances for which the Capacity Reservation reserves capacity.

', 'GetCapacityReservationUsageResult$AvailableInstanceCount' => '

The remaining capacity. Indicates the number of instances that can be launched in the Capacity Reservation.

', 'GetInstanceTypesFromInstanceRequirementsRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', 'HostOffering$Duration' => '

The duration of the offering (in seconds).

', 'HostProperties$Cores' => '

The number of cores on the Dedicated Host.

', 'HostProperties$Sockets' => '

The number of sockets on the Dedicated Host.

', 'HostProperties$TotalVCpus' => '

The total number of vCPUs on the Dedicated Host.

', 'HostReservation$Count' => '

The number of Dedicated Hosts the reservation is associated with.

', 'HostReservation$Duration' => '

The length of the reservation\'s term, specified in seconds. Can be 31536000 (1 year) | 94608000 (3 years).

', 'IcmpTypeCode$Code' => '

The ICMP code. A value of -1 means all codes for the specified ICMP type.

', 'IcmpTypeCode$Type' => '

The ICMP type. A value of -1 means all types.

', 'Instance$AmiLaunchIndex' => '

The AMI launch index, which can be used to find this instance in the launch group.

', 'InstanceCapacity$AvailableCapacity' => '

The number of instances that can be launched onto the Dedicated Host based on the host\'s available capacity.

', 'InstanceCapacity$TotalCapacity' => '

The total number of instances that can be launched onto the Dedicated Host if there are no instances running on it.

', 'InstanceCount$InstanceCount' => '

The number of listed Reserved Instances in the state specified by the state.

', 'InstanceMetadataOptionsRequest$HttpPutResponseHopLimit' => '

The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel.

Default: 1

Possible values: Integers from 1 to 64

', 'InstanceMetadataOptionsResponse$HttpPutResponseHopLimit' => '

The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel.

Default: 1

Possible values: Integers from 1 to 64

', 'InstanceNetworkInterfaceAttachment$DeviceIndex' => '

The index of the device on the instance for the network interface attachment.

', 'InstanceNetworkInterfaceAttachment$NetworkCardIndex' => '

The index of the network card.

', 'InstanceNetworkInterfaceSpecification$DeviceIndex' => '

The position of the network interface in the attachment order. A primary network interface has a device index of 0.

If you specify a network interface when launching an instance, you must specify the device index.

', 'InstanceNetworkInterfaceSpecification$Ipv6AddressCount' => '

A number of IPv6 addresses to assign to the network interface. Amazon EC2 chooses the IPv6 addresses from the range of the subnet. You cannot specify this option and the option to assign specific IPv6 addresses in the same request. You can specify this option if you\'ve specified a minimum number of instances to launch.

', 'InstanceNetworkInterfaceSpecification$SecondaryPrivateIpAddressCount' => '

The number of secondary private IPv4 addresses. You can\'t specify this option and specify more than one private IP address using the private IP addresses option. You cannot specify this option if you\'re launching more than one instance in a RunInstances request.

', 'InstanceNetworkInterfaceSpecification$NetworkCardIndex' => '

The index of the network card. Some instance types support multiple network cards. The primary network interface must be assigned to network card index 0. The default is network card index 0.

If you are using RequestSpotInstances to create Spot Instances, omit this parameter because you can’t specify the network card index when using this API. To specify the network card index, use RunInstances.

', 'InstanceNetworkInterfaceSpecification$Ipv4PrefixCount' => '

The number of IPv4 delegated prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv4Prefix option.

', 'InstanceNetworkInterfaceSpecification$Ipv6PrefixCount' => '

The number of IPv6 delegated prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv6Prefix option.

', 'InstanceRequirements$SpotMaxPricePercentageOverLowestPrice' => '

[Price protection] The price protection threshold for Spot Instances, as a percentage higher than an identified Spot price. The identified Spot price is the Spot price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified Spot price is from the lowest priced current generation instance types, and failing that, from the lowest priced previous generation instance types that match your attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose Spot price exceeds your specified threshold.

The parameter accepts an integer, which Amazon EC2 interprets as a percentage.

To indicate no price protection threshold, specify a high value, such as 999999.

If you set TargetCapacityUnitType to vcpu or memory-mib, the price protection threshold is applied based on the per-vCPU or per-memory price instead of the per-instance price.

This parameter is not supported for GetSpotPlacementScores and GetInstanceTypesFromInstanceRequirements.

Only one of SpotMaxPricePercentageOverLowestPrice or MaxSpotPriceAsPercentageOfOptimalOnDemandPrice can be specified. If you don\'t specify either, then SpotMaxPricePercentageOverLowestPrice is used and the value for that parameter defaults to 100.

Default: 100

', 'InstanceRequirements$OnDemandMaxPricePercentageOverLowestPrice' => '

[Price protection] The price protection threshold for On-Demand Instances, as a percentage higher than an identified On-Demand price. The identified On-Demand price is the price of the lowest priced current generation C, M, or R instance type with your specified attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose price exceeds your specified threshold.

The parameter accepts an integer, which Amazon EC2 interprets as a percentage.

To turn off price protection, specify a high value, such as 999999.

This parameter is not supported for GetSpotPlacementScores and GetInstanceTypesFromInstanceRequirements.

If you set TargetCapacityUnitType to vcpu or memory-mib, the price protection threshold is applied based on the per-vCPU or per-memory price instead of the per-instance price.

Default: 20

', 'InstanceRequirements$MaxSpotPriceAsPercentageOfOptimalOnDemandPrice' => '

[Price protection] The price protection threshold for Spot Instances, as a percentage of an identified On-Demand price. The identified On-Demand price is the price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified price is from the lowest priced current generation instance types, and failing that, from the lowest priced previous generation instance types that match your attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose price exceeds your specified threshold.

The parameter accepts an integer, which Amazon EC2 interprets as a percentage.

To indicate no price protection threshold, specify a high value, such as 999999.

If you set DesiredCapacityType to vcpu or memory-mib, the price protection threshold is based on the per vCPU or per memory price instead of the per instance price.

Only one of SpotMaxPricePercentageOverLowestPrice or MaxSpotPriceAsPercentageOfOptimalOnDemandPrice can be specified. If you don\'t specify either, then SpotMaxPricePercentageOverLowestPrice is used and the value for that parameter defaults to 100.

', 'InstanceRequirementsRequest$SpotMaxPricePercentageOverLowestPrice' => '

[Price protection] The price protection threshold for Spot Instances, as a percentage higher than an identified Spot price. The identified Spot price is the Spot price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified Spot price is from the lowest priced current generation instance types, and failing that, from the lowest priced previous generation instance types that match your attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose Spot price exceeds your specified threshold.

The parameter accepts an integer, which Amazon EC2 interprets as a percentage.

To indicate no price protection threshold, specify a high value, such as 999999.

If you set TargetCapacityUnitType to vcpu or memory-mib, the price protection threshold is applied based on the per-vCPU or per-memory price instead of the per-instance price.

This parameter is not supported for GetSpotPlacementScores and GetInstanceTypesFromInstanceRequirements.

Only one of SpotMaxPricePercentageOverLowestPrice or MaxSpotPriceAsPercentageOfOptimalOnDemandPrice can be specified. If you don\'t specify either, then SpotMaxPricePercentageOverLowestPrice is used and the value for that parameter defaults to 100.

Default: 100

', 'InstanceRequirementsRequest$OnDemandMaxPricePercentageOverLowestPrice' => '

[Price protection] The price protection threshold for On-Demand Instances, as a percentage higher than an identified On-Demand price. The identified On-Demand price is the price of the lowest priced current generation C, M, or R instance type with your specified attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose price exceeds your specified threshold.

The parameter accepts an integer, which Amazon EC2 interprets as a percentage.

To indicate no price protection threshold, specify a high value, such as 999999.

This parameter is not supported for GetSpotPlacementScores and GetInstanceTypesFromInstanceRequirements.

If you set TargetCapacityUnitType to vcpu or memory-mib, the price protection threshold is applied based on the per-vCPU or per-memory price instead of the per-instance price.

Default: 20

', 'InstanceRequirementsRequest$MaxSpotPriceAsPercentageOfOptimalOnDemandPrice' => '

[Price protection] The price protection threshold for Spot Instances, as a percentage of an identified On-Demand price. The identified On-Demand price is the price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified price is from the lowest priced current generation instance types, and failing that, from the lowest priced previous generation instance types that match your attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose price exceeds your specified threshold.

The parameter accepts an integer, which Amazon EC2 interprets as a percentage.

To indicate no price protection threshold, specify a high value, such as 999999.

If you set DesiredCapacityType to vcpu or memory-mib, the price protection threshold is based on the per vCPU or per memory price instead of the per instance price.

Only one of SpotMaxPricePercentageOverLowestPrice or MaxSpotPriceAsPercentageOfOptimalOnDemandPrice can be specified. If you don\'t specify either, then SpotMaxPricePercentageOverLowestPrice is used and the value for that parameter defaults to 100.

', 'InstanceState$Code' => '

The state of the instance as a 16-bit unsigned integer.

The high byte is all of the bits between 2^8 and (2^16)-1, which equals decimal values between 256 and 65,535. These numerical values are used for internal purposes and should be ignored.

The low byte is all of the bits between 2^0 and (2^8)-1, which equals decimal values between 0 and 255.

The valid values for instance-state-code will all be in the range of the low byte and they are:

  • 0 : pending

  • 16 : running

  • 32 : shutting-down

  • 48 : terminated

  • 64 : stopping

  • 80 : stopped

You can ignore the high byte value by zeroing out all of the bits above 2^8 or 256 in decimal.

', 'InstanceUsage$UsedInstanceCount' => '

The number of instances the Amazon Web Services account currently has in the Capacity Reservation.

', 'IpPermission$FromPort' => '

If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP or ICMPv6, this is the type number. A value of -1 indicates all ICMP/ICMPv6 types. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.

', 'IpPermission$ToPort' => '

If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP or ICMPv6, this is the code. A value of -1 indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.

', 'Ipam$ScopeCount' => '

The number of scopes in the IPAM. The scope quota is 5. For more information on quotas, see Quotas in IPAM in the Amazon VPC IPAM User Guide.

', 'Ipam$ResourceDiscoveryAssociationCount' => '

The IPAM\'s resource discovery association count.

', 'IpamPool$PoolDepth' => '

The depth of pools in your IPAM pool. The pool depth quota is 10. For more information, see Quotas in IPAM in the Amazon VPC IPAM User Guide.

', 'IpamPoolCidr$NetmaskLength' => '

The netmask length of the CIDR you\'d like to provision to a pool. Can be used for provisioning Amazon-provided IPv6 CIDRs to top-level pools and for provisioning CIDRs to pools with source pools. Cannot be used to provision BYOIP CIDRs to top-level pools. "NetmaskLength" or "Cidr" is required.

', 'IpamScope$PoolCount' => '

The number of pools in the scope.

', 'LaunchTemplateCpuOptions$CoreCount' => '

The number of CPU cores for the instance.

', 'LaunchTemplateCpuOptions$ThreadsPerCore' => '

The number of threads per CPU core.

', 'LaunchTemplateCpuOptionsRequest$CoreCount' => '

The number of CPU cores for the instance.

', 'LaunchTemplateCpuOptionsRequest$ThreadsPerCore' => '

The number of threads per CPU core. To disable multithreading for the instance, specify a value of 1. Otherwise, specify the default value of 2.

', 'LaunchTemplateEbsBlockDevice$Iops' => '

The number of I/O operations per second (IOPS) that the volume supports.

', 'LaunchTemplateEbsBlockDevice$VolumeSize' => '

The size of the volume, in GiB.

', 'LaunchTemplateEbsBlockDevice$Throughput' => '

The throughput that the volume supports, in MiB/s.

', 'LaunchTemplateEbsBlockDeviceRequest$Iops' => '

The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.

The following are the supported values for each volume type:

  • gp3: 3,000 - 16,000 IOPS

  • io1: 100 - 64,000 IOPS

  • io2: 100 - 256,000 IOPS

For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.

This parameter is supported for io1, io2, and gp3 volumes only.

', 'LaunchTemplateEbsBlockDeviceRequest$VolumeSize' => '

The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:

  • gp2 and gp3: 1 - 16,384 GiB

  • io1: 4 - 16,384 GiB

  • io2: 4 - 65,536 GiB

  • st1 and sc1: 125 - 16,384 GiB

  • standard: 1 - 1024 GiB

', 'LaunchTemplateEbsBlockDeviceRequest$Throughput' => '

The throughput to provision for a gp3 volume, with a maximum of 1,000 MiB/s.

Valid Range: Minimum value of 125. Maximum value of 1000.

', 'LaunchTemplateElasticInferenceAcceleratorResponse$Count' => '

The number of elastic inference accelerators to attach to the instance.

Default: 1

', 'LaunchTemplateInstanceMetadataOptions$HttpPutResponseHopLimit' => '

The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel.

Default: 1

Possible values: Integers from 1 to 64

', 'LaunchTemplateInstanceMetadataOptionsRequest$HttpPutResponseHopLimit' => '

The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel.

Default: 1

Possible values: Integers from 1 to 64

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$DeviceIndex' => '

The device index for the network interface attachment.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$Ipv6AddressCount' => '

The number of IPv6 addresses for the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$SecondaryPrivateIpAddressCount' => '

The number of secondary private IPv4 addresses for the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$NetworkCardIndex' => '

The index of the network card.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$Ipv4PrefixCount' => '

The number of IPv4 prefixes that Amazon Web Services automatically assigned to the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$Ipv6PrefixCount' => '

The number of IPv6 prefixes that Amazon Web Services automatically assigned to the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$DeviceIndex' => '

The device index for the network interface attachment.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$Ipv6AddressCount' => '

The number of IPv6 addresses to assign to a network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range. You can\'t use this option if specifying specific IPv6 addresses.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$SecondaryPrivateIpAddressCount' => '

The number of secondary private IPv4 addresses to assign to a network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$NetworkCardIndex' => '

The index of the network card. Some instance types support multiple network cards. The primary network interface must be assigned to network card index 0. The default is network card index 0.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$Ipv4PrefixCount' => '

The number of IPv4 prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv4Prefix option.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$Ipv6PrefixCount' => '

The number of IPv6 prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv6Prefix option.

', 'LaunchTemplatePlacement$PartitionNumber' => '

The number of the partition the instance should launch in. Valid only if the placement group strategy is set to partition.

', 'LaunchTemplatePlacementRequest$PartitionNumber' => '

The number of the partition the instance should launch in. Valid only if the placement group strategy is set to partition.

', 'LaunchTemplateSpotMarketOptions$BlockDurationMinutes' => '

The required duration for the Spot Instances (also known as Spot blocks), in minutes. This value must be a multiple of 60 (60, 120, 180, 240, 300, or 360).

', 'LaunchTemplateSpotMarketOptionsRequest$BlockDurationMinutes' => '

Deprecated.

', 'LocalGatewayVirtualInterface$Vlan' => '

The ID of the VLAN.

', 'LocalGatewayVirtualInterface$LocalBgpAsn' => '

The Border Gateway Protocol (BGP) Autonomous System Number (ASN) of the local gateway.

', 'LocalGatewayVirtualInterface$PeerBgpAsn' => '

The peer BGP ASN.

', 'ManagedPrefixList$MaxEntries' => '

The maximum number of entries for the prefix list.

', 'MemoryMiB$Min' => '

The minimum amount of memory, in MiB. If this parameter is not specified, there is no minimum limit.

', 'MemoryMiB$Max' => '

The maximum amount of memory, in MiB. If this parameter is not specified, there is no maximum limit.

', 'MemoryMiBRequest$Min' => '

The minimum amount of memory, in MiB. To specify no minimum limit, specify 0.

', 'MemoryMiBRequest$Max' => '

The maximum amount of memory, in MiB. To specify no maximum limit, omit this parameter.

', 'ModifyCapacityReservationFleetRequest$TotalTargetCapacity' => '

The total number of capacity units to be reserved by the Capacity Reservation Fleet. This value, together with the instance type weights that you assign to each instance type used by the Fleet determine the number of instances for which the Fleet reserves capacity. Both values are based on units that make sense for your workload. For more information, see Total target capacity in the Amazon EC2 User Guide.

', 'ModifyCapacityReservationRequest$InstanceCount' => '

The number of instances for which to reserve capacity. The number of instances can\'t be increased or decreased by more than 1000 in a single request.

', 'ModifyClientVpnEndpointRequest$VpnPort' => '

The port number to assign to the Client VPN endpoint for TCP and UDP traffic.

Valid Values: 443 | 1194

Default Value: 443

', 'ModifyClientVpnEndpointRequest$SessionTimeoutHours' => '

The maximum VPN session duration time in hours.

Valid values: 8 | 10 | 12 | 24

Default value: 24

', 'ModifyInstanceMetadataOptionsRequest$HttpPutResponseHopLimit' => '

The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel. If no parameter is specified, the existing state is maintained.

Possible values: Integers from 1 to 64

', 'ModifyInstancePlacementRequest$PartitionNumber' => '

The number of the partition in which to place the instance. Valid only if the placement group strategy is set to partition.

', 'ModifyManagedPrefixListRequest$MaxEntries' => '

The maximum number of entries for the prefix list. You cannot modify the entries of a prefix list and modify the size of a prefix list at the same time.

If any of the resources that reference the prefix list cannot support the new maximum size, the modify operation fails. Check the state message for the IDs of the first ten resources that do not support the new maximum size.

', 'ModifySpotFleetRequestRequest$TargetCapacity' => '

The size of the fleet.

', 'ModifySpotFleetRequestRequest$OnDemandTargetCapacity' => '

The number of On-Demand Instances in the fleet.

', 'ModifySubnetAttributeRequest$EnableLniAtDeviceIndex' => '

Indicates the device position for local network interfaces in this subnet. For example, 1 indicates local network interfaces in this subnet are the secondary network interface (eth1). A local network interface cannot be the primary network interface (eth0).

', 'ModifyTrafficMirrorFilterRuleRequest$RuleNumber' => '

The number of the Traffic Mirror rule. This number must be unique for each Traffic Mirror rule in a given direction. The rules are processed in ascending order by rule number.

', 'ModifyTrafficMirrorFilterRuleRequest$Protocol' => '

The protocol, for example TCP, to assign to the Traffic Mirror rule.

', 'ModifyTrafficMirrorSessionRequest$PacketLength' => '

The number of bytes in each packet to mirror. These are bytes after the VXLAN header. To mirror a subset, set this to the length (in bytes) to mirror. For example, if you set this value to 100, then the first 100 bytes that meet the filter criteria are copied to the target. Do not specify this parameter when you want to mirror the entire packet.

For sessions with Network Load Balancer (NLB) traffic mirror targets, the default PacketLength will be set to 8500. Valid values are 1-8500. Setting a PacketLength greater than 8500 will result in an error response.

', 'ModifyTrafficMirrorSessionRequest$SessionNumber' => '

The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.

Valid values are 1-32766.

', 'ModifyTrafficMirrorSessionRequest$VirtualNetworkId' => '

The virtual network ID of the Traffic Mirror session.

', 'ModifyVolumeRequest$Size' => '

The target size of the volume, in GiB. The target volume size must be greater than or equal to the existing size of the volume.

The following are the supported volumes sizes for each volume type:

  • gp2 and gp3: 1 - 16,384 GiB

  • io1: 4 - 16,384 GiB

  • io2: 4 - 65,536 GiB

  • st1 and sc1: 125 - 16,384 GiB

  • standard: 1 - 1024 GiB

Default: The existing size is retained.

', 'ModifyVolumeRequest$Iops' => '

The target IOPS rate of the volume. This parameter is valid only for gp3, io1, and io2 volumes.

The following are the supported values for each volume type:

  • gp3: 3,000 - 16,000 IOPS

  • io1: 100 - 64,000 IOPS

  • io2: 100 - 256,000 IOPS

For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.

Default: The existing value is retained if you keep the same volume type. If you change the volume type to io1, io2, or gp3, the default is 3,000.

', 'ModifyVolumeRequest$Throughput' => '

The target throughput of the volume, in MiB/s. This parameter is valid only for gp3 volumes. The maximum value is 1,000.

Default: The existing value is retained if the source and target volume type is gp3. Otherwise, the default value is 125.

Valid Range: Minimum value of 125. Maximum value of 1000.

', 'ModifyVpnTunnelOptionsSpecification$Phase1LifetimeSeconds' => '

The lifetime for phase 1 of the IKE negotiation, in seconds.

Constraints: A value between 900 and 28,800.

Default: 28800

', 'ModifyVpnTunnelOptionsSpecification$Phase2LifetimeSeconds' => '

The lifetime for phase 2 of the IKE negotiation, in seconds.

Constraints: A value between 900 and 3,600. The value must be less than the value for Phase1LifetimeSeconds.

Default: 3600

', 'ModifyVpnTunnelOptionsSpecification$RekeyMarginTimeSeconds' => '

The margin time, in seconds, before the phase 2 lifetime expires, during which the Amazon Web Services side of the VPN connection performs an IKE rekey. The exact time of the rekey is randomly selected based on the value for RekeyFuzzPercentage.

Constraints: A value between 60 and half of Phase2LifetimeSeconds.

Default: 270

', 'ModifyVpnTunnelOptionsSpecification$RekeyFuzzPercentage' => '

The percentage of the rekey window (determined by RekeyMarginTimeSeconds) during which the rekey time is randomly selected.

Constraints: A value between 0 and 100.

Default: 100

', 'ModifyVpnTunnelOptionsSpecification$ReplayWindowSize' => '

The number of packets in an IKE replay window.

Constraints: A value between 64 and 2048.

Default: 1024

', 'ModifyVpnTunnelOptionsSpecification$DPDTimeoutSeconds' => '

The number of seconds after which a DPD timeout occurs. A DPD timeout of 40 seconds means that the VPN endpoint will consider the peer dead 30 seconds after the first failed keep-alive.

Constraints: A value greater than or equal to 30.

Default: 40

', 'NetworkAclEntry$RuleNumber' => '

The rule number for the entry. ACL entries are processed in ascending order by rule number.

', 'NetworkInsightsAccessScopeAnalysis$AnalyzedEniCount' => '

The number of network interfaces analyzed.

', 'NetworkInsightsPath$DestinationPort' => '

The destination port.

', 'NetworkInterfaceAttachment$DeviceIndex' => '

The device index of the network interface attachment on the instance.

', 'NetworkInterfaceAttachment$NetworkCardIndex' => '

The index of the network card.

', 'NetworkInterfaceCount$Min' => '

The minimum number of network interfaces. If this parameter is not specified, there is no minimum limit.

', 'NetworkInterfaceCount$Max' => '

The maximum number of network interfaces. If this parameter is not specified, there is no maximum limit.

', 'NetworkInterfaceCountRequest$Min' => '

The minimum number of network interfaces. To specify no minimum limit, omit this parameter.

', 'NetworkInterfaceCountRequest$Max' => '

The maximum number of network interfaces. To specify no maximum limit, omit this parameter.

', 'OccurrenceDayRequestSet$member' => NULL, 'OccurrenceDaySet$member' => NULL, 'OnDemandOptions$MinTargetCapacity' => '

The minimum target capacity for On-Demand Instances in the fleet. If the minimum target capacity is not reached, the fleet launches no instances.

Supported only for fleets of type instant.

At least one of the following must be specified: SingleAvailabilityZone | SingleInstanceType

', 'OnDemandOptionsRequest$MinTargetCapacity' => '

The minimum target capacity for On-Demand Instances in the fleet. If the minimum target capacity is not reached, the fleet launches no instances.

Supported only for fleets of type instant.

At least one of the following must be specified: SingleAvailabilityZone | SingleInstanceType

', 'PathComponent$SequenceNumber' => '

The sequence number.

', 'Phase1DHGroupNumbersListValue$Value' => '

The Diffie-Hellmann group number.

', 'Phase1DHGroupNumbersRequestListValue$Value' => '

The Diffie-Hellmann group number.

', 'Phase2DHGroupNumbersListValue$Value' => '

The Diffie-Hellmann group number.

', 'Phase2DHGroupNumbersRequestListValue$Value' => '

The Diffie-Hellmann group number.

', 'Placement$PartitionNumber' => '

The number of the partition that the instance is in. Valid only if the placement group strategy is set to partition.

This parameter is not supported for CreateFleet.

', 'PlacementGroup$PartitionCount' => '

The number of partitions. Valid only if strategy is set to partition.

', 'PortRange$From' => '

The first port in the range.

', 'PortRange$To' => '

The last port in the range.

', 'PricingDetail$Count' => '

The number of reservations available for the price.

', 'ProvisionIpamPoolCidrRequest$NetmaskLength' => '

The netmask length of the CIDR you\'d like to provision to a pool. Can be used for provisioning Amazon-provided IPv6 CIDRs to top-level pools and for provisioning CIDRs to pools with source pools. Cannot be used to provision BYOIP CIDRs to top-level pools. Either "NetmaskLength" or "Cidr" is required.

', 'ProvisionPublicIpv4PoolCidrRequest$NetmaskLength' => '

The netmask length of the CIDR you would like to allocate to the public IPv4 pool.

', 'PublicIpv4Pool$TotalAddressCount' => '

The total number of addresses.

', 'PublicIpv4Pool$TotalAvailableAddressCount' => '

The total number of available addresses.

', 'PublicIpv4PoolRange$AddressCount' => '

The number of addresses in the range.

', 'PublicIpv4PoolRange$AvailableAddressCount' => '

The number of available addresses in the range.

', 'Purchase$Duration' => '

The duration of the reservation\'s term in seconds.

', 'PurchaseRequest$InstanceCount' => '

The number of instances.

', 'PurchaseReservedInstancesOfferingRequest$InstanceCount' => '

The number of Reserved Instances to purchase.

', 'ReplaceNetworkAclEntryRequest$RuleNumber' => '

The rule number of the entry to replace.

', 'RequestSpotInstancesRequest$BlockDurationMinutes' => '

Deprecated.

', 'RequestSpotInstancesRequest$InstanceCount' => '

The maximum number of Spot Instances to launch.

Default: 1

', 'ReservedInstances$InstanceCount' => '

The number of reservations purchased.

', 'ReservedInstancesConfiguration$InstanceCount' => '

The number of modified Reserved Instances.

This is a required field for a request.

', 'RestoreSnapshotFromRecycleBinResult$VolumeSize' => '

The size of the volume, in GiB.

', 'RestoreSnapshotTierResult$RestoreDuration' => '

For temporary restores only. The number of days for which the archived snapshot is temporarily restored.

', 'RevokeSecurityGroupEgressRequest$FromPort' => '

Not supported. Use a set of IP permissions to specify the port.

', 'RevokeSecurityGroupEgressRequest$ToPort' => '

Not supported. Use a set of IP permissions to specify the port.

', 'RevokeSecurityGroupIngressRequest$FromPort' => '

If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP, this is the type number. A value of -1 indicates all ICMP types.

', 'RevokeSecurityGroupIngressRequest$ToPort' => '

If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP, this is the code. A value of -1 indicates all ICMP codes.

', 'RunInstancesRequest$Ipv6AddressCount' => '

The number of IPv6 addresses to associate with the primary network interface. Amazon EC2 chooses the IPv6 addresses from the range of your subnet. You cannot specify this option and the option to assign specific IPv6 addresses in the same request. You can specify this option if you\'ve specified a minimum number of instances to launch.

You cannot specify this option and the network interfaces option in the same request.

', 'RunInstancesRequest$MaxCount' => '

The maximum number of instances to launch. If you specify more instances than Amazon EC2 can launch in the target Availability Zone, Amazon EC2 launches the largest possible number of instances above MinCount.

Constraints: Between 1 and the maximum number you\'re allowed for the specified instance type. For more information about the default limits, and how to request an increase, see How many instances can I run in Amazon EC2 in the Amazon EC2 FAQ.

', 'RunInstancesRequest$MinCount' => '

The minimum number of instances to launch. If you specify a minimum that is more instances than Amazon EC2 can launch in the target Availability Zone, Amazon EC2 launches no instances.

Constraints: Between 1 and the maximum number you\'re allowed for the specified instance type. For more information about the default limits, and how to request an increase, see How many instances can I run in Amazon EC2 in the Amazon EC2 General FAQ.

', 'RunScheduledInstancesRequest$InstanceCount' => '

The number of instances.

Default: 1

', 'ScheduledInstance$InstanceCount' => '

The number of instances.

', 'ScheduledInstance$SlotDurationInHours' => '

The number of hours in the schedule.

', 'ScheduledInstance$TotalScheduledInstanceHours' => '

The total number of hours for a single instance for the entire term.

', 'ScheduledInstanceAvailability$AvailableInstanceCount' => '

The number of available instances.

', 'ScheduledInstanceAvailability$MaxTermDurationInDays' => '

The maximum term. The only possible value is 365 days.

', 'ScheduledInstanceAvailability$MinTermDurationInDays' => '

The minimum term. The only possible value is 365 days.

', 'ScheduledInstanceAvailability$SlotDurationInHours' => '

The number of hours in the schedule.

', 'ScheduledInstanceAvailability$TotalScheduledInstanceHours' => '

The total number of hours for a single instance for the entire term.

', 'ScheduledInstanceRecurrence$Interval' => '

The interval quantity. The interval unit depends on the value of frequency. For example, every 2 weeks or every 2 months.

', 'ScheduledInstanceRecurrenceRequest$Interval' => '

The interval quantity. The interval unit depends on the value of Frequency. For example, every 2 weeks or every 2 months.

', 'ScheduledInstancesEbs$Iops' => '

The number of I/O operations per second (IOPS) to provision for a gp3, io1, or io2 volume.

', 'ScheduledInstancesEbs$VolumeSize' => '

The size of the volume, in GiB.

Default: If you\'re creating the volume from a snapshot and don\'t specify a volume size, the default is the snapshot size.

', 'ScheduledInstancesNetworkInterface$DeviceIndex' => '

The index of the device for the network interface attachment.

', 'ScheduledInstancesNetworkInterface$Ipv6AddressCount' => '

The number of IPv6 addresses to assign to the network interface. The IPv6 addresses are automatically selected from the subnet range.

', 'ScheduledInstancesNetworkInterface$SecondaryPrivateIpAddressCount' => '

The number of secondary private IPv4 addresses.

', 'SecurityGroupRule$FromPort' => '

If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP or ICMPv6, this is the type number. A value of -1 indicates all ICMP/ICMPv6 types. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.

', 'SecurityGroupRule$ToPort' => '

If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP or ICMPv6, this is the type number. A value of -1 indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.

', 'SecurityGroupRuleRequest$FromPort' => '

If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP or ICMPv6, this is the type number. A value of -1 indicates all ICMP/ICMPv6 types. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.

', 'SecurityGroupRuleRequest$ToPort' => '

If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP or ICMPv6, this is the code. A value of -1 indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.

', 'Snapshot$VolumeSize' => '

The size of the volume, in GiB.

', 'SnapshotInfo$VolumeSize' => '

Size of the volume from which this snapshot was created.

', 'SnapshotTierStatus$LastTieringProgress' => '

The progress of the last archive or restore process, as a percentage.

', 'SpotCapacityRebalance$TerminationDelay' => '

The amount of time (in seconds) that Amazon EC2 waits before terminating the old Spot Instance after launching a new replacement Spot Instance.

Required when ReplacementStrategy is set to launch-before-terminate.

Not valid when ReplacementStrategy is set to launch.

Valid values: Minimum value of 120 seconds. Maximum value of 7200 seconds.

', 'SpotFleetRequestConfigData$TargetCapacity' => '

The number of units to request for the Spot Fleet. You can choose to set the target capacity in terms of instances or a performance characteristic that is important to your application workload, such as vCPUs, memory, or I/O. If the request type is maintain, you can specify a target capacity of 0 and add capacity later.

', 'SpotFleetRequestConfigData$OnDemandTargetCapacity' => '

The number of On-Demand units to request. You can choose to set the target capacity in terms of instances or a performance characteristic that is important to your application workload, such as vCPUs, memory, or I/O. If the request type is maintain, you can specify a target capacity of 0 and add capacity later.

', 'SpotFleetRequestConfigData$InstancePoolsToUseCount' => '

The number of Spot pools across which to allocate your target Spot capacity. Valid only when Spot AllocationStrategy is set to lowest-price. Spot Fleet selects the cheapest Spot pools and evenly allocates your target Spot capacity across the number of Spot pools that you specify.

Note that Spot Fleet attempts to draw Spot Instances from the number of pools that you specify on a best effort basis. If a pool runs out of Spot capacity before fulfilling your target capacity, Spot Fleet will continue to fulfill your request by drawing from the next cheapest pool. To ensure that your target capacity is met, you might receive Spot Instances from more than the number of pools that you specified. Similarly, if most of the pools have no Spot capacity, you might receive your full target capacity from fewer than the number of pools that you specified.

', 'SpotInstanceRequest$BlockDurationMinutes' => '

Deprecated.

', 'SpotMarketOptions$BlockDurationMinutes' => '

Deprecated.

', 'SpotOptions$InstancePoolsToUseCount' => '

The number of Spot pools across which to allocate your target Spot capacity. Supported only when AllocationStrategy is set to lowest-price. EC2 Fleet selects the cheapest Spot pools and evenly allocates your target Spot capacity across the number of Spot pools that you specify.

Note that EC2 Fleet attempts to draw Spot Instances from the number of pools that you specify on a best effort basis. If a pool runs out of Spot capacity before fulfilling your target capacity, EC2 Fleet will continue to fulfill your request by drawing from the next cheapest pool. To ensure that your target capacity is met, you might receive Spot Instances from more than the number of pools that you specified. Similarly, if most of the pools have no Spot capacity, you might receive your full target capacity from fewer than the number of pools that you specified.

', 'SpotOptions$MinTargetCapacity' => '

The minimum target capacity for Spot Instances in the fleet. If the minimum target capacity is not reached, the fleet launches no instances.

Supported only for fleets of type instant.

At least one of the following must be specified: SingleAvailabilityZone | SingleInstanceType

', 'SpotOptionsRequest$InstancePoolsToUseCount' => '

The number of Spot pools across which to allocate your target Spot capacity. Supported only when Spot AllocationStrategy is set to lowest-price. EC2 Fleet selects the cheapest Spot pools and evenly allocates your target Spot capacity across the number of Spot pools that you specify.

Note that EC2 Fleet attempts to draw Spot Instances from the number of pools that you specify on a best effort basis. If a pool runs out of Spot capacity before fulfilling your target capacity, EC2 Fleet will continue to fulfill your request by drawing from the next cheapest pool. To ensure that your target capacity is met, you might receive Spot Instances from more than the number of pools that you specified. Similarly, if most of the pools have no Spot capacity, you might receive your full target capacity from fewer than the number of pools that you specified.

', 'SpotOptionsRequest$MinTargetCapacity' => '

The minimum target capacity for Spot Instances in the fleet. If the minimum target capacity is not reached, the fleet launches no instances.

Supported only for fleets of type instant.

At least one of the following must be specified: SingleAvailabilityZone | SingleInstanceType

', 'SpotPlacementScore$Score' => '

The placement score, on a scale from 1 to 10. A score of 10 indicates that your Spot request is highly likely to succeed in this Region or Availability Zone. A score of 1 indicates that your Spot request is not likely to succeed.

', 'StaleIpPermission$FromPort' => '

The start of the port range for the TCP and UDP protocols, or an ICMP type number. A value of -1 indicates all ICMP types.

', 'StaleIpPermission$ToPort' => '

The end of the port range for the TCP and UDP protocols, or an ICMP type number. A value of -1 indicates all ICMP types.

', 'StoreImageTaskResult$ProgressPercentage' => '

The progress of the task as a percentage.

', 'Subnet$AvailableIpAddressCount' => '

The number of unused private IPv4 addresses in the subnet. The IPv4 addresses for any stopped instances are considered unavailable.

', 'Subnet$EnableLniAtDeviceIndex' => '

Indicates the device position for local network interfaces in this subnet. For example, 1 indicates local network interfaces in this subnet are the secondary network interface (eth1).

', 'TargetCapacitySpecification$TotalTargetCapacity' => '

The number of units to request, filled the default target capacity type.

', 'TargetCapacitySpecification$OnDemandTargetCapacity' => '

The number of On-Demand units to request. If you specify a target capacity for Spot units, you cannot specify a target capacity for On-Demand units.

', 'TargetCapacitySpecification$SpotTargetCapacity' => '

The maximum number of Spot units to launch. If you specify a target capacity for On-Demand units, you cannot specify a target capacity for Spot units.

', 'TargetCapacitySpecificationRequest$TotalTargetCapacity' => '

The number of units to request, filled using the default target capacity type.

', 'TargetCapacitySpecificationRequest$OnDemandTargetCapacity' => '

The number of On-Demand units to request.

', 'TargetCapacitySpecificationRequest$SpotTargetCapacity' => '

The number of Spot units to request.

', 'TargetConfiguration$InstanceCount' => '

The number of instances the Convertible Reserved Instance offering can be applied to. This parameter is reserved and cannot be specified in a request

', 'TargetConfigurationRequest$InstanceCount' => '

The number of instances the Convertible Reserved Instance offering can be applied to. This parameter is reserved and cannot be specified in a request

', 'TrafficMirrorFilterRule$RuleNumber' => '

The rule number of the Traffic Mirror rule.

', 'TrafficMirrorFilterRule$Protocol' => '

The protocol assigned to the Traffic Mirror rule.

', 'TrafficMirrorPortRange$FromPort' => '

The start of the Traffic Mirror port range. This applies to the TCP and UDP protocols.

', 'TrafficMirrorPortRange$ToPort' => '

The end of the Traffic Mirror port range. This applies to the TCP and UDP protocols.

', 'TrafficMirrorPortRangeRequest$FromPort' => '

The first port in the Traffic Mirror port range. This applies to the TCP and UDP protocols.

', 'TrafficMirrorPortRangeRequest$ToPort' => '

The last port in the Traffic Mirror port range. This applies to the TCP and UDP protocols.

', 'TrafficMirrorSession$PacketLength' => '

The number of bytes in each packet to mirror. These are the bytes after the VXLAN header. To mirror a subset, set this to the length (in bytes) to mirror. For example, if you set this value to 100, then the first 100 bytes that meet the filter criteria are copied to the target. Do not specify this parameter when you want to mirror the entire packet

', 'TrafficMirrorSession$SessionNumber' => '

The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.

Valid values are 1-32766.

', 'TrafficMirrorSession$VirtualNetworkId' => '

The virtual network ID associated with the Traffic Mirror session.

', 'TrunkInterfaceAssociation$VlanId' => '

The ID of the VLAN when you use the VLAN protocol.

', 'TrunkInterfaceAssociation$GreKey' => '

The application key when you use the GRE protocol.

', 'TunnelOption$Phase1LifetimeSeconds' => '

The lifetime for phase 1 of the IKE negotiation, in seconds.

', 'TunnelOption$Phase2LifetimeSeconds' => '

The lifetime for phase 2 of the IKE negotiation, in seconds.

', 'TunnelOption$RekeyMarginTimeSeconds' => '

The margin time, in seconds, before the phase 2 lifetime expires, during which the Amazon Web Services side of the VPN connection performs an IKE rekey.

', 'TunnelOption$RekeyFuzzPercentage' => '

The percentage of the rekey window determined by RekeyMarginTimeSeconds during which the rekey time is randomly selected.

', 'TunnelOption$ReplayWindowSize' => '

The number of packets in an IKE replay window.

', 'TunnelOption$DpdTimeoutSeconds' => '

The number of seconds after which a DPD timeout occurs.

', 'VCpuCountRange$Min' => '

The minimum number of vCPUs. If the value is 0, there is no minimum limit.

', 'VCpuCountRange$Max' => '

The maximum number of vCPUs. If this parameter is not specified, there is no maximum limit.

', 'VCpuCountRangeRequest$Min' => '

The minimum number of vCPUs. To specify no minimum limit, specify 0.

', 'VCpuCountRangeRequest$Max' => '

The maximum number of vCPUs. To specify no maximum limit, omit this parameter.

', 'VgwTelemetry$AcceptedRouteCount' => '

The number of accepted routes.

', 'Volume$Size' => '

The size of the volume, in GiBs.

', 'Volume$Iops' => '

The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.

', 'Volume$Throughput' => '

The throughput that the volume supports, in MiB/s.

', 'VolumeModification$TargetSize' => '

The target size of the volume, in GiB.

', 'VolumeModification$TargetIops' => '

The target IOPS rate of the volume.

', 'VolumeModification$TargetThroughput' => '

The target throughput of the volume, in MiB/s.

', 'VolumeModification$OriginalSize' => '

The original size of the volume, in GiB.

', 'VolumeModification$OriginalIops' => '

The original IOPS rate of the volume.

', 'VolumeModification$OriginalThroughput' => '

The original throughput of the volume, in MiB/s.

', 'VpnTunnelOptionsSpecification$Phase1LifetimeSeconds' => '

The lifetime for phase 1 of the IKE negotiation, in seconds.

Constraints: A value between 900 and 28,800.

Default: 28800

', 'VpnTunnelOptionsSpecification$Phase2LifetimeSeconds' => '

The lifetime for phase 2 of the IKE negotiation, in seconds.

Constraints: A value between 900 and 3,600. The value must be less than the value for Phase1LifetimeSeconds.

Default: 3600

', 'VpnTunnelOptionsSpecification$RekeyMarginTimeSeconds' => '

The margin time, in seconds, before the phase 2 lifetime expires, during which the Amazon Web Services side of the VPN connection performs an IKE rekey. The exact time of the rekey is randomly selected based on the value for RekeyFuzzPercentage.

Constraints: A value between 60 and half of Phase2LifetimeSeconds.

Default: 270

', 'VpnTunnelOptionsSpecification$RekeyFuzzPercentage' => '

The percentage of the rekey window (determined by RekeyMarginTimeSeconds) during which the rekey time is randomly selected.

Constraints: A value between 0 and 100.

Default: 100

', 'VpnTunnelOptionsSpecification$ReplayWindowSize' => '

The number of packets in an IKE replay window.

Constraints: A value between 64 and 2048.

Default: 1024

', 'VpnTunnelOptionsSpecification$DPDTimeoutSeconds' => '

The number of seconds after which a DPD timeout occurs.

Constraints: A value greater than or equal to 30.

Default: 30

', ], ], 'IntegerWithConstraints' => [ 'base' => NULL, 'refs' => [ 'FleetCapacityReservation$Priority' => '

The priority of the instance type in the Capacity Reservation Fleet. For more information, see Instance type priority in the Amazon EC2 User Guide.

', 'ReservationFleetInstanceSpecification$Priority' => '

The priority to assign to the instance type. This value is used to determine which of the instance types specified for the Fleet should be prioritized for use. A lower value indicates a high priority. For more information, see Instance type priority in the Amazon EC2 User Guide.

', ], ], 'IntegrateServices' => [ 'base' => '

Describes service integrations with VPC Flow logs.

', 'refs' => [ 'GetFlowLogsIntegrationTemplateRequest$IntegrateServices' => '

Information about the service integration.

', ], ], 'InterfacePermissionType' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInterfacePermissionRequest$Permission' => '

The type of permission to grant.

', 'NetworkInterfacePermission$Permission' => '

The type of permission.

', ], ], 'InterfaceProtocolType' => [ 'base' => NULL, 'refs' => [ 'TrunkInterfaceAssociation$InterfaceProtocol' => '

The interface protocol. Valid values are VLAN and GRE.

', ], ], 'InternetGateway' => [ 'base' => '

Describes an internet gateway.

', 'refs' => [ 'CreateInternetGatewayResult$InternetGateway' => '

Information about the internet gateway.

', 'InternetGatewayList$member' => NULL, ], ], 'InternetGatewayAttachment' => [ 'base' => '

Describes the attachment of a VPC to an internet gateway or an egress-only internet gateway.

', 'refs' => [ 'InternetGatewayAttachmentList$member' => NULL, ], ], 'InternetGatewayAttachmentList' => [ 'base' => NULL, 'refs' => [ 'EgressOnlyInternetGateway$Attachments' => '

Information about the attachment of the egress-only internet gateway.

', 'InternetGateway$Attachments' => '

Any VPCs attached to the internet gateway.

', ], ], 'InternetGatewayId' => [ 'base' => NULL, 'refs' => [ 'AttachInternetGatewayRequest$InternetGatewayId' => '

The ID of the internet gateway.

', 'DeleteInternetGatewayRequest$InternetGatewayId' => '

The ID of the internet gateway.

', 'DetachInternetGatewayRequest$InternetGatewayId' => '

The ID of the internet gateway.

', 'InternetGatewayIdList$member' => NULL, ], ], 'InternetGatewayIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeInternetGatewaysRequest$InternetGatewayIds' => '

The IDs of the internet gateways.

Default: Describes all your internet gateways.

', ], ], 'InternetGatewayList' => [ 'base' => NULL, 'refs' => [ 'DescribeInternetGatewaysResult$InternetGateways' => '

Information about one or more internet gateways.

', ], ], 'IpAddress' => [ 'base' => NULL, 'refs' => [ 'AnalysisLoadBalancerTarget$Address' => '

The IP address.

', 'CreateNetworkInsightsPathRequest$SourceIp' => '

The IP address of the source.

', 'CreateNetworkInsightsPathRequest$DestinationIp' => '

The IP address of the destination.

', 'Explanation$Address' => '

The IPv4 address, in CIDR notation.

', 'IpAddressList$member' => NULL, 'NetworkInsightsPath$SourceIp' => '

The IP address of the source.

', 'NetworkInsightsPath$DestinationIp' => '

The IP address of the destination.

', 'PathFilter$SourceAddress' => '

The source IPv4 address.

', 'PathFilter$DestinationAddress' => '

The destination IPv4 address.

', 'PathRequestFilter$SourceAddress' => '

The source IPv4 address.

', 'PathRequestFilter$DestinationAddress' => '

The destination IPv4 address.

', ], ], 'IpAddressList' => [ 'base' => NULL, 'refs' => [ 'AnalysisPacketHeader$DestinationAddresses' => '

The destination addresses.

', 'AnalysisPacketHeader$SourceAddresses' => '

The source addresses.

', 'Explanation$Addresses' => '

The IPv4 addresses, in CIDR notation.

', ], ], 'IpAddressType' => [ 'base' => NULL, 'refs' => [ 'CreateVpcEndpointRequest$IpAddressType' => '

The IP address type for the endpoint.

', 'ModifyVpcEndpointRequest$IpAddressType' => '

The IP address type for the endpoint.

', 'VpcEndpoint$IpAddressType' => '

The IP address type for the endpoint.

', 'VpcEndpointConnection$IpAddressType' => '

The IP address type for the endpoint.

', ], ], 'IpList' => [ 'base' => NULL, 'refs' => [ 'AssignPrivateNatGatewayAddressRequest$PrivateIpAddresses' => '

The private IPv4 addresses you want to assign to the private NAT gateway.

', 'AssociateNatGatewayAddressRequest$PrivateIpAddresses' => '

The private IPv4 addresses that you want to assign to the NAT gateway.

', 'CreateNatGatewayRequest$SecondaryPrivateIpAddresses' => '

Secondary private IPv4 addresses. For more information about secondary addresses, see Create a NAT gateway in the Amazon VPC User Guide.

', 'UnassignPrivateNatGatewayAddressRequest$PrivateIpAddresses' => '

The private IPv4 addresses you want to unassign.

', ], ], 'IpPermission' => [ 'base' => '

Describes a set of permissions for a security group rule.

', 'refs' => [ 'IpPermissionList$member' => NULL, ], ], 'IpPermissionList' => [ 'base' => NULL, 'refs' => [ 'AuthorizeSecurityGroupEgressRequest$IpPermissions' => '

The sets of IP permissions. You can\'t specify a destination security group and a CIDR IP address range in the same set of permissions.

', 'AuthorizeSecurityGroupIngressRequest$IpPermissions' => '

The sets of IP permissions.

', 'RevokeSecurityGroupEgressRequest$IpPermissions' => '

The sets of IP permissions. You can\'t specify a destination security group and a CIDR IP address range in the same set of permissions.

', 'RevokeSecurityGroupEgressResult$UnknownIpPermissions' => '

The outbound rules that were unknown to the service. In some cases, unknownIpPermissionSet might be in a different format from the request parameter.

', 'RevokeSecurityGroupIngressRequest$IpPermissions' => '

The sets of IP permissions. You can\'t specify a source security group and a CIDR IP address range in the same set of permissions.

', 'RevokeSecurityGroupIngressResult$UnknownIpPermissions' => '

The inbound rules that were unknown to the service. In some cases, unknownIpPermissionSet might be in a different format from the request parameter.

', 'SecurityGroup$IpPermissions' => '

The inbound rules associated with the security group.

', 'SecurityGroup$IpPermissionsEgress' => '

The outbound rules associated with the security group.

', 'UpdateSecurityGroupRuleDescriptionsEgressRequest$IpPermissions' => '

The IP permissions for the security group rule. You must specify either the IP permissions or the description.

', 'UpdateSecurityGroupRuleDescriptionsIngressRequest$IpPermissions' => '

The IP permissions for the security group rule. You must specify either IP permissions or a description.

', ], ], 'IpPrefixList' => [ 'base' => NULL, 'refs' => [ 'AssignIpv6AddressesRequest$Ipv6Prefixes' => '

One or more IPv6 prefixes assigned to the network interface. You cannot use this option if you use the Ipv6PrefixCount option.

', 'AssignIpv6AddressesResult$AssignedIpv6Prefixes' => '

The IPv6 prefixes that are assigned to the network interface.

', 'AssignPrivateIpAddressesRequest$Ipv4Prefixes' => '

One or more IPv4 prefixes assigned to the network interface. You cannot use this option if you use the Ipv4PrefixCount option.

', 'UnassignIpv6AddressesRequest$Ipv6Prefixes' => '

The IPv6 prefixes to unassign from the network interface.

', 'UnassignIpv6AddressesResult$UnassignedIpv6Prefixes' => '

The IPv4 prefixes that have been unassigned from the network interface.

', 'UnassignPrivateIpAddressesRequest$Ipv4Prefixes' => '

The IPv4 prefixes to unassign from the network interface.

', ], ], 'IpRange' => [ 'base' => '

Describes an IPv4 range.

', 'refs' => [ 'IpRangeList$member' => NULL, ], ], 'IpRangeList' => [ 'base' => NULL, 'refs' => [ 'IpPermission$IpRanges' => '

The IPv4 ranges.

', ], ], 'IpRanges' => [ 'base' => NULL, 'refs' => [ 'StaleIpPermission$IpRanges' => '

The IP ranges. Not applicable for stale security group rules.

', ], ], 'Ipam' => [ 'base' => '

IPAM is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across Amazon Web Services Regions and accounts throughout your Amazon Web Services Organization. For more information, see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'refs' => [ 'CreateIpamResult$Ipam' => '

Information about the IPAM created.

', 'DeleteIpamResult$Ipam' => '

Information about the results of the deletion.

', 'IpamSet$member' => NULL, 'ModifyIpamResult$Ipam' => '

The results of the modification.

', ], ], 'IpamAddressHistoryMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetIpamAddressHistoryRequest$MaxResults' => '

The maximum number of historical results you would like returned per page. Defaults to 100.

', ], ], 'IpamAddressHistoryRecord' => [ 'base' => '

The historical record of a CIDR within an IPAM scope. For more information, see View the history of IP addresses in the Amazon VPC IPAM User Guide.

', 'refs' => [ 'IpamAddressHistoryRecordSet$member' => NULL, ], ], 'IpamAddressHistoryRecordSet' => [ 'base' => NULL, 'refs' => [ 'GetIpamAddressHistoryResult$HistoryRecords' => '

A historical record for a CIDR within an IPAM scope. If the CIDR is associated with an EC2 instance, you will see an object in the response for the instance and one for the network interface.

', ], ], 'IpamAddressHistoryResourceType' => [ 'base' => NULL, 'refs' => [ 'IpamAddressHistoryRecord$ResourceType' => '

The type of the resource.

', ], ], 'IpamAssociatedResourceDiscoveryStatus' => [ 'base' => NULL, 'refs' => [ 'IpamResourceDiscoveryAssociation$ResourceDiscoveryStatus' => '

The resource discovery status.

  • active - Connection or permissions required to read the results of the resource discovery are intact.

  • not-found - Connection or permissions required to read the results of the resource discovery are broken. This may happen if the owner of the resource discovery stopped sharing it or deleted the resource discovery. Verify the resource discovery still exists and the Amazon Web Services RAM resource share is still intact.

', ], ], 'IpamCidrAuthorizationContext' => [ 'base' => '

A signed document that proves that you are authorized to bring the specified IP address range to Amazon using BYOIP.

', 'refs' => [ 'ProvisionIpamPoolCidrRequest$CidrAuthorizationContext' => '

A signed document that proves that you are authorized to bring a specified IP address range to Amazon using BYOIP. This option applies to public pools only.

', ], ], 'IpamComplianceStatus' => [ 'base' => NULL, 'refs' => [ 'IpamAddressHistoryRecord$ResourceComplianceStatus' => '

The compliance status of a resource. For more information on compliance statuses, see Monitor CIDR usage by resource in the Amazon VPC IPAM User Guide.

', 'IpamResourceCidr$ComplianceStatus' => '

The compliance status of the IPAM resource. For more information on compliance statuses, see Monitor CIDR usage by resource in the Amazon VPC IPAM User Guide.

', ], ], 'IpamDiscoveredAccount' => [ 'base' => '

An IPAM discovered account. A discovered account is an Amazon Web Services account that is monitored under a resource discovery. If you have integrated IPAM with Amazon Web Services Organizations, all accounts in the organization are discovered accounts.

', 'refs' => [ 'IpamDiscoveredAccountSet$member' => NULL, ], ], 'IpamDiscoveredAccountSet' => [ 'base' => NULL, 'refs' => [ 'GetIpamDiscoveredAccountsResult$IpamDiscoveredAccounts' => '

Discovered accounts.

', ], ], 'IpamDiscoveredPublicAddress' => [ 'base' => '

A public IP Address discovered by IPAM.

', 'refs' => [ 'IpamDiscoveredPublicAddressSet$member' => NULL, ], ], 'IpamDiscoveredPublicAddressSet' => [ 'base' => NULL, 'refs' => [ 'GetIpamDiscoveredPublicAddressesResult$IpamDiscoveredPublicAddresses' => '

IPAM discovered public addresses.

', ], ], 'IpamDiscoveredResourceCidr' => [ 'base' => '

An IPAM discovered resource CIDR. A discovered resource is a resource CIDR monitored under a resource discovery. The following resources can be discovered: VPCs, Public IPv4 pools, VPC subnets, and Elastic IP addresses. The discovered resource CIDR is the IP address range in CIDR notation that is associated with the resource.

', 'refs' => [ 'IpamDiscoveredResourceCidrSet$member' => NULL, ], ], 'IpamDiscoveredResourceCidrSet' => [ 'base' => NULL, 'refs' => [ 'GetIpamDiscoveredResourceCidrsResult$IpamDiscoveredResourceCidrs' => '

Discovered resource CIDRs.

', ], ], 'IpamDiscoveryFailureCode' => [ 'base' => NULL, 'refs' => [ 'IpamDiscoveryFailureReason$Code' => '

The discovery failure code.

  • assume-role-failure - IPAM could not assume the Amazon Web Services IAM service-linked role. This could be because of any of the following:

    • SLR has not been created yet and IPAM is still creating it.

    • You have opted-out of the IPAM home Region.

    • Account you are using as your IPAM account has been suspended.

  • throttling-failure - IPAM account is already using the allotted transactions per second and IPAM is receiving a throttling error when assuming the Amazon Web Services IAM SLR.

  • unauthorized-failure - Amazon Web Services account making the request is not authorized. For more information, see AuthFailure in the Amazon Elastic Compute Cloud API Reference.

', ], ], 'IpamDiscoveryFailureReason' => [ 'base' => '

The discovery failure reason.

', 'refs' => [ 'IpamDiscoveredAccount$FailureReason' => '

The resource discovery failure reason.

', ], ], 'IpamId' => [ 'base' => NULL, 'refs' => [ 'AssociateIpamResourceDiscoveryRequest$IpamId' => '

An IPAM ID.

', 'Byoasn$IpamId' => '

An IPAM ID.

', 'CreateIpamScopeRequest$IpamId' => '

The ID of the IPAM for which you\'re creating this scope.

', 'DeleteIpamRequest$IpamId' => '

The ID of the IPAM to delete.

', 'DeprovisionIpamByoasnRequest$IpamId' => '

The IPAM ID.

', 'Ipam$IpamId' => '

The ID of the IPAM.

', 'IpamResourceCidr$IpamId' => '

The IPAM ID for an IPAM resource.

', 'IpamResourceDiscoveryAssociation$IpamId' => '

The IPAM ID.

', 'ModifyIpamRequest$IpamId' => '

The ID of the IPAM you want to modify.

', 'ProvisionIpamByoasnRequest$IpamId' => '

An IPAM ID.

', ], ], 'IpamManagementState' => [ 'base' => NULL, 'refs' => [ 'IpamResourceCidr$ManagementState' => '

The management state of the resource. For more information about management states, see Monitor CIDR usage by resource in the Amazon VPC IPAM User Guide.

', ], ], 'IpamMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeIpamPoolsRequest$MaxResults' => '

The maximum number of results to return in the request.

', 'DescribeIpamResourceDiscoveriesRequest$MaxResults' => '

The maximum number of resource discoveries to return in one page of results.

', 'DescribeIpamResourceDiscoveryAssociationsRequest$MaxResults' => '

The maximum number of resource discovery associations to return in one page of results.

', 'DescribeIpamScopesRequest$MaxResults' => '

The maximum number of results to return in the request.

', 'DescribeIpamsRequest$MaxResults' => '

The maximum number of results to return in the request.

', 'GetIpamDiscoveredAccountsRequest$MaxResults' => '

The maximum number of discovered accounts to return in one page of results.

', 'GetIpamDiscoveredPublicAddressesRequest$MaxResults' => '

The maximum number of IPAM discovered public addresses to return in one page of results.

', 'GetIpamDiscoveredResourceCidrsRequest$MaxResults' => '

The maximum number of discovered resource CIDRs to return in one page of results.

', 'GetIpamPoolCidrsRequest$MaxResults' => '

The maximum number of results to return in the request.

', 'GetIpamResourceCidrsRequest$MaxResults' => '

The maximum number of results to return in the request.

', ], ], 'IpamNetmaskLength' => [ 'base' => NULL, 'refs' => [ 'CreateIpamPoolRequest$AllocationMinNetmaskLength' => '

The minimum netmask length required for CIDR allocations in this IPAM pool to be compliant. The minimum netmask length must be less than the maximum netmask length. Possible netmask lengths for IPv4 addresses are 0 - 32. Possible netmask lengths for IPv6 addresses are 0 - 128.

', 'CreateIpamPoolRequest$AllocationMaxNetmaskLength' => '

The maximum netmask length possible for CIDR allocations in this IPAM pool to be compliant. The maximum netmask length must be greater than the minimum netmask length. Possible netmask lengths for IPv4 addresses are 0 - 32. Possible netmask lengths for IPv6 addresses are 0 - 128.

', 'CreateIpamPoolRequest$AllocationDefaultNetmaskLength' => '

The default netmask length for allocations added to this pool. If, for example, the CIDR assigned to this pool is 10.0.0.0/8 and you enter 16 here, new allocations will default to 10.0.0.0/16.

', 'IpamPool$AllocationMinNetmaskLength' => '

The minimum netmask length required for CIDR allocations in this IPAM pool to be compliant. The minimum netmask length must be less than the maximum netmask length. Possible netmask lengths for IPv4 addresses are 0 - 32. Possible netmask lengths for IPv6 addresses are 0 - 128.

', 'IpamPool$AllocationMaxNetmaskLength' => '

The maximum netmask length possible for CIDR allocations in this IPAM pool to be compliant. The maximum netmask length must be greater than the minimum netmask length. Possible netmask lengths for IPv4 addresses are 0 - 32. Possible netmask lengths for IPv6 addresses are 0 - 128.

', 'IpamPool$AllocationDefaultNetmaskLength' => '

The default netmask length for allocations added to this pool. If, for example, the CIDR assigned to this pool is 10.0.0.0/8 and you enter 16 here, new allocations will default to 10.0.0.0/16.

', 'ModifyIpamPoolRequest$AllocationMinNetmaskLength' => '

The minimum netmask length required for CIDR allocations in this IPAM pool to be compliant. Possible netmask lengths for IPv4 addresses are 0 - 32. Possible netmask lengths for IPv6 addresses are 0 - 128. The minimum netmask length must be less than the maximum netmask length.

', 'ModifyIpamPoolRequest$AllocationMaxNetmaskLength' => '

The maximum netmask length possible for CIDR allocations in this IPAM pool to be compliant. Possible netmask lengths for IPv4 addresses are 0 - 32. Possible netmask lengths for IPv6 addresses are 0 - 128.The maximum netmask length must be greater than the minimum netmask length.

', 'ModifyIpamPoolRequest$AllocationDefaultNetmaskLength' => '

The default netmask length for allocations added to this pool. If, for example, the CIDR assigned to this pool is 10.0.0.0/8 and you enter 16 here, new allocations will default to 10.0.0.0/16.

', ], ], 'IpamOperatingRegion' => [ 'base' => '

The operating Regions for an IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

For more information about operating Regions, see Create an IPAM in the Amazon VPC IPAM User Guide.

', 'refs' => [ 'IpamOperatingRegionSet$member' => NULL, ], ], 'IpamOperatingRegionSet' => [ 'base' => NULL, 'refs' => [ 'Ipam$OperatingRegions' => '

The operating Regions for an IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

For more information about operating Regions, see Create an IPAM in the Amazon VPC IPAM User Guide.

', 'IpamResourceDiscovery$OperatingRegions' => '

The operating Regions for the resource discovery. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

', ], ], 'IpamOverlapStatus' => [ 'base' => NULL, 'refs' => [ 'IpamAddressHistoryRecord$ResourceOverlapStatus' => '

The overlap status of an IPAM resource. The overlap status tells you if the CIDR for a resource overlaps with another CIDR in the scope. For more information on overlap statuses, see Monitor CIDR usage by resource in the Amazon VPC IPAM User Guide.

', 'IpamResourceCidr$OverlapStatus' => '

The overlap status of an IPAM resource. The overlap status tells you if the CIDR for a resource overlaps with another CIDR in the scope. For more information on overlap statuses, see Monitor CIDR usage by resource in the Amazon VPC IPAM User Guide.

', ], ], 'IpamPool' => [ 'base' => '

In IPAM, a pool is a collection of contiguous IP addresses CIDRs. Pools enable you to organize your IP addresses according to your routing and security needs. For example, if you have separate routing and security needs for development and production applications, you can create a pool for each.

', 'refs' => [ 'CreateIpamPoolResult$IpamPool' => '

Information about the IPAM pool created.

', 'DeleteIpamPoolResult$IpamPool' => '

Information about the results of the deletion.

', 'IpamPoolSet$member' => NULL, 'ModifyIpamPoolResult$IpamPool' => '

The results of the modification.

', ], ], 'IpamPoolAllocation' => [ 'base' => '

In IPAM, an allocation is a CIDR assignment from an IPAM pool to another IPAM pool or to a resource.

', 'refs' => [ 'AllocateIpamPoolCidrResult$IpamPoolAllocation' => '

Information about the allocation created.

', 'IpamPoolAllocationSet$member' => NULL, ], ], 'IpamPoolAllocationAllowedCidrs' => [ 'base' => NULL, 'refs' => [ 'AllocateIpamPoolCidrRequest$AllowedCidrs' => '

Include a particular CIDR range that can be returned by the pool. Allowed CIDRs are only allowed if using netmask length for allocation.

', ], ], 'IpamPoolAllocationDisallowedCidrs' => [ 'base' => NULL, 'refs' => [ 'AllocateIpamPoolCidrRequest$DisallowedCidrs' => '

Exclude a particular CIDR range from being returned by the pool. Disallowed CIDRs are only allowed if using netmask length for allocation.

', ], ], 'IpamPoolAllocationId' => [ 'base' => NULL, 'refs' => [ 'GetIpamPoolAllocationsRequest$IpamPoolAllocationId' => '

The ID of the allocation.

', 'IpamPoolAllocation$IpamPoolAllocationId' => '

The ID of an allocation.

', 'ReleaseIpamPoolAllocationRequest$IpamPoolAllocationId' => '

The ID of the allocation.

', ], ], 'IpamPoolAllocationResourceType' => [ 'base' => NULL, 'refs' => [ 'IpamPoolAllocation$ResourceType' => '

The type of the resource.

', ], ], 'IpamPoolAllocationSet' => [ 'base' => NULL, 'refs' => [ 'GetIpamPoolAllocationsResult$IpamPoolAllocations' => '

The IPAM pool allocations you want information on.

', ], ], 'IpamPoolAwsService' => [ 'base' => NULL, 'refs' => [ 'CreateIpamPoolRequest$AwsService' => '

Limits which service in Amazon Web Services that the pool can be used in. "ec2", for example, allows users to use space for Elastic IP addresses and VPCs.

', 'IpamPool$AwsService' => '

Limits which service in Amazon Web Services that the pool can be used in. "ec2", for example, allows users to use space for Elastic IP addresses and VPCs.

', ], ], 'IpamPoolCidr' => [ 'base' => '

A CIDR provisioned to an IPAM pool.

', 'refs' => [ 'DeprovisionIpamPoolCidrResult$IpamPoolCidr' => '

The deprovisioned pool CIDR.

', 'IpamPoolCidrSet$member' => NULL, 'ProvisionIpamPoolCidrResult$IpamPoolCidr' => '

Information about the provisioned CIDR.

', ], ], 'IpamPoolCidrFailureCode' => [ 'base' => NULL, 'refs' => [ 'IpamPoolCidrFailureReason$Code' => '

An error code related to why an IPAM pool CIDR failed to be provisioned.

', ], ], 'IpamPoolCidrFailureReason' => [ 'base' => '

Details related to why an IPAM pool CIDR failed to be provisioned.

', 'refs' => [ 'IpamPoolCidr$FailureReason' => '

Details related to why an IPAM pool CIDR failed to be provisioned.

', ], ], 'IpamPoolCidrId' => [ 'base' => NULL, 'refs' => [ 'IpamPoolCidr$IpamPoolCidrId' => '

The IPAM pool CIDR ID.

', ], ], 'IpamPoolCidrSet' => [ 'base' => NULL, 'refs' => [ 'GetIpamPoolCidrsResult$IpamPoolCidrs' => '

Information about the CIDRs provisioned to an IPAM pool.

', ], ], 'IpamPoolCidrState' => [ 'base' => NULL, 'refs' => [ 'IpamPoolCidr$State' => '

The state of the CIDR.

', ], ], 'IpamPoolId' => [ 'base' => NULL, 'refs' => [ 'AllocateIpamPoolCidrRequest$IpamPoolId' => '

The ID of the IPAM pool from which you would like to allocate a CIDR.

', 'AssociateSubnetCidrBlockRequest$Ipv6IpamPoolId' => '

An IPv6 IPAM pool ID.

', 'AssociateVpcCidrBlockRequest$Ipv4IpamPoolId' => '

Associate a CIDR allocated from an IPv4 IPAM pool to a VPC. For more information about Amazon VPC IP Address Manager (IPAM), see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'AssociateVpcCidrBlockRequest$Ipv6IpamPoolId' => '

Associates a CIDR allocated from an IPv6 IPAM pool to a VPC. For more information about Amazon VPC IP Address Manager (IPAM), see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'CreateIpamPoolRequest$SourceIpamPoolId' => '

The ID of the source IPAM pool. Use this option to create a pool within an existing pool. Note that the CIDR you provision for the pool within the source pool must be available in the source pool\'s CIDR range.

', 'CreateSubnetRequest$Ipv4IpamPoolId' => '

An IPv4 IPAM pool ID for the subnet.

', 'CreateSubnetRequest$Ipv6IpamPoolId' => '

An IPv6 IPAM pool ID for the subnet.

', 'CreateVpcRequest$Ipv4IpamPoolId' => '

The ID of an IPv4 IPAM pool you want to use for allocating this VPC\'s CIDR. For more information, see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'CreateVpcRequest$Ipv6IpamPoolId' => '

The ID of an IPv6 IPAM pool which will be used to allocate this VPC an IPv6 CIDR. IPAM is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across Amazon Web Services Regions and accounts throughout your Amazon Web Services Organization. For more information, see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'DeleteIpamPoolRequest$IpamPoolId' => '

The ID of the pool to delete.

', 'DeprovisionIpamPoolCidrRequest$IpamPoolId' => '

The ID of the pool that has the CIDR you want to deprovision.

', 'GetIpamPoolAllocationsRequest$IpamPoolId' => '

The ID of the IPAM pool you want to see the allocations for.

', 'GetIpamPoolCidrsRequest$IpamPoolId' => '

The ID of the IPAM pool you want the CIDR for.

', 'GetIpamResourceCidrsRequest$IpamPoolId' => '

The ID of the IPAM pool that the resource is in.

', 'IpamPool$IpamPoolId' => '

The ID of the IPAM pool.

', 'IpamPool$SourceIpamPoolId' => '

The ID of the source IPAM pool. You can use this option to create an IPAM pool within an existing source pool.

', 'IpamResourceCidr$IpamPoolId' => '

The pool ID for an IPAM resource.

', 'ModifyIpamPoolRequest$IpamPoolId' => '

The ID of the IPAM pool you want to modify.

', 'MoveByoipCidrToIpamRequest$IpamPoolId' => '

The IPAM pool ID.

', 'ProvisionIpamPoolCidrRequest$IpamPoolId' => '

The ID of the IPAM pool to which you want to assign a CIDR.

', 'ProvisionPublicIpv4PoolCidrRequest$IpamPoolId' => '

The ID of the IPAM pool you would like to use to allocate this CIDR.

', 'ReleaseIpamPoolAllocationRequest$IpamPoolId' => '

The ID of the IPAM pool which contains the allocation you want to release.

', ], ], 'IpamPoolPublicIpSource' => [ 'base' => NULL, 'refs' => [ 'CreateIpamPoolRequest$PublicIpSource' => '

The IP address source for pools in the public scope. Only used for provisioning IP address CIDRs to pools in the public scope. Default is byoip. For more information, see Create IPv6 pools in the Amazon VPC IPAM User Guide. By default, you can add only one Amazon-provided IPv6 CIDR block to a top-level IPv6 pool if PublicIpSource is amazon. For information on increasing the default limit, see Quotas for your IPAM in the Amazon VPC IPAM User Guide.

', 'IpamPool$PublicIpSource' => '

The IP address source for pools in the public scope. Only used for provisioning IP address CIDRs to pools in the public scope. Default is BYOIP. For more information, see Create IPv6 pools in the Amazon VPC IPAM User Guide. By default, you can add only one Amazon-provided IPv6 CIDR block to a top-level IPv6 pool. For information on increasing the default limit, see Quotas for your IPAM in the Amazon VPC IPAM User Guide.

', ], ], 'IpamPoolSet' => [ 'base' => NULL, 'refs' => [ 'DescribeIpamPoolsResult$IpamPools' => '

Information about the IPAM pools.

', ], ], 'IpamPoolSourceResource' => [ 'base' => '

The resource used to provision CIDRs to a resource planning pool.

', 'refs' => [ 'IpamPool$SourceResource' => '

The resource used to provision CIDRs to a resource planning pool.

', ], ], 'IpamPoolSourceResourceRequest' => [ 'base' => '

The resource used to provision CIDRs to a resource planning pool.

', 'refs' => [ 'CreateIpamPoolRequest$SourceResource' => '

The resource used to provision CIDRs to a resource planning pool.

', ], ], 'IpamPoolSourceResourceType' => [ 'base' => NULL, 'refs' => [ 'IpamPoolSourceResource$ResourceType' => '

The source resource type.

', 'IpamPoolSourceResourceRequest$ResourceType' => '

The source resource type.

', ], ], 'IpamPoolState' => [ 'base' => NULL, 'refs' => [ 'IpamPool$State' => '

The state of the IPAM pool.

', ], ], 'IpamPublicAddressAssociationStatus' => [ 'base' => NULL, 'refs' => [ 'IpamDiscoveredPublicAddress$AssociationStatus' => '

The association status.

', ], ], 'IpamPublicAddressAwsService' => [ 'base' => NULL, 'refs' => [ 'IpamDiscoveredPublicAddress$Service' => '

The Amazon Web Services service associated with the IP address.

', ], ], 'IpamPublicAddressSecurityGroup' => [ 'base' => '

The security group that the resource with the public IP address is in.

', 'refs' => [ 'IpamPublicAddressSecurityGroupList$member' => NULL, ], ], 'IpamPublicAddressSecurityGroupList' => [ 'base' => NULL, 'refs' => [ 'IpamDiscoveredPublicAddress$SecurityGroups' => '

Security groups associated with the resource that the IP address is assigned to.

', ], ], 'IpamPublicAddressTag' => [ 'base' => '

A tag for a public IP address discovered by IPAM.

', 'refs' => [ 'IpamPublicAddressTagList$member' => NULL, ], ], 'IpamPublicAddressTagList' => [ 'base' => NULL, 'refs' => [ 'IpamPublicAddressTags$EipTags' => '

Tags for an Elastic IP address.

', ], ], 'IpamPublicAddressTags' => [ 'base' => '

Tags for a public IP address discovered by IPAM.

', 'refs' => [ 'IpamDiscoveredPublicAddress$Tags' => '

Tags associated with the IP address.

', ], ], 'IpamPublicAddressType' => [ 'base' => NULL, 'refs' => [ 'IpamDiscoveredPublicAddress$AddressType' => '

The IP address type.

', ], ], 'IpamResourceCidr' => [ 'base' => '

The CIDR for an IPAM resource.

', 'refs' => [ 'IpamResourceCidrSet$member' => NULL, 'ModifyIpamResourceCidrResult$IpamResourceCidr' => '

The CIDR of the resource.

', ], ], 'IpamResourceCidrSet' => [ 'base' => NULL, 'refs' => [ 'GetIpamResourceCidrsResult$IpamResourceCidrs' => '

The resource CIDRs.

', ], ], 'IpamResourceDiscovery' => [ 'base' => '

A resource discovery is an IPAM component that enables IPAM to manage and monitor resources that belong to the owning account.

', 'refs' => [ 'CreateIpamResourceDiscoveryResult$IpamResourceDiscovery' => '

An IPAM resource discovery.

', 'DeleteIpamResourceDiscoveryResult$IpamResourceDiscovery' => '

The IPAM resource discovery.

', 'IpamResourceDiscoverySet$member' => NULL, 'ModifyIpamResourceDiscoveryResult$IpamResourceDiscovery' => '

A resource discovery.

', ], ], 'IpamResourceDiscoveryAssociation' => [ 'base' => '

An IPAM resource discovery association. An associated resource discovery is a resource discovery that has been associated with an IPAM. IPAM aggregates the resource CIDRs discovered by the associated resource discovery.

', 'refs' => [ 'AssociateIpamResourceDiscoveryResult$IpamResourceDiscoveryAssociation' => '

A resource discovery association. An associated resource discovery is a resource discovery that has been associated with an IPAM.

', 'DisassociateIpamResourceDiscoveryResult$IpamResourceDiscoveryAssociation' => '

A resource discovery association.

', 'IpamResourceDiscoveryAssociationSet$member' => NULL, ], ], 'IpamResourceDiscoveryAssociationId' => [ 'base' => NULL, 'refs' => [ 'DisassociateIpamResourceDiscoveryRequest$IpamResourceDiscoveryAssociationId' => '

A resource discovery association ID.

', 'Ipam$DefaultResourceDiscoveryAssociationId' => '

The IPAM\'s default resource discovery association ID.

', 'IpamResourceDiscoveryAssociation$IpamResourceDiscoveryAssociationId' => '

The resource discovery association ID.

', ], ], 'IpamResourceDiscoveryAssociationSet' => [ 'base' => NULL, 'refs' => [ 'DescribeIpamResourceDiscoveryAssociationsResult$IpamResourceDiscoveryAssociations' => '

The resource discovery associations.

', ], ], 'IpamResourceDiscoveryAssociationState' => [ 'base' => NULL, 'refs' => [ 'IpamResourceDiscoveryAssociation$State' => '

The lifecycle state of the association when you associate or disassociate a resource discovery.

  • associate-in-progress - Resource discovery is being associated.

  • associate-complete - Resource discovery association is complete.

  • associate-failed - Resource discovery association has failed.

  • disassociate-in-progress - Resource discovery is being disassociated.

  • disassociate-complete - Resource discovery disassociation is complete.

  • disassociate-failed - Resource discovery disassociation has failed.

  • isolate-in-progress - Amazon Web Services account that created the resource discovery association has been removed and the resource discovery associatation is being isolated.

  • isolate-complete - Resource discovery isolation is complete..

  • restore-in-progress - Resource discovery is being restored.

', ], ], 'IpamResourceDiscoveryId' => [ 'base' => NULL, 'refs' => [ 'AssociateIpamResourceDiscoveryRequest$IpamResourceDiscoveryId' => '

A resource discovery ID.

', 'DeleteIpamResourceDiscoveryRequest$IpamResourceDiscoveryId' => '

The IPAM resource discovery ID.

', 'GetIpamDiscoveredAccountsRequest$IpamResourceDiscoveryId' => '

A resource discovery ID.

', 'GetIpamDiscoveredPublicAddressesRequest$IpamResourceDiscoveryId' => '

An IPAM resource discovery ID.

', 'GetIpamDiscoveredResourceCidrsRequest$IpamResourceDiscoveryId' => '

A resource discovery ID.

', 'Ipam$DefaultResourceDiscoveryId' => '

The IPAM\'s default resource discovery ID.

', 'IpamDiscoveredPublicAddress$IpamResourceDiscoveryId' => '

The resource discovery ID.

', 'IpamDiscoveredResourceCidr$IpamResourceDiscoveryId' => '

The resource discovery ID.

', 'IpamResourceDiscovery$IpamResourceDiscoveryId' => '

The resource discovery ID.

', 'IpamResourceDiscoveryAssociation$IpamResourceDiscoveryId' => '

The resource discovery ID.

', 'ModifyIpamResourceDiscoveryRequest$IpamResourceDiscoveryId' => '

A resource discovery ID.

', ], ], 'IpamResourceDiscoverySet' => [ 'base' => NULL, 'refs' => [ 'DescribeIpamResourceDiscoveriesResult$IpamResourceDiscoveries' => '

The resource discoveries.

', ], ], 'IpamResourceDiscoveryState' => [ 'base' => NULL, 'refs' => [ 'IpamResourceDiscovery$State' => '

The lifecycle state of the resource discovery.

  • create-in-progress - Resource discovery is being created.

  • create-complete - Resource discovery creation is complete.

  • create-failed - Resource discovery creation has failed.

  • modify-in-progress - Resource discovery is being modified.

  • modify-complete - Resource discovery modification is complete.

  • modify-failed - Resource discovery modification has failed.

  • delete-in-progress - Resource discovery is being deleted.

  • delete-complete - Resource discovery deletion is complete.

  • delete-failed - Resource discovery deletion has failed.

  • isolate-in-progress - Amazon Web Services account that created the resource discovery has been removed and the resource discovery is being isolated.

  • isolate-complete - Resource discovery isolation is complete.

  • restore-in-progress - Amazon Web Services account that created the resource discovery and was isolated has been restored.

', ], ], 'IpamResourceTag' => [ 'base' => '

The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'refs' => [ 'IpamResourceTagList$member' => NULL, ], ], 'IpamResourceTagList' => [ 'base' => NULL, 'refs' => [ 'IpamDiscoveredResourceCidr$ResourceTags' => '

The resource tags.

', 'IpamPool$AllocationResourceTags' => '

Tags that are required for resources that use CIDRs from this IPAM pool. Resources that do not have these tags will not be allowed to allocate space from the pool. If the resources have their tags changed after they have allocated space or if the allocation tagging requirements are changed on the pool, the resource may be marked as noncompliant.

', 'IpamResourceCidr$ResourceTags' => '

The tags for an IPAM resource.

', ], ], 'IpamResourceType' => [ 'base' => NULL, 'refs' => [ 'GetIpamResourceCidrsRequest$ResourceType' => '

The resource type.

', 'IpamDiscoveredResourceCidr$ResourceType' => '

The resource type.

', 'IpamResourceCidr$ResourceType' => '

The type of IPAM resource.

', ], ], 'IpamScope' => [ 'base' => '

In IPAM, a scope is the highest-level container within IPAM. An IPAM contains two default scopes. Each scope represents the IP space for a single network. The private scope is intended for all private IP address space. The public scope is intended for all public IP address space. Scopes enable you to reuse IP addresses across multiple unconnected networks without causing IP address overlap or conflict.

For more information, see How IPAM works in the Amazon VPC IPAM User Guide.

', 'refs' => [ 'CreateIpamScopeResult$IpamScope' => '

Information about the created scope.

', 'DeleteIpamScopeResult$IpamScope' => '

Information about the results of the deletion.

', 'IpamScopeSet$member' => NULL, 'ModifyIpamScopeResult$IpamScope' => '

The results of the modification.

', ], ], 'IpamScopeId' => [ 'base' => NULL, 'refs' => [ 'CreateIpamPoolRequest$IpamScopeId' => '

The ID of the scope in which you would like to create the IPAM pool.

', 'DeleteIpamScopeRequest$IpamScopeId' => '

The ID of the scope to delete.

', 'GetIpamAddressHistoryRequest$IpamScopeId' => '

The ID of the IPAM scope that the CIDR is in.

', 'GetIpamResourceCidrsRequest$IpamScopeId' => '

The ID of the scope that the resource is in.

', 'Ipam$PublicDefaultScopeId' => '

The ID of the IPAM\'s default public scope.

', 'Ipam$PrivateDefaultScopeId' => '

The ID of the IPAM\'s default private scope.

', 'IpamResourceCidr$IpamScopeId' => '

The scope ID for an IPAM resource.

', 'IpamScope$IpamScopeId' => '

The ID of the scope.

', 'ModifyIpamResourceCidrRequest$CurrentIpamScopeId' => '

The ID of the current scope that the resource CIDR is in.

', 'ModifyIpamResourceCidrRequest$DestinationIpamScopeId' => '

The ID of the scope you want to transfer the resource CIDR to.

', 'ModifyIpamScopeRequest$IpamScopeId' => '

The ID of the scope you want to modify.

', ], ], 'IpamScopeSet' => [ 'base' => NULL, 'refs' => [ 'DescribeIpamScopesResult$IpamScopes' => '

The scopes you want information on.

', ], ], 'IpamScopeState' => [ 'base' => NULL, 'refs' => [ 'IpamScope$State' => '

The state of the IPAM scope.

', ], ], 'IpamScopeType' => [ 'base' => NULL, 'refs' => [ 'IpamPool$IpamScopeType' => '

In IPAM, a scope is the highest-level container within IPAM. An IPAM contains two default scopes. Each scope represents the IP space for a single network. The private scope is intended for all private IP address space. The public scope is intended for all public IP address space. Scopes enable you to reuse IP addresses across multiple unconnected networks without causing IP address overlap or conflict.

', 'IpamScope$IpamScopeType' => '

The type of the scope.

', ], ], 'IpamSet' => [ 'base' => NULL, 'refs' => [ 'DescribeIpamsResult$Ipams' => '

Information about the IPAMs.

', ], ], 'IpamState' => [ 'base' => NULL, 'refs' => [ 'Ipam$State' => '

The state of the IPAM.

', ], ], 'IpamTier' => [ 'base' => NULL, 'refs' => [ 'CreateIpamRequest$Tier' => '

IPAM is offered in a Free Tier and an Advanced Tier. For more information about the features available in each tier and the costs associated with the tiers, see Amazon VPC pricing > IPAM tab.

', 'Ipam$Tier' => '

IPAM is offered in a Free Tier and an Advanced Tier. For more information about the features available in each tier and the costs associated with the tiers, see Amazon VPC pricing > IPAM tab.

', 'ModifyIpamRequest$Tier' => '

IPAM is offered in a Free Tier and an Advanced Tier. For more information about the features available in each tier and the costs associated with the tiers, see Amazon VPC pricing > IPAM tab.

', ], ], 'Ipv4PoolCoipId' => [ 'base' => NULL, 'refs' => [ 'CoipCidr$CoipPoolId' => '

The ID of the address pool.

', 'CoipPool$PoolId' => '

The ID of the address pool.

', 'CoipPoolIdSet$member' => NULL, 'CreateCoipCidrRequest$CoipPoolId' => '

The ID of the address pool.

', 'DeleteCoipCidrRequest$CoipPoolId' => '

The ID of the customer-owned address pool.

', 'DeleteCoipPoolRequest$CoipPoolId' => '

The ID of the CoIP pool that you want to delete.

', 'GetCoipPoolUsageRequest$PoolId' => '

The ID of the address pool.

', ], ], 'Ipv4PoolEc2Id' => [ 'base' => NULL, 'refs' => [ 'AllocateAddressRequest$PublicIpv4Pool' => '

The ID of an address pool that you own. Use this parameter to let Amazon EC2 select an address from the address pool. To specify a specific address from the address pool, use the Address parameter instead.

', 'CreatePublicIpv4PoolResult$PoolId' => '

The ID of the public IPv4 pool.

', 'DeletePublicIpv4PoolRequest$PoolId' => '

The ID of the public IPv4 pool you want to delete.

', 'DeprovisionPublicIpv4PoolCidrRequest$PoolId' => '

The ID of the pool that you want to deprovision the CIDR from.

', 'DeprovisionPublicIpv4PoolCidrResult$PoolId' => '

The ID of the pool that you deprovisioned the CIDR from.

', 'ProvisionPublicIpv4PoolCidrRequest$PoolId' => '

The ID of the public IPv4 pool you would like to use for this CIDR.

', 'ProvisionPublicIpv4PoolCidrResult$PoolId' => '

The ID of the pool that you want to provision the CIDR to.

', 'PublicIpv4PoolIdStringList$member' => NULL, ], ], 'Ipv4PrefixList' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInterfaceRequest$Ipv4Prefixes' => '

The IPv4 prefixes assigned to the network interface.

You can\'t specify IPv4 prefixes if you\'ve specified one of the following: a count of IPv4 prefixes, specific private IPv4 addresses, or a count of private IPv4 addresses.

', 'InstanceNetworkInterfaceSpecification$Ipv4Prefixes' => '

The IPv4 delegated prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv4PrefixCount option.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$Ipv4Prefixes' => '

One or more IPv4 prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv4PrefixCount option.

', ], ], 'Ipv4PrefixListResponse' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceNetworkInterfaceSpecification$Ipv4Prefixes' => '

One or more IPv4 prefixes assigned to the network interface.

', ], ], 'Ipv4PrefixSpecification' => [ 'base' => '

Describes an IPv4 prefix.

', 'refs' => [ 'Ipv4PrefixesList$member' => NULL, ], ], 'Ipv4PrefixSpecificationRequest' => [ 'base' => '

Describes the IPv4 prefix option for a network interface.

', 'refs' => [ 'Ipv4PrefixList$member' => NULL, ], ], 'Ipv4PrefixSpecificationResponse' => [ 'base' => '

Information about the IPv4 delegated prefixes assigned to a network interface.

', 'refs' => [ 'Ipv4PrefixListResponse$member' => NULL, ], ], 'Ipv4PrefixesList' => [ 'base' => NULL, 'refs' => [ 'AssignPrivateIpAddressesResult$AssignedIpv4Prefixes' => '

The IPv4 prefixes that are assigned to the network interface.

', 'NetworkInterface$Ipv4Prefixes' => '

The IPv4 prefixes that are assigned to the network interface.

', ], ], 'Ipv6Address' => [ 'base' => NULL, 'refs' => [ 'ScheduledInstancesIpv6Address$Ipv6Address' => '

The IPv6 address.

', ], ], 'Ipv6AddressList' => [ 'base' => NULL, 'refs' => [ 'AssignIpv6AddressesRequest$Ipv6Addresses' => '

The IPv6 addresses to be assigned to the network interface. You can\'t use this option if you\'re specifying a number of IPv6 addresses.

', 'AssignIpv6AddressesResult$AssignedIpv6Addresses' => '

The new IPv6 addresses assigned to the network interface. Existing IPv6 addresses that were assigned to the network interface before the request are not included.

', 'UnassignIpv6AddressesRequest$Ipv6Addresses' => '

The IPv6 addresses to unassign from the network interface.

', 'UnassignIpv6AddressesResult$UnassignedIpv6Addresses' => '

The IPv6 addresses that have been unassigned from the network interface.

', ], ], 'Ipv6CidrAssociation' => [ 'base' => '

Describes an IPv6 CIDR block association.

', 'refs' => [ 'Ipv6CidrAssociationSet$member' => NULL, ], ], 'Ipv6CidrAssociationSet' => [ 'base' => NULL, 'refs' => [ 'GetAssociatedIpv6PoolCidrsResult$Ipv6CidrAssociations' => '

Information about the IPv6 CIDR block associations.

', ], ], 'Ipv6CidrBlock' => [ 'base' => '

Describes an IPv6 CIDR block.

', 'refs' => [ 'Ipv6CidrBlockSet$member' => NULL, ], ], 'Ipv6CidrBlockSet' => [ 'base' => NULL, 'refs' => [ 'VpcPeeringConnectionVpcInfo$Ipv6CidrBlockSet' => '

The IPv6 CIDR block for the VPC.

', ], ], 'Ipv6Flag' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$Ipv6Supported' => '

Indicates whether IPv6 is supported.

', ], ], 'Ipv6Pool' => [ 'base' => '

Describes an IPv6 address pool.

', 'refs' => [ 'Ipv6PoolSet$member' => NULL, ], ], 'Ipv6PoolEc2Id' => [ 'base' => NULL, 'refs' => [ 'AssociateVpcCidrBlockRequest$Ipv6Pool' => '

The ID of an IPv6 address pool from which to allocate the IPv6 CIDR block.

', 'CreateVpcRequest$Ipv6Pool' => '

The ID of an IPv6 address pool from which to allocate the IPv6 CIDR block.

', 'GetAssociatedIpv6PoolCidrsRequest$PoolId' => '

The ID of the IPv6 address pool.

', 'Ipv6PoolIdList$member' => NULL, ], ], 'Ipv6PoolIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeIpv6PoolsRequest$PoolIds' => '

The IDs of the IPv6 address pools.

', ], ], 'Ipv6PoolMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeIpv6PoolsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetAssociatedIpv6PoolCidrsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'Ipv6PoolSet' => [ 'base' => NULL, 'refs' => [ 'DescribeIpv6PoolsResult$Ipv6Pools' => '

Information about the IPv6 address pools.

', ], ], 'Ipv6PrefixList' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInterfaceRequest$Ipv6Prefixes' => '

The IPv6 prefixes assigned to the network interface.

You can\'t specify IPv6 prefixes if you\'ve specified one of the following: a count of IPv6 prefixes, specific IPv6 addresses, or a count of IPv6 addresses.

', 'InstanceNetworkInterfaceSpecification$Ipv6Prefixes' => '

The IPv6 delegated prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv6PrefixCount option.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$Ipv6Prefixes' => '

One or more IPv6 prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv6PrefixCount option.

', ], ], 'Ipv6PrefixListResponse' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceNetworkInterfaceSpecification$Ipv6Prefixes' => '

One or more IPv6 prefixes assigned to the network interface.

', ], ], 'Ipv6PrefixSpecification' => [ 'base' => '

Describes the IPv6 prefix.

', 'refs' => [ 'Ipv6PrefixesList$member' => NULL, ], ], 'Ipv6PrefixSpecificationRequest' => [ 'base' => '

Describes the IPv4 prefix option for a network interface.

', 'refs' => [ 'Ipv6PrefixList$member' => NULL, ], ], 'Ipv6PrefixSpecificationResponse' => [ 'base' => '

Information about the IPv6 delegated prefixes assigned to a network interface.

', 'refs' => [ 'Ipv6PrefixListResponse$member' => NULL, ], ], 'Ipv6PrefixesList' => [ 'base' => NULL, 'refs' => [ 'NetworkInterface$Ipv6Prefixes' => '

The IPv6 prefixes that are assigned to the network interface.

', ], ], 'Ipv6Range' => [ 'base' => '

Describes an IPv6 range.

', 'refs' => [ 'Ipv6RangeList$member' => NULL, ], ], 'Ipv6RangeList' => [ 'base' => NULL, 'refs' => [ 'IpPermission$Ipv6Ranges' => '

The IPv6 ranges.

', ], ], 'Ipv6SupportValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayVpcAttachmentRequestOptions$Ipv6Support' => '

Enable or disable IPv6 support. The default is disable.

', 'ModifyTransitGatewayVpcAttachmentRequestOptions$Ipv6Support' => '

Enable or disable IPv6 support. The default is enable.

', 'TransitGatewayVpcAttachmentOptions$Ipv6Support' => '

Indicates whether IPv6 support is disabled.

', ], ], 'KernelId' => [ 'base' => NULL, 'refs' => [ 'RegisterImageRequest$KernelId' => '

The ID of the kernel.

', 'RequestLaunchTemplateData$KernelId' => '

The ID of the kernel.

We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see User provided kernels in the Amazon Elastic Compute Cloud User Guide.

', 'RequestSpotLaunchSpecification$KernelId' => '

The ID of the kernel.

', 'RunInstancesRequest$KernelId' => '

The ID of the kernel.

We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see PV-GRUB in the Amazon EC2 User Guide.

', 'ScheduledInstancesLaunchSpecification$KernelId' => '

The ID of the kernel.

', ], ], 'KeyFormat' => [ 'base' => NULL, 'refs' => [ 'CreateKeyPairRequest$KeyFormat' => '

The format of the key pair.

Default: pem

', ], ], 'KeyNameStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeKeyPairsRequest$KeyNames' => '

The key pair names.

Default: Describes all of your key pairs.

', ], ], 'KeyPair' => [ 'base' => '

Describes a key pair.

', 'refs' => [], ], 'KeyPairId' => [ 'base' => NULL, 'refs' => [ 'DeleteKeyPairRequest$KeyPairId' => '

The ID of the key pair.

', 'KeyPairIdStringList$member' => NULL, ], ], 'KeyPairIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeKeyPairsRequest$KeyPairIds' => '

The IDs of the key pairs.

', ], ], 'KeyPairInfo' => [ 'base' => '

Describes a key pair.

', 'refs' => [ 'KeyPairList$member' => NULL, ], ], 'KeyPairList' => [ 'base' => NULL, 'refs' => [ 'DescribeKeyPairsResult$KeyPairs' => '

Information about the key pairs.

', ], ], 'KeyPairName' => [ 'base' => NULL, 'refs' => [ 'DeleteKeyPairRequest$KeyName' => '

The name of the key pair.

', 'KeyNameStringList$member' => NULL, 'RequestLaunchTemplateData$KeyName' => '

The name of the key pair. You can create a key pair using CreateKeyPair or ImportKeyPair.

If you do not specify a key pair, you can\'t connect to the instance unless you choose an AMI that is configured to allow users another way to log in.

', 'RequestSpotLaunchSpecification$KeyName' => '

The name of the key pair.

', 'RunInstancesRequest$KeyName' => '

The name of the key pair. You can create a key pair using CreateKeyPair or ImportKeyPair.

If you do not specify a key pair, you can\'t connect to the instance unless you choose an AMI that is configured to allow users another way to log in.

', 'ScheduledInstancesLaunchSpecification$KeyName' => '

The name of the key pair.

', 'SpotFleetLaunchSpecification$KeyName' => '

The name of the key pair.

', ], ], 'KeyType' => [ 'base' => NULL, 'refs' => [ 'CreateKeyPairRequest$KeyType' => '

The type of key pair. Note that ED25519 keys are not supported for Windows instances.

Default: rsa

', 'KeyPairInfo$KeyType' => '

The type of key pair.

', ], ], 'KmsKeyArn' => [ 'base' => NULL, 'refs' => [ 'VerifiedAccessSseSpecificationRequest$KmsKeyArn' => '

The ARN of the KMS key.

', 'VerifiedAccessSseSpecificationResponse$KmsKeyArn' => '

The ARN of the KMS key.

', ], ], 'KmsKeyId' => [ 'base' => NULL, 'refs' => [ 'CopyImageRequest$KmsKeyId' => '

The identifier of the symmetric Key Management Service (KMS) KMS key to use when creating encrypted volumes. If this parameter is not specified, your Amazon Web Services managed KMS key for Amazon EBS is used. If you specify a KMS key, you must also set the encrypted state to true.

You can specify a KMS key using any of the following:

  • Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.

  • Key alias. For example, alias/ExampleAlias.

  • Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab.

  • Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

Amazon Web Services authenticates the KMS key asynchronously. Therefore, if you specify an identifier that is not valid, the action can appear to complete, but eventually fails.

The specified KMS key must exist in the destination Region.

Amazon EBS does not support asymmetric KMS keys.

', 'CopySnapshotRequest$KmsKeyId' => '

The identifier of the Key Management Service (KMS) KMS key to use for Amazon EBS encryption. If this parameter is not specified, your KMS key for Amazon EBS is used. If KmsKeyId is specified, the encrypted state must be true.

You can specify the KMS key using any of the following:

  • Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.

  • Key alias. For example, alias/ExampleAlias.

  • Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab.

  • Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

Amazon Web Services authenticates the KMS key asynchronously. Therefore, if you specify an ID, alias, or ARN that is not valid, the action can appear to complete, but eventually fails.

', 'CreateVolumeRequest$KmsKeyId' => '

The identifier of the Key Management Service (KMS) KMS key to use for Amazon EBS encryption. If this parameter is not specified, your KMS key for Amazon EBS is used. If KmsKeyId is specified, the encrypted state must be true.

You can specify the KMS key using any of the following:

  • Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.

  • Key alias. For example, alias/ExampleAlias.

  • Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab.

  • Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

Amazon Web Services authenticates the KMS key asynchronously. Therefore, if you specify an ID, alias, or ARN that is not valid, the action can appear to complete, but eventually fails.

', 'ImportImageRequest$KmsKeyId' => '

An identifier for the symmetric KMS key to use when creating the encrypted AMI. This parameter is only required if you want to use a non-default KMS key; if this parameter is not specified, the default KMS key for EBS is used. If a KmsKeyId is specified, the Encrypted flag must also be set.

The KMS key identifier may be provided in any of the following formats:

  • Key ID

  • Key alias

  • ARN using key ID. The ID ARN contains the arn:aws:kms namespace, followed by the Region of the key, the Amazon Web Services account ID of the key owner, the key namespace, and then the key ID. For example, arn:aws:kms:us-east-1:012345678910:key/abcd1234-a123-456a-a12b-a123b4cd56ef.

  • ARN using key alias. The alias ARN contains the arn:aws:kms namespace, followed by the Region of the key, the Amazon Web Services account ID of the key owner, the alias namespace, and then the key alias. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

Amazon Web Services parses KmsKeyId asynchronously, meaning that the action you call may appear to complete even though you provided an invalid identifier. This action will eventually report failure.

The specified KMS key must exist in the Region that the AMI is being copied to.

Amazon EBS does not support asymmetric KMS keys.

', 'ImportImageResult$KmsKeyId' => '

The identifier for the symmetric KMS key that was used to create the encrypted AMI.

', 'ImportSnapshotRequest$KmsKeyId' => '

An identifier for the symmetric KMS key to use when creating the encrypted snapshot. This parameter is only required if you want to use a non-default KMS key; if this parameter is not specified, the default KMS key for EBS is used. If a KmsKeyId is specified, the Encrypted flag must also be set.

The KMS key identifier may be provided in any of the following formats:

  • Key ID

  • Key alias

  • ARN using key ID. The ID ARN contains the arn:aws:kms namespace, followed by the Region of the key, the Amazon Web Services account ID of the key owner, the key namespace, and then the key ID. For example, arn:aws:kms:us-east-1:012345678910:key/abcd1234-a123-456a-a12b-a123b4cd56ef.

  • ARN using key alias. The alias ARN contains the arn:aws:kms namespace, followed by the Region of the key, the Amazon Web Services account ID of the key owner, the alias namespace, and then the key alias. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

Amazon Web Services parses KmsKeyId asynchronously, meaning that the action you call may appear to complete even though you provided an invalid identifier. This action will eventually report failure.

The specified KMS key must exist in the Region that the snapshot is being copied to.

Amazon EBS does not support asymmetric KMS keys.

', 'LaunchTemplateEbsBlockDevice$KmsKeyId' => '

The ARN of the Key Management Service (KMS) CMK used for encryption.

', 'LaunchTemplateEbsBlockDeviceRequest$KmsKeyId' => '

The ARN of the symmetric Key Management Service (KMS) CMK used for encryption.

', 'ModifyEbsDefaultKmsKeyIdRequest$KmsKeyId' => '

The identifier of the Key Management Service (KMS) KMS key to use for Amazon EBS encryption. If this parameter is not specified, your KMS key for Amazon EBS is used. If KmsKeyId is specified, the encrypted state must be true.

You can specify the KMS key using any of the following:

  • Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.

  • Key alias. For example, alias/ExampleAlias.

  • Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab.

  • Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

Amazon Web Services authenticates the KMS key asynchronously. Therefore, if you specify an ID, alias, or ARN that is not valid, the action can appear to complete, but eventually fails.

Amazon EBS does not support asymmetric KMS keys.

', ], ], 'LastError' => [ 'base' => '

The last error that occurred for a VPC endpoint.

', 'refs' => [ 'VpcEndpoint$LastError' => '

The last error that occurred for endpoint.

', ], ], 'LaunchPermission' => [ 'base' => '

Describes a launch permission.

', 'refs' => [ 'LaunchPermissionList$member' => NULL, ], ], 'LaunchPermissionList' => [ 'base' => NULL, 'refs' => [ 'ImageAttribute$LaunchPermissions' => '

The launch permissions.

', 'LaunchPermissionModifications$Add' => '

The Amazon Web Services account ID, organization ARN, or OU ARN to add to the list of launch permissions for the AMI.

', 'LaunchPermissionModifications$Remove' => '

The Amazon Web Services account ID, organization ARN, or OU ARN to remove from the list of launch permissions for the AMI.

', ], ], 'LaunchPermissionModifications' => [ 'base' => '

Describes a launch permission modification.

', 'refs' => [ 'ModifyImageAttributeRequest$LaunchPermission' => '

A new launch permission for the AMI.

', ], ], 'LaunchSpecification' => [ 'base' => '

Describes the launch specification for an instance.

', 'refs' => [ 'SpotInstanceRequest$LaunchSpecification' => '

Additional information for launching instances.

', ], ], 'LaunchSpecsList' => [ 'base' => NULL, 'refs' => [ 'SpotFleetRequestConfigData$LaunchSpecifications' => '

The launch specifications for the Spot Fleet request. If you specify LaunchSpecifications, you can\'t specify LaunchTemplateConfigs. If you include On-Demand capacity in your request, you must use LaunchTemplateConfigs.

', ], ], 'LaunchTemplate' => [ 'base' => '

Describes a launch template.

', 'refs' => [ 'CreateLaunchTemplateResult$LaunchTemplate' => '

Information about the launch template.

', 'DeleteLaunchTemplateResult$LaunchTemplate' => '

Information about the launch template.

', 'LaunchTemplateSet$member' => NULL, 'ModifyLaunchTemplateResult$LaunchTemplate' => '

Information about the launch template.

', ], ], 'LaunchTemplateAndOverridesResponse' => [ 'base' => '

Describes a launch template and overrides.

', 'refs' => [ 'CreateFleetError$LaunchTemplateAndOverrides' => '

The launch templates and overrides that were used for launching the instances. The values that you specify in the Overrides replace the values in the launch template.

', 'CreateFleetInstance$LaunchTemplateAndOverrides' => '

The launch templates and overrides that were used for launching the instances. The values that you specify in the Overrides replace the values in the launch template.

', 'DescribeFleetError$LaunchTemplateAndOverrides' => '

The launch templates and overrides that were used for launching the instances. The values that you specify in the Overrides replace the values in the launch template.

', 'DescribeFleetsInstances$LaunchTemplateAndOverrides' => '

The launch templates and overrides that were used for launching the instances. The values that you specify in the Overrides replace the values in the launch template.

', ], ], 'LaunchTemplateAutoRecoveryState' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceMaintenanceOptions$AutoRecovery' => '

Disables the automatic recovery behavior of your instance or sets it to default.

', 'LaunchTemplateInstanceMaintenanceOptionsRequest$AutoRecovery' => '

Disables the automatic recovery behavior of your instance or sets it to default. For more information, see Simplified automatic recovery.

', ], ], 'LaunchTemplateBlockDeviceMapping' => [ 'base' => '

Describes a block device mapping.

', 'refs' => [ 'LaunchTemplateBlockDeviceMappingList$member' => NULL, ], ], 'LaunchTemplateBlockDeviceMappingList' => [ 'base' => NULL, 'refs' => [ 'ResponseLaunchTemplateData$BlockDeviceMappings' => '

The block device mappings.

', ], ], 'LaunchTemplateBlockDeviceMappingRequest' => [ 'base' => '

Describes a block device mapping.

', 'refs' => [ 'LaunchTemplateBlockDeviceMappingRequestList$member' => NULL, ], ], 'LaunchTemplateBlockDeviceMappingRequestList' => [ 'base' => NULL, 'refs' => [ 'RequestLaunchTemplateData$BlockDeviceMappings' => '

The block device mapping.

', ], ], 'LaunchTemplateCapacityReservationSpecificationRequest' => [ 'base' => '

Describes an instance\'s Capacity Reservation targeting option. You can specify only one option at a time. Use the CapacityReservationPreference parameter to configure the instance to run in On-Demand capacity or to run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone). Use the CapacityReservationTarget parameter to explicitly target a specific Capacity Reservation or a Capacity Reservation group.

', 'refs' => [ 'RequestLaunchTemplateData$CapacityReservationSpecification' => '

The Capacity Reservation targeting option. If you do not specify this parameter, the instance\'s Capacity Reservation preference defaults to open, which enables it to run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).

', ], ], 'LaunchTemplateCapacityReservationSpecificationResponse' => [ 'base' => '

Information about the Capacity Reservation targeting option.

', 'refs' => [ 'ResponseLaunchTemplateData$CapacityReservationSpecification' => '

Information about the Capacity Reservation targeting option.

', ], ], 'LaunchTemplateConfig' => [ 'base' => '

Describes a launch template and overrides.

', 'refs' => [ 'LaunchTemplateConfigList$member' => NULL, ], ], 'LaunchTemplateConfigList' => [ 'base' => NULL, 'refs' => [ 'ModifySpotFleetRequestRequest$LaunchTemplateConfigs' => '

The launch template and overrides. You can only use this parameter if you specified a launch template (LaunchTemplateConfigs) in your Spot Fleet request. If you specified LaunchSpecifications in your Spot Fleet request, then omit this parameter.

', 'SpotFleetRequestConfigData$LaunchTemplateConfigs' => '

The launch template and overrides. If you specify LaunchTemplateConfigs, you can\'t specify LaunchSpecifications. If you include On-Demand capacity in your request, you must use LaunchTemplateConfigs.

', ], ], 'LaunchTemplateCpuOptions' => [ 'base' => '

The CPU options for the instance.

', 'refs' => [ 'ResponseLaunchTemplateData$CpuOptions' => '

The CPU options for the instance. For more information, see Optimizing CPU options in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'LaunchTemplateCpuOptionsRequest' => [ 'base' => '

The CPU options for the instance. Both the core count and threads per core must be specified in the request.

', 'refs' => [ 'RequestLaunchTemplateData$CpuOptions' => '

The CPU options for the instance. For more information, see Optimizing CPU Options in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'LaunchTemplateEbsBlockDevice' => [ 'base' => '

Describes a block device for an EBS volume.

', 'refs' => [ 'LaunchTemplateBlockDeviceMapping$Ebs' => '

Information about the block device for an EBS volume.

', ], ], 'LaunchTemplateEbsBlockDeviceRequest' => [ 'base' => '

The parameters for a block device for an EBS volume.

', 'refs' => [ 'LaunchTemplateBlockDeviceMappingRequest$Ebs' => '

Parameters used to automatically set up EBS volumes when the instance is launched.

', ], ], 'LaunchTemplateElasticInferenceAccelerator' => [ 'base' => '

Describes an elastic inference accelerator.

', 'refs' => [ 'LaunchTemplateElasticInferenceAcceleratorList$member' => NULL, ], ], 'LaunchTemplateElasticInferenceAcceleratorCount' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateElasticInferenceAccelerator$Count' => '

The number of elastic inference accelerators to attach to the instance.

Default: 1

', ], ], 'LaunchTemplateElasticInferenceAcceleratorList' => [ 'base' => NULL, 'refs' => [ 'RequestLaunchTemplateData$ElasticInferenceAccelerators' => '

An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.

You cannot specify accelerators from different generations in the same request.

Starting April 15, 2023, Amazon Web Services will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.

', ], ], 'LaunchTemplateElasticInferenceAcceleratorResponse' => [ 'base' => '

Describes an elastic inference accelerator.

', 'refs' => [ 'LaunchTemplateElasticInferenceAcceleratorResponseList$member' => NULL, ], ], 'LaunchTemplateElasticInferenceAcceleratorResponseList' => [ 'base' => NULL, 'refs' => [ 'ResponseLaunchTemplateData$ElasticInferenceAccelerators' => '

An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.

You cannot specify accelerators from different generations in the same request.

Starting April 15, 2023, Amazon Web Services will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.

', ], ], 'LaunchTemplateEnaSrdSpecification' => [ 'base' => '

ENA Express uses Amazon Web Services Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled.

To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it.

', 'refs' => [ 'LaunchTemplateInstanceNetworkInterfaceSpecification$EnaSrdSpecification' => '

Contains the ENA Express settings for instances launched from your launch template.

', ], ], 'LaunchTemplateEnaSrdUdpSpecification' => [ 'base' => '

ENA Express is compatible with both TCP and UDP transport protocols. When it\'s enabled, TCP traffic automatically uses it. However, some UDP-based applications are designed to handle network packets that are out of order, without a need for retransmission, such as live video broadcasting or other near-real-time applications. For UDP traffic, you can specify whether to use ENA Express, based on your application environment needs.

', 'refs' => [ 'LaunchTemplateEnaSrdSpecification$EnaSrdUdpSpecification' => '

Configures ENA Express for UDP network traffic.

', ], ], 'LaunchTemplateEnclaveOptions' => [ 'base' => '

Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves.

', 'refs' => [ 'ResponseLaunchTemplateData$EnclaveOptions' => '

Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves.

', ], ], 'LaunchTemplateEnclaveOptionsRequest' => [ 'base' => '

Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For more information, see What is Amazon Web Services Nitro Enclaves? in the Amazon Web Services Nitro Enclaves User Guide.

', 'refs' => [ 'RequestLaunchTemplateData$EnclaveOptions' => '

Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For more information, see What is Amazon Web Services Nitro Enclaves? in the Amazon Web Services Nitro Enclaves User Guide.

You can\'t enable Amazon Web Services Nitro Enclaves and hibernation on the same instance.

', ], ], 'LaunchTemplateErrorCode' => [ 'base' => NULL, 'refs' => [ 'ResponseError$Code' => '

The error code.

', ], ], 'LaunchTemplateHibernationOptions' => [ 'base' => '

Indicates whether an instance is configured for hibernation.

', 'refs' => [ 'ResponseLaunchTemplateData$HibernationOptions' => '

Indicates whether an instance is configured for hibernation. For more information, see Hibernate your instance in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'LaunchTemplateHibernationOptionsRequest' => [ 'base' => '

Indicates whether the instance is configured for hibernation. This parameter is valid only if the instance meets the hibernation prerequisites.

', 'refs' => [ 'RequestLaunchTemplateData$HibernationOptions' => '

Indicates whether an instance is enabled for hibernation. This parameter is valid only if the instance meets the hibernation prerequisites. For more information, see Hibernate your instance in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'LaunchTemplateHttpTokensState' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceMetadataOptions$HttpTokens' => '

Indicates whether IMDSv2 is required.

  • optional - IMDSv2 is optional. You can choose whether to send a session token in your instance metadata retrieval requests. If you retrieve IAM role credentials without a session token, you receive the IMDSv1 role credentials. If you retrieve IAM role credentials using a valid session token, you receive the IMDSv2 role credentials.

  • required - IMDSv2 is required. You must send a session token in your instance metadata retrieval requests. With this option, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available.

', 'LaunchTemplateInstanceMetadataOptionsRequest$HttpTokens' => '

Indicates whether IMDSv2 is required.

  • optional - IMDSv2 is optional. You can choose whether to send a session token in your instance metadata retrieval requests. If you retrieve IAM role credentials without a session token, you receive the IMDSv1 role credentials. If you retrieve IAM role credentials using a valid session token, you receive the IMDSv2 role credentials.

  • required - IMDSv2 is required. You must send a session token in your instance metadata retrieval requests. With this option, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available.

Default: If the value of ImdsSupport for the Amazon Machine Image (AMI) for your instance is v2.0, the default is required.

', ], ], 'LaunchTemplateIamInstanceProfileSpecification' => [ 'base' => '

Describes an IAM instance profile.

', 'refs' => [ 'ResponseLaunchTemplateData$IamInstanceProfile' => '

The IAM instance profile.

', ], ], 'LaunchTemplateIamInstanceProfileSpecificationRequest' => [ 'base' => '

An IAM instance profile.

', 'refs' => [ 'RequestLaunchTemplateData$IamInstanceProfile' => '

The name or Amazon Resource Name (ARN) of an IAM instance profile.

', ], ], 'LaunchTemplateId' => [ 'base' => NULL, 'refs' => [ 'CreateLaunchTemplateVersionRequest$LaunchTemplateId' => '

The ID of the launch template.

You must specify either the LaunchTemplateId or the LaunchTemplateName, but not both.

', 'DeleteLaunchTemplateRequest$LaunchTemplateId' => '

The ID of the launch template.

You must specify either the LaunchTemplateId or the LaunchTemplateName, but not both.

', 'DeleteLaunchTemplateVersionsRequest$LaunchTemplateId' => '

The ID of the launch template.

You must specify either the LaunchTemplateId or the LaunchTemplateName, but not both.

', 'DescribeLaunchTemplateVersionsRequest$LaunchTemplateId' => '

The ID of the launch template.

To describe one or more versions of a specified launch template, you must specify either the LaunchTemplateId or the LaunchTemplateName, but not both.

To describe all the latest or default launch template versions in your account, you must omit this parameter.

', 'FastLaunchLaunchTemplateSpecificationRequest$LaunchTemplateId' => '

Specify the ID of the launch template that the AMI should use for Windows fast launch.

', 'FastLaunchLaunchTemplateSpecificationResponse$LaunchTemplateId' => '

The ID of the launch template that the AMI uses for Windows fast launch.

', 'FleetLaunchTemplateSpecificationRequest$LaunchTemplateId' => '

The ID of the launch template.

You must specify the LaunchTemplateId or the LaunchTemplateName, but not both.

', 'LaunchTemplateIdStringList$member' => NULL, 'LaunchTemplateSpecification$LaunchTemplateId' => '

The ID of the launch template.

You must specify the LaunchTemplateId or the LaunchTemplateName, but not both.

', 'ModifyLaunchTemplateRequest$LaunchTemplateId' => '

The ID of the launch template.

You must specify either the LaunchTemplateId or the LaunchTemplateName, but not both.

', ], ], 'LaunchTemplateIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeLaunchTemplatesRequest$LaunchTemplateIds' => '

One or more launch template IDs.

', ], ], 'LaunchTemplateInstanceMaintenanceOptions' => [ 'base' => '

The maintenance options of your instance.

', 'refs' => [ 'ResponseLaunchTemplateData$MaintenanceOptions' => '

The maintenance options for your instance.

', ], ], 'LaunchTemplateInstanceMaintenanceOptionsRequest' => [ 'base' => '

The maintenance options of your instance.

', 'refs' => [ 'RequestLaunchTemplateData$MaintenanceOptions' => '

The maintenance options for the instance.

', ], ], 'LaunchTemplateInstanceMarketOptions' => [ 'base' => '

The market (purchasing) option for the instances.

', 'refs' => [ 'ResponseLaunchTemplateData$InstanceMarketOptions' => '

The market (purchasing) option for the instances.

', ], ], 'LaunchTemplateInstanceMarketOptionsRequest' => [ 'base' => '

The market (purchasing) option for the instances.

', 'refs' => [ 'RequestLaunchTemplateData$InstanceMarketOptions' => '

The market (purchasing) option for the instances.

', ], ], 'LaunchTemplateInstanceMetadataEndpointState' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceMetadataOptions$HttpEndpoint' => '

Enables or disables the HTTP metadata endpoint on your instances. If the parameter is not specified, the default state is enabled.

If you specify a value of disabled, you will not be able to access your instance metadata.

', 'LaunchTemplateInstanceMetadataOptionsRequest$HttpEndpoint' => '

Enables or disables the HTTP metadata endpoint on your instances. If the parameter is not specified, the default state is enabled.

If you specify a value of disabled, you will not be able to access your instance metadata.

', ], ], 'LaunchTemplateInstanceMetadataOptions' => [ 'base' => '

The metadata options for the instance. For more information, see Instance metadata and user data in the Amazon Elastic Compute Cloud User Guide.

', 'refs' => [ 'ResponseLaunchTemplateData$MetadataOptions' => '

The metadata options for the instance. For more information, see Instance metadata and user data in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'LaunchTemplateInstanceMetadataOptionsRequest' => [ 'base' => '

The metadata options for the instance. For more information, see Instance metadata and user data in the Amazon Elastic Compute Cloud User Guide.

', 'refs' => [ 'RequestLaunchTemplateData$MetadataOptions' => '

The metadata options for the instance. For more information, see Instance metadata and user data in the Amazon Elastic Compute Cloud User Guide.

', ], ], 'LaunchTemplateInstanceMetadataOptionsState' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceMetadataOptions$State' => '

The state of the metadata option changes.

pending - The metadata options are being updated and the instance is not ready to process metadata traffic with the new selection.

applied - The metadata options have been successfully applied on the instance.

', ], ], 'LaunchTemplateInstanceMetadataProtocolIpv6' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceMetadataOptions$HttpProtocolIpv6' => '

Enables or disables the IPv6 endpoint for the instance metadata service.

Default: disabled

', 'LaunchTemplateInstanceMetadataOptionsRequest$HttpProtocolIpv6' => '

Enables or disables the IPv6 endpoint for the instance metadata service.

Default: disabled

', ], ], 'LaunchTemplateInstanceMetadataTagsState' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateInstanceMetadataOptions$InstanceMetadataTags' => '

Set to enabled to allow access to instance tags from the instance metadata. Set to disabled to turn off access to instance tags from the instance metadata. For more information, see Work with instance tags using the instance metadata.

Default: disabled

', 'LaunchTemplateInstanceMetadataOptionsRequest$InstanceMetadataTags' => '

Set to enabled to allow access to instance tags from the instance metadata. Set to disabled to turn off access to instance tags from the instance metadata. For more information, see Work with instance tags using the instance metadata.

Default: disabled

', ], ], 'LaunchTemplateInstanceNetworkInterfaceSpecification' => [ 'base' => '

Describes a network interface.

', 'refs' => [ 'LaunchTemplateInstanceNetworkInterfaceSpecificationList$member' => NULL, ], ], 'LaunchTemplateInstanceNetworkInterfaceSpecificationList' => [ 'base' => NULL, 'refs' => [ 'ResponseLaunchTemplateData$NetworkInterfaces' => '

The network interfaces.

', ], ], 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest' => [ 'base' => '

The parameters for a network interface.

', 'refs' => [ 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequestList$member' => NULL, ], ], 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequestList' => [ 'base' => NULL, 'refs' => [ 'RequestLaunchTemplateData$NetworkInterfaces' => '

One or more network interfaces. If you specify a network interface, you must specify any security groups and subnets as part of the network interface.

', ], ], 'LaunchTemplateLicenseConfiguration' => [ 'base' => '

Describes a license configuration.

', 'refs' => [ 'LaunchTemplateLicenseList$member' => NULL, ], ], 'LaunchTemplateLicenseConfigurationRequest' => [ 'base' => '

Describes a license configuration.

', 'refs' => [ 'LaunchTemplateLicenseSpecificationListRequest$member' => NULL, ], ], 'LaunchTemplateLicenseList' => [ 'base' => NULL, 'refs' => [ 'ResponseLaunchTemplateData$LicenseSpecifications' => '

The license configurations.

', ], ], 'LaunchTemplateLicenseSpecificationListRequest' => [ 'base' => NULL, 'refs' => [ 'RequestLaunchTemplateData$LicenseSpecifications' => '

The license configurations.

', ], ], 'LaunchTemplateName' => [ 'base' => NULL, 'refs' => [ 'CreateLaunchTemplateRequest$LaunchTemplateName' => '

A name for the launch template.

', 'CreateLaunchTemplateVersionRequest$LaunchTemplateName' => '

The name of the launch template.

You must specify the LaunchTemplateName or the LaunchTemplateId, but not both.

', 'DeleteLaunchTemplateRequest$LaunchTemplateName' => '

The name of the launch template.

You must specify either the LaunchTemplateName or the LaunchTemplateId, but not both.

', 'DeleteLaunchTemplateVersionsRequest$LaunchTemplateName' => '

The name of the launch template.

You must specify either the LaunchTemplateName or the LaunchTemplateId, but not both.

', 'DescribeLaunchTemplateVersionsRequest$LaunchTemplateName' => '

The name of the launch template.

To describe one or more versions of a specified launch template, you must specify either the LaunchTemplateName or the LaunchTemplateId, but not both.

To describe all the latest or default launch template versions in your account, you must omit this parameter.

', 'FleetLaunchTemplateSpecification$LaunchTemplateName' => '

The name of the launch template.

You must specify the LaunchTemplateName or the LaunchTemplateId, but not both.

', 'FleetLaunchTemplateSpecificationRequest$LaunchTemplateName' => '

The name of the launch template.

You must specify the LaunchTemplateName or the LaunchTemplateId, but not both.

', 'LaunchTemplate$LaunchTemplateName' => '

The name of the launch template.

', 'LaunchTemplateNameStringList$member' => NULL, 'LaunchTemplateVersion$LaunchTemplateName' => '

The name of the launch template.

', 'ModifyLaunchTemplateRequest$LaunchTemplateName' => '

The name of the launch template.

You must specify either the LaunchTemplateName or the LaunchTemplateId, but not both.

', ], ], 'LaunchTemplateNameStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeLaunchTemplatesRequest$LaunchTemplateNames' => '

One or more launch template names.

', ], ], 'LaunchTemplateOverrides' => [ 'base' => '

Describes overrides for a launch template.

', 'refs' => [ 'LaunchTemplateOverridesList$member' => NULL, ], ], 'LaunchTemplateOverridesList' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateConfig$Overrides' => '

Any parameters that you specify override the same parameters in the launch template.

', ], ], 'LaunchTemplatePlacement' => [ 'base' => '

Describes the placement of an instance.

', 'refs' => [ 'ResponseLaunchTemplateData$Placement' => '

The placement of the instance.

', ], ], 'LaunchTemplatePlacementRequest' => [ 'base' => '

Describes the placement of an instance.

', 'refs' => [ 'RequestLaunchTemplateData$Placement' => '

The placement for the instance.

', ], ], 'LaunchTemplatePrivateDnsNameOptions' => [ 'base' => '

Describes the options for instance hostnames.

', 'refs' => [ 'ResponseLaunchTemplateData$PrivateDnsNameOptions' => '

The options for the instance hostname.

', ], ], 'LaunchTemplatePrivateDnsNameOptionsRequest' => [ 'base' => '

Describes the options for instance hostnames.

', 'refs' => [ 'RequestLaunchTemplateData$PrivateDnsNameOptions' => '

The options for the instance hostname. The default values are inherited from the subnet.

', ], ], 'LaunchTemplateSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLaunchTemplatesResult$LaunchTemplates' => '

Information about the launch templates.

', ], ], 'LaunchTemplateSpecification' => [ 'base' => '

The launch template to use. You must specify either the launch template ID or launch template name in the request, but not both.

', 'refs' => [ 'RunInstancesRequest$LaunchTemplate' => '

The launch template to use to launch the instances. Any parameters that you specify in RunInstances override the same parameters in the launch template. You can specify either the name or ID of a launch template, but not both.

', ], ], 'LaunchTemplateSpotMarketOptions' => [ 'base' => '

The options for Spot Instances.

', 'refs' => [ 'LaunchTemplateInstanceMarketOptions$SpotOptions' => '

The options for Spot Instances.

', ], ], 'LaunchTemplateSpotMarketOptionsRequest' => [ 'base' => '

The options for Spot Instances.

', 'refs' => [ 'LaunchTemplateInstanceMarketOptionsRequest$SpotOptions' => '

The options for Spot Instances.

', ], ], 'LaunchTemplateTagSpecification' => [ 'base' => '

The tags specification for the launch template.

', 'refs' => [ 'LaunchTemplateTagSpecificationList$member' => NULL, ], ], 'LaunchTemplateTagSpecificationList' => [ 'base' => NULL, 'refs' => [ 'ResponseLaunchTemplateData$TagSpecifications' => '

The tags that are applied to the resources that are created during instance launch.

', ], ], 'LaunchTemplateTagSpecificationRequest' => [ 'base' => '

The tags specification for the resources that are created during instance launch.

', 'refs' => [ 'LaunchTemplateTagSpecificationRequestList$member' => NULL, ], ], 'LaunchTemplateTagSpecificationRequestList' => [ 'base' => NULL, 'refs' => [ 'RequestLaunchTemplateData$TagSpecifications' => '

The tags to apply to the resources that are created during instance launch. These tags are not applied to the launch template.

', ], ], 'LaunchTemplateVersion' => [ 'base' => '

Describes a launch template version.

', 'refs' => [ 'CreateLaunchTemplateVersionResult$LaunchTemplateVersion' => '

Information about the launch template version.

', 'LaunchTemplateVersionSet$member' => NULL, ], ], 'LaunchTemplateVersionSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLaunchTemplateVersionsResult$LaunchTemplateVersions' => '

Information about the launch template versions.

', ], ], 'LaunchTemplatesMonitoring' => [ 'base' => '

Describes the monitoring for the instance.

', 'refs' => [ 'ResponseLaunchTemplateData$Monitoring' => '

The monitoring for the instance.

', ], ], 'LaunchTemplatesMonitoringRequest' => [ 'base' => '

Describes the monitoring for the instance.

', 'refs' => [ 'RequestLaunchTemplateData$Monitoring' => '

The monitoring for the instance.

', ], ], 'LicenseConfiguration' => [ 'base' => '

Describes a license configuration.

', 'refs' => [ 'LicenseList$member' => NULL, ], ], 'LicenseConfigurationRequest' => [ 'base' => '

Describes a license configuration.

', 'refs' => [ 'LicenseSpecificationListRequest$member' => NULL, ], ], 'LicenseList' => [ 'base' => NULL, 'refs' => [ 'Instance$Licenses' => '

The license configurations for the instance.

', ], ], 'LicenseSpecificationListRequest' => [ 'base' => NULL, 'refs' => [ 'RunInstancesRequest$LicenseSpecifications' => '

The license configurations.

', ], ], 'ListImagesInRecycleBinMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListImagesInRecycleBinRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'ListImagesInRecycleBinRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListImagesInRecycleBinResult' => [ 'base' => NULL, 'refs' => [], ], 'ListSnapshotsInRecycleBinMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListSnapshotsInRecycleBinRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'ListSnapshotsInRecycleBinRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListSnapshotsInRecycleBinResult' => [ 'base' => NULL, 'refs' => [], ], 'ListingState' => [ 'base' => NULL, 'refs' => [ 'InstanceCount$State' => '

The states of the listed Reserved Instances.

', ], ], 'ListingStatus' => [ 'base' => NULL, 'refs' => [ 'ReservedInstancesListing$Status' => '

The status of the Reserved Instance listing.

', ], ], 'LoadBalancerArn' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointLoadBalancerOptions$LoadBalancerArn' => '

The ARN of the load balancer.

', ], ], 'LoadBalancersConfig' => [ 'base' => '

Describes the Classic Load Balancers and target groups to attach to a Spot Fleet request.

', 'refs' => [ 'SpotFleetRequestConfigData$LoadBalancersConfig' => '

One or more Classic Load Balancers and target groups to attach to the Spot Fleet request. Spot Fleet registers the running Spot Instances with the specified Classic Load Balancers and target groups.

With Network Load Balancers, Spot Fleet cannot register instances that have the following instance types: C1, CC1, CC2, CG1, CG2, CR1, CS1, G1, G2, HI1, HS1, M1, M2, M3, and T1.

', ], ], 'LoadPermission' => [ 'base' => '

Describes a load permission.

', 'refs' => [ 'LoadPermissionList$member' => NULL, ], ], 'LoadPermissionList' => [ 'base' => NULL, 'refs' => [ 'FpgaImageAttribute$LoadPermissions' => '

The load permissions.

', ], ], 'LoadPermissionListRequest' => [ 'base' => NULL, 'refs' => [ 'LoadPermissionModifications$Add' => '

The load permissions to add.

', 'LoadPermissionModifications$Remove' => '

The load permissions to remove.

', ], ], 'LoadPermissionModifications' => [ 'base' => '

Describes modifications to the load permissions of an Amazon FPGA image (AFI).

', 'refs' => [ 'ModifyFpgaImageAttributeRequest$LoadPermission' => '

The load permission for the AFI.

', ], ], 'LoadPermissionRequest' => [ 'base' => '

Describes a load permission.

', 'refs' => [ 'LoadPermissionListRequest$member' => NULL, ], ], 'LocalGateway' => [ 'base' => '

Describes a local gateway.

', 'refs' => [ 'LocalGatewaySet$member' => NULL, ], ], 'LocalGatewayId' => [ 'base' => NULL, 'refs' => [ 'CreateLocalGatewayRouteTableRequest$LocalGatewayId' => '

The ID of the local gateway.

', 'CreateRouteRequest$LocalGatewayId' => '

The ID of the local gateway.

', 'LocalGateway$LocalGatewayId' => '

The ID of the local gateway.

', 'LocalGatewayIdSet$member' => NULL, 'LocalGatewayRouteTable$LocalGatewayId' => '

The ID of the local gateway.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'ReplaceRouteRequest$LocalGatewayId' => '

The ID of the local gateway.

', ], ], 'LocalGatewayIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewaysRequest$LocalGatewayIds' => '

The IDs of the local gateways.

', ], ], 'LocalGatewayMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeLocalGatewayRouteTableVpcAssociationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeLocalGatewayRouteTablesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeLocalGatewayVirtualInterfaceGroupsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeLocalGatewayVirtualInterfacesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeLocalGatewaysRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'LocalGatewayRoute' => [ 'base' => '

Describes a route for a local gateway route table.

', 'refs' => [ 'CreateLocalGatewayRouteResult$Route' => '

Information about the route.

', 'DeleteLocalGatewayRouteResult$Route' => '

Information about the route.

', 'LocalGatewayRouteList$member' => NULL, 'ModifyLocalGatewayRouteResult$Route' => '

Information about the local gateway route table.

', ], ], 'LocalGatewayRouteList' => [ 'base' => NULL, 'refs' => [ 'SearchLocalGatewayRoutesResult$Routes' => '

Information about the routes.

', ], ], 'LocalGatewayRouteState' => [ 'base' => NULL, 'refs' => [ 'LocalGatewayRoute$State' => '

The state of the route.

', ], ], 'LocalGatewayRouteTable' => [ 'base' => '

Describes a local gateway route table.

', 'refs' => [ 'CreateLocalGatewayRouteTableResult$LocalGatewayRouteTable' => '

Information about the local gateway route table.

', 'DeleteLocalGatewayRouteTableResult$LocalGatewayRouteTable' => '

Information about the local gateway route table.

', 'LocalGatewayRouteTableSet$member' => NULL, ], ], 'LocalGatewayRouteTableIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayRouteTablesRequest$LocalGatewayRouteTableIds' => '

The IDs of the local gateway route tables.

', ], ], 'LocalGatewayRouteTableMode' => [ 'base' => NULL, 'refs' => [ 'CreateLocalGatewayRouteTableRequest$Mode' => '

The mode of the local gateway route table.

', 'LocalGatewayRouteTable$Mode' => '

The mode of the local gateway route table.

', ], ], 'LocalGatewayRouteTableSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayRouteTablesResult$LocalGatewayRouteTables' => '

Information about the local gateway route tables.

', ], ], 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation' => [ 'base' => '

Describes an association between a local gateway route table and a virtual interface group.

', 'refs' => [ 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult$LocalGatewayRouteTableVirtualInterfaceGroupAssociation' => '

Information about the local gateway route table virtual interface group association.

', 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult$LocalGatewayRouteTableVirtualInterfaceGroupAssociation' => '

Information about the association.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationSet$member' => NULL, ], ], 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId' => [ 'base' => NULL, 'refs' => [ 'DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest$LocalGatewayRouteTableVirtualInterfaceGroupAssociationId' => '

The ID of the local gateway route table virtual interface group association.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation$LocalGatewayRouteTableVirtualInterfaceGroupAssociationId' => '

The ID of the association.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationIdSet$member' => NULL, ], ], 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest$LocalGatewayRouteTableVirtualInterfaceGroupAssociationIds' => '

The IDs of the associations.

', ], ], 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsResult$LocalGatewayRouteTableVirtualInterfaceGroupAssociations' => '

Information about the associations.

', ], ], 'LocalGatewayRouteTableVpcAssociation' => [ 'base' => '

Describes an association between a local gateway route table and a VPC.

', 'refs' => [ 'CreateLocalGatewayRouteTableVpcAssociationResult$LocalGatewayRouteTableVpcAssociation' => '

Information about the association.

', 'DeleteLocalGatewayRouteTableVpcAssociationResult$LocalGatewayRouteTableVpcAssociation' => '

Information about the association.

', 'LocalGatewayRouteTableVpcAssociationSet$member' => NULL, ], ], 'LocalGatewayRouteTableVpcAssociationId' => [ 'base' => NULL, 'refs' => [ 'DeleteLocalGatewayRouteTableVpcAssociationRequest$LocalGatewayRouteTableVpcAssociationId' => '

The ID of the association.

', 'LocalGatewayRouteTableVpcAssociation$LocalGatewayRouteTableVpcAssociationId' => '

The ID of the association.

', 'LocalGatewayRouteTableVpcAssociationIdSet$member' => NULL, ], ], 'LocalGatewayRouteTableVpcAssociationIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayRouteTableVpcAssociationsRequest$LocalGatewayRouteTableVpcAssociationIds' => '

The IDs of the associations.

', ], ], 'LocalGatewayRouteTableVpcAssociationSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayRouteTableVpcAssociationsResult$LocalGatewayRouteTableVpcAssociations' => '

Information about the associations.

', ], ], 'LocalGatewayRouteType' => [ 'base' => NULL, 'refs' => [ 'LocalGatewayRoute$Type' => '

The route type.

', ], ], 'LocalGatewayRoutetableId' => [ 'base' => NULL, 'refs' => [ 'CoipPool$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'CreateCoipPoolRequest$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'CreateLocalGatewayRouteRequest$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'CreateLocalGatewayRouteTableVpcAssociationRequest$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'DeleteLocalGatewayRouteRequest$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'DeleteLocalGatewayRouteTableRequest$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'LocalGatewayRoute$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'LocalGatewayRouteTableIdSet$member' => NULL, 'ModifyLocalGatewayRouteRequest$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'SearchLocalGatewayRoutesRequest$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', ], ], 'LocalGatewaySet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewaysResult$LocalGateways' => '

Information about the local gateways.

', ], ], 'LocalGatewayVirtualInterface' => [ 'base' => '

Describes a local gateway virtual interface.

', 'refs' => [ 'LocalGatewayVirtualInterfaceSet$member' => NULL, ], ], 'LocalGatewayVirtualInterfaceGroup' => [ 'base' => '

Describes a local gateway virtual interface group.

', 'refs' => [ 'LocalGatewayVirtualInterfaceGroupSet$member' => NULL, ], ], 'LocalGatewayVirtualInterfaceGroupId' => [ 'base' => NULL, 'refs' => [ 'CreateLocalGatewayRouteRequest$LocalGatewayVirtualInterfaceGroupId' => '

The ID of the virtual interface group.

', 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest$LocalGatewayVirtualInterfaceGroupId' => '

The ID of the local gateway route table virtual interface group association.

', 'LocalGatewayRoute$LocalGatewayVirtualInterfaceGroupId' => '

The ID of the virtual interface group.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation$LocalGatewayVirtualInterfaceGroupId' => '

The ID of the virtual interface group.

', 'LocalGatewayVirtualInterfaceGroup$LocalGatewayVirtualInterfaceGroupId' => '

The ID of the virtual interface group.

', 'LocalGatewayVirtualInterfaceGroupIdSet$member' => NULL, 'ModifyLocalGatewayRouteRequest$LocalGatewayVirtualInterfaceGroupId' => '

The ID of the virtual interface group.

', ], ], 'LocalGatewayVirtualInterfaceGroupIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayVirtualInterfaceGroupsRequest$LocalGatewayVirtualInterfaceGroupIds' => '

The IDs of the virtual interface groups.

', ], ], 'LocalGatewayVirtualInterfaceGroupSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayVirtualInterfaceGroupsResult$LocalGatewayVirtualInterfaceGroups' => '

The virtual interface groups.

', ], ], 'LocalGatewayVirtualInterfaceId' => [ 'base' => NULL, 'refs' => [ 'LocalGatewayVirtualInterface$LocalGatewayVirtualInterfaceId' => '

The ID of the virtual interface.

', 'LocalGatewayVirtualInterfaceIdSet$member' => NULL, ], ], 'LocalGatewayVirtualInterfaceIdSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayVirtualInterfacesRequest$LocalGatewayVirtualInterfaceIds' => '

The IDs of the virtual interfaces.

', 'LocalGatewayVirtualInterfaceGroup$LocalGatewayVirtualInterfaceIds' => '

The IDs of the virtual interfaces.

', ], ], 'LocalGatewayVirtualInterfaceSet' => [ 'base' => NULL, 'refs' => [ 'DescribeLocalGatewayVirtualInterfacesResult$LocalGatewayVirtualInterfaces' => '

Information about the virtual interfaces.

', ], ], 'LocalStorage' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$LocalStorage' => '

Indicates whether instance types with instance store volumes are included, excluded, or required. For more information, Amazon EC2 instance store in the Amazon EC2 User Guide.

  • To include instance types with instance store volumes, specify included.

  • To require only instance types with instance store volumes, specify required.

  • To exclude instance types with instance store volumes, specify excluded.

Default: included

', 'InstanceRequirementsRequest$LocalStorage' => '

Indicates whether instance types with instance store volumes are included, excluded, or required. For more information, Amazon EC2 instance store in the Amazon EC2 User Guide.

  • To include instance types with instance store volumes, specify included.

  • To require only instance types with instance store volumes, specify required.

  • To exclude instance types with instance store volumes, specify excluded.

Default: included

', ], ], 'LocalStorageType' => [ 'base' => NULL, 'refs' => [ 'LocalStorageTypeSet$member' => NULL, ], ], 'LocalStorageTypeSet' => [ 'base' => NULL, 'refs' => [ 'InstanceRequirements$LocalStorageTypes' => '

The type of local storage that is required.

  • For instance types with hard disk drive (HDD) storage, specify hdd.

  • For instance types with solid state drive (SSD) storage, specify ssd.

Default: hdd and ssd

', 'InstanceRequirementsRequest$LocalStorageTypes' => '

The type of local storage that is required.

  • For instance types with hard disk drive (HDD) storage, specify hdd.

  • For instance types with solid state drive (SSD) storage, specify ssd.

Default: hdd and ssd

', ], ], 'Location' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeOffering$Location' => '

The identifier for the location. This depends on the location type. For example, if the location type is region, the location is the Region code (for example, us-east-2.)

', ], ], 'LocationType' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTypeOfferingsRequest$LocationType' => '

The location type.

', 'InstanceTypeOffering$LocationType' => '

The location type.

', ], ], 'LockMode' => [ 'base' => NULL, 'refs' => [ 'LockSnapshotRequest$LockMode' => '

The mode in which to lock the snapshot. Specify one of the following:

  • governance - Locks the snapshot in governance mode. Snapshots locked in governance mode can\'t be deleted until one of the following conditions are met:

    • The lock duration expires.

    • The snapshot is unlocked by a user with the appropriate permissions.

    Users with the appropriate IAM permissions can unlock the snapshot, increase or decrease the lock duration, and change the lock mode to compliance at any time.

    If you lock a snapshot in governance mode, omit CoolOffPeriod.

  • compliance - Locks the snapshot in compliance mode. Snapshots locked in compliance mode can\'t be unlocked by any user. They can be deleted only after the lock duration expires. Users can\'t decrease the lock duration or change the lock mode to governance. However, users with appropriate IAM permissions can increase the lock duration at any time.

    If you lock a snapshot in compliance mode, you can optionally specify CoolOffPeriod.

', ], ], 'LockSnapshotRequest' => [ 'base' => NULL, 'refs' => [], ], 'LockSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'LockState' => [ 'base' => NULL, 'refs' => [ 'LockSnapshotResult$LockState' => '

The state of the snapshot lock. Valid states include:

  • compliance-cooloff - The snapshot has been locked in compliance mode but it is still within the cooling-off period. The snapshot can\'t be deleted, but it can be unlocked and the lock settings can be modified by users with appropriate permissions.

  • governance - The snapshot is locked in governance mode. The snapshot can\'t be deleted, but it can be unlocked and the lock settings can be modified by users with appropriate permissions.

  • compliance - The snapshot is locked in compliance mode and the cooling-off period has expired. The snapshot can\'t be unlocked or deleted. The lock duration can only be increased by users with appropriate permissions.

  • expired - The snapshot was locked in compliance or governance mode but the lock duration has expired. The snapshot is not locked and can be deleted.

', 'LockedSnapshotsInfo$LockState' => '

The state of the snapshot lock. Valid states include:

  • compliance-cooloff - The snapshot has been locked in compliance mode but it is still within the cooling-off period. The snapshot can\'t be deleted, but it can be unlocked and the lock settings can be modified by users with appropriate permissions.

  • governance - The snapshot is locked in governance mode. The snapshot can\'t be deleted, but it can be unlocked and the lock settings can be modified by users with appropriate permissions.

  • compliance - The snapshot is locked in compliance mode and the cooling-off period has expired. The snapshot can\'t be unlocked or deleted. The lock duration can only be increased by users with appropriate permissions.

  • expired - The snapshot was locked in compliance or governance mode but the lock duration has expired. The snapshot is not locked and can be deleted.

', ], ], 'LockedSnapshotsInfo' => [ 'base' => '

Information about a locked snapshot.

', 'refs' => [ 'LockedSnapshotsInfoList$member' => NULL, ], ], 'LockedSnapshotsInfoList' => [ 'base' => NULL, 'refs' => [ 'DescribeLockedSnapshotsResult$Snapshots' => '

Information about the snapshots.

', ], ], 'LogDestinationType' => [ 'base' => NULL, 'refs' => [ 'CreateFlowLogsRequest$LogDestinationType' => '

The type of destination for the flow log data.

Default: cloud-watch-logs

', 'FlowLog$LogDestinationType' => '

The type of destination for the flow log data.

', ], ], 'Long' => [ 'base' => NULL, 'refs' => [ 'CreateVpnGatewayRequest$AmazonSideAsn' => '

A private Autonomous System Number (ASN) for the Amazon side of a BGP session. If you\'re using a 16-bit ASN, it must be in the 64512 to 65534 range. If you\'re using a 32-bit ASN, it must be in the 4200000000 to 4294967294 range.

Default: 64512

', 'DeleteLaunchTemplateVersionsResponseErrorItem$VersionNumber' => '

The version number of the launch template.

', 'DeleteLaunchTemplateVersionsResponseSuccessItem$VersionNumber' => '

The version number of the launch template.

', 'DescribeReservedInstancesOfferingsRequest$MaxDuration' => '

The maximum duration (in seconds) to filter when searching for offerings.

Default: 94608000 (3 years)

', 'DescribeReservedInstancesOfferingsRequest$MinDuration' => '

The minimum duration (in seconds) to filter when searching for offerings.

Default: 2592000 (1 month)

', 'DiskImageDescription$Size' => '

The size of the disk image, in GiB.

', 'DiskImageDetail$Bytes' => '

The size of the disk image, in GiB.

', 'DiskImageVolumeDescription$Size' => '

The size of the volume, in GiB.

', 'GetManagedPrefixListEntriesRequest$TargetVersion' => '

The version of the prefix list for which to return the entries. The default is the current version.

', 'ImportInstanceVolumeDetailItem$BytesConverted' => '

The number of bytes converted so far.

', 'ImportVolumeTaskDetails$BytesConverted' => '

The number of bytes converted so far.

', 'LaunchTemplate$DefaultVersionNumber' => '

The version number of the default version of the launch template.

', 'LaunchTemplate$LatestVersionNumber' => '

The version number of the latest version of the launch template.

', 'LaunchTemplateVersion$VersionNumber' => '

The version number.

', 'ManagedPrefixList$Version' => '

The version of the prefix list.

', 'ModifyManagedPrefixListRequest$CurrentVersion' => '

The current version of the prefix list.

', 'ModifyTransitGatewayOptions$AmazonSideAsn' => '

A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534 for 16-bit ASNs and 4200000000 to 4294967294 for 32-bit ASNs.

The modify ASN operation is not allowed on a transit gateway with active BGP sessions. You must first delete all transit gateway attachments that have BGP configured prior to modifying the ASN on the transit gateway.

', 'PriceSchedule$Term' => '

The number of months remaining in the reservation. For example, 2 is the second to the last month before the capacity reservation expires.

', 'PriceScheduleSpecification$Term' => '

The number of months remaining in the reservation. For example, 2 is the second to the last month before the capacity reservation expires.

', 'ReservedInstances$Duration' => '

The duration of the Reserved Instance, in seconds.

', 'ReservedInstancesOffering$Duration' => '

The duration of the Reserved Instance, in seconds.

', 'RestoreManagedPrefixListVersionRequest$PreviousVersion' => '

The version to restore.

', 'RestoreManagedPrefixListVersionRequest$CurrentVersion' => '

The current version number for the prefix list.

', 'TransitGatewayAttachmentBgpConfiguration$TransitGatewayAsn' => '

The transit gateway Autonomous System Number (ASN).

', 'TransitGatewayAttachmentBgpConfiguration$PeerAsn' => '

The peer Autonomous System Number (ASN).

', 'TransitGatewayConnectRequestBgpOptions$PeerAsn' => '

The peer Autonomous System Number (ASN).

', 'TransitGatewayOptions$AmazonSideAsn' => '

A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534 for 16-bit ASNs and 4200000000 to 4294967294 for 32-bit ASNs.

', 'TransitGatewayRequestOptions$AmazonSideAsn' => '

A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534 for 16-bit ASNs and 4200000000 to 4294967294 for 32-bit ASNs. The default is 64512.

', 'VolumeDetail$Size' => '

The size of the volume, in GiB.

', 'VolumeModification$Progress' => '

The modification progress, from 0 to 100 percent complete.

', 'VpnGateway$AmazonSideAsn' => '

The private Autonomous System Number (ASN) for the Amazon side of a BGP session.

', ], ], 'MaintenanceDetails' => [ 'base' => '

Details for Site-to-Site VPN tunnel endpoint maintenance events.

', 'refs' => [ 'GetVpnTunnelReplacementStatusResult$MaintenanceDetails' => '

Get details of pending tunnel endpoint maintenance.

', ], ], 'ManagedPrefixList' => [ 'base' => '

Describes a managed prefix list.

', 'refs' => [ 'CreateManagedPrefixListResult$PrefixList' => '

Information about the prefix list.

', 'DeleteManagedPrefixListResult$PrefixList' => '

Information about the prefix list.

', 'ManagedPrefixListSet$member' => NULL, 'ModifyManagedPrefixListResult$PrefixList' => '

Information about the prefix list.

', 'RestoreManagedPrefixListVersionResult$PrefixList' => '

Information about the prefix list.

', ], ], 'ManagedPrefixListSet' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedPrefixListsResult$PrefixLists' => '

Information about the prefix lists.

', ], ], 'MarketType' => [ 'base' => NULL, 'refs' => [ 'InstanceMarketOptionsRequest$MarketType' => '

The market type.

', 'LaunchTemplateInstanceMarketOptions$MarketType' => '

The market type.

', 'LaunchTemplateInstanceMarketOptionsRequest$MarketType' => '

The market type.

', ], ], 'MaxIpv4AddrPerInterface' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$Ipv4AddressesPerInterface' => '

The maximum number of IPv4 addresses per network interface.

', ], ], 'MaxIpv6AddrPerInterface' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$Ipv6AddressesPerInterface' => '

The maximum number of IPv6 addresses per network interface.

', ], ], 'MaxNetworkInterfaces' => [ 'base' => NULL, 'refs' => [ 'NetworkCardInfo$MaximumNetworkInterfaces' => '

The maximum number of network interfaces for the network card.

', 'NetworkInfo$MaximumNetworkInterfaces' => '

The maximum number of network interfaces for the instance type.

', ], ], 'MaxResults' => [ 'base' => NULL, 'refs' => [ 'SearchLocalGatewayRoutesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'MaxResultsParam' => [ 'base' => NULL, 'refs' => [ 'DescribeAwsNetworkPerformanceMetricSubscriptionsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'MaximumBandwidthInMbps' => [ 'base' => NULL, 'refs' => [ 'EbsOptimizedInfo$MaximumBandwidthInMbps' => '

The maximum bandwidth performance for an EBS-optimized instance type, in Mbps.

', ], ], 'MaximumEfaInterfaces' => [ 'base' => NULL, 'refs' => [ 'EfaInfo$MaximumEfaInterfaces' => '

The maximum number of Elastic Fabric Adapters for the instance type.

', ], ], 'MaximumIops' => [ 'base' => NULL, 'refs' => [ 'EbsOptimizedInfo$MaximumIops' => '

The maximum input/output storage operations per second for an EBS-optimized instance type.

', ], ], 'MaximumNetworkCards' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$MaximumNetworkCards' => '

The maximum number of physical network cards that can be allocated to the instance.

', ], ], 'MaximumThroughputInMBps' => [ 'base' => NULL, 'refs' => [ 'EbsOptimizedInfo$MaximumThroughputInMBps' => '

The maximum throughput performance for an EBS-optimized instance type, in MB/s.

', ], ], 'MembershipType' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayMulticastGroup$MemberType' => '

The member type (for example, static).

', 'TransitGatewayMulticastGroup$SourceType' => '

The source type.

', ], ], 'MemoryGiBPerVCpu' => [ 'base' => '

The minimum and maximum amount of memory per vCPU, in GiB.

', 'refs' => [ 'InstanceRequirements$MemoryGiBPerVCpu' => '

The minimum and maximum amount of memory per vCPU, in GiB.

Default: No minimum or maximum limits

', ], ], 'MemoryGiBPerVCpuRequest' => [ 'base' => '

The minimum and maximum amount of memory per vCPU, in GiB.

', 'refs' => [ 'InstanceRequirementsRequest$MemoryGiBPerVCpu' => '

The minimum and maximum amount of memory per vCPU, in GiB.

Default: No minimum or maximum limits

', ], ], 'MemoryInfo' => [ 'base' => '

Describes the memory for the instance type.

', 'refs' => [ 'InstanceTypeInfo$MemoryInfo' => '

Describes the memory for the instance type.

', ], ], 'MemoryMiB' => [ 'base' => '

The minimum and maximum amount of memory, in MiB.

', 'refs' => [ 'InstanceRequirements$MemoryMiB' => '

The minimum and maximum amount of memory, in MiB.

', ], ], 'MemoryMiBRequest' => [ 'base' => '

The minimum and maximum amount of memory, in MiB.

', 'refs' => [ 'InstanceRequirementsRequest$MemoryMiB' => '

The minimum and maximum amount of memory, in MiB.

', ], ], 'MemorySize' => [ 'base' => NULL, 'refs' => [ 'MemoryInfo$SizeInMiB' => '

The size of the memory, in MiB.

', ], ], 'MetricPoint' => [ 'base' => '

Indicates whether the network was healthy or degraded at a particular point. The value is aggregated from the startDate to the endDate. Currently only five_minutes is supported.

', 'refs' => [ 'MetricPoints$member' => NULL, ], ], 'MetricPoints' => [ 'base' => NULL, 'refs' => [ 'DataResponse$MetricPoints' => '

A list of MetricPoint objects.

', ], ], 'MetricType' => [ 'base' => NULL, 'refs' => [ 'DataQuery$Metric' => '

The metric, aggregation-latency, indicating that network latency is aggregated for the query. This is the only supported metric.

', 'DataResponse$Metric' => '

The metric used for the network performance request. Only aggregate-latency is supported, which shows network latency during a specified period.

', 'DisableAwsNetworkPerformanceMetricSubscriptionRequest$Metric' => '

The metric used for the disabled subscription.

', 'EnableAwsNetworkPerformanceMetricSubscriptionRequest$Metric' => '

The metric used for the enabled subscription.

', 'Subscription$Metric' => '

The metric used for the subscription.

', ], ], 'MillisecondDateTime' => [ 'base' => NULL, 'refs' => [ 'AddressTransfer$TransferOfferExpirationTimestamp' => '

The timestamp when the Elastic IP address transfer expired. When the source account starts the transfer, the transfer account has seven hours to allocate the Elastic IP address to complete the transfer, or the Elastic IP address will return to its original owner.

', 'AddressTransfer$TransferOfferAcceptedTimestamp' => '

The timestamp when the Elastic IP address transfer was accepted.

', 'AthenaIntegration$PartitionStartDate' => '

The start date for the partition.

', 'AthenaIntegration$PartitionEndDate' => '

The end date for the partition.

', 'CapacityBlockOffering$StartDate' => '

The start date of the Capacity Block offering.

', 'CapacityBlockOffering$EndDate' => '

The end date of the Capacity Block offering.

', 'CapacityReservation$StartDate' => '

The date and time at which the Capacity Reservation was started.

', 'CapacityReservationFleet$EndDate' => '

The date and time at which the Capacity Reservation Fleet expires.

', 'CapacityReservationFleet$CreateTime' => '

The date and time at which the Capacity Reservation Fleet was created.

', 'CreateCapacityReservationFleetRequest$EndDate' => '

The date and time at which the Capacity Reservation Fleet expires. When the Capacity Reservation Fleet expires, its state changes to expired and all of the Capacity Reservations in the Fleet expire.

The Capacity Reservation Fleet expires within an hour after the specified time. For example, if you specify 5/31/2019, 13:30:55, the Capacity Reservation Fleet is guaranteed to expire between 13:30:55 and 14:30:55 on 5/31/2019.

', 'CreateCapacityReservationFleetResult$CreateTime' => '

The date and time at which the Capacity Reservation Fleet was created.

', 'CreateCapacityReservationFleetResult$EndDate' => '

The date and time at which the Capacity Reservation Fleet expires.

', 'DescribeCapacityBlockOfferingsRequest$StartDateRange' => '

The earliest start date for the Capacity Block offering.

', 'DescribeCapacityBlockOfferingsRequest$EndDateRange' => '

The latest end date for the Capacity Block offering.

', 'DescribeFastLaunchImagesSuccessItem$StateTransitionTime' => '

The time that Windows fast launch for the AMI changed to the current state.

', 'DescribeFastSnapshotRestoreSuccessItem$EnablingTime' => '

The time at which fast snapshot restores entered the enabling state.

', 'DescribeFastSnapshotRestoreSuccessItem$OptimizingTime' => '

The time at which fast snapshot restores entered the optimizing state.

', 'DescribeFastSnapshotRestoreSuccessItem$EnabledTime' => '

The time at which fast snapshot restores entered the enabled state.

', 'DescribeFastSnapshotRestoreSuccessItem$DisablingTime' => '

The time at which fast snapshot restores entered the disabling state.

', 'DescribeFastSnapshotRestoreSuccessItem$DisabledTime' => '

The time at which fast snapshot restores entered the disabled state.

', 'DescribeNetworkInsightsAccessScopeAnalysesRequest$AnalysisStartTimeBegin' => '

Filters the results based on the start time. The analysis must have started on or after this time.

', 'DescribeNetworkInsightsAccessScopeAnalysesRequest$AnalysisStartTimeEnd' => '

Filters the results based on the start time. The analysis must have started on or before this time.

', 'DescribeNetworkInsightsAnalysesRequest$AnalysisStartTime' => '

The time when the network insights analyses started.

', 'DescribeNetworkInsightsAnalysesRequest$AnalysisEndTime' => '

The time when the network insights analyses ended.

', 'DisableFastLaunchResult$StateTransitionTime' => '

The time that the state changed for Windows fast launch for the Windows AMI.

', 'DisableFastSnapshotRestoreSuccessItem$EnablingTime' => '

The time at which fast snapshot restores entered the enabling state.

', 'DisableFastSnapshotRestoreSuccessItem$OptimizingTime' => '

The time at which fast snapshot restores entered the optimizing state.

', 'DisableFastSnapshotRestoreSuccessItem$EnabledTime' => '

The time at which fast snapshot restores entered the enabled state.

', 'DisableFastSnapshotRestoreSuccessItem$DisablingTime' => '

The time at which fast snapshot restores entered the disabling state.

', 'DisableFastSnapshotRestoreSuccessItem$DisabledTime' => '

The time at which fast snapshot restores entered the disabled state.

', 'Ec2InstanceConnectEndpoint$CreatedAt' => '

The date and time that the EC2 Instance Connect Endpoint was created.

', 'EnableFastLaunchResult$StateTransitionTime' => '

The time that the state changed for Windows fast launch for the AMI.

', 'EnableFastSnapshotRestoreSuccessItem$EnablingTime' => '

The time at which fast snapshot restores entered the enabling state.

', 'EnableFastSnapshotRestoreSuccessItem$OptimizingTime' => '

The time at which fast snapshot restores entered the optimizing state.

', 'EnableFastSnapshotRestoreSuccessItem$EnabledTime' => '

The time at which fast snapshot restores entered the enabled state.

', 'EnableFastSnapshotRestoreSuccessItem$DisablingTime' => '

The time at which fast snapshot restores entered the disabling state.

', 'EnableFastSnapshotRestoreSuccessItem$DisabledTime' => '

The time at which fast snapshot restores entered the disabled state.

', 'EnableImageDeprecationRequest$DeprecateAt' => '

The date and time to deprecate the AMI, in UTC, in the following format: YYYY-MM-DDTHH:MM:SSZ. If you specify a value for seconds, Amazon EC2 rounds the seconds to the nearest minute.

You can’t specify a date in the past. The upper limit for DeprecateAt is 10 years from now, except for public AMIs, where the upper limit is 2 years from the creation date.

', 'FleetCapacityReservation$CreateDate' => '

The date and time at which the Capacity Reservation was created.

', 'FlowLog$CreationTime' => '

The date and time the flow log was created.

', 'GetAwsNetworkPerformanceDataRequest$StartTime' => '

The starting time for the performance data request. The starting time must be formatted as yyyy-mm-ddThh:mm:ss. For example, 2022-06-10T12:00:00.000Z.

', 'GetAwsNetworkPerformanceDataRequest$EndTime' => '

The ending time for the performance data request. The end time must be formatted as yyyy-mm-ddThh:mm:ss. For example, 2022-06-12T12:00:00.000Z.

', 'GetIpamAddressHistoryRequest$StartTime' => '

The start of the time period for which you are looking for history. If you omit this option, it will default to the value of EndTime.

', 'GetIpamAddressHistoryRequest$EndTime' => '

The end of the time period for which you are looking for history. If you omit this option, it will default to the current time.

', 'GetIpamDiscoveredPublicAddressesResult$OldestSampleTime' => '

The oldest successful resource discovery time.

', 'ImageRecycleBinInfo$RecycleBinEnterTime' => '

The date and time when the AMI entered the Recycle Bin.

', 'ImageRecycleBinInfo$RecycleBinExitTime' => '

The date and time when the AMI is to be permanently deleted from the Recycle Bin.

', 'Instance$UsageOperationUpdateTime' => '

The time that the usage operation was last updated.

', 'IpamAddressHistoryRecord$SampledStartTime' => '

Sampled start time of the resource-to-CIDR association within the IPAM scope. Changes are picked up in periodic snapshots, so the start time may have occurred before this specific time.

', 'IpamAddressHistoryRecord$SampledEndTime' => '

Sampled end time of the resource-to-CIDR association within the IPAM scope. Changes are picked up in periodic snapshots, so the end time may have occurred before this specific time.

', 'IpamDiscoveredAccount$LastAttemptedDiscoveryTime' => '

The last attempted resource discovery time.

', 'IpamDiscoveredAccount$LastSuccessfulDiscoveryTime' => '

The last successful resource discovery time.

', 'IpamDiscoveredPublicAddress$SampleTime' => '

The last successful resource discovery time.

', 'IpamDiscoveredResourceCidr$SampleTime' => '

The last successful resource discovery time.

', 'KeyPairInfo$CreateTime' => '

If you used Amazon EC2 to create the key pair, this is the date and time when the key was created, in ISO 8601 date-time format, in the UTC time zone.

If you imported an existing key pair to Amazon EC2, this is the date and time the key was imported, in ISO 8601 date-time format, in the UTC time zone.

', 'LockSnapshotRequest$ExpirationDate' => '

The date and time at which the snapshot lock is to automatically expire, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

You must specify either this parameter or LockDuration, but not both.

', 'LockSnapshotResult$CoolOffPeriodExpiresOn' => '

The date and time at which the compliance mode cooling-off period expires, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

', 'LockSnapshotResult$LockCreatedOn' => '

The date and time at which the snapshot was locked, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

', 'LockSnapshotResult$LockExpiresOn' => '

The date and time at which the lock will expire, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

', 'LockSnapshotResult$LockDurationStartTime' => '

The date and time at which the lock duration started, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

', 'LockedSnapshotsInfo$CoolOffPeriodExpiresOn' => '

The date and time at which the compliance mode cooling-off period expires, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

', 'LockedSnapshotsInfo$LockCreatedOn' => '

The date and time at which the snapshot was locked, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

', 'LockedSnapshotsInfo$LockDurationStartTime' => '

The date and time at which the lock duration started, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

If you lock a snapshot that is in the pending state, the lock duration starts only once the snapshot enters the completed state.

', 'LockedSnapshotsInfo$LockExpiresOn' => '

The date and time at which the lock will expire, in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ).

', 'MaintenanceDetails$MaintenanceAutoAppliedAfter' => '

The timestamp after which Amazon Web Services will automatically apply maintenance.

', 'MaintenanceDetails$LastMaintenanceApplied' => '

Timestamp of last applied maintenance.

', 'MetricPoint$StartDate' => '

The start date for the metric point. The starting date for the metric point. The starting time must be formatted as yyyy-mm-ddThh:mm:ss. For example, 2022-06-10T12:00:00.000Z.

', 'MetricPoint$EndDate' => '

The end date for the metric point. The ending time must be formatted as yyyy-mm-ddThh:mm:ss. For example, 2022-06-12T12:00:00.000Z.

', 'ModifyCapacityReservationFleetRequest$EndDate' => '

The date and time at which the Capacity Reservation Fleet expires. When the Capacity Reservation Fleet expires, its state changes to expired and all of the Capacity Reservations in the Fleet expire.

The Capacity Reservation Fleet expires within an hour after the specified time. For example, if you specify 5/31/2019, 13:30:55, the Capacity Reservation Fleet is guaranteed to expire between 13:30:55 and 14:30:55 on 5/31/2019.

You can\'t specify EndDate and RemoveEndDate in the same request.

', 'ModifySnapshotTierResult$TieringStartTime' => '

The date and time when the archive process was started.

', 'NetworkInsightsAccessScope$CreatedDate' => '

The creation date.

', 'NetworkInsightsAccessScope$UpdatedDate' => '

The last updated date.

', 'NetworkInsightsAccessScopeAnalysis$StartDate' => '

The analysis start date.

', 'NetworkInsightsAccessScopeAnalysis$EndDate' => '

The analysis end date.

', 'NetworkInsightsAnalysis$StartDate' => '

The time the analysis started.

', 'NetworkInsightsPath$CreatedDate' => '

The time stamp when the path was created.

', 'RestoreSnapshotFromRecycleBinResult$StartTime' => '

The time stamp when the snapshot was initiated.

', 'RestoreSnapshotTierResult$RestoreStartTime' => '

The date and time when the snapshot restore process started.

', 'Snapshot$RestoreExpiryTime' => '

Only for archived snapshots that are temporarily restored. Indicates the date and time when a temporarily restored snapshot will be automatically re-archived.

', 'SnapshotInfo$StartTime' => '

Time this snapshot was started. This is the same for all snapshots initiated by the same request.

', 'SnapshotRecycleBinInfo$RecycleBinEnterTime' => '

The date and time when the snaphsot entered the Recycle Bin.

', 'SnapshotRecycleBinInfo$RecycleBinExitTime' => '

The date and time when the snapshot is to be permanently deleted from the Recycle Bin.

', 'SnapshotTierStatus$LastTieringStartTime' => '

The date and time when the last archive or restore process was started.

', 'SnapshotTierStatus$ArchivalCompleteTime' => '

The date and time when the last archive process was completed.

', 'SnapshotTierStatus$RestoreExpiryTime' => '

Only for archived snapshots that are temporarily restored. Indicates the date and time when a temporarily restored snapshot will be automatically re-archived.

', 'SpotFleetRequestConfig$CreateTime' => '

The creation date and time of the request.

', 'StoreImageTaskResult$TaskStartTime' => '

The time the task started.

', 'VolumeStatusEvent$NotAfter' => '

The latest end time of the event.

', 'VolumeStatusEvent$NotBefore' => '

The earliest start time of the event.

', 'VpcEndpoint$CreationTimestamp' => '

The date and time that the endpoint was created.

', 'VpcEndpointConnection$CreationTimestamp' => '

The date and time that the VPC endpoint was created.

', ], ], 'ModifyAddressAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyAddressAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyAvailabilityZoneGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyAvailabilityZoneGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyAvailabilityZoneOptInStatus' => [ 'base' => NULL, 'refs' => [ 'ModifyAvailabilityZoneGroupRequest$OptInStatus' => '

Indicates whether you are opted in to the Local Zone group or Wavelength Zone group. The only valid value is opted-in. You must contact Amazon Web Services Support to opt out of a Local Zone or Wavelength Zone group.

', ], ], 'ModifyCapacityReservationFleetRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyCapacityReservationFleetResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyCapacityReservationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyCapacityReservationResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyClientVpnEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyClientVpnEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDefaultCreditSpecificationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDefaultCreditSpecificationResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyEbsDefaultKmsKeyIdRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyEbsDefaultKmsKeyIdResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyFleetRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyFleetResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyFpgaImageAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyFpgaImageAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyHostsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyHostsResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIdFormatRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIdentityIdFormatRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyImageAttributeRequest' => [ 'base' => '

Contains the parameters for ModifyImageAttribute.

', 'refs' => [], ], 'ModifyInstanceAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceCapacityReservationAttributesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceCapacityReservationAttributesResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceCreditSpecificationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceCreditSpecificationResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceEventStartTimeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceEventStartTimeResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceEventWindowRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceEventWindowResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceMaintenanceOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceMaintenanceOptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceMetadataOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstanceMetadataOptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstancePlacementRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyInstancePlacementResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamPoolRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamPoolResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamResourceCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamResourceCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamResourceDiscoveryRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamResourceDiscoveryResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamScopeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIpamScopeResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyLaunchTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyLaunchTemplateResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyLocalGatewayRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyLocalGatewayRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyManagedPrefixListRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyManagedPrefixListResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyNetworkInterfaceAttributeRequest' => [ 'base' => '

Contains the parameters for ModifyNetworkInterfaceAttribute.

', 'refs' => [], ], 'ModifyPrivateDnsNameOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyPrivateDnsNameOptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyReservedInstancesRequest' => [ 'base' => '

Contains the parameters for ModifyReservedInstances.

', 'refs' => [], ], 'ModifyReservedInstancesResult' => [ 'base' => '

Contains the output of ModifyReservedInstances.

', 'refs' => [], ], 'ModifySecurityGroupRulesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifySecurityGroupRulesResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifySnapshotAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifySnapshotTierRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifySnapshotTierResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifySpotFleetRequestRequest' => [ 'base' => '

Contains the parameters for ModifySpotFleetRequest.

', 'refs' => [], ], 'ModifySpotFleetRequestResponse' => [ 'base' => '

Contains the output of ModifySpotFleetRequest.

', 'refs' => [], ], 'ModifySubnetAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTrafficMirrorFilterNetworkServicesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTrafficMirrorFilterNetworkServicesResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTrafficMirrorFilterRuleRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTrafficMirrorFilterRuleResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTrafficMirrorSessionRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTrafficMirrorSessionResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTransitGatewayOptions' => [ 'base' => '

The transit gateway options.

', 'refs' => [ 'ModifyTransitGatewayRequest$Options' => '

The options to modify.

', ], ], 'ModifyTransitGatewayPrefixListReferenceRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTransitGatewayPrefixListReferenceResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTransitGatewayRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTransitGatewayResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTransitGatewayVpcAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTransitGatewayVpcAttachmentRequestOptions' => [ 'base' => '

Describes the options for a VPC attachment.

', 'refs' => [ 'ModifyTransitGatewayVpcAttachmentRequest$Options' => '

The new VPC attachment options.

', ], ], 'ModifyTransitGatewayVpcAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessEndpointEniOptions' => [ 'base' => '

Describes the options when modifying a Verified Access endpoint with the network-interface type.

', 'refs' => [ 'ModifyVerifiedAccessEndpointRequest$NetworkInterfaceOptions' => '

The network interface options.

', ], ], 'ModifyVerifiedAccessEndpointLoadBalancerOptions' => [ 'base' => '

Describes a load balancer when creating an Amazon Web Services Verified Access endpoint using the load-balancer type.

', 'refs' => [ 'ModifyVerifiedAccessEndpointRequest$LoadBalancerOptions' => '

The load balancer details if creating the Verified Access endpoint as load-balancertype.

', ], ], 'ModifyVerifiedAccessEndpointPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessEndpointPolicyResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessEndpointSubnetIdList' => [ 'base' => NULL, 'refs' => [ 'ModifyVerifiedAccessEndpointLoadBalancerOptions$SubnetIds' => '

The IDs of the subnets.

', ], ], 'ModifyVerifiedAccessGroupPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessGroupPolicyResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessInstanceLoggingConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessInstanceLoggingConfigurationResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessInstanceRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessTrustProviderDeviceOptions' => [ 'base' => '

Modifies the configuration of the specified device-based Amazon Web Services Verified Access trust provider.

', 'refs' => [ 'ModifyVerifiedAccessTrustProviderRequest$DeviceOptions' => '

The options for a device-based trust provider. This parameter is required when the provider type is device.

', ], ], 'ModifyVerifiedAccessTrustProviderOidcOptions' => [ 'base' => '

Options for an OpenID Connect-compatible user-identity trust provider.

', 'refs' => [ 'ModifyVerifiedAccessTrustProviderRequest$OidcOptions' => '

The options for an OpenID Connect-compatible user-identity trust provider.

', ], ], 'ModifyVerifiedAccessTrustProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVerifiedAccessTrustProviderResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVolumeAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVolumeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVolumeResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointConnectionNotificationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointConnectionNotificationResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointServiceConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointServiceConfigurationResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointServicePayerResponsibilityRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointServicePayerResponsibilityResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointServicePermissionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcEndpointServicePermissionsResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcPeeringConnectionOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcPeeringConnectionOptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcTenancyRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpcTenancyResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnConnectionOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnConnectionOptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnConnectionRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnConnectionResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnTunnelCertificateRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnTunnelCertificateResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnTunnelOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnTunnelOptionsResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyVpnTunnelOptionsSpecification' => [ 'base' => '

The Amazon Web Services Site-to-Site VPN tunnel options to modify.

', 'refs' => [ 'ModifyVpnTunnelOptionsRequest$TunnelOptions' => '

The tunnel options to modify.

', ], ], 'MonitorInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'MonitorInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'Monitoring' => [ 'base' => '

Describes the monitoring of an instance.

', 'refs' => [ 'Instance$Monitoring' => '

The monitoring for the instance.

', 'InstanceMonitoring$Monitoring' => '

The monitoring for the instance.

', ], ], 'MonitoringState' => [ 'base' => NULL, 'refs' => [ 'Monitoring$State' => '

Indicates whether detailed monitoring is enabled. Otherwise, basic monitoring is enabled.

', ], ], 'MoveAddressToVpcRequest' => [ 'base' => NULL, 'refs' => [], ], 'MoveAddressToVpcResult' => [ 'base' => NULL, 'refs' => [], ], 'MoveByoipCidrToIpamRequest' => [ 'base' => NULL, 'refs' => [], ], 'MoveByoipCidrToIpamResult' => [ 'base' => NULL, 'refs' => [], ], 'MoveStatus' => [ 'base' => NULL, 'refs' => [ 'MovingAddressStatus$MoveStatus' => '

The status of the Elastic IP address that\'s being moved or restored.

', ], ], 'MovingAddressStatus' => [ 'base' => '

This action is deprecated.

Describes the status of a moving Elastic IP address.

', 'refs' => [ 'MovingAddressStatusSet$member' => NULL, ], ], 'MovingAddressStatusSet' => [ 'base' => NULL, 'refs' => [ 'DescribeMovingAddressesResult$MovingAddressStatuses' => '

The status for each Elastic IP address.

', ], ], 'MulticastSupportValue' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayOptions$MulticastSupport' => '

Indicates whether multicast is enabled on the transit gateway

', 'TransitGatewayRequestOptions$MulticastSupport' => '

Indicates whether multicast is enabled on the transit gateway

', ], ], 'NatGateway' => [ 'base' => '

Describes a NAT gateway.

', 'refs' => [ 'CreateNatGatewayResult$NatGateway' => '

Information about the NAT gateway.

', 'NatGatewayList$member' => NULL, ], ], 'NatGatewayAddress' => [ 'base' => '

Describes the IP addresses and network interface associated with a NAT gateway.

', 'refs' => [ 'NatGatewayAddressList$member' => NULL, ], ], 'NatGatewayAddressList' => [ 'base' => NULL, 'refs' => [ 'AssignPrivateNatGatewayAddressResult$NatGatewayAddresses' => '

NAT gateway IP addresses.

', 'AssociateNatGatewayAddressResult$NatGatewayAddresses' => '

The IP addresses.

', 'DisassociateNatGatewayAddressResult$NatGatewayAddresses' => '

Information about the NAT gateway IP addresses.

', 'NatGateway$NatGatewayAddresses' => '

Information about the IP addresses and network interface associated with the NAT gateway.

', 'UnassignPrivateNatGatewayAddressResult$NatGatewayAddresses' => '

Information about the NAT gateway IP addresses.

', ], ], 'NatGatewayAddressStatus' => [ 'base' => NULL, 'refs' => [ 'NatGatewayAddress$Status' => '

The address status.

', ], ], 'NatGatewayId' => [ 'base' => NULL, 'refs' => [ 'AssignPrivateNatGatewayAddressRequest$NatGatewayId' => '

The ID of the NAT gateway.

', 'AssignPrivateNatGatewayAddressResult$NatGatewayId' => '

The ID of the NAT gateway.

', 'AssociateNatGatewayAddressRequest$NatGatewayId' => '

The ID of the NAT gateway.

', 'AssociateNatGatewayAddressResult$NatGatewayId' => '

The ID of the NAT gateway.

', 'CreateRouteRequest$NatGatewayId' => '

[IPv4 traffic only] The ID of a NAT gateway.

', 'DeleteNatGatewayRequest$NatGatewayId' => '

The ID of the NAT gateway.

', 'DisassociateNatGatewayAddressRequest$NatGatewayId' => '

The ID of the NAT gateway.

', 'DisassociateNatGatewayAddressResult$NatGatewayId' => '

The ID of the NAT gateway.

', 'NatGatewayIdStringList$member' => NULL, 'ReplaceRouteRequest$NatGatewayId' => '

[IPv4 traffic only] The ID of a NAT gateway.

', 'UnassignPrivateNatGatewayAddressRequest$NatGatewayId' => '

The ID of the NAT gateway.

', 'UnassignPrivateNatGatewayAddressResult$NatGatewayId' => '

The ID of the NAT gateway.

', ], ], 'NatGatewayIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeNatGatewaysRequest$NatGatewayIds' => '

The IDs of the NAT gateways.

', ], ], 'NatGatewayList' => [ 'base' => NULL, 'refs' => [ 'DescribeNatGatewaysResult$NatGateways' => '

Information about the NAT gateways.

', ], ], 'NatGatewayState' => [ 'base' => NULL, 'refs' => [ 'NatGateway$State' => '

The state of the NAT gateway.

  • pending: The NAT gateway is being created and is not ready to process traffic.

  • failed: The NAT gateway could not be created. Check the failureCode and failureMessage fields for the reason.

  • available: The NAT gateway is able to process traffic. This status remains until you delete the NAT gateway, and does not indicate the health of the NAT gateway.

  • deleting: The NAT gateway is in the process of being terminated and may still be processing traffic.

  • deleted: The NAT gateway has been terminated and is no longer processing traffic.

', ], ], 'NetmaskLength' => [ 'base' => NULL, 'refs' => [ 'AssociateSubnetCidrBlockRequest$Ipv6NetmaskLength' => '

An IPv6 netmask length.

', 'AssociateVpcCidrBlockRequest$Ipv4NetmaskLength' => '

The netmask length of the IPv4 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'AssociateVpcCidrBlockRequest$Ipv6NetmaskLength' => '

The netmask length of the IPv6 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'CreateSubnetRequest$Ipv4NetmaskLength' => '

An IPv4 netmask length for the subnet.

', 'CreateSubnetRequest$Ipv6NetmaskLength' => '

An IPv6 netmask length for the subnet.

', 'CreateVpcRequest$Ipv4NetmaskLength' => '

The netmask length of the IPv4 CIDR you want to allocate to this VPC from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see What is IPAM? in the Amazon VPC IPAM User Guide.

', 'CreateVpcRequest$Ipv6NetmaskLength' => '

The netmask length of the IPv6 CIDR you want to allocate to this VPC from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see What is IPAM? in the Amazon VPC IPAM User Guide.

', ], ], 'NetworkAcl' => [ 'base' => '

Describes a network ACL.

', 'refs' => [ 'CreateNetworkAclResult$NetworkAcl' => '

Information about the network ACL.

', 'NetworkAclList$member' => NULL, ], ], 'NetworkAclAssociation' => [ 'base' => '

Describes an association between a network ACL and a subnet.

', 'refs' => [ 'NetworkAclAssociationList$member' => NULL, ], ], 'NetworkAclAssociationId' => [ 'base' => NULL, 'refs' => [ 'ReplaceNetworkAclAssociationRequest$AssociationId' => '

The ID of the current association between the original network ACL and the subnet.

', ], ], 'NetworkAclAssociationList' => [ 'base' => NULL, 'refs' => [ 'NetworkAcl$Associations' => '

Any associations between the network ACL and one or more subnets

', ], ], 'NetworkAclEntry' => [ 'base' => '

Describes an entry in a network ACL.

', 'refs' => [ 'NetworkAclEntryList$member' => NULL, ], ], 'NetworkAclEntryList' => [ 'base' => NULL, 'refs' => [ 'NetworkAcl$Entries' => '

The entries (rules) in the network ACL.

', ], ], 'NetworkAclId' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkAclEntryRequest$NetworkAclId' => '

The ID of the network ACL.

', 'DeleteNetworkAclEntryRequest$NetworkAclId' => '

The ID of the network ACL.

', 'DeleteNetworkAclRequest$NetworkAclId' => '

The ID of the network ACL.

', 'NetworkAclIdStringList$member' => NULL, 'ReplaceNetworkAclAssociationRequest$NetworkAclId' => '

The ID of the new network ACL to associate with the subnet.

', 'ReplaceNetworkAclEntryRequest$NetworkAclId' => '

The ID of the ACL.

', ], ], 'NetworkAclIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkAclsRequest$NetworkAclIds' => '

The IDs of the network ACLs.

Default: Describes all your network ACLs.

', ], ], 'NetworkAclList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkAclsResult$NetworkAcls' => '

Information about one or more network ACLs.

', ], ], 'NetworkBandwidthGbps' => [ 'base' => '

The minimum and maximum amount of network bandwidth, in gigabits per second (Gbps).

Setting the minimum bandwidth does not guarantee that your instance will achieve the minimum bandwidth. Amazon EC2 will identify instance types that support the specified minimum bandwidth, but the actual bandwidth of your instance might go below the specified minimum at times. For more information, see Available instance bandwidth in the Amazon EC2 User Guide.

', 'refs' => [ 'InstanceRequirements$NetworkBandwidthGbps' => '

The minimum and maximum amount of network bandwidth, in gigabits per second (Gbps).

Default: No minimum or maximum limits

', ], ], 'NetworkBandwidthGbpsRequest' => [ 'base' => '

The minimum and maximum amount of network bandwidth, in gigabits per second (Gbps).

Setting the minimum bandwidth does not guarantee that your instance will achieve the minimum bandwidth. Amazon EC2 will identify instance types that support the specified minimum bandwidth, but the actual bandwidth of your instance might go below the specified minimum at times. For more information, see Available instance bandwidth in the Amazon EC2 User Guide.

', 'refs' => [ 'InstanceRequirementsRequest$NetworkBandwidthGbps' => '

The minimum and maximum amount of baseline network bandwidth, in gigabits per second (Gbps). For more information, see Amazon EC2 instance network bandwidth in the Amazon EC2 User Guide.

Default: No minimum or maximum limits

', ], ], 'NetworkCardIndex' => [ 'base' => NULL, 'refs' => [ 'NetworkCardInfo$NetworkCardIndex' => '

The index of the network card.

', ], ], 'NetworkCardInfo' => [ 'base' => '

Describes the network card support of the instance type.

', 'refs' => [ 'NetworkCardInfoList$member' => NULL, ], ], 'NetworkCardInfoList' => [ 'base' => NULL, 'refs' => [ 'NetworkInfo$NetworkCards' => '

Describes the network cards for the instance type.

', ], ], 'NetworkInfo' => [ 'base' => '

Describes the networking features of the instance type.

', 'refs' => [ 'InstanceTypeInfo$NetworkInfo' => '

Describes the network settings for the instance type.

', ], ], 'NetworkInsightsAccessScope' => [ 'base' => '

Describes a Network Access Scope.

', 'refs' => [ 'CreateNetworkInsightsAccessScopeResult$NetworkInsightsAccessScope' => '

The Network Access Scope.

', 'NetworkInsightsAccessScopeList$member' => NULL, ], ], 'NetworkInsightsAccessScopeAnalysis' => [ 'base' => '

Describes a Network Access Scope analysis.

', 'refs' => [ 'NetworkInsightsAccessScopeAnalysisList$member' => NULL, 'StartNetworkInsightsAccessScopeAnalysisResult$NetworkInsightsAccessScopeAnalysis' => '

The Network Access Scope analysis.

', ], ], 'NetworkInsightsAccessScopeAnalysisId' => [ 'base' => NULL, 'refs' => [ 'AccessScopeAnalysisFinding$NetworkInsightsAccessScopeAnalysisId' => '

The ID of the Network Access Scope analysis.

', 'DeleteNetworkInsightsAccessScopeAnalysisRequest$NetworkInsightsAccessScopeAnalysisId' => '

The ID of the Network Access Scope analysis.

', 'DeleteNetworkInsightsAccessScopeAnalysisResult$NetworkInsightsAccessScopeAnalysisId' => '

The ID of the Network Access Scope analysis.

', 'GetNetworkInsightsAccessScopeAnalysisFindingsRequest$NetworkInsightsAccessScopeAnalysisId' => '

The ID of the Network Access Scope analysis.

', 'GetNetworkInsightsAccessScopeAnalysisFindingsResult$NetworkInsightsAccessScopeAnalysisId' => '

The ID of the Network Access Scope analysis.

', 'NetworkInsightsAccessScopeAnalysis$NetworkInsightsAccessScopeAnalysisId' => '

The ID of the Network Access Scope analysis.

', 'NetworkInsightsAccessScopeAnalysisIdList$member' => NULL, ], ], 'NetworkInsightsAccessScopeAnalysisIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsAccessScopeAnalysesRequest$NetworkInsightsAccessScopeAnalysisIds' => '

The IDs of the Network Access Scope analyses.

', ], ], 'NetworkInsightsAccessScopeAnalysisList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsAccessScopeAnalysesResult$NetworkInsightsAccessScopeAnalyses' => '

The Network Access Scope analyses.

', ], ], 'NetworkInsightsAccessScopeContent' => [ 'base' => '

Describes the Network Access Scope content.

', 'refs' => [ 'CreateNetworkInsightsAccessScopeResult$NetworkInsightsAccessScopeContent' => '

The Network Access Scope content.

', 'GetNetworkInsightsAccessScopeContentResult$NetworkInsightsAccessScopeContent' => '

The Network Access Scope content.

', ], ], 'NetworkInsightsAccessScopeId' => [ 'base' => NULL, 'refs' => [ 'AccessScopeAnalysisFinding$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', 'DeleteNetworkInsightsAccessScopeRequest$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', 'DeleteNetworkInsightsAccessScopeResult$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', 'DescribeNetworkInsightsAccessScopeAnalysesRequest$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', 'GetNetworkInsightsAccessScopeContentRequest$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', 'NetworkInsightsAccessScope$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', 'NetworkInsightsAccessScopeAnalysis$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', 'NetworkInsightsAccessScopeContent$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', 'NetworkInsightsAccessScopeIdList$member' => NULL, 'StartNetworkInsightsAccessScopeAnalysisRequest$NetworkInsightsAccessScopeId' => '

The ID of the Network Access Scope.

', ], ], 'NetworkInsightsAccessScopeIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsAccessScopesRequest$NetworkInsightsAccessScopeIds' => '

The IDs of the Network Access Scopes.

', ], ], 'NetworkInsightsAccessScopeList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsAccessScopesResult$NetworkInsightsAccessScopes' => '

The Network Access Scopes.

', ], ], 'NetworkInsightsAnalysis' => [ 'base' => '

Describes a network insights analysis.

', 'refs' => [ 'NetworkInsightsAnalysisList$member' => NULL, 'StartNetworkInsightsAnalysisResult$NetworkInsightsAnalysis' => '

Information about the network insights analysis.

', ], ], 'NetworkInsightsAnalysisId' => [ 'base' => NULL, 'refs' => [ 'DeleteNetworkInsightsAnalysisRequest$NetworkInsightsAnalysisId' => '

The ID of the network insights analysis.

', 'DeleteNetworkInsightsAnalysisResult$NetworkInsightsAnalysisId' => '

The ID of the network insights analysis.

', 'NetworkInsightsAnalysis$NetworkInsightsAnalysisId' => '

The ID of the network insights analysis.

', 'NetworkInsightsAnalysisIdList$member' => NULL, ], ], 'NetworkInsightsAnalysisIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsAnalysesRequest$NetworkInsightsAnalysisIds' => '

The ID of the network insights analyses. You must specify either analysis IDs or a path ID.

', ], ], 'NetworkInsightsAnalysisList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsAnalysesResult$NetworkInsightsAnalyses' => '

Information about the network insights analyses.

', ], ], 'NetworkInsightsMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsAccessScopeAnalysesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeNetworkInsightsAccessScopesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeNetworkInsightsAnalysesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeNetworkInsightsPathsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'NetworkInsightsPath' => [ 'base' => '

Describes a path.

', 'refs' => [ 'CreateNetworkInsightsPathResult$NetworkInsightsPath' => '

Information about the path.

', 'NetworkInsightsPathList$member' => NULL, ], ], 'NetworkInsightsPathId' => [ 'base' => NULL, 'refs' => [ 'DeleteNetworkInsightsPathRequest$NetworkInsightsPathId' => '

The ID of the path.

', 'DeleteNetworkInsightsPathResult$NetworkInsightsPathId' => '

The ID of the path.

', 'DescribeNetworkInsightsAnalysesRequest$NetworkInsightsPathId' => '

The ID of the path. You must specify either a path ID or analysis IDs.

', 'NetworkInsightsAnalysis$NetworkInsightsPathId' => '

The ID of the path.

', 'NetworkInsightsPath$NetworkInsightsPathId' => '

The ID of the path.

', 'NetworkInsightsPathIdList$member' => NULL, 'StartNetworkInsightsAnalysisRequest$NetworkInsightsPathId' => '

The ID of the path.

', ], ], 'NetworkInsightsPathIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsPathsRequest$NetworkInsightsPathIds' => '

The IDs of the paths.

', ], ], 'NetworkInsightsPathList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInsightsPathsResult$NetworkInsightsPaths' => '

Information about the paths.

', ], ], 'NetworkInsightsResourceId' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInsightsPathRequest$Source' => '

The ID or ARN of the source. If the resource is in another account, you must specify an ARN.

', 'CreateNetworkInsightsPathRequest$Destination' => '

The ID or ARN of the destination. If the resource is in another account, you must specify an ARN.

', ], ], 'NetworkInterface' => [ 'base' => '

Describes a network interface.

', 'refs' => [ 'CreateNetworkInterfaceResult$NetworkInterface' => '

Information about the network interface.

', 'NetworkInterfaceList$member' => NULL, ], ], 'NetworkInterfaceAssociation' => [ 'base' => '

Describes association information for an Elastic IP address (IPv4 only), or a Carrier IP address (for a network interface which resides in a subnet in a Wavelength Zone).

', 'refs' => [ 'NetworkInterface$Association' => '

The association information for an Elastic IP address (IPv4) associated with the network interface.

', 'NetworkInterfacePrivateIpAddress$Association' => '

The association information for an Elastic IP address (IPv4) associated with the network interface.

', ], ], 'NetworkInterfaceAttachment' => [ 'base' => '

Describes a network interface attachment.

', 'refs' => [ 'DescribeNetworkInterfaceAttributeResult$Attachment' => '

The attachment (if any) of the network interface.

', 'NetworkInterface$Attachment' => '

The network interface attachment.

', ], ], 'NetworkInterfaceAttachmentChanges' => [ 'base' => '

Describes an attachment change.

', 'refs' => [ 'ModifyNetworkInterfaceAttributeRequest$Attachment' => '

Information about the interface attachment. If modifying the delete on termination attribute, you must specify the ID of the interface attachment.

', ], ], 'NetworkInterfaceAttachmentId' => [ 'base' => NULL, 'refs' => [ 'DetachNetworkInterfaceRequest$AttachmentId' => '

The ID of the attachment.

', 'NetworkInterfaceAttachmentChanges$AttachmentId' => '

The ID of the network interface attachment.

', ], ], 'NetworkInterfaceAttribute' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInterfaceAttributeRequest$Attribute' => '

The attribute of the network interface. This parameter is required.

', ], ], 'NetworkInterfaceCount' => [ 'base' => '

The minimum and maximum number of network interfaces.

', 'refs' => [ 'InstanceRequirements$NetworkInterfaceCount' => '

The minimum and maximum number of network interfaces.

Default: No minimum or maximum limits

', ], ], 'NetworkInterfaceCountRequest' => [ 'base' => '

The minimum and maximum number of network interfaces.

', 'refs' => [ 'InstanceRequirementsRequest$NetworkInterfaceCount' => '

The minimum and maximum number of network interfaces.

Default: No minimum or maximum limits

', ], ], 'NetworkInterfaceCreationType' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInterfaceRequest$InterfaceType' => '

The type of network interface. The default is interface.

The only supported values are interface, efa, and trunk.

', ], ], 'NetworkInterfaceId' => [ 'base' => NULL, 'refs' => [ 'AssignIpv6AddressesRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'AssignPrivateIpAddressesRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'AssociateAddressRequest$NetworkInterfaceId' => '

The ID of the network interface. If the instance has more than one network interface, you must specify a network interface ID.

You can specify either the instance ID or the network interface ID, but not both.

', 'AssociateTrunkInterfaceRequest$BranchInterfaceId' => '

The ID of the branch network interface.

', 'AssociateTrunkInterfaceRequest$TrunkInterfaceId' => '

The ID of the trunk network interface.

', 'AttachNetworkInterfaceRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'CreateLocalGatewayRouteRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'CreateNetworkInterfacePermissionRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'CreateRouteRequest$NetworkInterfaceId' => '

The ID of a network interface.

', 'CreateTrafficMirrorSessionRequest$NetworkInterfaceId' => '

The ID of the source network interface.

', 'CreateTrafficMirrorTargetRequest$NetworkInterfaceId' => '

The network interface ID that is associated with the target.

', 'CreateVerifiedAccessEndpointEniOptions$NetworkInterfaceId' => '

The ID of the network interface.

', 'DeleteNetworkInterfaceRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'DescribeNetworkInterfaceAttributeRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'InstanceNetworkInterfaceSpecification$NetworkInterfaceId' => '

The ID of the network interface.

If you are creating a Spot Fleet, omit this parameter because you can’t specify a network interface ID in a launch specification.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$NetworkInterfaceId' => '

The ID of the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'LocalGatewayRoute$NetworkInterfaceId' => '

The ID of the network interface.

', 'ModifyLocalGatewayRouteRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'ModifyNetworkInterfaceAttributeRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'NetworkInterfaceIdList$member' => NULL, 'ReplaceRouteRequest$NetworkInterfaceId' => '

The ID of a network interface.

', 'ResetNetworkInterfaceAttributeRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'ScheduledInstancesNetworkInterface$NetworkInterfaceId' => '

The ID of the network interface.

', 'TransitGatewayNetworkInterfaceIdList$member' => NULL, 'UnassignIpv6AddressesRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'UnassignPrivateIpAddressesRequest$NetworkInterfaceId' => '

The ID of the network interface.

', 'VerifiedAccessEndpointEniOptions$NetworkInterfaceId' => '

The ID of the network interface.

', ], ], 'NetworkInterfaceIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInterfacesRequest$NetworkInterfaceIds' => '

The network interface IDs.

Default: Describes all your network interfaces.

', ], ], 'NetworkInterfaceIdSet' => [ 'base' => NULL, 'refs' => [ 'Ec2InstanceConnectEndpoint$NetworkInterfaceIds' => '

The ID of the elastic network interface that Amazon EC2 automatically created when creating the EC2 Instance Connect Endpoint.

', ], ], 'NetworkInterfaceIpv6Address' => [ 'base' => '

Describes an IPv6 address associated with a network interface.

', 'refs' => [ 'NetworkInterfaceIpv6AddressesList$member' => NULL, ], ], 'NetworkInterfaceIpv6AddressesList' => [ 'base' => NULL, 'refs' => [ 'NetworkInterface$Ipv6Addresses' => '

The IPv6 addresses associated with the network interface.

', ], ], 'NetworkInterfaceList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInterfacesResult$NetworkInterfaces' => '

Information about one or more network interfaces.

', ], ], 'NetworkInterfacePermission' => [ 'base' => '

Describes a permission for a network interface.

', 'refs' => [ 'CreateNetworkInterfacePermissionResult$InterfacePermission' => '

Information about the permission for the network interface.

', 'NetworkInterfacePermissionList$member' => NULL, ], ], 'NetworkInterfacePermissionId' => [ 'base' => NULL, 'refs' => [ 'DeleteNetworkInterfacePermissionRequest$NetworkInterfacePermissionId' => '

The ID of the network interface permission.

', 'NetworkInterfacePermissionIdList$member' => NULL, ], ], 'NetworkInterfacePermissionIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInterfacePermissionsRequest$NetworkInterfacePermissionIds' => '

The network interface permission IDs.

', ], ], 'NetworkInterfacePermissionList' => [ 'base' => NULL, 'refs' => [ 'DescribeNetworkInterfacePermissionsResult$NetworkInterfacePermissions' => '

The network interface permissions.

', ], ], 'NetworkInterfacePermissionState' => [ 'base' => '

Describes the state of a network interface permission.

', 'refs' => [ 'NetworkInterfacePermission$PermissionState' => '

Information about the state of the permission.

', ], ], 'NetworkInterfacePermissionStateCode' => [ 'base' => NULL, 'refs' => [ 'NetworkInterfacePermissionState$State' => '

The state of the permission.

', ], ], 'NetworkInterfacePrivateIpAddress' => [ 'base' => '

Describes the private IPv4 address of a network interface.

', 'refs' => [ 'NetworkInterfacePrivateIpAddressList$member' => NULL, ], ], 'NetworkInterfacePrivateIpAddressList' => [ 'base' => NULL, 'refs' => [ 'NetworkInterface$PrivateIpAddresses' => '

The private IPv4 addresses associated with the network interface.

', ], ], 'NetworkInterfaceStatus' => [ 'base' => NULL, 'refs' => [ 'InstanceNetworkInterface$Status' => '

The status of the network interface.

', 'NetworkInterface$Status' => '

The status of the network interface.

', ], ], 'NetworkInterfaceType' => [ 'base' => NULL, 'refs' => [ 'NetworkInterface$InterfaceType' => '

The type of network interface.

', ], ], 'NetworkNodesList' => [ 'base' => NULL, 'refs' => [ 'InstanceTopology$NetworkNodes' => '

The network nodes. The nodes are hashed based on your account. Instances from different accounts running under the same droplet will return a different hashed list of strings.

', ], ], 'NetworkPerformance' => [ 'base' => NULL, 'refs' => [ 'NetworkCardInfo$NetworkPerformance' => '

The network performance of the network card.

', 'NetworkInfo$NetworkPerformance' => '

The network performance.

', ], ], 'NewDhcpConfiguration' => [ 'base' => NULL, 'refs' => [ 'NewDhcpConfigurationList$member' => NULL, ], ], 'NewDhcpConfigurationList' => [ 'base' => NULL, 'refs' => [ 'CreateDhcpOptionsRequest$DhcpConfigurations' => '

A DHCP configuration option.

', ], ], 'NextToken' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressesAttributeRequest$NextToken' => '

The token for the next page of results.

', 'DescribeAddressesAttributeResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeByoipCidrsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeClientVpnAuthorizationRulesRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeClientVpnAuthorizationRulesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeClientVpnConnectionsRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeClientVpnConnectionsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeClientVpnEndpointsRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeClientVpnEndpointsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeClientVpnRoutesRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeClientVpnRoutesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeClientVpnTargetNetworksRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeClientVpnTargetNetworksResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeExportImageTasksRequest$NextToken' => '

A token that indicates the next page of results.

', 'DescribeExportImageTasksResult$NextToken' => '

The token to use to get the next page of results. This value is null when there are no more results to return.

', 'DescribeFastLaunchImagesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeFastLaunchImagesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeFastSnapshotRestoresRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeFastSnapshotRestoresResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeFpgaImagesRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeFpgaImagesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeIamInstanceProfileAssociationsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeIamInstanceProfileAssociationsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeInstanceConnectEndpointsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeInstanceConnectEndpointsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeInstanceTypeOfferingsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeInstanceTypeOfferingsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeInstanceTypesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeInstanceTypesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeIpamByoasnRequest$NextToken' => '

The token for the next page of results.

', 'DescribeIpamPoolsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeIpamPoolsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeIpamResourceDiscoveriesRequest$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'DescribeIpamResourceDiscoveriesResult$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'DescribeIpamResourceDiscoveryAssociationsRequest$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'DescribeIpamResourceDiscoveryAssociationsResult$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'DescribeIpamScopesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeIpamScopesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeIpamsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeIpamsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeIpv6PoolsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeIpv6PoolsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeManagedPrefixListsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeManagedPrefixListsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeNetworkInsightsAccessScopeAnalysesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeNetworkInsightsAccessScopesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeNetworkInsightsAnalysesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeNetworkInsightsPathsRequest$NextToken' => '

The token for the next page of results.

', 'DescribePublicIpv4PoolsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeReplaceRootVolumeTasksRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeTrafficMirrorFiltersRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTrafficMirrorSessionsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTrafficMirrorTargetsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeVerifiedAccessEndpointsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeVerifiedAccessEndpointsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVerifiedAccessGroupsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeVerifiedAccessGroupsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVerifiedAccessInstanceLoggingConfigurationsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeVerifiedAccessInstanceLoggingConfigurationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVerifiedAccessInstancesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeVerifiedAccessInstancesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVerifiedAccessTrustProvidersRequest$NextToken' => '

The token for the next page of results.

', 'DescribeVerifiedAccessTrustProvidersResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetAssociatedIpv6PoolCidrsRequest$NextToken' => '

The token for the next page of results.

', 'GetIpamAddressHistoryRequest$NextToken' => '

The token for the next page of results.

', 'GetIpamAddressHistoryResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetIpamDiscoveredAccountsRequest$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'GetIpamDiscoveredAccountsResult$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'GetIpamDiscoveredPublicAddressesRequest$NextToken' => '

The token for the next page of results.

', 'GetIpamDiscoveredPublicAddressesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetIpamDiscoveredResourceCidrsRequest$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'GetIpamDiscoveredResourceCidrsResult$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'GetIpamPoolAllocationsRequest$NextToken' => '

The token for the next page of results.

', 'GetIpamPoolAllocationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetIpamPoolCidrsRequest$NextToken' => '

The token for the next page of results.

', 'GetIpamPoolCidrsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetIpamResourceCidrsRequest$NextToken' => '

The token for the next page of results.

', 'GetIpamResourceCidrsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetManagedPrefixListAssociationsRequest$NextToken' => '

The token for the next page of results.

', 'GetManagedPrefixListEntriesRequest$NextToken' => '

The token for the next page of results.

', 'GetManagedPrefixListEntriesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetNetworkInsightsAccessScopeAnalysisFindingsRequest$NextToken' => '

The token for the next page of results.

', 'GetVpnConnectionDeviceTypesRequest$NextToken' => '

The NextToken value returned from a previous paginated GetVpnConnectionDeviceTypes request where MaxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the NextToken value. This value is null when there are no more results to return.

', 'GetVpnConnectionDeviceTypesResult$NextToken' => '

The NextToken value to include in a future GetVpnConnectionDeviceTypes request. When the results of a GetVpnConnectionDeviceTypes request exceed MaxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

', ], ], 'NitroEnclavesSupport' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$NitroEnclavesSupport' => '

Indicates whether Nitro Enclaves is supported.

', ], ], 'NitroTpmInfo' => [ 'base' => '

Describes the supported NitroTPM versions for the instance type.

', 'refs' => [ 'InstanceTypeInfo$NitroTpmInfo' => '

Describes the supported NitroTPM versions for the instance type.

', ], ], 'NitroTpmSupport' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$NitroTpmSupport' => '

Indicates whether NitroTPM is supported.

', ], ], 'NitroTpmSupportedVersionType' => [ 'base' => NULL, 'refs' => [ 'NitroTpmSupportedVersionsList$member' => NULL, ], ], 'NitroTpmSupportedVersionsList' => [ 'base' => NULL, 'refs' => [ 'NitroTpmInfo$SupportedVersions' => '

Indicates the supported NitroTPM versions.

', ], ], 'OccurrenceDayRequestSet' => [ 'base' => NULL, 'refs' => [ 'ScheduledInstanceRecurrenceRequest$OccurrenceDays' => '

The days. For a monthly schedule, this is one or more days of the month (1-31). For a weekly schedule, this is one or more days of the week (1-7, where 1 is Sunday). You can\'t specify this value with a daily schedule. If the occurrence is relative to the end of the month, you can specify only a single day.

', ], ], 'OccurrenceDaySet' => [ 'base' => NULL, 'refs' => [ 'ScheduledInstanceRecurrence$OccurrenceDaySet' => '

The days. For a monthly schedule, this is one or more days of the month (1-31). For a weekly schedule, this is one or more days of the week (1-7, where 1 is Sunday).

', ], ], 'OfferingClassType' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesOfferingsRequest$OfferingClass' => '

The offering class of the Reserved Instance. Can be standard or convertible.

', 'DescribeReservedInstancesRequest$OfferingClass' => '

Describes whether the Reserved Instance is Standard or Convertible.

', 'ReservedInstances$OfferingClass' => '

The offering class of the Reserved Instance.

', 'ReservedInstancesOffering$OfferingClass' => '

If convertible it can be exchanged for Reserved Instances of the same or higher monetary value, with different configurations. If standard, it is not possible to perform an exchange.

', ], ], 'OfferingId' => [ 'base' => NULL, 'refs' => [ 'CapacityBlockOffering$CapacityBlockOfferingId' => '

The ID of the Capacity Block offering.

', 'DescribeHostReservationOfferingsRequest$OfferingId' => '

The ID of the reservation offering.

', 'GetHostReservationPurchasePreviewRequest$OfferingId' => '

The offering ID of the reservation.

', 'HostOffering$OfferingId' => '

The ID of the offering.

', 'HostReservation$OfferingId' => '

The ID of the reservation. This remains the same regardless of which Dedicated Hosts are associated with it.

', 'PurchaseCapacityBlockRequest$CapacityBlockOfferingId' => '

The ID of the Capacity Block offering.

', 'PurchaseHostReservationRequest$OfferingId' => '

The ID of the offering.

', ], ], 'OfferingTypeValues' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesOfferingsRequest$OfferingType' => '

The Reserved Instance offering type. If you are using tools that predate the 2011-11-01 API version, you only have access to the Medium Utilization Reserved Instance offering type.

', 'DescribeReservedInstancesRequest$OfferingType' => '

The Reserved Instance offering type. If you are using tools that predate the 2011-11-01 API version, you only have access to the Medium Utilization Reserved Instance offering type.

', 'ReservedInstances$OfferingType' => '

The Reserved Instance offering type.

', 'ReservedInstancesOffering$OfferingType' => '

The Reserved Instance offering type.

', ], ], 'OidcOptions' => [ 'base' => '

Describes the options for an OpenID Connect-compatible user-identity trust provider.

', 'refs' => [ 'VerifiedAccessTrustProvider$OidcOptions' => '

The options for an OpenID Connect-compatible user-identity trust provider.

', ], ], 'OnDemandAllocationStrategy' => [ 'base' => NULL, 'refs' => [ 'SpotFleetRequestConfigData$OnDemandAllocationStrategy' => '

The order of the launch template overrides to use in fulfilling On-Demand capacity. If you specify lowestPrice, Spot Fleet uses price to determine the order, launching the lowest price first. If you specify prioritized, Spot Fleet uses the priority that you assign to each Spot Fleet launch template override, launching the highest priority first. If you do not specify a value, Spot Fleet defaults to lowestPrice.

', ], ], 'OnDemandOptions' => [ 'base' => '

Describes the configuration of On-Demand Instances in an EC2 Fleet.

', 'refs' => [ 'FleetData$OnDemandOptions' => '

The allocation strategy of On-Demand Instances in an EC2 Fleet.

', ], ], 'OnDemandOptionsRequest' => [ 'base' => '

Describes the configuration of On-Demand Instances in an EC2 Fleet.

', 'refs' => [ 'CreateFleetRequest$OnDemandOptions' => '

Describes the configuration of On-Demand Instances in an EC2 Fleet.

', ], ], 'OperationType' => [ 'base' => NULL, 'refs' => [ 'ModifyFpgaImageAttributeRequest$OperationType' => '

The operation type.

', 'ModifyImageAttributeRequest$OperationType' => '

The operation type. This parameter can be used only when the Attribute parameter is launchPermission.

', 'ModifySnapshotAttributeRequest$OperationType' => '

The type of operation to perform to the attribute.

', ], ], 'OrganizationArnStringList' => [ 'base' => NULL, 'refs' => [ 'ModifyImageAttributeRequest$OrganizationArns' => '

The Amazon Resource Name (ARN) of an organization. This parameter can be used only when the Attribute parameter is launchPermission.

', ], ], 'OrganizationalUnitArnStringList' => [ 'base' => NULL, 'refs' => [ 'ModifyImageAttributeRequest$OrganizationalUnitArns' => '

The Amazon Resource Name (ARN) of an organizational unit (OU). This parameter can be used only when the Attribute parameter is launchPermission.

', ], ], 'OutpostArn' => [ 'base' => NULL, 'refs' => [ 'CapacityReservation$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost on which the Capacity Reservation was created.

', 'CreateCapacityReservationRequest$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost on which to create the Capacity Reservation.

', ], ], 'OwnerStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeFpgaImagesRequest$Owners' => '

Filters the AFI by owner. Specify an Amazon Web Services account ID, self (owner is the sender of the request), or an Amazon Web Services owner alias (valid values are amazon | aws-marketplace).

', 'DescribeImagesRequest$Owners' => '

Scopes the results to images with the specified owners. You can specify a combination of Amazon Web Services account IDs, self, amazon, and aws-marketplace. If you omit this parameter, the results include all images for which you have launch permissions, regardless of ownership.

', 'DescribeSnapshotsRequest$OwnerIds' => '

Scopes the results to snapshots with the specified owners. You can specify a combination of Amazon Web Services account IDs, self, and amazon.

', ], ], 'PacketHeaderStatement' => [ 'base' => '

Describes a packet header statement.

', 'refs' => [ 'PathStatement$PacketHeaderStatement' => '

The packet header statement.

', ], ], 'PacketHeaderStatementRequest' => [ 'base' => '

Describes a packet header statement.

', 'refs' => [ 'PathStatementRequest$PacketHeaderStatement' => '

The packet header statement.

', ], ], 'PartitionLoadFrequency' => [ 'base' => NULL, 'refs' => [ 'AthenaIntegration$PartitionLoadFrequency' => '

The schedule for adding new partitions to the table.

', ], ], 'PasswordData' => [ 'base' => NULL, 'refs' => [ 'GetPasswordDataResult$PasswordData' => '

The password of the instance. Returns an empty string if the password is not available.

', ], ], 'PathComponent' => [ 'base' => '

Describes a path component.

', 'refs' => [ 'PathComponentList$member' => NULL, ], ], 'PathComponentList' => [ 'base' => NULL, 'refs' => [ 'AccessScopeAnalysisFinding$FindingComponents' => '

The finding components.

', 'NetworkInsightsAnalysis$ForwardPathComponents' => '

The components in the path from source to destination.

', 'NetworkInsightsAnalysis$ReturnPathComponents' => '

The components in the path from destination to source.

', ], ], 'PathFilter' => [ 'base' => '

Describes a set of filters for a path analysis. Use path filters to scope the analysis when there can be multiple resulting paths.

', 'refs' => [ 'NetworkInsightsPath$FilterAtSource' => '

Scopes the analysis to network paths that match specific filters at the source.

', 'NetworkInsightsPath$FilterAtDestination' => '

Scopes the analysis to network paths that match specific filters at the destination.

', ], ], 'PathRequestFilter' => [ 'base' => '

Describes a set of filters for a path analysis. Use path filters to scope the analysis when there can be multiple resulting paths.

', 'refs' => [ 'CreateNetworkInsightsPathRequest$FilterAtSource' => '

Scopes the analysis to network paths that match specific filters at the source. If you specify this parameter, you can\'t specify the parameters for the source IP address or the destination port.

', 'CreateNetworkInsightsPathRequest$FilterAtDestination' => '

Scopes the analysis to network paths that match specific filters at the destination. If you specify this parameter, you can\'t specify the parameter for the destination IP address.

', ], ], 'PathStatement' => [ 'base' => '

Describes a path statement.

', 'refs' => [ 'AccessScopePath$Source' => '

The source.

', 'AccessScopePath$Destination' => '

The destination.

', ], ], 'PathStatementRequest' => [ 'base' => '

Describes a path statement.

', 'refs' => [ 'AccessScopePathRequest$Source' => '

The source.

', 'AccessScopePathRequest$Destination' => '

The destination.

', ], ], 'PayerResponsibility' => [ 'base' => NULL, 'refs' => [ 'ModifyVpcEndpointServicePayerResponsibilityRequest$PayerResponsibility' => '

The entity that is responsible for the endpoint costs. The default is the endpoint owner. If you set the payer responsibility to the service owner, you cannot set it back to the endpoint owner.

', 'ServiceConfiguration$PayerResponsibility' => '

The payer responsibility.

', 'ServiceDetail$PayerResponsibility' => '

The payer responsibility.

', ], ], 'PaymentOption' => [ 'base' => NULL, 'refs' => [ 'HostOffering$PaymentOption' => '

The available payment option.

', 'HostReservation$PaymentOption' => '

The payment option selected for this reservation.

', 'Purchase$PaymentOption' => '

The payment option for the reservation.

', ], ], 'PciId' => [ 'base' => '

Describes the data that identifies an Amazon FPGA image (AFI) on the PCI bus.

', 'refs' => [ 'FpgaImage$PciId' => '

Information about the PCI bus.

', ], ], 'PeakBandwidthInGbps' => [ 'base' => NULL, 'refs' => [ 'NetworkCardInfo$PeakBandwidthInGbps' => '

The peak (burst) network performance of the network card, in Gbps.

', ], ], 'PeeringAttachmentStatus' => [ 'base' => '

The status of the transit gateway peering attachment.

', 'refs' => [ 'TransitGatewayPeeringAttachment$Status' => '

The status of the transit gateway peering attachment.

', ], ], 'PeeringConnectionOptions' => [ 'base' => '

Describes the VPC peering connection options.

', 'refs' => [ 'ModifyVpcPeeringConnectionOptionsResult$AccepterPeeringConnectionOptions' => '

Information about the VPC peering connection options for the accepter VPC.

', 'ModifyVpcPeeringConnectionOptionsResult$RequesterPeeringConnectionOptions' => '

Information about the VPC peering connection options for the requester VPC.

', ], ], 'PeeringConnectionOptionsRequest' => [ 'base' => '

The VPC peering connection options.

', 'refs' => [ 'ModifyVpcPeeringConnectionOptionsRequest$AccepterPeeringConnectionOptions' => '

The VPC peering connection options for the accepter VPC.

', 'ModifyVpcPeeringConnectionOptionsRequest$RequesterPeeringConnectionOptions' => '

The VPC peering connection options for the requester VPC.

', ], ], 'PeeringTgwInfo' => [ 'base' => '

Information about the transit gateway in the peering attachment.

', 'refs' => [ 'TransitGatewayPeeringAttachment$RequesterTgwInfo' => '

Information about the requester transit gateway.

', 'TransitGatewayPeeringAttachment$AccepterTgwInfo' => '

Information about the accepter transit gateway.

', ], ], 'PeriodType' => [ 'base' => NULL, 'refs' => [ 'DataQuery$Period' => '

The aggregation period used for the data query.

', 'DataResponse$Period' => '

The period used for the network performance request.

', 'Subscription$Period' => '

The data aggregation time for the subscription.

', ], ], 'PermissionGroup' => [ 'base' => NULL, 'refs' => [ 'CreateVolumePermission$Group' => '

The group to be added or removed. The possible value is all.

', 'LaunchPermission$Group' => '

The name of the group.

', 'LoadPermission$Group' => '

The name of the group.

', 'LoadPermissionRequest$Group' => '

The name of the group.

', ], ], 'Phase1DHGroupNumbersList' => [ 'base' => NULL, 'refs' => [ 'TunnelOption$Phase1DHGroupNumbers' => '

The permitted Diffie-Hellman group numbers for the VPN tunnel for phase 1 IKE negotiations.

', ], ], 'Phase1DHGroupNumbersListValue' => [ 'base' => '

The Diffie-Hellmann group number for phase 1 IKE negotiations.

', 'refs' => [ 'Phase1DHGroupNumbersList$member' => NULL, ], ], 'Phase1DHGroupNumbersRequestList' => [ 'base' => NULL, 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$Phase1DHGroupNumbers' => '

One or more Diffie-Hellman group numbers that are permitted for the VPN tunnel for phase 1 IKE negotiations.

Valid values: 2 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24

', 'VpnTunnelOptionsSpecification$Phase1DHGroupNumbers' => '

One or more Diffie-Hellman group numbers that are permitted for the VPN tunnel for phase 1 IKE negotiations.

Valid values: 2 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24

', ], ], 'Phase1DHGroupNumbersRequestListValue' => [ 'base' => '

Specifies a Diffie-Hellman group number for the VPN tunnel for phase 1 IKE negotiations.

', 'refs' => [ 'Phase1DHGroupNumbersRequestList$member' => NULL, ], ], 'Phase1EncryptionAlgorithmsList' => [ 'base' => NULL, 'refs' => [ 'TunnelOption$Phase1EncryptionAlgorithms' => '

The permitted encryption algorithms for the VPN tunnel for phase 1 IKE negotiations.

', ], ], 'Phase1EncryptionAlgorithmsListValue' => [ 'base' => '

The encryption algorithm for phase 1 IKE negotiations.

', 'refs' => [ 'Phase1EncryptionAlgorithmsList$member' => NULL, ], ], 'Phase1EncryptionAlgorithmsRequestList' => [ 'base' => NULL, 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$Phase1EncryptionAlgorithms' => '

One or more encryption algorithms that are permitted for the VPN tunnel for phase 1 IKE negotiations.

Valid values: AES128 | AES256 | AES128-GCM-16 | AES256-GCM-16

', 'VpnTunnelOptionsSpecification$Phase1EncryptionAlgorithms' => '

One or more encryption algorithms that are permitted for the VPN tunnel for phase 1 IKE negotiations.

Valid values: AES128 | AES256 | AES128-GCM-16 | AES256-GCM-16

', ], ], 'Phase1EncryptionAlgorithmsRequestListValue' => [ 'base' => '

Specifies the encryption algorithm for the VPN tunnel for phase 1 IKE negotiations.

', 'refs' => [ 'Phase1EncryptionAlgorithmsRequestList$member' => NULL, ], ], 'Phase1IntegrityAlgorithmsList' => [ 'base' => NULL, 'refs' => [ 'TunnelOption$Phase1IntegrityAlgorithms' => '

The permitted integrity algorithms for the VPN tunnel for phase 1 IKE negotiations.

', ], ], 'Phase1IntegrityAlgorithmsListValue' => [ 'base' => '

The integrity algorithm for phase 1 IKE negotiations.

', 'refs' => [ 'Phase1IntegrityAlgorithmsList$member' => NULL, ], ], 'Phase1IntegrityAlgorithmsRequestList' => [ 'base' => NULL, 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$Phase1IntegrityAlgorithms' => '

One or more integrity algorithms that are permitted for the VPN tunnel for phase 1 IKE negotiations.

Valid values: SHA1 | SHA2-256 | SHA2-384 | SHA2-512

', 'VpnTunnelOptionsSpecification$Phase1IntegrityAlgorithms' => '

One or more integrity algorithms that are permitted for the VPN tunnel for phase 1 IKE negotiations.

Valid values: SHA1 | SHA2-256 | SHA2-384 | SHA2-512

', ], ], 'Phase1IntegrityAlgorithmsRequestListValue' => [ 'base' => '

Specifies the integrity algorithm for the VPN tunnel for phase 1 IKE negotiations.

', 'refs' => [ 'Phase1IntegrityAlgorithmsRequestList$member' => NULL, ], ], 'Phase2DHGroupNumbersList' => [ 'base' => NULL, 'refs' => [ 'TunnelOption$Phase2DHGroupNumbers' => '

The permitted Diffie-Hellman group numbers for the VPN tunnel for phase 2 IKE negotiations.

', ], ], 'Phase2DHGroupNumbersListValue' => [ 'base' => '

The Diffie-Hellmann group number for phase 2 IKE negotiations.

', 'refs' => [ 'Phase2DHGroupNumbersList$member' => NULL, ], ], 'Phase2DHGroupNumbersRequestList' => [ 'base' => NULL, 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$Phase2DHGroupNumbers' => '

One or more Diffie-Hellman group numbers that are permitted for the VPN tunnel for phase 2 IKE negotiations.

Valid values: 2 | 5 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24

', 'VpnTunnelOptionsSpecification$Phase2DHGroupNumbers' => '

One or more Diffie-Hellman group numbers that are permitted for the VPN tunnel for phase 2 IKE negotiations.

Valid values: 2 | 5 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24

', ], ], 'Phase2DHGroupNumbersRequestListValue' => [ 'base' => '

Specifies a Diffie-Hellman group number for the VPN tunnel for phase 2 IKE negotiations.

', 'refs' => [ 'Phase2DHGroupNumbersRequestList$member' => NULL, ], ], 'Phase2EncryptionAlgorithmsList' => [ 'base' => NULL, 'refs' => [ 'TunnelOption$Phase2EncryptionAlgorithms' => '

The permitted encryption algorithms for the VPN tunnel for phase 2 IKE negotiations.

', ], ], 'Phase2EncryptionAlgorithmsListValue' => [ 'base' => '

The encryption algorithm for phase 2 IKE negotiations.

', 'refs' => [ 'Phase2EncryptionAlgorithmsList$member' => NULL, ], ], 'Phase2EncryptionAlgorithmsRequestList' => [ 'base' => NULL, 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$Phase2EncryptionAlgorithms' => '

One or more encryption algorithms that are permitted for the VPN tunnel for phase 2 IKE negotiations.

Valid values: AES128 | AES256 | AES128-GCM-16 | AES256-GCM-16

', 'VpnTunnelOptionsSpecification$Phase2EncryptionAlgorithms' => '

One or more encryption algorithms that are permitted for the VPN tunnel for phase 2 IKE negotiations.

Valid values: AES128 | AES256 | AES128-GCM-16 | AES256-GCM-16

', ], ], 'Phase2EncryptionAlgorithmsRequestListValue' => [ 'base' => '

Specifies the encryption algorithm for the VPN tunnel for phase 2 IKE negotiations.

', 'refs' => [ 'Phase2EncryptionAlgorithmsRequestList$member' => NULL, ], ], 'Phase2IntegrityAlgorithmsList' => [ 'base' => NULL, 'refs' => [ 'TunnelOption$Phase2IntegrityAlgorithms' => '

The permitted integrity algorithms for the VPN tunnel for phase 2 IKE negotiations.

', ], ], 'Phase2IntegrityAlgorithmsListValue' => [ 'base' => '

The integrity algorithm for phase 2 IKE negotiations.

', 'refs' => [ 'Phase2IntegrityAlgorithmsList$member' => NULL, ], ], 'Phase2IntegrityAlgorithmsRequestList' => [ 'base' => NULL, 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$Phase2IntegrityAlgorithms' => '

One or more integrity algorithms that are permitted for the VPN tunnel for phase 2 IKE negotiations.

Valid values: SHA1 | SHA2-256 | SHA2-384 | SHA2-512

', 'VpnTunnelOptionsSpecification$Phase2IntegrityAlgorithms' => '

One or more integrity algorithms that are permitted for the VPN tunnel for phase 2 IKE negotiations.

Valid values: SHA1 | SHA2-256 | SHA2-384 | SHA2-512

', ], ], 'Phase2IntegrityAlgorithmsRequestListValue' => [ 'base' => '

Specifies the integrity algorithm for the VPN tunnel for phase 2 IKE negotiations.

', 'refs' => [ 'Phase2IntegrityAlgorithmsRequestList$member' => NULL, ], ], 'Placement' => [ 'base' => '

Describes the placement of an instance.

', 'refs' => [ 'FleetLaunchTemplateOverridesRequest$Placement' => '

The location where the instance launched, if applicable.

', 'ImportInstanceLaunchSpecification$Placement' => '

The placement information for the instance.

', 'Instance$Placement' => '

The location where the instance launched, if applicable.

', 'RunInstancesRequest$Placement' => '

The placement for the instance.

', ], ], 'PlacementGroup' => [ 'base' => '

Describes a placement group.

', 'refs' => [ 'CreatePlacementGroupResult$PlacementGroup' => '

Information about the placement group.

', 'PlacementGroupList$member' => NULL, ], ], 'PlacementGroupArn' => [ 'base' => NULL, 'refs' => [ 'CapacityReservation$PlacementGroupArn' => '

The Amazon Resource Name (ARN) of the cluster placement group in which the Capacity Reservation was created. For more information, see Capacity Reservations for cluster placement groups in the Amazon EC2 User Guide.

', 'CreateCapacityReservationRequest$PlacementGroupArn' => '

The Amazon Resource Name (ARN) of the cluster placement group in which to create the Capacity Reservation. For more information, see Capacity Reservations for cluster placement groups in the Amazon EC2 User Guide.

', ], ], 'PlacementGroupId' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplatePlacement$GroupId' => '

The Group ID of the placement group. You must specify the Placement Group Group ID to launch an instance in a shared placement group.

', 'LaunchTemplatePlacementRequest$GroupId' => '

The Group Id of a placement group. You must specify the Placement Group Group Id to launch an instance in a shared placement group.

', 'ModifyInstancePlacementRequest$GroupId' => '

The Group Id of a placement group. You must specify the Placement Group Group Id to launch an instance in a shared placement group.

', 'Placement$GroupId' => '

The ID of the placement group that the instance is in. If you specify GroupId, you can\'t specify GroupName.

', 'PlacementGroupIdStringList$member' => NULL, ], ], 'PlacementGroupIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribePlacementGroupsRequest$GroupIds' => '

The IDs of the placement groups.

', ], ], 'PlacementGroupInfo' => [ 'base' => '

Describes the placement group support of the instance type.

', 'refs' => [ 'InstanceTypeInfo$PlacementGroupInfo' => '

Describes the placement group settings for the instance type.

', ], ], 'PlacementGroupList' => [ 'base' => NULL, 'refs' => [ 'DescribePlacementGroupsResult$PlacementGroups' => '

Information about the placement groups.

', ], ], 'PlacementGroupName' => [ 'base' => NULL, 'refs' => [ 'DeletePlacementGroupRequest$GroupName' => '

The name of the placement group.

', 'DescribeInstanceTopologyGroupNameSet$member' => NULL, 'LaunchTemplatePlacementRequest$GroupName' => '

The name of the placement group for the instance.

', 'ModifyInstancePlacementRequest$GroupName' => '

The name of the placement group in which to place the instance. For spread placement groups, the instance must have a tenancy of default. For cluster and partition placement groups, the instance must have a tenancy of default or dedicated.

To remove an instance from a placement group, specify an empty string ("").

', 'Placement$GroupName' => '

The name of the placement group that the instance is in. If you specify GroupName, you can\'t specify GroupId.

', 'PlacementGroupStringList$member' => NULL, 'PlacementResponse$GroupName' => '

The name of the placement group that the instance is in.

', 'ScheduledInstancesPlacement$GroupName' => '

The name of the placement group.

', 'SpotPlacement$GroupName' => '

The name of the placement group.

', ], ], 'PlacementGroupState' => [ 'base' => NULL, 'refs' => [ 'PlacementGroup$State' => '

The state of the placement group.

', ], ], 'PlacementGroupStrategy' => [ 'base' => NULL, 'refs' => [ 'PlacementGroupStrategyList$member' => NULL, ], ], 'PlacementGroupStrategyList' => [ 'base' => NULL, 'refs' => [ 'PlacementGroupInfo$SupportedStrategies' => '

The supported placement group types.

', ], ], 'PlacementGroupStringList' => [ 'base' => NULL, 'refs' => [ 'DescribePlacementGroupsRequest$GroupNames' => '

The names of the placement groups.

Default: Describes all your placement groups, or only those otherwise specified.

', ], ], 'PlacementResponse' => [ 'base' => '

Describes the placement of an instance.

', 'refs' => [ 'FleetLaunchTemplateOverrides$Placement' => '

The location where the instance launched, if applicable.

', ], ], 'PlacementStrategy' => [ 'base' => NULL, 'refs' => [ 'CreatePlacementGroupRequest$Strategy' => '

The placement strategy.

', 'PlacementGroup$Strategy' => '

The placement strategy.

', ], ], 'PlatformValues' => [ 'base' => NULL, 'refs' => [ 'CreateFleetInstance$Platform' => '

The value is Windows for Windows instances. Otherwise, the value is blank.

', 'DescribeFleetsInstances$Platform' => '

The value is Windows for Windows instances. Otherwise, the value is blank.

', 'Image$Platform' => '

This value is set to windows for Windows AMIs; otherwise, it is blank.

', 'ImportInstanceRequest$Platform' => '

The instance operating system.

', 'ImportInstanceTaskDetails$Platform' => '

The instance operating system.

', 'Instance$Platform' => '

The platform. This value is windows for Windows instances; otherwise, it is empty.

', ], ], 'PoolCidrBlock' => [ 'base' => '

Describes a CIDR block for an address pool.

', 'refs' => [ 'PoolCidrBlocksSet$member' => NULL, ], ], 'PoolCidrBlocksSet' => [ 'base' => NULL, 'refs' => [ 'Ipv6Pool$PoolCidrBlocks' => '

The CIDR blocks for the address pool.

', ], ], 'PoolMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribePublicIpv4PoolsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'Port' => [ 'base' => NULL, 'refs' => [ 'AnalysisLoadBalancerListener$LoadBalancerPort' => '

The port on which the load balancer is listening.

', 'AnalysisLoadBalancerListener$InstancePort' => '

[Classic Load Balancers] The back-end port for the listener.

', 'AnalysisLoadBalancerTarget$Port' => '

The port on which the target is listening.

', 'CreateNetworkInsightsPathRequest$DestinationPort' => '

The destination port.

', 'Explanation$LoadBalancerListenerPort' => '

The listener port of the load balancer.

', 'Explanation$LoadBalancerTargetPort' => '

The target port.

', 'Explanation$Port' => '

The port.

', 'FilterPortRange$FromPort' => '

The first port in the range.

', 'FilterPortRange$ToPort' => '

The last port in the range.

', 'RequestFilterPortRange$FromPort' => '

The first port in the range.

', 'RequestFilterPortRange$ToPort' => '

The last port in the range.

', ], ], 'PortRange' => [ 'base' => '

Describes a range of ports.

', 'refs' => [ 'AnalysisAclRule$PortRange' => '

The range of ports.

', 'AnalysisSecurityGroupRule$PortRange' => '

The port range.

', 'CreateNetworkAclEntryRequest$PortRange' => '

TCP or UDP protocols: The range of ports the rule applies to. Required if specifying protocol 6 (TCP) or 17 (UDP).

', 'NetworkAclEntry$PortRange' => '

TCP or UDP protocols: The range of ports the rule applies to.

', 'PortRangeList$member' => NULL, 'ReplaceNetworkAclEntryRequest$PortRange' => '

TCP or UDP protocols: The range of ports the rule applies to. Required if specifying protocol 6 (TCP) or 17 (UDP).

', ], ], 'PortRangeList' => [ 'base' => NULL, 'refs' => [ 'AnalysisPacketHeader$DestinationPortRanges' => '

The destination port ranges.

', 'AnalysisPacketHeader$SourcePortRanges' => '

The source port ranges.

', 'Explanation$PortRanges' => '

The port ranges.

', 'FirewallStatefulRule$SourcePorts' => '

The source ports.

', 'FirewallStatefulRule$DestinationPorts' => '

The destination ports.

', 'FirewallStatelessRule$SourcePorts' => '

The source ports.

', 'FirewallStatelessRule$DestinationPorts' => '

The destination ports.

', ], ], 'PrefixList' => [ 'base' => '

Describes prefixes for Amazon Web Services services.

', 'refs' => [ 'PrefixListSet$member' => NULL, ], ], 'PrefixListAssociation' => [ 'base' => '

Describes the resource with which a prefix list is associated.

', 'refs' => [ 'PrefixListAssociationSet$member' => NULL, ], ], 'PrefixListAssociationSet' => [ 'base' => NULL, 'refs' => [ 'GetManagedPrefixListAssociationsResult$PrefixListAssociations' => '

Information about the associations.

', ], ], 'PrefixListEntry' => [ 'base' => '

Describes a prefix list entry.

', 'refs' => [ 'PrefixListEntrySet$member' => NULL, ], ], 'PrefixListEntrySet' => [ 'base' => NULL, 'refs' => [ 'GetManagedPrefixListEntriesResult$Entries' => '

Information about the prefix list entries.

', ], ], 'PrefixListId' => [ 'base' => '

Describes a prefix list ID.

', 'refs' => [ 'PrefixListIdList$member' => NULL, ], ], 'PrefixListIdList' => [ 'base' => NULL, 'refs' => [ 'IpPermission$PrefixListIds' => '

The prefix list IDs.

', ], ], 'PrefixListIdSet' => [ 'base' => NULL, 'refs' => [ 'StaleIpPermission$PrefixListIds' => '

The prefix list IDs. Not applicable for stale security group rules.

', ], ], 'PrefixListMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedPrefixListsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetManagedPrefixListEntriesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'PrefixListResourceId' => [ 'base' => NULL, 'refs' => [ 'CreateLocalGatewayRouteRequest$DestinationPrefixListId' => '

The ID of the prefix list. Use a prefix list in place of DestinationCidrBlock. You cannot use DestinationPrefixListId and DestinationCidrBlock in the same request.

', 'CreateRouteRequest$DestinationPrefixListId' => '

The ID of a prefix list used for the destination match.

', 'CreateTransitGatewayPrefixListReferenceRequest$PrefixListId' => '

The ID of the prefix list that is used for destination matches.

', 'DeleteLocalGatewayRouteRequest$DestinationPrefixListId' => '

Use a prefix list in place of DestinationCidrBlock. You cannot use DestinationPrefixListId and DestinationCidrBlock in the same request.

', 'DeleteManagedPrefixListRequest$PrefixListId' => '

The ID of the prefix list.

', 'DeleteRouteRequest$DestinationPrefixListId' => '

The ID of the prefix list for the route.

', 'DeleteTransitGatewayPrefixListReferenceRequest$PrefixListId' => '

The ID of the prefix list.

', 'GetManagedPrefixListAssociationsRequest$PrefixListId' => '

The ID of the prefix list.

', 'GetManagedPrefixListEntriesRequest$PrefixListId' => '

The ID of the prefix list.

', 'LocalGatewayRoute$DestinationPrefixListId' => '

The ID of the prefix list.

', 'ManagedPrefixList$PrefixListId' => '

The ID of the prefix list.

', 'ModifyLocalGatewayRouteRequest$DestinationPrefixListId' => '

The ID of the prefix list. Use a prefix list in place of DestinationCidrBlock. You cannot use DestinationPrefixListId and DestinationCidrBlock in the same request.

', 'ModifyManagedPrefixListRequest$PrefixListId' => '

The ID of the prefix list.

', 'ModifyTransitGatewayPrefixListReferenceRequest$PrefixListId' => '

The ID of the prefix list.

', 'PrefixListResourceIdStringList$member' => NULL, 'ReplaceRouteRequest$DestinationPrefixListId' => '

The ID of the prefix list for the route.

', 'RestoreManagedPrefixListVersionRequest$PrefixListId' => '

The ID of the prefix list.

', 'SecurityGroupRule$PrefixListId' => '

The ID of the prefix list.

', 'SecurityGroupRuleRequest$PrefixListId' => '

The ID of the prefix list.

', 'TransitGatewayPrefixListReference$PrefixListId' => '

The ID of the prefix list.

', 'TransitGatewayRoute$PrefixListId' => '

The ID of the prefix list used for destination matches.

', ], ], 'PrefixListResourceIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribePrefixListsRequest$PrefixListIds' => '

One or more prefix list IDs.

', ], ], 'PrefixListSet' => [ 'base' => NULL, 'refs' => [ 'DescribePrefixListsResult$PrefixLists' => '

All available prefix lists.

', ], ], 'PrefixListState' => [ 'base' => NULL, 'refs' => [ 'ManagedPrefixList$State' => '

The current state of the prefix list.

', ], ], 'PriceSchedule' => [ 'base' => '

Describes the price for a Reserved Instance.

', 'refs' => [ 'PriceScheduleList$member' => NULL, ], ], 'PriceScheduleList' => [ 'base' => NULL, 'refs' => [ 'ReservedInstancesListing$PriceSchedules' => '

The price of the Reserved Instance listing.

', ], ], 'PriceScheduleSpecification' => [ 'base' => '

Describes the price for a Reserved Instance.

', 'refs' => [ 'PriceScheduleSpecificationList$member' => NULL, ], ], 'PriceScheduleSpecificationList' => [ 'base' => NULL, 'refs' => [ 'CreateReservedInstancesListingRequest$PriceSchedules' => '

A list specifying the price of the Standard Reserved Instance for each month remaining in the Reserved Instance term.

', ], ], 'PricingDetail' => [ 'base' => '

Describes a Reserved Instance offering.

', 'refs' => [ 'PricingDetailsList$member' => NULL, ], ], 'PricingDetailsList' => [ 'base' => NULL, 'refs' => [ 'ReservedInstancesOffering$PricingDetails' => '

The pricing details of the Reserved Instance offering.

', ], ], 'PrincipalIdFormat' => [ 'base' => '

PrincipalIdFormat description

', 'refs' => [ 'PrincipalIdFormatList$member' => NULL, ], ], 'PrincipalIdFormatList' => [ 'base' => NULL, 'refs' => [ 'DescribePrincipalIdFormatResult$Principals' => '

Information about the ID format settings for the ARN.

', ], ], 'PrincipalType' => [ 'base' => NULL, 'refs' => [ 'AddedPrincipal$PrincipalType' => '

The type of principal.

', 'AllowedPrincipal$PrincipalType' => '

The type of principal.

', ], ], 'Priority' => [ 'base' => NULL, 'refs' => [ 'FirewallStatelessRule$Priority' => '

The rule priority.

', ], ], 'PrivateDnsDetails' => [ 'base' => '

Information about the Private DNS name for interface endpoints.

', 'refs' => [ 'PrivateDnsDetailsSet$member' => NULL, ], ], 'PrivateDnsDetailsSet' => [ 'base' => NULL, 'refs' => [ 'ServiceDetail$PrivateDnsNames' => '

The private DNS names assigned to the VPC endpoint service.

', ], ], 'PrivateDnsNameConfiguration' => [ 'base' => '

Information about the private DNS name for the service endpoint.

', 'refs' => [ 'ServiceConfiguration$PrivateDnsNameConfiguration' => '

Information about the endpoint service private DNS name configuration.

', ], ], 'PrivateDnsNameOptionsOnLaunch' => [ 'base' => '

Describes the options for instance hostnames.

', 'refs' => [ 'Subnet$PrivateDnsNameOptionsOnLaunch' => '

The type of hostnames to assign to instances in the subnet at launch. An instance hostname is based on the IPv4 address or ID of the instance.

', ], ], 'PrivateDnsNameOptionsRequest' => [ 'base' => '

Describes the options for instance hostnames.

', 'refs' => [ 'RunInstancesRequest$PrivateDnsNameOptions' => '

The options for the instance hostname. The default values are inherited from the subnet. Applies only if creating a network interface, not attaching an existing one.

', ], ], 'PrivateDnsNameOptionsResponse' => [ 'base' => '

Describes the options for instance hostnames.

', 'refs' => [ 'Instance$PrivateDnsNameOptions' => '

The options for the instance hostname.

', ], ], 'PrivateIpAddressConfigSet' => [ 'base' => NULL, 'refs' => [ 'ScheduledInstancesNetworkInterface$PrivateIpAddressConfigs' => '

The private IPv4 addresses.

', ], ], 'PrivateIpAddressCount' => [ 'base' => NULL, 'refs' => [ 'AssignPrivateNatGatewayAddressRequest$PrivateIpAddressCount' => '

The number of private IP addresses to assign to the NAT gateway. You can\'t specify this parameter when also specifying private IP addresses.

', 'CreateNatGatewayRequest$SecondaryPrivateIpAddressCount' => '

[Private NAT gateway only] The number of secondary private IPv4 addresses you want to assign to the NAT gateway. For more information about secondary addresses, see Create a NAT gateway in the Amazon VPC User Guide.

', ], ], 'PrivateIpAddressSpecification' => [ 'base' => '

Describes a secondary private IPv4 address for a network interface.

', 'refs' => [ 'PrivateIpAddressSpecificationList$member' => NULL, ], ], 'PrivateIpAddressSpecificationList' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInterfaceRequest$PrivateIpAddresses' => '

The private IPv4 addresses.

You can\'t specify private IPv4 addresses if you\'ve specified one of the following: a count of private IPv4 addresses, specific IPv4 prefixes, or a count of IPv4 prefixes.

', 'InstanceNetworkInterfaceSpecification$PrivateIpAddresses' => '

The private IPv4 addresses to assign to the network interface. Only one private IPv4 address can be designated as primary. You cannot specify this option if you\'re launching more than one instance in a RunInstances request.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$PrivateIpAddresses' => '

One or more private IPv4 addresses.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$PrivateIpAddresses' => '

One or more private IPv4 addresses.

', ], ], 'PrivateIpAddressStringList' => [ 'base' => NULL, 'refs' => [ 'AssignPrivateIpAddressesRequest$PrivateIpAddresses' => '

The IP addresses to be assigned as a secondary private IP address to the network interface. You can\'t specify this parameter when also specifying a number of secondary IP addresses.

If you don\'t specify an IP address, Amazon EC2 automatically selects an IP address within the subnet range.

', 'UnassignPrivateIpAddressesRequest$PrivateIpAddresses' => '

The secondary private IP addresses to unassign from the network interface. You can specify this option multiple times to unassign more than one IP address.

', ], ], 'ProcessorInfo' => [ 'base' => '

Describes the processor used by the instance type.

', 'refs' => [ 'InstanceTypeInfo$ProcessorInfo' => '

Describes the processor.

', ], ], 'ProcessorSustainedClockSpeed' => [ 'base' => NULL, 'refs' => [ 'ProcessorInfo$SustainedClockSpeedInGhz' => '

The speed of the processor, in GHz.

', ], ], 'ProductCode' => [ 'base' => '

Describes a product code.

', 'refs' => [ 'ProductCodeList$member' => NULL, ], ], 'ProductCodeList' => [ 'base' => NULL, 'refs' => [ 'DescribeSnapshotAttributeResult$ProductCodes' => '

The product codes.

', 'DescribeVolumeAttributeResult$ProductCodes' => '

A list of product codes.

', 'FpgaImage$ProductCodes' => '

The product codes for the AFI.

', 'FpgaImageAttribute$ProductCodes' => '

The product codes.

', 'Image$ProductCodes' => '

Any product codes associated with the AMI.

', 'ImageAttribute$ProductCodes' => '

The product codes.

', 'Instance$ProductCodes' => '

The product codes attached to this instance, if applicable.

', 'InstanceAttribute$ProductCodes' => '

A list of product codes.

', ], ], 'ProductCodeStringList' => [ 'base' => NULL, 'refs' => [ 'ModifyFpgaImageAttributeRequest$ProductCodes' => '

The product codes. After you add a product code to an AFI, it can\'t be removed. This parameter is valid only when modifying the productCodes attribute.

', 'ModifyImageAttributeRequest$ProductCodes' => '

Not supported.

', ], ], 'ProductCodeValues' => [ 'base' => NULL, 'refs' => [ 'ProductCode$ProductCodeType' => '

The type of product code.

', ], ], 'ProductDescriptionList' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotPriceHistoryRequest$ProductDescriptions' => '

Filters the results by the specified basic product descriptions.

', ], ], 'PropagatingVgw' => [ 'base' => '

Describes a virtual private gateway propagating route.

', 'refs' => [ 'PropagatingVgwList$member' => NULL, ], ], 'PropagatingVgwList' => [ 'base' => NULL, 'refs' => [ 'RouteTable$PropagatingVgws' => '

Any virtual private gateway (VGW) propagating routes.

', ], ], 'Protocol' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInsightsPathRequest$Protocol' => '

The protocol.

', 'NetworkInsightsPath$Protocol' => '

The protocol.

', 'ProtocolList$member' => NULL, ], ], 'ProtocolInt' => [ 'base' => NULL, 'refs' => [ 'ProtocolIntList$member' => NULL, ], ], 'ProtocolIntList' => [ 'base' => NULL, 'refs' => [ 'FirewallStatelessRule$Protocols' => '

The protocols.

', ], ], 'ProtocolList' => [ 'base' => NULL, 'refs' => [ 'PacketHeaderStatement$Protocols' => '

The protocols.

', 'PacketHeaderStatementRequest$Protocols' => '

The protocols.

', ], ], 'ProtocolValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayConnectRequestOptions$Protocol' => '

The tunnel protocol.

', 'TransitGatewayConnectOptions$Protocol' => '

The tunnel protocol.

', 'TransitGatewayConnectPeerConfiguration$Protocol' => '

The tunnel protocol.

', ], ], 'ProvisionByoipCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionByoipCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionIpamByoasnRequest' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionIpamByoasnResult' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionIpamPoolCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionIpamPoolCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionPublicIpv4PoolCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionPublicIpv4PoolCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionedBandwidth' => [ 'base' => '

Reserved. If you need to sustain traffic greater than the documented limits, contact us through the Support Center.

', 'refs' => [ 'NatGateway$ProvisionedBandwidth' => '

Reserved. If you need to sustain traffic greater than the documented limits, contact us through the Support Center.

', ], ], 'PtrUpdateStatus' => [ 'base' => '

The status of an updated pointer (PTR) record for an Elastic IP address.

', 'refs' => [ 'AddressAttribute$PtrRecordUpdate' => '

The updated PTR record for the IP address.

', ], ], 'PublicIpAddress' => [ 'base' => NULL, 'refs' => [ 'AddressAttribute$PublicIp' => '

The public IP address.

', 'AllocateAddressRequest$Address' => '

The Elastic IP address to recover or an IPv4 address from an address pool.

', ], ], 'PublicIpStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeAddressesRequest$PublicIps' => '

One or more Elastic IP addresses.

Default: Describes all your Elastic IP addresses.

', ], ], 'PublicIpv4Pool' => [ 'base' => '

Describes an IPv4 address pool.

', 'refs' => [ 'PublicIpv4PoolSet$member' => NULL, ], ], 'PublicIpv4PoolIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribePublicIpv4PoolsRequest$PoolIds' => '

The IDs of the address pools.

', ], ], 'PublicIpv4PoolRange' => [ 'base' => '

Describes an address range of an IPv4 address pool.

', 'refs' => [ 'ProvisionPublicIpv4PoolCidrResult$PoolAddressRange' => '

Information about the address range of the public IPv4 pool.

', 'PublicIpv4PoolRangeSet$member' => NULL, ], ], 'PublicIpv4PoolRangeSet' => [ 'base' => NULL, 'refs' => [ 'PublicIpv4Pool$PoolAddressRanges' => '

The address ranges.

', ], ], 'PublicIpv4PoolSet' => [ 'base' => NULL, 'refs' => [ 'DescribePublicIpv4PoolsResult$PublicIpv4Pools' => '

Information about the address pools.

', ], ], 'Purchase' => [ 'base' => '

Describes the result of the purchase.

', 'refs' => [ 'PurchaseSet$member' => NULL, ], ], 'PurchaseCapacityBlockRequest' => [ 'base' => NULL, 'refs' => [], ], 'PurchaseCapacityBlockResult' => [ 'base' => NULL, 'refs' => [], ], 'PurchaseHostReservationRequest' => [ 'base' => NULL, 'refs' => [], ], 'PurchaseHostReservationResult' => [ 'base' => NULL, 'refs' => [], ], 'PurchaseRequest' => [ 'base' => '

Describes a request to purchase Scheduled Instances.

', 'refs' => [ 'PurchaseRequestSet$member' => NULL, ], ], 'PurchaseRequestSet' => [ 'base' => NULL, 'refs' => [ 'PurchaseScheduledInstancesRequest$PurchaseRequests' => '

The purchase requests.

', ], ], 'PurchaseReservedInstancesOfferingRequest' => [ 'base' => '

Contains the parameters for PurchaseReservedInstancesOffering.

', 'refs' => [], ], 'PurchaseReservedInstancesOfferingResult' => [ 'base' => '

Contains the output of PurchaseReservedInstancesOffering.

', 'refs' => [], ], 'PurchaseScheduledInstancesRequest' => [ 'base' => '

Contains the parameters for PurchaseScheduledInstances.

', 'refs' => [], ], 'PurchaseScheduledInstancesResult' => [ 'base' => '

Contains the output of PurchaseScheduledInstances.

', 'refs' => [], ], 'PurchaseSet' => [ 'base' => NULL, 'refs' => [ 'GetHostReservationPurchasePreviewResult$Purchase' => '

The purchase information of the Dedicated Host reservation and the Dedicated Hosts associated with it.

', 'PurchaseHostReservationResult$Purchase' => '

Describes the details of the purchase.

', ], ], 'PurchasedScheduledInstanceSet' => [ 'base' => NULL, 'refs' => [ 'PurchaseScheduledInstancesResult$ScheduledInstanceSet' => '

Information about the Scheduled Instances.

', ], ], 'RIProductDescription' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesOfferingsRequest$ProductDescription' => '

The Reserved Instance product platform description. Instances that include (Amazon VPC) in the description are for use with Amazon VPC.

', 'ReservedInstances$ProductDescription' => '

The Reserved Instance product platform description.

', 'ReservedInstancesOffering$ProductDescription' => '

The Reserved Instance product platform description.

', 'SpotInstanceRequest$ProductDescription' => '

The product description associated with the Spot Instance.

', 'SpotPrice$ProductDescription' => '

A general description of the AMI.

', ], ], 'RamdiskId' => [ 'base' => NULL, 'refs' => [ 'RegisterImageRequest$RamdiskId' => '

The ID of the RAM disk.

', 'RequestLaunchTemplateData$RamDiskId' => '

The ID of the RAM disk.

We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see User provided kernels in the Amazon Elastic Compute Cloud User Guide.

', 'RequestSpotLaunchSpecification$RamdiskId' => '

The ID of the RAM disk.

', 'RunInstancesRequest$RamdiskId' => '

The ID of the RAM disk to select. Some kernels require additional drivers at launch. Check the kernel requirements for information about whether you need to specify a RAM disk. To find kernel requirements, go to the Amazon Web Services Resource Center and search for the kernel ID.

We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see PV-GRUB in the Amazon EC2 User Guide.

', 'ScheduledInstancesLaunchSpecification$RamdiskId' => '

The ID of the RAM disk.

', ], ], 'ReasonCodesList' => [ 'base' => NULL, 'refs' => [ 'ReportInstanceStatusRequest$ReasonCodes' => '

The reason codes that describe the health state of your instance.

  • instance-stuck-in-state: My instance is stuck in a state.

  • unresponsive: My instance is unresponsive.

  • not-accepting-credentials: My instance is not accepting my credentials.

  • password-not-available: A password is not available for my instance.

  • performance-network: My instance is experiencing performance problems that I believe are network related.

  • performance-instance-store: My instance is experiencing performance problems that I believe are related to the instance stores.

  • performance-ebs-volume: My instance is experiencing performance problems that I believe are related to an EBS volume.

  • performance-other: My instance is experiencing performance problems.

  • other: [explain using the description parameter]

', ], ], 'RebootInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'RecurringCharge' => [ 'base' => '

Describes a recurring charge.

', 'refs' => [ 'RecurringChargesList$member' => NULL, ], ], 'RecurringChargeFrequency' => [ 'base' => NULL, 'refs' => [ 'RecurringCharge$Frequency' => '

The frequency of the recurring charge.

', ], ], 'RecurringChargesList' => [ 'base' => NULL, 'refs' => [ 'ReservedInstances$RecurringCharges' => '

The recurring charge tag assigned to the resource.

', 'ReservedInstancesOffering$RecurringCharges' => '

The recurring charge tag assigned to the resource.

', ], ], 'ReferencedSecurityGroup' => [ 'base' => '

Describes the security group that is referenced in the security group rule.

', 'refs' => [ 'SecurityGroupRule$ReferencedGroupInfo' => '

Describes the security group that is referenced in the rule.

', ], ], 'Region' => [ 'base' => '

Describes a Region.

', 'refs' => [ 'RegionList$member' => NULL, ], ], 'RegionList' => [ 'base' => NULL, 'refs' => [ 'DescribeRegionsResult$Regions' => '

Information about the Regions.

', ], ], 'RegionNameStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeRegionsRequest$RegionNames' => '

The names of the Regions. You can specify any Regions, whether they are enabled and disabled for your account.

', ], ], 'RegionNames' => [ 'base' => NULL, 'refs' => [ 'GetSpotPlacementScoresRequest$RegionNames' => '

The Regions used to narrow down the list of Regions to be scored. Enter the Region code, for example, us-east-1.

', ], ], 'RegisterImageRequest' => [ 'base' => '

Contains the parameters for RegisterImage.

', 'refs' => [], ], 'RegisterImageResult' => [ 'base' => '

Contains the output of RegisterImage.

', 'refs' => [], ], 'RegisterInstanceEventNotificationAttributesRequest' => [ 'base' => NULL, 'refs' => [], ], 'RegisterInstanceEventNotificationAttributesResult' => [ 'base' => NULL, 'refs' => [], ], 'RegisterInstanceTagAttributeRequest' => [ 'base' => '

Information about the tag keys to register for the current Region. You can either specify individual tag keys or register all tag keys in the current Region. You must specify either IncludeAllTagsOfInstance or InstanceTagKeys in the request

', 'refs' => [ 'RegisterInstanceEventNotificationAttributesRequest$InstanceTagAttribute' => '

Information about the tag keys to register.

', ], ], 'RegisterTransitGatewayMulticastGroupMembersRequest' => [ 'base' => NULL, 'refs' => [], ], 'RegisterTransitGatewayMulticastGroupMembersResult' => [ 'base' => NULL, 'refs' => [], ], 'RegisterTransitGatewayMulticastGroupSourcesRequest' => [ 'base' => NULL, 'refs' => [], ], 'RegisterTransitGatewayMulticastGroupSourcesResult' => [ 'base' => NULL, 'refs' => [], ], 'RejectTransitGatewayMulticastDomainAssociationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'RejectTransitGatewayMulticastDomainAssociationsResult' => [ 'base' => NULL, 'refs' => [], ], 'RejectTransitGatewayPeeringAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'RejectTransitGatewayPeeringAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'RejectTransitGatewayVpcAttachmentRequest' => [ 'base' => NULL, 'refs' => [], ], 'RejectTransitGatewayVpcAttachmentResult' => [ 'base' => NULL, 'refs' => [], ], 'RejectVpcEndpointConnectionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'RejectVpcEndpointConnectionsResult' => [ 'base' => NULL, 'refs' => [], ], 'RejectVpcPeeringConnectionRequest' => [ 'base' => NULL, 'refs' => [], ], 'RejectVpcPeeringConnectionResult' => [ 'base' => NULL, 'refs' => [], ], 'ReleaseAddressRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReleaseHostsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReleaseHostsResult' => [ 'base' => NULL, 'refs' => [], ], 'ReleaseIpamPoolAllocationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReleaseIpamPoolAllocationResult' => [ 'base' => NULL, 'refs' => [], ], 'RemoveIpamOperatingRegion' => [ 'base' => '

Remove an operating Region from an IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.

For more information about operating Regions, see Create an IPAM in the Amazon VPC IPAM User Guide

', 'refs' => [ 'RemoveIpamOperatingRegionSet$member' => NULL, ], ], 'RemoveIpamOperatingRegionSet' => [ 'base' => NULL, 'refs' => [ 'ModifyIpamRequest$RemoveOperatingRegions' => '

The operating Regions to remove.

', 'ModifyIpamResourceDiscoveryRequest$RemoveOperatingRegions' => '

Remove operating Regions.

', ], ], 'RemovePrefixListEntries' => [ 'base' => NULL, 'refs' => [ 'ModifyManagedPrefixListRequest$RemoveEntries' => '

One or more entries to remove from the prefix list.

', ], ], 'RemovePrefixListEntry' => [ 'base' => '

An entry for a prefix list.

', 'refs' => [ 'RemovePrefixListEntries$member' => NULL, ], ], 'ReplaceIamInstanceProfileAssociationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceIamInstanceProfileAssociationResult' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceNetworkAclAssociationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceNetworkAclAssociationResult' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceNetworkAclEntryRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceRootVolumeTask' => [ 'base' => '

Information about a root volume replacement task.

', 'refs' => [ 'CreateReplaceRootVolumeTaskResult$ReplaceRootVolumeTask' => '

Information about the root volume replacement task.

', 'ReplaceRootVolumeTasks$member' => NULL, ], ], 'ReplaceRootVolumeTaskId' => [ 'base' => NULL, 'refs' => [ 'ReplaceRootVolumeTask$ReplaceRootVolumeTaskId' => '

The ID of the root volume replacement task.

', 'ReplaceRootVolumeTaskIds$member' => NULL, ], ], 'ReplaceRootVolumeTaskIds' => [ 'base' => NULL, 'refs' => [ 'DescribeReplaceRootVolumeTasksRequest$ReplaceRootVolumeTaskIds' => '

The ID of the root volume replacement task to view.

', ], ], 'ReplaceRootVolumeTaskState' => [ 'base' => NULL, 'refs' => [ 'ReplaceRootVolumeTask$TaskState' => '

The state of the task. The task can be in one of the following states:

  • pending - the replacement volume is being created.

  • in-progress - the original volume is being detached and the replacement volume is being attached.

  • succeeded - the replacement volume has been successfully attached to the instance and the instance is available.

  • failing - the replacement task is in the process of failing.

  • failed - the replacement task has failed but the original root volume is still attached.

  • failing-detached - the replacement task is in the process of failing. The instance might have no root volume attached.

  • failed-detached - the replacement task has failed and the instance has no root volume attached.

', ], ], 'ReplaceRootVolumeTasks' => [ 'base' => NULL, 'refs' => [ 'DescribeReplaceRootVolumeTasksResult$ReplaceRootVolumeTasks' => '

Information about the root volume replacement task.

', ], ], 'ReplaceRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceRouteTableAssociationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceRouteTableAssociationResult' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceTransitGatewayRouteRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceTransitGatewayRouteResult' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceVpnTunnelRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReplaceVpnTunnelResult' => [ 'base' => NULL, 'refs' => [], ], 'ReplacementStrategy' => [ 'base' => NULL, 'refs' => [ 'SpotCapacityRebalance$ReplacementStrategy' => '

The replacement strategy to use. Only available for fleets of type maintain.

launch - Spot Fleet launches a new replacement Spot Instance when a rebalance notification is emitted for an existing Spot Instance in the fleet. Spot Fleet does not terminate the instances that receive a rebalance notification. You can terminate the old instances, or you can leave them running. You are charged for all instances while they are running.

launch-before-terminate - Spot Fleet launches a new replacement Spot Instance when a rebalance notification is emitted for an existing Spot Instance in the fleet, and then, after a delay that you specify (in TerminationDelay), terminates the instances that received a rebalance notification.

', ], ], 'ReportInstanceReasonCodes' => [ 'base' => NULL, 'refs' => [ 'ReasonCodesList$member' => NULL, ], ], 'ReportInstanceStatusRequest' => [ 'base' => NULL, 'refs' => [], ], 'ReportStatusType' => [ 'base' => NULL, 'refs' => [ 'ReportInstanceStatusRequest$Status' => '

The status of all instances listed.

', ], ], 'RequestFilterPortRange' => [ 'base' => '

Describes a port range.

', 'refs' => [ 'PathRequestFilter$SourcePortRange' => '

The source port range.

', 'PathRequestFilter$DestinationPortRange' => '

The destination port range.

', ], ], 'RequestHostIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeHostsRequest$HostIds' => '

The IDs of the Dedicated Hosts. The IDs are used for targeted instance launches.

', 'ModifyHostsRequest$HostIds' => '

The IDs of the Dedicated Hosts to modify.

', 'ReleaseHostsRequest$HostIds' => '

The IDs of the Dedicated Hosts to release.

', ], ], 'RequestHostIdSet' => [ 'base' => NULL, 'refs' => [ 'GetHostReservationPurchasePreviewRequest$HostIdSet' => '

The IDs of the Dedicated Hosts with which the reservation is associated.

', 'PurchaseHostReservationRequest$HostIdSet' => '

The IDs of the Dedicated Hosts with which the reservation will be associated.

', ], ], 'RequestInstanceTypeList' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceTypesRequest$InstanceTypes' => '

The instance types. For more information, see Instance types in the Amazon EC2 User Guide.

', ], ], 'RequestIpamResourceTag' => [ 'base' => '

A tag on an IPAM resource.

', 'refs' => [ 'GetIpamResourceCidrsRequest$ResourceTag' => '

The resource tag.

', 'RequestIpamResourceTagList$member' => NULL, ], ], 'RequestIpamResourceTagList' => [ 'base' => NULL, 'refs' => [ 'CreateIpamPoolRequest$AllocationResourceTags' => '

Tags that are required for resources that use CIDRs from this IPAM pool. Resources that do not have these tags will not be allowed to allocate space from the pool. If the resources have their tags changed after they have allocated space or if the allocation tagging requirements are changed on the pool, the resource may be marked as noncompliant.

', 'ModifyIpamPoolRequest$AddAllocationResourceTags' => '

Add tag allocation rules to a pool. For more information about allocation rules, see Create a top-level pool in the Amazon VPC IPAM User Guide.

', 'ModifyIpamPoolRequest$RemoveAllocationResourceTags' => '

Remove tag allocation rules from a pool.

', ], ], 'RequestLaunchTemplateData' => [ 'base' => '

The information to include in the launch template.

You must specify at least one parameter for the launch template data.

', 'refs' => [ 'CreateLaunchTemplateRequest$LaunchTemplateData' => '

The information for the launch template.

', 'CreateLaunchTemplateVersionRequest$LaunchTemplateData' => '

The information for the launch template.

', ], ], 'RequestSpotFleetRequest' => [ 'base' => '

Contains the parameters for RequestSpotFleet.

', 'refs' => [], ], 'RequestSpotFleetResponse' => [ 'base' => '

Contains the output of RequestSpotFleet.

', 'refs' => [], ], 'RequestSpotInstancesRequest' => [ 'base' => '

Contains the parameters for RequestSpotInstances.

', 'refs' => [], ], 'RequestSpotInstancesResult' => [ 'base' => '

Contains the output of RequestSpotInstances.

', 'refs' => [], ], 'RequestSpotLaunchSpecification' => [ 'base' => '

Describes the launch specification for an instance.

', 'refs' => [ 'RequestSpotInstancesRequest$LaunchSpecification' => '

The launch specification.

', ], ], 'RequestSpotLaunchSpecificationSecurityGroupIdList' => [ 'base' => NULL, 'refs' => [ 'RequestSpotLaunchSpecification$SecurityGroupIds' => '

The IDs of the security groups.

', ], ], 'RequestSpotLaunchSpecificationSecurityGroupList' => [ 'base' => NULL, 'refs' => [ 'RequestSpotLaunchSpecification$SecurityGroups' => '

Not supported.

', ], ], 'Reservation' => [ 'base' => '

Describes a launch request for one or more instances, and includes owner, requester, and security group information that applies to all instances in the launch request.

', 'refs' => [ 'ReservationList$member' => NULL, ], ], 'ReservationFleetInstanceSpecification' => [ 'base' => '

Information about an instance type to use in a Capacity Reservation Fleet.

', 'refs' => [ 'ReservationFleetInstanceSpecificationList$member' => NULL, ], ], 'ReservationFleetInstanceSpecificationList' => [ 'base' => NULL, 'refs' => [ 'CreateCapacityReservationFleetRequest$InstanceTypeSpecifications' => '

Information about the instance types for which to reserve the capacity.

', ], ], 'ReservationId' => [ 'base' => NULL, 'refs' => [ 'CreateReservedInstancesListingRequest$ReservedInstancesId' => '

The ID of the active Standard Reserved Instance.

', 'DeleteQueuedReservedInstancesIdList$member' => NULL, 'DescribeReservedInstancesListingsRequest$ReservedInstancesId' => '

One or more Reserved Instance IDs.

', 'ReservedInstanceIdSet$member' => NULL, 'ReservedInstancesIdStringList$member' => NULL, ], ], 'ReservationList' => [ 'base' => NULL, 'refs' => [ 'DescribeInstancesResult$Reservations' => '

Information about the reservations.

', ], ], 'ReservationState' => [ 'base' => NULL, 'refs' => [ 'HostReservation$State' => '

The state of the reservation.

', ], ], 'ReservationValue' => [ 'base' => '

The cost associated with the Reserved Instance.

', 'refs' => [ 'GetReservedInstancesExchangeQuoteResult$ReservedInstanceValueRollup' => '

The cost associated with the Reserved Instance.

', 'GetReservedInstancesExchangeQuoteResult$TargetConfigurationValueRollup' => '

The cost associated with the Reserved Instance.

', 'ReservedInstanceReservationValue$ReservationValue' => '

The total value of the Convertible Reserved Instance that you are exchanging.

', 'TargetReservationValue$ReservationValue' => '

The total value of the Convertible Reserved Instances that make up the exchange. This is the sum of the list value, remaining upfront price, and additional upfront cost of the exchange.

', ], ], 'ReservedInstanceIdSet' => [ 'base' => NULL, 'refs' => [ 'AcceptReservedInstancesExchangeQuoteRequest$ReservedInstanceIds' => '

The IDs of the Convertible Reserved Instances to exchange for another Convertible Reserved Instance of the same or higher value.

', 'GetReservedInstancesExchangeQuoteRequest$ReservedInstanceIds' => '

The IDs of the Convertible Reserved Instances to exchange.

', ], ], 'ReservedInstanceLimitPrice' => [ 'base' => '

Describes the limit price of a Reserved Instance offering.

', 'refs' => [ 'PurchaseReservedInstancesOfferingRequest$LimitPrice' => '

Specified for Reserved Instance Marketplace offerings to limit the total order and ensure that the Reserved Instances are not purchased at unexpected prices.

', ], ], 'ReservedInstanceReservationValue' => [ 'base' => '

The total value of the Convertible Reserved Instance.

', 'refs' => [ 'ReservedInstanceReservationValueSet$member' => NULL, ], ], 'ReservedInstanceReservationValueSet' => [ 'base' => NULL, 'refs' => [ 'GetReservedInstancesExchangeQuoteResult$ReservedInstanceValueSet' => '

The configuration of your Convertible Reserved Instances.

', ], ], 'ReservedInstanceState' => [ 'base' => NULL, 'refs' => [ 'ReservedInstances$State' => '

The state of the Reserved Instance purchase.

', ], ], 'ReservedInstances' => [ 'base' => '

Describes a Reserved Instance.

', 'refs' => [ 'ReservedInstancesList$member' => NULL, ], ], 'ReservedInstancesConfiguration' => [ 'base' => '

Describes the configuration settings for the modified Reserved Instances.

', 'refs' => [ 'ReservedInstancesConfigurationList$member' => NULL, 'ReservedInstancesModificationResult$TargetConfiguration' => '

The target Reserved Instances configurations supplied as part of the modification request.

', ], ], 'ReservedInstancesConfigurationList' => [ 'base' => NULL, 'refs' => [ 'ModifyReservedInstancesRequest$TargetConfigurations' => '

The configuration settings for the Reserved Instances to modify.

', ], ], 'ReservedInstancesId' => [ 'base' => '

Describes the ID of a Reserved Instance.

', 'refs' => [ 'ReservedIntancesIds$member' => NULL, ], ], 'ReservedInstancesIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesRequest$ReservedInstancesIds' => '

One or more Reserved Instance IDs.

Default: Describes all your Reserved Instances, or only those otherwise specified.

', 'ModifyReservedInstancesRequest$ReservedInstancesIds' => '

The IDs of the Reserved Instances to modify.

', ], ], 'ReservedInstancesList' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesResult$ReservedInstances' => '

A list of Reserved Instances.

', ], ], 'ReservedInstancesListing' => [ 'base' => '

Describes a Reserved Instance listing.

', 'refs' => [ 'ReservedInstancesListingList$member' => NULL, ], ], 'ReservedInstancesListingId' => [ 'base' => NULL, 'refs' => [ 'CancelReservedInstancesListingRequest$ReservedInstancesListingId' => '

The ID of the Reserved Instance listing.

', 'DescribeReservedInstancesListingsRequest$ReservedInstancesListingId' => '

One or more Reserved Instance listing IDs.

', ], ], 'ReservedInstancesListingList' => [ 'base' => NULL, 'refs' => [ 'CancelReservedInstancesListingResult$ReservedInstancesListings' => '

The Reserved Instance listing.

', 'CreateReservedInstancesListingResult$ReservedInstancesListings' => '

Information about the Standard Reserved Instance listing.

', 'DescribeReservedInstancesListingsResult$ReservedInstancesListings' => '

Information about the Reserved Instance listing.

', ], ], 'ReservedInstancesModification' => [ 'base' => '

Describes a Reserved Instance modification.

', 'refs' => [ 'ReservedInstancesModificationList$member' => NULL, ], ], 'ReservedInstancesModificationId' => [ 'base' => NULL, 'refs' => [ 'ReservedInstancesModificationIdStringList$member' => NULL, ], ], 'ReservedInstancesModificationIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesModificationsRequest$ReservedInstancesModificationIds' => '

IDs for the submitted modification request.

', ], ], 'ReservedInstancesModificationList' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesModificationsResult$ReservedInstancesModifications' => '

The Reserved Instance modification information.

', ], ], 'ReservedInstancesModificationResult' => [ 'base' => '

Describes the modification request/s.

', 'refs' => [ 'ReservedInstancesModificationResultList$member' => NULL, ], ], 'ReservedInstancesModificationResultList' => [ 'base' => NULL, 'refs' => [ 'ReservedInstancesModification$ModificationResults' => '

Contains target configurations along with their corresponding new Reserved Instance IDs.

', ], ], 'ReservedInstancesOffering' => [ 'base' => '

Describes a Reserved Instance offering.

', 'refs' => [ 'ReservedInstancesOfferingList$member' => NULL, ], ], 'ReservedInstancesOfferingId' => [ 'base' => NULL, 'refs' => [ 'PurchaseReservedInstancesOfferingRequest$ReservedInstancesOfferingId' => '

The ID of the Reserved Instance offering to purchase.

', 'ReservedInstancesOfferingIdStringList$member' => NULL, 'TargetConfigurationRequest$OfferingId' => '

The Convertible Reserved Instance offering ID.

', ], ], 'ReservedInstancesOfferingIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesOfferingsRequest$ReservedInstancesOfferingIds' => '

One or more Reserved Instances offering IDs.

', ], ], 'ReservedInstancesOfferingList' => [ 'base' => NULL, 'refs' => [ 'DescribeReservedInstancesOfferingsResult$ReservedInstancesOfferings' => '

A list of Reserved Instances offerings.

', ], ], 'ReservedIntancesIds' => [ 'base' => NULL, 'refs' => [ 'ReservedInstancesModification$ReservedInstancesIds' => '

The IDs of one or more Reserved Instances.

', ], ], 'ResetAddressAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ResetAddressAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'ResetEbsDefaultKmsKeyIdRequest' => [ 'base' => NULL, 'refs' => [], ], 'ResetEbsDefaultKmsKeyIdResult' => [ 'base' => NULL, 'refs' => [], ], 'ResetFpgaImageAttributeName' => [ 'base' => NULL, 'refs' => [ 'ResetFpgaImageAttributeRequest$Attribute' => '

The attribute.

', ], ], 'ResetFpgaImageAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ResetFpgaImageAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'ResetImageAttributeName' => [ 'base' => NULL, 'refs' => [ 'ResetImageAttributeRequest$Attribute' => '

The attribute to reset (currently you can only reset the launch permission attribute).

', ], ], 'ResetImageAttributeRequest' => [ 'base' => '

Contains the parameters for ResetImageAttribute.

', 'refs' => [], ], 'ResetInstanceAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ResetNetworkInterfaceAttributeRequest' => [ 'base' => '

Contains the parameters for ResetNetworkInterfaceAttribute.

', 'refs' => [], ], 'ResetSnapshotAttributeRequest' => [ 'base' => NULL, 'refs' => [], ], 'ResourceArn' => [ 'base' => NULL, 'refs' => [ 'AnalysisRouteTableRoute$CoreNetworkArn' => '

The Amazon Resource Name (ARN) of a core network.

', 'ArnList$member' => NULL, 'AssociatedRole$AssociatedRoleArn' => '

The ARN of the associated IAM role.

', 'CoipPool$PoolArn' => '

The ARN of the address pool.

', 'Ec2InstanceConnectEndpoint$InstanceConnectEndpointArn' => '

The Amazon Resource Name (ARN) of the EC2 Instance Connect Endpoint.

', 'Explanation$LoadBalancerArn' => '

The Amazon Resource Name (ARN) of the load balancer.

', 'FirewallStatefulRule$RuleGroupArn' => '

The ARN of the stateful rule group.

', 'FirewallStatelessRule$RuleGroupArn' => '

The ARN of the stateless rule group.

', 'Ipam$IpamArn' => '

The Amazon Resource Name (ARN) of the IPAM.

', 'IpamPool$IpamPoolArn' => '

The Amazon Resource Name (ARN) of the IPAM pool.

', 'IpamPool$IpamScopeArn' => '

The ARN of the scope of the IPAM pool.

', 'IpamPool$IpamArn' => '

The ARN of the IPAM.

', 'IpamResourceDiscoveryAssociation$IpamArn' => '

The IPAM ARN.

', 'IpamScope$IpamScopeArn' => '

The Amazon Resource Name (ARN) of the scope.

', 'IpamScope$IpamArn' => '

The ARN of the IPAM.

', 'LocalGatewayRoute$LocalGatewayRouteTableArn' => '

The Amazon Resource Name (ARN) of the local gateway route table.

', 'LocalGatewayRouteTable$LocalGatewayRouteTableArn' => '

The Amazon Resource Name (ARN) of the local gateway route table.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation$LocalGatewayRouteTableArn' => '

The Amazon Resource Name (ARN) of the local gateway route table for the virtual interface group.

', 'LocalGatewayRouteTableVpcAssociation$LocalGatewayRouteTableArn' => '

The Amazon Resource Name (ARN) of the local gateway route table for the association.

', 'ManagedPrefixList$PrefixListArn' => '

The Amazon Resource Name (ARN) for the prefix list.

', 'NetworkInsightsAccessScope$NetworkInsightsAccessScopeArn' => '

The Amazon Resource Name (ARN) of the Network Access Scope.

', 'NetworkInsightsAccessScopeAnalysis$NetworkInsightsAccessScopeAnalysisArn' => '

The Amazon Resource Name (ARN) of the Network Access Scope analysis.

', 'NetworkInsightsAnalysis$NetworkInsightsAnalysisArn' => '

The Amazon Resource Name (ARN) of the network insights analysis.

', 'NetworkInsightsPath$NetworkInsightsPathArn' => '

The Amazon Resource Name (ARN) of the path.

', 'NetworkInsightsPath$SourceArn' => '

The Amazon Resource Name (ARN) of the source.

', 'NetworkInsightsPath$DestinationArn' => '

The Amazon Resource Name (ARN) of the destination.

', 'RuleGroupRuleOptionsPair$RuleGroupArn' => '

The ARN of the rule group.

', 'RuleGroupTypePair$RuleGroupArn' => '

The ARN of the rule group.

', ], ], 'ResourceIdList' => [ 'base' => NULL, 'refs' => [ 'CreateTagsRequest$Resources' => '

The IDs of the resources, separated by spaces.

Constraints: Up to 1000 resource IDs. We recommend breaking up this request into smaller batches.

', 'DeleteTagsRequest$Resources' => '

The IDs of the resources, separated by spaces.

Constraints: Up to 1000 resource IDs. We recommend breaking up this request into smaller batches.

', ], ], 'ResourceList' => [ 'base' => NULL, 'refs' => [ 'DescribePrincipalIdFormatRequest$Resources' => '

The type of resource: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | instance | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | reservation | route-table | route-table-association | security-group | snapshot | subnet | subnet-cidr-block-association | volume | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway

', ], ], 'ResourceStatement' => [ 'base' => '

Describes a resource statement.

', 'refs' => [ 'PathStatement$ResourceStatement' => '

The resource statement.

', 'ThroughResourcesStatement$ResourceStatement' => '

The resource statement.

', ], ], 'ResourceStatementRequest' => [ 'base' => '

Describes a resource statement.

', 'refs' => [ 'PathStatementRequest$ResourceStatement' => '

The resource statement.

', 'ThroughResourcesStatementRequest$ResourceStatement' => '

The resource statement.

', ], ], 'ResourceType' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateTagSpecification$ResourceType' => '

The type of resource to tag.

', 'LaunchTemplateTagSpecificationRequest$ResourceType' => '

The type of resource to tag.

Valid Values lists all resource types for Amazon EC2 that can be tagged. When you create a launch template, you can specify tags for the following resource types only: instance | volume | network-interface | spot-instances-request. If the instance does not include the resource type that you specify, the instance launch fails. For example, not all instance types include a volume.

To tag a resource after it has been created, see CreateTags.

', 'SpotFleetTagSpecification$ResourceType' => '

The type of resource. Currently, the only resource type that is supported is instance. To tag the Spot Fleet request on creation, use the TagSpecifications parameter in SpotFleetRequestConfigData .

', 'TagDescription$ResourceType' => '

The resource type.

', 'TagSpecification$ResourceType' => '

The type of resource to tag on creation.

', ], ], 'ResponseError' => [ 'base' => '

Describes the error that\'s returned when you cannot delete a launch template version.

', 'refs' => [ 'DeleteLaunchTemplateVersionsResponseErrorItem$ResponseError' => '

Information about the error.

', ], ], 'ResponseHostIdList' => [ 'base' => NULL, 'refs' => [ 'AllocateHostsResult$HostIds' => '

The ID of the allocated Dedicated Host. This is used to launch an instance onto a specific host.

', 'ModifyHostsResult$Successful' => '

The IDs of the Dedicated Hosts that were successfully modified.

', 'ReleaseHostsResult$Successful' => '

The IDs of the Dedicated Hosts that were successfully released.

', ], ], 'ResponseHostIdSet' => [ 'base' => NULL, 'refs' => [ 'HostReservation$HostIdSet' => '

The IDs of the Dedicated Hosts associated with the reservation.

', 'Purchase$HostIdSet' => '

The IDs of the Dedicated Hosts associated with the reservation.

', ], ], 'ResponseLaunchTemplateData' => [ 'base' => '

The information for a launch template.

', 'refs' => [ 'GetLaunchTemplateDataResult$LaunchTemplateData' => '

The instance data.

', 'LaunchTemplateVersion$LaunchTemplateData' => '

Information about the launch template.

', ], ], 'RestorableByStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeSnapshotsRequest$RestorableByUserIds' => '

The IDs of the Amazon Web Services accounts that can create volumes from the snapshot.

', ], ], 'RestoreAddressToClassicRequest' => [ 'base' => NULL, 'refs' => [], ], 'RestoreAddressToClassicResult' => [ 'base' => NULL, 'refs' => [], ], 'RestoreImageFromRecycleBinRequest' => [ 'base' => NULL, 'refs' => [], ], 'RestoreImageFromRecycleBinResult' => [ 'base' => NULL, 'refs' => [], ], 'RestoreManagedPrefixListVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'RestoreManagedPrefixListVersionResult' => [ 'base' => NULL, 'refs' => [], ], 'RestoreSnapshotFromRecycleBinRequest' => [ 'base' => NULL, 'refs' => [], ], 'RestoreSnapshotFromRecycleBinResult' => [ 'base' => NULL, 'refs' => [], ], 'RestoreSnapshotTierRequest' => [ 'base' => NULL, 'refs' => [], ], 'RestoreSnapshotTierRequestTemporaryRestoreDays' => [ 'base' => NULL, 'refs' => [ 'RestoreSnapshotTierRequest$TemporaryRestoreDays' => '

Specifies the number of days for which to temporarily restore an archived snapshot. Required for temporary restores only. The snapshot will be automatically re-archived after this period.

To temporarily restore an archived snapshot, specify the number of days and omit the PermanentRestore parameter or set it to false.

', ], ], 'RestoreSnapshotTierResult' => [ 'base' => NULL, 'refs' => [], ], 'ResultRange' => [ 'base' => NULL, 'refs' => [ 'DescribeInstanceEventWindowsRequest$MaxResults' => '

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value. This value can be between 20 and 500. You cannot specify this parameter and the event window IDs parameter in the same call.

', ], ], 'RetentionPeriodRequestDays' => [ 'base' => NULL, 'refs' => [ 'LockSnapshotRequest$LockDuration' => '

The period of time for which to lock the snapshot, in days. The snapshot lock will automatically expire after this period lapses.

You must specify either this parameter or ExpirationDate, but not both.

Allowed values: Min: 1, max 36500

', ], ], 'RetentionPeriodResponseDays' => [ 'base' => NULL, 'refs' => [ 'LockSnapshotResult$LockDuration' => '

The period of time for which the snapshot is locked, in days.

', 'LockedSnapshotsInfo$LockDuration' => '

The period of time for which the snapshot is locked, in days.

', ], ], 'RevokeClientVpnIngressRequest' => [ 'base' => NULL, 'refs' => [], ], 'RevokeClientVpnIngressResult' => [ 'base' => NULL, 'refs' => [], ], 'RevokeSecurityGroupEgressRequest' => [ 'base' => NULL, 'refs' => [], ], 'RevokeSecurityGroupEgressResult' => [ 'base' => NULL, 'refs' => [], ], 'RevokeSecurityGroupIngressRequest' => [ 'base' => NULL, 'refs' => [], ], 'RevokeSecurityGroupIngressResult' => [ 'base' => NULL, 'refs' => [], ], 'RoleId' => [ 'base' => NULL, 'refs' => [ 'AssociateEnclaveCertificateIamRoleRequest$RoleArn' => '

The ARN of the IAM role to associate with the ACM certificate. You can associate up to 16 IAM roles with an ACM certificate.

', 'DisassociateEnclaveCertificateIamRoleRequest$RoleArn' => '

The ARN of the IAM role to disassociate.

', ], ], 'RootDeviceType' => [ 'base' => NULL, 'refs' => [ 'RootDeviceTypeList$member' => NULL, ], ], 'RootDeviceTypeList' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$SupportedRootDeviceTypes' => '

The supported root device types.

', ], ], 'Route' => [ 'base' => '

Describes a route in a route table.

', 'refs' => [ 'RouteList$member' => NULL, ], ], 'RouteGatewayId' => [ 'base' => NULL, 'refs' => [ 'AssociateRouteTableRequest$GatewayId' => '

The ID of the internet gateway or virtual private gateway.

', 'CreateRouteRequest$GatewayId' => '

The ID of an internet gateway or virtual private gateway attached to your VPC.

', 'ReplaceRouteRequest$GatewayId' => '

The ID of an internet gateway or virtual private gateway.

', ], ], 'RouteList' => [ 'base' => NULL, 'refs' => [ 'RouteTable$Routes' => '

The routes in the route table.

', ], ], 'RouteOrigin' => [ 'base' => NULL, 'refs' => [ 'Route$Origin' => '

Describes how the route was created.

  • CreateRouteTable - The route was automatically created when the route table was created.

  • CreateRoute - The route was manually added to the route table.

  • EnableVgwRoutePropagation - The route was propagated by route propagation.

', ], ], 'RouteState' => [ 'base' => NULL, 'refs' => [ 'Route$State' => '

The state of the route. The blackhole state indicates that the route\'s target isn\'t available (for example, the specified gateway isn\'t attached to the VPC, or the specified NAT instance has been terminated).

', ], ], 'RouteTable' => [ 'base' => '

Describes a route table.

', 'refs' => [ 'CreateRouteTableResult$RouteTable' => '

Information about the route table.

', 'RouteTableList$member' => NULL, ], ], 'RouteTableAssociation' => [ 'base' => '

Describes an association between a route table and a subnet or gateway.

', 'refs' => [ 'RouteTableAssociationList$member' => NULL, ], ], 'RouteTableAssociationId' => [ 'base' => NULL, 'refs' => [ 'DisassociateRouteTableRequest$AssociationId' => '

The association ID representing the current association between the route table and subnet or gateway.

', 'ReplaceRouteTableAssociationRequest$AssociationId' => '

The association ID.

', ], ], 'RouteTableAssociationList' => [ 'base' => NULL, 'refs' => [ 'RouteTable$Associations' => '

The associations between the route table and one or more subnets or a gateway.

', ], ], 'RouteTableAssociationState' => [ 'base' => '

Describes the state of an association between a route table and a subnet or gateway.

', 'refs' => [ 'AssociateRouteTableResult$AssociationState' => '

The state of the association.

', 'ReplaceRouteTableAssociationResult$AssociationState' => '

The state of the association.

', 'RouteTableAssociation$AssociationState' => '

The state of the association.

', ], ], 'RouteTableAssociationStateCode' => [ 'base' => NULL, 'refs' => [ 'RouteTableAssociationState$State' => '

The state of the association.

', ], ], 'RouteTableId' => [ 'base' => NULL, 'refs' => [ 'AssociateRouteTableRequest$RouteTableId' => '

The ID of the route table.

', 'CreateRouteRequest$RouteTableId' => '

The ID of the route table for the route.

', 'DeleteRouteRequest$RouteTableId' => '

The ID of the route table.

', 'DeleteRouteTableRequest$RouteTableId' => '

The ID of the route table.

', 'DisableVgwRoutePropagationRequest$RouteTableId' => '

The ID of the route table.

', 'EnableVgwRoutePropagationRequest$RouteTableId' => '

The ID of the route table. The routing table must be associated with the same VPC that the virtual private gateway is attached to.

', 'ReplaceRouteRequest$RouteTableId' => '

The ID of the route table.

', 'ReplaceRouteTableAssociationRequest$RouteTableId' => '

The ID of the new route table to associate with the subnet.

', 'RouteTableIdStringList$member' => NULL, 'VpcEndpointRouteTableIdList$member' => NULL, ], ], 'RouteTableIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeRouteTablesRequest$RouteTableIds' => '

The IDs of the route tables.

Default: Describes all your route tables.

', ], ], 'RouteTableList' => [ 'base' => NULL, 'refs' => [ 'DescribeRouteTablesResult$RouteTables' => '

Information about one or more route tables.

', ], ], 'RuleAction' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkAclEntryRequest$RuleAction' => '

Indicates whether to allow or deny the traffic that matches the rule.

', 'NetworkAclEntry$RuleAction' => '

Indicates whether to allow or deny the traffic that matches the rule.

', 'ReplaceNetworkAclEntryRequest$RuleAction' => '

Indicates whether to allow or deny the traffic that matches the rule.

', ], ], 'RuleGroupRuleOptionsPair' => [ 'base' => '

Describes the rule options for a stateful rule group.

', 'refs' => [ 'RuleGroupRuleOptionsPairList$member' => NULL, ], ], 'RuleGroupRuleOptionsPairList' => [ 'base' => NULL, 'refs' => [ 'AdditionalDetail$RuleGroupRuleOptionsPairs' => '

The rule options.

', ], ], 'RuleGroupTypePair' => [ 'base' => '

Describes the type of a stateful rule group.

', 'refs' => [ 'RuleGroupTypePairList$member' => NULL, ], ], 'RuleGroupTypePairList' => [ 'base' => NULL, 'refs' => [ 'AdditionalDetail$RuleGroupTypePairs' => '

The rule group type.

', ], ], 'RuleOption' => [ 'base' => '

Describes additional settings for a stateful rule.

', 'refs' => [ 'RuleOptionList$member' => NULL, ], ], 'RuleOptionList' => [ 'base' => NULL, 'refs' => [ 'AdditionalDetail$RuleOptions' => '

The rule options.

', 'RuleGroupRuleOptionsPair$RuleOptions' => '

The rule options.

', ], ], 'RunInstancesMonitoringEnabled' => [ 'base' => '

Describes the monitoring of an instance.

', 'refs' => [ 'LaunchSpecification$Monitoring' => NULL, 'RequestSpotLaunchSpecification$Monitoring' => '

Indicates whether basic or detailed monitoring is enabled for the instance.

Default: Disabled

', 'RunInstancesRequest$Monitoring' => '

Specifies whether detailed monitoring is enabled for the instance.

', ], ], 'RunInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'RunInstancesUserData' => [ 'base' => NULL, 'refs' => [ 'RunInstancesRequest$UserData' => '

The user data script to make available to the instance. For more information, see Run commands on your Linux instance at launch and Run commands on your Windows instance at launch. If you are using a command line tool, base64-encoding is performed for you, and you can load the text from a file. Otherwise, you must provide base64-encoded text. User data is limited to 16 KB.

', ], ], 'RunScheduledInstancesRequest' => [ 'base' => '

Contains the parameters for RunScheduledInstances.

', 'refs' => [], ], 'RunScheduledInstancesResult' => [ 'base' => '

Contains the output of RunScheduledInstances.

', 'refs' => [], ], 'S3ObjectTag' => [ 'base' => '

The tags to apply to the AMI object that will be stored in the Amazon S3 bucket. For more information, see Categorizing your storage using tags in the Amazon Simple Storage Service User Guide.

', 'refs' => [ 'S3ObjectTagList$member' => NULL, ], ], 'S3ObjectTagList' => [ 'base' => NULL, 'refs' => [ 'CreateStoreImageTaskRequest$S3ObjectTags' => '

The tags to apply to the AMI object that will be stored in the Amazon S3 bucket.

', ], ], 'S3Storage' => [ 'base' => '

Describes the storage parameters for Amazon S3 and Amazon S3 buckets for an instance store-backed AMI.

', 'refs' => [ 'Storage$S3' => '

An Amazon S3 storage location.

', ], ], 'S3StorageUploadPolicy' => [ 'base' => NULL, 'refs' => [], ], 'S3StorageUploadPolicySignature' => [ 'base' => NULL, 'refs' => [ 'S3Storage$UploadPolicySignature' => '

The signature of the JSON document.

', ], ], 'SSEType' => [ 'base' => NULL, 'refs' => [ 'GetEbsEncryptionByDefaultResult$SseType' => '

Reserved for future use.

', 'RestoreSnapshotFromRecycleBinResult$SseType' => '

Reserved for future use.

', 'Snapshot$SseType' => '

Reserved for future use.

', 'SnapshotInfo$SseType' => '

Reserved for future use.

', 'Volume$SseType' => '

Reserved for future use.

', ], ], 'ScheduledInstance' => [ 'base' => '

Describes a Scheduled Instance.

', 'refs' => [ 'PurchasedScheduledInstanceSet$member' => NULL, 'ScheduledInstanceSet$member' => NULL, ], ], 'ScheduledInstanceAvailability' => [ 'base' => '

Describes a schedule that is available for your Scheduled Instances.

', 'refs' => [ 'ScheduledInstanceAvailabilitySet$member' => NULL, ], ], 'ScheduledInstanceAvailabilitySet' => [ 'base' => NULL, 'refs' => [ 'DescribeScheduledInstanceAvailabilityResult$ScheduledInstanceAvailabilitySet' => '

Information about the available Scheduled Instances.

', ], ], 'ScheduledInstanceId' => [ 'base' => NULL, 'refs' => [ 'RunScheduledInstancesRequest$ScheduledInstanceId' => '

The Scheduled Instance ID.

', 'ScheduledInstanceIdRequestSet$member' => NULL, ], ], 'ScheduledInstanceIdRequestSet' => [ 'base' => NULL, 'refs' => [ 'DescribeScheduledInstancesRequest$ScheduledInstanceIds' => '

The Scheduled Instance IDs.

', ], ], 'ScheduledInstanceRecurrence' => [ 'base' => '

Describes the recurring schedule for a Scheduled Instance.

', 'refs' => [ 'ScheduledInstance$Recurrence' => '

The schedule recurrence.

', 'ScheduledInstanceAvailability$Recurrence' => '

The schedule recurrence.

', ], ], 'ScheduledInstanceRecurrenceRequest' => [ 'base' => '

Describes the recurring schedule for a Scheduled Instance.

', 'refs' => [ 'DescribeScheduledInstanceAvailabilityRequest$Recurrence' => '

The schedule recurrence.

', ], ], 'ScheduledInstanceSet' => [ 'base' => NULL, 'refs' => [ 'DescribeScheduledInstancesResult$ScheduledInstanceSet' => '

Information about the Scheduled Instances.

', ], ], 'ScheduledInstancesBlockDeviceMapping' => [ 'base' => '

Describes a block device mapping for a Scheduled Instance.

', 'refs' => [ 'ScheduledInstancesBlockDeviceMappingSet$member' => NULL, ], ], 'ScheduledInstancesBlockDeviceMappingSet' => [ 'base' => NULL, 'refs' => [ 'ScheduledInstancesLaunchSpecification$BlockDeviceMappings' => '

The block device mapping entries.

', ], ], 'ScheduledInstancesEbs' => [ 'base' => '

Describes an EBS volume for a Scheduled Instance.

', 'refs' => [ 'ScheduledInstancesBlockDeviceMapping$Ebs' => '

Parameters used to set up EBS volumes automatically when the instance is launched.

', ], ], 'ScheduledInstancesIamInstanceProfile' => [ 'base' => '

Describes an IAM instance profile for a Scheduled Instance.

', 'refs' => [ 'ScheduledInstancesLaunchSpecification$IamInstanceProfile' => '

The IAM instance profile.

', ], ], 'ScheduledInstancesIpv6Address' => [ 'base' => '

Describes an IPv6 address.

', 'refs' => [ 'ScheduledInstancesIpv6AddressList$member' => NULL, ], ], 'ScheduledInstancesIpv6AddressList' => [ 'base' => NULL, 'refs' => [ 'ScheduledInstancesNetworkInterface$Ipv6Addresses' => '

The specific IPv6 addresses from the subnet range.

', ], ], 'ScheduledInstancesLaunchSpecification' => [ 'base' => '

Describes the launch specification for a Scheduled Instance.

If you are launching the Scheduled Instance in EC2-VPC, you must specify the ID of the subnet. You can specify the subnet using either SubnetId or NetworkInterface.

', 'refs' => [ 'RunScheduledInstancesRequest$LaunchSpecification' => '

The launch specification. You must match the instance type, Availability Zone, network, and platform of the schedule that you purchased.

', ], ], 'ScheduledInstancesMonitoring' => [ 'base' => '

Describes whether monitoring is enabled for a Scheduled Instance.

', 'refs' => [ 'ScheduledInstancesLaunchSpecification$Monitoring' => '

Enable or disable monitoring for the instances.

', ], ], 'ScheduledInstancesNetworkInterface' => [ 'base' => '

Describes a network interface for a Scheduled Instance.

', 'refs' => [ 'ScheduledInstancesNetworkInterfaceSet$member' => NULL, ], ], 'ScheduledInstancesNetworkInterfaceSet' => [ 'base' => NULL, 'refs' => [ 'ScheduledInstancesLaunchSpecification$NetworkInterfaces' => '

The network interfaces.

', ], ], 'ScheduledInstancesPlacement' => [ 'base' => '

Describes the placement for a Scheduled Instance.

', 'refs' => [ 'ScheduledInstancesLaunchSpecification$Placement' => '

The placement information.

', ], ], 'ScheduledInstancesPrivateIpAddressConfig' => [ 'base' => '

Describes a private IPv4 address for a Scheduled Instance.

', 'refs' => [ 'PrivateIpAddressConfigSet$member' => NULL, ], ], 'ScheduledInstancesSecurityGroupIdSet' => [ 'base' => NULL, 'refs' => [ 'ScheduledInstancesLaunchSpecification$SecurityGroupIds' => '

The IDs of the security groups.

', 'ScheduledInstancesNetworkInterface$Groups' => '

The IDs of the security groups.

', ], ], 'SearchLocalGatewayRoutesRequest' => [ 'base' => NULL, 'refs' => [], ], 'SearchLocalGatewayRoutesResult' => [ 'base' => NULL, 'refs' => [], ], 'SearchTransitGatewayMulticastGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'SearchTransitGatewayMulticastGroupsResult' => [ 'base' => NULL, 'refs' => [], ], 'SearchTransitGatewayRoutesRequest' => [ 'base' => NULL, 'refs' => [], ], 'SearchTransitGatewayRoutesResult' => [ 'base' => NULL, 'refs' => [], ], 'SecurityGroup' => [ 'base' => '

Describes a security group.

', 'refs' => [ 'SecurityGroupList$member' => NULL, ], ], 'SecurityGroupForVpc' => [ 'base' => '

A security group that can be used by interfaces in the VPC.

', 'refs' => [ 'SecurityGroupForVpcList$member' => NULL, ], ], 'SecurityGroupForVpcList' => [ 'base' => NULL, 'refs' => [ 'GetSecurityGroupsForVpcResult$SecurityGroupForVpcs' => '

The security group that can be used by interfaces in the VPC.

', ], ], 'SecurityGroupId' => [ 'base' => NULL, 'refs' => [ 'AuthorizeSecurityGroupEgressRequest$GroupId' => '

The ID of the security group.

', 'AuthorizeSecurityGroupIngressRequest$GroupId' => '

The ID of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.

', 'ClientVpnSecurityGroupIdSet$member' => NULL, 'DeleteSecurityGroupRequest$GroupId' => '

The ID of the security group.

', 'GroupIdStringList$member' => NULL, 'GroupIds$member' => NULL, 'ModifySecurityGroupRulesRequest$GroupId' => '

The ID of the security group.

', 'RequestSpotLaunchSpecificationSecurityGroupIdList$member' => NULL, 'RevokeSecurityGroupEgressRequest$GroupId' => '

The ID of the security group.

', 'RevokeSecurityGroupIngressRequest$GroupId' => '

The ID of the security group.

', 'ScheduledInstancesSecurityGroupIdSet$member' => NULL, 'SecurityGroupIdList$member' => NULL, 'SecurityGroupIdSet$member' => NULL, 'SecurityGroupIdStringList$member' => NULL, 'SecurityGroupIdStringListRequest$member' => NULL, 'SecurityGroupRule$GroupId' => '

The ID of the security group.

', 'SecurityGroupRuleRequest$ReferencedGroupId' => '

The ID of the security group that is referenced in the security group rule.

', 'UpdateSecurityGroupRuleDescriptionsEgressRequest$GroupId' => '

The ID of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.

', 'UpdateSecurityGroupRuleDescriptionsIngressRequest$GroupId' => '

The ID of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.

', 'VpcEndpointSecurityGroupIdList$member' => NULL, ], ], 'SecurityGroupIdList' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointRequest$SecurityGroupIds' => '

The IDs of the security groups to associate with the Verified Access endpoint. Required if AttachmentType is set to vpc.

', 'VerifiedAccessEndpoint$SecurityGroupIds' => '

The IDs of the security groups for the endpoint.

', ], ], 'SecurityGroupIdSet' => [ 'base' => NULL, 'refs' => [ 'Ec2InstanceConnectEndpoint$SecurityGroupIds' => '

The security groups associated with the endpoint. If you didn\'t specify a security group, the default security group for your VPC is associated with the endpoint.

', ], ], 'SecurityGroupIdStringList' => [ 'base' => NULL, 'refs' => [ 'CreateNetworkInterfaceRequest$Groups' => '

The IDs of one or more security groups.

', 'ImportInstanceLaunchSpecification$GroupIds' => '

The security group IDs.

', 'InstanceNetworkInterfaceSpecification$Groups' => '

The IDs of the security groups for the network interface. Applies only if creating a network interface when launching an instance.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$Groups' => '

The IDs of one or more security groups.

', 'ModifyNetworkInterfaceAttributeRequest$Groups' => '

Changes the security groups for the network interface. The new set of groups you specify replaces the current set. You must specify at least one group, even if it\'s just the default security group in the VPC. You must specify the ID of the security group, not the name.

', 'RequestLaunchTemplateData$SecurityGroupIds' => '

One or more security group IDs. You can create a security group using CreateSecurityGroup.

', 'RunInstancesRequest$SecurityGroupIds' => '

The IDs of the security groups. You can create a security group using CreateSecurityGroup.

If you specify a network interface, you must specify any security groups as part of the network interface.

', ], ], 'SecurityGroupIdStringListRequest' => [ 'base' => NULL, 'refs' => [ 'CreateInstanceConnectEndpointRequest$SecurityGroupIds' => '

One or more security groups to associate with the endpoint. If you don\'t specify a security group, the default security group for your VPC will be associated with the endpoint.

', ], ], 'SecurityGroupIdentifier' => [ 'base' => '

Describes a security group.

', 'refs' => [ 'GroupIdentifierSet$member' => NULL, ], ], 'SecurityGroupList' => [ 'base' => NULL, 'refs' => [ 'DescribeSecurityGroupsResult$SecurityGroups' => '

Information about the security groups.

', ], ], 'SecurityGroupName' => [ 'base' => NULL, 'refs' => [ 'AuthorizeSecurityGroupIngressRequest$GroupName' => '

[Default VPC] The name of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.

', 'DeleteSecurityGroupRequest$GroupName' => '

[Default VPC] The name of the security group. You can specify either the security group name or the security group ID. For security groups in a nondefault VPC, you must specify the security group ID.

', 'GroupNameStringList$member' => NULL, 'RevokeSecurityGroupIngressRequest$GroupName' => '

[Default VPC] The name of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.

', 'SecurityGroupStringList$member' => NULL, 'UpdateSecurityGroupRuleDescriptionsEgressRequest$GroupName' => '

[Default VPC] The name of the security group. You must specify either the security group ID or the security group name.

', 'UpdateSecurityGroupRuleDescriptionsIngressRequest$GroupName' => '

[Default VPC] The name of the security group. You must specify either the security group ID or the security group name. For security groups in a nondefault VPC, you must specify the security group ID.

', ], ], 'SecurityGroupReference' => [ 'base' => '

Describes a VPC with a security group that references your security group.

', 'refs' => [ 'SecurityGroupReferences$member' => NULL, ], ], 'SecurityGroupReferences' => [ 'base' => NULL, 'refs' => [ 'DescribeSecurityGroupReferencesResult$SecurityGroupReferenceSet' => '

Information about the VPCs with the referencing security groups.

', ], ], 'SecurityGroupReferencingSupportValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayVpcAttachmentRequestOptions$SecurityGroupReferencingSupport' => '

Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option to simplify security group management and control of instance-to-instance traffic across VPCs that are connected by transit gateway. You can also use this option to migrate from VPC peering (which was the only option that supported security group referencing) to transit gateways (which now also support security group referencing). This option is disabled by default and there are no additional costs to use this feature.

If you don\'t enable or disable SecurityGroupReferencingSupport in the request, the attachment will inherit the security group referencing support setting on the transit gateway.

For important information about this feature, see Create a transit gateway attachment to a VPC in the Amazon Web Services Transit Gateway Guide.

', 'ModifyTransitGatewayOptions$SecurityGroupReferencingSupport' => '

Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option to simplify security group management and control of instance-to-instance traffic across VPCs that are connected by transit gateway. You can also use this option to migrate from VPC peering (which was the only option that supported security group referencing) to transit gateways (which now also support security group referencing). This option is disabled by default and there are no additional costs to use this feature.

For important information about this feature, see Create a transit gateway in the Amazon Web Services Transit Gateway Guide.

', 'ModifyTransitGatewayVpcAttachmentRequestOptions$SecurityGroupReferencingSupport' => '

Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option to simplify security group management and control of instance-to-instance traffic across VPCs that are connected by transit gateway. You can also use this option to migrate from VPC peering (which was the only option that supported security group referencing) to transit gateways (which now also support security group referencing). This option is disabled by default and there are no additional costs to use this feature.

For important information about this feature, see Create a transit gateway attachment to a VPC in the Amazon Web Services Transit Gateway Guide.

', 'TransitGatewayOptions$SecurityGroupReferencingSupport' => '

Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option to simplify security group management and control of instance-to-instance traffic across VPCs that are connected by transit gateway. You can also use this option to migrate from VPC peering (which was the only option that supported security group referencing) to transit gateways (which now also support security group referencing). This option is disabled by default and there are no additional costs to use this feature.

For important information about this feature, see Create a transit gateway in the Amazon Web Services Transit Gateway Guide.

', 'TransitGatewayRequestOptions$SecurityGroupReferencingSupport' => '

Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option to simplify security group management and control of instance-to-instance traffic across VPCs that are connected by transit gateway. You can also use this option to migrate from VPC peering (which was the only option that supported security group referencing) to transit gateways (which now also support security group referencing). This option is disabled by default and there are no additional costs to use this feature.

For important information about this feature, see Create a transit gateway in the Amazon Web Services Transit Gateway Guide.

', 'TransitGatewayVpcAttachmentOptions$SecurityGroupReferencingSupport' => '

For important information about this feature, see Create a transit gateway attachment to a VPC in the Amazon Web Services Transit Gateway Guide.

', ], ], 'SecurityGroupRule' => [ 'base' => '

Describes a security group rule.

', 'refs' => [ 'SecurityGroupRuleList$member' => NULL, ], ], 'SecurityGroupRuleDescription' => [ 'base' => '

Describes the description of a security group rule.

You can use this when you want to update the security group rule description for either an inbound or outbound rule.

', 'refs' => [ 'SecurityGroupRuleDescriptionList$member' => NULL, ], ], 'SecurityGroupRuleDescriptionList' => [ 'base' => NULL, 'refs' => [ 'UpdateSecurityGroupRuleDescriptionsEgressRequest$SecurityGroupRuleDescriptions' => '

The description for the egress security group rules. You must specify either the description or the IP permissions.

', 'UpdateSecurityGroupRuleDescriptionsIngressRequest$SecurityGroupRuleDescriptions' => '

The description for the ingress security group rules. You must specify either a description or IP permissions.

', ], ], 'SecurityGroupRuleId' => [ 'base' => NULL, 'refs' => [ 'SecurityGroupRule$SecurityGroupRuleId' => '

The ID of the security group rule.

', 'SecurityGroupRuleUpdate$SecurityGroupRuleId' => '

The ID of the security group rule.

', ], ], 'SecurityGroupRuleIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeSecurityGroupRulesRequest$SecurityGroupRuleIds' => '

The IDs of the security group rules.

', 'RevokeSecurityGroupEgressRequest$SecurityGroupRuleIds' => '

The IDs of the security group rules.

', 'RevokeSecurityGroupIngressRequest$SecurityGroupRuleIds' => '

The IDs of the security group rules.

', ], ], 'SecurityGroupRuleList' => [ 'base' => NULL, 'refs' => [ 'AuthorizeSecurityGroupEgressResult$SecurityGroupRules' => '

Information about the outbound (egress) security group rules that were added.

', 'AuthorizeSecurityGroupIngressResult$SecurityGroupRules' => '

Information about the inbound (ingress) security group rules that were added.

', 'DescribeSecurityGroupRulesResult$SecurityGroupRules' => '

Information about security group rules.

', ], ], 'SecurityGroupRuleRequest' => [ 'base' => '

Describes a security group rule.

You must specify exactly one of the following parameters, based on the rule type:

  • CidrIpv4

  • CidrIpv6

  • PrefixListId

  • ReferencedGroupId

When you modify a rule, you cannot change the rule type. For example, if the rule uses an IPv4 address range, you must use CidrIpv4 to specify a new IPv4 address range.

', 'refs' => [ 'SecurityGroupRuleUpdate$SecurityGroupRule' => '

Information about the security group rule.

', ], ], 'SecurityGroupRuleUpdate' => [ 'base' => '

Describes an update to a security group rule.

', 'refs' => [ 'SecurityGroupRuleUpdateList$member' => NULL, ], ], 'SecurityGroupRuleUpdateList' => [ 'base' => NULL, 'refs' => [ 'ModifySecurityGroupRulesRequest$SecurityGroupRules' => '

Information about the security group properties to update.

', ], ], 'SecurityGroupStringList' => [ 'base' => NULL, 'refs' => [ 'ImportInstanceLaunchSpecification$GroupNames' => '

The security group names.

', 'RequestLaunchTemplateData$SecurityGroups' => '

One or more security group names. For a nondefault VPC, you must use security group IDs instead.

', 'RunInstancesRequest$SecurityGroups' => '

[Default VPC] The names of the security groups.

If you specify a network interface, you must specify any security groups as part of the network interface.

Default: Amazon EC2 uses the default security group.

', ], ], 'SelfServicePortal' => [ 'base' => NULL, 'refs' => [ 'CreateClientVpnEndpointRequest$SelfServicePortal' => '

Specify whether to enable the self-service portal for the Client VPN endpoint.

Default Value: enabled

', 'ModifyClientVpnEndpointRequest$SelfServicePortal' => '

Specify whether to enable the self-service portal for the Client VPN endpoint.

', ], ], 'SendDiagnosticInterruptRequest' => [ 'base' => NULL, 'refs' => [], ], 'SensitiveUrl' => [ 'base' => NULL, 'refs' => [ 'ImageDiskContainer$Url' => '

The URL to the Amazon S3-based disk image being imported. The URL can either be a https URL (https://..) or an Amazon S3 URL (s3://..)

', 'SnapshotDetail$Url' => '

The URL used to access the disk image.

', 'SnapshotDiskContainer$Url' => '

The URL to the Amazon S3-based disk image being imported. It can either be a https URL (https://..) or an Amazon S3 URL (s3://..).

', 'SnapshotTaskDetail$Url' => '

The URL of the disk image from which the snapshot is created.

', ], ], 'SensitiveUserData' => [ 'base' => NULL, 'refs' => [ 'KeyPair$KeyMaterial' => '

An unencrypted PEM encoded RSA or ED25519 private key.

', 'LaunchSpecification$UserData' => '

The base64-encoded user data that instances use when starting up. User data is limited to 16 KB.

', 'RequestLaunchTemplateData$UserData' => '

The user data to make available to the instance. You must provide base64-encoded text. User data is limited to 16 KB. For more information, see Run commands on your Linux instance at launch (Linux) or Work with instance user data (Windows) in the Amazon Elastic Compute Cloud User Guide.

If you are creating the launch template for use with Batch, the user data must be provided in the MIME multi-part archive format. For more information, see Amazon EC2 user data in launch templates in the Batch User Guide.

', 'RequestSpotLaunchSpecification$UserData' => '

The base64-encoded user data that instances use when starting up. User data is limited to 16 KB.

', 'ResponseLaunchTemplateData$UserData' => '

The user data for the instance.

', 'SpotFleetLaunchSpecification$UserData' => '

The base64-encoded user data that instances use when starting up. User data is limited to 16 KB.

', ], ], 'ServiceConfiguration' => [ 'base' => '

Describes a service configuration for a VPC endpoint service.

', 'refs' => [ 'CreateVpcEndpointServiceConfigurationResult$ServiceConfiguration' => '

Information about the service configuration.

', 'ServiceConfigurationSet$member' => NULL, ], ], 'ServiceConfigurationSet' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcEndpointServiceConfigurationsResult$ServiceConfigurations' => '

Information about the services.

', ], ], 'ServiceConnectivityType' => [ 'base' => NULL, 'refs' => [ 'SupportedIpAddressTypes$member' => NULL, ], ], 'ServiceDetail' => [ 'base' => '

Describes a VPC endpoint service.

', 'refs' => [ 'ServiceDetailSet$member' => NULL, ], ], 'ServiceDetailSet' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcEndpointServicesResult$ServiceDetails' => '

Information about the service.

', ], ], 'ServiceState' => [ 'base' => NULL, 'refs' => [ 'ServiceConfiguration$ServiceState' => '

The service state.

', ], ], 'ServiceType' => [ 'base' => NULL, 'refs' => [ 'ServiceTypeDetail$ServiceType' => '

The type of service.

', ], ], 'ServiceTypeDetail' => [ 'base' => '

Describes the type of service for a VPC endpoint.

', 'refs' => [ 'ServiceTypeDetailSet$member' => NULL, ], ], 'ServiceTypeDetailSet' => [ 'base' => NULL, 'refs' => [ 'ServiceConfiguration$ServiceType' => '

The type of service.

', 'ServiceDetail$ServiceType' => '

The type of service.

', ], ], 'ShutdownBehavior' => [ 'base' => NULL, 'refs' => [ 'ImportInstanceLaunchSpecification$InstanceInitiatedShutdownBehavior' => '

Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the operating system command for system shutdown).

', 'RequestLaunchTemplateData$InstanceInitiatedShutdownBehavior' => '

Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the operating system command for system shutdown).

Default: stop

', 'ResponseLaunchTemplateData$InstanceInitiatedShutdownBehavior' => '

Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the operating system command for system shutdown).

', 'RunInstancesRequest$InstanceInitiatedShutdownBehavior' => '

Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the operating system command for system shutdown).

Default: stop

', ], ], 'SlotDateTimeRangeRequest' => [ 'base' => '

Describes the time period for a Scheduled Instance to start its first schedule. The time period must span less than one day.

', 'refs' => [ 'DescribeScheduledInstanceAvailabilityRequest$FirstSlotStartTimeRange' => '

The time period for the first schedule to start.

', ], ], 'SlotStartTimeRangeRequest' => [ 'base' => '

Describes the time period for a Scheduled Instance to start its first schedule.

', 'refs' => [ 'DescribeScheduledInstancesRequest$SlotStartTimeRange' => '

The time period for the first schedule to start.

', ], ], 'Snapshot' => [ 'base' => '

Describes a snapshot.

', 'refs' => [ 'SnapshotList$member' => NULL, ], ], 'SnapshotAttributeName' => [ 'base' => NULL, 'refs' => [ 'DescribeSnapshotAttributeRequest$Attribute' => '

The snapshot attribute you would like to view.

', 'ModifySnapshotAttributeRequest$Attribute' => '

The snapshot attribute to modify. Only volume creation permissions can be modified.

', 'ResetSnapshotAttributeRequest$Attribute' => '

The attribute to reset. Currently, only the attribute for permission to create volumes can be reset.

', ], ], 'SnapshotBlockPublicAccessState' => [ 'base' => NULL, 'refs' => [ 'DisableSnapshotBlockPublicAccessResult$State' => '

Returns unblocked if the request succeeds.

', 'EnableSnapshotBlockPublicAccessRequest$State' => '

The mode in which to enable block public access for snapshots for the Region. Specify one of the following values:

  • block-all-sharing - Prevents all public sharing of snapshots in the Region. Users in the account will no longer be able to request new public sharing. Additionally, snapshots that are already publicly shared are treated as private and they are no longer publicly available.

    If you enable block public access for snapshots in block-all-sharing mode, it does not change the permissions for snapshots that are already publicly shared. Instead, it prevents these snapshots from be publicly visible and publicly accessible. Therefore, the attributes for these snapshots still indicate that they are publicly shared, even though they are not publicly available.

  • block-new-sharing - Prevents only new public sharing of snapshots in the Region. Users in the account will no longer be able to request new public sharing. However, snapshots that are already publicly shared, remain publicly available.

unblocked is not a valid value for EnableSnapshotBlockPublicAccess.

', 'EnableSnapshotBlockPublicAccessResult$State' => '

The state of block public access for snapshots for the account and Region. Returns either block-all-sharing or block-new-sharing if the request succeeds.

', 'GetSnapshotBlockPublicAccessStateResult$State' => '

The current state of block public access for snapshots. Possible values include:

  • block-all-sharing - All public sharing of snapshots is blocked. Users in the account can\'t request new public sharing. Additionally, snapshots that were already publicly shared are treated as private and are not publicly available.

  • block-new-sharing - Only new public sharing of snapshots is blocked. Users in the account can\'t request new public sharing. However, snapshots that were already publicly shared, remain publicly available.

  • unblocked - Public sharing is not blocked. Users can publicly share snapshots.

', ], ], 'SnapshotDetail' => [ 'base' => '

Describes the snapshot created from the imported disk.

', 'refs' => [ 'SnapshotDetailList$member' => NULL, ], ], 'SnapshotDetailList' => [ 'base' => NULL, 'refs' => [ 'ImportImageResult$SnapshotDetails' => '

Information about the snapshots.

', 'ImportImageTask$SnapshotDetails' => '

Information about the snapshots.

', ], ], 'SnapshotDiskContainer' => [ 'base' => '

The disk container object for the import snapshot request.

', 'refs' => [ 'ImportSnapshotRequest$DiskContainer' => '

Information about the disk container.

', ], ], 'SnapshotId' => [ 'base' => NULL, 'refs' => [ 'CreateReplaceRootVolumeTaskRequest$SnapshotId' => '

The ID of the snapshot from which to restore the replacement root volume. The specified snapshot must be a snapshot that you previously created from the original root volume.

If you want to restore the replacement root volume to the initial launch state, or if you want to restore the replacement root volume from an AMI, omit this parameter.

', 'CreateVolumeRequest$SnapshotId' => '

The snapshot from which to create the volume. You must specify either a snapshot ID or a volume size.

', 'DeleteSnapshotRequest$SnapshotId' => '

The ID of the EBS snapshot.

', 'DescribeSnapshotAttributeRequest$SnapshotId' => '

The ID of the EBS snapshot.

', 'EbsBlockDevice$SnapshotId' => '

The ID of the snapshot.

', 'ImageDiskContainer$SnapshotId' => '

The ID of the EBS snapshot to be used for importing the snapshot.

', 'LaunchTemplateEbsBlockDevice$SnapshotId' => '

The ID of the snapshot.

', 'LaunchTemplateEbsBlockDeviceRequest$SnapshotId' => '

The ID of the snapshot.

', 'LockSnapshotRequest$SnapshotId' => '

The ID of the snapshot to lock.

', 'ModifySnapshotAttributeRequest$SnapshotId' => '

The ID of the snapshot.

', 'ModifySnapshotTierRequest$SnapshotId' => '

The ID of the snapshot.

', 'ReplaceRootVolumeTask$SnapshotId' => '

The ID of the snapshot used to create the replacement root volume.

', 'ResetSnapshotAttributeRequest$SnapshotId' => '

The ID of the snapshot.

', 'RestoreSnapshotFromRecycleBinRequest$SnapshotId' => '

The ID of the snapshot to restore.

', 'RestoreSnapshotTierRequest$SnapshotId' => '

The ID of the snapshot to restore.

', 'ScheduledInstancesEbs$SnapshotId' => '

The ID of the snapshot.

', 'SnapshotIdStringList$member' => NULL, 'SnapshotTierStatus$SnapshotId' => '

The ID of the snapshot.

', 'UnlockSnapshotRequest$SnapshotId' => '

The ID of the snapshot to unlock.

', ], ], 'SnapshotIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeLockedSnapshotsRequest$SnapshotIds' => '

The IDs of the snapshots for which to view the lock status.

', 'DescribeSnapshotsRequest$SnapshotIds' => '

The snapshot IDs.

Default: Describes the snapshots for which you have create volume permissions.

', 'DisableFastSnapshotRestoresRequest$SourceSnapshotIds' => '

The IDs of one or more snapshots. For example, snap-1234567890abcdef0.

', 'EnableFastSnapshotRestoresRequest$SourceSnapshotIds' => '

The IDs of one or more snapshots. For example, snap-1234567890abcdef0. You can specify a snapshot that was shared with you from another Amazon Web Services account.

', 'ListSnapshotsInRecycleBinRequest$SnapshotIds' => '

The IDs of the snapshots to list. Omit this parameter to list all of the snapshots that are in the Recycle Bin.

', ], ], 'SnapshotInfo' => [ 'base' => '

Information about a snapshot.

', 'refs' => [ 'SnapshotSet$member' => NULL, ], ], 'SnapshotList' => [ 'base' => NULL, 'refs' => [ 'DescribeSnapshotsResult$Snapshots' => '

Information about the snapshots.

', ], ], 'SnapshotRecycleBinInfo' => [ 'base' => '

Information about a snapshot that is currently in the Recycle Bin.

', 'refs' => [ 'SnapshotRecycleBinInfoList$member' => NULL, ], ], 'SnapshotRecycleBinInfoList' => [ 'base' => NULL, 'refs' => [ 'ListSnapshotsInRecycleBinResult$Snapshots' => '

Information about the snapshots.

', ], ], 'SnapshotSet' => [ 'base' => NULL, 'refs' => [ 'CreateSnapshotsResult$Snapshots' => '

List of snapshots.

', ], ], 'SnapshotState' => [ 'base' => NULL, 'refs' => [ 'RestoreSnapshotFromRecycleBinResult$State' => '

The state of the snapshot.

', 'Snapshot$State' => '

The snapshot state.

', 'SnapshotInfo$State' => '

Current state of the snapshot.

', 'SnapshotTierStatus$Status' => '

The state of the snapshot.

', ], ], 'SnapshotTaskDetail' => [ 'base' => '

Details about the import snapshot task.

', 'refs' => [ 'ImportSnapshotResult$SnapshotTaskDetail' => '

Information about the import snapshot task.

', 'ImportSnapshotTask$SnapshotTaskDetail' => '

Describes an import snapshot task.

', ], ], 'SnapshotTierStatus' => [ 'base' => '

Provides information about a snapshot\'s storage tier.

', 'refs' => [ 'snapshotTierStatusSet$member' => NULL, ], ], 'SpotAllocationStrategy' => [ 'base' => NULL, 'refs' => [ 'SpotOptions$AllocationStrategy' => '

The strategy that determines how to allocate the target Spot Instance capacity across the Spot Instance pools specified by the EC2 Fleet launch configuration. For more information, see Allocation strategies for Spot Instances in the Amazon EC2 User Guide.

price-capacity-optimized (recommended)

EC2 Fleet identifies the pools with the highest capacity availability for the number of instances that are launching. This means that we will request Spot Instances from the pools that we believe have the lowest chance of interruption in the near term. EC2 Fleet then requests Spot Instances from the lowest priced of these pools.

capacity-optimized

EC2 Fleet identifies the pools with the highest capacity availability for the number of instances that are launching. This means that we will request Spot Instances from the pools that we believe have the lowest chance of interruption in the near term. To give certain instance types a higher chance of launching first, use capacity-optimized-prioritized. Set a priority for each instance type by using the Priority parameter for LaunchTemplateOverrides. You can assign the same priority to different LaunchTemplateOverrides. EC2 implements the priorities on a best-effort basis, but optimizes for capacity first. capacity-optimized-prioritized is supported only if your EC2 Fleet uses a launch template. Note that if the On-Demand AllocationStrategy is set to prioritized, the same priority is applied when fulfilling On-Demand capacity.

diversified

EC2 Fleet requests instances from all of the Spot Instance pools that you specify.

lowest-price

EC2 Fleet requests instances from the lowest priced Spot Instance pool that has available capacity. If the lowest priced pool doesn\'t have available capacity, the Spot Instances come from the next lowest priced pool that has available capacity. If a pool runs out of capacity before fulfilling your desired capacity, EC2 Fleet will continue to fulfill your request by drawing from the next lowest priced pool. To ensure that your desired capacity is met, you might receive Spot Instances from several pools. Because this strategy only considers instance price and not capacity availability, it might lead to high interruption rates.

Default: lowest-price

', 'SpotOptionsRequest$AllocationStrategy' => '

The strategy that determines how to allocate the target Spot Instance capacity across the Spot Instance pools specified by the EC2 Fleet launch configuration. For more information, see Allocation strategies for Spot Instances in the Amazon EC2 User Guide.

price-capacity-optimized (recommended)

EC2 Fleet identifies the pools with the highest capacity availability for the number of instances that are launching. This means that we will request Spot Instances from the pools that we believe have the lowest chance of interruption in the near term. EC2 Fleet then requests Spot Instances from the lowest priced of these pools.

capacity-optimized

EC2 Fleet identifies the pools with the highest capacity availability for the number of instances that are launching. This means that we will request Spot Instances from the pools that we believe have the lowest chance of interruption in the near term. To give certain instance types a higher chance of launching first, use capacity-optimized-prioritized. Set a priority for each instance type by using the Priority parameter for LaunchTemplateOverrides. You can assign the same priority to different LaunchTemplateOverrides. EC2 implements the priorities on a best-effort basis, but optimizes for capacity first. capacity-optimized-prioritized is supported only if your EC2 Fleet uses a launch template. Note that if the On-Demand AllocationStrategy is set to prioritized, the same priority is applied when fulfilling On-Demand capacity.

diversified

EC2 Fleet requests instances from all of the Spot Instance pools that you specify.

lowest-price

EC2 Fleet requests instances from the lowest priced Spot Instance pool that has available capacity. If the lowest priced pool doesn\'t have available capacity, the Spot Instances come from the next lowest priced pool that has available capacity. If a pool runs out of capacity before fulfilling your desired capacity, EC2 Fleet will continue to fulfill your request by drawing from the next lowest priced pool. To ensure that your desired capacity is met, you might receive Spot Instances from several pools. Because this strategy only considers instance price and not capacity availability, it might lead to high interruption rates.

Default: lowest-price

', ], ], 'SpotCapacityRebalance' => [ 'base' => '

The Spot Instance replacement strategy to use when Amazon EC2 emits a signal that your Spot Instance is at an elevated risk of being interrupted. For more information, see Capacity rebalancing in the Amazon EC2 User Guide for Linux Instances.

', 'refs' => [ 'SpotMaintenanceStrategies$CapacityRebalance' => '

The Spot Instance replacement strategy to use when Amazon EC2 emits a signal that your Spot Instance is at an elevated risk of being interrupted. For more information, see Capacity rebalancing in the Amazon EC2 User Guide for Linux Instances.

', ], ], 'SpotDatafeedSubscription' => [ 'base' => '

Describes the data feed for a Spot Instance.

', 'refs' => [ 'CreateSpotDatafeedSubscriptionResult$SpotDatafeedSubscription' => '

The Spot Instance data feed subscription.

', 'DescribeSpotDatafeedSubscriptionResult$SpotDatafeedSubscription' => '

The Spot Instance data feed subscription.

', ], ], 'SpotFleetLaunchSpecification' => [ 'base' => '

Describes the launch specification for one or more Spot Instances. If you include On-Demand capacity in your fleet request or want to specify an EFA network device, you can\'t use SpotFleetLaunchSpecification; you must use LaunchTemplateConfig.

', 'refs' => [ 'LaunchSpecsList$member' => NULL, ], ], 'SpotFleetMonitoring' => [ 'base' => '

Describes whether monitoring is enabled.

', 'refs' => [ 'SpotFleetLaunchSpecification$Monitoring' => '

Enable or disable monitoring for the instances.

', ], ], 'SpotFleetRequestConfig' => [ 'base' => '

Describes a Spot Fleet request.

', 'refs' => [ 'SpotFleetRequestConfigSet$member' => NULL, ], ], 'SpotFleetRequestConfigData' => [ 'base' => '

Describes the configuration of a Spot Fleet request.

', 'refs' => [ 'RequestSpotFleetRequest$SpotFleetRequestConfig' => '

The configuration for the Spot Fleet request.

', 'SpotFleetRequestConfig$SpotFleetRequestConfig' => '

The configuration of the Spot Fleet request.

', ], ], 'SpotFleetRequestConfigSet' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotFleetRequestsResponse$SpotFleetRequestConfigs' => '

Information about the configuration of your Spot Fleet.

', ], ], 'SpotFleetRequestId' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotFleetInstancesRequest$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'DescribeSpotFleetRequestHistoryRequest$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'ModifySpotFleetRequestRequest$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'SpotFleetRequestIdList$member' => NULL, ], ], 'SpotFleetRequestIdList' => [ 'base' => NULL, 'refs' => [ 'CancelSpotFleetRequestsRequest$SpotFleetRequestIds' => '

The IDs of the Spot Fleet requests.

', 'DescribeSpotFleetRequestsRequest$SpotFleetRequestIds' => '

The IDs of the Spot Fleet requests.

', ], ], 'SpotFleetTagSpecification' => [ 'base' => '

The tags for a Spot Fleet resource.

', 'refs' => [ 'SpotFleetTagSpecificationList$member' => NULL, ], ], 'SpotFleetTagSpecificationList' => [ 'base' => NULL, 'refs' => [ 'SpotFleetLaunchSpecification$TagSpecifications' => '

The tags to apply during creation.

', ], ], 'SpotInstanceInterruptionBehavior' => [ 'base' => NULL, 'refs' => [ 'SpotOptions$InstanceInterruptionBehavior' => '

The behavior when a Spot Instance is interrupted.

Default: terminate

', 'SpotOptionsRequest$InstanceInterruptionBehavior' => '

The behavior when a Spot Instance is interrupted.

Default: terminate

', ], ], 'SpotInstanceRequest' => [ 'base' => '

Describes a Spot Instance request.

', 'refs' => [ 'SpotInstanceRequestList$member' => NULL, ], ], 'SpotInstanceRequestId' => [ 'base' => NULL, 'refs' => [ 'SpotInstanceRequestIdList$member' => NULL, ], ], 'SpotInstanceRequestIdList' => [ 'base' => NULL, 'refs' => [ 'CancelSpotInstanceRequestsRequest$SpotInstanceRequestIds' => '

The IDs of the Spot Instance requests.

', 'DescribeSpotInstanceRequestsRequest$SpotInstanceRequestIds' => '

The IDs of the Spot Instance requests.

', ], ], 'SpotInstanceRequestList' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotInstanceRequestsResult$SpotInstanceRequests' => '

The Spot Instance requests.

', 'RequestSpotInstancesResult$SpotInstanceRequests' => '

The Spot Instance requests.

', ], ], 'SpotInstanceState' => [ 'base' => NULL, 'refs' => [ 'SpotInstanceRequest$State' => '

The state of the Spot Instance request. Spot request status information helps track your Spot Instance requests. For more information, see Spot request status in the Amazon EC2 User Guide for Linux Instances.

', ], ], 'SpotInstanceStateFault' => [ 'base' => '

Describes a Spot Instance state change.

', 'refs' => [ 'SpotDatafeedSubscription$Fault' => '

The fault codes for the Spot Instance request, if any.

', 'SpotInstanceRequest$Fault' => '

The fault codes for the Spot Instance request, if any.

', ], ], 'SpotInstanceStatus' => [ 'base' => '

Describes the status of a Spot Instance request.

', 'refs' => [ 'SpotInstanceRequest$Status' => '

The status code and status message describing the Spot Instance request.

', ], ], 'SpotInstanceType' => [ 'base' => NULL, 'refs' => [ 'LaunchTemplateSpotMarketOptions$SpotInstanceType' => '

The Spot Instance request type.

', 'LaunchTemplateSpotMarketOptionsRequest$SpotInstanceType' => '

The Spot Instance request type.

', 'RequestSpotInstancesRequest$Type' => '

The Spot Instance request type.

Default: one-time

', 'SpotInstanceRequest$Type' => '

The Spot Instance request type.

', 'SpotMarketOptions$SpotInstanceType' => '

The Spot Instance request type. For RunInstances, persistent Spot Instance requests are only supported when the instance interruption behavior is either hibernate or stop.

', ], ], 'SpotMaintenanceStrategies' => [ 'base' => '

The strategies for managing your Spot Instances that are at an elevated risk of being interrupted.

', 'refs' => [ 'SpotFleetRequestConfigData$SpotMaintenanceStrategies' => '

The strategies for managing your Spot Instances that are at an elevated risk of being interrupted.

', ], ], 'SpotMarketOptions' => [ 'base' => '

The options for Spot Instances.

', 'refs' => [ 'InstanceMarketOptionsRequest$SpotOptions' => '

The options for Spot Instances.

', ], ], 'SpotOptions' => [ 'base' => '

Describes the configuration of Spot Instances in an EC2 Fleet.

', 'refs' => [ 'FleetData$SpotOptions' => '

The configuration of Spot Instances in an EC2 Fleet.

', ], ], 'SpotOptionsRequest' => [ 'base' => '

Describes the configuration of Spot Instances in an EC2 Fleet request.

', 'refs' => [ 'CreateFleetRequest$SpotOptions' => '

Describes the configuration of Spot Instances in an EC2 Fleet.

', ], ], 'SpotPlacement' => [ 'base' => '

Describes Spot Instance placement.

', 'refs' => [ 'LaunchSpecification$Placement' => '

The placement information for the instance.

', 'RequestSpotLaunchSpecification$Placement' => '

The placement information for the instance.

', 'SpotFleetLaunchSpecification$Placement' => '

The placement information.

', ], ], 'SpotPlacementScore' => [ 'base' => '

The Spot placement score for this Region or Availability Zone. The score is calculated based on the assumption that the capacity-optimized allocation strategy is used and that all of the Availability Zones in the Region can be used.

', 'refs' => [ 'SpotPlacementScores$member' => NULL, ], ], 'SpotPlacementScores' => [ 'base' => NULL, 'refs' => [ 'GetSpotPlacementScoresResult$SpotPlacementScores' => '

The Spot placement score for the top 10 Regions or Availability Zones, scored on a scale from 1 to 10. Each score
 reflects how likely it is that each Region or Availability Zone will succeed at fulfilling the specified target capacity
 at the time of the Spot placement score request. A score of 10 means that your Spot capacity request is highly likely to succeed in that Region or Availability Zone.

If you request a Spot placement score for Regions, a high score assumes that your fleet request will be configured to use all Availability Zones and the capacity-optimized allocation strategy. If you request a Spot placement score for Availability Zones, a high score assumes that your fleet request will be configured to use a single Availability Zone and the capacity-optimized allocation strategy.

Different
 Regions or Availability Zones might return the same score.

The Spot placement score serves as a recommendation only. No score guarantees that your Spot request will be fully or partially fulfilled.

', ], ], 'SpotPlacementScoresMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetSpotPlacementScoresRequest$MaxResults' => '

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

', ], ], 'SpotPlacementScoresTargetCapacity' => [ 'base' => NULL, 'refs' => [ 'GetSpotPlacementScoresRequest$TargetCapacity' => '

The target capacity.

', ], ], 'SpotPrice' => [ 'base' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'refs' => [ 'SpotPriceHistoryList$member' => NULL, ], ], 'SpotPriceHistoryList' => [ 'base' => NULL, 'refs' => [ 'DescribeSpotPriceHistoryResult$SpotPriceHistory' => '

The historical Spot prices.

', ], ], 'SpreadLevel' => [ 'base' => NULL, 'refs' => [ 'CreatePlacementGroupRequest$SpreadLevel' => '

Determines how placement groups spread instances.

  • Host – You can use host only with Outpost placement groups.

  • Rack – No usage restrictions.

', 'PlacementGroup$SpreadLevel' => '

The spread level for the placement group. Only Outpost placement groups can be spread across hosts.

', ], ], 'StaleIpPermission' => [ 'base' => '

Describes a stale rule in a security group.

', 'refs' => [ 'StaleIpPermissionSet$member' => NULL, ], ], 'StaleIpPermissionSet' => [ 'base' => NULL, 'refs' => [ 'StaleSecurityGroup$StaleIpPermissions' => '

Information about the stale inbound rules in the security group.

', 'StaleSecurityGroup$StaleIpPermissionsEgress' => '

Information about the stale outbound rules in the security group.

', ], ], 'StaleSecurityGroup' => [ 'base' => '

Describes a stale security group (a security group that contains stale rules).

', 'refs' => [ 'StaleSecurityGroupSet$member' => NULL, ], ], 'StaleSecurityGroupSet' => [ 'base' => NULL, 'refs' => [ 'DescribeStaleSecurityGroupsResult$StaleSecurityGroupSet' => '

Information about the stale security groups.

', ], ], 'StartInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'StartNetworkInsightsAccessScopeAnalysisRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartNetworkInsightsAccessScopeAnalysisResult' => [ 'base' => NULL, 'refs' => [], ], 'StartNetworkInsightsAnalysisRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartNetworkInsightsAnalysisResult' => [ 'base' => NULL, 'refs' => [], ], 'StartVpcEndpointServicePrivateDnsVerificationRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartVpcEndpointServicePrivateDnsVerificationResult' => [ 'base' => NULL, 'refs' => [], ], 'State' => [ 'base' => NULL, 'refs' => [ 'VpcEndpoint$State' => '

The state of the endpoint.

', 'VpcEndpointConnection$VpcEndpointState' => '

The state of the VPC endpoint.

', ], ], 'StateReason' => [ 'base' => '

Describes a state change.

', 'refs' => [ 'Image$StateReason' => '

The reason for the state change.

', 'Instance$StateReason' => '

The reason for the most recent state transition.

', 'LocalGatewayRouteTable$StateReason' => '

Information about the state change.

', ], ], 'StaticSourcesSupportValue' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayMulticastDomainRequestOptions$StaticSourcesSupport' => '

Specify whether to enable support for statically configuring multicast group sources for a domain.

', 'TransitGatewayMulticastDomainOptions$StaticSourcesSupport' => '

Indicates whether support for statically configuring transit gateway multicast group sources is turned on.

', ], ], 'StatisticType' => [ 'base' => NULL, 'refs' => [ 'DataQuery$Statistic' => '

The metric data aggregation period, p50, between the specified startDate and endDate. For example, a metric of five_minutes is the median of all the data points gathered within those five minutes. p50 is the only supported metric.

', 'DataResponse$Statistic' => '

The statistic used for the network performance request.

', 'DisableAwsNetworkPerformanceMetricSubscriptionRequest$Statistic' => '

The statistic used for the disabled subscription.

', 'EnableAwsNetworkPerformanceMetricSubscriptionRequest$Statistic' => '

The statistic used for the enabled subscription.

', 'Subscription$Statistic' => '

The statistic used for the subscription.

', ], ], 'Status' => [ 'base' => NULL, 'refs' => [ 'MoveAddressToVpcResult$Status' => '

The status of the move of the IP address.

', 'RestoreAddressToClassicResult$Status' => '

The move status for the IP address.

', ], ], 'StatusName' => [ 'base' => NULL, 'refs' => [ 'InstanceStatusDetails$Name' => '

The type of instance status.

', ], ], 'StatusType' => [ 'base' => NULL, 'refs' => [ 'InstanceStatusDetails$Status' => '

The status.

', ], ], 'StopInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'StopInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'Storage' => [ 'base' => '

Describes the storage location for an instance store-backed AMI.

', 'refs' => [ 'BundleInstanceRequest$Storage' => '

The bucket in which to store the AMI. You can specify a bucket that you already own or a new bucket that Amazon EC2 creates on your behalf. If you specify a bucket that belongs to someone else, Amazon EC2 returns an error.

', 'BundleTask$Storage' => '

The Amazon S3 storage locations.

', ], ], 'StorageLocation' => [ 'base' => '

Describes a storage location in Amazon S3.

', 'refs' => [ 'CreateFpgaImageRequest$InputStorageLocation' => '

The location of the encrypted design checkpoint in Amazon S3. The input must be a tarball.

', 'CreateFpgaImageRequest$LogsStorageLocation' => '

The location in Amazon S3 for the output logs.

', ], ], 'StorageTier' => [ 'base' => NULL, 'refs' => [ 'Snapshot$StorageTier' => '

The storage tier in which the snapshot is stored. standard indicates that the snapshot is stored in the standard snapshot storage tier and that it is ready for use. archive indicates that the snapshot is currently archived and that it must be restored before it can be used.

', 'SnapshotTierStatus$StorageTier' => '

The storage tier in which the snapshot is stored. standard indicates that the snapshot is stored in the standard snapshot storage tier and that it is ready for use. archive indicates that the snapshot is currently archived and that it must be restored before it can be used.

', ], ], 'StoreImageTaskResult' => [ 'base' => '

The information about the AMI store task, including the progress of the task.

', 'refs' => [ 'StoreImageTaskResultSet$member' => NULL, ], ], 'StoreImageTaskResultSet' => [ 'base' => NULL, 'refs' => [ 'DescribeStoreImageTasksResult$StoreImageTaskResults' => '

The information about the AMI store tasks.

', ], ], 'String' => [ 'base' => NULL, 'refs' => [ 'AcceptAddressTransferRequest$Address' => '

The Elastic IP address you are accepting for transfer.

', 'AcceptReservedInstancesExchangeQuoteResult$ExchangeId' => '

The ID of the successful exchange.

', 'AccessScopeAnalysisFinding$FindingId' => '

The ID of the finding.

', 'AccountAttribute$AttributeName' => '

The name of the account attribute.

', 'AccountAttributeValue$AttributeValue' => '

The value of the attribute.

', 'ActiveInstance$InstanceId' => '

The ID of the instance.

', 'ActiveInstance$InstanceType' => '

The instance type.

', 'ActiveInstance$SpotInstanceRequestId' => '

The ID of the Spot Instance request.

', 'AddIpamOperatingRegion$RegionName' => '

The name of the operating Region.

', 'AddPrefixListEntry$Cidr' => '

The CIDR block.

', 'AddPrefixListEntry$Description' => '

A description for the entry.

Constraints: Up to 255 characters in length.

', 'AddedPrincipal$Principal' => '

The Amazon Resource Name (ARN) of the principal.

', 'AddedPrincipal$ServicePermissionId' => '

The ID of the service permission.

', 'AddedPrincipal$ServiceId' => '

The ID of the service.

', 'AdditionalDetail$AdditionalDetailType' => '

The additional detail code.

', 'AdditionalDetail$ServiceName' => '

The name of the VPC endpoint service.

', 'Address$InstanceId' => '

The ID of the instance that the address is associated with (if any).

', 'Address$PublicIp' => '

The Elastic IP address.

', 'Address$AllocationId' => '

The ID representing the allocation of the address.

', 'Address$AssociationId' => '

The ID representing the association of the address with an instance.

', 'Address$NetworkInterfaceId' => '

The ID of the network interface.

', 'Address$NetworkInterfaceOwnerId' => '

The ID of the Amazon Web Services account that owns the network interface.

', 'Address$PrivateIpAddress' => '

The private IP address associated with the Elastic IP address.

', 'Address$PublicIpv4Pool' => '

The ID of an address pool.

', 'Address$NetworkBorderGroup' => '

The name of the unique set of Availability Zones, Local Zones, or Wavelength Zones from which Amazon Web Services advertises IP addresses.

', 'Address$CustomerOwnedIp' => '

The customer-owned IP address.

', 'Address$CustomerOwnedIpv4Pool' => '

The ID of the customer-owned address pool.

', 'Address$CarrierIp' => '

The carrier IP address associated. This option is only available for network interfaces which reside in a subnet in a Wavelength Zone (for example an EC2 instance).

', 'AddressAttribute$PtrRecord' => '

The pointer (PTR) record for the IP address.

', 'AddressTransfer$PublicIp' => '

The Elastic IP address being transferred.

', 'AddressTransfer$AllocationId' => '

The allocation ID of an Elastic IP address.

', 'AddressTransfer$TransferAccountId' => '

The ID of the account that you want to transfer the Elastic IP address to.

', 'AdvertiseByoipCidrRequest$Cidr' => '

The address range, in CIDR notation. This must be the exact range that you provisioned. You can\'t advertise only a portion of the provisioned range.

', 'AdvertiseByoipCidrRequest$Asn' => '

The public 2-byte or 4-byte ASN that you want to advertise.

', 'AdvertiseByoipCidrRequest$NetworkBorderGroup' => '

If you have Local Zones enabled, you can choose a network border group for Local Zones when you provision and advertise a BYOIPv4 CIDR. Choose the network border group carefully as the EIP and the Amazon Web Services resource it is associated with must reside in the same network border group.

You can provision BYOIP address ranges to and advertise them in the following Local Zone network border groups:

  • us-east-1-dfw-2

  • us-west-2-lax-1

  • us-west-2-phx-2

You cannot provision or advertise BYOIPv6 address ranges in Local Zones at this time.

', 'AllocateAddressRequest$NetworkBorderGroup' => '

A unique set of Availability Zones, Local Zones, or Wavelength Zones from which Amazon Web Services advertises IP addresses. Use this parameter to limit the IP address to this location. IP addresses cannot move between network border groups.

Use DescribeAvailabilityZones to view the network border groups.

', 'AllocateAddressRequest$CustomerOwnedIpv4Pool' => '

The ID of a customer-owned address pool. Use this parameter to let Amazon EC2 select an address from the address pool. Alternatively, specify a specific address from the address pool.

', 'AllocateAddressResult$PublicIp' => '

The Elastic IP address.

', 'AllocateAddressResult$AllocationId' => '

The ID that represents the allocation of the Elastic IP address.

', 'AllocateAddressResult$PublicIpv4Pool' => '

The ID of an address pool.

', 'AllocateAddressResult$NetworkBorderGroup' => '

The set of Availability Zones, Local Zones, or Wavelength Zones from which Amazon Web Services advertises IP addresses.

', 'AllocateAddressResult$CustomerOwnedIp' => '

The customer-owned IP address.

', 'AllocateAddressResult$CustomerOwnedIpv4Pool' => '

The ID of the customer-owned address pool.

', 'AllocateAddressResult$CarrierIp' => '

The carrier IP address. This option is only available for network interfaces that reside in a subnet in a Wavelength Zone.

', 'AllocateHostsRequest$AvailabilityZone' => '

The Availability Zone in which to allocate the Dedicated Host.

', 'AllocateHostsRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'AllocateHostsRequest$InstanceType' => '

Specifies the instance type to be supported by the Dedicated Hosts. If you specify an instance type, the Dedicated Hosts support instances of the specified instance type only.

If you want the Dedicated Hosts to support multiple instance types in a specific instance family, omit this parameter and specify InstanceFamily instead. You cannot specify InstanceType and InstanceFamily in the same request.

', 'AllocateHostsRequest$InstanceFamily' => '

Specifies the instance family to be supported by the Dedicated Hosts. If you specify an instance family, the Dedicated Hosts support multiple instance types within that instance family.

If you want the Dedicated Hosts to support a specific instance type only, omit this parameter and specify InstanceType instead. You cannot specify InstanceFamily and InstanceType in the same request.

', 'AllocateHostsRequest$OutpostArn' => '

The Amazon Resource Name (ARN) of the Amazon Web Services Outpost on which to allocate the Dedicated Host. If you specify OutpostArn, you can optionally specify AssetIds.

If you are allocating the Dedicated Host in a Region, omit this parameter.

', 'AllocateIpamPoolCidrRequest$Cidr' => '

The CIDR you would like to allocate from the IPAM pool. Note the following:

  • If there is no DefaultNetmaskLength allocation rule set on the pool, you must specify either the NetmaskLength or the CIDR.

  • If the DefaultNetmaskLength allocation rule is set on the pool, you can specify either the NetmaskLength or the CIDR and the DefaultNetmaskLength allocation rule will be ignored.

Possible values: Any available IPv4 or IPv6 CIDR.

', 'AllocateIpamPoolCidrRequest$ClientToken' => '

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'AllocateIpamPoolCidrRequest$Description' => '

A description for the allocation.

', 'AllowedPrincipal$Principal' => '

The Amazon Resource Name (ARN) of the principal.

', 'AllowedPrincipal$ServicePermissionId' => '

The ID of the service permission.

', 'AllowedPrincipal$ServiceId' => '

The ID of the service.

', 'AlternatePathHint$ComponentId' => '

The ID of the component.

', 'AlternatePathHint$ComponentArn' => '

The Amazon Resource Name (ARN) of the component.

', 'AnalysisAclRule$Cidr' => '

The IPv4 address range, in CIDR notation.

', 'AnalysisAclRule$Protocol' => '

The protocol.

', 'AnalysisAclRule$RuleAction' => '

Indicates whether to allow or deny traffic that matches the rule.

', 'AnalysisComponent$Id' => '

The ID of the component.

', 'AnalysisComponent$Arn' => '

The Amazon Resource Name (ARN) of the component.

', 'AnalysisComponent$Name' => '

The name of the analysis component.

', 'AnalysisLoadBalancerTarget$AvailabilityZone' => '

The Availability Zone.

', 'AnalysisPacketHeader$Protocol' => '

The protocol.

', 'AnalysisRouteTableRoute$DestinationCidr' => '

The destination IPv4 address, in CIDR notation.

', 'AnalysisRouteTableRoute$DestinationPrefixListId' => '

The prefix of the Amazon Web Service.

', 'AnalysisRouteTableRoute$EgressOnlyInternetGatewayId' => '

The ID of an egress-only internet gateway.

', 'AnalysisRouteTableRoute$GatewayId' => '

The ID of the gateway, such as an internet gateway or virtual private gateway.

', 'AnalysisRouteTableRoute$InstanceId' => '

The ID of the instance, such as a NAT instance.

', 'AnalysisRouteTableRoute$NatGatewayId' => '

The ID of a NAT gateway.

', 'AnalysisRouteTableRoute$NetworkInterfaceId' => '

The ID of a network interface.

', 'AnalysisRouteTableRoute$Origin' => '

Describes how the route was created. The following are the possible values:

  • CreateRouteTable - The route was automatically created when the route table was created.

  • CreateRoute - The route was manually added to the route table.

  • EnableVgwRoutePropagation - The route was propagated by route propagation.

', 'AnalysisRouteTableRoute$TransitGatewayId' => '

The ID of a transit gateway.

', 'AnalysisRouteTableRoute$VpcPeeringConnectionId' => '

The ID of a VPC peering connection.

', 'AnalysisRouteTableRoute$State' => '

The state. The following are the possible values:

  • active

  • blackhole

', 'AnalysisRouteTableRoute$CarrierGatewayId' => '

The ID of a carrier gateway.

', 'AnalysisRouteTableRoute$LocalGatewayId' => '

The ID of a local gateway.

', 'AnalysisSecurityGroupRule$Cidr' => '

The IPv4 address range, in CIDR notation.

', 'AnalysisSecurityGroupRule$Direction' => '

The direction. The following are the possible values:

  • egress

  • ingress

', 'AnalysisSecurityGroupRule$SecurityGroupId' => '

The security group ID.

', 'AnalysisSecurityGroupRule$PrefixListId' => '

The prefix list ID.

', 'AnalysisSecurityGroupRule$Protocol' => '

The protocol name.

', 'AsnAssociation$Asn' => '

The association\'s ASN.

', 'AsnAssociation$Cidr' => '

The association\'s CIDR.

', 'AsnAssociation$StatusMessage' => '

The association\'s status message.

', 'AsnAuthorizationContext$Message' => '

The authorization context\'s message.

', 'AsnAuthorizationContext$Signature' => '

The authorization context\'s signature.

', 'AssignIpv6AddressesResult$NetworkInterfaceId' => '

The ID of the network interface.

', 'AssignPrivateIpAddressesResult$NetworkInterfaceId' => '

The ID of the network interface.

', 'AssignedPrivateIpAddress$PrivateIpAddress' => '

The private IP address assigned to the network interface.

', 'AssociateAddressRequest$PrivateIpAddress' => '

The primary or secondary private IP address to associate with the Elastic IP address. If no private IP address is specified, the Elastic IP address is associated with the primary private IP address.

', 'AssociateAddressResult$AssociationId' => '

The ID that represents the association of the Elastic IP address with an instance.

', 'AssociateClientVpnTargetNetworkRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'AssociateClientVpnTargetNetworkResult$AssociationId' => '

The unique ID of the target network association.

', 'AssociateEnclaveCertificateIamRoleResult$CertificateS3BucketName' => '

The name of the Amazon S3 bucket to which the certificate was uploaded.

', 'AssociateEnclaveCertificateIamRoleResult$CertificateS3ObjectKey' => '

The Amazon S3 object key where the certificate, certificate chain, and encrypted private key bundle are stored. The object key is formatted as follows: role_arn/certificate_arn.

', 'AssociateEnclaveCertificateIamRoleResult$EncryptionKmsKeyId' => '

The ID of the KMS key used to encrypt the private key of the certificate.

', 'AssociateIpamByoasnRequest$Asn' => '

A public 2-byte or 4-byte ASN.

', 'AssociateIpamByoasnRequest$Cidr' => '

The BYOIP CIDR you want to associate with an ASN.

', 'AssociateIpamResourceDiscoveryRequest$ClientToken' => '

A client token.

', 'AssociateRouteTableResult$AssociationId' => '

The route table association ID. This ID is required for disassociating the route table.

', 'AssociateSubnetCidrBlockRequest$Ipv6CidrBlock' => '

The IPv6 CIDR block for your subnet.

', 'AssociateSubnetCidrBlockResult$SubnetId' => '

The ID of the subnet.

', 'AssociateTrunkInterfaceRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.

', 'AssociateTrunkInterfaceResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.

', 'AssociateVpcCidrBlockRequest$CidrBlock' => '

An IPv4 CIDR block to associate with the VPC.

', 'AssociateVpcCidrBlockRequest$Ipv6CidrBlockNetworkBorderGroup' => '

The name of the location from which we advertise the IPV6 CIDR block. Use this parameter to limit the CIDR block to this location.

You must set AmazonProvidedIpv6CidrBlock to true to use this parameter.

You can have one IPv6 CIDR block association per network border group.

', 'AssociateVpcCidrBlockRequest$Ipv6CidrBlock' => '

An IPv6 CIDR block from the IPv6 address pool. You must also specify Ipv6Pool in the request.

To let Amazon choose the IPv6 CIDR block for you, omit this parameter.

', 'AssociateVpcCidrBlockResult$VpcId' => '

The ID of the VPC.

', 'AssociatedRole$CertificateS3BucketName' => '

The name of the Amazon S3 bucket in which the Amazon S3 object is stored.

', 'AssociatedRole$CertificateS3ObjectKey' => '

The key of the Amazon S3 object ey where the certificate, certificate chain, and encrypted private key bundle is stored. The object key is formated as follows: role_arn/certificate_arn.

', 'AssociatedRole$EncryptionKmsKeyId' => '

The ID of the KMS customer master key (CMK) used to encrypt the private key.

', 'AssociatedTargetNetwork$NetworkId' => '

The ID of the subnet.

', 'AssociationStatus$Message' => '

A message about the status of the target network association, if applicable.

', 'AthenaIntegration$IntegrationResultS3DestinationArn' => '

The location in Amazon S3 to store the generated CloudFormation template.

', 'AttachNetworkInterfaceResult$AttachmentId' => '

The ID of the network interface attachment.

', 'AttachVerifiedAccessTrustProviderRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'AttachVolumeRequest$Device' => '

The device name (for example, /dev/sdh or xvdh).

', 'AttributeValue$Value' => '

The attribute value. The value is case-sensitive.

', 'AuthorizationRule$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint with which the authorization rule is associated.

', 'AuthorizationRule$Description' => '

A brief description of the authorization rule.

', 'AuthorizationRule$GroupId' => '

The ID of the Active Directory group to which the authorization rule grants access.

', 'AuthorizationRule$DestinationCidr' => '

The IPv4 address range, in CIDR notation, of the network to which the authorization rule applies.

', 'AuthorizeClientVpnIngressRequest$TargetNetworkCidr' => '

The IPv4 address range, in CIDR notation, of the network for which access is being authorized.

', 'AuthorizeClientVpnIngressRequest$AccessGroupId' => '

The ID of the group to grant access to, for example, the Active Directory group or identity provider (IdP) group. Required if AuthorizeAllGroups is false or not specified.

', 'AuthorizeClientVpnIngressRequest$Description' => '

A brief description of the authorization rule.

', 'AuthorizeClientVpnIngressRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'AuthorizeSecurityGroupEgressRequest$CidrIp' => '

Not supported. Use a set of IP permissions to specify the CIDR.

', 'AuthorizeSecurityGroupEgressRequest$IpProtocol' => '

Not supported. Use a set of IP permissions to specify the protocol name or number.

', 'AuthorizeSecurityGroupEgressRequest$SourceSecurityGroupName' => '

Not supported. Use a set of IP permissions to specify a destination security group.

', 'AuthorizeSecurityGroupEgressRequest$SourceSecurityGroupOwnerId' => '

Not supported. Use a set of IP permissions to specify a destination security group.

', 'AuthorizeSecurityGroupIngressRequest$CidrIp' => '

The IPv4 address range, in CIDR format. You can\'t specify this parameter when specifying a source security group. To specify an IPv6 address range, use a set of IP permissions.

Alternatively, use a set of IP permissions to specify multiple rules and a description for the rule.

', 'AuthorizeSecurityGroupIngressRequest$IpProtocol' => '

The IP protocol name (tcp, udp, icmp) or number (see Protocol Numbers). To specify icmpv6, use a set of IP permissions.

Use -1 to specify all protocols. If you specify -1 or a protocol other than tcp, udp, or icmp, traffic on all ports is allowed, regardless of any ports you specify.

Alternatively, use a set of IP permissions to specify multiple rules and a description for the rule.

', 'AuthorizeSecurityGroupIngressRequest$SourceSecurityGroupName' => '

[Default VPC] The name of the source security group. You can\'t specify this parameter in combination with the following parameters: the CIDR IP address range, the start of the port range, the IP protocol, and the end of the port range. Creates rules that grant full ICMP, UDP, and TCP access. To create a rule with a specific IP protocol and port range, use a set of IP permissions instead. The source security group must be in the same VPC.

', 'AuthorizeSecurityGroupIngressRequest$SourceSecurityGroupOwnerId' => '

[Nondefault VPC] The Amazon Web Services account ID for the source security group, if the source security group is in a different account. You can\'t specify this parameter in combination with the following parameters: the CIDR IP address range, the IP protocol, the start of the port range, and the end of the port range. Creates rules that grant full ICMP, UDP, and TCP access. To create a rule with a specific IP protocol and port range, use a set of IP permissions instead.

', 'AvailabilityZone$RegionName' => '

The name of the Region.

', 'AvailabilityZone$ZoneName' => '

The name of the Availability Zone, Local Zone, or Wavelength Zone.

', 'AvailabilityZone$ZoneId' => '

The ID of the Availability Zone, Local Zone, or Wavelength Zone.

', 'AvailabilityZone$GroupName' => '

For Availability Zones, this parameter has the same value as the Region name.

For Local Zones, the name of the associated group, for example us-west-2-lax-1.

For Wavelength Zones, the name of the associated group, for example us-east-1-wl1-bos-wlz-1.

', 'AvailabilityZone$NetworkBorderGroup' => '

The name of the network border group.

', 'AvailabilityZone$ZoneType' => '

The type of zone. The valid values are availability-zone, local-zone, and wavelength-zone.

', 'AvailabilityZone$ParentZoneName' => '

The name of the zone that handles some of the Local Zone or Wavelength Zone control plane operations, such as API calls.

', 'AvailabilityZone$ParentZoneId' => '

The ID of the zone that handles some of the Local Zone or Wavelength Zone control plane operations, such as API calls.

', 'AvailabilityZoneMessage$Message' => '

The message about the Availability Zone, Local Zone, or Wavelength Zone.

', 'AvailabilityZoneStringList$member' => NULL, 'BillingProductList$member' => NULL, 'BlockDeviceMapping$DeviceName' => '

The device name (for example, /dev/sdh or xvdh).

', 'BlockDeviceMapping$VirtualName' => '

The virtual device name (ephemeralN). Instance store volumes are numbered starting from 0. An instance type with 2 available instance store volumes can specify mappings for ephemeral0 and ephemeral1. The number of available instance store volumes depends on the instance type. After you connect to the instance, you must mount the volume.

NVMe instance store volumes are automatically enumerated and assigned a device name. Including them in your block device mapping has no effect.

Constraints: For M3 instances, you must specify instance store volumes in the block device mapping for the instance. When you launch an M3 instance, we ignore any instance store volumes specified in the block device mapping for the AMI.

', 'BlockDeviceMapping$NoDevice' => '

To omit the device from the block device mapping, specify an empty string. When this property is specified, the device is removed from the block device mapping regardless of the assigned value.

', 'BundleTask$BundleId' => '

The ID of the bundle task.

', 'BundleTask$InstanceId' => '

The ID of the instance associated with this bundle task.

', 'BundleTask$Progress' => '

The level of task completion, as a percent (for example, 20%).

', 'BundleTaskError$Code' => '

The error code.

', 'BundleTaskError$Message' => '

The error message.

', 'Byoasn$Asn' => '

A public 2-byte or 4-byte ASN.

', 'Byoasn$StatusMessage' => '

The status message.

', 'ByoipCidr$Cidr' => '

The address range, in CIDR notation.

', 'ByoipCidr$Description' => '

The description of the address range.

', 'ByoipCidr$StatusMessage' => '

Upon success, contains the ID of the address pool. Otherwise, contains an error message.

', 'ByoipCidr$NetworkBorderGroup' => '

If you have Local Zones enabled, you can choose a network border group for Local Zones when you provision and advertise a BYOIPv4 CIDR. Choose the network border group carefully as the EIP and the Amazon Web Services resource it is associated with must reside in the same network border group.

You can provision BYOIP address ranges to and advertise them in the following Local Zone network border groups:

  • us-east-1-dfw-2

  • us-west-2-lax-1

  • us-west-2-phx-2

You cannot provision or advertise BYOIPv6 address ranges in Local Zones at this time.

', 'CancelConversionRequest$ReasonMessage' => '

The reason for canceling the conversion task.

', 'CancelImportTaskRequest$CancelReason' => '

The reason for canceling the task.

', 'CancelImportTaskResult$ImportTaskId' => '

The ID of the task being canceled.

', 'CancelImportTaskResult$PreviousState' => '

The current state of the task being canceled.

', 'CancelImportTaskResult$State' => '

The current state of the task being canceled.

', 'CancelSpotFleetRequestsError$Message' => '

The description for the error code.

', 'CancelSpotFleetRequestsErrorItem$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'CancelSpotFleetRequestsSuccessItem$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'CancelledSpotInstanceRequest$SpotInstanceRequestId' => '

The ID of the Spot Instance request.

', 'CapacityBlockOffering$InstanceType' => '

The instance type of the Capacity Block offering.

', 'CapacityBlockOffering$AvailabilityZone' => '

The Availability Zone of the Capacity Block offering.

', 'CapacityBlockOffering$UpfrontFee' => '

The total price to be paid up front.

', 'CapacityBlockOffering$CurrencyCode' => '

The currency of the payment for the Capacity Block.

', 'CapacityReservation$CapacityReservationId' => '

The ID of the Capacity Reservation.

', 'CapacityReservation$OwnerId' => '

The ID of the Amazon Web Services account that owns the Capacity Reservation.

', 'CapacityReservation$CapacityReservationArn' => '

The Amazon Resource Name (ARN) of the Capacity Reservation.

', 'CapacityReservation$AvailabilityZoneId' => '

The Availability Zone ID of the Capacity Reservation.

', 'CapacityReservation$InstanceType' => '

The type of instance for which the Capacity Reservation reserves capacity.

', 'CapacityReservation$AvailabilityZone' => '

The Availability Zone in which the capacity is reserved.

', 'CapacityReservation$CapacityReservationFleetId' => '

The ID of the Capacity Reservation Fleet to which the Capacity Reservation belongs. Only valid for Capacity Reservations that were created by a Capacity Reservation Fleet.

', 'CapacityReservationFleet$CapacityReservationFleetArn' => '

The ARN of the Capacity Reservation Fleet.

', 'CapacityReservationFleet$AllocationStrategy' => '

The strategy used by the Capacity Reservation Fleet to determine which of the specified instance types to use. For more information, see For more information, see Allocation strategy in the Amazon EC2 User Guide.

', 'CapacityReservationGroup$GroupArn' => '

The ARN of the resource group.

', 'CapacityReservationGroup$OwnerId' => '

The ID of the Amazon Web Services account that owns the resource group.

', 'CapacityReservationTarget$CapacityReservationResourceGroupArn' => '

The ARN of the Capacity Reservation resource group in which to run the instance.

', 'CapacityReservationTargetResponse$CapacityReservationId' => '

The ID of the targeted Capacity Reservation.

', 'CapacityReservationTargetResponse$CapacityReservationResourceGroupArn' => '

The ARN of the targeted Capacity Reservation group.

', 'CarrierGateway$OwnerId' => '

The Amazon Web Services account ID of the owner of the carrier gateway.

', 'CertificateAuthentication$ClientRootCertificateChain' => '

The ARN of the client certificate.

', 'CertificateAuthenticationRequest$ClientRootCertificateChainArn' => '

The ARN of the client certificate. The certificate must be signed by a certificate authority (CA) and it must be provisioned in Certificate Manager (ACM).

', 'CidrAuthorizationContext$Message' => '

The plain-text authorization message for the prefix and account.

', 'CidrAuthorizationContext$Signature' => '

The signed authorization message for the prefix and account.

', 'CidrBlock$CidrBlock' => '

The IPv4 CIDR block.

', 'ClassicLinkDnsSupport$VpcId' => '

The ID of the VPC.

', 'ClassicLinkInstance$InstanceId' => '

The ID of the instance.

', 'ClassicLinkInstance$VpcId' => '

The ID of the VPC.

', 'ClassicLoadBalancer$Name' => '

The name of the load balancer.

', 'ClientCertificateRevocationListStatus$Message' => '

A message about the status of the client certificate revocation list, if applicable.

', 'ClientConnectOptions$LambdaFunctionArn' => '

The Amazon Resource Name (ARN) of the Lambda function used for connection authorization.

', 'ClientConnectResponseOptions$LambdaFunctionArn' => '

The Amazon Resource Name (ARN) of the Lambda function used for connection authorization.

', 'ClientData$Comment' => '

A user-defined comment about the disk upload.

', 'ClientLoginBannerOptions$BannerText' => '

Customizable text that will be displayed in a banner on Amazon Web Services provided clients when a VPN session is established. UTF-8 encoded characters only. Maximum of 1400 characters.

', 'ClientLoginBannerResponseOptions$BannerText' => '

Customizable text that will be displayed in a banner on Amazon Web Services provided clients when a VPN session is established. UTF-8 encoded characters only. Maximum of 1400 characters.

', 'ClientVpnAuthorizationRuleStatus$Message' => '

A message about the status of the authorization rule, if applicable.

', 'ClientVpnConnection$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint to which the client is connected.

', 'ClientVpnConnection$Timestamp' => '

The current date and time.

', 'ClientVpnConnection$ConnectionId' => '

The ID of the client connection.

', 'ClientVpnConnection$Username' => '

The username of the client who established the client connection. This information is only provided if Active Directory client authentication is used.

', 'ClientVpnConnection$ConnectionEstablishedTime' => '

The date and time the client connection was established.

', 'ClientVpnConnection$IngressBytes' => '

The number of bytes sent by the client.

', 'ClientVpnConnection$EgressBytes' => '

The number of bytes received by the client.

', 'ClientVpnConnection$IngressPackets' => '

The number of packets sent by the client.

', 'ClientVpnConnection$EgressPackets' => '

The number of packets received by the client.

', 'ClientVpnConnection$ClientIp' => '

The IP address of the client.

', 'ClientVpnConnection$CommonName' => '

The common name associated with the client. This is either the name of the client certificate, or the Active Directory user name.

', 'ClientVpnConnection$ConnectionEndTime' => '

The date and time the client connection was terminated.

', 'ClientVpnConnectionStatus$Message' => '

A message about the status of the client connection, if applicable.

', 'ClientVpnEndpoint$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'ClientVpnEndpoint$Description' => '

A brief description of the endpoint.

', 'ClientVpnEndpoint$CreationTime' => '

The date and time the Client VPN endpoint was created.

', 'ClientVpnEndpoint$DeletionTime' => '

The date and time the Client VPN endpoint was deleted, if applicable.

', 'ClientVpnEndpoint$DnsName' => '

The DNS name to be used by clients when connecting to the Client VPN endpoint.

', 'ClientVpnEndpoint$ClientCidrBlock' => '

The IPv4 address range, in CIDR notation, from which client IP addresses are assigned.

', 'ClientVpnEndpoint$ServerCertificateArn' => '

The ARN of the server certificate.

', 'ClientVpnEndpoint$SelfServicePortalUrl' => '

The URL of the self-service portal.

', 'ClientVpnEndpointAttributeStatus$Message' => '

The status message.

', 'ClientVpnEndpointStatus$Message' => '

A message about the status of the Client VPN endpoint.

', 'ClientVpnRoute$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint with which the route is associated.

', 'ClientVpnRoute$DestinationCidr' => '

The IPv4 address range, in CIDR notation, of the route destination.

', 'ClientVpnRoute$TargetSubnet' => '

The ID of the subnet through which traffic is routed.

', 'ClientVpnRoute$Type' => '

The route type.

', 'ClientVpnRoute$Origin' => '

Indicates how the route was associated with the Client VPN endpoint. associate indicates that the route was automatically added when the target network was associated with the Client VPN endpoint. add-route indicates that the route was manually added using the CreateClientVpnRoute action.

', 'ClientVpnRoute$Description' => '

A brief description of the route.

', 'ClientVpnRouteStatus$Message' => '

A message about the status of the Client VPN endpoint route, if applicable.

', 'CloudWatchLogOptions$LogGroupArn' => '

The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.

', 'CloudWatchLogOptions$LogOutputFormat' => '

Configured log format. Default format is json.

Valid values: json | text

', 'CloudWatchLogOptionsSpecification$LogOutputFormat' => '

Set log format. Default format is json.

Valid values: json | text

', 'CoipAddressUsage$AllocationId' => '

The allocation ID of the address.

', 'CoipAddressUsage$AwsAccountId' => '

The Amazon Web Services account ID.

', 'CoipAddressUsage$AwsService' => '

The Amazon Web Services service.

', 'CoipAddressUsage$CoIp' => '

The customer-owned IP address.

', 'CoipCidr$Cidr' => '

An address range in a customer-owned IP address space.

', 'CoipCidr$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'ConfirmProductInstanceRequest$ProductCode' => '

The product code. This must be a product code that you own.

', 'ConfirmProductInstanceResult$OwnerId' => '

The Amazon Web Services account ID of the instance owner. This is only present if the product code is attached to the instance.

', 'ConnectionLogOptions$CloudwatchLogGroup' => '

The name of the CloudWatch Logs log group. Required if connection logging is enabled.

', 'ConnectionLogOptions$CloudwatchLogStream' => '

The name of the CloudWatch Logs log stream to which the connection data is published.

', 'ConnectionLogResponseOptions$CloudwatchLogGroup' => '

The name of the Amazon CloudWatch Logs log group to which connection logging data is published.

', 'ConnectionLogResponseOptions$CloudwatchLogStream' => '

The name of the Amazon CloudWatch Logs log stream to which connection logging data is published.

', 'ConnectionNotification$ConnectionNotificationId' => '

The ID of the notification.

', 'ConnectionNotification$ServiceId' => '

The ID of the endpoint service.

', 'ConnectionNotification$VpcEndpointId' => '

The ID of the VPC endpoint.

', 'ConnectionNotification$ConnectionNotificationArn' => '

The ARN of the SNS topic for the notification.

', 'ConversionTask$ConversionTaskId' => '

The ID of the conversion task.

', 'ConversionTask$ExpirationTime' => '

The time when the task expires. If the upload isn\'t complete before the expiration time, we automatically cancel the task.

', 'ConversionTask$StatusMessage' => '

The status message related to the conversion task.

', 'CopyFpgaImageRequest$SourceFpgaImageId' => '

The ID of the source AFI.

', 'CopyFpgaImageRequest$Description' => '

The description for the new AFI.

', 'CopyFpgaImageRequest$Name' => '

The name for the new AFI. The default is the name of the source AFI.

', 'CopyFpgaImageRequest$SourceRegion' => '

The Region that contains the source AFI.

', 'CopyFpgaImageRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

', 'CopyFpgaImageResult$FpgaImageId' => '

The ID of the new AFI.

', 'CopyImageRequest$ClientToken' => '

Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, see Ensuring idempotency in the Amazon EC2 API Reference.

', 'CopyImageRequest$Description' => '

A description for the new AMI in the destination Region.

', 'CopyImageRequest$Name' => '

The name of the new AMI in the destination Region.

', 'CopyImageRequest$SourceImageId' => '

The ID of the AMI to copy.

', 'CopyImageRequest$SourceRegion' => '

The name of the Region that contains the AMI to copy.

', 'CopyImageRequest$DestinationOutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost to which to copy the AMI. Only specify this parameter when copying an AMI from an Amazon Web Services Region to an Outpost. The AMI must be in the Region of the destination Outpost. You cannot copy an AMI from an Outpost to a Region, from one Outpost to another, or within the same Outpost.

For more information, see Copy AMIs from an Amazon Web Services Region to an Outpost in the Amazon EC2 User Guide.

', 'CopyImageResult$ImageId' => '

The ID of the new AMI.

', 'CopySnapshotRequest$Description' => '

A description for the EBS snapshot.

', 'CopySnapshotRequest$DestinationOutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost to which to copy the snapshot. Only specify this parameter when copying a snapshot from an Amazon Web Services Region to an Outpost. The snapshot must be in the Region for the destination Outpost. You cannot copy a snapshot from an Outpost to a Region, from one Outpost to another, or within the same Outpost.

For more information, see Copy snapshots from an Amazon Web Services Region to an Outpost in the Amazon Elastic Compute Cloud User Guide.

', 'CopySnapshotRequest$DestinationRegion' => '

The destination Region to use in the PresignedUrl parameter of a snapshot copy operation. This parameter is only valid for specifying the destination Region in a PresignedUrl parameter, where it is required.

The snapshot copy is sent to the regional endpoint that you sent the HTTP request to (for example, ec2.us-east-1.amazonaws.com). With the CLI, this is specified using the --region parameter or the default Region in your Amazon Web Services configuration file.

', 'CopySnapshotRequest$SourceRegion' => '

The ID of the Region that contains the snapshot to be copied.

', 'CopySnapshotRequest$SourceSnapshotId' => '

The ID of the EBS snapshot to copy.

', 'CopySnapshotResult$SnapshotId' => '

The ID of the new snapshot.

', 'CreateCapacityReservationFleetRequest$AllocationStrategy' => '

The strategy used by the Capacity Reservation Fleet to determine which of the specified instance types to use. Currently, only the prioritized allocation strategy is supported. For more information, see Allocation strategy in the Amazon EC2 User Guide.

Valid values: prioritized

', 'CreateCapacityReservationFleetRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensure Idempotency.

', 'CreateCapacityReservationFleetResult$AllocationStrategy' => '

The allocation strategy used by the Capacity Reservation Fleet.

', 'CreateCapacityReservationRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensure Idempotency.

', 'CreateCapacityReservationRequest$InstanceType' => '

The instance type for which to reserve capacity. For more information, see Instance types in the Amazon EC2 User Guide.

', 'CreateCarrierGatewayRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateClientVpnEndpointRequest$ClientCidrBlock' => '

The IPv4 address range, in CIDR notation, from which to assign client IP addresses. The address range cannot overlap with the local CIDR of the VPC in which the associated subnet is located, or the routes that you add manually. The address range cannot be changed after the Client VPN endpoint has been created. Client CIDR range must have a size of at least /22 and must not be greater than /12.

', 'CreateClientVpnEndpointRequest$ServerCertificateArn' => '

The ARN of the server certificate. For more information, see the Certificate Manager User Guide.

', 'CreateClientVpnEndpointRequest$Description' => '

A brief description of the Client VPN endpoint.

', 'CreateClientVpnEndpointRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateClientVpnEndpointResult$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'CreateClientVpnEndpointResult$DnsName' => '

The DNS name to be used by clients when establishing their VPN session.

', 'CreateClientVpnRouteRequest$DestinationCidrBlock' => '

The IPv4 address range, in CIDR notation, of the route destination. For example:

  • To add a route for Internet access, enter 0.0.0.0/0

  • To add a route for a peered VPC, enter the peered VPC\'s IPv4 CIDR range

  • To add a route for an on-premises network, enter the Amazon Web Services Site-to-Site VPN connection\'s IPv4 CIDR range

  • To add a route for the local network, enter the client CIDR range

', 'CreateClientVpnRouteRequest$Description' => '

A brief description of the route.

', 'CreateClientVpnRouteRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateCoipCidrRequest$Cidr' => '

A customer-owned IP address range to create.

', 'CreateCustomerGatewayRequest$PublicIp' => '

This member has been deprecated. The Internet-routable IP address for the customer gateway\'s outside interface. The address must be static.

', 'CreateCustomerGatewayRequest$CertificateArn' => '

The Amazon Resource Name (ARN) for the customer gateway certificate.

', 'CreateCustomerGatewayRequest$DeviceName' => '

A name for the customer gateway device.

Length Constraints: Up to 255 characters.

', 'CreateCustomerGatewayRequest$IpAddress' => '

IPv4 address for the customer gateway device\'s outside interface. The address must be static.

', 'CreateEgressOnlyInternetGatewayRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

', 'CreateEgressOnlyInternetGatewayResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

', 'CreateFleetError$ErrorCode' => '

The error code that indicates why the instance could not be launched. For more information about error codes, see Error codes.

', 'CreateFleetError$ErrorMessage' => '

The error message that describes why the instance could not be launched. For more information about error messages, see Error codes.

', 'CreateFleetRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

', 'CreateFleetRequest$Context' => '

Reserved.

', 'CreateFlowLogsRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateFlowLogsRequest$DeliverLogsPermissionArn' => '

The ARN of the IAM role that allows Amazon EC2 to publish flow logs to a CloudWatch Logs log group in your account.

This parameter is required if the destination type is cloud-watch-logs and unsupported otherwise.

', 'CreateFlowLogsRequest$DeliverCrossAccountRole' => '

The ARN of the IAM role that allows Amazon EC2 to publish flow logs across accounts.

', 'CreateFlowLogsRequest$LogGroupName' => '

The name of a new or existing CloudWatch Logs log group where Amazon EC2 publishes your flow logs.

This parameter is valid only if the destination type is cloud-watch-logs.

', 'CreateFlowLogsRequest$LogDestination' => '

The destination for the flow log data. The meaning of this parameter depends on the destination type.

  • If the destination type is cloud-watch-logs, specify the ARN of a CloudWatch Logs log group. For example:

    arn:aws:logs:region:account_id:log-group:my_group

    Alternatively, use the LogGroupName parameter.

  • If the destination type is s3, specify the ARN of an S3 bucket. For example:

    arn:aws:s3:::my_bucket/my_subfolder/

    The subfolder is optional. Note that you can\'t use AWSLogs as a subfolder name.

  • If the destination type is kinesis-data-firehose, specify the ARN of a Kinesis Data Firehose delivery stream. For example:

    arn:aws:firehose:region:account_id:deliverystream:my_stream

', 'CreateFlowLogsRequest$LogFormat' => '

The fields to include in the flow log record. List the fields in the order in which they should appear. If you omit this parameter, the flow log is created using the default format. If you specify this parameter, you must include at least one field. For more information about the available fields, see Flow log records in the Amazon VPC User Guide or Transit Gateway Flow Log records in the Amazon Web Services Transit Gateway Guide.

Specify the fields using the ${field-id} format, separated by spaces.

', 'CreateFlowLogsResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

', 'CreateFpgaImageRequest$Description' => '

A description for the AFI.

', 'CreateFpgaImageRequest$Name' => '

A name for the AFI.

', 'CreateFpgaImageRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'CreateFpgaImageResult$FpgaImageId' => '

The FPGA image identifier (AFI ID).

', 'CreateFpgaImageResult$FpgaImageGlobalId' => '

The global FPGA image identifier (AGFI ID).

', 'CreateImageRequest$Description' => '

A description for the new image.

', 'CreateImageRequest$Name' => '

A name for the new image.

Constraints: 3-128 alphanumeric characters, parentheses (()), square brackets ([]), spaces ( ), periods (.), slashes (/), dashes (-), single quotes (\'), at-signs (@), or underscores(_)

', 'CreateImageResult$ImageId' => '

The ID of the new AMI.

', 'CreateInstanceConnectEndpointRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

', 'CreateInstanceConnectEndpointResult$ClientToken' => '

Unique, case-sensitive idempotency token provided by the client in the the request.

', 'CreateInstanceEventWindowRequest$Name' => '

The name of the event window.

', 'CreateInstanceExportTaskRequest$Description' => '

A description for the conversion task or the resource being exported. The maximum length is 255 characters.

', 'CreateIpamPoolRequest$Locale' => '

In IPAM, the locale is the Amazon Web Services Region where you want to make an IPAM pool available for allocations. Only resources in the same Region as the locale of the pool can get IP address allocations from the pool. You can only allocate a CIDR for a VPC, for example, from an IPAM pool that shares a locale with the VPC’s Region. Note that once you choose a Locale for a pool, you cannot modify it. If you do not choose a locale, resources in Regions others than the IPAM\'s home region cannot use CIDRs from this pool.

Possible values: Any Amazon Web Services Region, such as us-east-1.

', 'CreateIpamPoolRequest$Description' => '

A description for the IPAM pool.

', 'CreateIpamPoolRequest$ClientToken' => '

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'CreateIpamRequest$Description' => '

A description for the IPAM.

', 'CreateIpamRequest$ClientToken' => '

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'CreateIpamResourceDiscoveryRequest$Description' => '

A description for the IPAM resource discovery.

', 'CreateIpamResourceDiscoveryRequest$ClientToken' => '

A client token for the IPAM resource discovery.

', 'CreateIpamScopeRequest$Description' => '

A description for the scope you\'re creating.

', 'CreateIpamScopeRequest$ClientToken' => '

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'CreateKeyPairRequest$KeyName' => '

A unique name for the key pair.

Constraints: Up to 255 ASCII characters

', 'CreateLaunchTemplateRequest$ClientToken' => '

Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

Constraint: Maximum 128 ASCII characters.

', 'CreateLaunchTemplateVersionRequest$ClientToken' => '

Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

Constraint: Maximum 128 ASCII characters.

', 'CreateLaunchTemplateVersionRequest$SourceVersion' => '

The version number of the launch template version on which to base the new version. The new version inherits the same launch parameters as the source version, except for parameters that you specify in LaunchTemplateData. Snapshots applied to the block device mapping are ignored when creating a new version unless they are explicitly included.

', 'CreateLocalGatewayRouteRequest$DestinationCidrBlock' => '

The CIDR range used for destination matches. Routing decisions are based on the most specific match.

', 'CreateManagedPrefixListRequest$PrefixListName' => '

A name for the prefix list.

Constraints: Up to 255 characters in length. The name cannot start with com.amazonaws.

', 'CreateManagedPrefixListRequest$AddressFamily' => '

The IP address type.

Valid Values: IPv4 | IPv6

', 'CreateManagedPrefixListRequest$ClientToken' => '

Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

Constraints: Up to 255 UTF-8 characters in length.

', 'CreateNatGatewayRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

Constraint: Maximum 64 ASCII characters.

', 'CreateNatGatewayRequest$PrivateIpAddress' => '

The private IPv4 address to assign to the NAT gateway. If you don\'t provide an address, a private IPv4 address will be automatically assigned.

', 'CreateNatGatewayResult$ClientToken' => '

Unique, case-sensitive identifier to ensure the idempotency of the request. Only returned if a client token was provided in the request.

', 'CreateNetworkAclEntryRequest$CidrBlock' => '

The IPv4 network range to allow or deny, in CIDR notation (for example 172.16.0.0/24). We modify the specified CIDR block to its canonical form; for example, if you specify 100.68.0.18/18, we modify it to 100.68.0.0/18.

', 'CreateNetworkAclEntryRequest$Ipv6CidrBlock' => '

The IPv6 network range to allow or deny, in CIDR notation (for example 2001:db8:1234:1a00::/64).

', 'CreateNetworkAclEntryRequest$Protocol' => '

The protocol number. A value of "-1" means all protocols. If you specify "-1" or a protocol number other than "6" (TCP), "17" (UDP), or "1" (ICMP), traffic on all ports is allowed, regardless of any ports or ICMP types or codes that you specify. If you specify protocol "58" (ICMPv6) and specify an IPv4 CIDR block, traffic for all ICMP types and codes allowed, regardless of any that you specify. If you specify protocol "58" (ICMPv6) and specify an IPv6 CIDR block, you must specify an ICMP type and code.

', 'CreateNetworkAclRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

', 'CreateNetworkAclResult$ClientToken' => '

Unique, case-sensitive identifier to ensure the idempotency of the request. Only returned if a client token was provided in the request.

', 'CreateNetworkInsightsAccessScopeRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateNetworkInsightsPathRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateNetworkInterfacePermissionRequest$AwsAccountId' => '

The Amazon Web Services account ID.

', 'CreateNetworkInterfacePermissionRequest$AwsService' => '

The Amazon Web Service. Currently not supported.

', 'CreateNetworkInterfaceRequest$Description' => '

A description for the network interface.

', 'CreateNetworkInterfaceRequest$PrivateIpAddress' => '

The primary private IPv4 address of the network interface. If you don\'t specify an IPv4 address, Amazon EC2 selects one for you from the subnet\'s IPv4 CIDR range. If you specify an IP address, you cannot indicate any IP addresses specified in privateIpAddresses as primary (only one IP address can be designated as primary).

', 'CreateNetworkInterfaceRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'CreateNetworkInterfaceResult$ClientToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'CreatePlacementGroupRequest$GroupName' => '

A name for the placement group. Must be unique within the scope of your account for the Region.

Constraints: Up to 255 ASCII characters

', 'CreateReplaceRootVolumeTaskRequest$ClientToken' => '

Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token, a randomly generated token is used for the request to ensure idempotency. For more information, see Ensuring idempotency.

', 'CreateReservedInstancesListingRequest$ClientToken' => '

Unique, case-sensitive identifier you provide to ensure idempotency of your listings. This helps avoid duplicate listings. For more information, see Ensuring Idempotency.

', 'CreateRestoreImageTaskRequest$Bucket' => '

The name of the Amazon S3 bucket that contains the stored AMI object.

', 'CreateRestoreImageTaskRequest$ObjectKey' => '

The name of the stored AMI object in the bucket.

', 'CreateRestoreImageTaskRequest$Name' => '

The name for the restored AMI. The name must be unique for AMIs in the Region for this account. If you do not provide a name, the new AMI gets the same name as the original AMI.

', 'CreateRestoreImageTaskResult$ImageId' => '

The AMI ID.

', 'CreateRouteRequest$DestinationCidrBlock' => '

The IPv4 CIDR address block used for the destination match. Routing decisions are based on the most specific match. We modify the specified CIDR block to its canonical form; for example, if you specify 100.68.0.18/18, we modify it to 100.68.0.0/18.

', 'CreateRouteRequest$DestinationIpv6CidrBlock' => '

The IPv6 CIDR block used for the destination match. Routing decisions are based on the most specific match.

', 'CreateRouteTableRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

', 'CreateRouteTableResult$ClientToken' => '

Unique, case-sensitive identifier to ensure the idempotency of the request. Only returned if a client token was provided in the request.

', 'CreateSecurityGroupRequest$Description' => '

A description for the security group.

Constraints: Up to 255 characters in length

Valid characters: a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$*

', 'CreateSecurityGroupRequest$GroupName' => '

The name of the security group.

Constraints: Up to 255 characters in length. Cannot start with sg-.

Valid characters: a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$*

', 'CreateSecurityGroupResult$GroupId' => '

The ID of the security group.

', 'CreateSnapshotRequest$Description' => '

A description for the snapshot.

', 'CreateSnapshotRequest$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost on which to create a local snapshot.

  • To create a snapshot of a volume in a Region, omit this parameter. The snapshot is created in the same Region as the volume.

  • To create a snapshot of a volume on an Outpost and store the snapshot in the Region, omit this parameter. The snapshot is created in the Region for the Outpost.

  • To create a snapshot of a volume on an Outpost and store the snapshot on an Outpost, specify the ARN of the destination Outpost. The snapshot must be created on the same Outpost as the volume.

For more information, see Create local snapshots from volumes on an Outpost in the Amazon Elastic Compute Cloud User Guide.

', 'CreateSnapshotsRequest$Description' => '

A description propagated to every snapshot specified by the instance.

', 'CreateSnapshotsRequest$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost on which to create the local snapshots.

  • To create snapshots from an instance in a Region, omit this parameter. The snapshots are created in the same Region as the instance.

  • To create snapshots from an instance on an Outpost and store the snapshots in the Region, omit this parameter. The snapshots are created in the Region for the Outpost.

  • To create snapshots from an instance on an Outpost and store the snapshots on an Outpost, specify the ARN of the destination Outpost. The snapshots must be created on the same Outpost as the instance.

For more information, see Create multi-volume local snapshots from instances on an Outpost in the Amazon Elastic Compute Cloud User Guide.

', 'CreateSpotDatafeedSubscriptionRequest$Bucket' => '

The name of the Amazon S3 bucket in which to store the Spot Instance data feed. For more information about bucket names, see Rules for bucket naming in the Amazon S3 Developer Guide.

', 'CreateSpotDatafeedSubscriptionRequest$Prefix' => '

The prefix for the data feed file names.

', 'CreateStoreImageTaskRequest$Bucket' => '

The name of the Amazon S3 bucket in which the AMI object will be stored. The bucket must be in the Region in which the request is being made. The AMI object appears in the bucket only after the upload task has completed.

', 'CreateStoreImageTaskResult$ObjectKey' => '

The name of the stored AMI object in the S3 bucket.

', 'CreateSubnetCidrReservationRequest$Cidr' => '

The IPv4 or IPV6 CIDR range to reserve.

', 'CreateSubnetCidrReservationRequest$Description' => '

The description to assign to the subnet CIDR reservation.

', 'CreateSubnetRequest$AvailabilityZone' => '

The Availability Zone or Local Zone for the subnet.

Default: Amazon Web Services selects one for you. If you create more than one subnet in your VPC, we do not necessarily select a different zone for each subnet.

To create a subnet in a Local Zone, set this value to the Local Zone ID, for example us-west-2-lax-1a. For information about the Regions that support Local Zones, see Local Zones locations.

To create a subnet in an Outpost, set this value to the Availability Zone for the Outpost and specify the Outpost ARN.

', 'CreateSubnetRequest$AvailabilityZoneId' => '

The AZ ID or the Local Zone ID of the subnet.

', 'CreateSubnetRequest$CidrBlock' => '

The IPv4 network range for the subnet, in CIDR notation. For example, 10.0.0.0/24. We modify the specified CIDR block to its canonical form; for example, if you specify 100.68.0.18/18, we modify it to 100.68.0.0/18.

This parameter is not supported for an IPv6 only subnet.

', 'CreateSubnetRequest$Ipv6CidrBlock' => '

The IPv6 network range for the subnet, in CIDR notation. This parameter is required for an IPv6 only subnet.

', 'CreateSubnetRequest$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost. If you specify an Outpost ARN, you must also specify the Availability Zone of the Outpost subnet.

', 'CreateTrafficMirrorFilterRequest$Description' => '

The description of the Traffic Mirror filter.

', 'CreateTrafficMirrorFilterRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateTrafficMirrorFilterResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateTrafficMirrorFilterRuleRequest$DestinationCidrBlock' => '

The destination CIDR block to assign to the Traffic Mirror rule.

', 'CreateTrafficMirrorFilterRuleRequest$SourceCidrBlock' => '

The source CIDR block to assign to the Traffic Mirror rule.

', 'CreateTrafficMirrorFilterRuleRequest$Description' => '

The description of the Traffic Mirror rule.

', 'CreateTrafficMirrorFilterRuleRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateTrafficMirrorFilterRuleResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateTrafficMirrorSessionRequest$Description' => '

The description of the Traffic Mirror session.

', 'CreateTrafficMirrorSessionRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateTrafficMirrorSessionResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateTrafficMirrorTargetRequest$NetworkLoadBalancerArn' => '

The Amazon Resource Name (ARN) of the Network Load Balancer that is associated with the target.

', 'CreateTrafficMirrorTargetRequest$Description' => '

The description of the Traffic Mirror target.

', 'CreateTrafficMirrorTargetRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateTrafficMirrorTargetResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateTransitGatewayConnectPeerRequest$TransitGatewayAddress' => '

The peer IP address (GRE outer IP address) on the transit gateway side of the Connect peer, which must be specified from a transit gateway CIDR block. If not specified, Amazon automatically assigns the first available IP address from the transit gateway CIDR block.

', 'CreateTransitGatewayConnectPeerRequest$PeerAddress' => '

The peer IP address (GRE outer IP address) on the appliance side of the Connect peer.

', 'CreateTransitGatewayPeeringAttachmentRequest$PeerAccountId' => '

The ID of the Amazon Web Services account that owns the peer transit gateway.

', 'CreateTransitGatewayPeeringAttachmentRequest$PeerRegion' => '

The Region where the peer transit gateway is located.

', 'CreateTransitGatewayRequest$Description' => '

A description of the transit gateway.

', 'CreateTransitGatewayRouteRequest$DestinationCidrBlock' => '

The CIDR range used for destination matches. Routing decisions are based on the most specific match.

', 'CreateVerifiedAccessEndpointRequest$ApplicationDomain' => '

The DNS name for users to reach your application.

', 'CreateVerifiedAccessEndpointRequest$EndpointDomainPrefix' => '

A custom identifier that is prepended to the DNS name that is generated for the endpoint.

', 'CreateVerifiedAccessEndpointRequest$Description' => '

A description for the Verified Access endpoint.

', 'CreateVerifiedAccessEndpointRequest$PolicyDocument' => '

The Verified Access policy document.

', 'CreateVerifiedAccessEndpointRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'CreateVerifiedAccessGroupRequest$Description' => '

A description for the Verified Access group.

', 'CreateVerifiedAccessGroupRequest$PolicyDocument' => '

The Verified Access policy document.

', 'CreateVerifiedAccessGroupRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'CreateVerifiedAccessInstanceRequest$Description' => '

A description for the Verified Access instance.

', 'CreateVerifiedAccessInstanceRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'CreateVerifiedAccessTrustProviderDeviceOptions$TenantId' => '

The ID of the tenant application with the device-identity provider.

', 'CreateVerifiedAccessTrustProviderDeviceOptions$PublicSigningKeyUrl' => '

The URL Amazon Web Services Verified Access will use to verify the authenticity of the device tokens.

', 'CreateVerifiedAccessTrustProviderOidcOptions$Issuer' => '

The OIDC issuer.

', 'CreateVerifiedAccessTrustProviderOidcOptions$AuthorizationEndpoint' => '

The OIDC authorization endpoint.

', 'CreateVerifiedAccessTrustProviderOidcOptions$TokenEndpoint' => '

The OIDC token endpoint.

', 'CreateVerifiedAccessTrustProviderOidcOptions$UserInfoEndpoint' => '

The OIDC user info endpoint.

', 'CreateVerifiedAccessTrustProviderOidcOptions$ClientId' => '

The client identifier.

', 'CreateVerifiedAccessTrustProviderOidcOptions$Scope' => '

OpenID Connect (OIDC) scopes are used by an application during authentication to authorize access to a user\'s details. Each scope returns a specific set of user attributes.

', 'CreateVerifiedAccessTrustProviderRequest$PolicyReferenceName' => '

The identifier to be used when working with policy rules.

', 'CreateVerifiedAccessTrustProviderRequest$Description' => '

A description for the Verified Access trust provider.

', 'CreateVerifiedAccessTrustProviderRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'CreateVolumePermission$UserId' => '

The ID of the Amazon Web Services account to be added or removed.

', 'CreateVolumeRequest$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'CreateVolumeRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensure Idempotency.

', 'CreateVpcEndpointConnectionNotificationRequest$ConnectionNotificationArn' => '

The ARN of the SNS topic for the notifications.

', 'CreateVpcEndpointConnectionNotificationRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateVpcEndpointConnectionNotificationResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

', 'CreateVpcEndpointRequest$ServiceName' => '

The name of the endpoint service.

', 'CreateVpcEndpointRequest$PolicyDocument' => '

(Interface and gateway endpoints) A policy to attach to the endpoint that controls access to the service. The policy must be in valid JSON format. If this parameter is not specified, we attach a default policy that allows full access to the service.

', 'CreateVpcEndpointRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateVpcEndpointResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

', 'CreateVpcEndpointServiceConfigurationRequest$PrivateDnsName' => '

(Interface endpoint configuration) The private DNS name to assign to the VPC endpoint service.

', 'CreateVpcEndpointServiceConfigurationRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'CreateVpcEndpointServiceConfigurationResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

', 'CreateVpcPeeringConnectionRequest$PeerOwnerId' => '

The Amazon Web Services account ID of the owner of the accepter VPC.

Default: Your Amazon Web Services account ID

', 'CreateVpcPeeringConnectionRequest$PeerVpcId' => '

The ID of the VPC with which you are creating the VPC peering connection. You must specify this parameter in the request.

', 'CreateVpcPeeringConnectionRequest$PeerRegion' => '

The Region code for the accepter VPC, if the accepter VPC is located in a Region other than the Region in which you make the request.

Default: The Region in which you make the request.

', 'CreateVpcRequest$CidrBlock' => '

The IPv4 network range for the VPC, in CIDR notation. For example, 10.0.0.0/16. We modify the specified CIDR block to its canonical form; for example, if you specify 100.68.0.18/18, we modify it to 100.68.0.0/18.

', 'CreateVpcRequest$Ipv6CidrBlock' => '

The IPv6 CIDR block from the IPv6 address pool. You must also specify Ipv6Pool in the request.

To let Amazon choose the IPv6 CIDR block for you, omit this parameter.

', 'CreateVpcRequest$Ipv6CidrBlockNetworkBorderGroup' => '

The name of the location from which we advertise the IPV6 CIDR block. Use this parameter to limit the address to this location.

You must set AmazonProvidedIpv6CidrBlock to true to use this parameter.

', 'CreateVpnConnectionRequest$Type' => '

The type of VPN connection (ipsec.1).

', 'CreateVpnConnectionRouteRequest$DestinationCidrBlock' => '

The CIDR block associated with the local subnet of the customer network.

', 'CreateVpnGatewayRequest$AvailabilityZone' => '

The Availability Zone for the virtual private gateway.

', 'CreditSpecification$CpuCredits' => '

The credit option for CPU usage of a T instance.

Valid values: standard | unlimited

', 'CreditSpecificationRequest$CpuCredits' => '

The credit option for CPU usage of a T instance.

Valid values: standard | unlimited

', 'CustomerGateway$BgpAsn' => '

The customer gateway\'s Border Gateway Protocol (BGP) Autonomous System Number (ASN).

', 'CustomerGateway$CustomerGatewayId' => '

The ID of the customer gateway.

', 'CustomerGateway$IpAddress' => '

The IP address of the customer gateway device\'s outside interface.

', 'CustomerGateway$CertificateArn' => '

The Amazon Resource Name (ARN) for the customer gateway certificate.

', 'CustomerGateway$State' => '

The current state of the customer gateway (pending | available | deleting | deleted).

', 'CustomerGateway$Type' => '

The type of VPN connection the customer gateway supports (ipsec.1).

', 'CustomerGateway$DeviceName' => '

The name of customer gateway device.

', 'DataQuery$Id' => '

A user-defined ID associated with a data query that\'s returned in the dataResponse identifying the query. For example, if you set the Id to MyQuery01in the query, the dataResponse identifies the query as MyQuery01.

', 'DataQuery$Source' => '

The Region or Availability Zone that\'s the source for the data query. For example, us-east-1.

', 'DataQuery$Destination' => '

The Region or Availability Zone that\'s the target for the data query. For example, eu-north-1.

', 'DataResponse$Id' => '

The ID passed in the DataQuery.

', 'DataResponse$Source' => '

The Region or Availability Zone that\'s the source for the data query. For example, us-east-1.

', 'DataResponse$Destination' => '

The Region or Availability Zone that\'s the destination for the data query. For example, eu-west-1.

', 'DeleteClientVpnRouteRequest$DestinationCidrBlock' => '

The IPv4 address range, in CIDR notation, of the route to be deleted.

', 'DeleteCoipCidrRequest$Cidr' => '

A customer-owned IP address range that you want to delete.

', 'DeleteFleetError$Message' => '

The description for the error code.

', 'DeleteKeyPairResult$KeyPairId' => '

The ID of the key pair.

', 'DeleteLaunchTemplateVersionsResponseErrorItem$LaunchTemplateId' => '

The ID of the launch template.

', 'DeleteLaunchTemplateVersionsResponseErrorItem$LaunchTemplateName' => '

The name of the launch template.

', 'DeleteLaunchTemplateVersionsResponseSuccessItem$LaunchTemplateId' => '

The ID of the launch template.

', 'DeleteLaunchTemplateVersionsResponseSuccessItem$LaunchTemplateName' => '

The name of the launch template.

', 'DeleteLocalGatewayRouteRequest$DestinationCidrBlock' => '

The CIDR range for the route. This must match the CIDR for the route exactly.

', 'DeleteNatGatewayResult$NatGatewayId' => '

The ID of the NAT gateway.

', 'DeleteQueuedReservedInstancesError$Message' => '

The error message.

', 'DeleteRouteRequest$DestinationCidrBlock' => '

The IPv4 CIDR range for the route. The value you specify must match the CIDR for the route exactly.

', 'DeleteRouteRequest$DestinationIpv6CidrBlock' => '

The IPv6 CIDR range for the route. The value you specify must match the CIDR for the route exactly.

', 'DeleteTrafficMirrorFilterResult$TrafficMirrorFilterId' => '

The ID of the Traffic Mirror filter.

', 'DeleteTrafficMirrorFilterRuleResult$TrafficMirrorFilterRuleId' => '

The ID of the deleted Traffic Mirror rule.

', 'DeleteTrafficMirrorSessionResult$TrafficMirrorSessionId' => '

The ID of the deleted Traffic Mirror session.

', 'DeleteTrafficMirrorTargetResult$TrafficMirrorTargetId' => '

The ID of the deleted Traffic Mirror target.

', 'DeleteTransitGatewayRouteRequest$DestinationCidrBlock' => '

The CIDR range for the route. This must match the CIDR for the route exactly.

', 'DeleteVerifiedAccessEndpointRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'DeleteVerifiedAccessGroupRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'DeleteVerifiedAccessInstanceRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'DeleteVerifiedAccessTrustProviderRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'DeleteVpnConnectionRouteRequest$DestinationCidrBlock' => '

The CIDR block associated with the local subnet of the customer network.

', 'DeprovisionByoipCidrRequest$Cidr' => '

The address range, in CIDR notation. The prefix must be the same prefix that you specified when you provisioned the address range.

', 'DeprovisionIpamByoasnRequest$Asn' => '

An ASN.

', 'DeprovisionIpamPoolCidrRequest$Cidr' => '

The CIDR which you want to deprovision from the pool.

', 'DeprovisionPublicIpv4PoolCidrRequest$Cidr' => '

The CIDR you want to deprovision from the pool. Enter the CIDR you want to deprovision with a netmask of /32. You must rerun this command for each IP address in the CIDR range. If your CIDR is a /24, you will have to run this command to deprovision each of the 256 IP addresses in the /24 CIDR.

', 'DeprovisionedAddressSet$member' => NULL, 'DeregisterTransitGatewayMulticastGroupMembersRequest$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'DeregisterTransitGatewayMulticastGroupSourcesRequest$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'DescribeAddressTransfersRequest$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'DescribeAddressTransfersResult$NextToken' => '

Specify the pagination token from a previous request to retrieve the next page of results.

', 'DescribeAwsNetworkPerformanceMetricSubscriptionsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeAwsNetworkPerformanceMetricSubscriptionsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeByoipCidrsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeCapacityBlockOfferingsRequest$InstanceType' => '

The type of instance for which the Capacity Block offering reserves capacity.

', 'DescribeCapacityBlockOfferingsRequest$NextToken' => '

The token to use to retrieve the next page of results.

', 'DescribeCapacityBlockOfferingsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeCapacityReservationFleetsRequest$NextToken' => '

The token to use to retrieve the next page of results.

', 'DescribeCapacityReservationFleetsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeCapacityReservationsRequest$NextToken' => '

The token to use to retrieve the next page of results.

', 'DescribeCapacityReservationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeCarrierGatewaysRequest$NextToken' => '

The token for the next page of results.

', 'DescribeCarrierGatewaysResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeClassicLinkInstancesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeClassicLinkInstancesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeCoipPoolsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeCoipPoolsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeDhcpOptionsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeDhcpOptionsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeEgressOnlyInternetGatewaysRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeEgressOnlyInternetGatewaysResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeElasticGpusRequest$NextToken' => '

The token to request the next page of results.

', 'DescribeElasticGpusResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeFastLaunchImagesSuccessItem$OwnerId' => '

The owner ID for the Windows fast launch enabled AMI.

', 'DescribeFastLaunchImagesSuccessItem$StateTransitionReason' => '

The reason that Windows fast launch for the AMI changed to the current state.

', 'DescribeFastSnapshotRestoreSuccessItem$SnapshotId' => '

The ID of the snapshot.

', 'DescribeFastSnapshotRestoreSuccessItem$AvailabilityZone' => '

The Availability Zone.

', 'DescribeFastSnapshotRestoreSuccessItem$StateTransitionReason' => '

The reason for the state transition. The possible values are as follows:

  • Client.UserInitiated - The state successfully transitioned to enabling or disabling.

  • Client.UserInitiated - Lifecycle state transition - The state successfully transitioned to optimizing, enabled, or disabled.

', 'DescribeFastSnapshotRestoreSuccessItem$OwnerId' => '

The ID of the Amazon Web Services account that enabled fast snapshot restores on the snapshot.

', 'DescribeFastSnapshotRestoreSuccessItem$OwnerAlias' => '

The Amazon Web Services owner alias that enabled fast snapshot restores on the snapshot. This is intended for future use.

', 'DescribeFleetError$ErrorCode' => '

The error code that indicates why the instance could not be launched. For more information about error codes, see Error codes.

', 'DescribeFleetError$ErrorMessage' => '

The error message that describes why the instance could not be launched. For more information about error messages, see Error codes.

', 'DescribeFleetHistoryRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeFleetHistoryResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeFleetInstancesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeFleetInstancesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeFleetsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeFleetsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeFlowLogsRequest$NextToken' => '

The token to request the next page of items. Pagination continues from the end of the items returned by the previous request.

', 'DescribeFlowLogsResult$NextToken' => '

The token to request the next page of items. This value is null when there are no more items to return.

', 'DescribeHostReservationOfferingsRequest$NextToken' => '

The token to use to retrieve the next page of results.

', 'DescribeHostReservationOfferingsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeHostReservationsRequest$NextToken' => '

The token to use to retrieve the next page of results.

', 'DescribeHostReservationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeHostsRequest$NextToken' => '

The token to use to retrieve the next page of results.

', 'DescribeHostsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeIdFormatRequest$Resource' => '

The type of resource: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | instance | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | reservation | route-table | route-table-association | security-group | snapshot | subnet | subnet-cidr-block-association | volume | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway

', 'DescribeIdentityIdFormatRequest$PrincipalArn' => '

The ARN of the principal, which can be an IAM role, IAM user, or the root user.

', 'DescribeIdentityIdFormatRequest$Resource' => '

The type of resource: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | instance | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | reservation | route-table | route-table-association | security-group | snapshot | subnet | subnet-cidr-block-association | volume | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway

', 'DescribeImagesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeImagesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeImportImageTasksRequest$NextToken' => '

A token that indicates the next page of results.

', 'DescribeImportImageTasksResult$NextToken' => '

The token to use to get the next page of results. This value is null when there are no more results to return.

', 'DescribeImportSnapshotTasksRequest$NextToken' => '

A token that indicates the next page of results.

', 'DescribeImportSnapshotTasksResult$NextToken' => '

The token to use to get the next page of results. This value is null when there are no more results to return.

', 'DescribeInstanceCreditSpecificationsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeInstanceCreditSpecificationsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeInstanceEventWindowsRequest$NextToken' => '

The token to request the next page of results.

', 'DescribeInstanceEventWindowsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeInstanceStatusRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeInstanceStatusResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeInstanceTopologyRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeInstanceTopologyResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeInstancesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeInstancesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeInternetGatewaysRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeInternetGatewaysResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeIpamByoasnResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLaunchTemplateVersionsRequest$MinVersion' => '

The version number after which to describe launch template versions.

', 'DescribeLaunchTemplateVersionsRequest$MaxVersion' => '

The version number up to which to describe launch template versions.

', 'DescribeLaunchTemplateVersionsRequest$NextToken' => '

The token to request the next page of results.

', 'DescribeLaunchTemplateVersionsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLaunchTemplatesRequest$NextToken' => '

The token to request the next page of results.

', 'DescribeLaunchTemplatesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLocalGatewayRouteTableVpcAssociationsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeLocalGatewayRouteTableVpcAssociationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLocalGatewayRouteTablesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeLocalGatewayRouteTablesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLocalGatewayVirtualInterfaceGroupsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeLocalGatewayVirtualInterfaceGroupsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLocalGatewayVirtualInterfacesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeLocalGatewayVirtualInterfacesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLocalGatewaysRequest$NextToken' => '

The token for the next page of results.

', 'DescribeLocalGatewaysResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeLockedSnapshotsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeLockedSnapshotsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeMovingAddressesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeMovingAddressesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeNatGatewaysRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeNatGatewaysResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeNetworkAclsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeNetworkAclsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeNetworkInsightsAccessScopeAnalysesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeNetworkInsightsAccessScopesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeNetworkInsightsAnalysesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeNetworkInsightsPathsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeNetworkInterfaceAttributeResult$NetworkInterfaceId' => '

The ID of the network interface.

', 'DescribeNetworkInterfacePermissionsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeNetworkInterfacePermissionsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeNetworkInterfacesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeNetworkInterfacesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribePrefixListsRequest$NextToken' => '

The token for the next page of results.

', 'DescribePrefixListsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribePrincipalIdFormatRequest$NextToken' => '

The token to request the next page of results.

', 'DescribePrincipalIdFormatResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribePublicIpv4PoolsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeReplaceRootVolumeTasksResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeReservedInstancesModificationsRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeReservedInstancesModificationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeReservedInstancesOfferingsRequest$AvailabilityZone' => '

The Availability Zone in which the Reserved Instance can be used.

', 'DescribeReservedInstancesOfferingsRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeReservedInstancesOfferingsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeRouteTablesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeRouteTablesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeScheduledInstanceAvailabilityRequest$NextToken' => '

The token for the next set of results.

', 'DescribeScheduledInstanceAvailabilityResult$NextToken' => '

The token required to retrieve the next set of results. This value is null when there are no more results to return.

', 'DescribeScheduledInstancesRequest$NextToken' => '

The token for the next set of results.

', 'DescribeScheduledInstancesResult$NextToken' => '

The token required to retrieve the next set of results. This value is null when there are no more results to return.

', 'DescribeSecurityGroupRulesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeSecurityGroupRulesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSecurityGroupsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeSecurityGroupsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSnapshotAttributeResult$SnapshotId' => '

The ID of the EBS snapshot.

', 'DescribeSnapshotTierStatusRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeSnapshotTierStatusResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSnapshotsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeSnapshotsResult$NextToken' => '

The token to include in another request to return the next page of snapshots. This value is null when there are no more snapshots to return.

', 'DescribeSpotFleetInstancesRequest$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSpotFleetInstancesResponse$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSpotFleetInstancesResponse$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'DescribeSpotFleetRequestHistoryRequest$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSpotFleetRequestHistoryResponse$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSpotFleetRequestHistoryResponse$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'DescribeSpotFleetRequestsRequest$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSpotFleetRequestsResponse$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSpotInstanceRequestsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeSpotInstanceRequestsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSpotPriceHistoryRequest$AvailabilityZone' => '

Filters the results by the specified Availability Zone.

', 'DescribeSpotPriceHistoryRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeSpotPriceHistoryResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeStaleSecurityGroupsResult$NextToken' => '

The token to include in another request to get the next page of items. If there are no additional items to return, the string is empty.

', 'DescribeStoreImageTasksRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeStoreImageTasksResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeSubnetsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeSubnetsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeTagsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeTagsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeTrafficMirrorFiltersResult$NextToken' => '

The token to use to retrieve the next page of results. The value is null when there are no more results to return.

', 'DescribeTrafficMirrorSessionsResult$NextToken' => '

The token to use to retrieve the next page of results. The value is null when there are no more results to return.

', 'DescribeTrafficMirrorTargetsResult$NextToken' => '

The token to use to retrieve the next page of results. The value is null when there are no more results to return.

', 'DescribeTransitGatewayAttachmentsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayAttachmentsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeTransitGatewayConnectPeersRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayConnectPeersResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeTransitGatewayConnectsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayConnectsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeTransitGatewayMulticastDomainsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayMulticastDomainsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeTransitGatewayPeeringAttachmentsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayPeeringAttachmentsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeTransitGatewayPolicyTablesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayPolicyTablesResult$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayRouteTableAnnouncementsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayRouteTableAnnouncementsResult$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayRouteTablesRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayRouteTablesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeTransitGatewayVpcAttachmentsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewayVpcAttachmentsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeTransitGatewaysRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTransitGatewaysResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeTrunkInterfaceAssociationsRequest$NextToken' => '

The token for the next page of results.

', 'DescribeTrunkInterfaceAssociationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVolumeAttributeResult$VolumeId' => '

The ID of the volume.

', 'DescribeVolumeStatusRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeVolumeStatusResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeVolumesModificationsRequest$NextToken' => '

The token returned by a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeVolumesModificationsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null if there are no more items to return.

', 'DescribeVolumesRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned from the previous request.

', 'DescribeVolumesResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeVpcAttributeResult$VpcId' => '

The ID of the VPC.

', 'DescribeVpcEndpointConnectionNotificationsRequest$NextToken' => '

The token to request the next page of results.

', 'DescribeVpcEndpointConnectionNotificationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVpcEndpointConnectionsRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeVpcEndpointConnectionsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVpcEndpointServiceConfigurationsRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeVpcEndpointServiceConfigurationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVpcEndpointServicePermissionsRequest$NextToken' => '

The token to retrieve the next page of results.

', 'DescribeVpcEndpointServicePermissionsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'DescribeVpcEndpointServicesRequest$NextToken' => '

The token for the next set of items to return. (You received this token from a prior call.)

', 'DescribeVpcEndpointServicesResult$NextToken' => '

The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.

', 'DescribeVpcEndpointsRequest$NextToken' => '

The token for the next set of items to return. (You received this token from a prior call.)

', 'DescribeVpcEndpointsResult$NextToken' => '

The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.

', 'DescribeVpcPeeringConnectionsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeVpcPeeringConnectionsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DescribeVpcsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'DescribeVpcsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'DetachVerifiedAccessTrustProviderRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'DetachVolumeRequest$Device' => '

The device name.

', 'DeviceOptions$TenantId' => '

The ID of the tenant application with the device-identity provider.

', 'DeviceOptions$PublicSigningKeyUrl' => '

The URL Amazon Web Services Verified Access will use to verify the authenticity of the device tokens.

', 'DhcpConfiguration$Key' => '

The name of a DHCP option.

', 'DhcpOptions$DhcpOptionsId' => '

The ID of the set of DHCP options.

', 'DhcpOptions$OwnerId' => '

The ID of the Amazon Web Services account that owns the DHCP options set.

', 'DirectoryServiceAuthentication$DirectoryId' => '

The ID of the Active Directory used for authentication.

', 'DirectoryServiceAuthenticationRequest$DirectoryId' => '

The ID of the Active Directory to be used for authentication.

', 'DisableAwsNetworkPerformanceMetricSubscriptionRequest$Source' => '

The source Region or Availability Zone that the metric subscription is disabled for. For example, us-east-1.

', 'DisableAwsNetworkPerformanceMetricSubscriptionRequest$Destination' => '

The target Region or Availability Zone that the metric subscription is disabled for. For example, eu-north-1.

', 'DisableFastLaunchResult$OwnerId' => '

The owner of the Windows AMI for which Windows fast launch was disabled.

', 'DisableFastLaunchResult$StateTransitionReason' => '

The reason that the state changed for Windows fast launch for the Windows AMI.

', 'DisableFastSnapshotRestoreErrorItem$SnapshotId' => '

The ID of the snapshot.

', 'DisableFastSnapshotRestoreStateError$Code' => '

The error code.

', 'DisableFastSnapshotRestoreStateError$Message' => '

The error message.

', 'DisableFastSnapshotRestoreStateErrorItem$AvailabilityZone' => '

The Availability Zone.

', 'DisableFastSnapshotRestoreSuccessItem$SnapshotId' => '

The ID of the snapshot.

', 'DisableFastSnapshotRestoreSuccessItem$AvailabilityZone' => '

The Availability Zone.

', 'DisableFastSnapshotRestoreSuccessItem$StateTransitionReason' => '

The reason for the state transition. The possible values are as follows:

  • Client.UserInitiated - The state successfully transitioned to enabling or disabling.

  • Client.UserInitiated - Lifecycle state transition - The state successfully transitioned to optimizing, enabled, or disabled.

', 'DisableFastSnapshotRestoreSuccessItem$OwnerId' => '

The ID of the Amazon Web Services account that enabled fast snapshot restores on the snapshot.

', 'DisableFastSnapshotRestoreSuccessItem$OwnerAlias' => '

The Amazon Web Services owner alias that enabled fast snapshot restores on the snapshot. This is intended for future use.

', 'DisableIpamOrganizationAdminAccountRequest$DelegatedAdminAccountId' => '

The Organizations member account ID that you want to disable as IPAM account.

', 'DisassociateClientVpnTargetNetworkRequest$AssociationId' => '

The ID of the target network association.

', 'DisassociateClientVpnTargetNetworkResult$AssociationId' => '

The ID of the target network association.

', 'DisassociateIpamByoasnRequest$Asn' => '

A public 2-byte or 4-byte ASN.

', 'DisassociateIpamByoasnRequest$Cidr' => '

A BYOIP CIDR.

', 'DisassociateSubnetCidrBlockResult$SubnetId' => '

The ID of the subnet.

', 'DisassociateTrunkInterfaceRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.

', 'DisassociateTrunkInterfaceResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.

', 'DisassociateVpcCidrBlockResult$VpcId' => '

The ID of the VPC.

', 'DiskImage$Description' => '

A description of the disk image.

', 'DiskImageDescription$Checksum' => '

The checksum computed for the disk image.

', 'DiskImageVolumeDescription$Id' => '

The volume identifier.

', 'DnsEntry$DnsName' => '

The DNS name.

', 'DnsEntry$HostedZoneId' => '

The ID of the private hosted zone.

', 'EbsBlockDevice$KmsKeyId' => '

Identifier (key ID, key alias, ID ARN, or alias ARN) for a customer managed CMK under which the EBS volume is encrypted.

This parameter is only supported on BlockDeviceMapping objects called by RunInstances, RequestSpotFleet, and RequestSpotInstances.

', 'EbsBlockDevice$OutpostArn' => '

The ARN of the Outpost on which the snapshot is stored.

This parameter is not supported when using CreateImage.

', 'EbsInstanceBlockDevice$VolumeId' => '

The ID of the EBS volume.

', 'EbsInstanceBlockDevice$AssociatedResource' => '

The ARN of the Amazon ECS or Fargate task to which the volume is attached.

', 'EbsInstanceBlockDevice$VolumeOwnerId' => '

The ID of the Amazon Web Services account that owns the volume.

This parameter is returned only for volumes that are attached to Fargate tasks.

', 'Ec2InstanceConnectEndpoint$OwnerId' => '

The ID of the Amazon Web Services account that created the EC2 Instance Connect Endpoint.

', 'Ec2InstanceConnectEndpoint$StateMessage' => '

The message for the current state of the EC2 Instance Connect Endpoint. Can include a failure message.

', 'Ec2InstanceConnectEndpoint$DnsName' => '

The DNS name of the EC2 Instance Connect Endpoint.

', 'Ec2InstanceConnectEndpoint$FipsDnsName' => '

', 'Ec2InstanceConnectEndpoint$AvailabilityZone' => '

The Availability Zone of the EC2 Instance Connect Endpoint.

', 'ElasticGpuAssociation$ElasticGpuAssociationId' => '

The ID of the association.

', 'ElasticGpuAssociation$ElasticGpuAssociationState' => '

The state of the association between the instance and the Elastic Graphics accelerator.

', 'ElasticGpuAssociation$ElasticGpuAssociationTime' => '

The time the Elastic Graphics accelerator was associated with the instance.

', 'ElasticGpuSpecification$Type' => '

The type of Elastic Graphics accelerator. For more information about the values to specify for Type, see Elastic Graphics Basics, specifically the Elastic Graphics accelerator column, in the Amazon Elastic Compute Cloud User Guide for Windows Instances.

', 'ElasticGpuSpecificationResponse$Type' => '

Deprecated.

Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.

', 'ElasticGpus$ElasticGpuId' => '

The ID of the Elastic Graphics accelerator.

', 'ElasticGpus$AvailabilityZone' => '

The Availability Zone in the which the Elastic Graphics accelerator resides.

', 'ElasticGpus$ElasticGpuType' => '

The type of Elastic Graphics accelerator.

', 'ElasticGpus$InstanceId' => '

The ID of the instance to which the Elastic Graphics accelerator is attached.

', 'ElasticInferenceAccelerator$Type' => '

The type of elastic inference accelerator. The possible values are eia1.medium, eia1.large, eia1.xlarge, eia2.medium, eia2.large, and eia2.xlarge.

', 'ElasticInferenceAcceleratorAssociation$ElasticInferenceAcceleratorArn' => '

The Amazon Resource Name (ARN) of the elastic inference accelerator.

', 'ElasticInferenceAcceleratorAssociation$ElasticInferenceAcceleratorAssociationId' => '

The ID of the association.

', 'ElasticInferenceAcceleratorAssociation$ElasticInferenceAcceleratorAssociationState' => '

The state of the elastic inference accelerator.

', 'EnableAddressTransferRequest$TransferAccountId' => '

The ID of the account that you want to transfer the Elastic IP address to.

', 'EnableAwsNetworkPerformanceMetricSubscriptionRequest$Source' => '

The source Region (like us-east-1) or Availability Zone ID (like use1-az1) that the metric subscription is enabled for. If you use Availability Zone IDs, the Source and Destination Availability Zones must be in the same Region.

', 'EnableAwsNetworkPerformanceMetricSubscriptionRequest$Destination' => '

The target Region (like us-east-2) or Availability Zone ID (like use2-az2) that the metric subscription is enabled for. If you use Availability Zone IDs, the Source and Destination Availability Zones must be in the same Region.

', 'EnableFastLaunchRequest$ResourceType' => '

The type of resource to use for pre-provisioning the AMI for Windows fast launch. Supported values include: snapshot, which is the default value.

', 'EnableFastLaunchResult$OwnerId' => '

The owner ID for the AMI for which Windows fast launch was enabled.

', 'EnableFastLaunchResult$StateTransitionReason' => '

The reason that the state changed for Windows fast launch for the AMI.

', 'EnableFastSnapshotRestoreErrorItem$SnapshotId' => '

The ID of the snapshot.

', 'EnableFastSnapshotRestoreStateError$Code' => '

The error code.

', 'EnableFastSnapshotRestoreStateError$Message' => '

The error message.

', 'EnableFastSnapshotRestoreStateErrorItem$AvailabilityZone' => '

The Availability Zone.

', 'EnableFastSnapshotRestoreSuccessItem$SnapshotId' => '

The ID of the snapshot.

', 'EnableFastSnapshotRestoreSuccessItem$AvailabilityZone' => '

The Availability Zone.

', 'EnableFastSnapshotRestoreSuccessItem$StateTransitionReason' => '

The reason for the state transition. The possible values are as follows:

  • Client.UserInitiated - The state successfully transitioned to enabling or disabling.

  • Client.UserInitiated - Lifecycle state transition - The state successfully transitioned to optimizing, enabled, or disabled.

', 'EnableFastSnapshotRestoreSuccessItem$OwnerId' => '

The ID of the Amazon Web Services account that enabled fast snapshot restores on the snapshot.

', 'EnableFastSnapshotRestoreSuccessItem$OwnerAlias' => '

The Amazon Web Services owner alias that enabled fast snapshot restores on the snapshot. This is intended for future use.

', 'EnableIpamOrganizationAdminAccountRequest$DelegatedAdminAccountId' => '

The Organizations member account ID that you want to enable as the IPAM account.

', 'EventInformation$EventDescription' => '

The description of the event.

', 'EventInformation$EventSubType' => '

The event.

error events:

  • iamFleetRoleInvalid - The EC2 Fleet or Spot Fleet does not have the required permissions either to launch or terminate an instance.

  • allLaunchSpecsTemporarilyBlacklisted - None of the configurations are valid, and several attempts to launch instances have failed. For more information, see the description of the event.

  • spotInstanceCountLimitExceeded - You\'ve reached the limit on the number of Spot Instances that you can launch.

  • spotFleetRequestConfigurationInvalid - The configuration is not valid. For more information, see the description of the event.

fleetRequestChange events:

  • active - The EC2 Fleet or Spot Fleet request has been validated and Amazon EC2 is attempting to maintain the target number of running instances.

  • deleted (EC2 Fleet) / cancelled (Spot Fleet) - The EC2 Fleet is deleted or the Spot Fleet request is canceled and has no running instances. The EC2 Fleet or Spot Fleet will be deleted two days after its instances are terminated.

  • deleted_running (EC2 Fleet) / cancelled_running (Spot Fleet) - The EC2 Fleet is deleted or the Spot Fleet request is canceled and does not launch additional instances. Its existing instances continue to run until they are interrupted or terminated. The request remains in this state until all instances are interrupted or terminated.

  • deleted_terminating (EC2 Fleet) / cancelled_terminating (Spot Fleet) - The EC2 Fleet is deleted or the Spot Fleet request is canceled and its instances are terminating. The request remains in this state until all instances are terminated.

  • expired - The EC2 Fleet or Spot Fleet request has expired. If the request was created with TerminateInstancesWithExpiration set, a subsequent terminated event indicates that the instances are terminated.

  • modify_in_progress - The EC2 Fleet or Spot Fleet request is being modified. The request remains in this state until the modification is fully processed.

  • modify_succeeded - The EC2 Fleet or Spot Fleet request was modified.

  • submitted - The EC2 Fleet or Spot Fleet request is being evaluated and Amazon EC2 is preparing to launch the target number of instances.

  • progress - The EC2 Fleet or Spot Fleet request is in the process of being fulfilled.

instanceChange events:

  • launched - A new instance was launched.

  • terminated - An instance was terminated by the user.

  • termination_notified - An instance termination notification was sent when a Spot Instance was terminated by Amazon EC2 during scale-down, when the target capacity of the fleet was modified down, for example, from a target capacity of 4 to a target capacity of 3.

Information events:

  • fleetProgressHalted - The price in every launch specification is not valid because it is below the Spot price (all the launch specifications have produced launchSpecUnusable events). A launch specification might become valid if the Spot price changes.

  • launchSpecTemporarilyBlacklisted - The configuration is not valid and several attempts to launch instances have failed. For more information, see the description of the event.

  • launchSpecUnusable - The price in a launch specification is not valid because it is below the Spot price.

  • registerWithLoadBalancersFailed - An attempt to register instances with load balancers failed. For more information, see the description of the event.

', 'EventInformation$InstanceId' => '

The ID of the instance. This information is available only for instanceChange events.

', 'ExecutableByStringList$member' => NULL, 'Explanation$Direction' => '

The direction. The following are the possible values:

  • egress

  • ingress

', 'Explanation$ExplanationCode' => '

The explanation code.

', 'Explanation$MissingComponent' => '

The missing component.

', 'Explanation$PacketField' => '

The packet field.

', 'Explanation$State' => '

The state.

', 'ExportClientVpnClientCertificateRevocationListResult$CertificateRevocationList' => '

Information about the client certificate revocation list.

', 'ExportClientVpnClientConfigurationResult$ClientConfiguration' => '

The contents of the Client VPN endpoint configuration file.

', 'ExportImageRequest$ClientToken' => '

Token to enable idempotency for export image requests.

', 'ExportImageRequest$Description' => '

A description of the image being exported. The maximum length is 255 characters.

', 'ExportImageRequest$RoleName' => '

The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket. If this parameter is not specified, the default role is named \'vmimport\'.

', 'ExportImageResult$Description' => '

A description of the image being exported.

', 'ExportImageResult$ExportImageTaskId' => '

The ID of the export image task.

', 'ExportImageResult$ImageId' => '

The ID of the image.

', 'ExportImageResult$RoleName' => '

The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket.

', 'ExportImageResult$Progress' => '

The percent complete of the export image task.

', 'ExportImageResult$Status' => '

The status of the export image task. The possible values are active, completed, deleting, and deleted.

', 'ExportImageResult$StatusMessage' => '

The status message for the export image task.

', 'ExportImageTask$Description' => '

A description of the image being exported.

', 'ExportImageTask$ExportImageTaskId' => '

The ID of the export image task.

', 'ExportImageTask$ImageId' => '

The ID of the image.

', 'ExportImageTask$Progress' => '

The percent complete of the export image task.

', 'ExportImageTask$Status' => '

The status of the export image task. The possible values are active, completed, deleting, and deleted.

', 'ExportImageTask$StatusMessage' => '

The status message for the export image task.

', 'ExportTask$Description' => '

A description of the resource being exported.

', 'ExportTask$ExportTaskId' => '

The ID of the export task.

', 'ExportTask$StatusMessage' => '

The status message related to the export task.

', 'ExportTaskS3Location$S3Bucket' => '

The destination Amazon S3 bucket.

', 'ExportTaskS3Location$S3Prefix' => '

The prefix (logical hierarchy) in the bucket.

', 'ExportTaskS3LocationRequest$S3Bucket' => '

The destination Amazon S3 bucket.

', 'ExportTaskS3LocationRequest$S3Prefix' => '

The prefix (logical hierarchy) in the bucket.

', 'ExportToS3Task$S3Bucket' => '

The Amazon S3 bucket for the destination image. The destination bucket must exist and have an access control list (ACL) attached that specifies the Region-specific canonical account ID for the Grantee. For more information about the ACL to your S3 bucket, see Prerequisites in the VM Import/Export User Guide.

', 'ExportToS3Task$S3Key' => '

The encryption key for your S3 bucket.

', 'ExportToS3TaskSpecification$S3Bucket' => '

The Amazon S3 bucket for the destination image. The destination bucket must exist and have an access control list (ACL) attached that specifies the Region-specific canonical account ID for the Grantee. For more information about the ACL to your S3 bucket, see Prerequisites in the VM Import/Export User Guide.

', 'ExportToS3TaskSpecification$S3Prefix' => '

The image is written to a single object in the Amazon S3 bucket at the S3 key s3prefix + exportTaskId + \'.\' + diskImageFormat.

', 'ExportTransitGatewayRoutesRequest$S3Bucket' => '

The name of the S3 bucket.

', 'ExportTransitGatewayRoutesResult$S3Location' => '

The URL of the exported file in Amazon S3. For example, s3://bucket_name/VPCTransitGateway/TransitGatewayRouteTables/file_name.

', 'FailedQueuedPurchaseDeletion$ReservedInstancesId' => '

The ID of the Reserved Instance.

', 'FastLaunchLaunchTemplateSpecificationRequest$LaunchTemplateName' => '

Specify the name of the launch template that the AMI should use for Windows fast launch.

', 'FastLaunchLaunchTemplateSpecificationRequest$Version' => '

Specify the version of the launch template that the AMI should use for Windows fast launch.

', 'FastLaunchLaunchTemplateSpecificationResponse$LaunchTemplateName' => '

The name of the launch template that the AMI uses for Windows fast launch.

', 'FastLaunchLaunchTemplateSpecificationResponse$Version' => '

The version of the launch template that the AMI uses for Windows fast launch.

', 'FederatedAuthentication$SamlProviderArn' => '

The Amazon Resource Name (ARN) of the IAM SAML identity provider.

', 'FederatedAuthentication$SelfServiceSamlProviderArn' => '

The Amazon Resource Name (ARN) of the IAM SAML identity provider for the self-service portal.

', 'FederatedAuthenticationRequest$SAMLProviderArn' => '

The Amazon Resource Name (ARN) of the IAM SAML identity provider.

', 'FederatedAuthenticationRequest$SelfServiceSAMLProviderArn' => '

The Amazon Resource Name (ARN) of the IAM SAML identity provider for the self-service portal.

', 'Filter$Name' => '

The name of the filter. Filter names are case-sensitive.

', 'FirewallStatefulRule$Protocol' => '

The protocol.

', 'FirewallStatefulRule$RuleAction' => '

The rule action. The possible values are pass, drop, and alert.

', 'FirewallStatefulRule$Direction' => '

The direction. The possible values are FORWARD and ANY.

', 'FirewallStatelessRule$RuleAction' => '

The rule action. The possible values are pass, drop, and forward_to_site.

', 'FleetCapacityReservation$AvailabilityZoneId' => '

The ID of the Availability Zone in which the Capacity Reservation reserves capacity.

', 'FleetCapacityReservation$AvailabilityZone' => '

The Availability Zone in which the Capacity Reservation reserves capacity.

', 'FleetData$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

Constraints: Maximum 64 ASCII characters

', 'FleetData$Context' => '

Reserved.

', 'FleetLaunchTemplateOverrides$MaxPrice' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'FleetLaunchTemplateOverrides$SubnetId' => '

The ID of the subnet in which to launch the instances.

', 'FleetLaunchTemplateOverrides$AvailabilityZone' => '

The Availability Zone in which to launch the instances.

', 'FleetLaunchTemplateOverridesRequest$MaxPrice' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'FleetLaunchTemplateOverridesRequest$AvailabilityZone' => '

The Availability Zone in which to launch the instances.

', 'FleetLaunchTemplateSpecification$LaunchTemplateId' => '

The ID of the launch template.

You must specify the LaunchTemplateId or the LaunchTemplateName, but not both.

', 'FleetLaunchTemplateSpecification$Version' => '

The launch template version number, $Latest, or $Default. You must specify a value, otherwise the request fails.

If the value is $Latest, Amazon EC2 uses the latest version of the launch template.

If the value is $Default, Amazon EC2 uses the default version of the launch template.

', 'FleetLaunchTemplateSpecificationRequest$Version' => '

The launch template version number, $Latest, or $Default. You must specify a value, otherwise the request fails.

If the value is $Latest, Amazon EC2 uses the latest version of the launch template.

If the value is $Default, Amazon EC2 uses the default version of the launch template.

', 'FlowLog$DeliverLogsErrorMessage' => '

Information about the error that occurred. Rate limited indicates that CloudWatch Logs throttling has been applied for one or more network interfaces, or that you\'ve reached the limit on the number of log groups that you can create. Access error indicates that the IAM role associated with the flow log does not have sufficient permissions to publish to CloudWatch Logs. Unknown error indicates an internal error.

', 'FlowLog$DeliverLogsPermissionArn' => '

The ARN of the IAM role allows the service to publish logs to CloudWatch Logs.

', 'FlowLog$DeliverCrossAccountRole' => '

The ARN of the IAM role that allows the service to publish flow logs across accounts.

', 'FlowLog$DeliverLogsStatus' => '

The status of the logs delivery (SUCCESS | FAILED).

', 'FlowLog$FlowLogId' => '

The ID of the flow log.

', 'FlowLog$FlowLogStatus' => '

The status of the flow log (ACTIVE).

', 'FlowLog$LogGroupName' => '

The name of the flow log group.

', 'FlowLog$ResourceId' => '

The ID of the resource being monitored.

', 'FlowLog$LogDestination' => '

The Amazon Resource Name (ARN) of the destination for the flow log data.

', 'FlowLog$LogFormat' => '

The format of the flow log record.

', 'FpgaImage$FpgaImageId' => '

The FPGA image identifier (AFI ID).

', 'FpgaImage$FpgaImageGlobalId' => '

The global FPGA image identifier (AGFI ID).

', 'FpgaImage$Name' => '

The name of the AFI.

', 'FpgaImage$Description' => '

The description of the AFI.

', 'FpgaImage$ShellVersion' => '

The version of the Amazon Web Services Shell that was used to create the bitstream.

', 'FpgaImage$OwnerId' => '

The ID of the Amazon Web Services account that owns the AFI.

', 'FpgaImage$OwnerAlias' => '

The alias of the AFI owner. Possible values include self, amazon, and aws-marketplace.

', 'FpgaImageAttribute$FpgaImageId' => '

The ID of the AFI.

', 'FpgaImageAttribute$Name' => '

The name of the AFI.

', 'FpgaImageAttribute$Description' => '

The description of the AFI.

', 'FpgaImageState$Message' => '

If the state is failed, this is the error message.

', 'GetAssociatedIpv6PoolCidrsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetAwsNetworkPerformanceDataRequest$NextToken' => '

The token for the next page of results.

', 'GetAwsNetworkPerformanceDataResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetCapacityReservationUsageRequest$NextToken' => '

The token to use to retrieve the next page of results.

', 'GetCapacityReservationUsageResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetCapacityReservationUsageResult$CapacityReservationId' => '

The ID of the Capacity Reservation.

', 'GetCapacityReservationUsageResult$InstanceType' => '

The type of instance for which the Capacity Reservation reserves capacity.

', 'GetCoipPoolUsageRequest$NextToken' => '

The token for the next page of results.

', 'GetCoipPoolUsageResult$CoipPoolId' => '

The ID of the customer-owned address pool.

', 'GetCoipPoolUsageResult$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'GetCoipPoolUsageResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetConsoleOutputResult$InstanceId' => '

The ID of the instance.

', 'GetConsoleOutputResult$Output' => '

The console output, base64-encoded. If you are using a command line tool, the tool decodes the output for you.

', 'GetConsoleScreenshotResult$ImageData' => '

The data that comprises the image.

', 'GetConsoleScreenshotResult$InstanceId' => '

The ID of the instance.

', 'GetEbsDefaultKmsKeyIdResult$KmsKeyId' => '

The Amazon Resource Name (ARN) of the default KMS key for encryption by default.

', 'GetFlowLogsIntegrationTemplateRequest$ConfigDeliveryS3DestinationArn' => '

To store the CloudFormation template in Amazon S3, specify the location in Amazon S3.

', 'GetFlowLogsIntegrationTemplateResult$Result' => '

The generated CloudFormation template.

', 'GetGroupsForCapacityReservationRequest$NextToken' => '

The token to use to retrieve the next page of results.

', 'GetGroupsForCapacityReservationResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetHostReservationPurchasePreviewResult$TotalHourlyPrice' => '

The potential total hourly price of the reservation per hour.

', 'GetHostReservationPurchasePreviewResult$TotalUpfrontPrice' => '

The potential total upfront price. This is billed immediately.

', 'GetImageBlockPublicAccessStateResult$ImageBlockPublicAccessState' => '

The current state of block public access for AMIs at the account level in the specified Amazon Web Services Region.

Possible values:

  • block-new-sharing - Any attempt to publicly share your AMIs in the specified Region is blocked.

  • unblocked - Your AMIs in the specified Region can be publicly shared.

', 'GetInstanceTypesFromInstanceRequirementsRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'GetInstanceTypesFromInstanceRequirementsResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'GetInstanceUefiDataResult$UefiData' => '

Base64 representation of the non-volatile UEFI variable store.

', 'GetIpamAddressHistoryRequest$Cidr' => '

The CIDR you want the history of. The CIDR can be an IPv4 or IPv6 IP address range. If you enter a /16 IPv4 CIDR, you will get records that match it exactly. You will not get records for any subnets within the /16 CIDR.

', 'GetIpamAddressHistoryRequest$VpcId' => '

The ID of the VPC you want your history records filtered by.

', 'GetIpamDiscoveredAccountsRequest$DiscoveryRegion' => '

The Amazon Web Services Region that the account information is returned from.

', 'GetIpamDiscoveredPublicAddressesRequest$AddressRegion' => '

The Amazon Web Services Region for the IP address.

', 'GetIpamDiscoveredResourceCidrsRequest$ResourceRegion' => '

A resource Region.

', 'GetIpamResourceCidrsRequest$ResourceId' => '

The ID of the resource.

', 'GetIpamResourceCidrsRequest$ResourceOwner' => '

The ID of the Amazon Web Services account that owns the resource.

', 'GetManagedPrefixListAssociationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetNetworkInsightsAccessScopeAnalysisFindingsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetPasswordDataResult$InstanceId' => '

The ID of the Windows instance.

', 'GetReservedInstancesExchangeQuoteResult$CurrencyCode' => '

The currency of the transaction.

', 'GetReservedInstancesExchangeQuoteResult$PaymentDue' => '

The total true upfront charge for the exchange.

', 'GetReservedInstancesExchangeQuoteResult$ValidationFailureReason' => '

Describes the reason why the exchange cannot be completed.

', 'GetSecurityGroupsForVpcRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'GetSecurityGroupsForVpcResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'GetSpotPlacementScoresRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'GetSpotPlacementScoresResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'GetSubnetCidrReservationsRequest$NextToken' => '

The token for the next page of results.

', 'GetSubnetCidrReservationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetTransitGatewayAttachmentPropagationsRequest$NextToken' => '

The token for the next page of results.

', 'GetTransitGatewayAttachmentPropagationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetTransitGatewayMulticastDomainAssociationsRequest$NextToken' => '

The token for the next page of results.

', 'GetTransitGatewayMulticastDomainAssociationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetTransitGatewayPolicyTableAssociationsRequest$NextToken' => '

The token for the next page of results.

', 'GetTransitGatewayPolicyTableAssociationsResult$NextToken' => '

The token for the next page of results.

', 'GetTransitGatewayPolicyTableEntriesRequest$NextToken' => '

The token for the next page of results.

', 'GetTransitGatewayPrefixListReferencesRequest$NextToken' => '

The token for the next page of results.

', 'GetTransitGatewayPrefixListReferencesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetTransitGatewayRouteTableAssociationsRequest$NextToken' => '

The token for the next page of results.

', 'GetTransitGatewayRouteTableAssociationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetTransitGatewayRouteTablePropagationsRequest$NextToken' => '

The token for the next page of results.

', 'GetTransitGatewayRouteTablePropagationsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'GetVerifiedAccessEndpointPolicyResult$PolicyDocument' => '

The Verified Access policy document.

', 'GetVerifiedAccessGroupPolicyResult$PolicyDocument' => '

The Verified Access policy document.

', 'GetVpnConnectionDeviceSampleConfigurationRequest$InternetKeyExchangeVersion' => '

The IKE version to be used in the sample configuration file for your customer gateway device. You can specify one of the following versions: ikev1 or ikev2.

', 'GetVpnTunnelReplacementStatusRequest$VpnTunnelOutsideIpAddress' => '

The external IP address of the VPN tunnel.

', 'GetVpnTunnelReplacementStatusResult$VpnTunnelOutsideIpAddress' => '

The external IP address of the VPN tunnel.

', 'GroupIdentifier$GroupName' => '

The name of the security group.

', 'GroupIdentifier$GroupId' => '

The ID of the security group.

', 'Host$AvailabilityZone' => '

The Availability Zone of the Dedicated Host.

', 'Host$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'Host$HostId' => '

The ID of the Dedicated Host.

', 'Host$HostReservationId' => '

The reservation ID of the Dedicated Host. This returns a null response if the Dedicated Host doesn\'t have an associated reservation.

', 'Host$OwnerId' => '

The ID of the Amazon Web Services account that owns the Dedicated Host.

', 'Host$AvailabilityZoneId' => '

The ID of the Availability Zone in which the Dedicated Host is allocated.

', 'Host$OutpostArn' => '

The Amazon Resource Name (ARN) of the Amazon Web Services Outpost on which the Dedicated Host is allocated.

', 'HostInstance$InstanceId' => '

The ID of instance that is running on the Dedicated Host.

', 'HostInstance$InstanceType' => '

The instance type (for example, m3.medium) of the running instance.

', 'HostInstance$OwnerId' => '

The ID of the Amazon Web Services account that owns the instance.

', 'HostOffering$HourlyPrice' => '

The hourly price of the offering.

', 'HostOffering$InstanceFamily' => '

The instance family of the offering.

', 'HostOffering$UpfrontPrice' => '

The upfront price of the offering. Does not apply to No Upfront offerings.

', 'HostProperties$InstanceType' => '

The instance type supported by the Dedicated Host. For example, m5.large. If the host supports multiple instance types, no instanceType is returned.

', 'HostProperties$InstanceFamily' => '

The instance family supported by the Dedicated Host. For example, m5.

', 'HostReservation$HourlyPrice' => '

The hourly price of the reservation.

', 'HostReservation$InstanceFamily' => '

The instance family of the Dedicated Host Reservation. The instance family on the Dedicated Host must be the same in order for it to benefit from the reservation.

', 'HostReservation$UpfrontPrice' => '

The upfront price of the reservation.

', 'IKEVersionsListValue$Value' => '

The IKE version.

', 'IKEVersionsRequestListValue$Value' => '

The IKE version.

', 'IamInstanceProfile$Arn' => '

The Amazon Resource Name (ARN) of the instance profile.

', 'IamInstanceProfile$Id' => '

The ID of the instance profile.

', 'IamInstanceProfileAssociation$AssociationId' => '

The ID of the association.

', 'IamInstanceProfileAssociation$InstanceId' => '

The ID of the instance.

', 'IamInstanceProfileSpecification$Arn' => '

The Amazon Resource Name (ARN) of the instance profile.

', 'IamInstanceProfileSpecification$Name' => '

The name of the instance profile.

', 'IdFormat$Resource' => '

The type of resource.

', 'Image$CreationDate' => '

The date and time the image was created.

', 'Image$ImageId' => '

The ID of the AMI.

', 'Image$ImageLocation' => '

The location of the AMI.

', 'Image$KernelId' => '

The kernel associated with the image, if any. Only applicable for machine images.

', 'Image$OwnerId' => '

The ID of the Amazon Web Services account that owns the image.

', 'Image$PlatformDetails' => '

The platform details associated with the billing code of the AMI. For more information, see Understand AMI billing information in the Amazon EC2 User Guide.

', 'Image$UsageOperation' => '

The operation of the Amazon EC2 instance and the billing code that is associated with the AMI. usageOperation corresponds to the lineitem/Operation column on your Amazon Web Services Cost and Usage Report and in the Amazon Web Services Price List API. You can view these fields on the Instances or AMIs pages in the Amazon EC2 console, or in the responses that are returned by the DescribeImages command in the Amazon EC2 API, or the describe-images command in the CLI.

', 'Image$RamdiskId' => '

The RAM disk associated with the image, if any. Only applicable for machine images.

', 'Image$Description' => '

The description of the AMI that was provided during image creation.

', 'Image$ImageOwnerAlias' => '

The Amazon Web Services account alias (for example, amazon, self) or the Amazon Web Services account ID of the AMI owner.

', 'Image$Name' => '

The name of the AMI that was provided during image creation.

', 'Image$RootDeviceName' => '

The device name of the root device volume (for example, /dev/sda1).

', 'Image$SriovNetSupport' => '

Specifies whether enhanced networking with the Intel 82599 Virtual Function interface is enabled.

', 'Image$DeprecationTime' => '

The date and time to deprecate the AMI, in UTC, in the following format: YYYY-MM-DDTHH:MM:SSZ. If you specified a value for seconds, Amazon EC2 rounds the seconds to the nearest minute.

', 'Image$SourceInstanceId' => '

The ID of the instance that the AMI was created from if the AMI was created using CreateImage. This field only appears if the AMI was created using CreateImage.

', 'ImageAttribute$ImageId' => '

The ID of the AMI.

', 'ImageDiskContainer$Description' => '

The description of the disk image.

', 'ImageDiskContainer$DeviceName' => '

The block device mapping for the disk.

', 'ImageDiskContainer$Format' => '

The format of the disk image being imported.

Valid values: OVA | VHD | VHDX | VMDK | RAW

', 'ImageRecycleBinInfo$ImageId' => '

The ID of the AMI.

', 'ImageRecycleBinInfo$Name' => '

The name of the AMI.

', 'ImageRecycleBinInfo$Description' => '

The description of the AMI.

', 'ImportClientVpnClientCertificateRevocationListRequest$CertificateRevocationList' => '

The client certificate revocation list file. For more information, see Generate a Client Certificate Revocation List in the Client VPN Administrator Guide.

', 'ImportImageLicenseConfigurationRequest$LicenseConfigurationArn' => '

The ARN of a license configuration.

', 'ImportImageLicenseConfigurationResponse$LicenseConfigurationArn' => '

The ARN of a license configuration.

', 'ImportImageRequest$Architecture' => '

The architecture of the virtual machine.

Valid values: i386 | x86_64

', 'ImportImageRequest$ClientToken' => '

The token to enable idempotency for VM import requests.

', 'ImportImageRequest$Description' => '

A description string for the import image task.

', 'ImportImageRequest$Hypervisor' => '

The target hypervisor platform.

Valid values: xen

', 'ImportImageRequest$LicenseType' => '

The license type to be used for the Amazon Machine Image (AMI) after importing.

Specify AWS to replace the source-system license with an Amazon Web Services license or BYOL to retain the source-system license. Leaving this parameter undefined is the same as choosing AWS when importing a Windows Server operating system, and the same as choosing BYOL when importing a Windows client operating system (such as Windows 10) or a Linux operating system.

To use BYOL, you must have existing licenses with rights to use these licenses in a third party cloud, such as Amazon Web Services. For more information, see Prerequisites in the VM Import/Export User Guide.

', 'ImportImageRequest$Platform' => '

The operating system of the virtual machine. If you import a VM that is compatible with Unified Extensible Firmware Interface (UEFI) using an EBS snapshot, you must specify a value for the platform.

Valid values: Windows | Linux

', 'ImportImageRequest$RoleName' => '

The name of the role to use when not using the default role, \'vmimport\'.

', 'ImportImageRequest$UsageOperation' => '

The usage operation value. For more information, see Licensing options in the VM Import/Export User Guide.

', 'ImportImageResult$Architecture' => '

The architecture of the virtual machine.

', 'ImportImageResult$Description' => '

A description of the import task.

', 'ImportImageResult$Hypervisor' => '

The target hypervisor of the import task.

', 'ImportImageResult$ImageId' => '

The ID of the Amazon Machine Image (AMI) created by the import task.

', 'ImportImageResult$LicenseType' => '

The license type of the virtual machine.

', 'ImportImageResult$Platform' => '

The operating system of the virtual machine.

', 'ImportImageResult$Progress' => '

The progress of the task.

', 'ImportImageResult$Status' => '

A brief status of the task.

', 'ImportImageResult$StatusMessage' => '

A detailed status message of the import task.

', 'ImportImageResult$UsageOperation' => '

The usage operation value.

', 'ImportImageTask$Architecture' => '

The architecture of the virtual machine.

Valid values: i386 | x86_64 | arm64

', 'ImportImageTask$Description' => '

A description of the import task.

', 'ImportImageTask$Hypervisor' => '

The target hypervisor for the import task.

Valid values: xen

', 'ImportImageTask$ImageId' => '

The ID of the Amazon Machine Image (AMI) of the imported virtual machine.

', 'ImportImageTask$ImportTaskId' => '

The ID of the import image task.

', 'ImportImageTask$KmsKeyId' => '

The identifier for the KMS key that was used to create the encrypted image.

', 'ImportImageTask$LicenseType' => '

The license type of the virtual machine.

', 'ImportImageTask$Platform' => '

The description string for the import image task.

', 'ImportImageTask$Progress' => '

The percentage of progress of the import image task.

', 'ImportImageTask$Status' => '

A brief status for the import image task.

', 'ImportImageTask$StatusMessage' => '

A descriptive status message for the import image task.

', 'ImportImageTask$UsageOperation' => '

The usage operation value.

', 'ImportInstanceLaunchSpecification$AdditionalInfo' => '

Reserved.

', 'ImportInstanceLaunchSpecification$PrivateIpAddress' => '

[EC2-VPC] An available IP address from the IP address range of the subnet.

', 'ImportInstanceRequest$Description' => '

A description for the instance being imported.

', 'ImportInstanceTaskDetails$Description' => '

A description of the task.

', 'ImportInstanceTaskDetails$InstanceId' => '

The ID of the instance.

', 'ImportInstanceVolumeDetailItem$AvailabilityZone' => '

The Availability Zone where the resulting instance will reside.

', 'ImportInstanceVolumeDetailItem$Description' => '

A description of the task.

', 'ImportInstanceVolumeDetailItem$Status' => '

The status of the import of this particular disk image.

', 'ImportInstanceVolumeDetailItem$StatusMessage' => '

The status information or errors related to the disk image.

', 'ImportKeyPairRequest$KeyName' => '

A unique name for the key pair.

', 'ImportKeyPairResult$KeyFingerprint' => '
  • For RSA key pairs, the key fingerprint is the MD5 public key fingerprint as specified in section 4 of RFC 4716.

  • For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.

', 'ImportKeyPairResult$KeyName' => '

The key pair name that you provided.

', 'ImportKeyPairResult$KeyPairId' => '

The ID of the resulting key pair.

', 'ImportSnapshotRequest$ClientToken' => '

Token to enable idempotency for VM import requests.

', 'ImportSnapshotRequest$Description' => '

The description string for the import snapshot task.

', 'ImportSnapshotRequest$RoleName' => '

The name of the role to use when not using the default role, \'vmimport\'.

', 'ImportSnapshotResult$Description' => '

A description of the import snapshot task.

', 'ImportSnapshotResult$ImportTaskId' => '

The ID of the import snapshot task.

', 'ImportSnapshotTask$Description' => '

A description of the import snapshot task.

', 'ImportSnapshotTask$ImportTaskId' => '

The ID of the import snapshot task.

', 'ImportVolumeRequest$AvailabilityZone' => '

The Availability Zone for the resulting EBS volume.

', 'ImportVolumeRequest$Description' => '

A description of the volume.

', 'ImportVolumeTaskDetails$AvailabilityZone' => '

The Availability Zone where the resulting volume will reside.

', 'ImportVolumeTaskDetails$Description' => '

The description you provided when starting the import volume task.

', 'InsideCidrBlocksStringList$member' => NULL, 'Instance$ImageId' => '

The ID of the AMI used to launch the instance.

', 'Instance$InstanceId' => '

The ID of the instance.

', 'Instance$KernelId' => '

The kernel associated with this instance, if applicable.

', 'Instance$KeyName' => '

The name of the key pair, if this instance was launched with an associated key pair.

', 'Instance$PrivateDnsName' => '

[IPv4 only] The private DNS hostname name assigned to the instance. This DNS hostname can only be used inside the Amazon EC2 network. This name is not available until the instance enters the running state.

The Amazon-provided DNS server resolves Amazon-provided private DNS hostnames if you\'ve enabled DNS resolution and DNS hostnames in your VPC. If you are not using the Amazon-provided DNS server in your VPC, your custom domain name servers must resolve the hostname as appropriate.

', 'Instance$PrivateIpAddress' => '

The private IPv4 address assigned to the instance.

', 'Instance$PublicDnsName' => '

[IPv4 only] The public DNS name assigned to the instance. This name is not available until the instance enters the running state. This name is only available if you\'ve enabled DNS hostnames for your VPC.

', 'Instance$PublicIpAddress' => '

The public IPv4 address, or the Carrier IP address assigned to the instance, if applicable.

A Carrier IP address only applies to an instance launched in a subnet associated with a Wavelength Zone.

', 'Instance$RamdiskId' => '

The RAM disk associated with this instance, if applicable.

', 'Instance$StateTransitionReason' => '

The reason for the most recent state transition. This might be an empty string.

', 'Instance$SubnetId' => '

The ID of the subnet in which the instance is running.

', 'Instance$VpcId' => '

The ID of the VPC in which the instance is running.

', 'Instance$ClientToken' => '

The idempotency token you provided when you launched the instance, if applicable.

', 'Instance$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'Instance$RootDeviceName' => '

The device name of the root device volume (for example, /dev/sda1).

', 'Instance$SpotInstanceRequestId' => '

If the request is a Spot Instance request, the ID of the request.

', 'Instance$SriovNetSupport' => '

Specifies whether enhanced networking with the Intel 82599 Virtual Function interface is enabled.

', 'Instance$CapacityReservationId' => '

The ID of the Capacity Reservation.

', 'Instance$PlatformDetails' => '

The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.

', 'Instance$UsageOperation' => '

The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.

', 'Instance$Ipv6Address' => '

The IPv6 address assigned to the instance.

', 'Instance$TpmSupport' => '

If the instance is configured for NitroTPM support, the value is v2.0. For more information, see NitroTPM in the Amazon EC2 User Guide.

', 'InstanceAttribute$InstanceId' => '

The ID of the instance.

', 'InstanceBlockDeviceMapping$DeviceName' => '

The device name (for example, /dev/sdh or xvdh).

', 'InstanceBlockDeviceMappingSpecification$DeviceName' => '

The device name (for example, /dev/sdh or xvdh).

', 'InstanceBlockDeviceMappingSpecification$NoDevice' => '

suppress the specified device included in the block device mapping.

', 'InstanceBlockDeviceMappingSpecification$VirtualName' => '

The virtual device name.

', 'InstanceCapacity$InstanceType' => '

The instance type supported by the Dedicated Host.

', 'InstanceCreditSpecification$InstanceId' => '

The ID of the instance.

', 'InstanceCreditSpecification$CpuCredits' => '

The credit option for CPU usage of the instance.

Valid values: standard | unlimited

', 'InstanceCreditSpecificationRequest$CpuCredits' => '

The credit option for CPU usage of the instance.

Valid values: standard | unlimited

T3 instances with host tenancy do not support the unlimited CPU credit option.

', 'InstanceEventWindow$Name' => '

The name of the event window.

', 'InstanceExportDetails$InstanceId' => '

The ID of the resource being exported.

', 'InstanceFamilyCreditSpecification$CpuCredits' => '

The default credit option for CPU usage of the instance family. Valid values are standard and unlimited.

', 'InstanceIpv4Prefix$Ipv4Prefix' => '

One or more IPv4 prefixes assigned to the network interface.

', 'InstanceIpv6Address$Ipv6Address' => '

The IPv6 address.

', 'InstanceIpv6AddressRequest$Ipv6Address' => '

The IPv6 address.

', 'InstanceIpv6Prefix$Ipv6Prefix' => '

One or more IPv6 prefixes assigned to the network interface.

', 'InstanceMonitoring$InstanceId' => '

The ID of the instance.

', 'InstanceNetworkInterface$Description' => '

The description.

', 'InstanceNetworkInterface$MacAddress' => '

The MAC address.

', 'InstanceNetworkInterface$NetworkInterfaceId' => '

The ID of the network interface.

', 'InstanceNetworkInterface$OwnerId' => '

The ID of the Amazon Web Services account that created the network interface.

', 'InstanceNetworkInterface$PrivateDnsName' => '

The private DNS name.

', 'InstanceNetworkInterface$PrivateIpAddress' => '

The IPv4 address of the network interface within the subnet.

', 'InstanceNetworkInterface$SubnetId' => '

The ID of the subnet.

', 'InstanceNetworkInterface$VpcId' => '

The ID of the VPC.

', 'InstanceNetworkInterface$InterfaceType' => '

The type of network interface.

Valid values: interface | efa | trunk

', 'InstanceNetworkInterfaceAssociation$CarrierIp' => '

The carrier IP address associated with the network interface.

', 'InstanceNetworkInterfaceAssociation$CustomerOwnedIp' => '

The customer-owned IP address associated with the network interface.

', 'InstanceNetworkInterfaceAssociation$IpOwnerId' => '

The ID of the owner of the Elastic IP address.

', 'InstanceNetworkInterfaceAssociation$PublicDnsName' => '

The public DNS name.

', 'InstanceNetworkInterfaceAssociation$PublicIp' => '

The public IP address or Elastic IP address bound to the network interface.

', 'InstanceNetworkInterfaceAttachment$AttachmentId' => '

The ID of the network interface attachment.

', 'InstanceNetworkInterfaceSpecification$Description' => '

The description of the network interface. Applies only if creating a network interface when launching an instance.

', 'InstanceNetworkInterfaceSpecification$PrivateIpAddress' => '

The private IPv4 address of the network interface. Applies only if creating a network interface when launching an instance. You cannot specify this option if you\'re launching more than one instance in a RunInstances request.

', 'InstanceNetworkInterfaceSpecification$SubnetId' => '

The ID of the subnet associated with the network interface. Applies only if creating a network interface when launching an instance.

', 'InstanceNetworkInterfaceSpecification$InterfaceType' => '

The type of network interface.

Valid values: interface | efa

', 'InstancePrivateIpAddress$PrivateDnsName' => '

The private IPv4 DNS name.

', 'InstancePrivateIpAddress$PrivateIpAddress' => '

The private IPv4 address of the network interface.

', 'InstanceStateChange$InstanceId' => '

The ID of the instance.

', 'InstanceStatus$AvailabilityZone' => '

The Availability Zone of the instance.

', 'InstanceStatus$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'InstanceStatus$InstanceId' => '

The ID of the instance.

', 'InstanceStatusEvent$Description' => '

A description of the event.

After a scheduled event is completed, it can still be described for up to a week. If the event has been completed, this description starts with the following text: [Completed].

', 'InstanceTagKeySet$member' => NULL, 'InstanceTopology$InstanceId' => '

The instance ID.

', 'InstanceTopology$InstanceType' => '

The instance type.

', 'InstanceTopology$GroupName' => '

The name of the placement group that the instance is in.

', 'InstanceTopology$AvailabilityZone' => '

The name of the Availability Zone or Local Zone that the instance is in.

', 'InstanceTopology$ZoneId' => '

The ID of the Availability Zone or Local Zone that the instance is in.

', 'InstanceTypeInfoFromInstanceRequirements$InstanceType' => '

The matching instance type.

', 'InstanceTypes$member' => NULL, 'InstanceTypesList$member' => NULL, 'InstanceUsage$AccountId' => '

The ID of the Amazon Web Services account that is making use of the Capacity Reservation.

', 'InternetGateway$InternetGatewayId' => '

The ID of the internet gateway.

', 'InternetGateway$OwnerId' => '

The ID of the Amazon Web Services account that owns the internet gateway.

', 'InternetGatewayAttachment$VpcId' => '

The ID of the VPC.

', 'IpList$member' => NULL, 'IpPermission$IpProtocol' => '

The IP protocol name (tcp, udp, icmp, icmpv6) or number (see Protocol Numbers).

Use -1 to specify all protocols. When authorizing security group rules, specifying -1 or a protocol number other than tcp, udp, icmp, or icmpv6 allows traffic on all ports, regardless of any port range you specify. For tcp, udp, and icmp, you must specify a port range. For icmpv6, the port range is optional; if you omit the port range, traffic for all types and codes is allowed.

', 'IpPrefixList$member' => NULL, 'IpRange$CidrIp' => '

The IPv4 CIDR range. You can either specify a CIDR range or a source security group, not both. To specify a single IPv4 address, use the /32 prefix length.

', 'IpRange$Description' => '

A description for the security group rule that references this IPv4 address range.

Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$*

', 'IpRanges$member' => NULL, 'Ipam$OwnerId' => '

The Amazon Web Services account ID of the owner of the IPAM.

', 'Ipam$IpamRegion' => '

The Amazon Web Services Region of the IPAM.

', 'Ipam$Description' => '

The description for the IPAM.

', 'Ipam$StateMessage' => '

The state message.

', 'IpamAddressHistoryRecord$ResourceOwnerId' => '

The ID of the resource owner.

', 'IpamAddressHistoryRecord$ResourceRegion' => '

The Amazon Web Services Region of the resource.

', 'IpamAddressHistoryRecord$ResourceId' => '

The ID of the resource.

', 'IpamAddressHistoryRecord$ResourceCidr' => '

The CIDR of the resource.

', 'IpamAddressHistoryRecord$ResourceName' => '

The name of the resource.

', 'IpamAddressHistoryRecord$VpcId' => '

The VPC ID of the resource.

', 'IpamCidrAuthorizationContext$Message' => '

The plain-text authorization message for the prefix and account.

', 'IpamCidrAuthorizationContext$Signature' => '

The signed authorization message for the prefix and account.

', 'IpamDiscoveredAccount$AccountId' => '

The account ID.

', 'IpamDiscoveredAccount$DiscoveryRegion' => '

The Amazon Web Services Region that the account information is returned from. An account can be discovered in multiple regions and will have a separate discovered account for each Region.

', 'IpamDiscoveredPublicAddress$AddressRegion' => '

The Region of the resource the IP address is assigned to.

', 'IpamDiscoveredPublicAddress$Address' => '

The IP address.

', 'IpamDiscoveredPublicAddress$AddressOwnerId' => '

The ID of the owner of the resource the IP address is assigned to.

', 'IpamDiscoveredPublicAddress$AddressAllocationId' => '

The allocation ID of the resource the IP address is assigned to.

', 'IpamDiscoveredPublicAddress$ServiceResource' => '

The resource ARN or ID.

', 'IpamDiscoveredPublicAddress$VpcId' => '

The ID of the VPC that the resource with the assigned IP address is in.

', 'IpamDiscoveredPublicAddress$SubnetId' => '

The ID of the subnet that the resource with the assigned IP address is in.

', 'IpamDiscoveredPublicAddress$PublicIpv4PoolId' => '

The ID of the public IPv4 pool that the resource with the assigned IP address is from.

', 'IpamDiscoveredPublicAddress$NetworkInterfaceId' => '

The network interface ID of the resource with the assigned IP address.

', 'IpamDiscoveredPublicAddress$NetworkInterfaceDescription' => '

The description of the network interface that IP address is assigned to.

', 'IpamDiscoveredPublicAddress$InstanceId' => '

The instance ID of the instance the assigned IP address is assigned to.

', 'IpamDiscoveredPublicAddress$NetworkBorderGroup' => '

The network border group that the resource that the IP address is assigned to is in.

', 'IpamDiscoveredResourceCidr$ResourceRegion' => '

The resource Region.

', 'IpamDiscoveredResourceCidr$ResourceId' => '

The resource ID.

', 'IpamDiscoveredResourceCidr$ResourceOwnerId' => '

The resource owner ID.

', 'IpamDiscoveredResourceCidr$ResourceCidr' => '

The resource CIDR.

', 'IpamDiscoveredResourceCidr$VpcId' => '

The VPC ID.

', 'IpamDiscoveryFailureReason$Message' => '

The discovery failure message.

', 'IpamOperatingRegion$RegionName' => '

The name of the operating Region.

', 'IpamPool$OwnerId' => '

The Amazon Web Services account ID of the owner of the IPAM pool.

', 'IpamPool$IpamRegion' => '

The Amazon Web Services Region of the IPAM pool.

', 'IpamPool$Locale' => '

The locale of the IPAM pool. In IPAM, the locale is the Amazon Web Services Region where you want to make an IPAM pool available for allocations. Only resources in the same Region as the locale of the pool can get IP address allocations from the pool. You can only allocate a CIDR for a VPC, for example, from an IPAM pool that shares a locale with the VPC’s Region. Note that once you choose a Locale for a pool, you cannot modify it. If you choose an Amazon Web Services Region for locale that has not been configured as an operating Region for the IPAM, you\'ll get an error.

', 'IpamPool$StateMessage' => '

The state message.

', 'IpamPool$Description' => '

The description of the IPAM pool.

', 'IpamPoolAllocation$Cidr' => '

The CIDR for the allocation. A CIDR is a representation of an IP address and its associated network mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is 10.24.34.0/23. An IPv6 CIDR example is 2001:DB8::/32.

', 'IpamPoolAllocation$Description' => '

A description of the pool allocation.

', 'IpamPoolAllocation$ResourceId' => '

The ID of the resource.

', 'IpamPoolAllocation$ResourceRegion' => '

The Amazon Web Services Region of the resource.

', 'IpamPoolAllocation$ResourceOwner' => '

The owner of the resource.

', 'IpamPoolAllocationAllowedCidrs$member' => NULL, 'IpamPoolAllocationDisallowedCidrs$member' => NULL, 'IpamPoolCidr$Cidr' => '

The CIDR provisioned to the IPAM pool. A CIDR is a representation of an IP address and its associated network mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is 10.24.34.0/23. An IPv6 CIDR example is 2001:DB8::/32.

', 'IpamPoolCidrFailureReason$Message' => '

A message related to why an IPAM pool CIDR failed to be provisioned.

', 'IpamPoolSourceResource$ResourceId' => '

The source resource ID.

', 'IpamPoolSourceResource$ResourceRegion' => '

The source resource Region.

', 'IpamPoolSourceResource$ResourceOwner' => '

The source resource owner.

', 'IpamPoolSourceResourceRequest$ResourceId' => '

The source resource ID.

', 'IpamPoolSourceResourceRequest$ResourceRegion' => '

The source resource Region.

', 'IpamPoolSourceResourceRequest$ResourceOwner' => '

The source resource owner.

', 'IpamPublicAddressSecurityGroup$GroupName' => '

The security group\'s name.

', 'IpamPublicAddressSecurityGroup$GroupId' => '

The security group\'s ID.

', 'IpamPublicAddressTag$Key' => '

The tag\'s key.

', 'IpamPublicAddressTag$Value' => '

The tag\'s value.

', 'IpamResourceCidr$ResourceRegion' => '

The Amazon Web Services Region for an IPAM resource.

', 'IpamResourceCidr$ResourceOwnerId' => '

The Amazon Web Services account number of the owner of an IPAM resource.

', 'IpamResourceCidr$ResourceId' => '

The ID of an IPAM resource.

', 'IpamResourceCidr$ResourceName' => '

The name of an IPAM resource.

', 'IpamResourceCidr$ResourceCidr' => '

The CIDR for an IPAM resource.

', 'IpamResourceCidr$VpcId' => '

The ID of a VPC.

', 'IpamResourceDiscovery$OwnerId' => '

The ID of the owner.

', 'IpamResourceDiscovery$IpamResourceDiscoveryArn' => '

The resource discovery Amazon Resource Name (ARN).

', 'IpamResourceDiscovery$IpamResourceDiscoveryRegion' => '

The resource discovery Region.

', 'IpamResourceDiscovery$Description' => '

The resource discovery description.

', 'IpamResourceDiscoveryAssociation$OwnerId' => '

The Amazon Web Services account ID of the resource discovery owner.

', 'IpamResourceDiscoveryAssociation$IpamResourceDiscoveryAssociationArn' => '

The resource discovery association Amazon Resource Name (ARN).

', 'IpamResourceDiscoveryAssociation$IpamRegion' => '

The IPAM home Region.

', 'IpamResourceTag$Key' => '

The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'IpamResourceTag$Value' => '

The value of the tag.

', 'IpamScope$OwnerId' => '

The Amazon Web Services account ID of the owner of the scope.

', 'IpamScope$IpamRegion' => '

The Amazon Web Services Region of the IPAM scope.

', 'IpamScope$Description' => '

The description of the scope.

', 'Ipv4PrefixSpecification$Ipv4Prefix' => '

The IPv4 prefix. For information, see Assigning prefixes to Amazon EC2 network interfaces in the Amazon Elastic Compute Cloud User Guide.

', 'Ipv4PrefixSpecificationRequest$Ipv4Prefix' => '

The IPv4 prefix. For information, see Assigning prefixes to Amazon EC2 network interfaces in the Amazon Elastic Compute Cloud User Guide.

', 'Ipv4PrefixSpecificationResponse$Ipv4Prefix' => '

The IPv4 delegated prefixes assigned to the network interface.

', 'Ipv6AddressList$member' => NULL, 'Ipv6CidrAssociation$Ipv6Cidr' => '

The IPv6 CIDR block.

', 'Ipv6CidrAssociation$AssociatedResource' => '

The resource that\'s associated with the IPv6 CIDR block.

', 'Ipv6CidrBlock$Ipv6CidrBlock' => '

The IPv6 CIDR block.

', 'Ipv6Pool$PoolId' => '

The ID of the address pool.

', 'Ipv6Pool$Description' => '

The description for the address pool.

', 'Ipv6PrefixSpecification$Ipv6Prefix' => '

The IPv6 prefix.

', 'Ipv6PrefixSpecificationRequest$Ipv6Prefix' => '

The IPv6 prefix.

', 'Ipv6PrefixSpecificationResponse$Ipv6Prefix' => '

The IPv6 delegated prefixes assigned to the network interface.

', 'Ipv6Range$CidrIpv6' => '

The IPv6 CIDR range. You can either specify a CIDR range or a source security group, not both. To specify a single IPv6 address, use the /128 prefix length.

', 'Ipv6Range$Description' => '

A description for the security group rule that references this IPv6 address range.

Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$*

', 'KeyPair$KeyFingerprint' => '
  • For RSA key pairs, the key fingerprint is the SHA-1 digest of the DER encoded private key.

  • For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.

', 'KeyPair$KeyName' => '

The name of the key pair.

', 'KeyPair$KeyPairId' => '

The ID of the key pair.

', 'KeyPairInfo$KeyPairId' => '

The ID of the key pair.

', 'KeyPairInfo$KeyFingerprint' => '

If you used CreateKeyPair to create the key pair:

  • For RSA key pairs, the key fingerprint is the SHA-1 digest of the DER encoded private key.

  • For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.

If you used ImportKeyPair to provide Amazon Web Services the public key:

  • For RSA key pairs, the key fingerprint is the MD5 public key fingerprint as specified in section 4 of RFC4716.

  • For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.

', 'KeyPairInfo$KeyName' => '

The name of the key pair.

', 'KeyPairInfo$PublicKey' => '

The public key material.

', 'LastError$Message' => '

The error message for the VPC endpoint error.

', 'LastError$Code' => '

The error code for the VPC endpoint error.

', 'LaunchPermission$UserId' => '

The Amazon Web Services account ID.

Constraints: Up to 10 000 account IDs can be specified in a single request.

', 'LaunchPermission$OrganizationArn' => '

The Amazon Resource Name (ARN) of an organization.

', 'LaunchPermission$OrganizationalUnitArn' => '

The Amazon Resource Name (ARN) of an organizational unit (OU).

', 'LaunchSpecification$AddressingType' => '

Deprecated.

', 'LaunchSpecification$ImageId' => '

The ID of the AMI.

', 'LaunchSpecification$KernelId' => '

The ID of the kernel.

', 'LaunchSpecification$KeyName' => '

The name of the key pair.

', 'LaunchSpecification$RamdiskId' => '

The ID of the RAM disk.

', 'LaunchSpecification$SubnetId' => '

The ID of the subnet in which to launch the instance.

', 'LaunchTemplate$LaunchTemplateId' => '

The ID of the launch template.

', 'LaunchTemplate$CreatedBy' => '

The principal that created the launch template.

', 'LaunchTemplateBlockDeviceMapping$DeviceName' => '

The device name.

', 'LaunchTemplateBlockDeviceMapping$VirtualName' => '

The virtual device name (ephemeralN).

', 'LaunchTemplateBlockDeviceMapping$NoDevice' => '

To omit the device from the block device mapping, specify an empty string.

', 'LaunchTemplateBlockDeviceMappingRequest$DeviceName' => '

The device name (for example, /dev/sdh or xvdh).

', 'LaunchTemplateBlockDeviceMappingRequest$VirtualName' => '

The virtual device name (ephemeralN). Instance store volumes are numbered starting from 0. An instance type with 2 available instance store volumes can specify mappings for ephemeral0 and ephemeral1. The number of available instance store volumes depends on the instance type. After you connect to the instance, you must mount the volume.

', 'LaunchTemplateBlockDeviceMappingRequest$NoDevice' => '

To omit the device from the block device mapping, specify an empty string.

', 'LaunchTemplateElasticInferenceAccelerator$Type' => '

The type of elastic inference accelerator. The possible values are eia1.medium, eia1.large, and eia1.xlarge.

', 'LaunchTemplateElasticInferenceAcceleratorResponse$Type' => '

The type of elastic inference accelerator. The possible values are eia1.medium, eia1.large, and eia1.xlarge.

', 'LaunchTemplateIamInstanceProfileSpecification$Arn' => '

The Amazon Resource Name (ARN) of the instance profile.

', 'LaunchTemplateIamInstanceProfileSpecification$Name' => '

The name of the instance profile.

', 'LaunchTemplateIamInstanceProfileSpecificationRequest$Arn' => '

The Amazon Resource Name (ARN) of the instance profile.

', 'LaunchTemplateIamInstanceProfileSpecificationRequest$Name' => '

The name of the instance profile.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$Description' => '

A description for the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$InterfaceType' => '

The type of network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$PrivateIpAddress' => '

The primary private IPv4 address of the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$Description' => '

A description for the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$InterfaceType' => '

The type of network interface. To create an Elastic Fabric Adapter (EFA), specify efa. For more information, see Elastic Fabric Adapter in the Amazon Elastic Compute Cloud User Guide.

If you are not creating an EFA, specify interface or omit this parameter.

Valid values: interface | efa

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$PrivateIpAddress' => '

The primary private IPv4 address of the network interface.

', 'LaunchTemplateLicenseConfiguration$LicenseConfigurationArn' => '

The Amazon Resource Name (ARN) of the license configuration.

', 'LaunchTemplateLicenseConfigurationRequest$LicenseConfigurationArn' => '

The Amazon Resource Name (ARN) of the license configuration.

', 'LaunchTemplateOverrides$SpotPrice' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'LaunchTemplateOverrides$AvailabilityZone' => '

The Availability Zone in which to launch the instances.

', 'LaunchTemplatePlacement$AvailabilityZone' => '

The Availability Zone of the instance.

', 'LaunchTemplatePlacement$Affinity' => '

The affinity setting for the instance on the Dedicated Host.

', 'LaunchTemplatePlacement$GroupName' => '

The name of the placement group for the instance.

', 'LaunchTemplatePlacement$HostId' => '

The ID of the Dedicated Host for the instance.

', 'LaunchTemplatePlacement$SpreadDomain' => '

Reserved for future use.

', 'LaunchTemplatePlacement$HostResourceGroupArn' => '

The ARN of the host resource group in which to launch the instances.

', 'LaunchTemplatePlacementRequest$AvailabilityZone' => '

The Availability Zone for the instance.

', 'LaunchTemplatePlacementRequest$Affinity' => '

The affinity setting for an instance on a Dedicated Host.

', 'LaunchTemplatePlacementRequest$SpreadDomain' => '

Reserved for future use.

', 'LaunchTemplatePlacementRequest$HostResourceGroupArn' => '

The ARN of the host resource group in which to launch the instances. If you specify a host resource group ARN, omit the Tenancy parameter or set it to host.

', 'LaunchTemplateSpecification$LaunchTemplateName' => '

The name of the launch template.

You must specify the LaunchTemplateName or the LaunchTemplateId, but not both.

', 'LaunchTemplateSpecification$Version' => '

The launch template version number, $Latest, or $Default.

If the value is $Latest, Amazon EC2 uses the latest version of the launch template.

If the value is $Default, Amazon EC2 uses the default version of the launch template.

Default: The default version of the launch template.

', 'LaunchTemplateSpotMarketOptions$MaxPrice' => '

The maximum hourly price you\'re willing to pay for the Spot Instances. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not specify this parameter.

', 'LaunchTemplateSpotMarketOptionsRequest$MaxPrice' => '

The maximum hourly price you\'re willing to pay for the Spot Instances. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not specify this parameter.

', 'LaunchTemplateVersion$LaunchTemplateId' => '

The ID of the launch template.

', 'LaunchTemplateVersion$CreatedBy' => '

The principal that created the version.

', 'LicenseConfiguration$LicenseConfigurationArn' => '

The Amazon Resource Name (ARN) of the license configuration.

', 'LicenseConfigurationRequest$LicenseConfigurationArn' => '

The Amazon Resource Name (ARN) of the license configuration.

', 'ListImagesInRecycleBinRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'ListImagesInRecycleBinResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'ListSnapshotsInRecycleBinRequest$NextToken' => '

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

', 'ListSnapshotsInRecycleBinResult$NextToken' => '

The token to include in another request to get the next page of items. This value is null when there are no more items to return.

', 'LoadPermission$UserId' => '

The Amazon Web Services account ID.

', 'LoadPermissionRequest$UserId' => '

The Amazon Web Services account ID.

', 'LocalGateway$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'LocalGateway$OwnerId' => '

The ID of the Amazon Web Services account that owns the local gateway.

', 'LocalGateway$State' => '

The state of the local gateway.

', 'LocalGatewayRoute$DestinationCidrBlock' => '

The CIDR block used for destination matches.

', 'LocalGatewayRoute$OwnerId' => '

The ID of the Amazon Web Services account that owns the local gateway route.

', 'LocalGatewayRouteTable$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'LocalGatewayRouteTable$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'LocalGatewayRouteTable$OwnerId' => '

The ID of the Amazon Web Services account that owns the local gateway route table.

', 'LocalGatewayRouteTable$State' => '

The state of the local gateway route table.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation$LocalGatewayId' => '

The ID of the local gateway.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation$OwnerId' => '

The ID of the Amazon Web Services account that owns the local gateway virtual interface group association.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation$State' => '

The state of the association.

', 'LocalGatewayRouteTableVpcAssociation$LocalGatewayRouteTableId' => '

The ID of the local gateway route table.

', 'LocalGatewayRouteTableVpcAssociation$LocalGatewayId' => '

The ID of the local gateway.

', 'LocalGatewayRouteTableVpcAssociation$VpcId' => '

The ID of the VPC.

', 'LocalGatewayRouteTableVpcAssociation$OwnerId' => '

The ID of the Amazon Web Services account that owns the local gateway route table for the association.

', 'LocalGatewayRouteTableVpcAssociation$State' => '

The state of the association.

', 'LocalGatewayVirtualInterface$LocalGatewayId' => '

The ID of the local gateway.

', 'LocalGatewayVirtualInterface$LocalAddress' => '

The local address.

', 'LocalGatewayVirtualInterface$PeerAddress' => '

The peer address.

', 'LocalGatewayVirtualInterface$OwnerId' => '

The ID of the Amazon Web Services account that owns the local gateway virtual interface.

', 'LocalGatewayVirtualInterfaceGroup$LocalGatewayId' => '

The ID of the local gateway.

', 'LocalGatewayVirtualInterfaceGroup$OwnerId' => '

The ID of the Amazon Web Services account that owns the local gateway virtual interface group.

', 'LockSnapshotResult$SnapshotId' => '

The ID of the snapshot

', 'LockedSnapshotsInfo$OwnerId' => '

The account ID of the Amazon Web Services account that owns the snapshot.

', 'LockedSnapshotsInfo$SnapshotId' => '

The ID of the snapshot.

', 'MaintenanceDetails$PendingMaintenance' => '

Verify existence of a pending maintenance.

', 'ManagedPrefixList$AddressFamily' => '

The IP address version.

', 'ManagedPrefixList$StateMessage' => '

The state message.

', 'ManagedPrefixList$PrefixListName' => '

The name of the prefix list.

', 'ManagedPrefixList$OwnerId' => '

The ID of the owner of the prefix list.

', 'MetricPoint$Status' => '

The status of the metric point.

', 'ModifyAddressAttributeRequest$DomainName' => '

The domain name to modify for the IP address.

', 'ModifyAvailabilityZoneGroupRequest$GroupName' => '

The name of the Availability Zone group, Local Zone group, or Wavelength Zone group.

', 'ModifyCapacityReservationRequest$AdditionalInfo' => '

Reserved for future use.

', 'ModifyClientVpnEndpointRequest$ServerCertificateArn' => '

The ARN of the server certificate to be used. The server certificate must be provisioned in Certificate Manager (ACM).

', 'ModifyClientVpnEndpointRequest$Description' => '

A brief description of the Client VPN endpoint.

', 'ModifyDefaultCreditSpecificationRequest$CpuCredits' => '

The credit option for CPU usage of the instance family.

Valid Values: standard | unlimited

', 'ModifyEbsDefaultKmsKeyIdResult$KmsKeyId' => '

The Amazon Resource Name (ARN) of the default KMS key for encryption by default.

', 'ModifyFleetRequest$Context' => '

Reserved.

', 'ModifyFpgaImageAttributeRequest$Description' => '

A description for the AFI.

', 'ModifyFpgaImageAttributeRequest$Name' => '

A name for the AFI.

', 'ModifyHostsRequest$InstanceType' => '

Specifies the instance type to be supported by the Dedicated Host. Specify this parameter to modify a Dedicated Host to support only a specific instance type.

If you want to modify a Dedicated Host to support multiple instance types in its current instance family, omit this parameter and specify InstanceFamily instead. You cannot specify InstanceType and InstanceFamily in the same request.

', 'ModifyHostsRequest$InstanceFamily' => '

Specifies the instance family to be supported by the Dedicated Host. Specify this parameter to modify a Dedicated Host to support multiple instance types within its current instance family.

If you want to modify a Dedicated Host to support a specific instance type only, omit this parameter and specify InstanceType instead. You cannot specify InstanceFamily and InstanceType in the same request.

', 'ModifyIdFormatRequest$Resource' => '

The type of resource: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | route-table | route-table-association | security-group | subnet | subnet-cidr-block-association | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway.

Alternatively, use the all-current option to include all resource types that are currently within their opt-in period for longer IDs.

', 'ModifyIdentityIdFormatRequest$PrincipalArn' => '

The ARN of the principal, which can be an IAM user, IAM role, or the root user. Specify all to modify the ID format for all IAM users, IAM roles, and the root user of the account.

', 'ModifyIdentityIdFormatRequest$Resource' => '

The type of resource: bundle | conversion-task | customer-gateway | dhcp-options | elastic-ip-allocation | elastic-ip-association | export-task | flow-log | image | import-task | internet-gateway | network-acl | network-acl-association | network-interface | network-interface-attachment | prefix-list | route-table | route-table-association | security-group | subnet | subnet-cidr-block-association | vpc | vpc-cidr-block-association | vpc-endpoint | vpc-peering-connection | vpn-connection | vpn-gateway.

Alternatively, use the all-current option to include all resource types that are currently within their opt-in period for longer IDs.

', 'ModifyImageAttributeRequest$Attribute' => '

The name of the attribute to modify.

Valid values: description | imdsSupport | launchPermission

', 'ModifyImageAttributeRequest$Value' => '

The value of the attribute being modified. This parameter can be used only when the Attribute parameter is description or imdsSupport.

', 'ModifyInstanceAttributeRequest$Value' => '

A new value for the attribute. Use only with the kernel, ramdisk, userData, disableApiTermination, or instanceInitiatedShutdownBehavior attribute.

', 'ModifyInstanceCreditSpecificationRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyInstanceEventStartTimeRequest$InstanceEventId' => '

The ID of the event whose date and time you are modifying.

', 'ModifyInstanceEventWindowRequest$Name' => '

The name of the event window.

', 'ModifyInstanceMaintenanceOptionsResult$InstanceId' => '

The ID of the instance.

', 'ModifyInstanceMetadataOptionsResult$InstanceId' => '

The ID of the instance.

', 'ModifyInstancePlacementRequest$HostResourceGroupArn' => '

The ARN of the host resource group in which to place the instance. The instance must have a tenancy of host to specify this parameter.

', 'ModifyIpamPoolRequest$Description' => '

The description of the IPAM pool you want to modify.

', 'ModifyIpamRequest$Description' => '

The description of the IPAM you want to modify.

', 'ModifyIpamResourceCidrRequest$ResourceId' => '

The ID of the resource you want to modify.

', 'ModifyIpamResourceCidrRequest$ResourceCidr' => '

The CIDR of the resource you want to modify.

', 'ModifyIpamResourceCidrRequest$ResourceRegion' => '

The Amazon Web Services Region of the resource you want to modify.

', 'ModifyIpamResourceDiscoveryRequest$Description' => '

A resource discovery description.

', 'ModifyIpamScopeRequest$Description' => '

The description of the scope you want to modify.

', 'ModifyLaunchTemplateRequest$ClientToken' => '

Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

Constraint: Maximum 128 ASCII characters.

', 'ModifyLaunchTemplateRequest$DefaultVersion' => '

The version number of the launch template to set as the default version.

', 'ModifyLocalGatewayRouteRequest$DestinationCidrBlock' => '

The CIDR block used for destination matches. The value that you provide must match the CIDR of an existing route in the table.

', 'ModifyManagedPrefixListRequest$PrefixListName' => '

A name for the prefix list.

', 'ModifyReservedInstancesRequest$ClientToken' => '

A unique, case-sensitive token you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyReservedInstancesResult$ReservedInstancesModificationId' => '

The ID for the modification.

', 'ModifySnapshotTierResult$SnapshotId' => '

The ID of the snapshot.

', 'ModifySpotFleetRequestRequest$Context' => '

Reserved.

', 'ModifyTrafficMirrorFilterRuleRequest$DestinationCidrBlock' => '

The destination CIDR block to assign to the Traffic Mirror rule.

', 'ModifyTrafficMirrorFilterRuleRequest$SourceCidrBlock' => '

The source CIDR block to assign to the Traffic Mirror rule.

', 'ModifyTrafficMirrorFilterRuleRequest$Description' => '

The description to assign to the Traffic Mirror rule.

', 'ModifyTrafficMirrorSessionRequest$Description' => '

The description to assign to the Traffic Mirror session.

', 'ModifyTransitGatewayRequest$Description' => '

The description for the transit gateway.

', 'ModifyVerifiedAccessEndpointPolicyRequest$PolicyDocument' => '

The Verified Access policy document.

', 'ModifyVerifiedAccessEndpointPolicyRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyVerifiedAccessEndpointPolicyResult$PolicyDocument' => '

The Verified Access policy document.

', 'ModifyVerifiedAccessEndpointRequest$Description' => '

A description for the Verified Access endpoint.

', 'ModifyVerifiedAccessEndpointRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyVerifiedAccessGroupPolicyRequest$PolicyDocument' => '

The Verified Access policy document.

', 'ModifyVerifiedAccessGroupPolicyRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyVerifiedAccessGroupPolicyResult$PolicyDocument' => '

The Verified Access policy document.

', 'ModifyVerifiedAccessGroupRequest$Description' => '

A description for the Verified Access group.

', 'ModifyVerifiedAccessGroupRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyVerifiedAccessInstanceLoggingConfigurationRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyVerifiedAccessInstanceRequest$Description' => '

A description for the Verified Access instance.

', 'ModifyVerifiedAccessInstanceRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyVerifiedAccessTrustProviderDeviceOptions$PublicSigningKeyUrl' => '

The URL Amazon Web Services Verified Access will use to verify the authenticity of the device tokens.

', 'ModifyVerifiedAccessTrustProviderOidcOptions$Issuer' => '

The OIDC issuer.

', 'ModifyVerifiedAccessTrustProviderOidcOptions$AuthorizationEndpoint' => '

The OIDC authorization endpoint.

', 'ModifyVerifiedAccessTrustProviderOidcOptions$TokenEndpoint' => '

The OIDC token endpoint.

', 'ModifyVerifiedAccessTrustProviderOidcOptions$UserInfoEndpoint' => '

The OIDC user info endpoint.

', 'ModifyVerifiedAccessTrustProviderOidcOptions$ClientId' => '

The client identifier.

', 'ModifyVerifiedAccessTrustProviderOidcOptions$Scope' => '

OpenID Connect (OIDC) scopes are used by an application during authentication to authorize access to a user\'s details. Each scope returns a specific set of user attributes.

', 'ModifyVerifiedAccessTrustProviderRequest$Description' => '

A description for the Verified Access trust provider.

', 'ModifyVerifiedAccessTrustProviderRequest$ClientToken' => '

A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

', 'ModifyVpcEndpointConnectionNotificationRequest$ConnectionNotificationArn' => '

The ARN for the SNS topic for the notification.

', 'ModifyVpcEndpointRequest$PolicyDocument' => '

(Interface and gateway endpoints) A policy to attach to the endpoint that controls access to the service. The policy must be in valid JSON format.

', 'ModifyVpcEndpointServiceConfigurationRequest$PrivateDnsName' => '

(Interface endpoint configuration) The private DNS name to assign to the endpoint service.

', 'ModifyVpnConnectionOptionsRequest$LocalIpv4NetworkCidr' => '

The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection.

Default: 0.0.0.0/0

', 'ModifyVpnConnectionOptionsRequest$RemoteIpv4NetworkCidr' => '

The IPv4 CIDR on the Amazon Web Services side of the VPN connection.

Default: 0.0.0.0/0

', 'ModifyVpnConnectionOptionsRequest$LocalIpv6NetworkCidr' => '

The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection.

Default: ::/0

', 'ModifyVpnConnectionOptionsRequest$RemoteIpv6NetworkCidr' => '

The IPv6 CIDR on the Amazon Web Services side of the VPN connection.

Default: ::/0

', 'ModifyVpnTunnelCertificateRequest$VpnTunnelOutsideIpAddress' => '

The external IP address of the VPN tunnel.

', 'ModifyVpnTunnelOptionsRequest$VpnTunnelOutsideIpAddress' => '

The external IP address of the VPN tunnel.

', 'ModifyVpnTunnelOptionsSpecification$TunnelInsideCidr' => '

The range of inside IPv4 addresses for the tunnel. Any specified CIDR blocks must be unique across all VPN connections that use the same virtual private gateway.

Constraints: A size /30 CIDR block from the 169.254.0.0/16 range. The following CIDR blocks are reserved and cannot be used:

  • 169.254.0.0/30

  • 169.254.1.0/30

  • 169.254.2.0/30

  • 169.254.3.0/30

  • 169.254.4.0/30

  • 169.254.5.0/30

  • 169.254.169.252/30

', 'ModifyVpnTunnelOptionsSpecification$TunnelInsideIpv6Cidr' => '

The range of inside IPv6 addresses for the tunnel. Any specified CIDR blocks must be unique across all VPN connections that use the same transit gateway.

Constraints: A size /126 CIDR block from the local fd00::/8 range.

', 'ModifyVpnTunnelOptionsSpecification$DPDTimeoutAction' => '

The action to take after DPD timeout occurs. Specify restart to restart the IKE initiation. Specify clear to end the IKE session.

Valid Values: clear | none | restart

Default: clear

', 'ModifyVpnTunnelOptionsSpecification$StartupAction' => '

The action to take when the establishing the tunnel for the VPN connection. By default, your customer gateway device must initiate the IKE negotiation and bring up the tunnel. Specify start for Amazon Web Services to initiate the IKE negotiation.

Valid Values: add | start

Default: add

', 'MoveAddressToVpcRequest$PublicIp' => '

The Elastic IP address.

', 'MoveAddressToVpcResult$AllocationId' => '

The allocation ID for the Elastic IP address.

', 'MoveByoipCidrToIpamRequest$Cidr' => '

The BYOIP CIDR.

', 'MoveByoipCidrToIpamRequest$IpamPoolOwner' => '

The Amazon Web Services account ID of the owner of the IPAM pool.

', 'MovingAddressStatus$PublicIp' => '

The Elastic IP address.

', 'NatGateway$FailureCode' => '

If the NAT gateway could not be created, specifies the error code for the failure. (InsufficientFreeAddressesInSubnet | Gateway.NotAttached | InvalidAllocationID.NotFound | Resource.AlreadyAssociated | InternalError | InvalidSubnetID.NotFound)

', 'NatGateway$FailureMessage' => '

If the NAT gateway could not be created, specifies the error message for the failure, that corresponds to the error code.

  • For InsufficientFreeAddressesInSubnet: "Subnet has insufficient free addresses to create this NAT gateway"

  • For Gateway.NotAttached: "Network vpc-xxxxxxxx has no Internet gateway attached"

  • For InvalidAllocationID.NotFound: "Elastic IP address eipalloc-xxxxxxxx could not be associated with this NAT gateway"

  • For Resource.AlreadyAssociated: "Elastic IP address eipalloc-xxxxxxxx is already associated"

  • For InternalError: "Network interface eni-xxxxxxxx, created and used internally by this NAT gateway is in an invalid state. Please try again."

  • For InvalidSubnetID.NotFound: "The specified subnet subnet-xxxxxxxx does not exist or could not be found."

', 'NatGateway$NatGatewayId' => '

The ID of the NAT gateway.

', 'NatGateway$SubnetId' => '

The ID of the subnet in which the NAT gateway is located.

', 'NatGateway$VpcId' => '

The ID of the VPC in which the NAT gateway is located.

', 'NatGatewayAddress$AllocationId' => '

[Public NAT gateway only] The allocation ID of the Elastic IP address that\'s associated with the NAT gateway.

', 'NatGatewayAddress$NetworkInterfaceId' => '

The ID of the network interface associated with the NAT gateway.

', 'NatGatewayAddress$PrivateIp' => '

The private IP address associated with the NAT gateway.

', 'NatGatewayAddress$PublicIp' => '

[Public NAT gateway only] The Elastic IP address associated with the NAT gateway.

', 'NatGatewayAddress$AssociationId' => '

[Public NAT gateway only] The association ID of the Elastic IP address that\'s associated with the NAT gateway.

', 'NatGatewayAddress$FailureMessage' => '

The address failure message.

', 'NetworkAcl$NetworkAclId' => '

The ID of the network ACL.

', 'NetworkAcl$VpcId' => '

The ID of the VPC for the network ACL.

', 'NetworkAcl$OwnerId' => '

The ID of the Amazon Web Services account that owns the network ACL.

', 'NetworkAclAssociation$NetworkAclAssociationId' => '

The ID of the association between a network ACL and a subnet.

', 'NetworkAclAssociation$NetworkAclId' => '

The ID of the network ACL.

', 'NetworkAclAssociation$SubnetId' => '

The ID of the subnet.

', 'NetworkAclEntry$CidrBlock' => '

The IPv4 network range to allow or deny, in CIDR notation.

', 'NetworkAclEntry$Ipv6CidrBlock' => '

The IPv6 network range to allow or deny, in CIDR notation.

', 'NetworkAclEntry$Protocol' => '

The protocol number. A value of "-1" means all protocols.

', 'NetworkInsightsAccessScopeAnalysis$StatusMessage' => '

The status message.

', 'NetworkInsightsAccessScopeAnalysis$WarningMessage' => '

The warning message.

', 'NetworkInsightsAnalysis$StatusMessage' => '

The status message, if the status is failed.

', 'NetworkInsightsAnalysis$WarningMessage' => '

The warning message.

', 'NetworkInsightsPath$Source' => '

The ID of the source.

', 'NetworkInsightsPath$Destination' => '

The ID of the destination.

', 'NetworkInterface$AvailabilityZone' => '

The Availability Zone.

', 'NetworkInterface$Description' => '

A description.

', 'NetworkInterface$MacAddress' => '

The MAC address.

', 'NetworkInterface$NetworkInterfaceId' => '

The ID of the network interface.

', 'NetworkInterface$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'NetworkInterface$OwnerId' => '

The Amazon Web Services account ID of the owner of the network interface.

', 'NetworkInterface$PrivateDnsName' => '

The private DNS name.

', 'NetworkInterface$PrivateIpAddress' => '

The IPv4 address of the network interface within the subnet.

', 'NetworkInterface$RequesterId' => '

The alias or Amazon Web Services account ID of the principal or service that created the network interface.

', 'NetworkInterface$SubnetId' => '

The ID of the subnet.

', 'NetworkInterface$VpcId' => '

The ID of the VPC.

', 'NetworkInterface$Ipv6Address' => '

The IPv6 globally unique address associated with the network interface.

', 'NetworkInterfaceAssociation$AllocationId' => '

The allocation ID.

', 'NetworkInterfaceAssociation$AssociationId' => '

The association ID.

', 'NetworkInterfaceAssociation$IpOwnerId' => '

The ID of the Elastic IP address owner.

', 'NetworkInterfaceAssociation$PublicDnsName' => '

The public DNS name.

', 'NetworkInterfaceAssociation$PublicIp' => '

The address of the Elastic IP address bound to the network interface.

', 'NetworkInterfaceAssociation$CustomerOwnedIp' => '

The customer-owned IP address associated with the network interface.

', 'NetworkInterfaceAssociation$CarrierIp' => '

The carrier IP address associated with the network interface.

This option is only available when the network interface is in a subnet which is associated with a Wavelength Zone.

', 'NetworkInterfaceAttachment$AttachmentId' => '

The ID of the network interface attachment.

', 'NetworkInterfaceAttachment$InstanceId' => '

The ID of the instance.

', 'NetworkInterfaceAttachment$InstanceOwnerId' => '

The Amazon Web Services account ID of the owner of the instance.

', 'NetworkInterfaceIdSet$member' => NULL, 'NetworkInterfaceIpv6Address$Ipv6Address' => '

The IPv6 address.

', 'NetworkInterfacePermission$NetworkInterfacePermissionId' => '

The ID of the network interface permission.

', 'NetworkInterfacePermission$NetworkInterfaceId' => '

The ID of the network interface.

', 'NetworkInterfacePermission$AwsAccountId' => '

The Amazon Web Services account ID.

', 'NetworkInterfacePermission$AwsService' => '

The Amazon Web Service.

', 'NetworkInterfacePermissionState$StatusMessage' => '

A status message, if applicable.

', 'NetworkInterfacePrivateIpAddress$PrivateDnsName' => '

The private DNS name.

', 'NetworkInterfacePrivateIpAddress$PrivateIpAddress' => '

The private IPv4 address.

', 'NetworkNodesList$member' => NULL, 'NewDhcpConfiguration$Key' => NULL, 'OidcOptions$Issuer' => '

The OIDC issuer.

', 'OidcOptions$AuthorizationEndpoint' => '

The OIDC authorization endpoint.

', 'OidcOptions$TokenEndpoint' => '

The OIDC token endpoint.

', 'OidcOptions$UserInfoEndpoint' => '

The OIDC user info endpoint.

', 'OidcOptions$ClientId' => '

The client identifier.

', 'OidcOptions$Scope' => '

The OpenID Connect (OIDC) scope specified.

', 'OnDemandOptions$MaxTotalPrice' => '

The maximum amount per hour for On-Demand Instances that you\'re willing to pay.

If your fleet includes T instances that are configured as unlimited, and if their average CPU usage exceeds the baseline utilization, you will incur a charge for surplus credits. The maxTotalPrice does not account for surplus credits, and, if you use surplus credits, your final cost might be higher than what you specified for maxTotalPrice. For more information, see Surplus credits can incur charges in the EC2 User Guide.

', 'OnDemandOptionsRequest$MaxTotalPrice' => '

The maximum amount per hour for On-Demand Instances that you\'re willing to pay.

If your fleet includes T instances that are configured as unlimited, and if their average CPU usage exceeds the baseline utilization, you will incur a charge for surplus credits. The MaxTotalPrice does not account for surplus credits, and, if you use surplus credits, your final cost might be higher than what you specified for MaxTotalPrice. For more information, see Surplus credits can incur charges in the EC2 User Guide.

', 'OrganizationArnStringList$member' => NULL, 'OrganizationalUnitArnStringList$member' => NULL, 'OwnerStringList$member' => NULL, 'PathComponent$ServiceName' => '

The name of the VPC endpoint service.

', 'PciId$DeviceId' => '

The ID of the device.

', 'PciId$VendorId' => '

The ID of the vendor.

', 'PciId$SubsystemId' => '

The ID of the subsystem.

', 'PciId$SubsystemVendorId' => '

The ID of the vendor for the subsystem.

', 'PeeringAttachmentStatus$Code' => '

The status code.

', 'PeeringAttachmentStatus$Message' => '

The status message, if applicable.

', 'PeeringTgwInfo$TransitGatewayId' => '

The ID of the transit gateway.

', 'PeeringTgwInfo$CoreNetworkId' => '

The ID of the core network where the transit gateway peer is located.

', 'PeeringTgwInfo$OwnerId' => '

The ID of the Amazon Web Services account that owns the transit gateway.

', 'PeeringTgwInfo$Region' => '

The Region of the transit gateway.

', 'Phase1EncryptionAlgorithmsListValue$Value' => '

The value for the encryption algorithm.

', 'Phase1EncryptionAlgorithmsRequestListValue$Value' => '

The value for the encryption algorithm.

', 'Phase1IntegrityAlgorithmsListValue$Value' => '

The value for the integrity algorithm.

', 'Phase1IntegrityAlgorithmsRequestListValue$Value' => '

The value for the integrity algorithm.

', 'Phase2EncryptionAlgorithmsListValue$Value' => '

The encryption algorithm.

', 'Phase2EncryptionAlgorithmsRequestListValue$Value' => '

The encryption algorithm.

', 'Phase2IntegrityAlgorithmsListValue$Value' => '

The integrity algorithm.

', 'Phase2IntegrityAlgorithmsRequestListValue$Value' => '

The integrity algorithm.

', 'Placement$AvailabilityZone' => '

The Availability Zone of the instance.

If not specified, an Availability Zone will be automatically chosen for you based on the load balancing criteria for the Region.

This parameter is not supported for CreateFleet.

', 'Placement$Affinity' => '

The affinity setting for the instance on the Dedicated Host.

This parameter is not supported for CreateFleet or ImportInstance.

', 'Placement$HostId' => '

The ID of the Dedicated Host on which the instance resides.

This parameter is not supported for CreateFleet or ImportInstance.

', 'Placement$SpreadDomain' => '

Reserved for future use.

', 'Placement$HostResourceGroupArn' => '

The ARN of the host resource group in which to launch the instances.

If you specify this parameter, either omit the Tenancy parameter or set it to host.

This parameter is not supported for CreateFleet.

', 'PlacementGroup$GroupName' => '

The name of the placement group.

', 'PlacementGroup$GroupId' => '

The ID of the placement group.

', 'PlacementGroup$GroupArn' => '

The Amazon Resource Name (ARN) of the placement group.

', 'PoolCidrBlock$Cidr' => '

The CIDR block.

', 'PrefixList$PrefixListId' => '

The ID of the prefix.

', 'PrefixList$PrefixListName' => '

The name of the prefix.

', 'PrefixListAssociation$ResourceId' => '

The ID of the resource.

', 'PrefixListAssociation$ResourceOwner' => '

The owner of the resource.

', 'PrefixListEntry$Cidr' => '

The CIDR block.

', 'PrefixListEntry$Description' => '

The description.

', 'PrefixListId$Description' => '

A description for the security group rule that references this prefix list ID.

Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=;{}!$*

', 'PrefixListId$PrefixListId' => '

The ID of the prefix.

', 'PrefixListIdSet$member' => NULL, 'PrincipalIdFormat$Arn' => '

PrincipalIdFormatARN description

', 'PrivateDnsDetails$PrivateDnsName' => '

The private DNS name assigned to the VPC endpoint service.

', 'PrivateDnsNameConfiguration$Type' => '

The endpoint service verification type, for example TXT.

', 'PrivateDnsNameConfiguration$Value' => '

The value the service provider adds to the private DNS name domain record before verification.

', 'PrivateDnsNameConfiguration$Name' => '

The name of the record subdomain the service provider needs to create. The service provider adds the value text to the name.

', 'PrivateIpAddressSpecification$PrivateIpAddress' => '

The private IPv4 address.

', 'PrivateIpAddressStringList$member' => NULL, 'ProductCode$ProductCodeId' => '

The product code.

', 'ProductCodeStringList$member' => NULL, 'ProductDescriptionList$member' => NULL, 'PropagatingVgw$GatewayId' => '

The ID of the virtual private gateway.

', 'ProvisionByoipCidrRequest$Cidr' => '

The public IPv4 or IPv6 address range, in CIDR notation. The most specific IPv4 prefix that you can specify is /24. The most specific IPv6 prefix you can specify is /56. The address range cannot overlap with another address range that you\'ve brought to this or another Region.

', 'ProvisionByoipCidrRequest$Description' => '

A description for the address range and the address pool.

', 'ProvisionByoipCidrRequest$NetworkBorderGroup' => '

If you have Local Zones enabled, you can choose a network border group for Local Zones when you provision and advertise a BYOIPv4 CIDR. Choose the network border group carefully as the EIP and the Amazon Web Services resource it is associated with must reside in the same network border group.

You can provision BYOIP address ranges to and advertise them in the following Local Zone network border groups:

  • us-east-1-dfw-2

  • us-west-2-lax-1

  • us-west-2-phx-2

You cannot provision or advertise BYOIPv6 address ranges in Local Zones at this time.

', 'ProvisionIpamByoasnRequest$Asn' => '

A public 2-byte or 4-byte ASN.

', 'ProvisionIpamPoolCidrRequest$Cidr' => '

The CIDR you want to assign to the IPAM pool. Either "NetmaskLength" or "Cidr" is required. This value will be null if you specify "NetmaskLength" and will be filled in during the provisioning process.

', 'ProvisionIpamPoolCidrRequest$ClientToken' => '

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'ProvisionedBandwidth$Provisioned' => '

Reserved. If you need to sustain traffic greater than the documented limits, contact us through the Support Center.

', 'ProvisionedBandwidth$Requested' => '

Reserved. If you need to sustain traffic greater than the documented limits, contact us through the Support Center.

', 'ProvisionedBandwidth$Status' => '

Reserved. If you need to sustain traffic greater than the documented limits, contact us through the Support Center.

', 'PtrUpdateStatus$Value' => '

The value for the PTR record update.

', 'PtrUpdateStatus$Status' => '

The status of the PTR record update.

', 'PtrUpdateStatus$Reason' => '

The reason for the PTR record update.

', 'PublicIpStringList$member' => NULL, 'PublicIpv4Pool$PoolId' => '

The ID of the address pool.

', 'PublicIpv4Pool$Description' => '

A description of the address pool.

', 'PublicIpv4Pool$NetworkBorderGroup' => '

The name of the location from which the address pool is advertised. A network border group is a unique set of Availability Zones or Local Zones from where Amazon Web Services advertises public IP addresses.

', 'PublicIpv4PoolRange$FirstAddress' => '

The first IP address in the range.

', 'PublicIpv4PoolRange$LastAddress' => '

The last IP address in the range.

', 'Purchase$HourlyPrice' => '

The hourly price of the reservation per hour.

', 'Purchase$InstanceFamily' => '

The instance family on the Dedicated Host that the reservation can be associated with.

', 'Purchase$UpfrontPrice' => '

The upfront price of the reservation.

', 'PurchaseHostReservationRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'PurchaseHostReservationRequest$LimitPrice' => '

The specified limit is checked against the total upfront cost of the reservation (calculated as the offering\'s upfront cost multiplied by the host count). If the total upfront cost is greater than the specified price limit, the request fails. This is used to ensure that the purchase does not exceed the expected upfront cost of the purchase. At this time, the only supported currency is USD. For example, to indicate a limit price of USD 100, specify 100.00.

', 'PurchaseHostReservationResult$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

', 'PurchaseHostReservationResult$TotalHourlyPrice' => '

The total hourly price of the reservation calculated per hour.

', 'PurchaseHostReservationResult$TotalUpfrontPrice' => '

The total amount charged to your account when you purchase the reservation.

', 'PurchaseRequest$PurchaseToken' => '

The purchase token.

', 'PurchaseReservedInstancesOfferingResult$ReservedInstancesId' => '

The IDs of the purchased Reserved Instances. If your purchase crosses into a discounted pricing tier, the final Reserved Instances IDs might change. For more information, see Crossing pricing tiers in the Amazon Elastic Compute Cloud User Guide.

', 'PurchaseScheduledInstancesRequest$ClientToken' => '

Unique, case-sensitive identifier that ensures the idempotency of the request. For more information, see Ensuring Idempotency.

', 'ReferencedSecurityGroup$GroupId' => '

The ID of the security group.

', 'ReferencedSecurityGroup$PeeringStatus' => '

The status of a VPC peering connection, if applicable.

', 'ReferencedSecurityGroup$UserId' => '

The Amazon Web Services account ID.

', 'ReferencedSecurityGroup$VpcId' => '

The ID of the VPC.

', 'ReferencedSecurityGroup$VpcPeeringConnectionId' => '

The ID of the VPC peering connection (if applicable).

', 'Region$Endpoint' => '

The Region service endpoint.

', 'Region$RegionName' => '

The name of the Region.

', 'Region$OptInStatus' => '

The Region opt-in status. The possible values are opt-in-not-required, opted-in, and not-opted-in.

', 'RegionNameStringList$member' => NULL, 'RegionNames$member' => NULL, 'RegisterImageRequest$ImageLocation' => '

The full path to your AMI manifest in Amazon S3 storage. The specified bucket must have the aws-exec-read canned access control list (ACL) to ensure that it can be accessed by Amazon EC2. For more information, see Canned ACLs in the Amazon S3 Service Developer Guide.

', 'RegisterImageRequest$Description' => '

A description for your AMI.

', 'RegisterImageRequest$Name' => '

A name for your AMI.

Constraints: 3-128 alphanumeric characters, parentheses (()), square brackets ([]), spaces ( ), periods (.), slashes (/), dashes (-), single quotes (\'), at-signs (@), or underscores(_)

', 'RegisterImageRequest$RootDeviceName' => '

The device name of the root device volume (for example, /dev/sda1).

', 'RegisterImageRequest$SriovNetSupport' => '

Set to simple to enable enhanced networking with the Intel 82599 Virtual Function interface for the AMI and any instances that you launch from the AMI.

There is no way to disable sriovNetSupport at this time.

This option is supported only for HVM AMIs. Specifying this option with a PV AMI can make instances launched from the AMI unreachable.

', 'RegisterImageRequest$VirtualizationType' => '

The type of virtualization (hvm | paravirtual).

Default: paravirtual

', 'RegisterImageResult$ImageId' => '

The ID of the newly registered AMI.

', 'RegisterTransitGatewayMulticastGroupMembersRequest$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'RegisterTransitGatewayMulticastGroupSourcesRequest$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'ReleaseAddressRequest$PublicIp' => '

Deprecated.

', 'ReleaseAddressRequest$NetworkBorderGroup' => '

The set of Availability Zones, Local Zones, or Wavelength Zones from which Amazon Web Services advertises IP addresses.

If you provide an incorrect network border group, you receive an InvalidAddress.NotFound error.

', 'ReleaseIpamPoolAllocationRequest$Cidr' => '

The CIDR of the allocation you want to release.

', 'RemoveIpamOperatingRegion$RegionName' => '

The name of the operating Region you want to remove.

', 'RemovePrefixListEntry$Cidr' => '

The CIDR block.

', 'ReplaceNetworkAclAssociationResult$NewAssociationId' => '

The ID of the new association.

', 'ReplaceNetworkAclEntryRequest$CidrBlock' => '

The IPv4 network range to allow or deny, in CIDR notation (for example 172.16.0.0/24).

', 'ReplaceNetworkAclEntryRequest$Ipv6CidrBlock' => '

The IPv6 network range to allow or deny, in CIDR notation (for example 2001:bd8:1234:1a00::/64).

', 'ReplaceNetworkAclEntryRequest$Protocol' => '

The protocol number. A value of "-1" means all protocols. If you specify "-1" or a protocol number other than "6" (TCP), "17" (UDP), or "1" (ICMP), traffic on all ports is allowed, regardless of any ports or ICMP types or codes that you specify. If you specify protocol "58" (ICMPv6) and specify an IPv4 CIDR block, traffic for all ICMP types and codes allowed, regardless of any that you specify. If you specify protocol "58" (ICMPv6) and specify an IPv6 CIDR block, you must specify an ICMP type and code.

', 'ReplaceRootVolumeTask$InstanceId' => '

The ID of the instance for which the root volume replacement task was created.

', 'ReplaceRootVolumeTask$StartTime' => '

The time the task was started.

', 'ReplaceRootVolumeTask$CompleteTime' => '

The time the task completed.

', 'ReplaceRouteRequest$DestinationCidrBlock' => '

The IPv4 CIDR address block used for the destination match. The value that you provide must match the CIDR of an existing route in the table.

', 'ReplaceRouteRequest$DestinationIpv6CidrBlock' => '

The IPv6 CIDR address block used for the destination match. The value that you provide must match the CIDR of an existing route in the table.

', 'ReplaceRouteTableAssociationResult$NewAssociationId' => '

The ID of the new association.

', 'ReplaceTransitGatewayRouteRequest$DestinationCidrBlock' => '

The CIDR range used for the destination match. Routing decisions are based on the most specific match.

', 'ReplaceVpnTunnelRequest$VpnTunnelOutsideIpAddress' => '

The external IP address of the VPN tunnel.

', 'ReportInstanceStatusRequest$Description' => '

Descriptive text about the health state of your instance.

', 'RequestIpamResourceTag$Key' => '

The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

', 'RequestIpamResourceTag$Value' => '

The value for the tag.

', 'RequestSpotFleetResponse$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'RequestSpotInstancesRequest$AvailabilityZoneGroup' => '

The user-specified name for a logical grouping of requests.

When you specify an Availability Zone group in a Spot Instance request, all Spot Instances in the request are launched in the same Availability Zone. Instance proximity is maintained with this parameter, but the choice of Availability Zone is not. The group applies only to requests for Spot Instances of the same instance type. Any additional Spot Instance requests that are specified with the same Availability Zone group name are launched in that same Availability Zone, as long as at least one instance from the group is still active.

If there is no active instance running in the Availability Zone group that you specify for a new Spot Instance request (all instances are terminated, the request is expired, or the maximum price you specified falls below current Spot price), then Amazon EC2 launches the instance in any Availability Zone where the constraint can be met. Consequently, the subsequent set of Spot Instances could be placed in a different zone from the original request, even if you specified the same Availability Zone group.

Default: Instances are launched in any available Availability Zone.

', 'RequestSpotInstancesRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency in the Amazon EC2 User Guide for Linux Instances.

', 'RequestSpotInstancesRequest$LaunchGroup' => '

The instance launch group. Launch groups are Spot Instances that launch together and terminate together.

Default: Instances are launched and terminated individually

', 'RequestSpotInstancesRequest$SpotPrice' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'RequestSpotLaunchSpecification$AddressingType' => '

Deprecated.

', 'RequestSpotLaunchSpecificationSecurityGroupList$member' => NULL, 'Reservation$OwnerId' => '

The ID of the Amazon Web Services account that owns the reservation.

', 'Reservation$RequesterId' => '

The ID of the requester that launched the instances on your behalf (for example, Amazon Web Services Management Console or Auto Scaling).

', 'Reservation$ReservationId' => '

The ID of the reservation.

', 'ReservationFleetInstanceSpecification$AvailabilityZone' => '

The Availability Zone in which the Capacity Reservation Fleet reserves the capacity. A Capacity Reservation Fleet can\'t span Availability Zones. All instance type specifications that you specify for the Fleet must use the same Availability Zone.

', 'ReservationFleetInstanceSpecification$AvailabilityZoneId' => '

The ID of the Availability Zone in which the Capacity Reservation Fleet reserves the capacity. A Capacity Reservation Fleet can\'t span Availability Zones. All instance type specifications that you specify for the Fleet must use the same Availability Zone.

', 'ReservationValue$HourlyPrice' => '

The hourly rate of the reservation.

', 'ReservationValue$RemainingTotalValue' => '

The balance of the total value (the sum of remainingUpfrontValue + hourlyPrice * number of hours remaining).

', 'ReservationValue$RemainingUpfrontValue' => '

The remaining upfront cost of the reservation.

', 'ReservedInstanceReservationValue$ReservedInstanceId' => '

The ID of the Convertible Reserved Instance that you are exchanging.

', 'ReservedInstances$AvailabilityZone' => '

The Availability Zone in which the Reserved Instance can be used.

', 'ReservedInstances$ReservedInstancesId' => '

The ID of the Reserved Instance.

', 'ReservedInstancesConfiguration$AvailabilityZone' => '

The Availability Zone for the modified Reserved Instances.

', 'ReservedInstancesConfiguration$Platform' => '

The network platform of the modified Reserved Instances.

', 'ReservedInstancesId$ReservedInstancesId' => '

The ID of the Reserved Instance.

', 'ReservedInstancesListing$ClientToken' => '

A unique, case-sensitive key supplied by the client to ensure that the request is idempotent. For more information, see Ensuring Idempotency.

', 'ReservedInstancesListing$ReservedInstancesId' => '

The ID of the Reserved Instance.

', 'ReservedInstancesListing$ReservedInstancesListingId' => '

The ID of the Reserved Instance listing.

', 'ReservedInstancesListing$StatusMessage' => '

The reason for the current status of the Reserved Instance listing. The response can be blank.

', 'ReservedInstancesModification$ClientToken' => '

A unique, case-sensitive key supplied by the client to ensure that the request is idempotent. For more information, see Ensuring Idempotency.

', 'ReservedInstancesModification$ReservedInstancesModificationId' => '

A unique ID for the Reserved Instance modification.

', 'ReservedInstancesModification$Status' => '

The status of the Reserved Instances modification request.

', 'ReservedInstancesModification$StatusMessage' => '

The reason for the status.

', 'ReservedInstancesModificationResult$ReservedInstancesId' => '

The ID for the Reserved Instances that were created as part of the modification request. This field is only available when the modification is fulfilled.

', 'ReservedInstancesOffering$AvailabilityZone' => '

The Availability Zone in which the Reserved Instance can be used.

', 'ReservedInstancesOffering$ReservedInstancesOfferingId' => '

The ID of the Reserved Instance offering. This is the offering ID used in GetReservedInstancesExchangeQuote to confirm that an exchange can be made.

', 'ResetEbsDefaultKmsKeyIdResult$KmsKeyId' => '

The Amazon Resource Name (ARN) of the default KMS key for EBS encryption by default.

', 'ResetNetworkInterfaceAttributeRequest$SourceDestCheck' => '

The source/destination checking attribute. Resets the value to true.

', 'ResourceList$member' => NULL, 'ResponseError$Message' => '

The error message, if applicable.

', 'ResponseHostIdList$member' => NULL, 'ResponseHostIdSet$member' => NULL, 'ResponseLaunchTemplateData$KernelId' => '

The ID of the kernel, if applicable.

', 'ResponseLaunchTemplateData$ImageId' => '

The ID of the AMI or a Systems Manager parameter. The Systems Manager parameter will resolve to the ID of the AMI at instance launch.

The value depends on what you specified in the request. The possible values are:

  • If an AMI ID was specified in the request, then this is the AMI ID.

  • If a Systems Manager parameter was specified in the request, and ResolveAlias was configured as true, then this is the AMI ID that the parameter is mapped to in the Parameter Store.

  • If a Systems Manager parameter was specified in the request, and ResolveAlias was configured as false, then this is the parameter value.

For more information, see Use a Systems Manager parameter instead of an AMI ID in the Amazon Elastic Compute Cloud User Guide.

', 'ResponseLaunchTemplateData$KeyName' => '

The name of the key pair.

', 'ResponseLaunchTemplateData$RamDiskId' => '

The ID of the RAM disk, if applicable.

', 'RestorableByStringList$member' => NULL, 'RestoreAddressToClassicRequest$PublicIp' => '

The Elastic IP address.

', 'RestoreAddressToClassicResult$PublicIp' => '

The Elastic IP address.

', 'RestoreSnapshotFromRecycleBinResult$SnapshotId' => '

The ID of the snapshot.

', 'RestoreSnapshotFromRecycleBinResult$OutpostArn' => '

The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local snapshots on Outposts in the Amazon Elastic Compute Cloud User Guide.

', 'RestoreSnapshotFromRecycleBinResult$Description' => '

The description for the snapshot.

', 'RestoreSnapshotFromRecycleBinResult$OwnerId' => '

The ID of the Amazon Web Services account that owns the EBS snapshot.

', 'RestoreSnapshotFromRecycleBinResult$Progress' => '

The progress of the snapshot, as a percentage.

', 'RestoreSnapshotFromRecycleBinResult$VolumeId' => '

The ID of the volume that was used to create the snapshot.

', 'RestoreSnapshotTierResult$SnapshotId' => '

The ID of the snapshot.

', 'RevokeClientVpnIngressRequest$TargetNetworkCidr' => '

The IPv4 address range, in CIDR notation, of the network for which access is being removed.

', 'RevokeClientVpnIngressRequest$AccessGroupId' => '

The ID of the Active Directory group for which to revoke access.

', 'RevokeSecurityGroupEgressRequest$CidrIp' => '

Not supported. Use a set of IP permissions to specify the CIDR.

', 'RevokeSecurityGroupEgressRequest$IpProtocol' => '

Not supported. Use a set of IP permissions to specify the protocol name or number.

', 'RevokeSecurityGroupEgressRequest$SourceSecurityGroupName' => '

Not supported. Use a set of IP permissions to specify a destination security group.

', 'RevokeSecurityGroupEgressRequest$SourceSecurityGroupOwnerId' => '

Not supported. Use a set of IP permissions to specify a destination security group.

', 'RevokeSecurityGroupIngressRequest$CidrIp' => '

The CIDR IP address range. You can\'t specify this parameter when specifying a source security group.

', 'RevokeSecurityGroupIngressRequest$IpProtocol' => '

The IP protocol name (tcp, udp, icmp) or number (see Protocol Numbers). Use -1 to specify all.

', 'RevokeSecurityGroupIngressRequest$SourceSecurityGroupName' => '

[Default VPC] The name of the source security group. You can\'t specify this parameter in combination with the following parameters: the CIDR IP address range, the start of the port range, the IP protocol, and the end of the port range. The source security group must be in the same VPC. To revoke a specific rule for an IP protocol and port range, use a set of IP permissions instead.

', 'RevokeSecurityGroupIngressRequest$SourceSecurityGroupOwnerId' => '

Not supported.

', 'Route$DestinationCidrBlock' => '

The IPv4 CIDR block used for the destination match.

', 'Route$DestinationIpv6CidrBlock' => '

The IPv6 CIDR block used for the destination match.

', 'Route$DestinationPrefixListId' => '

The prefix of the Amazon Web Service.

', 'Route$EgressOnlyInternetGatewayId' => '

The ID of the egress-only internet gateway.

', 'Route$GatewayId' => '

The ID of a gateway attached to your VPC.

', 'Route$InstanceId' => '

The ID of a NAT instance in your VPC.

', 'Route$InstanceOwnerId' => '

The ID of Amazon Web Services account that owns the instance.

', 'Route$NatGatewayId' => '

The ID of a NAT gateway.

', 'Route$TransitGatewayId' => '

The ID of a transit gateway.

', 'Route$LocalGatewayId' => '

The ID of the local gateway.

', 'Route$NetworkInterfaceId' => '

The ID of the network interface.

', 'Route$VpcPeeringConnectionId' => '

The ID of a VPC peering connection.

', 'RouteTable$RouteTableId' => '

The ID of the route table.

', 'RouteTable$VpcId' => '

The ID of the VPC.

', 'RouteTable$OwnerId' => '

The ID of the Amazon Web Services account that owns the route table.

', 'RouteTableAssociation$RouteTableAssociationId' => '

The ID of the association.

', 'RouteTableAssociation$RouteTableId' => '

The ID of the route table.

', 'RouteTableAssociation$SubnetId' => '

The ID of the subnet. A subnet ID is not returned for an implicit association.

', 'RouteTableAssociation$GatewayId' => '

The ID of the internet gateway or virtual private gateway.

', 'RouteTableAssociationState$StatusMessage' => '

The status message, if applicable.

', 'RuleGroupTypePair$RuleGroupType' => '

The rule group type. The possible values are Domain List and Suricata.

', 'RuleOption$Keyword' => '

The Suricata keyword.

', 'RunInstancesRequest$AdditionalInfo' => '

Reserved.

', 'RunInstancesRequest$ClientToken' => '

Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.

For more information, see Ensuring Idempotency.

Constraints: Maximum 64 ASCII characters

', 'RunInstancesRequest$PrivateIpAddress' => '

The primary IPv4 address. You must specify a value from the IPv4 address range of the subnet.

Only one private IP address can be designated as primary. You can\'t specify this option if you\'ve specified the option to designate a private IP address as the primary IP address in a network interface specification. You cannot specify this option if you\'re launching more than one instance in the request.

You cannot specify this option and the network interfaces option in the same request.

', 'RunScheduledInstancesRequest$ClientToken' => '

Unique, case-sensitive identifier that ensures the idempotency of the request. For more information, see Ensuring Idempotency.

', 'S3ObjectTag$Key' => '

The key of the tag.

Constraints: Tag keys are case-sensitive and can be up to 128 Unicode characters in length. May not begin with aws:.

', 'S3ObjectTag$Value' => '

The value of the tag.

Constraints: Tag values are case-sensitive and can be up to 256 Unicode characters in length.

', 'S3Storage$AWSAccessKeyId' => '

The access key ID of the owner of the bucket. Before you specify a value for your access key ID, review and follow the guidance in Best Practices for Amazon Web Services accounts in the Account ManagementReference Guide.

', 'S3Storage$Bucket' => '

The bucket in which to store the AMI. You can specify a bucket that you already own or a new bucket that Amazon EC2 creates on your behalf. If you specify a bucket that belongs to someone else, Amazon EC2 returns an error.

', 'S3Storage$Prefix' => '

The beginning of the file name of the AMI.

', 'ScheduledInstance$AvailabilityZone' => '

The Availability Zone.

', 'ScheduledInstance$HourlyPrice' => '

The hourly price for a single instance.

', 'ScheduledInstance$InstanceType' => '

The instance type.

', 'ScheduledInstance$NetworkPlatform' => '

The network platform.

', 'ScheduledInstance$Platform' => '

The platform (Linux/UNIX or Windows).

', 'ScheduledInstance$ScheduledInstanceId' => '

The Scheduled Instance ID.

', 'ScheduledInstanceAvailability$AvailabilityZone' => '

The Availability Zone.

', 'ScheduledInstanceAvailability$HourlyPrice' => '

The hourly price for a single instance.

', 'ScheduledInstanceAvailability$InstanceType' => '

The instance type. You can specify one of the C3, C4, M4, or R3 instance types.

', 'ScheduledInstanceAvailability$NetworkPlatform' => '

The network platform.

', 'ScheduledInstanceAvailability$Platform' => '

The platform (Linux/UNIX or Windows).

', 'ScheduledInstanceAvailability$PurchaseToken' => '

The purchase token. This token expires in two hours.

', 'ScheduledInstanceRecurrence$Frequency' => '

The frequency (Daily, Weekly, or Monthly).

', 'ScheduledInstanceRecurrence$OccurrenceUnit' => '

The unit for occurrenceDaySet (DayOfWeek or DayOfMonth).

', 'ScheduledInstanceRecurrenceRequest$Frequency' => '

The frequency (Daily, Weekly, or Monthly).

', 'ScheduledInstanceRecurrenceRequest$OccurrenceUnit' => '

The unit for OccurrenceDays (DayOfWeek or DayOfMonth). This value is required for a monthly schedule. You can\'t specify DayOfWeek with a weekly schedule. You can\'t specify this value with a daily schedule.

', 'ScheduledInstancesBlockDeviceMapping$DeviceName' => '

The device name (for example, /dev/sdh or xvdh).

', 'ScheduledInstancesBlockDeviceMapping$NoDevice' => '

To omit the device from the block device mapping, specify an empty string.

', 'ScheduledInstancesBlockDeviceMapping$VirtualName' => '

The virtual device name (ephemeralN). Instance store volumes are numbered starting from 0. An instance type with two available instance store volumes can specify mappings for ephemeral0 and ephemeral1. The number of available instance store volumes depends on the instance type. After you connect to the instance, you must mount the volume.

Constraints: For M3 instances, you must specify instance store volumes in the block device mapping for the instance. When you launch an M3 instance, we ignore any instance store volumes specified in the block device mapping for the AMI.

', 'ScheduledInstancesEbs$VolumeType' => '

The volume type.

Default: gp2

', 'ScheduledInstancesIamInstanceProfile$Arn' => '

The Amazon Resource Name (ARN).

', 'ScheduledInstancesIamInstanceProfile$Name' => '

The name.

', 'ScheduledInstancesLaunchSpecification$InstanceType' => '

The instance type.

', 'ScheduledInstancesLaunchSpecification$UserData' => '

The base64-encoded MIME user data.

', 'ScheduledInstancesNetworkInterface$Description' => '

The description.

', 'ScheduledInstancesNetworkInterface$PrivateIpAddress' => '

The IPv4 address of the network interface within the subnet.

', 'ScheduledInstancesPlacement$AvailabilityZone' => '

The Availability Zone.

', 'ScheduledInstancesPrivateIpAddressConfig$PrivateIpAddress' => '

The IPv4 address.

', 'SearchLocalGatewayRoutesRequest$NextToken' => '

The token for the next page of results.

', 'SearchLocalGatewayRoutesResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'SearchTransitGatewayMulticastGroupsRequest$NextToken' => '

The token for the next page of results.

', 'SearchTransitGatewayMulticastGroupsResult$NextToken' => '

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

', 'SecurityGroup$Description' => '

A description of the security group.

', 'SecurityGroup$GroupName' => '

The name of the security group.

', 'SecurityGroup$OwnerId' => '

The Amazon Web Services account ID of the owner of the security group.

', 'SecurityGroup$GroupId' => '

The ID of the security group.

', 'SecurityGroup$VpcId' => '

The ID of the VPC for the security group.

', 'SecurityGroupForVpc$Description' => '

The security group\'s description.

', 'SecurityGroupForVpc$GroupName' => '

The security group name.

', 'SecurityGroupForVpc$OwnerId' => '

The security group owner ID.

', 'SecurityGroupForVpc$GroupId' => '

The security group ID.

', 'SecurityGroupForVpc$PrimaryVpcId' => '

The VPC ID in which the security group was created.

', 'SecurityGroupIdentifier$GroupId' => '

The ID of the security group.

', 'SecurityGroupIdentifier$GroupName' => '

The name of the security group.

', 'SecurityGroupReference$GroupId' => '

The ID of your security group.

', 'SecurityGroupReference$ReferencingVpcId' => '

The ID of the VPC with the referencing security group.

', 'SecurityGroupReference$VpcPeeringConnectionId' => '

The ID of the VPC peering connection (if applicable). For more information about security group referencing for peering connections, see Update your security groups to reference peer security groups in the VPC Peering Guide.

', 'SecurityGroupReference$TransitGatewayId' => '

The ID of the transit gateway (if applicable). For more information about security group referencing for transit gateways, see Create a transit gateway attachment to a VPC in the Amazon Web Services Transit Gateway Guide.

', 'SecurityGroupRule$GroupOwnerId' => '

The ID of the Amazon Web Services account that owns the security group.

', 'SecurityGroupRule$IpProtocol' => '

The IP protocol name (tcp, udp, icmp, icmpv6) or number (see Protocol Numbers).

Use -1 to specify all protocols.

', 'SecurityGroupRule$CidrIpv4' => '

The IPv4 CIDR range.

', 'SecurityGroupRule$CidrIpv6' => '

The IPv6 CIDR range.

', 'SecurityGroupRule$Description' => '

The security group rule description.

', 'SecurityGroupRuleDescription$SecurityGroupRuleId' => '

The ID of the security group rule.

', 'SecurityGroupRuleDescription$Description' => '

The description of the security group rule.

', 'SecurityGroupRuleIdList$member' => NULL, 'SecurityGroupRuleRequest$IpProtocol' => '

The IP protocol name (tcp, udp, icmp, icmpv6) or number (see Protocol Numbers).

Use -1 to specify all protocols.

', 'SecurityGroupRuleRequest$CidrIpv4' => '

The IPv4 CIDR range. To specify a single IPv4 address, use the /32 prefix length.

', 'SecurityGroupRuleRequest$CidrIpv6' => '

The IPv6 CIDR range. To specify a single IPv6 address, use the /128 prefix length.

', 'SecurityGroupRuleRequest$Description' => '

The description of the security group rule.

', 'ServiceConfiguration$ServiceId' => '

The ID of the service.

', 'ServiceConfiguration$ServiceName' => '

The name of the service.

', 'ServiceConfiguration$PrivateDnsName' => '

The private DNS name for the service.

', 'ServiceDetail$ServiceName' => '

The name of the service.

', 'ServiceDetail$ServiceId' => '

The ID of the endpoint service.

', 'ServiceDetail$Owner' => '

The Amazon Web Services account ID of the service owner.

', 'ServiceDetail$PrivateDnsName' => '

The private DNS name for the service.

', 'Snapshot$DataEncryptionKeyId' => '

The data encryption key identifier for the snapshot. This value is a unique identifier that corresponds to the data encryption key that was used to encrypt the original volume or snapshot copy. Because data encryption keys are inherited by volumes created from snapshots, and vice versa, if snapshots share the same data encryption key identifier, then they belong to the same volume/snapshot lineage. This parameter is only returned by DescribeSnapshots.

', 'Snapshot$Description' => '

The description for the snapshot.

', 'Snapshot$KmsKeyId' => '

The Amazon Resource Name (ARN) of the Key Management Service (KMS) KMS key that was used to protect the volume encryption key for the parent volume.

', 'Snapshot$OwnerId' => '

The ID of the Amazon Web Services account that owns the EBS snapshot.

', 'Snapshot$Progress' => '

The progress of the snapshot, as a percentage.

', 'Snapshot$SnapshotId' => '

The ID of the snapshot. Each snapshot receives a unique identifier when it is created.

', 'Snapshot$StateMessage' => '

Encrypted Amazon EBS snapshots are copied asynchronously. If a snapshot copy operation fails (for example, if the proper Key Management Service (KMS) permissions are not obtained) this field displays error state details to help you diagnose why the error occurred. This parameter is only returned by DescribeSnapshots.

', 'Snapshot$VolumeId' => '

The ID of the volume that was used to create the snapshot. Snapshots created by the CopySnapshot action have an arbitrary volume ID that should not be used for any purpose.

', 'Snapshot$OwnerAlias' => '

The Amazon Web Services owner alias, from an Amazon-maintained list (amazon). This is not the user-configured Amazon Web Services account alias set using the IAM console.

', 'Snapshot$OutpostArn' => '

The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local snapshots on Outposts in the Amazon Elastic Compute Cloud User Guide.

', 'SnapshotDetail$Description' => '

A description for the snapshot.

', 'SnapshotDetail$DeviceName' => '

The block device mapping for the snapshot.

', 'SnapshotDetail$Format' => '

The format of the disk image from which the snapshot is created.

', 'SnapshotDetail$Progress' => '

The percentage of progress for the task.

', 'SnapshotDetail$SnapshotId' => '

The snapshot ID of the disk being imported.

', 'SnapshotDetail$Status' => '

A brief status of the snapshot creation.

', 'SnapshotDetail$StatusMessage' => '

A detailed status message for the snapshot creation.

', 'SnapshotDiskContainer$Description' => '

The description of the disk image being imported.

', 'SnapshotDiskContainer$Format' => '

The format of the disk image being imported.

Valid values: VHD | VMDK | RAW

', 'SnapshotInfo$Description' => '

Description specified by the CreateSnapshotRequest that has been applied to all snapshots.

', 'SnapshotInfo$VolumeId' => '

Source volume from which this snapshot was created.

', 'SnapshotInfo$Progress' => '

Progress this snapshot has made towards completing.

', 'SnapshotInfo$OwnerId' => '

Account id used when creating this snapshot.

', 'SnapshotInfo$SnapshotId' => '

Snapshot id that can be used to describe this snapshot.

', 'SnapshotInfo$OutpostArn' => '

The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local snapshots on Outposts in the Amazon Elastic Compute Cloud User Guide.

', 'SnapshotRecycleBinInfo$SnapshotId' => '

The ID of the snapshot.

', 'SnapshotRecycleBinInfo$Description' => '

The description for the snapshot.

', 'SnapshotRecycleBinInfo$VolumeId' => '

The ID of the volume from which the snapshot was created.

', 'SnapshotTaskDetail$Description' => '

The description of the snapshot.

', 'SnapshotTaskDetail$Format' => '

The format of the disk image from which the snapshot is created.

', 'SnapshotTaskDetail$KmsKeyId' => '

The identifier for the KMS key that was used to create the encrypted snapshot.

', 'SnapshotTaskDetail$Progress' => '

The percentage of completion for the import snapshot task.

', 'SnapshotTaskDetail$SnapshotId' => '

The snapshot ID of the disk being imported.

', 'SnapshotTaskDetail$Status' => '

A brief status for the import snapshot task.

', 'SnapshotTaskDetail$StatusMessage' => '

A detailed status message for the import snapshot task.

', 'SnapshotTierStatus$OwnerId' => '

The ID of the Amazon Web Services account that owns the snapshot.

', 'SnapshotTierStatus$LastTieringOperationStatusDetail' => '

A message describing the status of the last archive or restore process.

', 'SpotDatafeedSubscription$Bucket' => '

The name of the Amazon S3 bucket where the Spot Instance data feed is located.

', 'SpotDatafeedSubscription$OwnerId' => '

The Amazon Web Services account ID of the account.

', 'SpotDatafeedSubscription$Prefix' => '

The prefix for the data feed files.

', 'SpotFleetLaunchSpecification$AddressingType' => '

Deprecated.

', 'SpotFleetLaunchSpecification$KernelId' => '

The ID of the kernel.

', 'SpotFleetLaunchSpecification$RamdiskId' => '

The ID of the RAM disk. Some kernels require additional drivers at launch. Check the kernel requirements for information about whether you need to specify a RAM disk. To find kernel requirements, refer to the Amazon Web Services Resource Center and search for the kernel ID.

', 'SpotFleetLaunchSpecification$SpotPrice' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'SpotFleetRequestConfig$SpotFleetRequestId' => '

The ID of the Spot Fleet request.

', 'SpotFleetRequestConfigData$ClientToken' => '

A unique, case-sensitive identifier that you provide to ensure the idempotency of your listings. This helps to avoid duplicate listings. For more information, see Ensuring Idempotency.

', 'SpotFleetRequestConfigData$IamFleetRole' => '

The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that grants the Spot Fleet the permission to request, launch, terminate, and tag instances on your behalf. For more information, see Spot Fleet prerequisites in the Amazon EC2 User Guide. Spot Fleet can terminate Spot Instances on your behalf when you cancel its Spot Fleet request using CancelSpotFleetRequests or when the Spot Fleet request expires, if you set TerminateInstancesWithExpiration.

', 'SpotFleetRequestConfigData$SpotPrice' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'SpotFleetRequestConfigData$OnDemandMaxTotalPrice' => '

The maximum amount per hour for On-Demand Instances that you\'re willing to pay. You can use the onDemandMaxTotalPrice parameter, the spotMaxTotalPrice parameter, or both parameters to ensure that your fleet cost does not exceed your budget. If you set a maximum price per hour for the On-Demand Instances and Spot Instances in your request, Spot Fleet will launch instances until it reaches the maximum amount you\'re willing to pay. When the maximum amount you\'re willing to pay is reached, the fleet stops launching instances even if it hasn’t met the target capacity.

If your fleet includes T instances that are configured as unlimited, and if their average CPU usage exceeds the baseline utilization, you will incur a charge for surplus credits. The onDemandMaxTotalPrice does not account for surplus credits, and, if you use surplus credits, your final cost might be higher than what you specified for onDemandMaxTotalPrice. For more information, see Surplus credits can incur charges in the EC2 User Guide.

', 'SpotFleetRequestConfigData$SpotMaxTotalPrice' => '

The maximum amount per hour for Spot Instances that you\'re willing to pay. You can use the spotMaxTotalPrice parameter, the onDemandMaxTotalPrice parameter, or both parameters to ensure that your fleet cost does not exceed your budget. If you set a maximum price per hour for the On-Demand Instances and Spot Instances in your request, Spot Fleet will launch instances until it reaches the maximum amount you\'re willing to pay. When the maximum amount you\'re willing to pay is reached, the fleet stops launching instances even if it hasn’t met the target capacity.

If your fleet includes T instances that are configured as unlimited, and if their average CPU usage exceeds the baseline utilization, you will incur a charge for surplus credits. The spotMaxTotalPrice does not account for surplus credits, and, if you use surplus credits, your final cost might be higher than what you specified for spotMaxTotalPrice. For more information, see Surplus credits can incur charges in the EC2 User Guide.

', 'SpotFleetRequestConfigData$Context' => '

Reserved.

', 'SpotInstanceRequest$ActualBlockHourlyPrice' => '

Deprecated.

', 'SpotInstanceRequest$AvailabilityZoneGroup' => '

The Availability Zone group. If you specify the same Availability Zone group for all Spot Instance requests, all Spot Instances are launched in the same Availability Zone.

', 'SpotInstanceRequest$LaunchGroup' => '

The instance launch group. Launch groups are Spot Instances that launch together and terminate together.

', 'SpotInstanceRequest$LaunchedAvailabilityZone' => '

The Availability Zone in which the request is launched.

', 'SpotInstanceRequest$SpotInstanceRequestId' => '

The ID of the Spot Instance request.

', 'SpotInstanceRequest$SpotPrice' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'SpotInstanceStateFault$Code' => '

The reason code for the Spot Instance state change.

', 'SpotInstanceStateFault$Message' => '

The message for the Spot Instance state change.

', 'SpotInstanceStatus$Code' => '

The status code. For a list of status codes, see Spot request status codes in the Amazon EC2 User Guide for Linux Instances.

', 'SpotInstanceStatus$Message' => '

The description for the status code.

', 'SpotMarketOptions$MaxPrice' => '

The maximum hourly price that you\'re willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not specify this parameter.

', 'SpotOptions$MaxTotalPrice' => '

The maximum amount per hour for Spot Instances that you\'re willing to pay. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not specify this parameter.

If your fleet includes T instances that are configured as unlimited, and if their average CPU usage exceeds the baseline utilization, you will incur a charge for surplus credits. The maxTotalPrice does not account for surplus credits, and, if you use surplus credits, your final cost might be higher than what you specified for maxTotalPrice. For more information, see Surplus credits can incur charges in the EC2 User Guide.

', 'SpotOptionsRequest$MaxTotalPrice' => '

The maximum amount per hour for Spot Instances that you\'re willing to pay. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not specify this parameter.

If your fleet includes T instances that are configured as unlimited, and if their average CPU usage exceeds the baseline utilization, you will incur a charge for surplus credits. The MaxTotalPrice does not account for surplus credits, and, if you use surplus credits, your final cost might be higher than what you specified for MaxTotalPrice. For more information, see Surplus credits can incur charges in the EC2 User Guide.

', 'SpotPlacement$AvailabilityZone' => '

The Availability Zone.

[Spot Fleet only] To specify multiple Availability Zones, separate them using commas; for example, "us-west-2a, us-west-2b".

', 'SpotPlacementScore$Region' => '

The Region.

', 'SpotPlacementScore$AvailabilityZoneId' => '

The Availability Zone.

', 'SpotPrice$AvailabilityZone' => '

The Availability Zone.

', 'SpotPrice$SpotPrice' => '

The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.

If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.

', 'StaleIpPermission$IpProtocol' => '

The IP protocol name (for tcp, udp, and icmp) or number (see Protocol Numbers).

', 'StaleSecurityGroup$Description' => '

The description of the security group.

', 'StaleSecurityGroup$GroupId' => '

The ID of the security group.

', 'StaleSecurityGroup$GroupName' => '

The name of the security group.

', 'StaleSecurityGroup$VpcId' => '

The ID of the VPC for the security group.

', 'StartInstancesRequest$AdditionalInfo' => '

Reserved.

', 'StartNetworkInsightsAccessScopeAnalysisRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'StartNetworkInsightsAnalysisRequest$ClientToken' => '

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

', 'StateReason$Code' => '

The reason code for the state change.

', 'StateReason$Message' => '

The message for the state change.

  • Server.InsufficientInstanceCapacity: There was insufficient capacity available to satisfy the launch request.

  • Server.InternalError: An internal error caused the instance to terminate during launch.

  • Server.ScheduledStop: The instance was stopped due to a scheduled retirement.

  • Server.SpotInstanceShutdown: The instance was stopped because the number of Spot requests with a maximum price equal to or higher than the Spot price exceeded available capacity or because of an increase in the Spot price.

  • Server.SpotInstanceTermination: The instance was terminated because the number of Spot requests with a maximum price equal to or higher than the Spot price exceeded available capacity or because of an increase in the Spot price.

  • Client.InstanceInitiatedShutdown: The instance was shut down from the operating system of the instance.

  • Client.InstanceTerminated: The instance was terminated or rebooted during AMI creation.

  • Client.InternalError: A client error caused the instance to terminate during launch.

  • Client.InvalidSnapshot.NotFound: The specified snapshot was not found.

  • Client.UserInitiatedHibernate: Hibernation was initiated on the instance.

  • Client.UserInitiatedShutdown: The instance was shut down using the Amazon EC2 API.

  • Client.VolumeLimitExceeded: The limit on the number of EBS volumes or total storage was exceeded. Decrease usage or request an increase in your account limits.

', 'StorageLocation$Bucket' => '

The name of the S3 bucket.

', 'StorageLocation$Key' => '

The key.

', 'StoreImageTaskResult$AmiId' => '

The ID of the AMI that is being stored.

', 'StoreImageTaskResult$Bucket' => '

The name of the Amazon S3 bucket that contains the stored AMI object.

', 'StoreImageTaskResult$S3objectKey' => '

The name of the stored AMI object in the bucket.

', 'StoreImageTaskResult$StoreTaskState' => '

The state of the store task (InProgress, Completed, or Failed).

', 'StoreImageTaskResult$StoreTaskFailureReason' => '

If the tasks fails, the reason for the failure is returned. If the task succeeds, null is returned.

', 'StringList$member' => NULL, 'Subnet$AvailabilityZone' => '

The Availability Zone of the subnet.

', 'Subnet$AvailabilityZoneId' => '

The AZ ID of the subnet.

', 'Subnet$CidrBlock' => '

The IPv4 CIDR block assigned to the subnet.

', 'Subnet$SubnetId' => '

The ID of the subnet.

', 'Subnet$VpcId' => '

The ID of the VPC the subnet is in.

', 'Subnet$OwnerId' => '

The ID of the Amazon Web Services account that owns the subnet.

', 'Subnet$SubnetArn' => '

The Amazon Resource Name (ARN) of the subnet.

', 'Subnet$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'SubnetAssociation$SubnetId' => '

The ID of the subnet.

', 'SubnetCidrBlockState$StatusMessage' => '

A message about the status of the CIDR block, if applicable.

', 'SubnetCidrReservation$Cidr' => '

The CIDR that has been reserved.

', 'SubnetCidrReservation$OwnerId' => '

The ID of the account that owns the subnet CIDR reservation.

', 'SubnetCidrReservation$Description' => '

The description assigned to the subnet CIDR reservation.

', 'SubnetConfiguration$Ipv4' => '

The IPv4 address to assign to the endpoint network interface in the subnet. You must provide an IPv4 address if the VPC endpoint supports IPv4.

If you specify an IPv4 address when modifying a VPC endpoint, we replace the existing endpoint network interface with a new endpoint network interface with this IP address. This process temporarily disconnects the subnet and the VPC endpoint.

', 'SubnetConfiguration$Ipv6' => '

The IPv6 address to assign to the endpoint network interface in the subnet. You must provide an IPv6 address if the VPC endpoint supports IPv6.

If you specify an IPv6 address when modifying a VPC endpoint, we replace the existing endpoint network interface with a new endpoint network interface with this IP address. This process temporarily disconnects the subnet and the VPC endpoint.

', 'SubnetIpv6CidrBlockAssociation$Ipv6CidrBlock' => '

The IPv6 CIDR block.

', 'Subscription$Source' => '

The Region or Availability Zone that\'s the source for the subscription. For example, us-east-1.

', 'Subscription$Destination' => '

The Region or Availability Zone that\'s the target for the subscription. For example, eu-west-1.

', 'SuccessfulInstanceCreditSpecificationItem$InstanceId' => '

The ID of the instance.

', 'SuccessfulQueuedPurchaseDeletion$ReservedInstancesId' => '

The ID of the Reserved Instance.

', 'Tag$Key' => '

The key of the tag.

Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with aws:.

', 'Tag$Value' => '

The value of the tag.

Constraints: Tag values are case-sensitive and accept a maximum of 256 Unicode characters.

', 'TagDescription$Key' => '

The tag key.

', 'TagDescription$ResourceId' => '

The ID of the resource.

', 'TagDescription$Value' => '

The tag value.

', 'TargetConfiguration$OfferingId' => '

The ID of the Convertible Reserved Instance offering.

', 'TargetGroup$Arn' => '

The Amazon Resource Name (ARN) of the target group.

', 'TargetNetwork$AssociationId' => '

The ID of the association.

', 'TargetNetwork$VpcId' => '

The ID of the VPC in which the target network (subnet) is located.

', 'TargetNetwork$TargetNetworkId' => '

The ID of the subnet specified as the target network.

', 'TargetNetwork$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint with which the target network is associated.

', 'TerminateClientVpnConnectionsRequest$ConnectionId' => '

The ID of the client connection to be terminated.

', 'TerminateClientVpnConnectionsRequest$Username' => '

The name of the user who initiated the connection. Use this option to terminate all active connections for the specified user. This option can only be used if the user has established up to five connections.

', 'TerminateClientVpnConnectionsResult$ClientVpnEndpointId' => '

The ID of the Client VPN endpoint.

', 'TerminateClientVpnConnectionsResult$Username' => '

The user who established the terminated client connections.

', 'TerminateConnectionStatus$ConnectionId' => '

The ID of the client connection.

', 'TrafficMirrorFilter$TrafficMirrorFilterId' => '

The ID of the Traffic Mirror filter.

', 'TrafficMirrorFilter$Description' => '

The description of the Traffic Mirror filter.

', 'TrafficMirrorFilterRule$TrafficMirrorFilterRuleId' => '

The ID of the Traffic Mirror rule.

', 'TrafficMirrorFilterRule$TrafficMirrorFilterId' => '

The ID of the Traffic Mirror filter that the rule is associated with.

', 'TrafficMirrorFilterRule$DestinationCidrBlock' => '

The destination CIDR block assigned to the Traffic Mirror rule.

', 'TrafficMirrorFilterRule$SourceCidrBlock' => '

The source CIDR block assigned to the Traffic Mirror rule.

', 'TrafficMirrorFilterRule$Description' => '

The description of the Traffic Mirror rule.

', 'TrafficMirrorSession$TrafficMirrorSessionId' => '

The ID for the Traffic Mirror session.

', 'TrafficMirrorSession$TrafficMirrorTargetId' => '

The ID of the Traffic Mirror target.

', 'TrafficMirrorSession$TrafficMirrorFilterId' => '

The ID of the Traffic Mirror filter.

', 'TrafficMirrorSession$NetworkInterfaceId' => '

The ID of the Traffic Mirror session\'s network interface.

', 'TrafficMirrorSession$OwnerId' => '

The ID of the account that owns the Traffic Mirror session.

', 'TrafficMirrorSession$Description' => '

The description of the Traffic Mirror session.

', 'TrafficMirrorTarget$TrafficMirrorTargetId' => '

The ID of the Traffic Mirror target.

', 'TrafficMirrorTarget$NetworkInterfaceId' => '

The network interface ID that is attached to the target.

', 'TrafficMirrorTarget$NetworkLoadBalancerArn' => '

The Amazon Resource Name (ARN) of the Network Load Balancer.

', 'TrafficMirrorTarget$Description' => '

Information about the Traffic Mirror target.

', 'TrafficMirrorTarget$OwnerId' => '

The ID of the account that owns the Traffic Mirror target.

', 'TrafficMirrorTarget$GatewayLoadBalancerEndpointId' => '

The ID of the Gateway Load Balancer endpoint.

', 'TransitGateway$TransitGatewayId' => '

The ID of the transit gateway.

', 'TransitGateway$TransitGatewayArn' => '

The Amazon Resource Name (ARN) of the transit gateway.

', 'TransitGateway$OwnerId' => '

The ID of the Amazon Web Services account that owns the transit gateway.

', 'TransitGateway$Description' => '

The description of the transit gateway.

', 'TransitGatewayAssociation$ResourceId' => '

The ID of the resource.

', 'TransitGatewayAttachment$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayAttachment$TransitGatewayId' => '

The ID of the transit gateway.

', 'TransitGatewayAttachment$TransitGatewayOwnerId' => '

The ID of the Amazon Web Services account that owns the transit gateway.

', 'TransitGatewayAttachment$ResourceOwnerId' => '

The ID of the Amazon Web Services account that owns the resource.

', 'TransitGatewayAttachment$ResourceId' => '

The ID of the resource.

', 'TransitGatewayAttachmentAssociation$TransitGatewayRouteTableId' => '

The ID of the route table for the transit gateway.

', 'TransitGatewayAttachmentBgpConfiguration$TransitGatewayAddress' => '

The interior BGP peer IP address for the transit gateway.

', 'TransitGatewayAttachmentBgpConfiguration$PeerAddress' => '

The interior BGP peer IP address for the appliance.

', 'TransitGatewayAttachmentPropagation$TransitGatewayRouteTableId' => '

The ID of the propagation route table.

', 'TransitGatewayCidrBlockStringList$member' => NULL, 'TransitGatewayConnectPeerConfiguration$TransitGatewayAddress' => '

The Connect peer IP address on the transit gateway side of the tunnel.

', 'TransitGatewayConnectPeerConfiguration$PeerAddress' => '

The Connect peer IP address on the appliance side of the tunnel.

', 'TransitGatewayMulticastDeregisteredGroupMembers$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'TransitGatewayMulticastDeregisteredGroupMembers$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'TransitGatewayMulticastDeregisteredGroupSources$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'TransitGatewayMulticastDeregisteredGroupSources$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'TransitGatewayMulticastDomain$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'TransitGatewayMulticastDomain$TransitGatewayId' => '

The ID of the transit gateway.

', 'TransitGatewayMulticastDomain$TransitGatewayMulticastDomainArn' => '

The Amazon Resource Name (ARN) of the transit gateway multicast domain.

', 'TransitGatewayMulticastDomain$OwnerId' => '

The ID of the Amazon Web Services account that owns the transit gateway multicast domain.

', 'TransitGatewayMulticastDomainAssociation$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment.

', 'TransitGatewayMulticastDomainAssociation$ResourceId' => '

The ID of the resource.

', 'TransitGatewayMulticastDomainAssociation$ResourceOwnerId' => '

The ID of the Amazon Web Services account that owns the transit gateway multicast domain association resource.

', 'TransitGatewayMulticastDomainAssociations$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'TransitGatewayMulticastDomainAssociations$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment.

', 'TransitGatewayMulticastDomainAssociations$ResourceId' => '

The ID of the resource.

', 'TransitGatewayMulticastDomainAssociations$ResourceOwnerId' => '

The ID of the Amazon Web Services account that owns the resource.

', 'TransitGatewayMulticastGroup$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'TransitGatewayMulticastGroup$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment.

', 'TransitGatewayMulticastGroup$SubnetId' => '

The ID of the subnet.

', 'TransitGatewayMulticastGroup$ResourceId' => '

The ID of the resource.

', 'TransitGatewayMulticastGroup$ResourceOwnerId' => '

The ID of the Amazon Web Services account that owns the transit gateway multicast domain group resource.

', 'TransitGatewayMulticastGroup$NetworkInterfaceId' => '

The ID of the transit gateway attachment.

', 'TransitGatewayMulticastRegisteredGroupMembers$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'TransitGatewayMulticastRegisteredGroupMembers$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'TransitGatewayMulticastRegisteredGroupSources$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'TransitGatewayMulticastRegisteredGroupSources$GroupIpAddress' => '

The IP address assigned to the transit gateway multicast group.

', 'TransitGatewayOptions$AssociationDefaultRouteTableId' => '

The ID of the default association route table.

', 'TransitGatewayOptions$PropagationDefaultRouteTableId' => '

The ID of the default propagation route table.

', 'TransitGatewayPeeringAttachment$TransitGatewayAttachmentId' => '

The ID of the transit gateway peering attachment.

', 'TransitGatewayPeeringAttachment$AccepterTransitGatewayAttachmentId' => '

The ID of the accepter transit gateway attachment.

', 'TransitGatewayPolicyRule$SourceCidrBlock' => '

The source CIDR block for the transit gateway policy rule.

', 'TransitGatewayPolicyRule$SourcePortRange' => '

The port range for the transit gateway policy rule. Currently this is set to * (all).

', 'TransitGatewayPolicyRule$DestinationCidrBlock' => '

The destination CIDR block for the transit gateway policy rule.

', 'TransitGatewayPolicyRule$DestinationPortRange' => '

The port range for the transit gateway policy rule. Currently this is set to * (all).

', 'TransitGatewayPolicyRule$Protocol' => '

The protocol used by the transit gateway policy rule.

', 'TransitGatewayPolicyRuleMetaData$MetaDataKey' => '

The key name for the transit gateway policy rule meta data tag.

', 'TransitGatewayPolicyRuleMetaData$MetaDataValue' => '

The value of the key for the transit gateway policy rule meta data tag.

', 'TransitGatewayPolicyTableAssociation$ResourceId' => '

The resource ID of the transit gateway attachment.

', 'TransitGatewayPolicyTableEntry$PolicyRuleNumber' => '

The rule number for the transit gateway policy table entry.

', 'TransitGatewayPrefixListAttachment$ResourceId' => '

The ID of the resource.

', 'TransitGatewayPrefixListReference$PrefixListOwnerId' => '

The ID of the prefix list owner.

', 'TransitGatewayPropagation$ResourceId' => '

The ID of the resource.

', 'TransitGatewayPropagation$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'TransitGatewayRoute$DestinationCidrBlock' => '

The CIDR block used for destination matches.

', 'TransitGatewayRouteAttachment$ResourceId' => '

The ID of the resource.

', 'TransitGatewayRouteAttachment$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayRouteTable$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'TransitGatewayRouteTable$TransitGatewayId' => '

The ID of the transit gateway.

', 'TransitGatewayRouteTableAnnouncement$CoreNetworkId' => '

The ID of the core network for the transit gateway route table announcement.

', 'TransitGatewayRouteTableAnnouncement$PeerCoreNetworkId' => '

The ID of the core network ID for the peer.

', 'TransitGatewayRouteTableAssociation$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayRouteTableAssociation$ResourceId' => '

The ID of the resource.

', 'TransitGatewayRouteTablePropagation$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayRouteTablePropagation$ResourceId' => '

The ID of the resource.

', 'TransitGatewayRouteTableRoute$DestinationCidr' => '

The CIDR block used for destination matches.

', 'TransitGatewayRouteTableRoute$State' => '

The state of the route.

', 'TransitGatewayRouteTableRoute$RouteOrigin' => '

The route origin. The following are the possible values:

  • static

  • propagated

', 'TransitGatewayRouteTableRoute$PrefixListId' => '

The ID of the prefix list.

', 'TransitGatewayRouteTableRoute$AttachmentId' => '

The ID of the route attachment.

', 'TransitGatewayRouteTableRoute$ResourceId' => '

The ID of the resource for the route attachment.

', 'TransitGatewayRouteTableRoute$ResourceType' => '

The resource type for the route attachment.

', 'TransitGatewayVpcAttachment$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayVpcAttachment$TransitGatewayId' => '

The ID of the transit gateway.

', 'TransitGatewayVpcAttachment$VpcId' => '

The ID of the VPC.

', 'TransitGatewayVpcAttachment$VpcOwnerId' => '

The ID of the Amazon Web Services account that owns the VPC.

', 'TrunkInterfaceAssociation$BranchInterfaceId' => '

The ID of the branch network interface.

', 'TrunkInterfaceAssociation$TrunkInterfaceId' => '

The ID of the trunk network interface.

', 'TunnelOption$OutsideIpAddress' => '

The external IP address of the VPN tunnel.

', 'TunnelOption$TunnelInsideCidr' => '

The range of inside IPv4 addresses for the tunnel.

', 'TunnelOption$TunnelInsideIpv6Cidr' => '

The range of inside IPv6 addresses for the tunnel.

', 'TunnelOption$DpdTimeoutAction' => '

The action to take after a DPD timeout occurs.

', 'TunnelOption$StartupAction' => '

The action to take when the establishing the VPN tunnels for a VPN connection.

', 'UnassignIpv6AddressesResult$NetworkInterfaceId' => '

The ID of the network interface.

', 'UnlockSnapshotResult$SnapshotId' => '

The ID of the snapshot.

', 'UnsuccessfulInstanceCreditSpecificationItem$InstanceId' => '

The ID of the instance.

', 'UnsuccessfulInstanceCreditSpecificationItemError$Message' => '

The applicable error message.

', 'UnsuccessfulItem$ResourceId' => '

The ID of the resource.

', 'UnsuccessfulItemError$Code' => '

The error code.

', 'UnsuccessfulItemError$Message' => '

The error message accompanying the error code.

', 'UserBucket$S3Bucket' => '

The name of the Amazon S3 bucket where the disk image is located.

', 'UserBucket$S3Key' => '

The file name of the disk image.

', 'UserBucketDetails$S3Bucket' => '

The Amazon S3 bucket from which the disk image was created.

', 'UserBucketDetails$S3Key' => '

The file name of the disk image.

', 'UserData$Data' => '

The user data. If you are using an Amazon Web Services SDK or command line tool, Base64-encoding is performed for you, and you can load the text from a file. Otherwise, you must provide Base64-encoded text.

', 'UserGroupStringList$member' => NULL, 'UserIdGroupPair$Description' => '

A description for the security group rule that references this user ID group pair.

Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=;{}!$*

', 'UserIdGroupPair$GroupId' => '

The ID of the security group.

', 'UserIdGroupPair$GroupName' => '

[Default VPC] The name of the security group. For a security group in a nondefault VPC, use the security group ID.

For a referenced security group in another VPC, this value is not returned if the referenced security group is deleted.

', 'UserIdGroupPair$PeeringStatus' => '

The status of a VPC peering connection, if applicable.

', 'UserIdGroupPair$UserId' => '

The ID of an Amazon Web Services account.

For a referenced security group in another VPC, the account ID of the referenced security group is returned in the response. If the referenced security group is deleted, this value is not returned.

', 'UserIdGroupPair$VpcId' => '

The ID of the VPC for the referenced security group, if applicable.

', 'UserIdGroupPair$VpcPeeringConnectionId' => '

The ID of the VPC peering connection, if applicable.

', 'UserIdStringList$member' => NULL, 'ValidationError$Code' => '

The error code that indicates why the parameter or parameter combination is not valid. For more information about error codes, see Error codes.

', 'ValidationError$Message' => '

The error message that describes why the parameter or parameter combination is not valid. For more information about error messages, see Error codes.

', 'ValueStringList$member' => NULL, 'VerifiedAccessEndpoint$VerifiedAccessInstanceId' => '

The ID of the Amazon Web Services Verified Access instance.

', 'VerifiedAccessEndpoint$VerifiedAccessGroupId' => '

The ID of the Amazon Web Services Verified Access group.

', 'VerifiedAccessEndpoint$VerifiedAccessEndpointId' => '

The ID of the Amazon Web Services Verified Access endpoint.

', 'VerifiedAccessEndpoint$ApplicationDomain' => '

The DNS name for users to reach your application.

', 'VerifiedAccessEndpoint$DomainCertificateArn' => '

The ARN of a public TLS/SSL certificate imported into or created with ACM.

', 'VerifiedAccessEndpoint$EndpointDomain' => '

A DNS name that is generated for the endpoint.

', 'VerifiedAccessEndpoint$DeviceValidationDomain' => '

Returned if endpoint has a device trust provider attached.

', 'VerifiedAccessEndpoint$Description' => '

A description for the Amazon Web Services Verified Access endpoint.

', 'VerifiedAccessEndpoint$CreationTime' => '

The creation time.

', 'VerifiedAccessEndpoint$LastUpdatedTime' => '

The last updated time.

', 'VerifiedAccessEndpoint$DeletionTime' => '

The deletion time.

', 'VerifiedAccessEndpointLoadBalancerOptions$LoadBalancerArn' => '

The ARN of the load balancer.

', 'VerifiedAccessEndpointStatus$Message' => '

The status message of the Verified Access endpoint.

', 'VerifiedAccessGroup$VerifiedAccessGroupId' => '

The ID of the Verified Access group.

', 'VerifiedAccessGroup$VerifiedAccessInstanceId' => '

The ID of the Amazon Web Services Verified Access instance.

', 'VerifiedAccessGroup$Description' => '

A description for the Amazon Web Services Verified Access group.

', 'VerifiedAccessGroup$Owner' => '

The Amazon Web Services account number that owns the group.

', 'VerifiedAccessGroup$VerifiedAccessGroupArn' => '

The ARN of the Verified Access group.

', 'VerifiedAccessGroup$CreationTime' => '

The creation time.

', 'VerifiedAccessGroup$LastUpdatedTime' => '

The last updated time.

', 'VerifiedAccessGroup$DeletionTime' => '

The deletion time.

', 'VerifiedAccessInstance$VerifiedAccessInstanceId' => '

The ID of the Amazon Web Services Verified Access instance.

', 'VerifiedAccessInstance$Description' => '

A description for the Amazon Web Services Verified Access instance.

', 'VerifiedAccessInstance$CreationTime' => '

The creation time.

', 'VerifiedAccessInstance$LastUpdatedTime' => '

The last updated time.

', 'VerifiedAccessInstanceLoggingConfiguration$VerifiedAccessInstanceId' => '

The ID of the Amazon Web Services Verified Access instance.

', 'VerifiedAccessLogCloudWatchLogsDestination$LogGroup' => '

The ID of the CloudWatch Logs log group.

', 'VerifiedAccessLogCloudWatchLogsDestinationOptions$LogGroup' => '

The ID of the CloudWatch Logs log group.

', 'VerifiedAccessLogDeliveryStatus$Message' => '

The status message.

', 'VerifiedAccessLogKinesisDataFirehoseDestination$DeliveryStream' => '

The ID of the delivery stream.

', 'VerifiedAccessLogKinesisDataFirehoseDestinationOptions$DeliveryStream' => '

The ID of the delivery stream.

', 'VerifiedAccessLogOptions$LogVersion' => '

The logging version.

Valid values: ocsf-0.1 | ocsf-1.0.0-rc.2

', 'VerifiedAccessLogS3Destination$BucketName' => '

The bucket name.

', 'VerifiedAccessLogS3Destination$Prefix' => '

The bucket prefix.

', 'VerifiedAccessLogS3Destination$BucketOwner' => '

The Amazon Web Services account number that owns the bucket.

', 'VerifiedAccessLogS3DestinationOptions$BucketName' => '

The bucket name.

', 'VerifiedAccessLogS3DestinationOptions$Prefix' => '

The bucket prefix.

', 'VerifiedAccessLogS3DestinationOptions$BucketOwner' => '

The ID of the Amazon Web Services account that owns the Amazon S3 bucket.

', 'VerifiedAccessLogs$LogVersion' => '

The log version.

', 'VerifiedAccessTrustProvider$VerifiedAccessTrustProviderId' => '

The ID of the Amazon Web Services Verified Access trust provider.

', 'VerifiedAccessTrustProvider$Description' => '

A description for the Amazon Web Services Verified Access trust provider.

', 'VerifiedAccessTrustProvider$PolicyReferenceName' => '

The identifier to be used when working with policy rules.

', 'VerifiedAccessTrustProvider$CreationTime' => '

The creation time.

', 'VerifiedAccessTrustProvider$LastUpdatedTime' => '

The last updated time.

', 'VerifiedAccessTrustProviderCondensed$VerifiedAccessTrustProviderId' => '

The ID of the trust provider.

', 'VerifiedAccessTrustProviderCondensed$Description' => '

The description of trust provider.

', 'VersionStringList$member' => NULL, 'VgwTelemetry$OutsideIpAddress' => '

The Internet-routable IP address of the virtual private gateway\'s outside interface.

', 'VgwTelemetry$StatusMessage' => '

If an error occurs, a description of the error.

', 'VgwTelemetry$CertificateArn' => '

The Amazon Resource Name (ARN) of the VPN tunnel endpoint certificate.

', 'Volume$AvailabilityZone' => '

The Availability Zone for the volume.

', 'Volume$KmsKeyId' => '

The Amazon Resource Name (ARN) of the Key Management Service (KMS) KMS key that was used to protect the volume encryption key for the volume.

', 'Volume$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'Volume$SnapshotId' => '

The snapshot from which the volume was created, if applicable.

', 'Volume$VolumeId' => '

The ID of the volume.

', 'VolumeAttachment$Device' => '

The device name.

If the volume is attached to a Fargate task, this parameter returns null.

', 'VolumeAttachment$InstanceId' => '

The ID of the instance.

If the volume is attached to a Fargate task, this parameter returns null.

', 'VolumeAttachment$VolumeId' => '

The ID of the volume.

', 'VolumeAttachment$AssociatedResource' => '

The ARN of the Amazon ECS or Fargate task to which the volume is attached.

', 'VolumeAttachment$InstanceOwningService' => '

The service principal of Amazon Web Services service that owns the underlying instance to which the volume is attached.

This parameter is returned only for volumes that are attached to Fargate tasks.

', 'VolumeModification$VolumeId' => '

The ID of the volume.

', 'VolumeModification$StatusMessage' => '

A status message about the modification progress or failure.

', 'VolumeStatusAction$Code' => '

The code identifying the operation, for example, enable-volume-io.

', 'VolumeStatusAction$Description' => '

A description of the operation.

', 'VolumeStatusAction$EventId' => '

The ID of the event associated with this operation.

', 'VolumeStatusAction$EventType' => '

The event type associated with this operation.

', 'VolumeStatusAttachmentStatus$IoPerformance' => '

The maximum IOPS supported by the attached instance.

', 'VolumeStatusAttachmentStatus$InstanceId' => '

The ID of the attached instance.

', 'VolumeStatusDetails$Status' => '

The intended status of the volume status.

', 'VolumeStatusEvent$Description' => '

A description of the event.

', 'VolumeStatusEvent$EventId' => '

The ID of this event.

', 'VolumeStatusEvent$EventType' => '

The type of this event.

', 'VolumeStatusEvent$InstanceId' => '

The ID of the instance associated with the event.

', 'VolumeStatusItem$AvailabilityZone' => '

The Availability Zone of the volume.

', 'VolumeStatusItem$OutpostArn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'VolumeStatusItem$VolumeId' => '

The volume ID.

', 'Vpc$CidrBlock' => '

The primary IPv4 CIDR block for the VPC.

', 'Vpc$DhcpOptionsId' => '

The ID of the set of DHCP options you\'ve associated with the VPC.

', 'Vpc$VpcId' => '

The ID of the VPC.

', 'Vpc$OwnerId' => '

The ID of the Amazon Web Services account that owns the VPC.

', 'VpcAttachment$VpcId' => '

The ID of the VPC.

', 'VpcCidrBlockAssociation$AssociationId' => '

The association ID for the IPv4 CIDR block.

', 'VpcCidrBlockAssociation$CidrBlock' => '

The IPv4 CIDR block.

', 'VpcCidrBlockState$StatusMessage' => '

A message about the status of the CIDR block, if applicable.

', 'VpcClassicLink$VpcId' => '

The ID of the VPC.

', 'VpcEndpoint$VpcEndpointId' => '

The ID of the endpoint.

', 'VpcEndpoint$VpcId' => '

The ID of the VPC to which the endpoint is associated.

', 'VpcEndpoint$ServiceName' => '

The name of the service to which the endpoint is associated.

', 'VpcEndpoint$PolicyDocument' => '

The policy document associated with the endpoint, if applicable.

', 'VpcEndpoint$OwnerId' => '

The ID of the Amazon Web Services account that owns the endpoint.

', 'VpcEndpointConnection$ServiceId' => '

The ID of the service to which the endpoint is connected.

', 'VpcEndpointConnection$VpcEndpointId' => '

The ID of the VPC endpoint.

', 'VpcEndpointConnection$VpcEndpointOwner' => '

The ID of the Amazon Web Services account that owns the VPC endpoint.

', 'VpcEndpointConnection$VpcEndpointConnectionId' => '

The ID of the VPC endpoint connection.

', 'VpcIpv6CidrBlockAssociation$AssociationId' => '

The association ID for the IPv6 CIDR block.

', 'VpcIpv6CidrBlockAssociation$Ipv6CidrBlock' => '

The IPv6 CIDR block.

', 'VpcIpv6CidrBlockAssociation$NetworkBorderGroup' => '

The name of the unique set of Availability Zones, Local Zones, or Wavelength Zones from which Amazon Web Services advertises IP addresses, for example, us-east-1-wl1-bos-wlz-1.

', 'VpcIpv6CidrBlockAssociation$Ipv6Pool' => '

The ID of the IPv6 address pool from which the IPv6 CIDR block is allocated.

', 'VpcPeeringConnection$VpcPeeringConnectionId' => '

The ID of the VPC peering connection.

', 'VpcPeeringConnectionStateReason$Message' => '

A message that provides more information about the status, if applicable.

', 'VpcPeeringConnectionVpcInfo$CidrBlock' => '

The IPv4 CIDR block for the VPC.

', 'VpcPeeringConnectionVpcInfo$OwnerId' => '

The ID of the Amazon Web Services account that owns the VPC.

', 'VpcPeeringConnectionVpcInfo$VpcId' => '

The ID of the VPC.

', 'VpcPeeringConnectionVpcInfo$Region' => '

The Region in which the VPC is located.

', 'VpnConnection$CustomerGatewayId' => '

The ID of the customer gateway at your end of the VPN connection.

', 'VpnConnection$Category' => '

The category of the VPN connection. A value of VPN indicates an Amazon Web Services VPN connection. A value of VPN-Classic indicates an Amazon Web Services Classic VPN connection.

', 'VpnConnection$VpnConnectionId' => '

The ID of the VPN connection.

', 'VpnConnection$VpnGatewayId' => '

The ID of the virtual private gateway at the Amazon Web Services side of the VPN connection.

', 'VpnConnection$TransitGatewayId' => '

The ID of the transit gateway associated with the VPN connection.

', 'VpnConnection$CoreNetworkArn' => '

The ARN of the core network.

', 'VpnConnection$CoreNetworkAttachmentArn' => '

The ARN of the core network attachment.

', 'VpnConnectionDeviceType$VpnConnectionDeviceTypeId' => '

Customer gateway device identifier.

', 'VpnConnectionDeviceType$Vendor' => '

Customer gateway device vendor.

', 'VpnConnectionDeviceType$Platform' => '

Customer gateway device platform.

', 'VpnConnectionDeviceType$Software' => '

Customer gateway device software version.

', 'VpnConnectionOptions$LocalIpv4NetworkCidr' => '

The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection.

', 'VpnConnectionOptions$RemoteIpv4NetworkCidr' => '

The IPv4 CIDR on the Amazon Web Services side of the VPN connection.

', 'VpnConnectionOptions$LocalIpv6NetworkCidr' => '

The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection.

', 'VpnConnectionOptions$RemoteIpv6NetworkCidr' => '

The IPv6 CIDR on the Amazon Web Services side of the VPN connection.

', 'VpnConnectionOptions$OutsideIpAddressType' => '

The type of IPv4 address assigned to the outside interface of the customer gateway.

Valid values: PrivateIpv4 | PublicIpv4

Default: PublicIpv4

', 'VpnConnectionOptions$TransportTransitGatewayAttachmentId' => '

The transit gateway attachment ID in use for the VPN tunnel.

', 'VpnConnectionOptionsSpecification$LocalIpv4NetworkCidr' => '

The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection.

Default: 0.0.0.0/0

', 'VpnConnectionOptionsSpecification$RemoteIpv4NetworkCidr' => '

The IPv4 CIDR on the Amazon Web Services side of the VPN connection.

Default: 0.0.0.0/0

', 'VpnConnectionOptionsSpecification$LocalIpv6NetworkCidr' => '

The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection.

Default: ::/0

', 'VpnConnectionOptionsSpecification$RemoteIpv6NetworkCidr' => '

The IPv6 CIDR on the Amazon Web Services side of the VPN connection.

Default: ::/0

', 'VpnConnectionOptionsSpecification$OutsideIpAddressType' => '

The type of IPv4 address assigned to the outside interface of the customer gateway device.

Valid values: PrivateIpv4 | PublicIpv4

Default: PublicIpv4

', 'VpnGateway$AvailabilityZone' => '

The Availability Zone where the virtual private gateway was created, if applicable. This field may be empty or not returned.

', 'VpnGateway$VpnGatewayId' => '

The ID of the virtual private gateway.

', 'VpnStaticRoute$DestinationCidrBlock' => '

The CIDR block associated with the local subnet of the customer data center.

', 'VpnTunnelOptionsSpecification$TunnelInsideCidr' => '

The range of inside IPv4 addresses for the tunnel. Any specified CIDR blocks must be unique across all VPN connections that use the same virtual private gateway.

Constraints: A size /30 CIDR block from the 169.254.0.0/16 range. The following CIDR blocks are reserved and cannot be used:

  • 169.254.0.0/30

  • 169.254.1.0/30

  • 169.254.2.0/30

  • 169.254.3.0/30

  • 169.254.4.0/30

  • 169.254.5.0/30

  • 169.254.169.252/30

', 'VpnTunnelOptionsSpecification$TunnelInsideIpv6Cidr' => '

The range of inside IPv6 addresses for the tunnel. Any specified CIDR blocks must be unique across all VPN connections that use the same transit gateway.

Constraints: A size /126 CIDR block from the local fd00::/8 range.

', 'VpnTunnelOptionsSpecification$DPDTimeoutAction' => '

The action to take after DPD timeout occurs. Specify restart to restart the IKE initiation. Specify clear to end the IKE session.

Valid Values: clear | none | restart

Default: clear

', 'VpnTunnelOptionsSpecification$StartupAction' => '

The action to take when the establishing the tunnel for the VPN connection. By default, your customer gateway device must initiate the IKE negotiation and bring up the tunnel. Specify start for Amazon Web Services to initiate the IKE negotiation.

Valid Values: add | start

Default: add

', 'WithdrawByoipCidrRequest$Cidr' => '

The address range, in CIDR notation.

', 'ZoneIdStringList$member' => NULL, 'ZoneNameStringList$member' => NULL, ], ], 'StringList' => [ 'base' => NULL, 'refs' => [ 'Explanation$Protocols' => '

The protocols.

', 'RuleOption$Settings' => '

The settings for the keyword.

', ], ], 'StringType' => [ 'base' => NULL, 'refs' => [ 'RegisterImageRequest$UefiData' => '

Base64 representation of the non-volatile UEFI variable store. To retrieve the UEFI data, use the GetInstanceUefiData command. You can inspect and modify the UEFI data by using the python-uefivars tool on GitHub. For more information, see UEFI Secure Boot in the Amazon EC2 User Guide.

', ], ], 'Subnet' => [ 'base' => '

Describes a subnet.

', 'refs' => [ 'CreateDefaultSubnetResult$Subnet' => '

Information about the subnet.

', 'CreateSubnetResult$Subnet' => '

Information about the subnet.

', 'SubnetList$member' => NULL, ], ], 'SubnetAssociation' => [ 'base' => '

Describes the subnet association with the transit gateway multicast domain.

', 'refs' => [ 'SubnetAssociationList$member' => NULL, 'TransitGatewayMulticastDomainAssociation$Subnet' => '

The subnet associated with the transit gateway multicast domain.

', ], ], 'SubnetAssociationList' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayMulticastDomainAssociations$Subnets' => '

The subnets associated with the multicast domain.

', ], ], 'SubnetCidrAssociationId' => [ 'base' => NULL, 'refs' => [ 'DisassociateSubnetCidrBlockRequest$AssociationId' => '

The association ID for the CIDR block.

', 'SubnetIpv6CidrBlockAssociation$AssociationId' => '

The ID of the association.

', ], ], 'SubnetCidrBlockState' => [ 'base' => '

Describes the state of a CIDR block.

', 'refs' => [ 'SubnetIpv6CidrBlockAssociation$Ipv6CidrBlockState' => '

The state of the CIDR block.

', ], ], 'SubnetCidrBlockStateCode' => [ 'base' => NULL, 'refs' => [ 'SubnetCidrBlockState$State' => '

The state of a CIDR block.

', ], ], 'SubnetCidrReservation' => [ 'base' => '

Describes a subnet CIDR reservation.

', 'refs' => [ 'CreateSubnetCidrReservationResult$SubnetCidrReservation' => '

Information about the created subnet CIDR reservation.

', 'DeleteSubnetCidrReservationResult$DeletedSubnetCidrReservation' => '

Information about the deleted subnet CIDR reservation.

', 'SubnetCidrReservationList$member' => NULL, ], ], 'SubnetCidrReservationId' => [ 'base' => NULL, 'refs' => [ 'DeleteSubnetCidrReservationRequest$SubnetCidrReservationId' => '

The ID of the subnet CIDR reservation.

', 'SubnetCidrReservation$SubnetCidrReservationId' => '

The ID of the subnet CIDR reservation.

', ], ], 'SubnetCidrReservationList' => [ 'base' => NULL, 'refs' => [ 'GetSubnetCidrReservationsResult$SubnetIpv4CidrReservations' => '

Information about the IPv4 subnet CIDR reservations.

', 'GetSubnetCidrReservationsResult$SubnetIpv6CidrReservations' => '

Information about the IPv6 subnet CIDR reservations.

', ], ], 'SubnetCidrReservationType' => [ 'base' => NULL, 'refs' => [ 'CreateSubnetCidrReservationRequest$ReservationType' => '

The type of reservation. The reservation type determines how the reserved IP addresses are assigned to resources.

  • prefix - Amazon Web Services assigns the reserved IP addresses to network interfaces.

  • explicit - You assign the reserved IP addresses to network interfaces.

', 'SubnetCidrReservation$ReservationType' => '

The type of reservation.

', ], ], 'SubnetConfiguration' => [ 'base' => '

Describes the configuration of a subnet for a VPC endpoint.

', 'refs' => [ 'SubnetConfigurationsList$member' => NULL, ], ], 'SubnetConfigurationsList' => [ 'base' => NULL, 'refs' => [ 'CreateVpcEndpointRequest$SubnetConfigurations' => '

The subnet configurations for the endpoint.

', 'ModifyVpcEndpointRequest$SubnetConfigurations' => '

The subnet configurations for the endpoint.

', ], ], 'SubnetId' => [ 'base' => NULL, 'refs' => [ 'AssociateClientVpnTargetNetworkRequest$SubnetId' => '

The ID of the subnet to associate with the Client VPN endpoint.

', 'AssociateRouteTableRequest$SubnetId' => '

The ID of the subnet.

', 'AssociateSubnetCidrBlockRequest$SubnetId' => '

The ID of your subnet.

', 'CreateClientVpnRouteRequest$TargetVpcSubnetId' => '

The ID of the subnet through which you want to route traffic. The specified subnet must be an existing target network of the Client VPN endpoint.

Alternatively, if you\'re adding a route for the local network, specify local.

', 'CreateInstanceConnectEndpointRequest$SubnetId' => '

The ID of the subnet in which to create the EC2 Instance Connect Endpoint.

', 'CreateNatGatewayRequest$SubnetId' => '

The ID of the subnet in which to create the NAT gateway.

', 'CreateNetworkInterfaceRequest$SubnetId' => '

The ID of the subnet to associate with the network interface.

', 'CreateSubnetCidrReservationRequest$SubnetId' => '

The ID of the subnet.

', 'CreateVerifiedAccessEndpointSubnetIdList$member' => NULL, 'DeleteClientVpnRouteRequest$TargetVpcSubnetId' => '

The ID of the target subnet used by the route.

', 'DeleteSubnetRequest$SubnetId' => '

The ID of the subnet.

', 'Ec2InstanceConnectEndpoint$SubnetId' => '

The ID of the subnet in which the EC2 Instance Connect Endpoint was created.

', 'FleetLaunchTemplateOverridesRequest$SubnetId' => '

The IDs of the subnets in which to launch the instances. Separate multiple subnet IDs using commas (for example, subnet-1234abcdeexample1, subnet-0987cdef6example2). A request of type instant can have only one subnet ID.

', 'GetSubnetCidrReservationsRequest$SubnetId' => '

The ID of the subnet.

', 'ImportInstanceLaunchSpecification$SubnetId' => '

[EC2-VPC] The ID of the subnet in which to launch the instance.

', 'LaunchTemplateInstanceNetworkInterfaceSpecification$SubnetId' => '

The ID of the subnet for the network interface.

', 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$SubnetId' => '

The ID of the subnet for the network interface.

', 'LaunchTemplateOverrides$SubnetId' => '

The ID of the subnet in which to launch the instances.

', 'LocalGatewayRoute$SubnetId' => '

The ID of the subnet.

', 'ModifySubnetAttributeRequest$SubnetId' => '

The ID of the subnet.

', 'ModifyVerifiedAccessEndpointSubnetIdList$member' => NULL, 'RequestSpotLaunchSpecification$SubnetId' => '

The ID of the subnet in which to launch the instance.

', 'RunInstancesRequest$SubnetId' => '

The ID of the subnet to launch the instance into.

If you specify a network interface, you must specify any subnets as part of the network interface.

', 'ScheduledInstancesLaunchSpecification$SubnetId' => '

The ID of the subnet in which to launch the instances.

', 'ScheduledInstancesNetworkInterface$SubnetId' => '

The ID of the subnet.

', 'SpotFleetLaunchSpecification$SubnetId' => '

The IDs of the subnets in which to launch the instances. To specify multiple subnets, separate them using commas; for example, "subnet-1234abcdeexample1, subnet-0987cdef6example2".

', 'SubnetCidrReservation$SubnetId' => '

The ID of the subnet.

', 'SubnetConfiguration$SubnetId' => '

The ID of the subnet.

', 'SubnetIdStringList$member' => NULL, 'TransitGatewaySubnetIdList$member' => NULL, 'VerifiedAccessEndpointSubnetIdList$member' => NULL, 'VpcEndpointSubnetIdList$member' => NULL, ], ], 'SubnetIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeSubnetsRequest$SubnetIds' => '

The IDs of the subnets.

Default: Describes all your subnets.

', ], ], 'SubnetIpv6CidrBlockAssociation' => [ 'base' => '

Describes an association between a subnet and an IPv6 CIDR block.

', 'refs' => [ 'AssociateSubnetCidrBlockResult$Ipv6CidrBlockAssociation' => '

Information about the IPv6 association.

', 'DisassociateSubnetCidrBlockResult$Ipv6CidrBlockAssociation' => '

Information about the IPv6 CIDR block association.

', 'SubnetIpv6CidrBlockAssociationSet$member' => NULL, ], ], 'SubnetIpv6CidrBlockAssociationSet' => [ 'base' => NULL, 'refs' => [ 'Subnet$Ipv6CidrBlockAssociationSet' => '

Information about the IPv6 CIDR blocks associated with the subnet.

', ], ], 'SubnetList' => [ 'base' => NULL, 'refs' => [ 'DescribeSubnetsResult$Subnets' => '

Information about one or more subnets.

', ], ], 'SubnetState' => [ 'base' => NULL, 'refs' => [ 'Subnet$State' => '

The current state of the subnet.

', ], ], 'Subscription' => [ 'base' => '

Describes an Infrastructure Performance subscription.

', 'refs' => [ 'SubscriptionList$member' => NULL, ], ], 'SubscriptionList' => [ 'base' => NULL, 'refs' => [ 'DescribeAwsNetworkPerformanceMetricSubscriptionsResult$Subscriptions' => '

Describes the current Infrastructure Performance subscriptions.

', ], ], 'SuccessfulInstanceCreditSpecificationItem' => [ 'base' => '

Describes the burstable performance instance whose credit option for CPU usage was successfully modified.

', 'refs' => [ 'SuccessfulInstanceCreditSpecificationSet$member' => NULL, ], ], 'SuccessfulInstanceCreditSpecificationSet' => [ 'base' => NULL, 'refs' => [ 'ModifyInstanceCreditSpecificationResult$SuccessfulInstanceCreditSpecifications' => '

Information about the instances whose credit option for CPU usage was successfully modified.

', ], ], 'SuccessfulQueuedPurchaseDeletion' => [ 'base' => '

Describes a Reserved Instance whose queued purchase was successfully deleted.

', 'refs' => [ 'SuccessfulQueuedPurchaseDeletionSet$member' => NULL, ], ], 'SuccessfulQueuedPurchaseDeletionSet' => [ 'base' => NULL, 'refs' => [ 'DeleteQueuedReservedInstancesResult$SuccessfulQueuedPurchaseDeletions' => '

Information about the queued purchases that were successfully deleted.

', ], ], 'SummaryStatus' => [ 'base' => NULL, 'refs' => [ 'InstanceStatusSummary$Status' => '

The status.

', ], ], 'SupportedAdditionalProcessorFeature' => [ 'base' => NULL, 'refs' => [ 'SupportedAdditionalProcessorFeatureList$member' => NULL, ], ], 'SupportedAdditionalProcessorFeatureList' => [ 'base' => NULL, 'refs' => [ 'ProcessorInfo$SupportedFeatures' => '

Indicates whether the instance type supports AMD SEV-SNP. If the request returns amd-sev-snp, AMD SEV-SNP is supported. Otherwise, it is not supported. For more information, see AMD SEV-SNP.

', ], ], 'SupportedIpAddressTypes' => [ 'base' => NULL, 'refs' => [ 'ServiceConfiguration$SupportedIpAddressTypes' => '

The supported IP address types.

', 'ServiceDetail$SupportedIpAddressTypes' => '

The supported IP address types.

', ], ], 'Tag' => [ 'base' => '

Describes a tag.

', 'refs' => [ 'TagList$member' => NULL, ], ], 'TagDescription' => [ 'base' => '

Describes a tag.

', 'refs' => [ 'TagDescriptionList$member' => NULL, ], ], 'TagDescriptionList' => [ 'base' => NULL, 'refs' => [ 'DescribeTagsResult$Tags' => '

The tags.

', ], ], 'TagList' => [ 'base' => NULL, 'refs' => [ 'Address$Tags' => '

Any tags assigned to the Elastic IP address.

', 'AllowedPrincipal$Tags' => '

The tags.

', 'CapacityReservation$Tags' => '

Any tags assigned to the Capacity Reservation.

', 'CapacityReservationFleet$Tags' => '

The tags assigned to the Capacity Reservation Fleet.

', 'CarrierGateway$Tags' => '

The tags assigned to the carrier gateway.

', 'ClassicLinkInstance$Tags' => '

Any tags assigned to the instance.

', 'ClientVpnEndpoint$Tags' => '

Any tags assigned to the Client VPN endpoint.

', 'CoipPool$Tags' => '

The tags.

', 'ConversionTask$Tags' => '

Any tags assigned to the task.

', 'CopySnapshotResult$Tags' => '

Any tags applied to the new snapshot.

', 'CreateCapacityReservationFleetResult$Tags' => '

The tags assigned to the Capacity Reservation Fleet.

', 'CreateSecurityGroupResult$Tags' => '

The tags assigned to the security group.

', 'CreateTagsRequest$Tags' => '

The tags. The value parameter is required, but if you don\'t want the tag to have a value, specify the parameter with no value, and we set the value to an empty string.

', 'CustomerGateway$Tags' => '

Any tags assigned to the customer gateway.

', 'DeleteTagsRequest$Tags' => '

The tags to delete. Specify a tag key and an optional tag value to delete specific tags. If you specify a tag key without a tag value, we delete any tag with this key regardless of its value. If you specify a tag key with an empty string as the tag value, we delete the tag only if its value is an empty string.

If you omit this parameter, we delete all user-defined tags for the specified resources. We do not delete Amazon Web Services-generated tags (tags that have the aws: prefix).

Constraints: Up to 1000 tags.

', 'DhcpOptions$Tags' => '

Any tags assigned to the DHCP options set.

', 'Ec2InstanceConnectEndpoint$Tags' => '

The tags assigned to the EC2 Instance Connect Endpoint.

', 'EgressOnlyInternetGateway$Tags' => '

The tags assigned to the egress-only internet gateway.

', 'ElasticGpus$Tags' => '

The tags assigned to the Elastic Graphics accelerator.

', 'ExportImageResult$Tags' => '

Any tags assigned to the export image task.

', 'ExportImageTask$Tags' => '

Any tags assigned to the export image task.

', 'ExportTask$Tags' => '

The tags for the export task.

', 'FleetData$Tags' => '

The tags for an EC2 Fleet resource.

', 'FlowLog$Tags' => '

The tags for the flow log.

', 'FpgaImage$Tags' => '

Any tags assigned to the AFI.

', 'Host$Tags' => '

Any tags assigned to the Dedicated Host.

', 'HostReservation$Tags' => '

Any tags assigned to the Dedicated Host Reservation.

', 'Image$Tags' => '

Any tags assigned to the image.

', 'ImportImageResult$Tags' => '

Any tags assigned to the import image task.

', 'ImportImageTask$Tags' => '

The tags for the import image task.

', 'ImportKeyPairResult$Tags' => '

The tags applied to the imported key pair.

', 'ImportSnapshotResult$Tags' => '

Any tags assigned to the import snapshot task.

', 'ImportSnapshotTask$Tags' => '

The tags for the import snapshot task.

', 'Instance$Tags' => '

Any tags assigned to the instance.

', 'InstanceEventWindow$Tags' => '

The instance tags associated with the event window.

', 'InstanceEventWindowAssociationRequest$InstanceTags' => '

The instance tags to associate with the event window. Any instances associated with the tags will be associated with the event window.

', 'InstanceEventWindowAssociationTarget$Tags' => '

The instance tags associated with the event window. Any instances associated with the tags will be associated with the event window.

', 'InstanceEventWindowDisassociationRequest$InstanceTags' => '

The instance tags to disassociate from the event window. Any instances associated with the tags will be disassociated from the event window.

', 'InternetGateway$Tags' => '

Any tags assigned to the internet gateway.

', 'Ipam$Tags' => '

The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'IpamPool$Tags' => '

The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'IpamResourceDiscovery$Tags' => '

A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.

', 'IpamResourceDiscoveryAssociation$Tags' => '

A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.

', 'IpamScope$Tags' => '

The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'Ipv6Pool$Tags' => '

Any tags for the address pool.

', 'KeyPair$Tags' => '

Any tags applied to the key pair.

', 'KeyPairInfo$Tags' => '

Any tags applied to the key pair.

', 'LaunchTemplate$Tags' => '

The tags for the launch template.

', 'LaunchTemplateTagSpecification$Tags' => '

The tags for the resource.

', 'LaunchTemplateTagSpecificationRequest$Tags' => '

The tags to apply to the resource.

', 'LocalGateway$Tags' => '

The tags assigned to the local gateway.

', 'LocalGatewayRouteTable$Tags' => '

The tags assigned to the local gateway route table.

', 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation$Tags' => '

The tags assigned to the association.

', 'LocalGatewayRouteTableVpcAssociation$Tags' => '

The tags assigned to the association.

', 'LocalGatewayVirtualInterface$Tags' => '

The tags assigned to the virtual interface.

', 'LocalGatewayVirtualInterfaceGroup$Tags' => '

The tags assigned to the virtual interface group.

', 'ManagedPrefixList$Tags' => '

The tags for the prefix list.

', 'NatGateway$Tags' => '

The tags for the NAT gateway.

', 'NetworkAcl$Tags' => '

Any tags assigned to the network ACL.

', 'NetworkInsightsAccessScope$Tags' => '

The tags.

', 'NetworkInsightsAccessScopeAnalysis$Tags' => '

The tags.

', 'NetworkInsightsAnalysis$Tags' => '

The tags.

', 'NetworkInsightsPath$Tags' => '

The tags associated with the path.

', 'NetworkInterface$TagSet' => '

Any tags assigned to the network interface.

', 'PlacementGroup$Tags' => '

Any tags applied to the placement group.

', 'PublicIpv4Pool$Tags' => '

Any tags for the address pool.

', 'ReplaceRootVolumeTask$Tags' => '

The tags assigned to the task.

', 'ReservedInstances$Tags' => '

Any tags assigned to the resource.

', 'ReservedInstancesListing$Tags' => '

Any tags assigned to the resource.

', 'RouteTable$Tags' => '

Any tags assigned to the route table.

', 'SecurityGroup$Tags' => '

Any tags assigned to the security group.

', 'SecurityGroupForVpc$Tags' => '

The security group tags.

', 'SecurityGroupRule$Tags' => '

The tags applied to the security group rule.

', 'ServiceConfiguration$Tags' => '

The tags assigned to the service.

', 'ServiceDetail$Tags' => '

The tags assigned to the service.

', 'Snapshot$Tags' => '

Any tags assigned to the snapshot.

', 'SnapshotInfo$Tags' => '

Tags associated with this snapshot.

', 'SnapshotTierStatus$Tags' => '

The tags that are assigned to the snapshot.

', 'SpotFleetRequestConfig$Tags' => '

The tags for a Spot Fleet resource.

', 'SpotFleetTagSpecification$Tags' => '

The tags.

', 'SpotInstanceRequest$Tags' => '

Any tags assigned to the resource.

', 'Subnet$Tags' => '

Any tags assigned to the subnet.

', 'SubnetCidrReservation$Tags' => '

The tags assigned to the subnet CIDR reservation.

', 'TagSpecification$Tags' => '

The tags to apply to the resource.

', 'TrafficMirrorFilter$Tags' => '

The tags assigned to the Traffic Mirror filter.

', 'TrafficMirrorSession$Tags' => '

The tags assigned to the Traffic Mirror session.

', 'TrafficMirrorTarget$Tags' => '

The tags assigned to the Traffic Mirror target.

', 'TransitGateway$Tags' => '

The tags for the transit gateway.

', 'TransitGatewayAttachment$Tags' => '

The tags for the attachment.

', 'TransitGatewayConnect$Tags' => '

The tags for the attachment.

', 'TransitGatewayConnectPeer$Tags' => '

The tags for the Connect peer.

', 'TransitGatewayMulticastDomain$Tags' => '

The tags for the transit gateway multicast domain.

', 'TransitGatewayPeeringAttachment$Tags' => '

The tags for the transit gateway peering attachment.

', 'TransitGatewayPolicyTable$Tags' => '

he key-value pairs associated with the transit gateway policy table.

', 'TransitGatewayRouteTable$Tags' => '

Any tags assigned to the route table.

', 'TransitGatewayRouteTableAnnouncement$Tags' => '

The key-value pairs associated with the route table announcement.

', 'TransitGatewayVpcAttachment$Tags' => '

The tags for the VPC attachment.

', 'TrunkInterfaceAssociation$Tags' => '

The tags for the trunk interface association.

', 'VerifiedAccessEndpoint$Tags' => '

The tags.

', 'VerifiedAccessGroup$Tags' => '

The tags.

', 'VerifiedAccessInstance$Tags' => '

The tags.

', 'VerifiedAccessTrustProvider$Tags' => '

The tags.

', 'Volume$Tags' => '

Any tags assigned to the volume.

', 'Vpc$Tags' => '

Any tags assigned to the VPC.

', 'VpcClassicLink$Tags' => '

Any tags assigned to the VPC.

', 'VpcEndpoint$Tags' => '

The tags assigned to the endpoint.

', 'VpcEndpointConnection$Tags' => '

The tags.

', 'VpcPeeringConnection$Tags' => '

Any tags assigned to the resource.

', 'VpnConnection$Tags' => '

Any tags assigned to the VPN connection.

', 'VpnGateway$Tags' => '

Any tags assigned to the virtual private gateway.

', ], ], 'TagSpecification' => [ 'base' => '

The tags to apply to a resource when the resource is being created. When you specify a tag, you must specify the resource type to tag, otherwise the request will fail.

The Valid Values lists all the resource types that can be tagged. However, the action you\'re using might not support tagging all of these resource types. If you try to tag a resource type that is unsupported for the action you\'re using, you\'ll get an error.

', 'refs' => [ 'TagSpecificationList$member' => NULL, ], ], 'TagSpecificationList' => [ 'base' => NULL, 'refs' => [ 'AcceptAddressTransferRequest$TagSpecifications' => '

tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'AllocateAddressRequest$TagSpecifications' => '

The tags to assign to the Elastic IP address.

', 'AllocateHostsRequest$TagSpecifications' => '

The tags to apply to the Dedicated Host during creation.

', 'AssociateIpamResourceDiscoveryRequest$TagSpecifications' => '

Tag specifications.

', 'AuthorizeSecurityGroupEgressRequest$TagSpecifications' => '

The tags applied to the security group rule.

', 'AuthorizeSecurityGroupIngressRequest$TagSpecifications' => '

[VPC Only] The tags applied to the security group rule.

', 'CopySnapshotRequest$TagSpecifications' => '

The tags to apply to the new snapshot.

', 'CreateCapacityReservationFleetRequest$TagSpecifications' => '

The tags to assign to the Capacity Reservation Fleet. The tags are automatically assigned to the Capacity Reservations in the Fleet.

', 'CreateCapacityReservationRequest$TagSpecifications' => '

The tags to apply to the Capacity Reservation during launch.

', 'CreateCarrierGatewayRequest$TagSpecifications' => '

The tags to associate with the carrier gateway.

', 'CreateClientVpnEndpointRequest$TagSpecifications' => '

The tags to apply to the Client VPN endpoint during creation.

', 'CreateCoipPoolRequest$TagSpecifications' => '

The tags to assign to the CoIP address pool.

', 'CreateCustomerGatewayRequest$TagSpecifications' => '

The tags to apply to the customer gateway.

', 'CreateDhcpOptionsRequest$TagSpecifications' => '

The tags to assign to the DHCP option.

', 'CreateEgressOnlyInternetGatewayRequest$TagSpecifications' => '

The tags to assign to the egress-only internet gateway.

', 'CreateFleetRequest$TagSpecifications' => '

The key-value pair for tagging the EC2 Fleet request on creation. For more information, see Tag your resources.

If the fleet type is instant, specify a resource type of fleet to tag the fleet or instance to tag the instances at launch.

If the fleet type is maintain or request, specify a resource type of fleet to tag the fleet. You cannot specify a resource type of instance. To tag instances at launch, specify the tags in a launch template.

', 'CreateFlowLogsRequest$TagSpecifications' => '

The tags to apply to the flow logs.

', 'CreateFpgaImageRequest$TagSpecifications' => '

The tags to apply to the FPGA image during creation.

', 'CreateImageRequest$TagSpecifications' => '

The tags to apply to the AMI and snapshots on creation. You can tag the AMI, the snapshots, or both.

  • To tag the AMI, the value for ResourceType must be image.

  • To tag the snapshots that are created of the root volume and of other Amazon EBS volumes that are attached to the instance, the value for ResourceType must be snapshot. The same tag is applied to all of the snapshots that are created.

If you specify other values for ResourceType, the request fails.

To tag an AMI or snapshot after it has been created, see CreateTags.

', 'CreateInstanceConnectEndpointRequest$TagSpecifications' => '

The tags to apply to the EC2 Instance Connect Endpoint during creation.

', 'CreateInstanceEventWindowRequest$TagSpecifications' => '

The tags to apply to the event window.

', 'CreateInstanceExportTaskRequest$TagSpecifications' => '

The tags to apply to the export instance task during creation.

', 'CreateInternetGatewayRequest$TagSpecifications' => '

The tags to assign to the internet gateway.

', 'CreateIpamPoolRequest$TagSpecifications' => '

The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'CreateIpamRequest$TagSpecifications' => '

The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'CreateIpamResourceDiscoveryRequest$TagSpecifications' => '

Tag specifications for the IPAM resource discovery.

', 'CreateIpamScopeRequest$TagSpecifications' => '

The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'CreateKeyPairRequest$TagSpecifications' => '

The tags to apply to the new key pair.

', 'CreateLaunchTemplateRequest$TagSpecifications' => '

The tags to apply to the launch template on creation. To tag the launch template, the resource type must be launch-template.

To specify the tags for the resources that are created when an instance is launched, you must use the TagSpecifications parameter in the launch template data structure.

', 'CreateLocalGatewayRouteTableRequest$TagSpecifications' => '

The tags assigned to the local gateway route table.

', 'CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest$TagSpecifications' => '

The tags assigned to the local gateway route table virtual interface group association.

', 'CreateLocalGatewayRouteTableVpcAssociationRequest$TagSpecifications' => '

The tags to assign to the local gateway route table VPC association.

', 'CreateManagedPrefixListRequest$TagSpecifications' => '

The tags to apply to the prefix list during creation.

', 'CreateNatGatewayRequest$TagSpecifications' => '

The tags to assign to the NAT gateway.

', 'CreateNetworkAclRequest$TagSpecifications' => '

The tags to assign to the network ACL.

', 'CreateNetworkInsightsAccessScopeRequest$TagSpecifications' => '

The tags to apply.

', 'CreateNetworkInsightsPathRequest$TagSpecifications' => '

The tags to add to the path.

', 'CreateNetworkInterfaceRequest$TagSpecifications' => '

The tags to apply to the new network interface.

', 'CreatePlacementGroupRequest$TagSpecifications' => '

The tags to apply to the new placement group.

', 'CreatePublicIpv4PoolRequest$TagSpecifications' => '

The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

', 'CreateReplaceRootVolumeTaskRequest$TagSpecifications' => '

The tags to apply to the root volume replacement task.

', 'CreateRestoreImageTaskRequest$TagSpecifications' => '

The tags to apply to the AMI and snapshots on restoration. You can tag the AMI, the snapshots, or both.

  • To tag the AMI, the value for ResourceType must be image.

  • To tag the snapshots, the value for ResourceType must be snapshot. The same tag is applied to all of the snapshots that are created.

', 'CreateRouteTableRequest$TagSpecifications' => '

The tags to assign to the route table.

', 'CreateSecurityGroupRequest$TagSpecifications' => '

The tags to assign to the security group.

', 'CreateSnapshotRequest$TagSpecifications' => '

The tags to apply to the snapshot during creation.

', 'CreateSnapshotsRequest$TagSpecifications' => '

Tags to apply to every snapshot specified by the instance.

', 'CreateSubnetCidrReservationRequest$TagSpecifications' => '

The tags to assign to the subnet CIDR reservation.

', 'CreateSubnetRequest$TagSpecifications' => '

The tags to assign to the subnet.

', 'CreateTrafficMirrorFilterRequest$TagSpecifications' => '

The tags to assign to a Traffic Mirror filter.

', 'CreateTrafficMirrorSessionRequest$TagSpecifications' => '

The tags to assign to a Traffic Mirror session.

', 'CreateTrafficMirrorTargetRequest$TagSpecifications' => '

The tags to assign to the Traffic Mirror target.

', 'CreateTransitGatewayConnectPeerRequest$TagSpecifications' => '

The tags to apply to the Connect peer.

', 'CreateTransitGatewayConnectRequest$TagSpecifications' => '

The tags to apply to the Connect attachment.

', 'CreateTransitGatewayMulticastDomainRequest$TagSpecifications' => '

The tags for the transit gateway multicast domain.

', 'CreateTransitGatewayPeeringAttachmentRequest$TagSpecifications' => '

The tags to apply to the transit gateway peering attachment.

', 'CreateTransitGatewayPolicyTableRequest$TagSpecifications' => '

The tags specification for the transit gateway policy table created during the request.

', 'CreateTransitGatewayRequest$TagSpecifications' => '

The tags to apply to the transit gateway.

', 'CreateTransitGatewayRouteTableAnnouncementRequest$TagSpecifications' => '

The tags specifications applied to the transit gateway route table announcement.

', 'CreateTransitGatewayRouteTableRequest$TagSpecifications' => '

The tags to apply to the transit gateway route table.

', 'CreateTransitGatewayVpcAttachmentRequest$TagSpecifications' => '

The tags to apply to the VPC attachment.

', 'CreateVerifiedAccessEndpointRequest$TagSpecifications' => '

The tags to assign to the Verified Access endpoint.

', 'CreateVerifiedAccessGroupRequest$TagSpecifications' => '

The tags to assign to the Verified Access group.

', 'CreateVerifiedAccessInstanceRequest$TagSpecifications' => '

The tags to assign to the Verified Access instance.

', 'CreateVerifiedAccessTrustProviderRequest$TagSpecifications' => '

The tags to assign to the Verified Access trust provider.

', 'CreateVolumeRequest$TagSpecifications' => '

The tags to apply to the volume during creation.

', 'CreateVpcEndpointRequest$TagSpecifications' => '

The tags to associate with the endpoint.

', 'CreateVpcEndpointServiceConfigurationRequest$TagSpecifications' => '

The tags to associate with the service.

', 'CreateVpcPeeringConnectionRequest$TagSpecifications' => '

The tags to assign to the peering connection.

', 'CreateVpcRequest$TagSpecifications' => '

The tags to assign to the VPC.

', 'CreateVpnConnectionRequest$TagSpecifications' => '

The tags to apply to the VPN connection.

', 'CreateVpnGatewayRequest$TagSpecifications' => '

The tags to apply to the virtual private gateway.

', 'ExportImageRequest$TagSpecifications' => '

The tags to apply to the export image task during creation.

', 'ImportImageRequest$TagSpecifications' => '

The tags to apply to the import image task during creation.

', 'ImportKeyPairRequest$TagSpecifications' => '

The tags to apply to the imported key pair.

', 'ImportSnapshotRequest$TagSpecifications' => '

The tags to apply to the import snapshot task during creation.

', 'ProvisionByoipCidrRequest$PoolTagSpecifications' => '

The tags to apply to the address pool.

', 'PurchaseCapacityBlockRequest$TagSpecifications' => '

The tags to apply to the Capacity Block during launch.

', 'PurchaseHostReservationRequest$TagSpecifications' => '

The tags to apply to the Dedicated Host Reservation during purchase.

', 'RequestSpotInstancesRequest$TagSpecifications' => '

The key-value pair for tagging the Spot Instance request on creation. The value for ResourceType must be spot-instances-request, otherwise the Spot Instance request fails. To tag the Spot Instance request after it has been created, see CreateTags.

', 'RunInstancesRequest$TagSpecifications' => '

The tags to apply to the resources that are created during instance launch.

You can specify tags for the following resources only:

  • Instances

  • Volumes

  • Spot Instance requests

  • Network interfaces

To tag a resource after it has been created, see CreateTags.

', 'SpotFleetRequestConfigData$TagSpecifications' => '

The key-value pair for tagging the Spot Fleet request on creation. The value for ResourceType must be spot-fleet-request, otherwise the Spot Fleet request fails. To tag instances at launch, specify the tags in the launch template (valid only if you use LaunchTemplateConfigs) or in the SpotFleetTagSpecification (valid only if you use LaunchSpecifications). For information about tagging after launch, see Tag your resources.

', 'StartNetworkInsightsAccessScopeAnalysisRequest$TagSpecifications' => '

The tags to apply.

', 'StartNetworkInsightsAnalysisRequest$TagSpecifications' => '

The tags to apply.

', ], ], 'TaggableResourceId' => [ 'base' => NULL, 'refs' => [ 'ResourceIdList$member' => NULL, ], ], 'TargetCapacitySpecification' => [ 'base' => '

The number of units to request. You can choose to set the target capacity in terms of instances or a performance characteristic that is important to your application workload, such as vCPUs, memory, or I/O. If the request type is maintain, you can specify a target capacity of 0 and add capacity later.

You can use the On-Demand Instance MaxTotalPrice parameter, the Spot Instance MaxTotalPrice, or both to ensure that your fleet cost does not exceed your budget. If you set a maximum price per hour for the On-Demand Instances and Spot Instances in your request, EC2 Fleet will launch instances until it reaches the maximum amount that you\'re willing to pay. When the maximum amount you\'re willing to pay is reached, the fleet stops launching instances even if it hasn’t met the target capacity. The MaxTotalPrice parameters are located in OnDemandOptions and SpotOptions.

', 'refs' => [ 'FleetData$TargetCapacitySpecification' => '

The number of units to request. You can choose to set the target capacity in terms of instances or a performance characteristic that is important to your application workload, such as vCPUs, memory, or I/O. If the request type is maintain, you can specify a target capacity of 0 and add capacity later.

', ], ], 'TargetCapacitySpecificationRequest' => [ 'base' => '

The number of units to request. You can choose to set the target capacity as the number of instances. Or you can set the target capacity to a performance characteristic that is important to your application workload, such as vCPUs, memory, or I/O. If the request type is maintain, you can specify a target capacity of 0 and add capacity later.

You can use the On-Demand Instance MaxTotalPrice parameter, the Spot Instance MaxTotalPrice parameter, or both parameters to ensure that your fleet cost does not exceed your budget. If you set a maximum price per hour for the On-Demand Instances and Spot Instances in your request, EC2 Fleet will launch instances until it reaches the maximum amount that you\'re willing to pay. When the maximum amount you\'re willing to pay is reached, the fleet stops launching instances even if it hasn\'t met the target capacity. The MaxTotalPrice parameters are located in OnDemandOptionsRequest and SpotOptionsRequest.

', 'refs' => [ 'CreateFleetRequest$TargetCapacitySpecification' => '

The number of units to request.

', 'ModifyFleetRequest$TargetCapacitySpecification' => '

The size of the EC2 Fleet.

', ], ], 'TargetCapacityUnitType' => [ 'base' => NULL, 'refs' => [ 'GetSpotPlacementScoresRequest$TargetCapacityUnitType' => '

The unit for the target capacity.

', 'SpotFleetRequestConfigData$TargetCapacityUnitType' => '

The unit for the target capacity. You can specify this parameter only when using attribute-based instance type selection.

Default: units (the number of instances)

', 'TargetCapacitySpecification$TargetCapacityUnitType' => '

The unit for the target capacity.

', 'TargetCapacitySpecificationRequest$TargetCapacityUnitType' => '

The unit for the target capacity. You can specify this parameter only when using attributed-based instance type selection.

Default: units (the number of instances)

', ], ], 'TargetConfiguration' => [ 'base' => '

Information about the Convertible Reserved Instance offering.

', 'refs' => [ 'TargetReservationValue$TargetConfiguration' => '

The configuration of the Convertible Reserved Instances that make up the exchange.

', ], ], 'TargetConfigurationRequest' => [ 'base' => '

Details about the target configuration.

', 'refs' => [ 'TargetConfigurationRequestSet$member' => NULL, ], ], 'TargetConfigurationRequestSet' => [ 'base' => NULL, 'refs' => [ 'AcceptReservedInstancesExchangeQuoteRequest$TargetConfigurations' => '

The configuration of the target Convertible Reserved Instance to exchange for your current Convertible Reserved Instances.

', 'GetReservedInstancesExchangeQuoteRequest$TargetConfigurations' => '

The configuration of the target Convertible Reserved Instance to exchange for your current Convertible Reserved Instances.

', ], ], 'TargetGroup' => [ 'base' => '

Describes a load balancer target group.

', 'refs' => [ 'TargetGroups$member' => NULL, ], ], 'TargetGroups' => [ 'base' => NULL, 'refs' => [ 'TargetGroupsConfig$TargetGroups' => '

One or more target groups.

', ], ], 'TargetGroupsConfig' => [ 'base' => '

Describes the target groups to attach to a Spot Fleet. Spot Fleet registers the running Spot Instances with these target groups.

', 'refs' => [ 'LoadBalancersConfig$TargetGroupsConfig' => '

The target groups.

', ], ], 'TargetNetwork' => [ 'base' => '

Describes a target network associated with a Client VPN endpoint.

', 'refs' => [ 'TargetNetworkSet$member' => NULL, ], ], 'TargetNetworkSet' => [ 'base' => NULL, 'refs' => [ 'DescribeClientVpnTargetNetworksResult$ClientVpnTargetNetworks' => '

Information about the associated target networks.

', ], ], 'TargetReservationValue' => [ 'base' => '

The total value of the new Convertible Reserved Instances.

', 'refs' => [ 'TargetReservationValueSet$member' => NULL, ], ], 'TargetReservationValueSet' => [ 'base' => NULL, 'refs' => [ 'GetReservedInstancesExchangeQuoteResult$TargetConfigurationValueSet' => '

The values of the target Convertible Reserved Instances.

', ], ], 'TargetStorageTier' => [ 'base' => NULL, 'refs' => [ 'ModifySnapshotTierRequest$StorageTier' => '

The name of the storage tier. You must specify archive.

', ], ], 'TelemetryStatus' => [ 'base' => NULL, 'refs' => [ 'VgwTelemetry$Status' => '

The status of the VPN tunnel.

', ], ], 'Tenancy' => [ 'base' => NULL, 'refs' => [ 'CreateVpcRequest$InstanceTenancy' => '

The tenancy options for instances launched into the VPC. For default, instances are launched with shared tenancy by default. You can launch instances with any tenancy into a shared tenancy VPC. For dedicated, instances are launched as dedicated tenancy instances by default. You can only launch instances with a tenancy of dedicated or host into a dedicated tenancy VPC.

Important: The host value cannot be used with this parameter. Use the default or dedicated values only.

Default: default

', 'DescribeReservedInstancesOfferingsRequest$InstanceTenancy' => '

The tenancy of the instances covered by the reservation. A Reserved Instance with a tenancy of dedicated is applied to instances that run in a VPC on single-tenant hardware (i.e., Dedicated Instances).

Important: The host value cannot be used with this parameter. Use the default or dedicated values only.

Default: default

', 'LaunchTemplatePlacement$Tenancy' => '

The tenancy of the instance. An instance with a tenancy of dedicated runs on single-tenant hardware.

', 'LaunchTemplatePlacementRequest$Tenancy' => '

The tenancy of the instance. An instance with a tenancy of dedicated runs on single-tenant hardware.

', 'Placement$Tenancy' => '

The tenancy of the instance. An instance with a tenancy of dedicated runs on single-tenant hardware.

This parameter is not supported for CreateFleet. The host tenancy is not supported for ImportInstance or for T3 instances that are configured for the unlimited CPU credit option.

', 'ReservedInstances$InstanceTenancy' => '

The tenancy of the instance.

', 'ReservedInstancesOffering$InstanceTenancy' => '

The tenancy of the instance.

', 'SpotPlacement$Tenancy' => '

The tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of dedicated runs on single-tenant hardware. The host tenancy is not supported for Spot Instances.

', 'Vpc$InstanceTenancy' => '

The allowed tenancy of instances launched into the VPC.

', ], ], 'TerminateClientVpnConnectionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'TerminateClientVpnConnectionsResult' => [ 'base' => NULL, 'refs' => [], ], 'TerminateConnectionStatus' => [ 'base' => '

Information about a terminated Client VPN endpoint client connection.

', 'refs' => [ 'TerminateConnectionStatusSet$member' => NULL, ], ], 'TerminateConnectionStatusSet' => [ 'base' => NULL, 'refs' => [ 'TerminateClientVpnConnectionsResult$ConnectionStatuses' => '

The current state of the client connections.

', ], ], 'TerminateInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'TerminateInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'ThreadsPerCore' => [ 'base' => NULL, 'refs' => [ 'ThreadsPerCoreList$member' => NULL, 'VCpuInfo$DefaultThreadsPerCore' => '

The default number of threads per core for the instance type.

', ], ], 'ThreadsPerCoreList' => [ 'base' => NULL, 'refs' => [ 'VCpuInfo$ValidThreadsPerCore' => '

The valid number of threads per core that can be configured for the instance type.

', ], ], 'ThroughResourcesStatement' => [ 'base' => '

Describes a through resource statement.

', 'refs' => [ 'ThroughResourcesStatementList$member' => NULL, ], ], 'ThroughResourcesStatementList' => [ 'base' => NULL, 'refs' => [ 'AccessScopePath$ThroughResources' => '

The through resources.

', ], ], 'ThroughResourcesStatementRequest' => [ 'base' => '

Describes a through resource statement.

', 'refs' => [ 'ThroughResourcesStatementRequestList$member' => NULL, ], ], 'ThroughResourcesStatementRequestList' => [ 'base' => NULL, 'refs' => [ 'AccessScopePathRequest$ThroughResources' => '

The through resources.

', ], ], 'TieringOperationStatus' => [ 'base' => NULL, 'refs' => [ 'SnapshotTierStatus$LastTieringOperationStatus' => '

The status of the last archive or restore process.

', ], ], 'TotalLocalStorageGB' => [ 'base' => '

The minimum and maximum amount of total local storage, in GB.

', 'refs' => [ 'InstanceRequirements$TotalLocalStorageGB' => '

The minimum and maximum amount of total local storage, in GB.

Default: No minimum or maximum limits

', ], ], 'TotalLocalStorageGBRequest' => [ 'base' => '

The minimum and maximum amount of total local storage, in GB.

', 'refs' => [ 'InstanceRequirementsRequest$TotalLocalStorageGB' => '

The minimum and maximum amount of total local storage, in GB.

Default: No minimum or maximum limits

', ], ], 'TpmSupportValues' => [ 'base' => NULL, 'refs' => [ 'Image$TpmSupport' => '

If the image is configured for NitroTPM support, the value is v2.0. For more information, see NitroTPM in the Amazon EC2 User Guide.

', 'RegisterImageRequest$TpmSupport' => '

Set to v2.0 to enable Trusted Platform Module (TPM) support. For more information, see NitroTPM in the Amazon EC2 User Guide.

', ], ], 'TrafficDirection' => [ 'base' => NULL, 'refs' => [ 'CreateTrafficMirrorFilterRuleRequest$TrafficDirection' => '

The type of traffic.

', 'ModifyTrafficMirrorFilterRuleRequest$TrafficDirection' => '

The type of traffic to assign to the rule.

', 'TrafficMirrorFilterRule$TrafficDirection' => '

The traffic direction assigned to the Traffic Mirror rule.

', ], ], 'TrafficMirrorFilter' => [ 'base' => '

Describes the Traffic Mirror filter.

', 'refs' => [ 'CreateTrafficMirrorFilterResult$TrafficMirrorFilter' => '

Information about the Traffic Mirror filter.

', 'ModifyTrafficMirrorFilterNetworkServicesResult$TrafficMirrorFilter' => '

The Traffic Mirror filter that the network service is associated with.

', 'TrafficMirrorFilterSet$member' => NULL, ], ], 'TrafficMirrorFilterId' => [ 'base' => NULL, 'refs' => [ 'CreateTrafficMirrorFilterRuleRequest$TrafficMirrorFilterId' => '

The ID of the filter that this rule is associated with.

', 'CreateTrafficMirrorSessionRequest$TrafficMirrorFilterId' => '

The ID of the Traffic Mirror filter.

', 'DeleteTrafficMirrorFilterRequest$TrafficMirrorFilterId' => '

The ID of the Traffic Mirror filter.

', 'ModifyTrafficMirrorFilterNetworkServicesRequest$TrafficMirrorFilterId' => '

The ID of the Traffic Mirror filter.

', 'ModifyTrafficMirrorSessionRequest$TrafficMirrorFilterId' => '

The ID of the Traffic Mirror filter.

', 'TrafficMirrorFilterIdList$member' => NULL, ], ], 'TrafficMirrorFilterIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeTrafficMirrorFiltersRequest$TrafficMirrorFilterIds' => '

The ID of the Traffic Mirror filter.

', ], ], 'TrafficMirrorFilterRule' => [ 'base' => '

Describes the Traffic Mirror rule.

', 'refs' => [ 'CreateTrafficMirrorFilterRuleResult$TrafficMirrorFilterRule' => '

The Traffic Mirror rule.

', 'ModifyTrafficMirrorFilterRuleResult$TrafficMirrorFilterRule' => '

Modifies a Traffic Mirror rule.

', 'TrafficMirrorFilterRuleList$member' => NULL, ], ], 'TrafficMirrorFilterRuleField' => [ 'base' => NULL, 'refs' => [ 'TrafficMirrorFilterRuleFieldList$member' => NULL, ], ], 'TrafficMirrorFilterRuleFieldList' => [ 'base' => NULL, 'refs' => [ 'ModifyTrafficMirrorFilterRuleRequest$RemoveFields' => '

The properties that you want to remove from the Traffic Mirror filter rule.

When you remove a property from a Traffic Mirror filter rule, the property is set to the default.

', ], ], 'TrafficMirrorFilterRuleIdWithResolver' => [ 'base' => NULL, 'refs' => [ 'DeleteTrafficMirrorFilterRuleRequest$TrafficMirrorFilterRuleId' => '

The ID of the Traffic Mirror rule.

', 'ModifyTrafficMirrorFilterRuleRequest$TrafficMirrorFilterRuleId' => '

The ID of the Traffic Mirror rule.

', ], ], 'TrafficMirrorFilterRuleList' => [ 'base' => NULL, 'refs' => [ 'TrafficMirrorFilter$IngressFilterRules' => '

Information about the ingress rules that are associated with the Traffic Mirror filter.

', 'TrafficMirrorFilter$EgressFilterRules' => '

Information about the egress rules that are associated with the Traffic Mirror filter.

', ], ], 'TrafficMirrorFilterSet' => [ 'base' => NULL, 'refs' => [ 'DescribeTrafficMirrorFiltersResult$TrafficMirrorFilters' => '

Information about one or more Traffic Mirror filters.

', ], ], 'TrafficMirrorNetworkService' => [ 'base' => NULL, 'refs' => [ 'TrafficMirrorNetworkServiceList$member' => NULL, ], ], 'TrafficMirrorNetworkServiceList' => [ 'base' => NULL, 'refs' => [ 'ModifyTrafficMirrorFilterNetworkServicesRequest$AddNetworkServices' => '

The network service, for example Amazon DNS, that you want to mirror.

', 'ModifyTrafficMirrorFilterNetworkServicesRequest$RemoveNetworkServices' => '

The network service, for example Amazon DNS, that you no longer want to mirror.

', 'TrafficMirrorFilter$NetworkServices' => '

The network service traffic that is associated with the Traffic Mirror filter.

', ], ], 'TrafficMirrorPortRange' => [ 'base' => '

Describes the Traffic Mirror port range.

', 'refs' => [ 'TrafficMirrorFilterRule$DestinationPortRange' => '

The destination port range assigned to the Traffic Mirror rule.

', 'TrafficMirrorFilterRule$SourcePortRange' => '

The source port range assigned to the Traffic Mirror rule.

', ], ], 'TrafficMirrorPortRangeRequest' => [ 'base' => '

Information about the Traffic Mirror filter rule port range.

', 'refs' => [ 'CreateTrafficMirrorFilterRuleRequest$DestinationPortRange' => '

The destination port range.

', 'CreateTrafficMirrorFilterRuleRequest$SourcePortRange' => '

The source port range.

', 'ModifyTrafficMirrorFilterRuleRequest$DestinationPortRange' => '

The destination ports that are associated with the Traffic Mirror rule.

', 'ModifyTrafficMirrorFilterRuleRequest$SourcePortRange' => '

The port range to assign to the Traffic Mirror rule.

', ], ], 'TrafficMirrorRuleAction' => [ 'base' => NULL, 'refs' => [ 'CreateTrafficMirrorFilterRuleRequest$RuleAction' => '

The action to take on the filtered traffic.

', 'ModifyTrafficMirrorFilterRuleRequest$RuleAction' => '

The action to assign to the rule.

', 'TrafficMirrorFilterRule$RuleAction' => '

The action assigned to the Traffic Mirror rule.

', ], ], 'TrafficMirrorSession' => [ 'base' => '

Describes a Traffic Mirror session.

', 'refs' => [ 'CreateTrafficMirrorSessionResult$TrafficMirrorSession' => '

Information about the Traffic Mirror session.

', 'ModifyTrafficMirrorSessionResult$TrafficMirrorSession' => '

Information about the Traffic Mirror session.

', 'TrafficMirrorSessionSet$member' => NULL, ], ], 'TrafficMirrorSessionField' => [ 'base' => NULL, 'refs' => [ 'TrafficMirrorSessionFieldList$member' => NULL, ], ], 'TrafficMirrorSessionFieldList' => [ 'base' => NULL, 'refs' => [ 'ModifyTrafficMirrorSessionRequest$RemoveFields' => '

The properties that you want to remove from the Traffic Mirror session.

When you remove a property from a Traffic Mirror session, the property is set to the default.

', ], ], 'TrafficMirrorSessionId' => [ 'base' => NULL, 'refs' => [ 'DeleteTrafficMirrorSessionRequest$TrafficMirrorSessionId' => '

The ID of the Traffic Mirror session.

', 'ModifyTrafficMirrorSessionRequest$TrafficMirrorSessionId' => '

The ID of the Traffic Mirror session.

', 'TrafficMirrorSessionIdList$member' => NULL, ], ], 'TrafficMirrorSessionIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeTrafficMirrorSessionsRequest$TrafficMirrorSessionIds' => '

The ID of the Traffic Mirror session.

', ], ], 'TrafficMirrorSessionSet' => [ 'base' => NULL, 'refs' => [ 'DescribeTrafficMirrorSessionsResult$TrafficMirrorSessions' => '

Describes one or more Traffic Mirror sessions. By default, all Traffic Mirror sessions are described. Alternatively, you can filter the results.

', ], ], 'TrafficMirrorTarget' => [ 'base' => '

Describes a Traffic Mirror target.

', 'refs' => [ 'CreateTrafficMirrorTargetResult$TrafficMirrorTarget' => '

Information about the Traffic Mirror target.

', 'TrafficMirrorTargetSet$member' => NULL, ], ], 'TrafficMirrorTargetId' => [ 'base' => NULL, 'refs' => [ 'CreateTrafficMirrorSessionRequest$TrafficMirrorTargetId' => '

The ID of the Traffic Mirror target.

', 'DeleteTrafficMirrorTargetRequest$TrafficMirrorTargetId' => '

The ID of the Traffic Mirror target.

', 'ModifyTrafficMirrorSessionRequest$TrafficMirrorTargetId' => '

The Traffic Mirror target. The target must be in the same VPC as the source, or have a VPC peering connection with the source.

', 'TrafficMirrorTargetIdList$member' => NULL, ], ], 'TrafficMirrorTargetIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeTrafficMirrorTargetsRequest$TrafficMirrorTargetIds' => '

The ID of the Traffic Mirror targets.

', ], ], 'TrafficMirrorTargetSet' => [ 'base' => NULL, 'refs' => [ 'DescribeTrafficMirrorTargetsResult$TrafficMirrorTargets' => '

Information about one or more Traffic Mirror targets.

', ], ], 'TrafficMirrorTargetType' => [ 'base' => NULL, 'refs' => [ 'TrafficMirrorTarget$Type' => '

The type of Traffic Mirror target.

', ], ], 'TrafficMirroringMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeTrafficMirrorFiltersRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTrafficMirrorSessionsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTrafficMirrorTargetsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', ], ], 'TrafficType' => [ 'base' => NULL, 'refs' => [ 'CreateFlowLogsRequest$TrafficType' => '

The type of traffic to monitor (accepted traffic, rejected traffic, or all traffic). This parameter is not supported for transit gateway resource types. It is required for the other resource types.

', 'FlowLog$TrafficType' => '

The type of traffic captured for the flow log.

', ], ], 'TransitAssociationGatewayId' => [ 'base' => NULL, 'refs' => [ 'CreateTransitGatewayPeeringAttachmentRequest$PeerTransitGatewayId' => '

The ID of the peer transit gateway with which to create the peering attachment.

', ], ], 'TransitGateway' => [ 'base' => '

Describes a transit gateway.

', 'refs' => [ 'CreateTransitGatewayResult$TransitGateway' => '

Information about the transit gateway.

', 'DeleteTransitGatewayResult$TransitGateway' => '

Information about the deleted transit gateway.

', 'ModifyTransitGatewayResult$TransitGateway' => '

Information about the transit gateway.

', 'TransitGatewayList$member' => NULL, ], ], 'TransitGatewayAssociation' => [ 'base' => '

Describes an association between a resource attachment and a transit gateway route table.

', 'refs' => [ 'AssociateTransitGatewayRouteTableResult$Association' => '

The ID of the association.

', 'DisassociateTransitGatewayRouteTableResult$Association' => '

Information about the association.

', ], ], 'TransitGatewayAssociationState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayAssociation$State' => '

The state of the association.

', 'TransitGatewayAttachmentAssociation$State' => '

The state of the association.

', 'TransitGatewayPolicyTableAssociation$State' => '

The state of the transit gateway policy table association.

', 'TransitGatewayRouteTableAssociation$State' => '

The state of the association.

', ], ], 'TransitGatewayAttachment' => [ 'base' => '

Describes an attachment between a resource and a transit gateway.

', 'refs' => [ 'TransitGatewayAttachmentList$member' => NULL, ], ], 'TransitGatewayAttachmentAssociation' => [ 'base' => '

Describes an association.

', 'refs' => [ 'TransitGatewayAttachment$Association' => '

The association.

', ], ], 'TransitGatewayAttachmentBgpConfiguration' => [ 'base' => '

The BGP configuration information.

', 'refs' => [ 'TransitGatewayAttachmentBgpConfigurationList$member' => NULL, ], ], 'TransitGatewayAttachmentBgpConfigurationList' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayConnectPeerConfiguration$BgpConfigurations' => '

The BGP configuration details.

', ], ], 'TransitGatewayAttachmentId' => [ 'base' => NULL, 'refs' => [ 'AcceptTransitGatewayMulticastDomainAssociationsRequest$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment.

', 'AcceptTransitGatewayPeeringAttachmentRequest$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment.

', 'AcceptTransitGatewayVpcAttachmentRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'AssociateTransitGatewayMulticastDomainRequest$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment to associate with the transit gateway multicast domain.

', 'AssociateTransitGatewayPolicyTableRequest$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment to associate with the policy table.

', 'AssociateTransitGatewayRouteTableRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'CreateTransitGatewayConnectPeerRequest$TransitGatewayAttachmentId' => '

The ID of the Connect attachment.

', 'CreateTransitGatewayConnectRequest$TransportTransitGatewayAttachmentId' => '

The ID of the transit gateway attachment. You can specify a VPC attachment or Amazon Web Services Direct Connect attachment.

', 'CreateTransitGatewayPrefixListReferenceRequest$TransitGatewayAttachmentId' => '

The ID of the attachment to which traffic is routed.

', 'CreateTransitGatewayRouteRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'CreateTransitGatewayRouteTableAnnouncementRequest$PeeringAttachmentId' => '

The ID of the peering attachment.

', 'DeleteTransitGatewayConnectRequest$TransitGatewayAttachmentId' => '

The ID of the Connect attachment.

', 'DeleteTransitGatewayPeeringAttachmentRequest$TransitGatewayAttachmentId' => '

The ID of the transit gateway peering attachment.

', 'DeleteTransitGatewayVpcAttachmentRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'DisableTransitGatewayRouteTablePropagationRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'DisassociateTransitGatewayMulticastDomainRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'DisassociateTransitGatewayPolicyTableRequest$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment to disassociate from the policy table.

', 'DisassociateTransitGatewayRouteTableRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'EnableTransitGatewayRouteTablePropagationRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'GetTransitGatewayAttachmentPropagationsRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'ModifyTransitGatewayPrefixListReferenceRequest$TransitGatewayAttachmentId' => '

The ID of the attachment to which traffic is routed.

', 'ModifyTransitGatewayVpcAttachmentRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'RejectTransitGatewayMulticastDomainAssociationsRequest$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment.

', 'RejectTransitGatewayPeeringAttachmentRequest$TransitGatewayAttachmentId' => '

The ID of the transit gateway peering attachment.

', 'RejectTransitGatewayVpcAttachmentRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'ReplaceTransitGatewayRouteRequest$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayAssociation$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayAttachmentIdStringList$member' => NULL, 'TransitGatewayConnect$TransitGatewayAttachmentId' => '

The ID of the Connect attachment.

', 'TransitGatewayConnect$TransportTransitGatewayAttachmentId' => '

The ID of the attachment from which the Connect attachment was created.

', 'TransitGatewayConnectPeer$TransitGatewayAttachmentId' => '

The ID of the Connect attachment.

', 'TransitGatewayPolicyTableAssociation$TransitGatewayAttachmentId' => '

The ID of the transit gateway attachment.

', 'TransitGatewayPrefixListAttachment$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayPropagation$TransitGatewayAttachmentId' => '

The ID of the attachment.

', 'TransitGatewayRouteTableAnnouncement$PeeringAttachmentId' => '

The ID of the peering attachment.

', 'VpnConnectionOptionsSpecification$TransportTransitGatewayAttachmentId' => '

The transit gateway attachment ID to use for the VPN tunnel.

Required if OutsideIpAddressType is set to PrivateIpv4.

', ], ], 'TransitGatewayAttachmentIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayAttachmentsRequest$TransitGatewayAttachmentIds' => '

The IDs of the attachments.

', 'DescribeTransitGatewayConnectsRequest$TransitGatewayAttachmentIds' => '

The IDs of the attachments.

', 'DescribeTransitGatewayPeeringAttachmentsRequest$TransitGatewayAttachmentIds' => '

One or more IDs of the transit gateway peering attachments.

', 'DescribeTransitGatewayVpcAttachmentsRequest$TransitGatewayAttachmentIds' => '

The IDs of the attachments.

', ], ], 'TransitGatewayAttachmentList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayAttachmentsResult$TransitGatewayAttachments' => '

Information about the attachments.

', ], ], 'TransitGatewayAttachmentPropagation' => [ 'base' => '

Describes a propagation route table.

', 'refs' => [ 'TransitGatewayAttachmentPropagationList$member' => NULL, ], ], 'TransitGatewayAttachmentPropagationList' => [ 'base' => NULL, 'refs' => [ 'GetTransitGatewayAttachmentPropagationsResult$TransitGatewayAttachmentPropagations' => '

Information about the propagation route tables.

', ], ], 'TransitGatewayAttachmentResourceType' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayAssociation$ResourceType' => '

The resource type. Note that the tgw-peering resource type has been deprecated.

', 'TransitGatewayAttachment$ResourceType' => '

The resource type. Note that the tgw-peering resource type has been deprecated.

', 'TransitGatewayMulticastDomainAssociation$ResourceType' => '

The type of resource, for example a VPC attachment.

', 'TransitGatewayMulticastDomainAssociations$ResourceType' => '

The type of resource, for example a VPC attachment.

', 'TransitGatewayMulticastGroup$ResourceType' => '

The type of resource, for example a VPC attachment.

', 'TransitGatewayPolicyTableAssociation$ResourceType' => '

The resource type for the transit gateway policy table association.

', 'TransitGatewayPrefixListAttachment$ResourceType' => '

The resource type. Note that the tgw-peering resource type has been deprecated.

', 'TransitGatewayPropagation$ResourceType' => '

The resource type. Note that the tgw-peering resource type has been deprecated.

', 'TransitGatewayRouteAttachment$ResourceType' => '

The resource type. Note that the tgw-peering resource type has been deprecated.

', 'TransitGatewayRouteTableAssociation$ResourceType' => '

The resource type. Note that the tgw-peering resource type has been deprecated.

', 'TransitGatewayRouteTablePropagation$ResourceType' => '

The type of resource. Note that the tgw-peering resource type has been deprecated.

', ], ], 'TransitGatewayAttachmentState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayAttachment$State' => '

The attachment state. Note that the initiating state has been deprecated.

', 'TransitGatewayConnect$State' => '

The state of the attachment.

', 'TransitGatewayPeeringAttachment$State' => '

The state of the transit gateway peering attachment. Note that the initiating state has been deprecated.

', 'TransitGatewayVpcAttachment$State' => '

The state of the VPC attachment. Note that the initiating state has been deprecated.

', ], ], 'TransitGatewayCidrBlockStringList' => [ 'base' => NULL, 'refs' => [ 'ModifyTransitGatewayOptions$AddTransitGatewayCidrBlocks' => '

Adds IPv4 or IPv6 CIDR blocks for the transit gateway. Must be a size /24 CIDR block or larger for IPv4, or a size /64 CIDR block or larger for IPv6.

', 'ModifyTransitGatewayOptions$RemoveTransitGatewayCidrBlocks' => '

Removes CIDR blocks for the transit gateway.

', 'TransitGatewayRequestOptions$TransitGatewayCidrBlocks' => '

One or more IPv4 or IPv6 CIDR blocks for the transit gateway. Must be a size /24 CIDR block or larger for IPv4, or a size /64 CIDR block or larger for IPv6.

', ], ], 'TransitGatewayConnect' => [ 'base' => '

Describes a transit gateway Connect attachment.

', 'refs' => [ 'CreateTransitGatewayConnectResult$TransitGatewayConnect' => '

Information about the Connect attachment.

', 'DeleteTransitGatewayConnectResult$TransitGatewayConnect' => '

Information about the deleted Connect attachment.

', 'TransitGatewayConnectList$member' => NULL, ], ], 'TransitGatewayConnectList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayConnectsResult$TransitGatewayConnects' => '

Information about the Connect attachments.

', ], ], 'TransitGatewayConnectOptions' => [ 'base' => '

Describes the Connect attachment options.

', 'refs' => [ 'TransitGatewayConnect$Options' => '

The Connect attachment options.

', ], ], 'TransitGatewayConnectPeer' => [ 'base' => '

Describes a transit gateway Connect peer.

', 'refs' => [ 'CreateTransitGatewayConnectPeerResult$TransitGatewayConnectPeer' => '

Information about the Connect peer.

', 'DeleteTransitGatewayConnectPeerResult$TransitGatewayConnectPeer' => '

Information about the deleted Connect peer.

', 'TransitGatewayConnectPeerList$member' => NULL, ], ], 'TransitGatewayConnectPeerConfiguration' => [ 'base' => '

Describes the Connect peer details.

', 'refs' => [ 'TransitGatewayConnectPeer$ConnectPeerConfiguration' => '

The Connect peer details.

', ], ], 'TransitGatewayConnectPeerId' => [ 'base' => NULL, 'refs' => [ 'DeleteTransitGatewayConnectPeerRequest$TransitGatewayConnectPeerId' => '

The ID of the Connect peer.

', 'TransitGatewayConnectPeer$TransitGatewayConnectPeerId' => '

The ID of the Connect peer.

', 'TransitGatewayConnectPeerIdStringList$member' => NULL, ], ], 'TransitGatewayConnectPeerIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayConnectPeersRequest$TransitGatewayConnectPeerIds' => '

The IDs of the Connect peers.

', ], ], 'TransitGatewayConnectPeerList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayConnectPeersResult$TransitGatewayConnectPeers' => '

Information about the Connect peers.

', ], ], 'TransitGatewayConnectPeerState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayConnectPeer$State' => '

The state of the Connect peer.

', ], ], 'TransitGatewayConnectRequestBgpOptions' => [ 'base' => '

The BGP options for the Connect attachment.

', 'refs' => [ 'CreateTransitGatewayConnectPeerRequest$BgpOptions' => '

The BGP options for the Connect peer.

', ], ], 'TransitGatewayId' => [ 'base' => NULL, 'refs' => [ 'CreateRouteRequest$TransitGatewayId' => '

The ID of a transit gateway.

', 'CreateTransitGatewayMulticastDomainRequest$TransitGatewayId' => '

The ID of the transit gateway.

', 'CreateTransitGatewayPeeringAttachmentRequest$TransitGatewayId' => '

The ID of the transit gateway.

', 'CreateTransitGatewayPolicyTableRequest$TransitGatewayId' => '

The ID of the transit gateway used for the policy table.

', 'CreateTransitGatewayRouteTableRequest$TransitGatewayId' => '

The ID of the transit gateway.

', 'CreateTransitGatewayVpcAttachmentRequest$TransitGatewayId' => '

The ID of the transit gateway.

', 'CreateVpnConnectionRequest$TransitGatewayId' => '

The ID of the transit gateway. If you specify a transit gateway, you cannot specify a virtual private gateway.

', 'DeleteTransitGatewayRequest$TransitGatewayId' => '

The ID of the transit gateway.

', 'GetVpnTunnelReplacementStatusResult$TransitGatewayId' => '

The ID of the transit gateway associated with the VPN connection.

', 'ModifyTransitGatewayRequest$TransitGatewayId' => '

The ID of the transit gateway.

', 'ModifyVpnConnectionRequest$TransitGatewayId' => '

The ID of the transit gateway.

', 'ReplaceRouteRequest$TransitGatewayId' => '

The ID of a transit gateway.

', 'TransitGatewayConnect$TransitGatewayId' => '

The ID of the transit gateway.

', 'TransitGatewayIdStringList$member' => NULL, 'TransitGatewayPolicyTable$TransitGatewayId' => '

The ID of the transit gateway.

', 'TransitGatewayRouteTableAnnouncement$TransitGatewayId' => '

The ID of the transit gateway.

', 'TransitGatewayRouteTableAnnouncement$PeerTransitGatewayId' => '

The ID of the peer transit gateway.

', ], ], 'TransitGatewayIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewaysRequest$TransitGatewayIds' => '

The IDs of the transit gateways.

', ], ], 'TransitGatewayList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewaysResult$TransitGateways' => '

Information about the transit gateways.

', ], ], 'TransitGatewayMaxResults' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayAttachmentsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewayConnectPeersRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewayConnectsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewayMulticastDomainsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewayPeeringAttachmentsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewayPolicyTablesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewayRouteTableAnnouncementsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewayRouteTablesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewayVpcAttachmentsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'DescribeTransitGatewaysRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetTransitGatewayAttachmentPropagationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetTransitGatewayMulticastDomainAssociationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetTransitGatewayPolicyTableAssociationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetTransitGatewayPolicyTableEntriesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetTransitGatewayPrefixListReferencesRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetTransitGatewayRouteTableAssociationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'GetTransitGatewayRouteTablePropagationsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'SearchTransitGatewayMulticastGroupsRequest$MaxResults' => '

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

', 'SearchTransitGatewayRoutesRequest$MaxResults' => '

The maximum number of routes to return.

', ], ], 'TransitGatewayMulitcastDomainAssociationState' => [ 'base' => NULL, 'refs' => [ 'SubnetAssociation$State' => '

The state of the subnet association.

', ], ], 'TransitGatewayMulticastDeregisteredGroupMembers' => [ 'base' => '

Describes the deregistered transit gateway multicast group members.

', 'refs' => [ 'DeregisterTransitGatewayMulticastGroupMembersResult$DeregisteredMulticastGroupMembers' => '

Information about the deregistered members.

', ], ], 'TransitGatewayMulticastDeregisteredGroupSources' => [ 'base' => '

Describes the deregistered transit gateway multicast group sources.

', 'refs' => [ 'DeregisterTransitGatewayMulticastGroupSourcesResult$DeregisteredMulticastGroupSources' => '

Information about the deregistered group sources.

', ], ], 'TransitGatewayMulticastDomain' => [ 'base' => '

Describes the transit gateway multicast domain.

', 'refs' => [ 'CreateTransitGatewayMulticastDomainResult$TransitGatewayMulticastDomain' => '

Information about the transit gateway multicast domain.

', 'DeleteTransitGatewayMulticastDomainResult$TransitGatewayMulticastDomain' => '

Information about the deleted transit gateway multicast domain.

', 'TransitGatewayMulticastDomainList$member' => NULL, ], ], 'TransitGatewayMulticastDomainAssociation' => [ 'base' => '

Describes the resources associated with the transit gateway multicast domain.

', 'refs' => [ 'TransitGatewayMulticastDomainAssociationList$member' => NULL, ], ], 'TransitGatewayMulticastDomainAssociationList' => [ 'base' => NULL, 'refs' => [ 'GetTransitGatewayMulticastDomainAssociationsResult$MulticastDomainAssociations' => '

Information about the multicast domain associations.

', ], ], 'TransitGatewayMulticastDomainAssociations' => [ 'base' => '

Describes the multicast domain associations.

', 'refs' => [ 'AcceptTransitGatewayMulticastDomainAssociationsResult$Associations' => '

Information about the multicast domain associations.

', 'AssociateTransitGatewayMulticastDomainResult$Associations' => '

Information about the transit gateway multicast domain associations.

', 'DisassociateTransitGatewayMulticastDomainResult$Associations' => '

Information about the association.

', 'RejectTransitGatewayMulticastDomainAssociationsResult$Associations' => '

Information about the multicast domain associations.

', ], ], 'TransitGatewayMulticastDomainId' => [ 'base' => NULL, 'refs' => [ 'AcceptTransitGatewayMulticastDomainAssociationsRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'AssociateTransitGatewayMulticastDomainRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'DeleteTransitGatewayMulticastDomainRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'DeregisterTransitGatewayMulticastGroupMembersRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'DeregisterTransitGatewayMulticastGroupSourcesRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'DisassociateTransitGatewayMulticastDomainRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'GetTransitGatewayMulticastDomainAssociationsRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'RegisterTransitGatewayMulticastGroupMembersRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'RegisterTransitGatewayMulticastGroupSourcesRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'RejectTransitGatewayMulticastDomainAssociationsRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'SearchTransitGatewayMulticastGroupsRequest$TransitGatewayMulticastDomainId' => '

The ID of the transit gateway multicast domain.

', 'TransitGatewayMulticastDomainIdStringList$member' => NULL, ], ], 'TransitGatewayMulticastDomainIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayMulticastDomainsRequest$TransitGatewayMulticastDomainIds' => '

The ID of the transit gateway multicast domain.

', ], ], 'TransitGatewayMulticastDomainList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayMulticastDomainsResult$TransitGatewayMulticastDomains' => '

Information about the transit gateway multicast domains.

', ], ], 'TransitGatewayMulticastDomainOptions' => [ 'base' => '

Describes the options for a transit gateway multicast domain.

', 'refs' => [ 'TransitGatewayMulticastDomain$Options' => '

The options for the transit gateway multicast domain.

', ], ], 'TransitGatewayMulticastDomainState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayMulticastDomain$State' => '

The state of the transit gateway multicast domain.

', ], ], 'TransitGatewayMulticastGroup' => [ 'base' => '

Describes the transit gateway multicast group resources.

', 'refs' => [ 'TransitGatewayMulticastGroupList$member' => NULL, ], ], 'TransitGatewayMulticastGroupList' => [ 'base' => NULL, 'refs' => [ 'SearchTransitGatewayMulticastGroupsResult$MulticastGroups' => '

Information about the transit gateway multicast group.

', ], ], 'TransitGatewayMulticastRegisteredGroupMembers' => [ 'base' => '

Describes the registered transit gateway multicast group members.

', 'refs' => [ 'RegisterTransitGatewayMulticastGroupMembersResult$RegisteredMulticastGroupMembers' => '

Information about the registered transit gateway multicast group members.

', ], ], 'TransitGatewayMulticastRegisteredGroupSources' => [ 'base' => '

Describes the members registered with the transit gateway multicast group.

', 'refs' => [ 'RegisterTransitGatewayMulticastGroupSourcesResult$RegisteredMulticastGroupSources' => '

Information about the transit gateway multicast group sources.

', ], ], 'TransitGatewayNetworkInterfaceIdList' => [ 'base' => NULL, 'refs' => [ 'DeregisterTransitGatewayMulticastGroupMembersRequest$NetworkInterfaceIds' => '

The IDs of the group members\' network interfaces.

', 'DeregisterTransitGatewayMulticastGroupSourcesRequest$NetworkInterfaceIds' => '

The IDs of the group sources\' network interfaces.

', 'RegisterTransitGatewayMulticastGroupMembersRequest$NetworkInterfaceIds' => '

The group members\' network interface IDs to register with the transit gateway multicast group.

', 'RegisterTransitGatewayMulticastGroupSourcesRequest$NetworkInterfaceIds' => '

The group sources\' network interface IDs to register with the transit gateway multicast group.

', ], ], 'TransitGatewayOptions' => [ 'base' => '

Describes the options for a transit gateway.

', 'refs' => [ 'TransitGateway$Options' => '

The transit gateway options.

', ], ], 'TransitGatewayPeeringAttachment' => [ 'base' => '

Describes the transit gateway peering attachment.

', 'refs' => [ 'AcceptTransitGatewayPeeringAttachmentResult$TransitGatewayPeeringAttachment' => '

The transit gateway peering attachment.

', 'CreateTransitGatewayPeeringAttachmentResult$TransitGatewayPeeringAttachment' => '

The transit gateway peering attachment.

', 'DeleteTransitGatewayPeeringAttachmentResult$TransitGatewayPeeringAttachment' => '

The transit gateway peering attachment.

', 'RejectTransitGatewayPeeringAttachmentResult$TransitGatewayPeeringAttachment' => '

The transit gateway peering attachment.

', 'TransitGatewayPeeringAttachmentList$member' => NULL, ], ], 'TransitGatewayPeeringAttachmentList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayPeeringAttachmentsResult$TransitGatewayPeeringAttachments' => '

The transit gateway peering attachments.

', ], ], 'TransitGatewayPeeringAttachmentOptions' => [ 'base' => '

Describes dynamic routing for the transit gateway peering attachment.

', 'refs' => [ 'TransitGatewayPeeringAttachment$Options' => '

Details about the transit gateway peering attachment.

', ], ], 'TransitGatewayPolicyRule' => [ 'base' => '

Describes a rule associated with a transit gateway policy.

', 'refs' => [ 'TransitGatewayPolicyTableEntry$PolicyRule' => '

The policy rule associated with the transit gateway policy table.

', ], ], 'TransitGatewayPolicyRuleMetaData' => [ 'base' => '

Describes the meta data tags associated with a transit gateway policy rule.

', 'refs' => [ 'TransitGatewayPolicyRule$MetaData' => '

The meta data tags used for the transit gateway policy rule.

', ], ], 'TransitGatewayPolicyTable' => [ 'base' => '

Describes a transit gateway policy table.

', 'refs' => [ 'CreateTransitGatewayPolicyTableResult$TransitGatewayPolicyTable' => '

Describes the created transit gateway policy table.

', 'DeleteTransitGatewayPolicyTableResult$TransitGatewayPolicyTable' => '

Provides details about the deleted transit gateway policy table.

', 'TransitGatewayPolicyTableList$member' => NULL, ], ], 'TransitGatewayPolicyTableAssociation' => [ 'base' => '

Describes a transit gateway policy table association.

', 'refs' => [ 'AssociateTransitGatewayPolicyTableResult$Association' => '

Describes the association of a transit gateway and a transit gateway policy table.

', 'DisassociateTransitGatewayPolicyTableResult$Association' => '

Returns details about the transit gateway policy table disassociation.

', 'TransitGatewayPolicyTableAssociationList$member' => NULL, ], ], 'TransitGatewayPolicyTableAssociationList' => [ 'base' => NULL, 'refs' => [ 'GetTransitGatewayPolicyTableAssociationsResult$Associations' => '

Returns details about the transit gateway policy table association.

', ], ], 'TransitGatewayPolicyTableEntry' => [ 'base' => '

Describes a transit gateway policy table entry

', 'refs' => [ 'TransitGatewayPolicyTableEntryList$member' => NULL, ], ], 'TransitGatewayPolicyTableEntryList' => [ 'base' => NULL, 'refs' => [ 'GetTransitGatewayPolicyTableEntriesResult$TransitGatewayPolicyTableEntries' => '

The entries for the transit gateway policy table.

', ], ], 'TransitGatewayPolicyTableId' => [ 'base' => NULL, 'refs' => [ 'AssociateTransitGatewayPolicyTableRequest$TransitGatewayPolicyTableId' => '

The ID of the transit gateway policy table to associate with the transit gateway attachment.

', 'DeleteTransitGatewayPolicyTableRequest$TransitGatewayPolicyTableId' => '

The transit gateway policy table to delete.

', 'DisassociateTransitGatewayPolicyTableRequest$TransitGatewayPolicyTableId' => '

The ID of the disassociated policy table.

', 'GetTransitGatewayPolicyTableAssociationsRequest$TransitGatewayPolicyTableId' => '

The ID of the transit gateway policy table.

', 'GetTransitGatewayPolicyTableEntriesRequest$TransitGatewayPolicyTableId' => '

The ID of the transit gateway policy table.

', 'TransitGatewayPolicyTable$TransitGatewayPolicyTableId' => '

The ID of the transit gateway policy table.

', 'TransitGatewayPolicyTableAssociation$TransitGatewayPolicyTableId' => '

The ID of the transit gateway policy table.

', 'TransitGatewayPolicyTableIdStringList$member' => NULL, ], ], 'TransitGatewayPolicyTableIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayPolicyTablesRequest$TransitGatewayPolicyTableIds' => '

The IDs of the transit gateway policy tables.

', ], ], 'TransitGatewayPolicyTableList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayPolicyTablesResult$TransitGatewayPolicyTables' => '

Describes the transit gateway policy tables.

', ], ], 'TransitGatewayPolicyTableState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayPolicyTable$State' => '

The state of the transit gateway policy table

', ], ], 'TransitGatewayPrefixListAttachment' => [ 'base' => '

Describes a transit gateway prefix list attachment.

', 'refs' => [ 'TransitGatewayPrefixListReference$TransitGatewayAttachment' => '

Information about the transit gateway attachment.

', ], ], 'TransitGatewayPrefixListReference' => [ 'base' => '

Describes a prefix list reference.

', 'refs' => [ 'CreateTransitGatewayPrefixListReferenceResult$TransitGatewayPrefixListReference' => '

Information about the prefix list reference.

', 'DeleteTransitGatewayPrefixListReferenceResult$TransitGatewayPrefixListReference' => '

Information about the deleted prefix list reference.

', 'ModifyTransitGatewayPrefixListReferenceResult$TransitGatewayPrefixListReference' => '

Information about the prefix list reference.

', 'TransitGatewayPrefixListReferenceSet$member' => NULL, ], ], 'TransitGatewayPrefixListReferenceSet' => [ 'base' => NULL, 'refs' => [ 'GetTransitGatewayPrefixListReferencesResult$TransitGatewayPrefixListReferences' => '

Information about the prefix list references.

', ], ], 'TransitGatewayPrefixListReferenceState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayPrefixListReference$State' => '

The state of the prefix list reference.

', ], ], 'TransitGatewayPropagation' => [ 'base' => '

Describes route propagation.

', 'refs' => [ 'DisableTransitGatewayRouteTablePropagationResult$Propagation' => '

Information about route propagation.

', 'EnableTransitGatewayRouteTablePropagationResult$Propagation' => '

Information about route propagation.

', ], ], 'TransitGatewayPropagationState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayAttachmentPropagation$State' => '

The state of the propagation route table.

', 'TransitGatewayPropagation$State' => '

The state.

', 'TransitGatewayRouteTablePropagation$State' => '

The state of the resource.

', ], ], 'TransitGatewayRequestOptions' => [ 'base' => '

Describes the options for a transit gateway.

', 'refs' => [ 'CreateTransitGatewayRequest$Options' => '

The transit gateway options.

', ], ], 'TransitGatewayRoute' => [ 'base' => '

Describes a route for a transit gateway route table.

', 'refs' => [ 'CreateTransitGatewayRouteResult$Route' => '

Information about the route.

', 'DeleteTransitGatewayRouteResult$Route' => '

Information about the route.

', 'ReplaceTransitGatewayRouteResult$Route' => '

Information about the modified route.

', 'TransitGatewayRouteList$member' => NULL, ], ], 'TransitGatewayRouteAttachment' => [ 'base' => '

Describes a route attachment.

', 'refs' => [ 'TransitGatewayRouteAttachmentList$member' => NULL, ], ], 'TransitGatewayRouteAttachmentList' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayRoute$TransitGatewayAttachments' => '

The attachments.

', ], ], 'TransitGatewayRouteList' => [ 'base' => NULL, 'refs' => [ 'SearchTransitGatewayRoutesResult$Routes' => '

Information about the routes.

', ], ], 'TransitGatewayRouteState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayRoute$State' => '

The state of the route.

', ], ], 'TransitGatewayRouteTable' => [ 'base' => '

Describes a transit gateway route table.

', 'refs' => [ 'CreateTransitGatewayRouteTableResult$TransitGatewayRouteTable' => '

Information about the transit gateway route table.

', 'DeleteTransitGatewayRouteTableResult$TransitGatewayRouteTable' => '

Information about the deleted transit gateway route table.

', 'TransitGatewayRouteTableList$member' => NULL, ], ], 'TransitGatewayRouteTableAnnouncement' => [ 'base' => '

Describes a transit gateway route table announcement.

', 'refs' => [ 'CreateTransitGatewayRouteTableAnnouncementResult$TransitGatewayRouteTableAnnouncement' => '

Provides details about the transit gateway route table announcement.

', 'DeleteTransitGatewayRouteTableAnnouncementResult$TransitGatewayRouteTableAnnouncement' => '

Provides details about a deleted transit gateway route table.

', 'TransitGatewayRouteTableAnnouncementList$member' => NULL, ], ], 'TransitGatewayRouteTableAnnouncementDirection' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayRouteTableAnnouncement$AnnouncementDirection' => '

The direction for the route table announcement.

', ], ], 'TransitGatewayRouteTableAnnouncementId' => [ 'base' => NULL, 'refs' => [ 'DeleteTransitGatewayRouteTableAnnouncementRequest$TransitGatewayRouteTableAnnouncementId' => '

The transit gateway route table ID that\'s being deleted.

', 'DisableTransitGatewayRouteTablePropagationRequest$TransitGatewayRouteTableAnnouncementId' => '

The ID of the route table announcement.

', 'EnableTransitGatewayRouteTablePropagationRequest$TransitGatewayRouteTableAnnouncementId' => '

The ID of the transit gateway route table announcement.

', 'TransitGatewayPropagation$TransitGatewayRouteTableAnnouncementId' => '

The ID of the transit gateway route table announcement.

', 'TransitGatewayRoute$TransitGatewayRouteTableAnnouncementId' => '

The ID of the transit gateway route table announcement.

', 'TransitGatewayRouteTableAnnouncement$TransitGatewayRouteTableAnnouncementId' => '

The ID of the transit gateway route table announcement.

', 'TransitGatewayRouteTableAnnouncementIdStringList$member' => NULL, 'TransitGatewayRouteTablePropagation$TransitGatewayRouteTableAnnouncementId' => '

The ID of the transit gateway route table announcement.

', ], ], 'TransitGatewayRouteTableAnnouncementIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayRouteTableAnnouncementsRequest$TransitGatewayRouteTableAnnouncementIds' => '

The IDs of the transit gateway route tables that are being advertised.

', ], ], 'TransitGatewayRouteTableAnnouncementList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayRouteTableAnnouncementsResult$TransitGatewayRouteTableAnnouncements' => '

Describes the transit gateway route table announcement.

', ], ], 'TransitGatewayRouteTableAnnouncementState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayRouteTableAnnouncement$State' => '

The state of the transit gateway announcement.

', ], ], 'TransitGatewayRouteTableAssociation' => [ 'base' => '

Describes an association between a route table and a resource attachment.

', 'refs' => [ 'TransitGatewayRouteTableAssociationList$member' => NULL, ], ], 'TransitGatewayRouteTableAssociationList' => [ 'base' => NULL, 'refs' => [ 'GetTransitGatewayRouteTableAssociationsResult$Associations' => '

Information about the associations.

', ], ], 'TransitGatewayRouteTableId' => [ 'base' => NULL, 'refs' => [ 'AssociateTransitGatewayRouteTableRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'CreateTransitGatewayPrefixListReferenceRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'CreateTransitGatewayRouteRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'CreateTransitGatewayRouteTableAnnouncementRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'DeleteTransitGatewayPrefixListReferenceRequest$TransitGatewayRouteTableId' => '

The ID of the route table.

', 'DeleteTransitGatewayRouteRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'DeleteTransitGatewayRouteTableRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'DisableTransitGatewayRouteTablePropagationRequest$TransitGatewayRouteTableId' => '

The ID of the propagation route table.

', 'DisassociateTransitGatewayRouteTableRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'EnableTransitGatewayRouteTablePropagationRequest$TransitGatewayRouteTableId' => '

The ID of the propagation route table.

', 'ExportTransitGatewayRoutesRequest$TransitGatewayRouteTableId' => '

The ID of the route table.

', 'GetTransitGatewayPrefixListReferencesRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'GetTransitGatewayRouteTableAssociationsRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'GetTransitGatewayRouteTablePropagationsRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'ModifyTransitGatewayOptions$AssociationDefaultRouteTableId' => '

The ID of the default association route table.

', 'ModifyTransitGatewayOptions$PropagationDefaultRouteTableId' => '

The ID of the default propagation route table.

', 'ModifyTransitGatewayPrefixListReferenceRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'ReplaceTransitGatewayRouteRequest$TransitGatewayRouteTableId' => '

The ID of the route table.

', 'SearchTransitGatewayRoutesRequest$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'TransitGatewayAssociation$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'TransitGatewayPolicyTableEntry$TargetRouteTableId' => '

The ID of the target route table.

', 'TransitGatewayPrefixListReference$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'TransitGatewayRouteTableAnnouncement$TransitGatewayRouteTableId' => '

The ID of the transit gateway route table.

', 'TransitGatewayRouteTableIdStringList$member' => NULL, ], ], 'TransitGatewayRouteTableIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayRouteTablesRequest$TransitGatewayRouteTableIds' => '

The IDs of the transit gateway route tables.

', ], ], 'TransitGatewayRouteTableList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayRouteTablesResult$TransitGatewayRouteTables' => '

Information about the transit gateway route tables.

', ], ], 'TransitGatewayRouteTablePropagation' => [ 'base' => '

Describes a route table propagation.

', 'refs' => [ 'TransitGatewayRouteTablePropagationList$member' => NULL, ], ], 'TransitGatewayRouteTablePropagationList' => [ 'base' => NULL, 'refs' => [ 'GetTransitGatewayRouteTablePropagationsResult$TransitGatewayRouteTablePropagations' => '

Information about the route table propagations.

', ], ], 'TransitGatewayRouteTableRoute' => [ 'base' => '

Describes a route in a transit gateway route table.

', 'refs' => [ 'Explanation$TransitGatewayRouteTableRoute' => '

The transit gateway route table route.

', 'PathComponent$TransitGatewayRouteTableRoute' => '

The route in a transit gateway route table.

', ], ], 'TransitGatewayRouteTableState' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayRouteTable$State' => '

The state of the transit gateway route table.

', ], ], 'TransitGatewayRouteType' => [ 'base' => NULL, 'refs' => [ 'TransitGatewayRoute$Type' => '

The route type.

', ], ], 'TransitGatewayState' => [ 'base' => NULL, 'refs' => [ 'TransitGateway$State' => '

The state of the transit gateway.

', ], ], 'TransitGatewaySubnetIdList' => [ 'base' => NULL, 'refs' => [ 'AssociateTransitGatewayMulticastDomainRequest$SubnetIds' => '

The IDs of the subnets to associate with the transit gateway multicast domain.

', 'CreateTransitGatewayVpcAttachmentRequest$SubnetIds' => '

The IDs of one or more subnets. You can specify only one subnet per Availability Zone. You must specify at least one subnet, but we recommend that you specify two subnets for better availability. The transit gateway uses one IP address from each specified subnet.

', 'DisassociateTransitGatewayMulticastDomainRequest$SubnetIds' => '

The IDs of the subnets;

', 'ModifyTransitGatewayVpcAttachmentRequest$AddSubnetIds' => '

The IDs of one or more subnets to add. You can specify at most one subnet per Availability Zone.

', 'ModifyTransitGatewayVpcAttachmentRequest$RemoveSubnetIds' => '

The IDs of one or more subnets to remove.

', ], ], 'TransitGatewayVpcAttachment' => [ 'base' => '

Describes a VPC attachment.

', 'refs' => [ 'AcceptTransitGatewayVpcAttachmentResult$TransitGatewayVpcAttachment' => '

The VPC attachment.

', 'CreateTransitGatewayVpcAttachmentResult$TransitGatewayVpcAttachment' => '

Information about the VPC attachment.

', 'DeleteTransitGatewayVpcAttachmentResult$TransitGatewayVpcAttachment' => '

Information about the deleted VPC attachment.

', 'ModifyTransitGatewayVpcAttachmentResult$TransitGatewayVpcAttachment' => '

Information about the modified attachment.

', 'RejectTransitGatewayVpcAttachmentResult$TransitGatewayVpcAttachment' => '

Information about the attachment.

', 'TransitGatewayVpcAttachmentList$member' => NULL, ], ], 'TransitGatewayVpcAttachmentList' => [ 'base' => NULL, 'refs' => [ 'DescribeTransitGatewayVpcAttachmentsResult$TransitGatewayVpcAttachments' => '

Information about the VPC attachments.

', ], ], 'TransitGatewayVpcAttachmentOptions' => [ 'base' => '

Describes the VPC attachment options.

', 'refs' => [ 'TransitGatewayVpcAttachment$Options' => '

The VPC attachment options.

', ], ], 'TransportProtocol' => [ 'base' => NULL, 'refs' => [ 'ClientVpnEndpoint$TransportProtocol' => '

The transport protocol used by the Client VPN endpoint.

', 'CreateClientVpnEndpointRequest$TransportProtocol' => '

The transport protocol to be used by the VPN session.

Default value: udp

', ], ], 'TrunkInterfaceAssociation' => [ 'base' => '

Information about an association between a branch network interface with a trunk network interface.

', 'refs' => [ 'AssociateTrunkInterfaceResult$InterfaceAssociation' => '

Information about the association between the trunk network interface and branch network interface.

', 'TrunkInterfaceAssociationList$member' => NULL, ], ], 'TrunkInterfaceAssociationId' => [ 'base' => NULL, 'refs' => [ 'DisassociateTrunkInterfaceRequest$AssociationId' => '

The ID of the association

', 'TrunkInterfaceAssociation$AssociationId' => '

The ID of the association.

', 'TrunkInterfaceAssociationIdList$member' => NULL, ], ], 'TrunkInterfaceAssociationIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeTrunkInterfaceAssociationsRequest$AssociationIds' => '

The IDs of the associations.

', ], ], 'TrunkInterfaceAssociationList' => [ 'base' => NULL, 'refs' => [ 'DescribeTrunkInterfaceAssociationsResult$InterfaceAssociations' => '

Information about the trunk associations.

', ], ], 'TrustProviderType' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessTrustProviderRequest$TrustProviderType' => '

The type of trust provider.

', 'VerifiedAccessTrustProvider$TrustProviderType' => '

The type of Verified Access trust provider.

', 'VerifiedAccessTrustProviderCondensed$TrustProviderType' => '

The type of trust provider (user- or device-based).

', ], ], 'TunnelInsideIpVersion' => [ 'base' => NULL, 'refs' => [ 'VpnConnectionOptions$TunnelInsideIpVersion' => '

Indicates whether the VPN tunnels process IPv4 or IPv6 traffic.

', 'VpnConnectionOptionsSpecification$TunnelInsideIpVersion' => '

Indicate whether the VPN tunnels process IPv4 or IPv6 traffic.

Default: ipv4

', ], ], 'TunnelOption' => [ 'base' => '

The VPN tunnel options.

', 'refs' => [ 'TunnelOptionsList$member' => NULL, ], ], 'TunnelOptionsList' => [ 'base' => NULL, 'refs' => [ 'VpnConnectionOptions$TunnelOptions' => '

Indicates the VPN tunnel options.

', ], ], 'UnassignIpv6AddressesRequest' => [ 'base' => NULL, 'refs' => [], ], 'UnassignIpv6AddressesResult' => [ 'base' => NULL, 'refs' => [], ], 'UnassignPrivateIpAddressesRequest' => [ 'base' => '

Contains the parameters for UnassignPrivateIpAddresses.

', 'refs' => [], ], 'UnassignPrivateNatGatewayAddressRequest' => [ 'base' => NULL, 'refs' => [], ], 'UnassignPrivateNatGatewayAddressResult' => [ 'base' => NULL, 'refs' => [], ], 'UnlimitedSupportedInstanceFamily' => [ 'base' => NULL, 'refs' => [ 'GetDefaultCreditSpecificationRequest$InstanceFamily' => '

The instance family.

', 'InstanceFamilyCreditSpecification$InstanceFamily' => '

The instance family.

', 'ModifyDefaultCreditSpecificationRequest$InstanceFamily' => '

The instance family.

', ], ], 'UnlockSnapshotRequest' => [ 'base' => NULL, 'refs' => [], ], 'UnlockSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'UnmonitorInstancesRequest' => [ 'base' => NULL, 'refs' => [], ], 'UnmonitorInstancesResult' => [ 'base' => NULL, 'refs' => [], ], 'UnsuccessfulInstanceCreditSpecificationErrorCode' => [ 'base' => NULL, 'refs' => [ 'UnsuccessfulInstanceCreditSpecificationItemError$Code' => '

The error code.

', ], ], 'UnsuccessfulInstanceCreditSpecificationItem' => [ 'base' => '

Describes the burstable performance instance whose credit option for CPU usage was not modified.

', 'refs' => [ 'UnsuccessfulInstanceCreditSpecificationSet$member' => NULL, ], ], 'UnsuccessfulInstanceCreditSpecificationItemError' => [ 'base' => '

Information about the error for the burstable performance instance whose credit option for CPU usage was not modified.

', 'refs' => [ 'UnsuccessfulInstanceCreditSpecificationItem$Error' => '

The applicable error for the burstable performance instance whose credit option for CPU usage was not modified.

', ], ], 'UnsuccessfulInstanceCreditSpecificationSet' => [ 'base' => NULL, 'refs' => [ 'ModifyInstanceCreditSpecificationResult$UnsuccessfulInstanceCreditSpecifications' => '

Information about the instances whose credit option for CPU usage was not modified.

', ], ], 'UnsuccessfulItem' => [ 'base' => '

Information about items that were not successfully processed in a batch call.

', 'refs' => [ 'UnsuccessfulItemList$member' => NULL, 'UnsuccessfulItemSet$member' => NULL, ], ], 'UnsuccessfulItemError' => [ 'base' => '

Information about the error that occurred. For more information about errors, see Error codes.

', 'refs' => [ 'UnsuccessfulItem$Error' => '

Information about the error.

', ], ], 'UnsuccessfulItemList' => [ 'base' => NULL, 'refs' => [ 'ModifyHostsResult$Unsuccessful' => '

The IDs of the Dedicated Hosts that could not be modified. Check whether the setting you requested can be used.

', 'ReleaseHostsResult$Unsuccessful' => '

The IDs of the Dedicated Hosts that could not be released, including an error message.

', ], ], 'UnsuccessfulItemSet' => [ 'base' => NULL, 'refs' => [ 'AcceptVpcEndpointConnectionsResult$Unsuccessful' => '

Information about the interface endpoints that were not accepted, if applicable.

', 'CreateFlowLogsResult$Unsuccessful' => '

Information about the flow logs that could not be created successfully.

', 'DeleteFlowLogsResult$Unsuccessful' => '

Information about the flow logs that could not be deleted successfully.

', 'DeleteVpcEndpointConnectionNotificationsResult$Unsuccessful' => '

Information about the notifications that could not be deleted successfully.

', 'DeleteVpcEndpointServiceConfigurationsResult$Unsuccessful' => '

Information about the service configurations that were not deleted, if applicable.

', 'DeleteVpcEndpointsResult$Unsuccessful' => '

Information about the VPC endpoints that were not successfully deleted.

', 'RejectVpcEndpointConnectionsResult$Unsuccessful' => '

Information about the endpoints that were not rejected, if applicable.

', ], ], 'UpdateSecurityGroupRuleDescriptionsEgressRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateSecurityGroupRuleDescriptionsEgressResult' => [ 'base' => NULL, 'refs' => [], ], 'UpdateSecurityGroupRuleDescriptionsIngressRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateSecurityGroupRuleDescriptionsIngressResult' => [ 'base' => NULL, 'refs' => [], ], 'UsageClassType' => [ 'base' => NULL, 'refs' => [ 'UsageClassTypeList$member' => NULL, ], ], 'UsageClassTypeList' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$SupportedUsageClasses' => '

Indicates whether the instance type is offered for spot or On-Demand.

', ], ], 'UserBucket' => [ 'base' => '

Describes the Amazon S3 bucket for the disk image.

', 'refs' => [ 'ImageDiskContainer$UserBucket' => '

The S3 bucket for the disk image.

', 'SnapshotDiskContainer$UserBucket' => '

The Amazon S3 bucket for the disk image.

', ], ], 'UserBucketDetails' => [ 'base' => '

Describes the Amazon S3 bucket for the disk image.

', 'refs' => [ 'SnapshotDetail$UserBucket' => '

The Amazon S3 bucket for the disk image.

', 'SnapshotTaskDetail$UserBucket' => '

The Amazon S3 bucket for the disk image.

', ], ], 'UserData' => [ 'base' => '

Describes the user data for an instance.

', 'refs' => [ 'ImportInstanceLaunchSpecification$UserData' => '

The Base64-encoded user data to make available to the instance.

', ], ], 'UserGroupStringList' => [ 'base' => NULL, 'refs' => [ 'ModifyFpgaImageAttributeRequest$UserGroups' => '

The user groups. This parameter is valid only when modifying the loadPermission attribute.

', 'ModifyImageAttributeRequest$UserGroups' => '

The user groups. This parameter can be used only when the Attribute parameter is launchPermission.

', ], ], 'UserIdGroupPair' => [ 'base' => '

Describes a security group and Amazon Web Services account ID pair.

', 'refs' => [ 'UserIdGroupPairList$member' => NULL, 'UserIdGroupPairSet$member' => NULL, ], ], 'UserIdGroupPairList' => [ 'base' => NULL, 'refs' => [ 'IpPermission$UserIdGroupPairs' => '

The security group and Amazon Web Services account ID pairs.

', ], ], 'UserIdGroupPairSet' => [ 'base' => NULL, 'refs' => [ 'StaleIpPermission$UserIdGroupPairs' => '

The security group pairs. Returns the ID of the referenced security group and VPC, and the ID and status of the VPC peering connection.

', ], ], 'UserIdStringList' => [ 'base' => NULL, 'refs' => [ 'ModifyFpgaImageAttributeRequest$UserIds' => '

The Amazon Web Services account IDs. This parameter is valid only when modifying the loadPermission attribute.

', 'ModifyImageAttributeRequest$UserIds' => '

The Amazon Web Services account IDs. This parameter can be used only when the Attribute parameter is launchPermission.

', 'ModifySnapshotAttributeRequest$UserIds' => '

The account ID to modify for the snapshot.

', ], ], 'UserTrustProviderType' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessTrustProviderRequest$UserTrustProviderType' => '

The type of user-based trust provider. This parameter is required when the provider type is user.

', 'VerifiedAccessTrustProvider$UserTrustProviderType' => '

The type of user-based trust provider.

', 'VerifiedAccessTrustProviderCondensed$UserTrustProviderType' => '

The type of user-based trust provider.

', ], ], 'VCpuCount' => [ 'base' => NULL, 'refs' => [ 'VCpuInfo$DefaultVCpus' => '

The default number of vCPUs for the instance type.

', ], ], 'VCpuCountRange' => [ 'base' => '

The minimum and maximum number of vCPUs.

', 'refs' => [ 'InstanceRequirements$VCpuCount' => '

The minimum and maximum number of vCPUs.

', ], ], 'VCpuCountRangeRequest' => [ 'base' => '

The minimum and maximum number of vCPUs.

', 'refs' => [ 'InstanceRequirementsRequest$VCpuCount' => '

The minimum and maximum number of vCPUs.

', ], ], 'VCpuInfo' => [ 'base' => '

Describes the vCPU configurations for the instance type.

', 'refs' => [ 'InstanceTypeInfo$VCpuInfo' => '

Describes the vCPU configurations for the instance type.

', ], ], 'ValidationError' => [ 'base' => '

The error code and error message that is returned for a parameter or parameter combination that is not valid when a new launch template or new version of a launch template is created.

', 'refs' => [ 'ErrorSet$member' => NULL, ], ], 'ValidationWarning' => [ 'base' => '

The error codes and error messages that are returned for the parameters or parameter combinations that are not valid when a new launch template or new version of a launch template is created.

', 'refs' => [ 'CreateLaunchTemplateResult$Warning' => '

If the launch template contains parameters or parameter combinations that are not valid, an error code and an error message are returned for each issue that\'s found.

', 'CreateLaunchTemplateVersionResult$Warning' => '

If the new version of the launch template contains parameters or parameter combinations that are not valid, an error code and an error message are returned for each issue that\'s found.

', ], ], 'ValueStringList' => [ 'base' => NULL, 'refs' => [ 'AcceptTransitGatewayMulticastDomainAssociationsRequest$SubnetIds' => '

The IDs of the subnets to associate with the transit gateway multicast domain.

', 'ClientVpnConnection$PostureComplianceStatuses' => '

The statuses returned by the client connect handler for posture compliance, if applicable.

', 'ClientVpnEndpoint$DnsServers' => '

Information about the DNS servers to be used for DNS resolution.

', 'CoipPool$PoolCidrs' => '

The address ranges of the address pool.

', 'ConnectionNotification$ConnectionEvents' => '

The events for the notification. Valid values are Accept, Connect, Delete, and Reject.

', 'CreateClientVpnEndpointRequest$DnsServers' => '

Information about the DNS servers to be used for DNS resolution. A Client VPN endpoint can have up to two DNS servers. If no DNS server is specified, the DNS address configured on the device is used for the DNS server.

', 'CreateFlowLogsResult$FlowLogIds' => '

The IDs of the flow logs.

', 'CreateVpcEndpointConnectionNotificationRequest$ConnectionEvents' => '

The endpoint events for which to receive notifications. Valid values are Accept, Connect, Delete, and Reject.

', 'CreateVpcEndpointServiceConfigurationRequest$NetworkLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of the Network Load Balancers.

', 'CreateVpcEndpointServiceConfigurationRequest$GatewayLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of the Gateway Load Balancers.

', 'CreateVpcEndpointServiceConfigurationRequest$SupportedIpAddressTypes' => '

The supported IP address types. The possible values are ipv4 and ipv6.

', 'DescribeClientVpnTargetNetworksRequest$AssociationIds' => '

The IDs of the target network associations.

', 'DescribeInstanceConnectEndpointsRequest$InstanceConnectEndpointIds' => '

One or more EC2 Instance Connect Endpoint IDs.

', 'DescribeIpamPoolsRequest$IpamPoolIds' => '

The IDs of the IPAM pools you would like information on.

', 'DescribeIpamResourceDiscoveriesRequest$IpamResourceDiscoveryIds' => '

The IPAM resource discovery IDs.

', 'DescribeIpamResourceDiscoveryAssociationsRequest$IpamResourceDiscoveryAssociationIds' => '

The resource discovery association IDs.

', 'DescribeIpamScopesRequest$IpamScopeIds' => '

The IDs of the scopes you want information on.

', 'DescribeIpamsRequest$IpamIds' => '

The IDs of the IPAMs you want information on.

', 'DescribeManagedPrefixListsRequest$PrefixListIds' => '

One or more prefix list IDs.

', 'DescribeMovingAddressesRequest$PublicIps' => '

One or more Elastic IP addresses.

', 'DescribeVpcEndpointServicesRequest$ServiceNames' => '

The service names.

', 'DescribeVpcEndpointServicesResult$ServiceNames' => '

The supported services.

', 'DnsServersOptionsModifyStructure$CustomDnsServers' => '

The IPv4 address range, in CIDR notation, of the DNS servers to be used. You can specify up to two DNS servers. Ensure that the DNS servers can be reached by the clients. The specified values overwrite the existing values.

', 'Explanation$AvailabilityZones' => '

The Availability Zones.

', 'Explanation$Cidrs' => '

The CIDR ranges.

', 'Filter$Values' => '

The filter values. Filter values are case-sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values.

', 'FirewallStatefulRule$Sources' => '

The source IP addresses, in CIDR notation.

', 'FirewallStatefulRule$Destinations' => '

The destination IP addresses, in CIDR notation.

', 'FirewallStatelessRule$Sources' => '

The source IP addresses, in CIDR notation.

', 'FirewallStatelessRule$Destinations' => '

The destination IP addresses, in CIDR notation.

', 'ModifyVpcEndpointConnectionNotificationRequest$ConnectionEvents' => '

The events for the endpoint. Valid values are Accept, Connect, Delete, and Reject.

', 'ModifyVpcEndpointServiceConfigurationRequest$AddNetworkLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of Network Load Balancers to add to your service configuration.

', 'ModifyVpcEndpointServiceConfigurationRequest$RemoveNetworkLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of Network Load Balancers to remove from your service configuration.

', 'ModifyVpcEndpointServiceConfigurationRequest$AddGatewayLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of Gateway Load Balancers to add to your service configuration.

', 'ModifyVpcEndpointServiceConfigurationRequest$RemoveGatewayLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of Gateway Load Balancers to remove from your service configuration.

', 'ModifyVpcEndpointServiceConfigurationRequest$AddSupportedIpAddressTypes' => '

The IP address types to add to your service configuration.

', 'ModifyVpcEndpointServiceConfigurationRequest$RemoveSupportedIpAddressTypes' => '

The IP address types to remove from your service configuration.

', 'ModifyVpcEndpointServicePermissionsRequest$AddAllowedPrincipals' => '

The Amazon Resource Names (ARN) of the principals. Permissions are granted to the principals in this list. To grant permissions to all principals, specify an asterisk (*).

', 'ModifyVpcEndpointServicePermissionsRequest$RemoveAllowedPrincipals' => '

The Amazon Resource Names (ARN) of the principals. Permissions are revoked for principals in this list.

', 'NetworkInsightsAnalysis$AdditionalAccounts' => '

The member accounts that contain resources that the path can traverse.

', 'NetworkInsightsAnalysis$SuggestedAccounts' => '

Potential intermediate accounts.

', 'NewDhcpConfiguration$Values' => NULL, 'PacketHeaderStatement$SourceAddresses' => '

The source addresses.

', 'PacketHeaderStatement$DestinationAddresses' => '

The destination addresses.

', 'PacketHeaderStatement$SourcePorts' => '

The source ports.

', 'PacketHeaderStatement$DestinationPorts' => '

The destination ports.

', 'PacketHeaderStatement$SourcePrefixLists' => '

The source prefix lists.

', 'PacketHeaderStatement$DestinationPrefixLists' => '

The destination prefix lists.

', 'PacketHeaderStatementRequest$SourceAddresses' => '

The source addresses.

', 'PacketHeaderStatementRequest$DestinationAddresses' => '

The destination addresses.

', 'PacketHeaderStatementRequest$SourcePorts' => '

The source ports.

', 'PacketHeaderStatementRequest$DestinationPorts' => '

The destination ports.

', 'PacketHeaderStatementRequest$SourcePrefixLists' => '

The source prefix lists.

', 'PacketHeaderStatementRequest$DestinationPrefixLists' => '

The destination prefix lists.

', 'PrefixList$Cidrs' => '

The IP address range of the Amazon Web Service.

', 'RejectTransitGatewayMulticastDomainAssociationsRequest$SubnetIds' => '

The IDs of the subnets to associate with the transit gateway multicast domain.

', 'ResourceStatement$Resources' => '

The resources.

', 'ResourceStatement$ResourceTypes' => '

The resource types.

', 'ResourceStatementRequest$Resources' => '

The resources.

', 'ResourceStatementRequest$ResourceTypes' => '

The resource types.

', 'ResponseLaunchTemplateData$SecurityGroupIds' => '

The security group IDs.

', 'ResponseLaunchTemplateData$SecurityGroups' => '

The security group names.

', 'ServiceConfiguration$AvailabilityZones' => '

The Availability Zones in which the service is available.

', 'ServiceConfiguration$NetworkLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of the Network Load Balancers for the service.

', 'ServiceConfiguration$GatewayLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of the Gateway Load Balancers for the service.

', 'ServiceConfiguration$BaseEndpointDnsNames' => '

The DNS names for the service.

', 'ServiceDetail$AvailabilityZones' => '

The Availability Zones in which the service is available.

', 'ServiceDetail$BaseEndpointDnsNames' => '

The DNS names for the service.

', 'StartNetworkInsightsAnalysisRequest$AdditionalAccounts' => '

The member accounts that contain resources that the path can traverse.

', 'TargetNetwork$SecurityGroups' => '

The IDs of the security groups applied to the target network association.

', 'TransitGatewayMulticastDeregisteredGroupMembers$DeregisteredNetworkInterfaceIds' => '

The network interface IDs of the deregistered members.

', 'TransitGatewayMulticastDeregisteredGroupSources$DeregisteredNetworkInterfaceIds' => '

The network interface IDs of the non-registered members.

', 'TransitGatewayMulticastRegisteredGroupMembers$RegisteredNetworkInterfaceIds' => '

The ID of the registered network interfaces.

', 'TransitGatewayMulticastRegisteredGroupSources$RegisteredNetworkInterfaceIds' => '

The IDs of the network interfaces members registered with the transit gateway multicast group.

', 'TransitGatewayOptions$TransitGatewayCidrBlocks' => '

The transit gateway CIDR blocks.

', 'TransitGatewayVpcAttachment$SubnetIds' => '

The IDs of the subnets.

', 'VpcEndpoint$RouteTableIds' => '

(Gateway endpoint) The IDs of the route tables associated with the endpoint.

', 'VpcEndpoint$SubnetIds' => '

(Interface endpoint) The subnets for the endpoint.

', 'VpcEndpoint$NetworkInterfaceIds' => '

(Interface endpoint) The network interfaces for the endpoint.

', 'VpcEndpointConnection$NetworkLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of the network load balancers for the service.

', 'VpcEndpointConnection$GatewayLoadBalancerArns' => '

The Amazon Resource Names (ARNs) of the Gateway Load Balancers for the service.

', ], ], 'VerifiedAccessEndpoint' => [ 'base' => '

An Amazon Web Services Verified Access endpoint specifies the application that Amazon Web Services Verified Access provides access to. It must be attached to an Amazon Web Services Verified Access group. An Amazon Web Services Verified Access endpoint must also have an attached access policy before you attached it to a group.

', 'refs' => [ 'CreateVerifiedAccessEndpointResult$VerifiedAccessEndpoint' => '

Details about the Verified Access endpoint.

', 'DeleteVerifiedAccessEndpointResult$VerifiedAccessEndpoint' => '

Details about the Verified Access endpoint.

', 'ModifyVerifiedAccessEndpointResult$VerifiedAccessEndpoint' => '

Details about the Verified Access endpoint.

', 'VerifiedAccessEndpointList$member' => NULL, ], ], 'VerifiedAccessEndpointAttachmentType' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointRequest$AttachmentType' => '

The type of attachment.

', 'VerifiedAccessEndpoint$AttachmentType' => '

The type of attachment used to provide connectivity between the Amazon Web Services Verified Access endpoint and the application.

', ], ], 'VerifiedAccessEndpointEniOptions' => [ 'base' => '

Options for a network-interface type endpoint.

', 'refs' => [ 'VerifiedAccessEndpoint$NetworkInterfaceOptions' => '

The options for network-interface type endpoint.

', ], ], 'VerifiedAccessEndpointId' => [ 'base' => NULL, 'refs' => [ 'DeleteVerifiedAccessEndpointRequest$VerifiedAccessEndpointId' => '

The ID of the Verified Access endpoint.

', 'GetVerifiedAccessEndpointPolicyRequest$VerifiedAccessEndpointId' => '

The ID of the Verified Access endpoint.

', 'ModifyVerifiedAccessEndpointPolicyRequest$VerifiedAccessEndpointId' => '

The ID of the Verified Access endpoint.

', 'ModifyVerifiedAccessEndpointRequest$VerifiedAccessEndpointId' => '

The ID of the Verified Access endpoint.

', 'VerifiedAccessEndpointIdList$member' => NULL, ], ], 'VerifiedAccessEndpointIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessEndpointsRequest$VerifiedAccessEndpointIds' => '

The ID of the Verified Access endpoint.

', ], ], 'VerifiedAccessEndpointList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessEndpointsResult$VerifiedAccessEndpoints' => '

Details about the Verified Access endpoints.

', ], ], 'VerifiedAccessEndpointLoadBalancerOptions' => [ 'base' => '

Describes a load balancer when creating an Amazon Web Services Verified Access endpoint using the load-balancer type.

', 'refs' => [ 'VerifiedAccessEndpoint$LoadBalancerOptions' => '

The load balancer details if creating the Amazon Web Services Verified Access endpoint as load-balancertype.

', ], ], 'VerifiedAccessEndpointPortNumber' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointEniOptions$Port' => '

The IP port number.

', 'CreateVerifiedAccessEndpointLoadBalancerOptions$Port' => '

The IP port number.

', 'ModifyVerifiedAccessEndpointEniOptions$Port' => '

The IP port number.

', 'ModifyVerifiedAccessEndpointLoadBalancerOptions$Port' => '

The IP port number.

', 'VerifiedAccessEndpointEniOptions$Port' => '

The IP port number.

', 'VerifiedAccessEndpointLoadBalancerOptions$Port' => '

The IP port number.

', ], ], 'VerifiedAccessEndpointProtocol' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointEniOptions$Protocol' => '

The IP protocol.

', 'CreateVerifiedAccessEndpointLoadBalancerOptions$Protocol' => '

The IP protocol.

', 'ModifyVerifiedAccessEndpointEniOptions$Protocol' => '

The IP protocol.

', 'ModifyVerifiedAccessEndpointLoadBalancerOptions$Protocol' => '

The IP protocol.

', 'VerifiedAccessEndpointEniOptions$Protocol' => '

The IP protocol.

', 'VerifiedAccessEndpointLoadBalancerOptions$Protocol' => '

The IP protocol.

', ], ], 'VerifiedAccessEndpointStatus' => [ 'base' => '

Describes the status of a Verified Access endpoint.

', 'refs' => [ 'VerifiedAccessEndpoint$Status' => '

The endpoint status.

', ], ], 'VerifiedAccessEndpointStatusCode' => [ 'base' => NULL, 'refs' => [ 'VerifiedAccessEndpointStatus$Code' => '

The status code of the Verified Access endpoint.

', ], ], 'VerifiedAccessEndpointSubnetIdList' => [ 'base' => NULL, 'refs' => [ 'VerifiedAccessEndpointLoadBalancerOptions$SubnetIds' => '

The IDs of the subnets.

', ], ], 'VerifiedAccessEndpointType' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointRequest$EndpointType' => '

The type of Verified Access endpoint to create.

', 'VerifiedAccessEndpoint$EndpointType' => '

The type of Amazon Web Services Verified Access endpoint. Incoming application requests will be sent to an IP address, load balancer or a network interface depending on the endpoint type specified.

', ], ], 'VerifiedAccessGroup' => [ 'base' => '

Describes a Verified Access group.

', 'refs' => [ 'CreateVerifiedAccessGroupResult$VerifiedAccessGroup' => '

Details about the Verified Access group.

', 'DeleteVerifiedAccessGroupResult$VerifiedAccessGroup' => '

Details about the Verified Access group.

', 'ModifyVerifiedAccessGroupResult$VerifiedAccessGroup' => '

Details about the Verified Access group.

', 'VerifiedAccessGroupList$member' => NULL, ], ], 'VerifiedAccessGroupId' => [ 'base' => NULL, 'refs' => [ 'CreateVerifiedAccessEndpointRequest$VerifiedAccessGroupId' => '

The ID of the Verified Access group to associate the endpoint with.

', 'DeleteVerifiedAccessGroupRequest$VerifiedAccessGroupId' => '

The ID of the Verified Access group.

', 'DescribeVerifiedAccessEndpointsRequest$VerifiedAccessGroupId' => '

The ID of the Verified Access group.

', 'GetVerifiedAccessGroupPolicyRequest$VerifiedAccessGroupId' => '

The ID of the Verified Access group.

', 'ModifyVerifiedAccessEndpointRequest$VerifiedAccessGroupId' => '

The ID of the Verified Access group.

', 'ModifyVerifiedAccessGroupPolicyRequest$VerifiedAccessGroupId' => '

The ID of the Verified Access group.

', 'ModifyVerifiedAccessGroupRequest$VerifiedAccessGroupId' => '

The ID of the Verified Access group.

', 'VerifiedAccessGroupIdList$member' => NULL, ], ], 'VerifiedAccessGroupIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessGroupsRequest$VerifiedAccessGroupIds' => '

The ID of the Verified Access groups.

', ], ], 'VerifiedAccessGroupList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessGroupsResult$VerifiedAccessGroups' => '

Details about the Verified Access groups.

', ], ], 'VerifiedAccessInstance' => [ 'base' => '

Describes a Verified Access instance.

', 'refs' => [ 'AttachVerifiedAccessTrustProviderResult$VerifiedAccessInstance' => '

Details about the Verified Access instance.

', 'CreateVerifiedAccessInstanceResult$VerifiedAccessInstance' => '

Details about the Verified Access instance.

', 'DeleteVerifiedAccessInstanceResult$VerifiedAccessInstance' => '

Details about the Verified Access instance.

', 'DetachVerifiedAccessTrustProviderResult$VerifiedAccessInstance' => '

Details about the Verified Access instance.

', 'ModifyVerifiedAccessInstanceResult$VerifiedAccessInstance' => '

Details about the Verified Access instance.

', 'VerifiedAccessInstanceList$member' => NULL, ], ], 'VerifiedAccessInstanceId' => [ 'base' => NULL, 'refs' => [ 'AttachVerifiedAccessTrustProviderRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'CreateVerifiedAccessGroupRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'DeleteVerifiedAccessInstanceRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'DescribeVerifiedAccessEndpointsRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'DescribeVerifiedAccessGroupsRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'DetachVerifiedAccessTrustProviderRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'ModifyVerifiedAccessGroupRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'ModifyVerifiedAccessInstanceLoggingConfigurationRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'ModifyVerifiedAccessInstanceRequest$VerifiedAccessInstanceId' => '

The ID of the Verified Access instance.

', 'VerifiedAccessInstanceIdList$member' => NULL, ], ], 'VerifiedAccessInstanceIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessInstanceLoggingConfigurationsRequest$VerifiedAccessInstanceIds' => '

The IDs of the Verified Access instances.

', 'DescribeVerifiedAccessInstancesRequest$VerifiedAccessInstanceIds' => '

The IDs of the Verified Access instances.

', ], ], 'VerifiedAccessInstanceList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessInstancesResult$VerifiedAccessInstances' => '

Details about the Verified Access instances.

', ], ], 'VerifiedAccessInstanceLoggingConfiguration' => [ 'base' => '

Describes logging options for an Amazon Web Services Verified Access instance.

', 'refs' => [ 'ModifyVerifiedAccessInstanceLoggingConfigurationResult$LoggingConfiguration' => '

The logging configuration for the Verified Access instance.

', 'VerifiedAccessInstanceLoggingConfigurationList$member' => NULL, ], ], 'VerifiedAccessInstanceLoggingConfigurationList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessInstanceLoggingConfigurationsResult$LoggingConfigurations' => '

The logging configuration for the Verified Access instances.

', ], ], 'VerifiedAccessLogCloudWatchLogsDestination' => [ 'base' => '

Options for CloudWatch Logs as a logging destination.

', 'refs' => [ 'VerifiedAccessLogs$CloudWatchLogs' => '

CloudWatch Logs logging destination.

', ], ], 'VerifiedAccessLogCloudWatchLogsDestinationOptions' => [ 'base' => '

Options for CloudWatch Logs as a logging destination.

', 'refs' => [ 'VerifiedAccessLogOptions$CloudWatchLogs' => '

Sends Verified Access logs to CloudWatch Logs.

', ], ], 'VerifiedAccessLogDeliveryStatus' => [ 'base' => '

Describes a log delivery status.

', 'refs' => [ 'VerifiedAccessLogCloudWatchLogsDestination$DeliveryStatus' => '

The delivery status for access logs.

', 'VerifiedAccessLogKinesisDataFirehoseDestination$DeliveryStatus' => '

The delivery status.

', 'VerifiedAccessLogS3Destination$DeliveryStatus' => '

The delivery status.

', ], ], 'VerifiedAccessLogDeliveryStatusCode' => [ 'base' => NULL, 'refs' => [ 'VerifiedAccessLogDeliveryStatus$Code' => '

The status code.

', ], ], 'VerifiedAccessLogKinesisDataFirehoseDestination' => [ 'base' => '

Options for Kinesis as a logging destination.

', 'refs' => [ 'VerifiedAccessLogs$KinesisDataFirehose' => '

Kinesis logging destination.

', ], ], 'VerifiedAccessLogKinesisDataFirehoseDestinationOptions' => [ 'base' => '

Describes Amazon Kinesis Data Firehose logging options.

', 'refs' => [ 'VerifiedAccessLogOptions$KinesisDataFirehose' => '

Sends Verified Access logs to Kinesis.

', ], ], 'VerifiedAccessLogOptions' => [ 'base' => '

Options for Verified Access logs.

', 'refs' => [ 'ModifyVerifiedAccessInstanceLoggingConfigurationRequest$AccessLogs' => '

The configuration options for Verified Access instances.

', ], ], 'VerifiedAccessLogS3Destination' => [ 'base' => '

Options for Amazon S3 as a logging destination.

', 'refs' => [ 'VerifiedAccessLogs$S3' => '

Amazon S3 logging options.

', ], ], 'VerifiedAccessLogS3DestinationOptions' => [ 'base' => '

Options for Amazon S3 as a logging destination.

', 'refs' => [ 'VerifiedAccessLogOptions$S3' => '

Sends Verified Access logs to Amazon S3.

', ], ], 'VerifiedAccessLogs' => [ 'base' => '

Describes the options for Verified Access logs.

', 'refs' => [ 'VerifiedAccessInstanceLoggingConfiguration$AccessLogs' => '

Details about the logging options.

', ], ], 'VerifiedAccessSseSpecificationRequest' => [ 'base' => '

Verified Access provides server side encryption by default to data at rest using Amazon Web Services-owned KMS keys. You also have the option of using customer managed KMS keys, which can be specified using the options below.

', 'refs' => [ 'CreateVerifiedAccessEndpointRequest$SseSpecification' => '

The options for server side encryption.

', 'CreateVerifiedAccessGroupRequest$SseSpecification' => '

The options for server side encryption.

', 'CreateVerifiedAccessTrustProviderRequest$SseSpecification' => '

The options for server side encryption.

', 'ModifyVerifiedAccessEndpointPolicyRequest$SseSpecification' => '

The options for server side encryption.

', 'ModifyVerifiedAccessGroupPolicyRequest$SseSpecification' => '

The options for server side encryption.

', 'ModifyVerifiedAccessTrustProviderRequest$SseSpecification' => '

The options for server side encryption.

', ], ], 'VerifiedAccessSseSpecificationResponse' => [ 'base' => '

The options in use for server side encryption.

', 'refs' => [ 'ModifyVerifiedAccessEndpointPolicyResult$SseSpecification' => '

The options in use for server side encryption.

', 'ModifyVerifiedAccessGroupPolicyResult$SseSpecification' => '

The options in use for server side encryption.

', 'VerifiedAccessEndpoint$SseSpecification' => '

The options in use for server side encryption.

', 'VerifiedAccessGroup$SseSpecification' => '

The options in use for server side encryption.

', 'VerifiedAccessTrustProvider$SseSpecification' => '

The options in use for server side encryption.

', ], ], 'VerifiedAccessTrustProvider' => [ 'base' => '

Describes a Verified Access trust provider.

', 'refs' => [ 'AttachVerifiedAccessTrustProviderResult$VerifiedAccessTrustProvider' => '

Details about the Verified Access trust provider.

', 'CreateVerifiedAccessTrustProviderResult$VerifiedAccessTrustProvider' => '

Details about the Verified Access trust provider.

', 'DeleteVerifiedAccessTrustProviderResult$VerifiedAccessTrustProvider' => '

Details about the Verified Access trust provider.

', 'DetachVerifiedAccessTrustProviderResult$VerifiedAccessTrustProvider' => '

Details about the Verified Access trust provider.

', 'ModifyVerifiedAccessTrustProviderResult$VerifiedAccessTrustProvider' => '

Details about the Verified Access trust provider.

', 'VerifiedAccessTrustProviderList$member' => NULL, ], ], 'VerifiedAccessTrustProviderCondensed' => [ 'base' => '

Condensed information about a trust provider.

', 'refs' => [ 'VerifiedAccessTrustProviderCondensedList$member' => NULL, ], ], 'VerifiedAccessTrustProviderCondensedList' => [ 'base' => NULL, 'refs' => [ 'VerifiedAccessInstance$VerifiedAccessTrustProviders' => '

The IDs of the Amazon Web Services Verified Access trust providers.

', ], ], 'VerifiedAccessTrustProviderId' => [ 'base' => NULL, 'refs' => [ 'AttachVerifiedAccessTrustProviderRequest$VerifiedAccessTrustProviderId' => '

The ID of the Verified Access trust provider.

', 'DeleteVerifiedAccessTrustProviderRequest$VerifiedAccessTrustProviderId' => '

The ID of the Verified Access trust provider.

', 'DetachVerifiedAccessTrustProviderRequest$VerifiedAccessTrustProviderId' => '

The ID of the Verified Access trust provider.

', 'ModifyVerifiedAccessTrustProviderRequest$VerifiedAccessTrustProviderId' => '

The ID of the Verified Access trust provider.

', 'VerifiedAccessTrustProviderIdList$member' => NULL, ], ], 'VerifiedAccessTrustProviderIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessTrustProvidersRequest$VerifiedAccessTrustProviderIds' => '

The IDs of the Verified Access trust providers.

', ], ], 'VerifiedAccessTrustProviderList' => [ 'base' => NULL, 'refs' => [ 'DescribeVerifiedAccessTrustProvidersResult$VerifiedAccessTrustProviders' => '

Details about the Verified Access trust providers.

', ], ], 'VersionDescription' => [ 'base' => NULL, 'refs' => [ 'CreateLaunchTemplateRequest$VersionDescription' => '

A description for the first version of the launch template.

', 'CreateLaunchTemplateVersionRequest$VersionDescription' => '

A description for the version of the launch template.

', 'LaunchTemplateVersion$VersionDescription' => '

The description for the version.

', ], ], 'VersionStringList' => [ 'base' => NULL, 'refs' => [ 'DeleteLaunchTemplateVersionsRequest$Versions' => '

The version numbers of one or more launch template versions to delete. You can specify up to 200 launch template version numbers.

', 'DescribeLaunchTemplateVersionsRequest$Versions' => '

One or more versions of the launch template. Valid values depend on whether you are describing a specified launch template (by ID or name) or all launch templates in your account.

To describe one or more versions of a specified launch template, valid values are $Latest, $Default, and numbers.

To describe all launch templates in your account that are defined as the latest version, the valid value is $Latest. To describe all launch templates in your account that are defined as the default version, the valid value is $Default. You can specify $Latest and $Default in the same request. You cannot specify numbers.

', ], ], 'VgwTelemetry' => [ 'base' => '

Describes telemetry for a VPN tunnel.

', 'refs' => [ 'VgwTelemetryList$member' => NULL, ], ], 'VgwTelemetryList' => [ 'base' => NULL, 'refs' => [ 'VpnConnection$VgwTelemetry' => '

Information about the VPN tunnel.

', ], ], 'VirtualizationType' => [ 'base' => NULL, 'refs' => [ 'Image$VirtualizationType' => '

The type of virtualization of the AMI.

', 'Instance$VirtualizationType' => '

The virtualization type of the instance.

', 'VirtualizationTypeList$member' => NULL, 'VirtualizationTypeSet$member' => NULL, ], ], 'VirtualizationTypeList' => [ 'base' => NULL, 'refs' => [ 'InstanceTypeInfo$SupportedVirtualizationTypes' => '

The supported virtualization types.

', ], ], 'VirtualizationTypeSet' => [ 'base' => NULL, 'refs' => [ 'GetInstanceTypesFromInstanceRequirementsRequest$VirtualizationTypes' => '

The virtualization type.

', 'InstanceRequirementsWithMetadataRequest$VirtualizationTypes' => '

The virtualization type.

', ], ], 'Volume' => [ 'base' => '

Describes a volume.

', 'refs' => [ 'VolumeList$member' => NULL, ], ], 'VolumeAttachment' => [ 'base' => '

Describes volume attachment details.

', 'refs' => [ 'VolumeAttachmentList$member' => NULL, ], ], 'VolumeAttachmentList' => [ 'base' => NULL, 'refs' => [ 'Volume$Attachments' => '

Information about the volume attachments.

', ], ], 'VolumeAttachmentState' => [ 'base' => NULL, 'refs' => [ 'VolumeAttachment$State' => '

The attachment state of the volume.

', ], ], 'VolumeAttributeName' => [ 'base' => NULL, 'refs' => [ 'DescribeVolumeAttributeRequest$Attribute' => '

The attribute of the volume. This parameter is required.

', ], ], 'VolumeDetail' => [ 'base' => '

Describes an EBS volume.

', 'refs' => [ 'DiskImage$Volume' => '

Information about the volume.

', 'ImportVolumeRequest$Volume' => '

The volume size.

', ], ], 'VolumeId' => [ 'base' => NULL, 'refs' => [ 'AttachVolumeRequest$VolumeId' => '

The ID of the EBS volume. The volume and instance must be within the same Availability Zone.

', 'CreateSnapshotRequest$VolumeId' => '

The ID of the Amazon EBS volume.

', 'DeleteVolumeRequest$VolumeId' => '

The ID of the volume.

', 'DescribeVolumeAttributeRequest$VolumeId' => '

The ID of the volume.

', 'EbsInstanceBlockDeviceSpecification$VolumeId' => '

The ID of the EBS volume.

', 'EnableVolumeIORequest$VolumeId' => '

The ID of the volume.

', 'ModifyVolumeAttributeRequest$VolumeId' => '

The ID of the volume.

', 'ModifyVolumeRequest$VolumeId' => '

The ID of the volume.

', 'SnapshotTierStatus$VolumeId' => '

The ID of the volume from which the snapshot was created.

', 'VolumeIdStringList$member' => NULL, ], ], 'VolumeIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeVolumeStatusRequest$VolumeIds' => '

The IDs of the volumes.

Default: Describes all your volumes.

', 'DescribeVolumesModificationsRequest$VolumeIds' => '

The IDs of the volumes.

', 'DescribeVolumesRequest$VolumeIds' => '

The volume IDs.

', 'InstanceSpecification$ExcludeDataVolumeIds' => '

The IDs of the data (non-root) volumes to exclude from the multi-volume snapshot set. If you specify the ID of the root volume, the request fails. To exclude the root volume, use ExcludeBootVolume.

You can specify up to 40 volume IDs per request.

', ], ], 'VolumeIdWithResolver' => [ 'base' => NULL, 'refs' => [ 'DetachVolumeRequest$VolumeId' => '

The ID of the volume.

', ], ], 'VolumeList' => [ 'base' => NULL, 'refs' => [ 'DescribeVolumesResult$Volumes' => '

Information about the volumes.

', ], ], 'VolumeModification' => [ 'base' => '

Describes the modification status of an EBS volume.

If the volume has never been modified, some element values will be null.

', 'refs' => [ 'ModifyVolumeResult$VolumeModification' => '

Information about the volume modification.

', 'VolumeModificationList$member' => NULL, ], ], 'VolumeModificationList' => [ 'base' => NULL, 'refs' => [ 'DescribeVolumesModificationsResult$VolumesModifications' => '

Information about the volume modifications.

', ], ], 'VolumeModificationState' => [ 'base' => NULL, 'refs' => [ 'VolumeModification$ModificationState' => '

The current modification state. The modification state is null for unmodified volumes.

', ], ], 'VolumeState' => [ 'base' => NULL, 'refs' => [ 'Volume$State' => '

The volume state.

', ], ], 'VolumeStatusAction' => [ 'base' => '

Describes a volume status operation code.

', 'refs' => [ 'VolumeStatusActionsList$member' => NULL, ], ], 'VolumeStatusActionsList' => [ 'base' => NULL, 'refs' => [ 'VolumeStatusItem$Actions' => '

The details of the operation.

', ], ], 'VolumeStatusAttachmentStatus' => [ 'base' => '

Information about the instances to which the volume is attached.

', 'refs' => [ 'VolumeStatusAttachmentStatusList$member' => NULL, ], ], 'VolumeStatusAttachmentStatusList' => [ 'base' => NULL, 'refs' => [ 'VolumeStatusItem$AttachmentStatuses' => '

Information about the instances to which the volume is attached.

', ], ], 'VolumeStatusDetails' => [ 'base' => '

Describes a volume status.

', 'refs' => [ 'VolumeStatusDetailsList$member' => NULL, ], ], 'VolumeStatusDetailsList' => [ 'base' => NULL, 'refs' => [ 'VolumeStatusInfo$Details' => '

The details of the volume status.

', ], ], 'VolumeStatusEvent' => [ 'base' => '

Describes a volume status event.

', 'refs' => [ 'VolumeStatusEventsList$member' => NULL, ], ], 'VolumeStatusEventsList' => [ 'base' => NULL, 'refs' => [ 'VolumeStatusItem$Events' => '

A list of events associated with the volume.

', ], ], 'VolumeStatusInfo' => [ 'base' => '

Describes the status of a volume.

', 'refs' => [ 'VolumeStatusItem$VolumeStatus' => '

The volume status.

', ], ], 'VolumeStatusInfoStatus' => [ 'base' => NULL, 'refs' => [ 'VolumeStatusInfo$Status' => '

The status of the volume.

', ], ], 'VolumeStatusItem' => [ 'base' => '

Describes the volume status.

', 'refs' => [ 'VolumeStatusList$member' => NULL, ], ], 'VolumeStatusList' => [ 'base' => NULL, 'refs' => [ 'DescribeVolumeStatusResult$VolumeStatuses' => '

Information about the status of the volumes.

', ], ], 'VolumeStatusName' => [ 'base' => NULL, 'refs' => [ 'VolumeStatusDetails$Name' => '

The name of the volume status.

', ], ], 'VolumeType' => [ 'base' => NULL, 'refs' => [ 'CreateVolumeRequest$VolumeType' => '

The volume type. This parameter can be one of the following values:

  • General Purpose SSD: gp2 | gp3

  • Provisioned IOPS SSD: io1 | io2

  • Throughput Optimized HDD: st1

  • Cold HDD: sc1

  • Magnetic: standard

Throughput Optimized HDD (st1) and Cold HDD (sc1) volumes can\'t be used as boot volumes.

For more information, see Amazon EBS volume types in the Amazon Elastic Compute Cloud User Guide.

Default: gp2

', 'EbsBlockDevice$VolumeType' => '

The volume type. For more information, see Amazon EBS volume types in the Amazon EC2 User Guide.

', 'LaunchTemplateEbsBlockDevice$VolumeType' => '

The volume type.

', 'LaunchTemplateEbsBlockDeviceRequest$VolumeType' => '

The volume type. For more information, see Amazon EBS volume types in the Amazon Elastic Compute Cloud User Guide.

', 'ModifyVolumeRequest$VolumeType' => '

The target EBS volume type of the volume. For more information, see Amazon EBS volume types in the Amazon Elastic Compute Cloud User Guide.

Default: The existing type is retained.

', 'Volume$VolumeType' => '

The volume type.

', 'VolumeModification$TargetVolumeType' => '

The target EBS volume type of the volume.

', 'VolumeModification$OriginalVolumeType' => '

The original EBS volume type of the volume.

', ], ], 'Vpc' => [ 'base' => '

Describes a VPC.

', 'refs' => [ 'CreateDefaultVpcResult$Vpc' => '

Information about the VPC.

', 'CreateVpcResult$Vpc' => '

Information about the VPC.

', 'VpcList$member' => NULL, ], ], 'VpcAttachment' => [ 'base' => '

Describes an attachment between a virtual private gateway and a VPC.

', 'refs' => [ 'AttachVpnGatewayResult$VpcAttachment' => '

Information about the attachment.

', 'VpcAttachmentList$member' => NULL, ], ], 'VpcAttachmentList' => [ 'base' => NULL, 'refs' => [ 'VpnGateway$VpcAttachments' => '

Any VPCs attached to the virtual private gateway.

', ], ], 'VpcAttributeName' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcAttributeRequest$Attribute' => '

The VPC attribute.

', ], ], 'VpcCidrAssociationId' => [ 'base' => NULL, 'refs' => [ 'DisassociateVpcCidrBlockRequest$AssociationId' => '

The association ID for the CIDR block.

', ], ], 'VpcCidrBlockAssociation' => [ 'base' => '

Describes an IPv4 CIDR block associated with a VPC.

', 'refs' => [ 'AssociateVpcCidrBlockResult$CidrBlockAssociation' => '

Information about the IPv4 CIDR block association.

', 'DisassociateVpcCidrBlockResult$CidrBlockAssociation' => '

Information about the IPv4 CIDR block association.

', 'VpcCidrBlockAssociationSet$member' => NULL, ], ], 'VpcCidrBlockAssociationSet' => [ 'base' => NULL, 'refs' => [ 'Vpc$CidrBlockAssociationSet' => '

Information about the IPv4 CIDR blocks associated with the VPC.

', ], ], 'VpcCidrBlockState' => [ 'base' => '

Describes the state of a CIDR block.

', 'refs' => [ 'VpcCidrBlockAssociation$CidrBlockState' => '

Information about the state of the CIDR block.

', 'VpcIpv6CidrBlockAssociation$Ipv6CidrBlockState' => '

Information about the state of the CIDR block.

', ], ], 'VpcCidrBlockStateCode' => [ 'base' => NULL, 'refs' => [ 'VpcCidrBlockState$State' => '

The state of the CIDR block.

', ], ], 'VpcClassicLink' => [ 'base' => '

Deprecated.

Describes whether a VPC is enabled for ClassicLink.

', 'refs' => [ 'VpcClassicLinkList$member' => NULL, ], ], 'VpcClassicLinkIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcClassicLinkDnsSupportRequest$VpcIds' => '

The IDs of the VPCs.

', 'DescribeVpcClassicLinkRequest$VpcIds' => '

The VPCs for which you want to describe the ClassicLink status.

', ], ], 'VpcClassicLinkList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcClassicLinkResult$Vpcs' => '

The ClassicLink status of the VPCs.

', ], ], 'VpcEndpoint' => [ 'base' => '

Describes a VPC endpoint.

', 'refs' => [ 'CreateVpcEndpointResult$VpcEndpoint' => '

Information about the endpoint.

', 'VpcEndpointSet$member' => NULL, ], ], 'VpcEndpointConnection' => [ 'base' => '

Describes a VPC endpoint connection to a service.

', 'refs' => [ 'VpcEndpointConnectionSet$member' => NULL, ], ], 'VpcEndpointConnectionSet' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcEndpointConnectionsResult$VpcEndpointConnections' => '

Information about the VPC endpoint connections.

', ], ], 'VpcEndpointId' => [ 'base' => NULL, 'refs' => [ 'CreateRouteRequest$VpcEndpointId' => '

The ID of a VPC endpoint. Supported for Gateway Load Balancer endpoints only.

', 'CreateTrafficMirrorTargetRequest$GatewayLoadBalancerEndpointId' => '

The ID of the Gateway Load Balancer endpoint.

', 'CreateVpcEndpointConnectionNotificationRequest$VpcEndpointId' => '

The ID of the endpoint.

', 'ModifyVpcEndpointRequest$VpcEndpointId' => '

The ID of the endpoint.

', 'ReplaceRouteRequest$VpcEndpointId' => '

The ID of a VPC endpoint. Supported for Gateway Load Balancer endpoints only.

', 'VpcEndpointIdList$member' => NULL, ], ], 'VpcEndpointIdList' => [ 'base' => NULL, 'refs' => [ 'AcceptVpcEndpointConnectionsRequest$VpcEndpointIds' => '

The IDs of the interface VPC endpoints.

', 'DeleteVpcEndpointsRequest$VpcEndpointIds' => '

The IDs of the VPC endpoints.

', 'DescribeVpcEndpointsRequest$VpcEndpointIds' => '

The IDs of the VPC endpoints.

', 'RejectVpcEndpointConnectionsRequest$VpcEndpointIds' => '

The IDs of the VPC endpoints.

', ], ], 'VpcEndpointRouteTableIdList' => [ 'base' => NULL, 'refs' => [ 'CreateVpcEndpointRequest$RouteTableIds' => '

(Gateway endpoint) The route table IDs.

', 'ModifyVpcEndpointRequest$AddRouteTableIds' => '

(Gateway endpoint) The IDs of the route tables to associate with the endpoint.

', 'ModifyVpcEndpointRequest$RemoveRouteTableIds' => '

(Gateway endpoint) The IDs of the route tables to disassociate from the endpoint.

', ], ], 'VpcEndpointSecurityGroupIdList' => [ 'base' => NULL, 'refs' => [ 'CreateVpcEndpointRequest$SecurityGroupIds' => '

(Interface endpoint) The IDs of the security groups to associate with the endpoint network interfaces. If this parameter is not specified, we use the default security group for the VPC.

', 'ModifyVpcEndpointRequest$AddSecurityGroupIds' => '

(Interface endpoint) The IDs of the security groups to associate with the endpoint network interfaces.

', 'ModifyVpcEndpointRequest$RemoveSecurityGroupIds' => '

(Interface endpoint) The IDs of the security groups to disassociate from the endpoint network interfaces.

', ], ], 'VpcEndpointServiceId' => [ 'base' => NULL, 'refs' => [ 'AcceptVpcEndpointConnectionsRequest$ServiceId' => '

The ID of the VPC endpoint service.

', 'CreateVpcEndpointConnectionNotificationRequest$ServiceId' => '

The ID of the endpoint service.

', 'DescribeVpcEndpointServicePermissionsRequest$ServiceId' => '

The ID of the service.

', 'ModifyVpcEndpointServiceConfigurationRequest$ServiceId' => '

The ID of the service.

', 'ModifyVpcEndpointServicePayerResponsibilityRequest$ServiceId' => '

The ID of the service.

', 'ModifyVpcEndpointServicePermissionsRequest$ServiceId' => '

The ID of the service.

', 'RejectVpcEndpointConnectionsRequest$ServiceId' => '

The ID of the service.

', 'StartVpcEndpointServicePrivateDnsVerificationRequest$ServiceId' => '

The ID of the endpoint service.

', 'VpcEndpointServiceIdList$member' => NULL, ], ], 'VpcEndpointServiceIdList' => [ 'base' => NULL, 'refs' => [ 'DeleteVpcEndpointServiceConfigurationsRequest$ServiceIds' => '

The IDs of the services.

', 'DescribeVpcEndpointServiceConfigurationsRequest$ServiceIds' => '

The IDs of the endpoint services.

', ], ], 'VpcEndpointSet' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcEndpointsResult$VpcEndpoints' => '

Information about the endpoints.

', ], ], 'VpcEndpointSubnetIdList' => [ 'base' => NULL, 'refs' => [ 'CreateVpcEndpointRequest$SubnetIds' => '

(Interface and Gateway Load Balancer endpoints) The IDs of the subnets in which to create endpoint network interfaces. For a Gateway Load Balancer endpoint, you can specify only one subnet.

', 'ModifyVpcEndpointRequest$AddSubnetIds' => '

(Interface and Gateway Load Balancer endpoints) The IDs of the subnets in which to serve the endpoint. For a Gateway Load Balancer endpoint, you can specify only one subnet.

', 'ModifyVpcEndpointRequest$RemoveSubnetIds' => '

(Interface endpoint) The IDs of the subnets from which to remove the endpoint.

', ], ], 'VpcEndpointType' => [ 'base' => NULL, 'refs' => [ 'CreateVpcEndpointRequest$VpcEndpointType' => '

The type of endpoint.

Default: Gateway

', 'VpcEndpoint$VpcEndpointType' => '

The type of endpoint.

', ], ], 'VpcFlowLogId' => [ 'base' => NULL, 'refs' => [ 'FlowLogIdList$member' => NULL, 'GetFlowLogsIntegrationTemplateRequest$FlowLogId' => '

The ID of the flow log.

', ], ], 'VpcId' => [ 'base' => NULL, 'refs' => [ 'ApplySecurityGroupsToClientVpnTargetNetworkRequest$VpcId' => '

The ID of the VPC in which the associated target network is located.

', 'AssociateDhcpOptionsRequest$VpcId' => '

The ID of the VPC.

', 'AssociateVpcCidrBlockRequest$VpcId' => '

The ID of the VPC.

', 'AttachClassicLinkVpcRequest$VpcId' => '

The ID of the ClassicLink-enabled VPC.

', 'AttachInternetGatewayRequest$VpcId' => '

The ID of the VPC.

', 'AttachVpnGatewayRequest$VpcId' => '

The ID of the VPC.

', 'CarrierGateway$VpcId' => '

The ID of the VPC associated with the carrier gateway.

', 'ClientVpnEndpoint$VpcId' => '

The ID of the VPC.

', 'CreateCarrierGatewayRequest$VpcId' => '

The ID of the VPC to associate with the carrier gateway.

', 'CreateClientVpnEndpointRequest$VpcId' => '

The ID of the VPC to associate with the Client VPN endpoint. If no security group IDs are specified in the request, the default security group for the VPC is applied.

', 'CreateEgressOnlyInternetGatewayRequest$VpcId' => '

The ID of the VPC for which to create the egress-only internet gateway.

', 'CreateLocalGatewayRouteTableVpcAssociationRequest$VpcId' => '

The ID of the VPC.

', 'CreateNetworkAclRequest$VpcId' => '

The ID of the VPC.

', 'CreateRouteTableRequest$VpcId' => '

The ID of the VPC.

', 'CreateSecurityGroupRequest$VpcId' => '

The ID of the VPC. Required for a nondefault VPC.

', 'CreateSubnetRequest$VpcId' => '

The ID of the VPC.

', 'CreateTransitGatewayVpcAttachmentRequest$VpcId' => '

The ID of the VPC.

', 'CreateVpcEndpointRequest$VpcId' => '

The ID of the VPC.

', 'CreateVpcPeeringConnectionRequest$VpcId' => '

The ID of the requester VPC. You must specify this parameter in the request.

', 'DeleteVpcRequest$VpcId' => '

The ID of the VPC.

', 'DescribeStaleSecurityGroupsRequest$VpcId' => '

The ID of the VPC.

', 'DescribeVpcAttributeRequest$VpcId' => '

The ID of the VPC.

', 'DetachClassicLinkVpcRequest$VpcId' => '

The ID of the VPC to which the instance is linked.

', 'DetachInternetGatewayRequest$VpcId' => '

The ID of the VPC.

', 'DetachVpnGatewayRequest$VpcId' => '

The ID of the VPC.

', 'DisableVpcClassicLinkDnsSupportRequest$VpcId' => '

The ID of the VPC.

', 'DisableVpcClassicLinkRequest$VpcId' => '

The ID of the VPC.

', 'Ec2InstanceConnectEndpoint$VpcId' => '

The ID of the VPC in which the EC2 Instance Connect Endpoint was created.

', 'EnableVpcClassicLinkDnsSupportRequest$VpcId' => '

The ID of the VPC.

', 'EnableVpcClassicLinkRequest$VpcId' => '

The ID of the VPC.

', 'GetSecurityGroupsForVpcRequest$VpcId' => '

The VPC ID where the security group can be used.

', 'ModifyClientVpnEndpointRequest$VpcId' => '

The ID of the VPC to associate with the Client VPN endpoint.

', 'ModifyVpcAttributeRequest$VpcId' => '

The ID of the VPC.

', 'ModifyVpcTenancyRequest$VpcId' => '

The ID of the VPC.

', 'VpcClassicLinkIdList$member' => NULL, 'VpcIdStringList$member' => NULL, ], ], 'VpcIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcsRequest$VpcIds' => '

The IDs of the VPCs.

Default: Describes all your VPCs.

', ], ], 'VpcIpv6CidrBlockAssociation' => [ 'base' => '

Describes an IPv6 CIDR block associated with a VPC.

', 'refs' => [ 'AssociateVpcCidrBlockResult$Ipv6CidrBlockAssociation' => '

Information about the IPv6 CIDR block association.

', 'DisassociateVpcCidrBlockResult$Ipv6CidrBlockAssociation' => '

Information about the IPv6 CIDR block association.

', 'VpcIpv6CidrBlockAssociationSet$member' => NULL, ], ], 'VpcIpv6CidrBlockAssociationSet' => [ 'base' => NULL, 'refs' => [ 'Vpc$Ipv6CidrBlockAssociationSet' => '

Information about the IPv6 CIDR blocks associated with the VPC.

', ], ], 'VpcList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcsResult$Vpcs' => '

Information about one or more VPCs.

', ], ], 'VpcPeeringConnection' => [ 'base' => '

Describes a VPC peering connection.

', 'refs' => [ 'AcceptVpcPeeringConnectionResult$VpcPeeringConnection' => '

Information about the VPC peering connection.

', 'CreateVpcPeeringConnectionResult$VpcPeeringConnection' => '

Information about the VPC peering connection.

', 'VpcPeeringConnectionList$member' => NULL, ], ], 'VpcPeeringConnectionId' => [ 'base' => NULL, 'refs' => [ 'CreateRouteRequest$VpcPeeringConnectionId' => '

The ID of a VPC peering connection.

', 'DeleteVpcPeeringConnectionRequest$VpcPeeringConnectionId' => '

The ID of the VPC peering connection.

', 'ModifyVpcPeeringConnectionOptionsRequest$VpcPeeringConnectionId' => '

The ID of the VPC peering connection.

', 'RejectVpcPeeringConnectionRequest$VpcPeeringConnectionId' => '

The ID of the VPC peering connection.

', 'ReplaceRouteRequest$VpcPeeringConnectionId' => '

The ID of a VPC peering connection.

', 'VpcPeeringConnectionIdList$member' => NULL, ], ], 'VpcPeeringConnectionIdList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcPeeringConnectionsRequest$VpcPeeringConnectionIds' => '

The IDs of the VPC peering connections.

Default: Describes all your VPC peering connections.

', ], ], 'VpcPeeringConnectionIdWithResolver' => [ 'base' => NULL, 'refs' => [ 'AcceptVpcPeeringConnectionRequest$VpcPeeringConnectionId' => '

The ID of the VPC peering connection. You must specify this parameter in the request.

', ], ], 'VpcPeeringConnectionList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpcPeeringConnectionsResult$VpcPeeringConnections' => '

Information about the VPC peering connections.

', ], ], 'VpcPeeringConnectionOptionsDescription' => [ 'base' => '

Describes the VPC peering connection options.

', 'refs' => [ 'VpcPeeringConnectionVpcInfo$PeeringOptions' => '

Information about the VPC peering connection options for the accepter or requester VPC.

', ], ], 'VpcPeeringConnectionStateReason' => [ 'base' => '

Describes the status of a VPC peering connection.

', 'refs' => [ 'VpcPeeringConnection$Status' => '

The status of the VPC peering connection.

', ], ], 'VpcPeeringConnectionStateReasonCode' => [ 'base' => NULL, 'refs' => [ 'VpcPeeringConnectionStateReason$Code' => '

The status of the VPC peering connection.

', ], ], 'VpcPeeringConnectionVpcInfo' => [ 'base' => '

Describes a VPC in a VPC peering connection.

', 'refs' => [ 'VpcPeeringConnection$AccepterVpcInfo' => '

Information about the accepter VPC. CIDR block information is only returned when describing an active VPC peering connection.

', 'VpcPeeringConnection$RequesterVpcInfo' => '

Information about the requester VPC. CIDR block information is only returned when describing an active VPC peering connection.

', ], ], 'VpcState' => [ 'base' => NULL, 'refs' => [ 'Vpc$State' => '

The current state of the VPC.

', ], ], 'VpcTenancy' => [ 'base' => NULL, 'refs' => [ 'ModifyVpcTenancyRequest$InstanceTenancy' => '

The instance tenancy attribute for the VPC.

', ], ], 'VpnConnection' => [ 'base' => '

Describes a VPN connection.

', 'refs' => [ 'CreateVpnConnectionResult$VpnConnection' => '

Information about the VPN connection.

', 'ModifyVpnConnectionOptionsResult$VpnConnection' => '

Information about the VPN connection.

', 'ModifyVpnConnectionResult$VpnConnection' => '

Information about the VPN connection.

', 'ModifyVpnTunnelCertificateResult$VpnConnection' => '

Information about the VPN connection.

', 'ModifyVpnTunnelOptionsResult$VpnConnection' => '

Information about the VPN connection.

', 'VpnConnectionList$member' => NULL, ], ], 'VpnConnectionDeviceSampleConfiguration' => [ 'base' => NULL, 'refs' => [ 'GetVpnConnectionDeviceSampleConfigurationResult$VpnConnectionDeviceSampleConfiguration' => '

Sample configuration file for the specified customer gateway device.

', ], ], 'VpnConnectionDeviceType' => [ 'base' => '

List of customer gateway devices that have a sample configuration file available for use. You can also see the list of device types with sample configuration files available under Your customer gateway device in the Amazon Web Services Site-to-Site VPN User Guide.

', 'refs' => [ 'VpnConnectionDeviceTypeList$member' => NULL, ], ], 'VpnConnectionDeviceTypeId' => [ 'base' => NULL, 'refs' => [ 'GetVpnConnectionDeviceSampleConfigurationRequest$VpnConnectionDeviceTypeId' => '

Device identifier provided by the GetVpnConnectionDeviceTypes API.

', ], ], 'VpnConnectionDeviceTypeList' => [ 'base' => NULL, 'refs' => [ 'GetVpnConnectionDeviceTypesResult$VpnConnectionDeviceTypes' => '

List of customer gateway devices that have a sample configuration file available for use.

', ], ], 'VpnConnectionId' => [ 'base' => NULL, 'refs' => [ 'CreateVpnConnectionRouteRequest$VpnConnectionId' => '

The ID of the VPN connection.

', 'DeleteVpnConnectionRequest$VpnConnectionId' => '

The ID of the VPN connection.

', 'DeleteVpnConnectionRouteRequest$VpnConnectionId' => '

The ID of the VPN connection.

', 'GetVpnConnectionDeviceSampleConfigurationRequest$VpnConnectionId' => '

The VpnConnectionId specifies the Site-to-Site VPN connection used for the sample configuration.

', 'GetVpnTunnelReplacementStatusRequest$VpnConnectionId' => '

The ID of the Site-to-Site VPN connection.

', 'GetVpnTunnelReplacementStatusResult$VpnConnectionId' => '

The ID of the Site-to-Site VPN connection.

', 'ModifyVpnConnectionOptionsRequest$VpnConnectionId' => '

The ID of the Site-to-Site VPN connection.

', 'ModifyVpnConnectionRequest$VpnConnectionId' => '

The ID of the VPN connection.

', 'ModifyVpnTunnelCertificateRequest$VpnConnectionId' => '

The ID of the Amazon Web Services Site-to-Site VPN connection.

', 'ModifyVpnTunnelOptionsRequest$VpnConnectionId' => '

The ID of the Amazon Web Services Site-to-Site VPN connection.

', 'ReplaceVpnTunnelRequest$VpnConnectionId' => '

The ID of the Site-to-Site VPN connection.

', 'VpnConnectionIdStringList$member' => NULL, ], ], 'VpnConnectionIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpnConnectionsRequest$VpnConnectionIds' => '

One or more VPN connection IDs.

Default: Describes your VPN connections.

', ], ], 'VpnConnectionList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpnConnectionsResult$VpnConnections' => '

Information about one or more VPN connections.

', ], ], 'VpnConnectionOptions' => [ 'base' => '

Describes VPN connection options.

', 'refs' => [ 'VpnConnection$Options' => '

The VPN connection options.

', ], ], 'VpnConnectionOptionsSpecification' => [ 'base' => '

Describes VPN connection options.

', 'refs' => [ 'CreateVpnConnectionRequest$Options' => '

The options for the VPN connection.

', ], ], 'VpnEcmpSupportValue' => [ 'base' => NULL, 'refs' => [ 'ModifyTransitGatewayOptions$VpnEcmpSupport' => '

Enable or disable Equal Cost Multipath Protocol support.

', 'TransitGatewayOptions$VpnEcmpSupport' => '

Indicates whether Equal Cost Multipath Protocol support is enabled.

', 'TransitGatewayRequestOptions$VpnEcmpSupport' => '

Enable or disable Equal Cost Multipath Protocol support. Enabled by default.

', ], ], 'VpnGateway' => [ 'base' => '

Describes a virtual private gateway.

', 'refs' => [ 'CreateVpnGatewayResult$VpnGateway' => '

Information about the virtual private gateway.

', 'VpnGatewayList$member' => NULL, ], ], 'VpnGatewayId' => [ 'base' => NULL, 'refs' => [ 'AttachVpnGatewayRequest$VpnGatewayId' => '

The ID of the virtual private gateway.

', 'CreateVpnConnectionRequest$VpnGatewayId' => '

The ID of the virtual private gateway. If you specify a virtual private gateway, you cannot specify a transit gateway.

', 'DeleteVpnGatewayRequest$VpnGatewayId' => '

The ID of the virtual private gateway.

', 'DetachVpnGatewayRequest$VpnGatewayId' => '

The ID of the virtual private gateway.

', 'DisableVgwRoutePropagationRequest$GatewayId' => '

The ID of the virtual private gateway.

', 'EnableVgwRoutePropagationRequest$GatewayId' => '

The ID of the virtual private gateway that is attached to a VPC. The virtual private gateway must be attached to the same VPC that the routing tables are associated with.

', 'GetVpnTunnelReplacementStatusResult$VpnGatewayId' => '

The ID of the virtual private gateway.

', 'ModifyVpnConnectionRequest$VpnGatewayId' => '

The ID of the virtual private gateway at the Amazon Web Services side of the VPN connection.

', 'VpnGatewayIdStringList$member' => NULL, ], ], 'VpnGatewayIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpnGatewaysRequest$VpnGatewayIds' => '

One or more virtual private gateway IDs.

Default: Describes all your virtual private gateways.

', ], ], 'VpnGatewayList' => [ 'base' => NULL, 'refs' => [ 'DescribeVpnGatewaysResult$VpnGateways' => '

Information about one or more virtual private gateways.

', ], ], 'VpnProtocol' => [ 'base' => NULL, 'refs' => [ 'ClientVpnEndpoint$VpnProtocol' => '

The protocol used by the VPN session.

', ], ], 'VpnState' => [ 'base' => NULL, 'refs' => [ 'VpnConnection$State' => '

The current state of the VPN connection.

', 'VpnGateway$State' => '

The current state of the virtual private gateway.

', 'VpnStaticRoute$State' => '

The current state of the static route.

', ], ], 'VpnStaticRoute' => [ 'base' => '

Describes a static route for a VPN connection.

', 'refs' => [ 'VpnStaticRouteList$member' => NULL, ], ], 'VpnStaticRouteList' => [ 'base' => NULL, 'refs' => [ 'VpnConnection$Routes' => '

The static routes associated with the VPN connection.

', ], ], 'VpnStaticRouteSource' => [ 'base' => NULL, 'refs' => [ 'VpnStaticRoute$Source' => '

Indicates how the routes were provided.

', ], ], 'VpnTunnelLogOptions' => [ 'base' => '

Options for logging VPN tunnel activity.

', 'refs' => [ 'TunnelOption$LogOptions' => '

Options for logging VPN tunnel activity.

', ], ], 'VpnTunnelLogOptionsSpecification' => [ 'base' => '

Options for logging VPN tunnel activity.

', 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$LogOptions' => '

Options for logging VPN tunnel activity.

', 'VpnTunnelOptionsSpecification$LogOptions' => '

Options for logging VPN tunnel activity.

', ], ], 'VpnTunnelOptionsSpecification' => [ 'base' => '

The tunnel options for a single VPN tunnel.

', 'refs' => [ 'VpnTunnelOptionsSpecificationsList$member' => NULL, ], ], 'VpnTunnelOptionsSpecificationsList' => [ 'base' => NULL, 'refs' => [ 'VpnConnectionOptionsSpecification$TunnelOptions' => '

The tunnel options for the VPN connection.

', ], ], 'WeekDay' => [ 'base' => NULL, 'refs' => [ 'InstanceEventWindowTimeRange$StartWeekDay' => '

The day on which the time range begins.

', 'InstanceEventWindowTimeRange$EndWeekDay' => '

The day on which the time range ends.

', 'InstanceEventWindowTimeRangeRequest$StartWeekDay' => '

The day on which the time range begins.

', 'InstanceEventWindowTimeRangeRequest$EndWeekDay' => '

The day on which the time range ends.

', ], ], 'WithdrawByoipCidrRequest' => [ 'base' => NULL, 'refs' => [], ], 'WithdrawByoipCidrResult' => [ 'base' => NULL, 'refs' => [], ], 'ZoneIdStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeAvailabilityZonesRequest$ZoneIds' => '

The IDs of the Availability Zones, Local Zones, and Wavelength Zones.

', ], ], 'ZoneNameStringList' => [ 'base' => NULL, 'refs' => [ 'DescribeAvailabilityZonesRequest$ZoneNames' => '

The names of the Availability Zones, Local Zones, and Wavelength Zones.

', ], ], 'customerGatewayConfiguration' => [ 'base' => NULL, 'refs' => [ 'VpnConnection$CustomerGatewayConfiguration' => '

The configuration information for the VPN connection\'s customer gateway (in the native XML format). This element is always present in the CreateVpnConnection response; however, it\'s present in the DescribeVpnConnections response only if the VPN connection is in the pending or available state.

', ], ], 'preSharedKey' => [ 'base' => NULL, 'refs' => [ 'ModifyVpnTunnelOptionsSpecification$PreSharedKey' => '

The pre-shared key (PSK) to establish initial authentication between the virtual private gateway and the customer gateway.

Constraints: Allowed characters are alphanumeric characters, periods (.), and underscores (_). Must be between 8 and 64 characters in length and cannot start with zero (0).

', 'TunnelOption$PreSharedKey' => '

The pre-shared key (PSK) to establish initial authentication between the virtual private gateway and the customer gateway.

', 'VpnTunnelOptionsSpecification$PreSharedKey' => '

The pre-shared key (PSK) to establish initial authentication between the virtual private gateway and customer gateway.

Constraints: Allowed characters are alphanumeric characters, periods (.), and underscores (_). Must be between 8 and 64 characters in length and cannot start with zero (0).

', ], ], 'scope' => [ 'base' => NULL, 'refs' => [ 'ReservedInstances$Scope' => '

The scope of the Reserved Instance.

', 'ReservedInstancesConfiguration$Scope' => '

Whether the Reserved Instance is applied to instances in a Region or instances in a specific Availability Zone.

', 'ReservedInstancesOffering$Scope' => '

Whether the Reserved Instance is applied to instances in a Region or an Availability Zone.

', ], ], 'snapshotTierStatusSet' => [ 'base' => NULL, 'refs' => [ 'DescribeSnapshotTierStatusResult$SnapshotTierStatuses' => '

Information about the snapshot\'s storage tier.

', ], ], 'totalFpgaMemory' => [ 'base' => NULL, 'refs' => [ 'FpgaInfo$TotalFpgaMemoryInMiB' => '

The total memory of all FPGA accelerators for the instance type.

', ], ], 'totalGpuMemory' => [ 'base' => NULL, 'refs' => [ 'GpuInfo$TotalGpuMemoryInMiB' => '

The total size of the memory for the GPU accelerators for the instance type, in MiB.

', ], ], 'totalInferenceMemory' => [ 'base' => NULL, 'refs' => [ 'InferenceAcceleratorInfo$TotalInferenceMemoryInMiB' => '

The total size of the memory for the inference accelerators for the instance type, in MiB.

', ], ], ],]; diff --git a/src/data/iot/2015-05-28/api-2.json b/src/data/iot/2015-05-28/api-2.json index 1710a59c68..b869ce1f11 100644 --- a/src/data/iot/2015-05-28/api-2.json +++ b/src/data/iot/2015-05-28/api-2.json @@ -12761,7 +12761,7 @@ "indexName":{"shape":"IndexName"}, "queryString":{"shape":"QueryString"}, "nextToken":{"shape":"NextToken"}, - "maxResults":{"shape":"QueryMaxResults"}, + "maxResults":{"shape":"SearchQueryMaxResults"}, "queryVersion":{"shape":"QueryVersion"} } }, @@ -12773,6 +12773,10 @@ "thingGroups":{"shape":"ThingGroupDocumentList"} } }, + "SearchQueryMaxResults":{ + "type":"integer", + "min":1 + }, "SearchableAttributes":{ "type":"list", "member":{"shape":"AttributeName"} diff --git a/src/data/iot/2015-05-28/api-2.json.php b/src/data/iot/2015-05-28/api-2.json.php index 6de050c521..bb61ad3286 100644 --- a/src/data/iot/2015-05-28/api-2.json.php +++ b/src/data/iot/2015-05-28/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2015-05-28', 'endpointPrefix' => 'iot', 'protocol' => 'rest-json', 'serviceFullName' => 'AWS IoT', 'serviceId' => 'IoT', 'signatureVersion' => 'v4', 'signingName' => 'iot', 'uid' => 'iot-2015-05-28', ], 'operations' => [ 'AcceptCertificateTransfer' => [ 'name' => 'AcceptCertificateTransfer', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/accept-certificate-transfer/{certificateId}', ], 'input' => [ 'shape' => 'AcceptCertificateTransferRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'TransferAlreadyCompletedException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'AddThingToBillingGroup' => [ 'name' => 'AddThingToBillingGroup', 'http' => [ 'method' => 'PUT', 'requestUri' => '/billing-groups/addThingToBillingGroup', ], 'input' => [ 'shape' => 'AddThingToBillingGroupRequest', ], 'output' => [ 'shape' => 'AddThingToBillingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'AddThingToThingGroup' => [ 'name' => 'AddThingToThingGroup', 'http' => [ 'method' => 'PUT', 'requestUri' => '/thing-groups/addThingToThingGroup', ], 'input' => [ 'shape' => 'AddThingToThingGroupRequest', ], 'output' => [ 'shape' => 'AddThingToThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'AssociateTargetsWithJob' => [ 'name' => 'AssociateTargetsWithJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/jobs/{jobId}/targets', ], 'input' => [ 'shape' => 'AssociateTargetsWithJobRequest', ], 'output' => [ 'shape' => 'AssociateTargetsWithJobResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'AttachPolicy' => [ 'name' => 'AttachPolicy', 'http' => [ 'method' => 'PUT', 'requestUri' => '/target-policies/{policyName}', ], 'input' => [ 'shape' => 'AttachPolicyRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'AttachPrincipalPolicy' => [ 'name' => 'AttachPrincipalPolicy', 'http' => [ 'method' => 'PUT', 'requestUri' => '/principal-policies/{policyName}', ], 'input' => [ 'shape' => 'AttachPrincipalPolicyRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], 'deprecated' => true, ], 'AttachSecurityProfile' => [ 'name' => 'AttachSecurityProfile', 'http' => [ 'method' => 'PUT', 'requestUri' => '/security-profiles/{securityProfileName}/targets', ], 'input' => [ 'shape' => 'AttachSecurityProfileRequest', ], 'output' => [ 'shape' => 'AttachSecurityProfileResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'AttachThingPrincipal' => [ 'name' => 'AttachThingPrincipal', 'http' => [ 'method' => 'PUT', 'requestUri' => '/things/{thingName}/principals', ], 'input' => [ 'shape' => 'AttachThingPrincipalRequest', ], 'output' => [ 'shape' => 'AttachThingPrincipalResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CancelAuditMitigationActionsTask' => [ 'name' => 'CancelAuditMitigationActionsTask', 'http' => [ 'method' => 'PUT', 'requestUri' => '/audit/mitigationactions/tasks/{taskId}/cancel', ], 'input' => [ 'shape' => 'CancelAuditMitigationActionsTaskRequest', ], 'output' => [ 'shape' => 'CancelAuditMitigationActionsTaskResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CancelAuditTask' => [ 'name' => 'CancelAuditTask', 'http' => [ 'method' => 'PUT', 'requestUri' => '/audit/tasks/{taskId}/cancel', ], 'input' => [ 'shape' => 'CancelAuditTaskRequest', ], 'output' => [ 'shape' => 'CancelAuditTaskResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CancelCertificateTransfer' => [ 'name' => 'CancelCertificateTransfer', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/cancel-certificate-transfer/{certificateId}', ], 'input' => [ 'shape' => 'CancelCertificateTransferRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'TransferAlreadyCompletedException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CancelDetectMitigationActionsTask' => [ 'name' => 'CancelDetectMitigationActionsTask', 'http' => [ 'method' => 'PUT', 'requestUri' => '/detect/mitigationactions/tasks/{taskId}/cancel', ], 'input' => [ 'shape' => 'CancelDetectMitigationActionsTaskRequest', ], 'output' => [ 'shape' => 'CancelDetectMitigationActionsTaskResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CancelJob' => [ 'name' => 'CancelJob', 'http' => [ 'method' => 'PUT', 'requestUri' => '/jobs/{jobId}/cancel', ], 'input' => [ 'shape' => 'CancelJobRequest', ], 'output' => [ 'shape' => 'CancelJobResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CancelJobExecution' => [ 'name' => 'CancelJobExecution', 'http' => [ 'method' => 'PUT', 'requestUri' => '/things/{thingName}/jobs/{jobId}/cancel', ], 'input' => [ 'shape' => 'CancelJobExecutionRequest', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InvalidStateTransitionException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'VersionConflictException', ], ], ], 'ClearDefaultAuthorizer' => [ 'name' => 'ClearDefaultAuthorizer', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/default-authorizer', ], 'input' => [ 'shape' => 'ClearDefaultAuthorizerRequest', ], 'output' => [ 'shape' => 'ClearDefaultAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ConfirmTopicRuleDestination' => [ 'name' => 'ConfirmTopicRuleDestination', 'http' => [ 'method' => 'GET', 'requestUri' => '/confirmdestination/{confirmationToken+}', ], 'input' => [ 'shape' => 'ConfirmTopicRuleDestinationRequest', ], 'output' => [ 'shape' => 'ConfirmTopicRuleDestinationResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'CreateAuditSuppression' => [ 'name' => 'CreateAuditSuppression', 'http' => [ 'method' => 'POST', 'requestUri' => '/audit/suppressions/create', ], 'input' => [ 'shape' => 'CreateAuditSuppressionRequest', ], 'output' => [ 'shape' => 'CreateAuditSuppressionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CreateAuthorizer' => [ 'name' => 'CreateAuthorizer', 'http' => [ 'method' => 'POST', 'requestUri' => '/authorizer/{authorizerName}', ], 'input' => [ 'shape' => 'CreateAuthorizerRequest', ], 'output' => [ 'shape' => 'CreateAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateBillingGroup' => [ 'name' => 'CreateBillingGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/billing-groups/{billingGroupName}', ], 'input' => [ 'shape' => 'CreateBillingGroupRequest', ], 'output' => [ 'shape' => 'CreateBillingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateCertificateFromCsr' => [ 'name' => 'CreateCertificateFromCsr', 'http' => [ 'method' => 'POST', 'requestUri' => '/certificates', ], 'input' => [ 'shape' => 'CreateCertificateFromCsrRequest', ], 'output' => [ 'shape' => 'CreateCertificateFromCsrResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateCertificateProvider' => [ 'name' => 'CreateCertificateProvider', 'http' => [ 'method' => 'POST', 'requestUri' => '/certificate-providers/{certificateProviderName}', ], 'input' => [ 'shape' => 'CreateCertificateProviderRequest', ], 'output' => [ 'shape' => 'CreateCertificateProviderResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateCustomMetric' => [ 'name' => 'CreateCustomMetric', 'http' => [ 'method' => 'POST', 'requestUri' => '/custom-metric/{metricName}', ], 'input' => [ 'shape' => 'CreateCustomMetricRequest', ], 'output' => [ 'shape' => 'CreateCustomMetricResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateDimension' => [ 'name' => 'CreateDimension', 'http' => [ 'method' => 'POST', 'requestUri' => '/dimensions/{name}', ], 'input' => [ 'shape' => 'CreateDimensionRequest', ], 'output' => [ 'shape' => 'CreateDimensionResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'CreateDomainConfiguration' => [ 'name' => 'CreateDomainConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/domainConfigurations/{domainConfigurationName}', ], 'input' => [ 'shape' => 'CreateDomainConfigurationRequest', ], 'output' => [ 'shape' => 'CreateDomainConfigurationResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'CertificateValidationException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'CreateDynamicThingGroup' => [ 'name' => 'CreateDynamicThingGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/dynamic-thing-groups/{thingGroupName}', ], 'input' => [ 'shape' => 'CreateDynamicThingGroupRequest', ], 'output' => [ 'shape' => 'CreateDynamicThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidQueryException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CreateFleetMetric' => [ 'name' => 'CreateFleetMetric', 'http' => [ 'method' => 'PUT', 'requestUri' => '/fleet-metric/{metricName}', ], 'input' => [ 'shape' => 'CreateFleetMetricRequest', ], 'output' => [ 'shape' => 'CreateFleetMetricResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidQueryException', ], [ 'shape' => 'InvalidAggregationException', ], [ 'shape' => 'IndexNotReadyException', ], ], ], 'CreateJob' => [ 'name' => 'CreateJob', 'http' => [ 'method' => 'PUT', 'requestUri' => '/jobs/{jobId}', ], 'input' => [ 'shape' => 'CreateJobRequest', ], 'output' => [ 'shape' => 'CreateJobResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'CreateJobTemplate' => [ 'name' => 'CreateJobTemplate', 'http' => [ 'method' => 'PUT', 'requestUri' => '/job-templates/{jobTemplateId}', ], 'input' => [ 'shape' => 'CreateJobTemplateRequest', ], 'output' => [ 'shape' => 'CreateJobTemplateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateKeysAndCertificate' => [ 'name' => 'CreateKeysAndCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/keys-and-certificate', ], 'input' => [ 'shape' => 'CreateKeysAndCertificateRequest', ], 'output' => [ 'shape' => 'CreateKeysAndCertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateMitigationAction' => [ 'name' => 'CreateMitigationAction', 'http' => [ 'method' => 'POST', 'requestUri' => '/mitigationactions/actions/{actionName}', ], 'input' => [ 'shape' => 'CreateMitigationActionRequest', ], 'output' => [ 'shape' => 'CreateMitigationActionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateOTAUpdate' => [ 'name' => 'CreateOTAUpdate', 'http' => [ 'method' => 'POST', 'requestUri' => '/otaUpdates/{otaUpdateId}', ], 'input' => [ 'shape' => 'CreateOTAUpdateRequest', ], 'output' => [ 'shape' => 'CreateOTAUpdateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'CreatePackage' => [ 'name' => 'CreatePackage', 'http' => [ 'method' => 'PUT', 'requestUri' => '/packages/{packageName}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'CreatePackageRequest', ], 'output' => [ 'shape' => 'CreatePackageResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'ServiceQuotaExceededException', ], ], 'idempotent' => true, ], 'CreatePackageVersion' => [ 'name' => 'CreatePackageVersion', 'http' => [ 'method' => 'PUT', 'requestUri' => '/packages/{packageName}/versions/{versionName}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'CreatePackageVersionRequest', ], 'output' => [ 'shape' => 'CreatePackageVersionResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'ServiceQuotaExceededException', ], ], 'idempotent' => true, ], 'CreatePolicy' => [ 'name' => 'CreatePolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/policies/{policyName}', ], 'input' => [ 'shape' => 'CreatePolicyRequest', ], 'output' => [ 'shape' => 'CreatePolicyResponse', ], 'errors' => [ [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'MalformedPolicyException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreatePolicyVersion' => [ 'name' => 'CreatePolicyVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/policies/{policyName}/version', ], 'input' => [ 'shape' => 'CreatePolicyVersionRequest', ], 'output' => [ 'shape' => 'CreatePolicyVersionResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'MalformedPolicyException', ], [ 'shape' => 'VersionsLimitExceededException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateProvisioningClaim' => [ 'name' => 'CreateProvisioningClaim', 'http' => [ 'method' => 'POST', 'requestUri' => '/provisioning-templates/{templateName}/provisioning-claim', ], 'input' => [ 'shape' => 'CreateProvisioningClaimRequest', ], 'output' => [ 'shape' => 'CreateProvisioningClaimResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateProvisioningTemplate' => [ 'name' => 'CreateProvisioningTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/provisioning-templates', ], 'input' => [ 'shape' => 'CreateProvisioningTemplateRequest', ], 'output' => [ 'shape' => 'CreateProvisioningTemplateResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], ], ], 'CreateProvisioningTemplateVersion' => [ 'name' => 'CreateProvisioningTemplateVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/provisioning-templates/{templateName}/versions', ], 'input' => [ 'shape' => 'CreateProvisioningTemplateVersionRequest', ], 'output' => [ 'shape' => 'CreateProvisioningTemplateVersionResponse', ], 'errors' => [ [ 'shape' => 'VersionsLimitExceededException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'CreateRoleAlias' => [ 'name' => 'CreateRoleAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/role-aliases/{roleAlias}', ], 'input' => [ 'shape' => 'CreateRoleAliasRequest', ], 'output' => [ 'shape' => 'CreateRoleAliasResponse', ], 'errors' => [ [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateScheduledAudit' => [ 'name' => 'CreateScheduledAudit', 'http' => [ 'method' => 'POST', 'requestUri' => '/audit/scheduledaudits/{scheduledAuditName}', ], 'input' => [ 'shape' => 'CreateScheduledAuditRequest', ], 'output' => [ 'shape' => 'CreateScheduledAuditResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CreateSecurityProfile' => [ 'name' => 'CreateSecurityProfile', 'http' => [ 'method' => 'POST', 'requestUri' => '/security-profiles/{securityProfileName}', ], 'input' => [ 'shape' => 'CreateSecurityProfileRequest', ], 'output' => [ 'shape' => 'CreateSecurityProfileResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateStream' => [ 'name' => 'CreateStream', 'http' => [ 'method' => 'POST', 'requestUri' => '/streams/{streamId}', ], 'input' => [ 'shape' => 'CreateStreamRequest', ], 'output' => [ 'shape' => 'CreateStreamResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateThing' => [ 'name' => 'CreateThing', 'http' => [ 'method' => 'POST', 'requestUri' => '/things/{thingName}', ], 'input' => [ 'shape' => 'CreateThingRequest', ], 'output' => [ 'shape' => 'CreateThingResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'CreateThingGroup' => [ 'name' => 'CreateThingGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/thing-groups/{thingGroupName}', ], 'input' => [ 'shape' => 'CreateThingGroupRequest', ], 'output' => [ 'shape' => 'CreateThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateThingType' => [ 'name' => 'CreateThingType', 'http' => [ 'method' => 'POST', 'requestUri' => '/thing-types/{thingTypeName}', ], 'input' => [ 'shape' => 'CreateThingTypeRequest', ], 'output' => [ 'shape' => 'CreateThingTypeResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], ], ], 'CreateTopicRule' => [ 'name' => 'CreateTopicRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/rules/{ruleName}', ], 'input' => [ 'shape' => 'CreateTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'SqlParseException', ], [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'CreateTopicRuleDestination' => [ 'name' => 'CreateTopicRuleDestination', 'http' => [ 'method' => 'POST', 'requestUri' => '/destinations', ], 'input' => [ 'shape' => 'CreateTopicRuleDestinationRequest', ], 'output' => [ 'shape' => 'CreateTopicRuleDestinationResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'DeleteAccountAuditConfiguration' => [ 'name' => 'DeleteAccountAuditConfiguration', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/audit/configuration', ], 'input' => [ 'shape' => 'DeleteAccountAuditConfigurationRequest', ], 'output' => [ 'shape' => 'DeleteAccountAuditConfigurationResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteAuditSuppression' => [ 'name' => 'DeleteAuditSuppression', 'http' => [ 'method' => 'POST', 'requestUri' => '/audit/suppressions/delete', ], 'input' => [ 'shape' => 'DeleteAuditSuppressionRequest', ], 'output' => [ 'shape' => 'DeleteAuditSuppressionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteAuthorizer' => [ 'name' => 'DeleteAuthorizer', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/authorizer/{authorizerName}', ], 'input' => [ 'shape' => 'DeleteAuthorizerRequest', ], 'output' => [ 'shape' => 'DeleteAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'DeleteConflictException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteBillingGroup' => [ 'name' => 'DeleteBillingGroup', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/billing-groups/{billingGroupName}', ], 'input' => [ 'shape' => 'DeleteBillingGroupRequest', ], 'output' => [ 'shape' => 'DeleteBillingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteCACertificate' => [ 'name' => 'DeleteCACertificate', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/cacertificate/{caCertificateId}', ], 'input' => [ 'shape' => 'DeleteCACertificateRequest', ], 'output' => [ 'shape' => 'DeleteCACertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'CertificateStateException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DeleteCertificate' => [ 'name' => 'DeleteCertificate', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/certificates/{certificateId}', ], 'input' => [ 'shape' => 'DeleteCertificateRequest', ], 'errors' => [ [ 'shape' => 'CertificateStateException', ], [ 'shape' => 'DeleteConflictException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DeleteCertificateProvider' => [ 'name' => 'DeleteCertificateProvider', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/certificate-providers/{certificateProviderName}', ], 'input' => [ 'shape' => 'DeleteCertificateProviderRequest', ], 'output' => [ 'shape' => 'DeleteCertificateProviderResponse', ], 'errors' => [ [ 'shape' => 'DeleteConflictException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteCustomMetric' => [ 'name' => 'DeleteCustomMetric', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/custom-metric/{metricName}', ], 'input' => [ 'shape' => 'DeleteCustomMetricRequest', ], 'output' => [ 'shape' => 'DeleteCustomMetricResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteDimension' => [ 'name' => 'DeleteDimension', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/dimensions/{name}', ], 'input' => [ 'shape' => 'DeleteDimensionRequest', ], 'output' => [ 'shape' => 'DeleteDimensionResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'DeleteDomainConfiguration' => [ 'name' => 'DeleteDomainConfiguration', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/domainConfigurations/{domainConfigurationName}', ], 'input' => [ 'shape' => 'DeleteDomainConfigurationRequest', ], 'output' => [ 'shape' => 'DeleteDomainConfigurationResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'DeleteDynamicThingGroup' => [ 'name' => 'DeleteDynamicThingGroup', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/dynamic-thing-groups/{thingGroupName}', ], 'input' => [ 'shape' => 'DeleteDynamicThingGroupRequest', ], 'output' => [ 'shape' => 'DeleteDynamicThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteFleetMetric' => [ 'name' => 'DeleteFleetMetric', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/fleet-metric/{metricName}', ], 'input' => [ 'shape' => 'DeleteFleetMetricRequest', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'VersionConflictException', ], ], ], 'DeleteJob' => [ 'name' => 'DeleteJob', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/jobs/{jobId}', ], 'input' => [ 'shape' => 'DeleteJobRequest', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InvalidStateTransitionException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'DeleteJobExecution' => [ 'name' => 'DeleteJobExecution', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/things/{thingName}/jobs/{jobId}/executionNumber/{executionNumber}', ], 'input' => [ 'shape' => 'DeleteJobExecutionRequest', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InvalidStateTransitionException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'DeleteJobTemplate' => [ 'name' => 'DeleteJobTemplate', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/job-templates/{jobTemplateId}', ], 'input' => [ 'shape' => 'DeleteJobTemplateRequest', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteMitigationAction' => [ 'name' => 'DeleteMitigationAction', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/mitigationactions/actions/{actionName}', ], 'input' => [ 'shape' => 'DeleteMitigationActionRequest', ], 'output' => [ 'shape' => 'DeleteMitigationActionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteOTAUpdate' => [ 'name' => 'DeleteOTAUpdate', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/otaUpdates/{otaUpdateId}', ], 'input' => [ 'shape' => 'DeleteOTAUpdateRequest', ], 'output' => [ 'shape' => 'DeleteOTAUpdateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'VersionConflictException', ], ], ], 'DeletePackage' => [ 'name' => 'DeletePackage', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/packages/{packageName}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'DeletePackageRequest', ], 'output' => [ 'shape' => 'DeletePackageResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], ], 'idempotent' => true, ], 'DeletePackageVersion' => [ 'name' => 'DeletePackageVersion', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/packages/{packageName}/versions/{versionName}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'DeletePackageVersionRequest', ], 'output' => [ 'shape' => 'DeletePackageVersionResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], ], 'idempotent' => true, ], 'DeletePolicy' => [ 'name' => 'DeletePolicy', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/policies/{policyName}', ], 'input' => [ 'shape' => 'DeletePolicyRequest', ], 'errors' => [ [ 'shape' => 'DeleteConflictException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeletePolicyVersion' => [ 'name' => 'DeletePolicyVersion', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/policies/{policyName}/version/{policyVersionId}', ], 'input' => [ 'shape' => 'DeletePolicyVersionRequest', ], 'errors' => [ [ 'shape' => 'DeleteConflictException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteProvisioningTemplate' => [ 'name' => 'DeleteProvisioningTemplate', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/provisioning-templates/{templateName}', ], 'input' => [ 'shape' => 'DeleteProvisioningTemplateRequest', ], 'output' => [ 'shape' => 'DeleteProvisioningTemplateResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'DeleteConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'DeleteProvisioningTemplateVersion' => [ 'name' => 'DeleteProvisioningTemplateVersion', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/provisioning-templates/{templateName}/versions/{versionId}', ], 'input' => [ 'shape' => 'DeleteProvisioningTemplateVersionRequest', ], 'output' => [ 'shape' => 'DeleteProvisioningTemplateVersionResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], [ 'shape' => 'DeleteConflictException', ], ], ], 'DeleteRegistrationCode' => [ 'name' => 'DeleteRegistrationCode', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/registrationcode', ], 'input' => [ 'shape' => 'DeleteRegistrationCodeRequest', ], 'output' => [ 'shape' => 'DeleteRegistrationCodeResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteRoleAlias' => [ 'name' => 'DeleteRoleAlias', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/role-aliases/{roleAlias}', ], 'input' => [ 'shape' => 'DeleteRoleAliasRequest', ], 'output' => [ 'shape' => 'DeleteRoleAliasResponse', ], 'errors' => [ [ 'shape' => 'DeleteConflictException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DeleteScheduledAudit' => [ 'name' => 'DeleteScheduledAudit', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/audit/scheduledaudits/{scheduledAuditName}', ], 'input' => [ 'shape' => 'DeleteScheduledAuditRequest', ], 'output' => [ 'shape' => 'DeleteScheduledAuditResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteSecurityProfile' => [ 'name' => 'DeleteSecurityProfile', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/security-profiles/{securityProfileName}', ], 'input' => [ 'shape' => 'DeleteSecurityProfileRequest', ], 'output' => [ 'shape' => 'DeleteSecurityProfileResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'VersionConflictException', ], ], ], 'DeleteStream' => [ 'name' => 'DeleteStream', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/streams/{streamId}', ], 'input' => [ 'shape' => 'DeleteStreamRequest', ], 'output' => [ 'shape' => 'DeleteStreamResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'DeleteConflictException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteThing' => [ 'name' => 'DeleteThing', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/things/{thingName}', ], 'input' => [ 'shape' => 'DeleteThingRequest', ], 'output' => [ 'shape' => 'DeleteThingResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteThingGroup' => [ 'name' => 'DeleteThingGroup', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/thing-groups/{thingGroupName}', ], 'input' => [ 'shape' => 'DeleteThingGroupRequest', ], 'output' => [ 'shape' => 'DeleteThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteThingType' => [ 'name' => 'DeleteThingType', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/thing-types/{thingTypeName}', ], 'input' => [ 'shape' => 'DeleteThingTypeRequest', ], 'output' => [ 'shape' => 'DeleteThingTypeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteTopicRule' => [ 'name' => 'DeleteTopicRule', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/rules/{ruleName}', ], 'input' => [ 'shape' => 'DeleteTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'DeleteTopicRuleDestination' => [ 'name' => 'DeleteTopicRuleDestination', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/destinations/{arn+}', ], 'input' => [ 'shape' => 'DeleteTopicRuleDestinationRequest', ], 'output' => [ 'shape' => 'DeleteTopicRuleDestinationResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'DeleteV2LoggingLevel' => [ 'name' => 'DeleteV2LoggingLevel', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/v2LoggingLevel', ], 'input' => [ 'shape' => 'DeleteV2LoggingLevelRequest', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'DeprecateThingType' => [ 'name' => 'DeprecateThingType', 'http' => [ 'method' => 'POST', 'requestUri' => '/thing-types/{thingTypeName}/deprecate', ], 'input' => [ 'shape' => 'DeprecateThingTypeRequest', ], 'output' => [ 'shape' => 'DeprecateThingTypeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeAccountAuditConfiguration' => [ 'name' => 'DescribeAccountAuditConfiguration', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/configuration', ], 'input' => [ 'shape' => 'DescribeAccountAuditConfigurationRequest', ], 'output' => [ 'shape' => 'DescribeAccountAuditConfigurationResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeAuditFinding' => [ 'name' => 'DescribeAuditFinding', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/findings/{findingId}', ], 'input' => [ 'shape' => 'DescribeAuditFindingRequest', ], 'output' => [ 'shape' => 'DescribeAuditFindingResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeAuditMitigationActionsTask' => [ 'name' => 'DescribeAuditMitigationActionsTask', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/mitigationactions/tasks/{taskId}', ], 'input' => [ 'shape' => 'DescribeAuditMitigationActionsTaskRequest', ], 'output' => [ 'shape' => 'DescribeAuditMitigationActionsTaskResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeAuditSuppression' => [ 'name' => 'DescribeAuditSuppression', 'http' => [ 'method' => 'POST', 'requestUri' => '/audit/suppressions/describe', ], 'input' => [ 'shape' => 'DescribeAuditSuppressionRequest', ], 'output' => [ 'shape' => 'DescribeAuditSuppressionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeAuditTask' => [ 'name' => 'DescribeAuditTask', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/tasks/{taskId}', ], 'input' => [ 'shape' => 'DescribeAuditTaskRequest', ], 'output' => [ 'shape' => 'DescribeAuditTaskResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeAuthorizer' => [ 'name' => 'DescribeAuthorizer', 'http' => [ 'method' => 'GET', 'requestUri' => '/authorizer/{authorizerName}', ], 'input' => [ 'shape' => 'DescribeAuthorizerRequest', ], 'output' => [ 'shape' => 'DescribeAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeBillingGroup' => [ 'name' => 'DescribeBillingGroup', 'http' => [ 'method' => 'GET', 'requestUri' => '/billing-groups/{billingGroupName}', ], 'input' => [ 'shape' => 'DescribeBillingGroupRequest', ], 'output' => [ 'shape' => 'DescribeBillingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeCACertificate' => [ 'name' => 'DescribeCACertificate', 'http' => [ 'method' => 'GET', 'requestUri' => '/cacertificate/{caCertificateId}', ], 'input' => [ 'shape' => 'DescribeCACertificateRequest', ], 'output' => [ 'shape' => 'DescribeCACertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeCertificate' => [ 'name' => 'DescribeCertificate', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificates/{certificateId}', ], 'input' => [ 'shape' => 'DescribeCertificateRequest', ], 'output' => [ 'shape' => 'DescribeCertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeCertificateProvider' => [ 'name' => 'DescribeCertificateProvider', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificate-providers/{certificateProviderName}', ], 'input' => [ 'shape' => 'DescribeCertificateProviderRequest', ], 'output' => [ 'shape' => 'DescribeCertificateProviderResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeCustomMetric' => [ 'name' => 'DescribeCustomMetric', 'http' => [ 'method' => 'GET', 'requestUri' => '/custom-metric/{metricName}', ], 'input' => [ 'shape' => 'DescribeCustomMetricRequest', ], 'output' => [ 'shape' => 'DescribeCustomMetricResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeDefaultAuthorizer' => [ 'name' => 'DescribeDefaultAuthorizer', 'http' => [ 'method' => 'GET', 'requestUri' => '/default-authorizer', ], 'input' => [ 'shape' => 'DescribeDefaultAuthorizerRequest', ], 'output' => [ 'shape' => 'DescribeDefaultAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeDetectMitigationActionsTask' => [ 'name' => 'DescribeDetectMitigationActionsTask', 'http' => [ 'method' => 'GET', 'requestUri' => '/detect/mitigationactions/tasks/{taskId}', ], 'input' => [ 'shape' => 'DescribeDetectMitigationActionsTaskRequest', ], 'output' => [ 'shape' => 'DescribeDetectMitigationActionsTaskResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeDimension' => [ 'name' => 'DescribeDimension', 'http' => [ 'method' => 'GET', 'requestUri' => '/dimensions/{name}', ], 'input' => [ 'shape' => 'DescribeDimensionRequest', ], 'output' => [ 'shape' => 'DescribeDimensionResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'DescribeDomainConfiguration' => [ 'name' => 'DescribeDomainConfiguration', 'http' => [ 'method' => 'GET', 'requestUri' => '/domainConfigurations/{domainConfigurationName}', ], 'input' => [ 'shape' => 'DescribeDomainConfigurationRequest', ], 'output' => [ 'shape' => 'DescribeDomainConfigurationResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeEndpoint' => [ 'name' => 'DescribeEndpoint', 'http' => [ 'method' => 'GET', 'requestUri' => '/endpoint', ], 'input' => [ 'shape' => 'DescribeEndpointRequest', ], 'output' => [ 'shape' => 'DescribeEndpointResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'DescribeEventConfigurations' => [ 'name' => 'DescribeEventConfigurations', 'http' => [ 'method' => 'GET', 'requestUri' => '/event-configurations', ], 'input' => [ 'shape' => 'DescribeEventConfigurationsRequest', ], 'output' => [ 'shape' => 'DescribeEventConfigurationsResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'DescribeFleetMetric' => [ 'name' => 'DescribeFleetMetric', 'http' => [ 'method' => 'GET', 'requestUri' => '/fleet-metric/{metricName}', ], 'input' => [ 'shape' => 'DescribeFleetMetricRequest', ], 'output' => [ 'shape' => 'DescribeFleetMetricResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeIndex' => [ 'name' => 'DescribeIndex', 'http' => [ 'method' => 'GET', 'requestUri' => '/indices/{indexName}', ], 'input' => [ 'shape' => 'DescribeIndexRequest', ], 'output' => [ 'shape' => 'DescribeIndexResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeJob' => [ 'name' => 'DescribeJob', 'http' => [ 'method' => 'GET', 'requestUri' => '/jobs/{jobId}', ], 'input' => [ 'shape' => 'DescribeJobRequest', ], 'output' => [ 'shape' => 'DescribeJobResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'DescribeJobExecution' => [ 'name' => 'DescribeJobExecution', 'http' => [ 'method' => 'GET', 'requestUri' => '/things/{thingName}/jobs/{jobId}', ], 'input' => [ 'shape' => 'DescribeJobExecutionRequest', ], 'output' => [ 'shape' => 'DescribeJobExecutionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'DescribeJobTemplate' => [ 'name' => 'DescribeJobTemplate', 'http' => [ 'method' => 'GET', 'requestUri' => '/job-templates/{jobTemplateId}', ], 'input' => [ 'shape' => 'DescribeJobTemplateRequest', ], 'output' => [ 'shape' => 'DescribeJobTemplateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeManagedJobTemplate' => [ 'name' => 'DescribeManagedJobTemplate', 'http' => [ 'method' => 'GET', 'requestUri' => '/managed-job-templates/{templateName}', ], 'input' => [ 'shape' => 'DescribeManagedJobTemplateRequest', ], 'output' => [ 'shape' => 'DescribeManagedJobTemplateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], ], ], 'DescribeMitigationAction' => [ 'name' => 'DescribeMitigationAction', 'http' => [ 'method' => 'GET', 'requestUri' => '/mitigationactions/actions/{actionName}', ], 'input' => [ 'shape' => 'DescribeMitigationActionRequest', ], 'output' => [ 'shape' => 'DescribeMitigationActionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeProvisioningTemplate' => [ 'name' => 'DescribeProvisioningTemplate', 'http' => [ 'method' => 'GET', 'requestUri' => '/provisioning-templates/{templateName}', ], 'input' => [ 'shape' => 'DescribeProvisioningTemplateRequest', ], 'output' => [ 'shape' => 'DescribeProvisioningTemplateResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'DescribeProvisioningTemplateVersion' => [ 'name' => 'DescribeProvisioningTemplateVersion', 'http' => [ 'method' => 'GET', 'requestUri' => '/provisioning-templates/{templateName}/versions/{versionId}', ], 'input' => [ 'shape' => 'DescribeProvisioningTemplateVersionRequest', ], 'output' => [ 'shape' => 'DescribeProvisioningTemplateVersionResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'DescribeRoleAlias' => [ 'name' => 'DescribeRoleAlias', 'http' => [ 'method' => 'GET', 'requestUri' => '/role-aliases/{roleAlias}', ], 'input' => [ 'shape' => 'DescribeRoleAliasRequest', ], 'output' => [ 'shape' => 'DescribeRoleAliasResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeScheduledAudit' => [ 'name' => 'DescribeScheduledAudit', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/scheduledaudits/{scheduledAuditName}', ], 'input' => [ 'shape' => 'DescribeScheduledAuditRequest', ], 'output' => [ 'shape' => 'DescribeScheduledAuditResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeSecurityProfile' => [ 'name' => 'DescribeSecurityProfile', 'http' => [ 'method' => 'GET', 'requestUri' => '/security-profiles/{securityProfileName}', ], 'input' => [ 'shape' => 'DescribeSecurityProfileRequest', ], 'output' => [ 'shape' => 'DescribeSecurityProfileResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeStream' => [ 'name' => 'DescribeStream', 'http' => [ 'method' => 'GET', 'requestUri' => '/streams/{streamId}', ], 'input' => [ 'shape' => 'DescribeStreamRequest', ], 'output' => [ 'shape' => 'DescribeStreamResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeThing' => [ 'name' => 'DescribeThing', 'http' => [ 'method' => 'GET', 'requestUri' => '/things/{thingName}', ], 'input' => [ 'shape' => 'DescribeThingRequest', ], 'output' => [ 'shape' => 'DescribeThingResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeThingGroup' => [ 'name' => 'DescribeThingGroup', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-groups/{thingGroupName}', ], 'input' => [ 'shape' => 'DescribeThingGroupRequest', ], 'output' => [ 'shape' => 'DescribeThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeThingRegistrationTask' => [ 'name' => 'DescribeThingRegistrationTask', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-registration-tasks/{taskId}', ], 'input' => [ 'shape' => 'DescribeThingRegistrationTaskRequest', ], 'output' => [ 'shape' => 'DescribeThingRegistrationTaskResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeThingType' => [ 'name' => 'DescribeThingType', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-types/{thingTypeName}', ], 'input' => [ 'shape' => 'DescribeThingTypeRequest', ], 'output' => [ 'shape' => 'DescribeThingTypeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DetachPolicy' => [ 'name' => 'DetachPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/target-policies/{policyName}', ], 'input' => [ 'shape' => 'DetachPolicyRequest', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'DetachPrincipalPolicy' => [ 'name' => 'DetachPrincipalPolicy', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/principal-policies/{policyName}', ], 'input' => [ 'shape' => 'DetachPrincipalPolicyRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], 'deprecated' => true, ], 'DetachSecurityProfile' => [ 'name' => 'DetachSecurityProfile', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/security-profiles/{securityProfileName}/targets', ], 'input' => [ 'shape' => 'DetachSecurityProfileRequest', ], 'output' => [ 'shape' => 'DetachSecurityProfileResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DetachThingPrincipal' => [ 'name' => 'DetachThingPrincipal', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/things/{thingName}/principals', ], 'input' => [ 'shape' => 'DetachThingPrincipalRequest', ], 'output' => [ 'shape' => 'DetachThingPrincipalResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DisableTopicRule' => [ 'name' => 'DisableTopicRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/rules/{ruleName}/disable', ], 'input' => [ 'shape' => 'DisableTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'EnableTopicRule' => [ 'name' => 'EnableTopicRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/rules/{ruleName}/enable', ], 'input' => [ 'shape' => 'EnableTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'GetBehaviorModelTrainingSummaries' => [ 'name' => 'GetBehaviorModelTrainingSummaries', 'http' => [ 'method' => 'GET', 'requestUri' => '/behavior-model-training/summaries', ], 'input' => [ 'shape' => 'GetBehaviorModelTrainingSummariesRequest', ], 'output' => [ 'shape' => 'GetBehaviorModelTrainingSummariesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'GetBucketsAggregation' => [ 'name' => 'GetBucketsAggregation', 'http' => [ 'method' => 'POST', 'requestUri' => '/indices/buckets', ], 'input' => [ 'shape' => 'GetBucketsAggregationRequest', ], 'output' => [ 'shape' => 'GetBucketsAggregationResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidQueryException', ], [ 'shape' => 'InvalidAggregationException', ], [ 'shape' => 'IndexNotReadyException', ], ], ], 'GetCardinality' => [ 'name' => 'GetCardinality', 'http' => [ 'method' => 'POST', 'requestUri' => '/indices/cardinality', ], 'input' => [ 'shape' => 'GetCardinalityRequest', ], 'output' => [ 'shape' => 'GetCardinalityResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidQueryException', ], [ 'shape' => 'InvalidAggregationException', ], [ 'shape' => 'IndexNotReadyException', ], ], ], 'GetEffectivePolicies' => [ 'name' => 'GetEffectivePolicies', 'http' => [ 'method' => 'POST', 'requestUri' => '/effective-policies', ], 'input' => [ 'shape' => 'GetEffectivePoliciesRequest', ], 'output' => [ 'shape' => 'GetEffectivePoliciesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'GetIndexingConfiguration' => [ 'name' => 'GetIndexingConfiguration', 'http' => [ 'method' => 'GET', 'requestUri' => '/indexing/config', ], 'input' => [ 'shape' => 'GetIndexingConfigurationRequest', ], 'output' => [ 'shape' => 'GetIndexingConfigurationResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'GetJobDocument' => [ 'name' => 'GetJobDocument', 'http' => [ 'method' => 'GET', 'requestUri' => '/jobs/{jobId}/job-document', ], 'input' => [ 'shape' => 'GetJobDocumentRequest', ], 'output' => [ 'shape' => 'GetJobDocumentResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'GetLoggingOptions' => [ 'name' => 'GetLoggingOptions', 'http' => [ 'method' => 'GET', 'requestUri' => '/loggingOptions', ], 'input' => [ 'shape' => 'GetLoggingOptionsRequest', ], 'output' => [ 'shape' => 'GetLoggingOptionsResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'GetOTAUpdate' => [ 'name' => 'GetOTAUpdate', 'http' => [ 'method' => 'GET', 'requestUri' => '/otaUpdates/{otaUpdateId}', ], 'input' => [ 'shape' => 'GetOTAUpdateRequest', ], 'output' => [ 'shape' => 'GetOTAUpdateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'GetPackage' => [ 'name' => 'GetPackage', 'http' => [ 'method' => 'GET', 'requestUri' => '/packages/{packageName}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'GetPackageRequest', ], 'output' => [ 'shape' => 'GetPackageResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'GetPackageConfiguration' => [ 'name' => 'GetPackageConfiguration', 'http' => [ 'method' => 'GET', 'requestUri' => '/package-configuration', 'responseCode' => 200, ], 'input' => [ 'shape' => 'GetPackageConfigurationRequest', ], 'output' => [ 'shape' => 'GetPackageConfigurationResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], ], ], 'GetPackageVersion' => [ 'name' => 'GetPackageVersion', 'http' => [ 'method' => 'GET', 'requestUri' => '/packages/{packageName}/versions/{versionName}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'GetPackageVersionRequest', ], 'output' => [ 'shape' => 'GetPackageVersionResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'GetPercentiles' => [ 'name' => 'GetPercentiles', 'http' => [ 'method' => 'POST', 'requestUri' => '/indices/percentiles', ], 'input' => [ 'shape' => 'GetPercentilesRequest', ], 'output' => [ 'shape' => 'GetPercentilesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidQueryException', ], [ 'shape' => 'InvalidAggregationException', ], [ 'shape' => 'IndexNotReadyException', ], ], ], 'GetPolicy' => [ 'name' => 'GetPolicy', 'http' => [ 'method' => 'GET', 'requestUri' => '/policies/{policyName}', ], 'input' => [ 'shape' => 'GetPolicyRequest', ], 'output' => [ 'shape' => 'GetPolicyResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'GetPolicyVersion' => [ 'name' => 'GetPolicyVersion', 'http' => [ 'method' => 'GET', 'requestUri' => '/policies/{policyName}/version/{policyVersionId}', ], 'input' => [ 'shape' => 'GetPolicyVersionRequest', ], 'output' => [ 'shape' => 'GetPolicyVersionResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'GetRegistrationCode' => [ 'name' => 'GetRegistrationCode', 'http' => [ 'method' => 'GET', 'requestUri' => '/registrationcode', ], 'input' => [ 'shape' => 'GetRegistrationCodeRequest', ], 'output' => [ 'shape' => 'GetRegistrationCodeResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'GetStatistics' => [ 'name' => 'GetStatistics', 'http' => [ 'method' => 'POST', 'requestUri' => '/indices/statistics', ], 'input' => [ 'shape' => 'GetStatisticsRequest', ], 'output' => [ 'shape' => 'GetStatisticsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidQueryException', ], [ 'shape' => 'InvalidAggregationException', ], [ 'shape' => 'IndexNotReadyException', ], ], ], 'GetTopicRule' => [ 'name' => 'GetTopicRule', 'http' => [ 'method' => 'GET', 'requestUri' => '/rules/{ruleName}', ], 'input' => [ 'shape' => 'GetTopicRuleRequest', ], 'output' => [ 'shape' => 'GetTopicRuleResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'GetTopicRuleDestination' => [ 'name' => 'GetTopicRuleDestination', 'http' => [ 'method' => 'GET', 'requestUri' => '/destinations/{arn+}', ], 'input' => [ 'shape' => 'GetTopicRuleDestinationRequest', ], 'output' => [ 'shape' => 'GetTopicRuleDestinationResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'GetV2LoggingOptions' => [ 'name' => 'GetV2LoggingOptions', 'http' => [ 'method' => 'GET', 'requestUri' => '/v2LoggingOptions', ], 'input' => [ 'shape' => 'GetV2LoggingOptionsRequest', ], 'output' => [ 'shape' => 'GetV2LoggingOptionsResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'NotConfiguredException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'ListActiveViolations' => [ 'name' => 'ListActiveViolations', 'http' => [ 'method' => 'GET', 'requestUri' => '/active-violations', ], 'input' => [ 'shape' => 'ListActiveViolationsRequest', ], 'output' => [ 'shape' => 'ListActiveViolationsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListAttachedPolicies' => [ 'name' => 'ListAttachedPolicies', 'http' => [ 'method' => 'POST', 'requestUri' => '/attached-policies/{target}', ], 'input' => [ 'shape' => 'ListAttachedPoliciesRequest', ], 'output' => [ 'shape' => 'ListAttachedPoliciesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'ListAuditFindings' => [ 'name' => 'ListAuditFindings', 'http' => [ 'method' => 'POST', 'requestUri' => '/audit/findings', ], 'input' => [ 'shape' => 'ListAuditFindingsRequest', ], 'output' => [ 'shape' => 'ListAuditFindingsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListAuditMitigationActionsExecutions' => [ 'name' => 'ListAuditMitigationActionsExecutions', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/mitigationactions/executions', ], 'input' => [ 'shape' => 'ListAuditMitigationActionsExecutionsRequest', ], 'output' => [ 'shape' => 'ListAuditMitigationActionsExecutionsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListAuditMitigationActionsTasks' => [ 'name' => 'ListAuditMitigationActionsTasks', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/mitigationactions/tasks', ], 'input' => [ 'shape' => 'ListAuditMitigationActionsTasksRequest', ], 'output' => [ 'shape' => 'ListAuditMitigationActionsTasksResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListAuditSuppressions' => [ 'name' => 'ListAuditSuppressions', 'http' => [ 'method' => 'POST', 'requestUri' => '/audit/suppressions/list', ], 'input' => [ 'shape' => 'ListAuditSuppressionsRequest', ], 'output' => [ 'shape' => 'ListAuditSuppressionsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListAuditTasks' => [ 'name' => 'ListAuditTasks', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/tasks', ], 'input' => [ 'shape' => 'ListAuditTasksRequest', ], 'output' => [ 'shape' => 'ListAuditTasksResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListAuthorizers' => [ 'name' => 'ListAuthorizers', 'http' => [ 'method' => 'GET', 'requestUri' => '/authorizers/', ], 'input' => [ 'shape' => 'ListAuthorizersRequest', ], 'output' => [ 'shape' => 'ListAuthorizersResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListBillingGroups' => [ 'name' => 'ListBillingGroups', 'http' => [ 'method' => 'GET', 'requestUri' => '/billing-groups', ], 'input' => [ 'shape' => 'ListBillingGroupsRequest', ], 'output' => [ 'shape' => 'ListBillingGroupsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListCACertificates' => [ 'name' => 'ListCACertificates', 'http' => [ 'method' => 'GET', 'requestUri' => '/cacertificates', ], 'input' => [ 'shape' => 'ListCACertificatesRequest', ], 'output' => [ 'shape' => 'ListCACertificatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListCertificateProviders' => [ 'name' => 'ListCertificateProviders', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificate-providers/', ], 'input' => [ 'shape' => 'ListCertificateProvidersRequest', ], 'output' => [ 'shape' => 'ListCertificateProvidersResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListCertificates' => [ 'name' => 'ListCertificates', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificates', ], 'input' => [ 'shape' => 'ListCertificatesRequest', ], 'output' => [ 'shape' => 'ListCertificatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListCertificatesByCA' => [ 'name' => 'ListCertificatesByCA', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificates-by-ca/{caCertificateId}', ], 'input' => [ 'shape' => 'ListCertificatesByCARequest', ], 'output' => [ 'shape' => 'ListCertificatesByCAResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListCustomMetrics' => [ 'name' => 'ListCustomMetrics', 'http' => [ 'method' => 'GET', 'requestUri' => '/custom-metrics', ], 'input' => [ 'shape' => 'ListCustomMetricsRequest', ], 'output' => [ 'shape' => 'ListCustomMetricsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListDetectMitigationActionsExecutions' => [ 'name' => 'ListDetectMitigationActionsExecutions', 'http' => [ 'method' => 'GET', 'requestUri' => '/detect/mitigationactions/executions', ], 'input' => [ 'shape' => 'ListDetectMitigationActionsExecutionsRequest', ], 'output' => [ 'shape' => 'ListDetectMitigationActionsExecutionsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListDetectMitigationActionsTasks' => [ 'name' => 'ListDetectMitigationActionsTasks', 'http' => [ 'method' => 'GET', 'requestUri' => '/detect/mitigationactions/tasks', ], 'input' => [ 'shape' => 'ListDetectMitigationActionsTasksRequest', ], 'output' => [ 'shape' => 'ListDetectMitigationActionsTasksResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListDimensions' => [ 'name' => 'ListDimensions', 'http' => [ 'method' => 'GET', 'requestUri' => '/dimensions', ], 'input' => [ 'shape' => 'ListDimensionsRequest', ], 'output' => [ 'shape' => 'ListDimensionsResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListDomainConfigurations' => [ 'name' => 'ListDomainConfigurations', 'http' => [ 'method' => 'GET', 'requestUri' => '/domainConfigurations', ], 'input' => [ 'shape' => 'ListDomainConfigurationsRequest', ], 'output' => [ 'shape' => 'ListDomainConfigurationsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListFleetMetrics' => [ 'name' => 'ListFleetMetrics', 'http' => [ 'method' => 'GET', 'requestUri' => '/fleet-metrics', ], 'input' => [ 'shape' => 'ListFleetMetricsRequest', ], 'output' => [ 'shape' => 'ListFleetMetricsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListIndices' => [ 'name' => 'ListIndices', 'http' => [ 'method' => 'GET', 'requestUri' => '/indices', ], 'input' => [ 'shape' => 'ListIndicesRequest', ], 'output' => [ 'shape' => 'ListIndicesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListJobExecutionsForJob' => [ 'name' => 'ListJobExecutionsForJob', 'http' => [ 'method' => 'GET', 'requestUri' => '/jobs/{jobId}/things', ], 'input' => [ 'shape' => 'ListJobExecutionsForJobRequest', ], 'output' => [ 'shape' => 'ListJobExecutionsForJobResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'ListJobExecutionsForThing' => [ 'name' => 'ListJobExecutionsForThing', 'http' => [ 'method' => 'GET', 'requestUri' => '/things/{thingName}/jobs', ], 'input' => [ 'shape' => 'ListJobExecutionsForThingRequest', ], 'output' => [ 'shape' => 'ListJobExecutionsForThingResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'ListJobTemplates' => [ 'name' => 'ListJobTemplates', 'http' => [ 'method' => 'GET', 'requestUri' => '/job-templates', ], 'input' => [ 'shape' => 'ListJobTemplatesRequest', ], 'output' => [ 'shape' => 'ListJobTemplatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListJobs' => [ 'name' => 'ListJobs', 'http' => [ 'method' => 'GET', 'requestUri' => '/jobs', ], 'input' => [ 'shape' => 'ListJobsRequest', ], 'output' => [ 'shape' => 'ListJobsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'ListManagedJobTemplates' => [ 'name' => 'ListManagedJobTemplates', 'http' => [ 'method' => 'GET', 'requestUri' => '/managed-job-templates', ], 'input' => [ 'shape' => 'ListManagedJobTemplatesRequest', ], 'output' => [ 'shape' => 'ListManagedJobTemplatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], ], ], 'ListMetricValues' => [ 'name' => 'ListMetricValues', 'http' => [ 'method' => 'GET', 'requestUri' => '/metric-values', ], 'input' => [ 'shape' => 'ListMetricValuesRequest', ], 'output' => [ 'shape' => 'ListMetricValuesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'ListMitigationActions' => [ 'name' => 'ListMitigationActions', 'http' => [ 'method' => 'GET', 'requestUri' => '/mitigationactions/actions', ], 'input' => [ 'shape' => 'ListMitigationActionsRequest', ], 'output' => [ 'shape' => 'ListMitigationActionsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListOTAUpdates' => [ 'name' => 'ListOTAUpdates', 'http' => [ 'method' => 'GET', 'requestUri' => '/otaUpdates', ], 'input' => [ 'shape' => 'ListOTAUpdatesRequest', ], 'output' => [ 'shape' => 'ListOTAUpdatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'ListOutgoingCertificates' => [ 'name' => 'ListOutgoingCertificates', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificates-out-going', ], 'input' => [ 'shape' => 'ListOutgoingCertificatesRequest', ], 'output' => [ 'shape' => 'ListOutgoingCertificatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListPackageVersions' => [ 'name' => 'ListPackageVersions', 'http' => [ 'method' => 'GET', 'requestUri' => '/packages/{packageName}/versions', 'responseCode' => 200, ], 'input' => [ 'shape' => 'ListPackageVersionsRequest', ], 'output' => [ 'shape' => 'ListPackageVersionsResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], ], ], 'ListPackages' => [ 'name' => 'ListPackages', 'http' => [ 'method' => 'GET', 'requestUri' => '/packages', 'responseCode' => 200, ], 'input' => [ 'shape' => 'ListPackagesRequest', ], 'output' => [ 'shape' => 'ListPackagesResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], ], ], 'ListPolicies' => [ 'name' => 'ListPolicies', 'http' => [ 'method' => 'GET', 'requestUri' => '/policies', ], 'input' => [ 'shape' => 'ListPoliciesRequest', ], 'output' => [ 'shape' => 'ListPoliciesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListPolicyPrincipals' => [ 'name' => 'ListPolicyPrincipals', 'http' => [ 'method' => 'GET', 'requestUri' => '/policy-principals', ], 'input' => [ 'shape' => 'ListPolicyPrincipalsRequest', ], 'output' => [ 'shape' => 'ListPolicyPrincipalsResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], 'deprecated' => true, ], 'ListPolicyVersions' => [ 'name' => 'ListPolicyVersions', 'http' => [ 'method' => 'GET', 'requestUri' => '/policies/{policyName}/version', ], 'input' => [ 'shape' => 'ListPolicyVersionsRequest', ], 'output' => [ 'shape' => 'ListPolicyVersionsResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListPrincipalPolicies' => [ 'name' => 'ListPrincipalPolicies', 'http' => [ 'method' => 'GET', 'requestUri' => '/principal-policies', ], 'input' => [ 'shape' => 'ListPrincipalPoliciesRequest', ], 'output' => [ 'shape' => 'ListPrincipalPoliciesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], 'deprecated' => true, ], 'ListPrincipalThings' => [ 'name' => 'ListPrincipalThings', 'http' => [ 'method' => 'GET', 'requestUri' => '/principals/things', ], 'input' => [ 'shape' => 'ListPrincipalThingsRequest', ], 'output' => [ 'shape' => 'ListPrincipalThingsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'ListProvisioningTemplateVersions' => [ 'name' => 'ListProvisioningTemplateVersions', 'http' => [ 'method' => 'GET', 'requestUri' => '/provisioning-templates/{templateName}/versions', ], 'input' => [ 'shape' => 'ListProvisioningTemplateVersionsRequest', ], 'output' => [ 'shape' => 'ListProvisioningTemplateVersionsResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'ListProvisioningTemplates' => [ 'name' => 'ListProvisioningTemplates', 'http' => [ 'method' => 'GET', 'requestUri' => '/provisioning-templates', ], 'input' => [ 'shape' => 'ListProvisioningTemplatesRequest', ], 'output' => [ 'shape' => 'ListProvisioningTemplatesResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'ListRelatedResourcesForAuditFinding' => [ 'name' => 'ListRelatedResourcesForAuditFinding', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/relatedResources', ], 'input' => [ 'shape' => 'ListRelatedResourcesForAuditFindingRequest', ], 'output' => [ 'shape' => 'ListRelatedResourcesForAuditFindingResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListRoleAliases' => [ 'name' => 'ListRoleAliases', 'http' => [ 'method' => 'GET', 'requestUri' => '/role-aliases', ], 'input' => [ 'shape' => 'ListRoleAliasesRequest', ], 'output' => [ 'shape' => 'ListRoleAliasesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListScheduledAudits' => [ 'name' => 'ListScheduledAudits', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/scheduledaudits', ], 'input' => [ 'shape' => 'ListScheduledAuditsRequest', ], 'output' => [ 'shape' => 'ListScheduledAuditsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListSecurityProfiles' => [ 'name' => 'ListSecurityProfiles', 'http' => [ 'method' => 'GET', 'requestUri' => '/security-profiles', ], 'input' => [ 'shape' => 'ListSecurityProfilesRequest', ], 'output' => [ 'shape' => 'ListSecurityProfilesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'ListSecurityProfilesForTarget' => [ 'name' => 'ListSecurityProfilesForTarget', 'http' => [ 'method' => 'GET', 'requestUri' => '/security-profiles-for-target', ], 'input' => [ 'shape' => 'ListSecurityProfilesForTargetRequest', ], 'output' => [ 'shape' => 'ListSecurityProfilesForTargetResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'ListStreams' => [ 'name' => 'ListStreams', 'http' => [ 'method' => 'GET', 'requestUri' => '/streams', ], 'input' => [ 'shape' => 'ListStreamsRequest', ], 'output' => [ 'shape' => 'ListStreamsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource', 'http' => [ 'method' => 'GET', 'requestUri' => '/tags', ], 'input' => [ 'shape' => 'ListTagsForResourceRequest', ], 'output' => [ 'shape' => 'ListTagsForResourceResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListTargetsForPolicy' => [ 'name' => 'ListTargetsForPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/policy-targets/{policyName}', ], 'input' => [ 'shape' => 'ListTargetsForPolicyRequest', ], 'output' => [ 'shape' => 'ListTargetsForPolicyResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'ListTargetsForSecurityProfile' => [ 'name' => 'ListTargetsForSecurityProfile', 'http' => [ 'method' => 'GET', 'requestUri' => '/security-profiles/{securityProfileName}/targets', ], 'input' => [ 'shape' => 'ListTargetsForSecurityProfileRequest', ], 'output' => [ 'shape' => 'ListTargetsForSecurityProfileResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListThingGroups' => [ 'name' => 'ListThingGroups', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-groups', ], 'input' => [ 'shape' => 'ListThingGroupsRequest', ], 'output' => [ 'shape' => 'ListThingGroupsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListThingGroupsForThing' => [ 'name' => 'ListThingGroupsForThing', 'http' => [ 'method' => 'GET', 'requestUri' => '/things/{thingName}/thing-groups', ], 'input' => [ 'shape' => 'ListThingGroupsForThingRequest', ], 'output' => [ 'shape' => 'ListThingGroupsForThingResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListThingPrincipals' => [ 'name' => 'ListThingPrincipals', 'http' => [ 'method' => 'GET', 'requestUri' => '/things/{thingName}/principals', ], 'input' => [ 'shape' => 'ListThingPrincipalsRequest', ], 'output' => [ 'shape' => 'ListThingPrincipalsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'ListThingRegistrationTaskReports' => [ 'name' => 'ListThingRegistrationTaskReports', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-registration-tasks/{taskId}/reports', ], 'input' => [ 'shape' => 'ListThingRegistrationTaskReportsRequest', ], 'output' => [ 'shape' => 'ListThingRegistrationTaskReportsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListThingRegistrationTasks' => [ 'name' => 'ListThingRegistrationTasks', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-registration-tasks', ], 'input' => [ 'shape' => 'ListThingRegistrationTasksRequest', ], 'output' => [ 'shape' => 'ListThingRegistrationTasksResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListThingTypes' => [ 'name' => 'ListThingTypes', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-types', ], 'input' => [ 'shape' => 'ListThingTypesRequest', ], 'output' => [ 'shape' => 'ListThingTypesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListThings' => [ 'name' => 'ListThings', 'http' => [ 'method' => 'GET', 'requestUri' => '/things', ], 'input' => [ 'shape' => 'ListThingsRequest', ], 'output' => [ 'shape' => 'ListThingsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListThingsInBillingGroup' => [ 'name' => 'ListThingsInBillingGroup', 'http' => [ 'method' => 'GET', 'requestUri' => '/billing-groups/{billingGroupName}/things', ], 'input' => [ 'shape' => 'ListThingsInBillingGroupRequest', ], 'output' => [ 'shape' => 'ListThingsInBillingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListThingsInThingGroup' => [ 'name' => 'ListThingsInThingGroup', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-groups/{thingGroupName}/things', ], 'input' => [ 'shape' => 'ListThingsInThingGroupRequest', ], 'output' => [ 'shape' => 'ListThingsInThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListTopicRuleDestinations' => [ 'name' => 'ListTopicRuleDestinations', 'http' => [ 'method' => 'GET', 'requestUri' => '/destinations', ], 'input' => [ 'shape' => 'ListTopicRuleDestinationsRequest', ], 'output' => [ 'shape' => 'ListTopicRuleDestinationsResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'ListTopicRules' => [ 'name' => 'ListTopicRules', 'http' => [ 'method' => 'GET', 'requestUri' => '/rules', ], 'input' => [ 'shape' => 'ListTopicRulesRequest', ], 'output' => [ 'shape' => 'ListTopicRulesResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'ListV2LoggingLevels' => [ 'name' => 'ListV2LoggingLevels', 'http' => [ 'method' => 'GET', 'requestUri' => '/v2LoggingLevel', ], 'input' => [ 'shape' => 'ListV2LoggingLevelsRequest', ], 'output' => [ 'shape' => 'ListV2LoggingLevelsResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'NotConfiguredException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'ListViolationEvents' => [ 'name' => 'ListViolationEvents', 'http' => [ 'method' => 'GET', 'requestUri' => '/violation-events', ], 'input' => [ 'shape' => 'ListViolationEventsRequest', ], 'output' => [ 'shape' => 'ListViolationEventsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'PutVerificationStateOnViolation' => [ 'name' => 'PutVerificationStateOnViolation', 'http' => [ 'method' => 'POST', 'requestUri' => '/violations/verification-state/{violationId}', ], 'input' => [ 'shape' => 'PutVerificationStateOnViolationRequest', ], 'output' => [ 'shape' => 'PutVerificationStateOnViolationResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'RegisterCACertificate' => [ 'name' => 'RegisterCACertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/cacertificate', ], 'input' => [ 'shape' => 'RegisterCACertificateRequest', ], 'output' => [ 'shape' => 'RegisterCACertificateResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'RegistrationCodeValidationException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'CertificateValidationException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'RegisterCertificate' => [ 'name' => 'RegisterCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/certificate/register', ], 'input' => [ 'shape' => 'RegisterCertificateRequest', ], 'output' => [ 'shape' => 'RegisterCertificateResponse', ], 'errors' => [ [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'CertificateValidationException', ], [ 'shape' => 'CertificateStateException', ], [ 'shape' => 'CertificateConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'RegisterCertificateWithoutCA' => [ 'name' => 'RegisterCertificateWithoutCA', 'http' => [ 'method' => 'POST', 'requestUri' => '/certificate/register-no-ca', ], 'input' => [ 'shape' => 'RegisterCertificateWithoutCARequest', ], 'output' => [ 'shape' => 'RegisterCertificateWithoutCAResponse', ], 'errors' => [ [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'CertificateStateException', ], [ 'shape' => 'CertificateValidationException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'RegisterThing' => [ 'name' => 'RegisterThing', 'http' => [ 'method' => 'POST', 'requestUri' => '/things', ], 'input' => [ 'shape' => 'RegisterThingRequest', ], 'output' => [ 'shape' => 'RegisterThingResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], [ 'shape' => 'ResourceRegistrationFailureException', ], ], ], 'RejectCertificateTransfer' => [ 'name' => 'RejectCertificateTransfer', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/reject-certificate-transfer/{certificateId}', ], 'input' => [ 'shape' => 'RejectCertificateTransferRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'TransferAlreadyCompletedException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'RemoveThingFromBillingGroup' => [ 'name' => 'RemoveThingFromBillingGroup', 'http' => [ 'method' => 'PUT', 'requestUri' => '/billing-groups/removeThingFromBillingGroup', ], 'input' => [ 'shape' => 'RemoveThingFromBillingGroupRequest', ], 'output' => [ 'shape' => 'RemoveThingFromBillingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'RemoveThingFromThingGroup' => [ 'name' => 'RemoveThingFromThingGroup', 'http' => [ 'method' => 'PUT', 'requestUri' => '/thing-groups/removeThingFromThingGroup', ], 'input' => [ 'shape' => 'RemoveThingFromThingGroupRequest', ], 'output' => [ 'shape' => 'RemoveThingFromThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'ReplaceTopicRule' => [ 'name' => 'ReplaceTopicRule', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/rules/{ruleName}', ], 'input' => [ 'shape' => 'ReplaceTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'SqlParseException', ], [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'SearchIndex' => [ 'name' => 'SearchIndex', 'http' => [ 'method' => 'POST', 'requestUri' => '/indices/search', ], 'input' => [ 'shape' => 'SearchIndexRequest', ], 'output' => [ 'shape' => 'SearchIndexResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidQueryException', ], [ 'shape' => 'IndexNotReadyException', ], ], ], 'SetDefaultAuthorizer' => [ 'name' => 'SetDefaultAuthorizer', 'http' => [ 'method' => 'POST', 'requestUri' => '/default-authorizer', ], 'input' => [ 'shape' => 'SetDefaultAuthorizerRequest', ], 'output' => [ 'shape' => 'SetDefaultAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], ], ], 'SetDefaultPolicyVersion' => [ 'name' => 'SetDefaultPolicyVersion', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/policies/{policyName}/version/{policyVersionId}', ], 'input' => [ 'shape' => 'SetDefaultPolicyVersionRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'SetLoggingOptions' => [ 'name' => 'SetLoggingOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/loggingOptions', ], 'input' => [ 'shape' => 'SetLoggingOptionsRequest', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'SetV2LoggingLevel' => [ 'name' => 'SetV2LoggingLevel', 'http' => [ 'method' => 'POST', 'requestUri' => '/v2LoggingLevel', ], 'input' => [ 'shape' => 'SetV2LoggingLevelRequest', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'NotConfiguredException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'SetV2LoggingOptions' => [ 'name' => 'SetV2LoggingOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/v2LoggingOptions', ], 'input' => [ 'shape' => 'SetV2LoggingOptionsRequest', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'StartAuditMitigationActionsTask' => [ 'name' => 'StartAuditMitigationActionsTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/audit/mitigationactions/tasks/{taskId}', ], 'input' => [ 'shape' => 'StartAuditMitigationActionsTaskRequest', ], 'output' => [ 'shape' => 'StartAuditMitigationActionsTaskResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'TaskAlreadyExistsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'StartDetectMitigationActionsTask' => [ 'name' => 'StartDetectMitigationActionsTask', 'http' => [ 'method' => 'PUT', 'requestUri' => '/detect/mitigationactions/tasks/{taskId}', ], 'input' => [ 'shape' => 'StartDetectMitigationActionsTaskRequest', ], 'output' => [ 'shape' => 'StartDetectMitigationActionsTaskResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'TaskAlreadyExistsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'StartOnDemandAuditTask' => [ 'name' => 'StartOnDemandAuditTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/audit/tasks', ], 'input' => [ 'shape' => 'StartOnDemandAuditTaskRequest', ], 'output' => [ 'shape' => 'StartOnDemandAuditTaskResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'StartThingRegistrationTask' => [ 'name' => 'StartThingRegistrationTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/thing-registration-tasks', ], 'input' => [ 'shape' => 'StartThingRegistrationTaskRequest', ], 'output' => [ 'shape' => 'StartThingRegistrationTaskResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'StopThingRegistrationTask' => [ 'name' => 'StopThingRegistrationTask', 'http' => [ 'method' => 'PUT', 'requestUri' => '/thing-registration-tasks/{taskId}/cancel', ], 'input' => [ 'shape' => 'StopThingRegistrationTaskRequest', ], 'output' => [ 'shape' => 'StopThingRegistrationTaskResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'TagResource' => [ 'name' => 'TagResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/tags', ], 'input' => [ 'shape' => 'TagResourceRequest', ], 'output' => [ 'shape' => 'TagResourceResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'TestAuthorization' => [ 'name' => 'TestAuthorization', 'http' => [ 'method' => 'POST', 'requestUri' => '/test-authorization', ], 'input' => [ 'shape' => 'TestAuthorizationRequest', ], 'output' => [ 'shape' => 'TestAuthorizationResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'TestInvokeAuthorizer' => [ 'name' => 'TestInvokeAuthorizer', 'http' => [ 'method' => 'POST', 'requestUri' => '/authorizer/{authorizerName}/test', ], 'input' => [ 'shape' => 'TestInvokeAuthorizerRequest', ], 'output' => [ 'shape' => 'TestInvokeAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidResponseException', ], ], ], 'TransferCertificate' => [ 'name' => 'TransferCertificate', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/transfer-certificate/{certificateId}', ], 'input' => [ 'shape' => 'TransferCertificateRequest', ], 'output' => [ 'shape' => 'TransferCertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'CertificateStateException', ], [ 'shape' => 'TransferConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UntagResource' => [ 'name' => 'UntagResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/untag', ], 'input' => [ 'shape' => 'UntagResourceRequest', ], 'output' => [ 'shape' => 'UntagResourceResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'UpdateAccountAuditConfiguration' => [ 'name' => 'UpdateAccountAuditConfiguration', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/audit/configuration', ], 'input' => [ 'shape' => 'UpdateAccountAuditConfigurationRequest', ], 'output' => [ 'shape' => 'UpdateAccountAuditConfigurationResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateAuditSuppression' => [ 'name' => 'UpdateAuditSuppression', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/audit/suppressions/update', ], 'input' => [ 'shape' => 'UpdateAuditSuppressionRequest', ], 'output' => [ 'shape' => 'UpdateAuditSuppressionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateAuthorizer' => [ 'name' => 'UpdateAuthorizer', 'http' => [ 'method' => 'PUT', 'requestUri' => '/authorizer/{authorizerName}', ], 'input' => [ 'shape' => 'UpdateAuthorizerRequest', ], 'output' => [ 'shape' => 'UpdateAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateBillingGroup' => [ 'name' => 'UpdateBillingGroup', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/billing-groups/{billingGroupName}', ], 'input' => [ 'shape' => 'UpdateBillingGroupRequest', ], 'output' => [ 'shape' => 'UpdateBillingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'UpdateCACertificate' => [ 'name' => 'UpdateCACertificate', 'http' => [ 'method' => 'PUT', 'requestUri' => '/cacertificate/{caCertificateId}', ], 'input' => [ 'shape' => 'UpdateCACertificateRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateCertificate' => [ 'name' => 'UpdateCertificate', 'http' => [ 'method' => 'PUT', 'requestUri' => '/certificates/{certificateId}', ], 'input' => [ 'shape' => 'UpdateCertificateRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'CertificateStateException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateCertificateProvider' => [ 'name' => 'UpdateCertificateProvider', 'http' => [ 'method' => 'PUT', 'requestUri' => '/certificate-providers/{certificateProviderName}', ], 'input' => [ 'shape' => 'UpdateCertificateProviderRequest', ], 'output' => [ 'shape' => 'UpdateCertificateProviderResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateCustomMetric' => [ 'name' => 'UpdateCustomMetric', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/custom-metric/{metricName}', ], 'input' => [ 'shape' => 'UpdateCustomMetricRequest', ], 'output' => [ 'shape' => 'UpdateCustomMetricResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateDimension' => [ 'name' => 'UpdateDimension', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/dimensions/{name}', ], 'input' => [ 'shape' => 'UpdateDimensionRequest', ], 'output' => [ 'shape' => 'UpdateDimensionResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'UpdateDomainConfiguration' => [ 'name' => 'UpdateDomainConfiguration', 'http' => [ 'method' => 'PUT', 'requestUri' => '/domainConfigurations/{domainConfigurationName}', ], 'input' => [ 'shape' => 'UpdateDomainConfigurationRequest', ], 'output' => [ 'shape' => 'UpdateDomainConfigurationResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'CertificateValidationException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateDynamicThingGroup' => [ 'name' => 'UpdateDynamicThingGroup', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/dynamic-thing-groups/{thingGroupName}', ], 'input' => [ 'shape' => 'UpdateDynamicThingGroupRequest', ], 'output' => [ 'shape' => 'UpdateDynamicThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidQueryException', ], ], ], 'UpdateEventConfigurations' => [ 'name' => 'UpdateEventConfigurations', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/event-configurations', ], 'input' => [ 'shape' => 'UpdateEventConfigurationsRequest', ], 'output' => [ 'shape' => 'UpdateEventConfigurationsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'UpdateFleetMetric' => [ 'name' => 'UpdateFleetMetric', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/fleet-metric/{metricName}', ], 'input' => [ 'shape' => 'UpdateFleetMetricRequest', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidQueryException', ], [ 'shape' => 'InvalidAggregationException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'IndexNotReadyException', ], ], ], 'UpdateIndexingConfiguration' => [ 'name' => 'UpdateIndexingConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/indexing/config', ], 'input' => [ 'shape' => 'UpdateIndexingConfigurationRequest', ], 'output' => [ 'shape' => 'UpdateIndexingConfigurationResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateJob' => [ 'name' => 'UpdateJob', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/jobs/{jobId}', ], 'input' => [ 'shape' => 'UpdateJobRequest', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'UpdateMitigationAction' => [ 'name' => 'UpdateMitigationAction', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/mitigationactions/actions/{actionName}', ], 'input' => [ 'shape' => 'UpdateMitigationActionRequest', ], 'output' => [ 'shape' => 'UpdateMitigationActionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdatePackage' => [ 'name' => 'UpdatePackage', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/packages/{packageName}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'UpdatePackageRequest', ], 'output' => [ 'shape' => 'UpdatePackageResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'ResourceNotFoundException', ], ], 'idempotent' => true, ], 'UpdatePackageConfiguration' => [ 'name' => 'UpdatePackageConfiguration', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/package-configuration', 'responseCode' => 200, ], 'input' => [ 'shape' => 'UpdatePackageConfigurationRequest', ], 'output' => [ 'shape' => 'UpdatePackageConfigurationResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], ], 'idempotent' => true, ], 'UpdatePackageVersion' => [ 'name' => 'UpdatePackageVersion', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/packages/{packageName}/versions/{versionName}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'UpdatePackageVersionRequest', ], 'output' => [ 'shape' => 'UpdatePackageVersionResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'ResourceNotFoundException', ], ], 'idempotent' => true, ], 'UpdateProvisioningTemplate' => [ 'name' => 'UpdateProvisioningTemplate', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/provisioning-templates/{templateName}', ], 'input' => [ 'shape' => 'UpdateProvisioningTemplateRequest', ], 'output' => [ 'shape' => 'UpdateProvisioningTemplateResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'UpdateRoleAlias' => [ 'name' => 'UpdateRoleAlias', 'http' => [ 'method' => 'PUT', 'requestUri' => '/role-aliases/{roleAlias}', ], 'input' => [ 'shape' => 'UpdateRoleAliasRequest', ], 'output' => [ 'shape' => 'UpdateRoleAliasResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateScheduledAudit' => [ 'name' => 'UpdateScheduledAudit', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/audit/scheduledaudits/{scheduledAuditName}', ], 'input' => [ 'shape' => 'UpdateScheduledAuditRequest', ], 'output' => [ 'shape' => 'UpdateScheduledAuditResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateSecurityProfile' => [ 'name' => 'UpdateSecurityProfile', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/security-profiles/{securityProfileName}', ], 'input' => [ 'shape' => 'UpdateSecurityProfileRequest', ], 'output' => [ 'shape' => 'UpdateSecurityProfileResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateStream' => [ 'name' => 'UpdateStream', 'http' => [ 'method' => 'PUT', 'requestUri' => '/streams/{streamId}', ], 'input' => [ 'shape' => 'UpdateStreamRequest', ], 'output' => [ 'shape' => 'UpdateStreamResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateThing' => [ 'name' => 'UpdateThing', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/things/{thingName}', ], 'input' => [ 'shape' => 'UpdateThingRequest', ], 'output' => [ 'shape' => 'UpdateThingResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'UpdateThingGroup' => [ 'name' => 'UpdateThingGroup', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/thing-groups/{thingGroupName}', ], 'input' => [ 'shape' => 'UpdateThingGroupRequest', ], 'output' => [ 'shape' => 'UpdateThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'UpdateThingGroupsForThing' => [ 'name' => 'UpdateThingGroupsForThing', 'http' => [ 'method' => 'PUT', 'requestUri' => '/thing-groups/updateThingGroupsForThing', ], 'input' => [ 'shape' => 'UpdateThingGroupsForThingRequest', ], 'output' => [ 'shape' => 'UpdateThingGroupsForThingResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'UpdateTopicRuleDestination' => [ 'name' => 'UpdateTopicRuleDestination', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/destinations', ], 'input' => [ 'shape' => 'UpdateTopicRuleDestinationRequest', ], 'output' => [ 'shape' => 'UpdateTopicRuleDestinationResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'ValidateSecurityProfileBehaviors' => [ 'name' => 'ValidateSecurityProfileBehaviors', 'http' => [ 'method' => 'POST', 'requestUri' => '/security-profile-behaviors/validate', ], 'input' => [ 'shape' => 'ValidateSecurityProfileBehaviorsRequest', ], 'output' => [ 'shape' => 'ValidateSecurityProfileBehaviorsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], ], 'shapes' => [ 'AbortAction' => [ 'type' => 'string', 'enum' => [ 'CANCEL', ], ], 'AbortConfig' => [ 'type' => 'structure', 'required' => [ 'criteriaList', ], 'members' => [ 'criteriaList' => [ 'shape' => 'AbortCriteriaList', ], ], ], 'AbortCriteria' => [ 'type' => 'structure', 'required' => [ 'failureType', 'action', 'thresholdPercentage', 'minNumberOfExecutedThings', ], 'members' => [ 'failureType' => [ 'shape' => 'JobExecutionFailureType', ], 'action' => [ 'shape' => 'AbortAction', ], 'thresholdPercentage' => [ 'shape' => 'AbortThresholdPercentage', ], 'minNumberOfExecutedThings' => [ 'shape' => 'MinimumNumberOfExecutedThings', ], ], ], 'AbortCriteriaList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AbortCriteria', ], 'min' => 1, ], 'AbortThresholdPercentage' => [ 'type' => 'double', 'max' => 100, ], 'AcceptCertificateTransferRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'setAsActive' => [ 'shape' => 'SetAsActive', 'location' => 'querystring', 'locationName' => 'setAsActive', ], ], ], 'AcmCertificateArn' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => 'arn:aws(-cn|-us-gov|-iso-b|-iso)?:acm:[a-z]{2}-(gov-|iso-|isob-)?[a-z]{4,9}-\\d{1}:\\d{12}:certificate/[a-zA-Z0-9/-]+', ], 'Action' => [ 'type' => 'structure', 'members' => [ 'dynamoDB' => [ 'shape' => 'DynamoDBAction', ], 'dynamoDBv2' => [ 'shape' => 'DynamoDBv2Action', ], 'lambda' => [ 'shape' => 'LambdaAction', ], 'sns' => [ 'shape' => 'SnsAction', ], 'sqs' => [ 'shape' => 'SqsAction', ], 'kinesis' => [ 'shape' => 'KinesisAction', ], 'republish' => [ 'shape' => 'RepublishAction', ], 's3' => [ 'shape' => 'S3Action', ], 'firehose' => [ 'shape' => 'FirehoseAction', ], 'cloudwatchMetric' => [ 'shape' => 'CloudwatchMetricAction', ], 'cloudwatchAlarm' => [ 'shape' => 'CloudwatchAlarmAction', ], 'cloudwatchLogs' => [ 'shape' => 'CloudwatchLogsAction', ], 'elasticsearch' => [ 'shape' => 'ElasticsearchAction', ], 'salesforce' => [ 'shape' => 'SalesforceAction', ], 'iotAnalytics' => [ 'shape' => 'IotAnalyticsAction', ], 'iotEvents' => [ 'shape' => 'IotEventsAction', ], 'iotSiteWise' => [ 'shape' => 'IotSiteWiseAction', ], 'stepFunctions' => [ 'shape' => 'StepFunctionsAction', ], 'timestream' => [ 'shape' => 'TimestreamAction', ], 'http' => [ 'shape' => 'HttpAction', ], 'kafka' => [ 'shape' => 'KafkaAction', ], 'openSearch' => [ 'shape' => 'OpenSearchAction', ], 'location' => [ 'shape' => 'LocationAction', ], ], ], 'ActionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Action', ], 'max' => 10, 'min' => 0, ], 'ActionType' => [ 'type' => 'string', 'enum' => [ 'PUBLISH', 'SUBSCRIBE', 'RECEIVE', 'CONNECT', ], ], 'ActiveViolation' => [ 'type' => 'structure', 'members' => [ 'violationId' => [ 'shape' => 'ViolationId', ], 'thingName' => [ 'shape' => 'DeviceDefenderThingName', ], 'securityProfileName' => [ 'shape' => 'SecurityProfileName', ], 'behavior' => [ 'shape' => 'Behavior', ], 'lastViolationValue' => [ 'shape' => 'MetricValue', ], 'violationEventAdditionalInfo' => [ 'shape' => 'ViolationEventAdditionalInfo', ], 'verificationState' => [ 'shape' => 'VerificationState', ], 'verificationStateDescription' => [ 'shape' => 'VerificationStateDescription', ], 'lastViolationTime' => [ 'shape' => 'Timestamp', ], 'violationStartTime' => [ 'shape' => 'Timestamp', ], ], ], 'ActiveViolations' => [ 'type' => 'list', 'member' => [ 'shape' => 'ActiveViolation', ], ], 'AddThingToBillingGroupRequest' => [ 'type' => 'structure', 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', ], 'billingGroupArn' => [ 'shape' => 'BillingGroupArn', ], 'thingName' => [ 'shape' => 'ThingName', ], 'thingArn' => [ 'shape' => 'ThingArn', ], ], ], 'AddThingToBillingGroupResponse' => [ 'type' => 'structure', 'members' => [], ], 'AddThingToThingGroupRequest' => [ 'type' => 'structure', 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', ], 'thingGroupArn' => [ 'shape' => 'ThingGroupArn', ], 'thingName' => [ 'shape' => 'ThingName', ], 'thingArn' => [ 'shape' => 'ThingArn', ], 'overrideDynamicGroups' => [ 'shape' => 'OverrideDynamicGroups', ], ], ], 'AddThingToThingGroupResponse' => [ 'type' => 'structure', 'members' => [], ], 'AddThingsToThingGroupParams' => [ 'type' => 'structure', 'required' => [ 'thingGroupNames', ], 'members' => [ 'thingGroupNames' => [ 'shape' => 'ThingGroupNames', ], 'overrideDynamicGroups' => [ 'shape' => 'NullableBoolean', ], ], ], 'AdditionalMetricsToRetainList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BehaviorMetric', ], ], 'AdditionalMetricsToRetainV2List' => [ 'type' => 'list', 'member' => [ 'shape' => 'MetricToRetain', ], ], 'AdditionalParameterMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'AttributeKey', ], 'value' => [ 'shape' => 'Value', ], ], 'AggregationField' => [ 'type' => 'string', 'min' => 1, ], 'AggregationType' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'AggregationTypeName', ], 'values' => [ 'shape' => 'AggregationTypeValues', ], ], ], 'AggregationTypeName' => [ 'type' => 'string', 'enum' => [ 'Statistics', 'Percentiles', 'Cardinality', ], ], 'AggregationTypeValue' => [ 'type' => 'string', 'max' => 12, 'min' => 1, 'pattern' => '[a-zA-Z0-9]+', ], 'AggregationTypeValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'AggregationTypeValue', ], ], 'AlarmName' => [ 'type' => 'string', ], 'AlertTarget' => [ 'type' => 'structure', 'required' => [ 'alertTargetArn', 'roleArn', ], 'members' => [ 'alertTargetArn' => [ 'shape' => 'AlertTargetArn', ], 'roleArn' => [ 'shape' => 'RoleArn', ], ], ], 'AlertTargetArn' => [ 'type' => 'string', ], 'AlertTargetType' => [ 'type' => 'string', 'enum' => [ 'SNS', ], ], 'AlertTargets' => [ 'type' => 'map', 'key' => [ 'shape' => 'AlertTargetType', ], 'value' => [ 'shape' => 'AlertTarget', ], ], 'AllowAuthorizerOverride' => [ 'type' => 'boolean', ], 'AllowAutoRegistration' => [ 'type' => 'boolean', ], 'Allowed' => [ 'type' => 'structure', 'members' => [ 'policies' => [ 'shape' => 'Policies', ], ], ], 'ApproximateSecondsBeforeTimedOut' => [ 'type' => 'long', ], 'AscendingOrder' => [ 'type' => 'boolean', ], 'AssetId' => [ 'type' => 'string', ], 'AssetPropertyAlias' => [ 'type' => 'string', 'min' => 1, ], 'AssetPropertyBooleanValue' => [ 'type' => 'string', ], 'AssetPropertyDoubleValue' => [ 'type' => 'string', ], 'AssetPropertyEntryId' => [ 'type' => 'string', ], 'AssetPropertyId' => [ 'type' => 'string', ], 'AssetPropertyIntegerValue' => [ 'type' => 'string', ], 'AssetPropertyOffsetInNanos' => [ 'type' => 'string', ], 'AssetPropertyQuality' => [ 'type' => 'string', ], 'AssetPropertyStringValue' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, ], 'AssetPropertyTimeInSeconds' => [ 'type' => 'string', ], 'AssetPropertyTimestamp' => [ 'type' => 'structure', 'required' => [ 'timeInSeconds', ], 'members' => [ 'timeInSeconds' => [ 'shape' => 'AssetPropertyTimeInSeconds', ], 'offsetInNanos' => [ 'shape' => 'AssetPropertyOffsetInNanos', ], ], ], 'AssetPropertyValue' => [ 'type' => 'structure', 'required' => [ 'value', 'timestamp', ], 'members' => [ 'value' => [ 'shape' => 'AssetPropertyVariant', ], 'timestamp' => [ 'shape' => 'AssetPropertyTimestamp', ], 'quality' => [ 'shape' => 'AssetPropertyQuality', ], ], ], 'AssetPropertyValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AssetPropertyValue', ], 'min' => 1, ], 'AssetPropertyVariant' => [ 'type' => 'structure', 'members' => [ 'stringValue' => [ 'shape' => 'AssetPropertyStringValue', ], 'integerValue' => [ 'shape' => 'AssetPropertyIntegerValue', ], 'doubleValue' => [ 'shape' => 'AssetPropertyDoubleValue', ], 'booleanValue' => [ 'shape' => 'AssetPropertyBooleanValue', ], ], ], 'AssociateTargetsWithJobRequest' => [ 'type' => 'structure', 'required' => [ 'targets', 'jobId', ], 'members' => [ 'targets' => [ 'shape' => 'JobTargets', ], 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'comment' => [ 'shape' => 'Comment', ], 'namespaceId' => [ 'shape' => 'NamespaceId', 'location' => 'querystring', 'locationName' => 'namespaceId', ], ], ], 'AssociateTargetsWithJobResponse' => [ 'type' => 'structure', 'members' => [ 'jobArn' => [ 'shape' => 'JobArn', ], 'jobId' => [ 'shape' => 'JobId', ], 'description' => [ 'shape' => 'JobDescription', ], ], ], 'AttachPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'target', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'target' => [ 'shape' => 'PolicyTarget', ], ], ], 'AttachPrincipalPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'principal', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-iot-principal', ], ], ], 'AttachSecurityProfileRequest' => [ 'type' => 'structure', 'required' => [ 'securityProfileName', 'securityProfileTargetArn', ], 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'uri', 'locationName' => 'securityProfileName', ], 'securityProfileTargetArn' => [ 'shape' => 'SecurityProfileTargetArn', 'location' => 'querystring', 'locationName' => 'securityProfileTargetArn', ], ], ], 'AttachSecurityProfileResponse' => [ 'type' => 'structure', 'members' => [], ], 'AttachThingPrincipalRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', 'principal', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-principal', ], ], ], 'AttachThingPrincipalResponse' => [ 'type' => 'structure', 'members' => [], ], 'AttributeKey' => [ 'type' => 'string', ], 'AttributeName' => [ 'type' => 'string', 'max' => 128, 'pattern' => '[a-zA-Z0-9_.,@/:#-]+', ], 'AttributePayload' => [ 'type' => 'structure', 'members' => [ 'attributes' => [ 'shape' => 'Attributes', ], 'merge' => [ 'shape' => 'Flag', ], ], ], 'AttributeValue' => [ 'type' => 'string', 'max' => 800, 'pattern' => '[a-zA-Z0-9_.,@/:#-]*', ], 'Attributes' => [ 'type' => 'map', 'key' => [ 'shape' => 'AttributeName', ], 'value' => [ 'shape' => 'AttributeValue', ], ], 'AttributesMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'AttributeKey', ], 'value' => [ 'shape' => 'Value', ], ], 'AuditCheckConfiguration' => [ 'type' => 'structure', 'members' => [ 'enabled' => [ 'shape' => 'Enabled', ], ], ], 'AuditCheckConfigurations' => [ 'type' => 'map', 'key' => [ 'shape' => 'AuditCheckName', ], 'value' => [ 'shape' => 'AuditCheckConfiguration', ], ], 'AuditCheckDetails' => [ 'type' => 'structure', 'members' => [ 'checkRunStatus' => [ 'shape' => 'AuditCheckRunStatus', ], 'checkCompliant' => [ 'shape' => 'CheckCompliant', ], 'totalResourcesCount' => [ 'shape' => 'TotalResourcesCount', ], 'nonCompliantResourcesCount' => [ 'shape' => 'NonCompliantResourcesCount', ], 'suppressedNonCompliantResourcesCount' => [ 'shape' => 'SuppressedNonCompliantResourcesCount', ], 'errorCode' => [ 'shape' => 'ErrorCode', ], 'message' => [ 'shape' => 'ErrorMessage', ], ], ], 'AuditCheckName' => [ 'type' => 'string', ], 'AuditCheckRunStatus' => [ 'type' => 'string', 'enum' => [ 'IN_PROGRESS', 'WAITING_FOR_DATA_COLLECTION', 'CANCELED', 'COMPLETED_COMPLIANT', 'COMPLETED_NON_COMPLIANT', 'FAILED', ], ], 'AuditCheckToActionsMapping' => [ 'type' => 'map', 'key' => [ 'shape' => 'AuditCheckName', ], 'value' => [ 'shape' => 'MitigationActionNameList', ], ], 'AuditCheckToReasonCodeFilter' => [ 'type' => 'map', 'key' => [ 'shape' => 'AuditCheckName', ], 'value' => [ 'shape' => 'ReasonForNonComplianceCodes', ], ], 'AuditDescription' => [ 'type' => 'string', 'max' => 1000, 'pattern' => '[\\p{Graph}\\x20]*', ], 'AuditDetails' => [ 'type' => 'map', 'key' => [ 'shape' => 'AuditCheckName', ], 'value' => [ 'shape' => 'AuditCheckDetails', ], ], 'AuditFinding' => [ 'type' => 'structure', 'members' => [ 'findingId' => [ 'shape' => 'FindingId', ], 'taskId' => [ 'shape' => 'AuditTaskId', ], 'checkName' => [ 'shape' => 'AuditCheckName', ], 'taskStartTime' => [ 'shape' => 'Timestamp', ], 'findingTime' => [ 'shape' => 'Timestamp', ], 'severity' => [ 'shape' => 'AuditFindingSeverity', ], 'nonCompliantResource' => [ 'shape' => 'NonCompliantResource', ], 'relatedResources' => [ 'shape' => 'RelatedResources', ], 'reasonForNonCompliance' => [ 'shape' => 'ReasonForNonCompliance', ], 'reasonForNonComplianceCode' => [ 'shape' => 'ReasonForNonComplianceCode', ], 'isSuppressed' => [ 'shape' => 'IsSuppressed', ], ], ], 'AuditFindingSeverity' => [ 'type' => 'string', 'enum' => [ 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', ], ], 'AuditFindings' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuditFinding', ], ], 'AuditFrequency' => [ 'type' => 'string', 'enum' => [ 'DAILY', 'WEEKLY', 'BIWEEKLY', 'MONTHLY', ], ], 'AuditMitigationActionExecutionMetadata' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', ], 'findingId' => [ 'shape' => 'FindingId', ], 'actionName' => [ 'shape' => 'MitigationActionName', ], 'actionId' => [ 'shape' => 'MitigationActionId', ], 'status' => [ 'shape' => 'AuditMitigationActionsExecutionStatus', ], 'startTime' => [ 'shape' => 'Timestamp', ], 'endTime' => [ 'shape' => 'Timestamp', ], 'errorCode' => [ 'shape' => 'ErrorCode', ], 'message' => [ 'shape' => 'ErrorMessage', ], ], ], 'AuditMitigationActionExecutionMetadataList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuditMitigationActionExecutionMetadata', ], ], 'AuditMitigationActionsExecutionStatus' => [ 'type' => 'string', 'enum' => [ 'IN_PROGRESS', 'COMPLETED', 'FAILED', 'CANCELED', 'SKIPPED', 'PENDING', ], ], 'AuditMitigationActionsTaskMetadata' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', ], 'startTime' => [ 'shape' => 'Timestamp', ], 'taskStatus' => [ 'shape' => 'AuditMitigationActionsTaskStatus', ], ], ], 'AuditMitigationActionsTaskMetadataList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuditMitigationActionsTaskMetadata', ], ], 'AuditMitigationActionsTaskStatistics' => [ 'type' => 'map', 'key' => [ 'shape' => 'AuditCheckName', ], 'value' => [ 'shape' => 'TaskStatisticsForAuditCheck', ], ], 'AuditMitigationActionsTaskStatus' => [ 'type' => 'string', 'enum' => [ 'IN_PROGRESS', 'COMPLETED', 'FAILED', 'CANCELED', ], ], 'AuditMitigationActionsTaskTarget' => [ 'type' => 'structure', 'members' => [ 'auditTaskId' => [ 'shape' => 'AuditTaskId', ], 'findingIds' => [ 'shape' => 'FindingIds', ], 'auditCheckToReasonCodeFilter' => [ 'shape' => 'AuditCheckToReasonCodeFilter', ], ], ], 'AuditNotificationTarget' => [ 'type' => 'structure', 'members' => [ 'targetArn' => [ 'shape' => 'TargetArn', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'enabled' => [ 'shape' => 'Enabled', ], ], ], 'AuditNotificationTargetConfigurations' => [ 'type' => 'map', 'key' => [ 'shape' => 'AuditNotificationType', ], 'value' => [ 'shape' => 'AuditNotificationTarget', ], ], 'AuditNotificationType' => [ 'type' => 'string', 'enum' => [ 'SNS', ], ], 'AuditSuppression' => [ 'type' => 'structure', 'required' => [ 'checkName', 'resourceIdentifier', ], 'members' => [ 'checkName' => [ 'shape' => 'AuditCheckName', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], 'expirationDate' => [ 'shape' => 'Timestamp', ], 'suppressIndefinitely' => [ 'shape' => 'SuppressIndefinitely', ], 'description' => [ 'shape' => 'AuditDescription', ], ], ], 'AuditSuppressionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuditSuppression', ], ], 'AuditTaskId' => [ 'type' => 'string', 'max' => 40, 'min' => 1, 'pattern' => '[a-zA-Z0-9\\-]+', ], 'AuditTaskMetadata' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'AuditTaskId', ], 'taskStatus' => [ 'shape' => 'AuditTaskStatus', ], 'taskType' => [ 'shape' => 'AuditTaskType', ], ], ], 'AuditTaskMetadataList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuditTaskMetadata', ], ], 'AuditTaskStatus' => [ 'type' => 'string', 'enum' => [ 'IN_PROGRESS', 'COMPLETED', 'FAILED', 'CANCELED', ], ], 'AuditTaskType' => [ 'type' => 'string', 'enum' => [ 'ON_DEMAND_AUDIT_TASK', 'SCHEDULED_AUDIT_TASK', ], ], 'AuthDecision' => [ 'type' => 'string', 'enum' => [ 'ALLOWED', 'EXPLICIT_DENY', 'IMPLICIT_DENY', ], ], 'AuthInfo' => [ 'type' => 'structure', 'required' => [ 'resources', ], 'members' => [ 'actionType' => [ 'shape' => 'ActionType', ], 'resources' => [ 'shape' => 'Resources', ], ], ], 'AuthInfos' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuthInfo', ], 'max' => 10, 'min' => 1, ], 'AuthResult' => [ 'type' => 'structure', 'members' => [ 'authInfo' => [ 'shape' => 'AuthInfo', ], 'allowed' => [ 'shape' => 'Allowed', ], 'denied' => [ 'shape' => 'Denied', ], 'authDecision' => [ 'shape' => 'AuthDecision', ], 'missingContextValues' => [ 'shape' => 'MissingContextValues', ], ], ], 'AuthResults' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuthResult', ], ], 'AuthorizerArn' => [ 'type' => 'string', 'max' => 2048, ], 'AuthorizerConfig' => [ 'type' => 'structure', 'members' => [ 'defaultAuthorizerName' => [ 'shape' => 'AuthorizerName', ], 'allowAuthorizerOverride' => [ 'shape' => 'AllowAuthorizerOverride', 'box' => true, ], ], ], 'AuthorizerDescription' => [ 'type' => 'structure', 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', ], 'authorizerArn' => [ 'shape' => 'AuthorizerArn', ], 'authorizerFunctionArn' => [ 'shape' => 'AuthorizerFunctionArn', ], 'tokenKeyName' => [ 'shape' => 'TokenKeyName', ], 'tokenSigningPublicKeys' => [ 'shape' => 'PublicKeyMap', ], 'status' => [ 'shape' => 'AuthorizerStatus', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'signingDisabled' => [ 'shape' => 'BooleanKey', ], 'enableCachingForHttp' => [ 'shape' => 'EnableCachingForHttp', ], ], ], 'AuthorizerFunctionArn' => [ 'type' => 'string', 'max' => 2048, 'pattern' => '[\\s\\S]*', ], 'AuthorizerName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w=,@-]+', ], 'AuthorizerStatus' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'INACTIVE', ], ], 'AuthorizerSummary' => [ 'type' => 'structure', 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', ], 'authorizerArn' => [ 'shape' => 'AuthorizerArn', ], ], ], 'Authorizers' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuthorizerSummary', ], ], 'AutoRegistrationStatus' => [ 'type' => 'string', 'enum' => [ 'ENABLE', 'DISABLE', ], ], 'Average' => [ 'type' => 'double', ], 'AwsAccountId' => [ 'type' => 'string', 'max' => 12, 'min' => 12, 'pattern' => '[0-9]+', ], 'AwsArn' => [ 'type' => 'string', ], 'AwsIotJobArn' => [ 'type' => 'string', ], 'AwsIotJobId' => [ 'type' => 'string', ], 'AwsIotSqlVersion' => [ 'type' => 'string', ], 'AwsJobAbortConfig' => [ 'type' => 'structure', 'required' => [ 'abortCriteriaList', ], 'members' => [ 'abortCriteriaList' => [ 'shape' => 'AwsJobAbortCriteriaList', ], ], ], 'AwsJobAbortCriteria' => [ 'type' => 'structure', 'required' => [ 'failureType', 'action', 'thresholdPercentage', 'minNumberOfExecutedThings', ], 'members' => [ 'failureType' => [ 'shape' => 'AwsJobAbortCriteriaFailureType', ], 'action' => [ 'shape' => 'AwsJobAbortCriteriaAbortAction', ], 'thresholdPercentage' => [ 'shape' => 'AwsJobAbortCriteriaAbortThresholdPercentage', ], 'minNumberOfExecutedThings' => [ 'shape' => 'AwsJobAbortCriteriaMinimumNumberOfExecutedThings', ], ], ], 'AwsJobAbortCriteriaAbortAction' => [ 'type' => 'string', 'enum' => [ 'CANCEL', ], ], 'AwsJobAbortCriteriaAbortThresholdPercentage' => [ 'type' => 'double', 'max' => 100, ], 'AwsJobAbortCriteriaFailureType' => [ 'type' => 'string', 'enum' => [ 'FAILED', 'REJECTED', 'TIMED_OUT', 'ALL', ], ], 'AwsJobAbortCriteriaList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AwsJobAbortCriteria', ], 'min' => 1, ], 'AwsJobAbortCriteriaMinimumNumberOfExecutedThings' => [ 'type' => 'integer', 'min' => 1, ], 'AwsJobExecutionsRolloutConfig' => [ 'type' => 'structure', 'members' => [ 'maximumPerMinute' => [ 'shape' => 'MaximumPerMinute', ], 'exponentialRate' => [ 'shape' => 'AwsJobExponentialRolloutRate', ], ], ], 'AwsJobExponentialRolloutRate' => [ 'type' => 'structure', 'required' => [ 'baseRatePerMinute', 'incrementFactor', 'rateIncreaseCriteria', ], 'members' => [ 'baseRatePerMinute' => [ 'shape' => 'AwsJobRolloutRatePerMinute', ], 'incrementFactor' => [ 'shape' => 'AwsJobRolloutIncrementFactor', ], 'rateIncreaseCriteria' => [ 'shape' => 'AwsJobRateIncreaseCriteria', ], ], ], 'AwsJobPresignedUrlConfig' => [ 'type' => 'structure', 'members' => [ 'expiresInSec' => [ 'shape' => 'ExpiresInSeconds', ], ], ], 'AwsJobRateIncreaseCriteria' => [ 'type' => 'structure', 'members' => [ 'numberOfNotifiedThings' => [ 'shape' => 'AwsJobRateIncreaseCriteriaNumberOfThings', ], 'numberOfSucceededThings' => [ 'shape' => 'AwsJobRateIncreaseCriteriaNumberOfThings', ], ], ], 'AwsJobRateIncreaseCriteriaNumberOfThings' => [ 'type' => 'integer', 'min' => 1, ], 'AwsJobRolloutIncrementFactor' => [ 'type' => 'double', ], 'AwsJobRolloutRatePerMinute' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'AwsJobTimeoutConfig' => [ 'type' => 'structure', 'members' => [ 'inProgressTimeoutInMinutes' => [ 'shape' => 'AwsJobTimeoutInProgressTimeoutInMinutes', ], ], ], 'AwsJobTimeoutInProgressTimeoutInMinutes' => [ 'type' => 'long', ], 'BatchMode' => [ 'type' => 'boolean', ], 'Behavior' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'BehaviorName', ], 'metric' => [ 'shape' => 'BehaviorMetric', ], 'metricDimension' => [ 'shape' => 'MetricDimension', ], 'criteria' => [ 'shape' => 'BehaviorCriteria', ], 'suppressAlerts' => [ 'shape' => 'SuppressAlerts', ], 'exportMetric' => [ 'shape' => 'ExportMetric', ], ], ], 'BehaviorCriteria' => [ 'type' => 'structure', 'members' => [ 'comparisonOperator' => [ 'shape' => 'ComparisonOperator', ], 'value' => [ 'shape' => 'MetricValue', ], 'durationSeconds' => [ 'shape' => 'DurationSeconds', ], 'consecutiveDatapointsToAlarm' => [ 'shape' => 'ConsecutiveDatapointsToAlarm', ], 'consecutiveDatapointsToClear' => [ 'shape' => 'ConsecutiveDatapointsToClear', ], 'statisticalThreshold' => [ 'shape' => 'StatisticalThreshold', ], 'mlDetectionConfig' => [ 'shape' => 'MachineLearningDetectionConfig', ], ], ], 'BehaviorCriteriaType' => [ 'type' => 'string', 'enum' => [ 'STATIC', 'STATISTICAL', 'MACHINE_LEARNING', ], ], 'BehaviorMetric' => [ 'type' => 'string', ], 'BehaviorModelTrainingSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'BehaviorModelTrainingSummary', ], ], 'BehaviorModelTrainingSummary' => [ 'type' => 'structure', 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', ], 'behaviorName' => [ 'shape' => 'BehaviorName', ], 'trainingDataCollectionStartDate' => [ 'shape' => 'Timestamp', ], 'modelStatus' => [ 'shape' => 'ModelStatus', ], 'datapointsCollectionPercentage' => [ 'shape' => 'DataCollectionPercentage', ], 'lastModelRefreshDate' => [ 'shape' => 'Timestamp', ], ], ], 'BehaviorName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'Behaviors' => [ 'type' => 'list', 'member' => [ 'shape' => 'Behavior', ], 'max' => 100, ], 'BillingGroupArn' => [ 'type' => 'string', ], 'BillingGroupDescription' => [ 'type' => 'string', 'max' => 2028, 'pattern' => '[\\p{Graph}\\x20]*', ], 'BillingGroupId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9\\-]+', ], 'BillingGroupMetadata' => [ 'type' => 'structure', 'members' => [ 'creationDate' => [ 'shape' => 'CreationDate', ], ], ], 'BillingGroupName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'BillingGroupNameAndArnList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GroupNameAndArn', ], ], 'BillingGroupProperties' => [ 'type' => 'structure', 'members' => [ 'billingGroupDescription' => [ 'shape' => 'BillingGroupDescription', ], ], ], 'Boolean' => [ 'type' => 'boolean', ], 'BooleanKey' => [ 'type' => 'boolean', ], 'BooleanWrapperObject' => [ 'type' => 'boolean', ], 'Bucket' => [ 'type' => 'structure', 'members' => [ 'keyValue' => [ 'shape' => 'BucketKeyValue', ], 'count' => [ 'shape' => 'Count', ], ], ], 'BucketKeyValue' => [ 'type' => 'string', ], 'BucketName' => [ 'type' => 'string', ], 'Buckets' => [ 'type' => 'list', 'member' => [ 'shape' => 'Bucket', ], ], 'BucketsAggregationType' => [ 'type' => 'structure', 'members' => [ 'termsAggregation' => [ 'shape' => 'TermsAggregation', ], ], ], 'CACertificate' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'status' => [ 'shape' => 'CACertificateStatus', ], 'creationDate' => [ 'shape' => 'DateType', ], ], ], 'CACertificateDescription' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'status' => [ 'shape' => 'CACertificateStatus', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'ownedBy' => [ 'shape' => 'AwsAccountId', ], 'creationDate' => [ 'shape' => 'DateType', ], 'autoRegistrationStatus' => [ 'shape' => 'AutoRegistrationStatus', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'customerVersion' => [ 'shape' => 'CustomerVersion', ], 'generationId' => [ 'shape' => 'GenerationId', ], 'validity' => [ 'shape' => 'CertificateValidity', ], 'certificateMode' => [ 'shape' => 'CertificateMode', ], ], ], 'CACertificateStatus' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'INACTIVE', ], ], 'CACertificateUpdateAction' => [ 'type' => 'string', 'enum' => [ 'DEACTIVATE', ], ], 'CACertificates' => [ 'type' => 'list', 'member' => [ 'shape' => 'CACertificate', ], ], 'CancelAuditMitigationActionsTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', ], 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', 'location' => 'uri', 'locationName' => 'taskId', ], ], ], 'CancelAuditMitigationActionsTaskResponse' => [ 'type' => 'structure', 'members' => [], ], 'CancelAuditTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', ], 'members' => [ 'taskId' => [ 'shape' => 'AuditTaskId', 'location' => 'uri', 'locationName' => 'taskId', ], ], ], 'CancelAuditTaskResponse' => [ 'type' => 'structure', 'members' => [], ], 'CancelCertificateTransferRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], ], ], 'CancelDetectMitigationActionsTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', ], 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', 'location' => 'uri', 'locationName' => 'taskId', ], ], ], 'CancelDetectMitigationActionsTaskResponse' => [ 'type' => 'structure', 'members' => [], ], 'CancelJobExecutionRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', 'thingName', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'force' => [ 'shape' => 'ForceFlag', 'location' => 'querystring', 'locationName' => 'force', ], 'expectedVersion' => [ 'shape' => 'ExpectedVersion', ], 'statusDetails' => [ 'shape' => 'DetailsMap', ], ], ], 'CancelJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'reasonCode' => [ 'shape' => 'ReasonCode', ], 'comment' => [ 'shape' => 'Comment', ], 'force' => [ 'shape' => 'ForceFlag', 'location' => 'querystring', 'locationName' => 'force', ], ], ], 'CancelJobResponse' => [ 'type' => 'structure', 'members' => [ 'jobArn' => [ 'shape' => 'JobArn', ], 'jobId' => [ 'shape' => 'JobId', ], 'description' => [ 'shape' => 'JobDescription', ], ], ], 'CanceledChecksCount' => [ 'type' => 'integer', ], 'CanceledFindingsCount' => [ 'type' => 'long', ], 'CanceledThings' => [ 'type' => 'integer', ], 'CannedAccessControlList' => [ 'type' => 'string', 'enum' => [ 'private', 'public-read', 'public-read-write', 'aws-exec-read', 'authenticated-read', 'bucket-owner-read', 'bucket-owner-full-control', 'log-delivery-write', ], ], 'Certificate' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'status' => [ 'shape' => 'CertificateStatus', ], 'certificateMode' => [ 'shape' => 'CertificateMode', ], 'creationDate' => [ 'shape' => 'DateType', ], ], ], 'CertificateArn' => [ 'type' => 'string', ], 'CertificateConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'CertificateDescription' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'caCertificateId' => [ 'shape' => 'CertificateId', ], 'status' => [ 'shape' => 'CertificateStatus', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'ownedBy' => [ 'shape' => 'AwsAccountId', ], 'previousOwnedBy' => [ 'shape' => 'AwsAccountId', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'customerVersion' => [ 'shape' => 'CustomerVersion', ], 'transferData' => [ 'shape' => 'TransferData', ], 'generationId' => [ 'shape' => 'GenerationId', ], 'validity' => [ 'shape' => 'CertificateValidity', ], 'certificateMode' => [ 'shape' => 'CertificateMode', ], ], ], 'CertificateId' => [ 'type' => 'string', 'max' => 64, 'min' => 64, 'pattern' => '(0x)?[a-fA-F0-9]+', ], 'CertificateMode' => [ 'type' => 'string', 'enum' => [ 'DEFAULT', 'SNI_ONLY', ], ], 'CertificateName' => [ 'type' => 'string', ], 'CertificatePathOnDevice' => [ 'type' => 'string', ], 'CertificatePem' => [ 'type' => 'string', 'max' => 65536, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'CertificateProviderAccountDefaultForOperations' => [ 'type' => 'list', 'member' => [ 'shape' => 'CertificateProviderOperation', ], 'max' => 1, 'min' => 1, ], 'CertificateProviderArn' => [ 'type' => 'string', 'max' => 2048, ], 'CertificateProviderFunctionArn' => [ 'type' => 'string', 'max' => 2048, 'pattern' => '[\\s\\S]*', ], 'CertificateProviderName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w=,@-]+', ], 'CertificateProviderOperation' => [ 'type' => 'string', 'enum' => [ 'CreateCertificateFromCsr', ], ], 'CertificateProviderSummary' => [ 'type' => 'structure', 'members' => [ 'certificateProviderName' => [ 'shape' => 'CertificateProviderName', ], 'certificateProviderArn' => [ 'shape' => 'CertificateProviderArn', ], ], ], 'CertificateProviders' => [ 'type' => 'list', 'member' => [ 'shape' => 'CertificateProviderSummary', ], ], 'CertificateSigningRequest' => [ 'type' => 'string', 'max' => 4096, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'CertificateStateException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 406, ], 'exception' => true, ], 'CertificateStatus' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'INACTIVE', 'REVOKED', 'PENDING_TRANSFER', 'REGISTER_INACTIVE', 'PENDING_ACTIVATION', ], ], 'CertificateValidationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'CertificateValidity' => [ 'type' => 'structure', 'members' => [ 'notBefore' => [ 'shape' => 'DateType', ], 'notAfter' => [ 'shape' => 'DateType', ], ], ], 'Certificates' => [ 'type' => 'list', 'member' => [ 'shape' => 'Certificate', ], ], 'ChannelName' => [ 'type' => 'string', ], 'CheckCompliant' => [ 'type' => 'boolean', ], 'Cidr' => [ 'type' => 'string', 'max' => 43, 'min' => 2, 'pattern' => '[a-fA-F0-9:\\.\\/]+', ], 'Cidrs' => [ 'type' => 'list', 'member' => [ 'shape' => 'Cidr', ], ], 'ClearDefaultAuthorizerRequest' => [ 'type' => 'structure', 'members' => [], ], 'ClearDefaultAuthorizerResponse' => [ 'type' => 'structure', 'members' => [], ], 'ClientId' => [ 'type' => 'string', ], 'ClientProperties' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'ClientRequestToken' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '^[a-zA-Z0-9-_]+$', ], 'ClientToken' => [ 'type' => 'string', 'max' => 64, 'min' => 36, 'pattern' => '\\S{36,64}', ], 'CloudwatchAlarmAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'alarmName', 'stateReason', 'stateValue', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'alarmName' => [ 'shape' => 'AlarmName', ], 'stateReason' => [ 'shape' => 'StateReason', ], 'stateValue' => [ 'shape' => 'StateValue', ], ], ], 'CloudwatchLogsAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'logGroupName', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'logGroupName' => [ 'shape' => 'LogGroupName', ], 'batchMode' => [ 'shape' => 'BatchMode', ], ], ], 'CloudwatchMetricAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'metricNamespace', 'metricName', 'metricValue', 'metricUnit', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'metricNamespace' => [ 'shape' => 'String', ], 'metricName' => [ 'shape' => 'String', ], 'metricValue' => [ 'shape' => 'String', ], 'metricUnit' => [ 'shape' => 'String', ], 'metricTimestamp' => [ 'shape' => 'String', ], ], ], 'Code' => [ 'type' => 'string', ], 'CodeSigning' => [ 'type' => 'structure', 'members' => [ 'awsSignerJobId' => [ 'shape' => 'SigningJobId', ], 'startSigningJobParameter' => [ 'shape' => 'StartSigningJobParameter', ], 'customCodeSigning' => [ 'shape' => 'CustomCodeSigning', ], ], ], 'CodeSigningCertificateChain' => [ 'type' => 'structure', 'members' => [ 'certificateName' => [ 'shape' => 'CertificateName', ], 'inlineDocument' => [ 'shape' => 'InlineDocument', ], ], ], 'CodeSigningSignature' => [ 'type' => 'structure', 'members' => [ 'inlineDocument' => [ 'shape' => 'Signature', ], ], ], 'CognitoIdentityPoolId' => [ 'type' => 'string', ], 'Comment' => [ 'type' => 'string', 'max' => 2028, 'pattern' => '[^\\p{C}]+', ], 'ComparisonOperator' => [ 'type' => 'string', 'enum' => [ 'less-than', 'less-than-equals', 'greater-than', 'greater-than-equals', 'in-cidr-set', 'not-in-cidr-set', 'in-port-set', 'not-in-port-set', 'in-set', 'not-in-set', ], ], 'CompliantChecksCount' => [ 'type' => 'integer', ], 'ConfidenceLevel' => [ 'type' => 'string', 'enum' => [ 'LOW', 'MEDIUM', 'HIGH', ], ], 'Configuration' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Enabled', ], ], ], 'ConfirmTopicRuleDestinationRequest' => [ 'type' => 'structure', 'required' => [ 'confirmationToken', ], 'members' => [ 'confirmationToken' => [ 'shape' => 'ConfirmationToken', 'location' => 'uri', 'locationName' => 'confirmationToken', ], ], ], 'ConfirmTopicRuleDestinationResponse' => [ 'type' => 'structure', 'members' => [], ], 'ConfirmationToken' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, ], 'ConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], 'resourceId' => [ 'shape' => 'resourceId', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'ConflictingResourceUpdateException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'ConnectivityTimestamp' => [ 'type' => 'long', ], 'ConsecutiveDatapointsToAlarm' => [ 'type' => 'integer', 'max' => 10, 'min' => 1, ], 'ConsecutiveDatapointsToClear' => [ 'type' => 'integer', 'max' => 10, 'min' => 1, ], 'ContentType' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, ], 'CorrelationData' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, ], 'Count' => [ 'type' => 'integer', ], 'CreateAuditSuppressionRequest' => [ 'type' => 'structure', 'required' => [ 'checkName', 'resourceIdentifier', 'clientRequestToken', ], 'members' => [ 'checkName' => [ 'shape' => 'AuditCheckName', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], 'expirationDate' => [ 'shape' => 'Timestamp', ], 'suppressIndefinitely' => [ 'shape' => 'SuppressIndefinitely', ], 'description' => [ 'shape' => 'AuditDescription', ], 'clientRequestToken' => [ 'shape' => 'ClientRequestToken', 'idempotencyToken' => true, ], ], ], 'CreateAuditSuppressionResponse' => [ 'type' => 'structure', 'members' => [], ], 'CreateAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'authorizerName', 'authorizerFunctionArn', ], 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', 'location' => 'uri', 'locationName' => 'authorizerName', ], 'authorizerFunctionArn' => [ 'shape' => 'AuthorizerFunctionArn', ], 'tokenKeyName' => [ 'shape' => 'TokenKeyName', ], 'tokenSigningPublicKeys' => [ 'shape' => 'PublicKeyMap', ], 'status' => [ 'shape' => 'AuthorizerStatus', ], 'tags' => [ 'shape' => 'TagList', ], 'signingDisabled' => [ 'shape' => 'BooleanKey', ], 'enableCachingForHttp' => [ 'shape' => 'EnableCachingForHttp', ], ], ], 'CreateAuthorizerResponse' => [ 'type' => 'structure', 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', ], 'authorizerArn' => [ 'shape' => 'AuthorizerArn', ], ], ], 'CreateBillingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'billingGroupName', ], 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', 'location' => 'uri', 'locationName' => 'billingGroupName', ], 'billingGroupProperties' => [ 'shape' => 'BillingGroupProperties', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateBillingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', ], 'billingGroupArn' => [ 'shape' => 'BillingGroupArn', ], 'billingGroupId' => [ 'shape' => 'BillingGroupId', ], ], ], 'CreateCertificateFromCsrRequest' => [ 'type' => 'structure', 'required' => [ 'certificateSigningRequest', ], 'members' => [ 'certificateSigningRequest' => [ 'shape' => 'CertificateSigningRequest', ], 'setAsActive' => [ 'shape' => 'SetAsActive', 'location' => 'querystring', 'locationName' => 'setAsActive', ], ], ], 'CreateCertificateFromCsrResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], ], ], 'CreateCertificateProviderRequest' => [ 'type' => 'structure', 'required' => [ 'certificateProviderName', 'lambdaFunctionArn', 'accountDefaultForOperations', ], 'members' => [ 'certificateProviderName' => [ 'shape' => 'CertificateProviderName', 'location' => 'uri', 'locationName' => 'certificateProviderName', ], 'lambdaFunctionArn' => [ 'shape' => 'CertificateProviderFunctionArn', ], 'accountDefaultForOperations' => [ 'shape' => 'CertificateProviderAccountDefaultForOperations', ], 'clientToken' => [ 'shape' => 'ClientToken', 'idempotencyToken' => true, ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateCertificateProviderResponse' => [ 'type' => 'structure', 'members' => [ 'certificateProviderName' => [ 'shape' => 'CertificateProviderName', ], 'certificateProviderArn' => [ 'shape' => 'CertificateProviderArn', ], ], ], 'CreateCustomMetricRequest' => [ 'type' => 'structure', 'required' => [ 'metricName', 'metricType', 'clientRequestToken', ], 'members' => [ 'metricName' => [ 'shape' => 'MetricName', 'location' => 'uri', 'locationName' => 'metricName', ], 'displayName' => [ 'shape' => 'CustomMetricDisplayName', ], 'metricType' => [ 'shape' => 'CustomMetricType', ], 'tags' => [ 'shape' => 'TagList', ], 'clientRequestToken' => [ 'shape' => 'ClientRequestToken', 'idempotencyToken' => true, ], ], ], 'CreateCustomMetricResponse' => [ 'type' => 'structure', 'members' => [ 'metricName' => [ 'shape' => 'MetricName', ], 'metricArn' => [ 'shape' => 'CustomMetricArn', ], ], ], 'CreateDimensionRequest' => [ 'type' => 'structure', 'required' => [ 'name', 'type', 'stringValues', 'clientRequestToken', ], 'members' => [ 'name' => [ 'shape' => 'DimensionName', 'location' => 'uri', 'locationName' => 'name', ], 'type' => [ 'shape' => 'DimensionType', ], 'stringValues' => [ 'shape' => 'DimensionStringValues', ], 'tags' => [ 'shape' => 'TagList', ], 'clientRequestToken' => [ 'shape' => 'ClientRequestToken', 'idempotencyToken' => true, ], ], ], 'CreateDimensionResponse' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'DimensionName', ], 'arn' => [ 'shape' => 'DimensionArn', ], ], ], 'CreateDomainConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'domainConfigurationName', ], 'members' => [ 'domainConfigurationName' => [ 'shape' => 'DomainConfigurationName', 'location' => 'uri', 'locationName' => 'domainConfigurationName', ], 'domainName' => [ 'shape' => 'DomainName', ], 'serverCertificateArns' => [ 'shape' => 'ServerCertificateArns', ], 'validationCertificateArn' => [ 'shape' => 'AcmCertificateArn', ], 'authorizerConfig' => [ 'shape' => 'AuthorizerConfig', ], 'serviceType' => [ 'shape' => 'ServiceType', ], 'tags' => [ 'shape' => 'TagList', ], 'tlsConfig' => [ 'shape' => 'TlsConfig', ], 'serverCertificateConfig' => [ 'shape' => 'ServerCertificateConfig', ], ], ], 'CreateDomainConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'domainConfigurationName' => [ 'shape' => 'DomainConfigurationName', ], 'domainConfigurationArn' => [ 'shape' => 'DomainConfigurationArn', ], ], ], 'CreateDynamicThingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'thingGroupName', 'queryString', ], 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'uri', 'locationName' => 'thingGroupName', ], 'thingGroupProperties' => [ 'shape' => 'ThingGroupProperties', ], 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDynamicThingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', ], 'thingGroupArn' => [ 'shape' => 'ThingGroupArn', ], 'thingGroupId' => [ 'shape' => 'ThingGroupId', ], 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], ], ], 'CreateFleetMetricRequest' => [ 'type' => 'structure', 'required' => [ 'metricName', 'queryString', 'aggregationType', 'period', 'aggregationField', ], 'members' => [ 'metricName' => [ 'shape' => 'FleetMetricName', 'location' => 'uri', 'locationName' => 'metricName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'aggregationType' => [ 'shape' => 'AggregationType', ], 'period' => [ 'shape' => 'FleetMetricPeriod', ], 'aggregationField' => [ 'shape' => 'AggregationField', ], 'description' => [ 'shape' => 'FleetMetricDescription', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], 'indexName' => [ 'shape' => 'IndexName', ], 'unit' => [ 'shape' => 'FleetMetricUnit', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateFleetMetricResponse' => [ 'type' => 'structure', 'members' => [ 'metricName' => [ 'shape' => 'FleetMetricName', ], 'metricArn' => [ 'shape' => 'FleetMetricArn', ], ], ], 'CreateJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', 'targets', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'targets' => [ 'shape' => 'JobTargets', ], 'documentSource' => [ 'shape' => 'JobDocumentSource', ], 'document' => [ 'shape' => 'JobDocument', ], 'description' => [ 'shape' => 'JobDescription', ], 'presignedUrlConfig' => [ 'shape' => 'PresignedUrlConfig', ], 'targetSelection' => [ 'shape' => 'TargetSelection', ], 'jobExecutionsRolloutConfig' => [ 'shape' => 'JobExecutionsRolloutConfig', ], 'abortConfig' => [ 'shape' => 'AbortConfig', ], 'timeoutConfig' => [ 'shape' => 'TimeoutConfig', ], 'tags' => [ 'shape' => 'TagList', ], 'namespaceId' => [ 'shape' => 'NamespaceId', ], 'jobTemplateArn' => [ 'shape' => 'JobTemplateArn', ], 'jobExecutionsRetryConfig' => [ 'shape' => 'JobExecutionsRetryConfig', ], 'documentParameters' => [ 'shape' => 'ParameterMap', ], 'schedulingConfig' => [ 'shape' => 'SchedulingConfig', ], 'destinationPackageVersions' => [ 'shape' => 'DestinationPackageVersions', ], ], ], 'CreateJobResponse' => [ 'type' => 'structure', 'members' => [ 'jobArn' => [ 'shape' => 'JobArn', ], 'jobId' => [ 'shape' => 'JobId', ], 'description' => [ 'shape' => 'JobDescription', ], ], ], 'CreateJobTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'jobTemplateId', 'description', ], 'members' => [ 'jobTemplateId' => [ 'shape' => 'JobTemplateId', 'location' => 'uri', 'locationName' => 'jobTemplateId', ], 'jobArn' => [ 'shape' => 'JobArn', ], 'documentSource' => [ 'shape' => 'JobDocumentSource', ], 'document' => [ 'shape' => 'JobDocument', ], 'description' => [ 'shape' => 'JobDescription', ], 'presignedUrlConfig' => [ 'shape' => 'PresignedUrlConfig', ], 'jobExecutionsRolloutConfig' => [ 'shape' => 'JobExecutionsRolloutConfig', ], 'abortConfig' => [ 'shape' => 'AbortConfig', ], 'timeoutConfig' => [ 'shape' => 'TimeoutConfig', ], 'tags' => [ 'shape' => 'TagList', ], 'jobExecutionsRetryConfig' => [ 'shape' => 'JobExecutionsRetryConfig', ], 'maintenanceWindows' => [ 'shape' => 'MaintenanceWindows', ], 'destinationPackageVersions' => [ 'shape' => 'DestinationPackageVersions', ], ], ], 'CreateJobTemplateResponse' => [ 'type' => 'structure', 'members' => [ 'jobTemplateArn' => [ 'shape' => 'JobTemplateArn', ], 'jobTemplateId' => [ 'shape' => 'JobTemplateId', ], ], ], 'CreateKeysAndCertificateRequest' => [ 'type' => 'structure', 'members' => [ 'setAsActive' => [ 'shape' => 'SetAsActive', 'location' => 'querystring', 'locationName' => 'setAsActive', ], ], ], 'CreateKeysAndCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'keyPair' => [ 'shape' => 'KeyPair', ], ], ], 'CreateMitigationActionRequest' => [ 'type' => 'structure', 'required' => [ 'actionName', 'roleArn', 'actionParams', ], 'members' => [ 'actionName' => [ 'shape' => 'MitigationActionName', 'location' => 'uri', 'locationName' => 'actionName', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'actionParams' => [ 'shape' => 'MitigationActionParams', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateMitigationActionResponse' => [ 'type' => 'structure', 'members' => [ 'actionArn' => [ 'shape' => 'MitigationActionArn', ], 'actionId' => [ 'shape' => 'MitigationActionId', ], ], ], 'CreateOTAUpdateRequest' => [ 'type' => 'structure', 'required' => [ 'otaUpdateId', 'targets', 'files', 'roleArn', ], 'members' => [ 'otaUpdateId' => [ 'shape' => 'OTAUpdateId', 'location' => 'uri', 'locationName' => 'otaUpdateId', ], 'description' => [ 'shape' => 'OTAUpdateDescription', ], 'targets' => [ 'shape' => 'Targets', ], 'protocols' => [ 'shape' => 'Protocols', ], 'targetSelection' => [ 'shape' => 'TargetSelection', ], 'awsJobExecutionsRolloutConfig' => [ 'shape' => 'AwsJobExecutionsRolloutConfig', ], 'awsJobPresignedUrlConfig' => [ 'shape' => 'AwsJobPresignedUrlConfig', ], 'awsJobAbortConfig' => [ 'shape' => 'AwsJobAbortConfig', ], 'awsJobTimeoutConfig' => [ 'shape' => 'AwsJobTimeoutConfig', ], 'files' => [ 'shape' => 'OTAUpdateFiles', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'additionalParameters' => [ 'shape' => 'AdditionalParameterMap', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateOTAUpdateResponse' => [ 'type' => 'structure', 'members' => [ 'otaUpdateId' => [ 'shape' => 'OTAUpdateId', ], 'awsIotJobId' => [ 'shape' => 'AwsIotJobId', ], 'otaUpdateArn' => [ 'shape' => 'OTAUpdateArn', ], 'awsIotJobArn' => [ 'shape' => 'AwsIotJobArn', ], 'otaUpdateStatus' => [ 'shape' => 'OTAUpdateStatus', ], ], ], 'CreatePackageRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], 'description' => [ 'shape' => 'ResourceDescription', ], 'tags' => [ 'shape' => 'TagMap', ], 'clientToken' => [ 'shape' => 'ClientToken', 'idempotencyToken' => true, 'location' => 'querystring', 'locationName' => 'clientToken', ], ], ], 'CreatePackageResponse' => [ 'type' => 'structure', 'members' => [ 'packageName' => [ 'shape' => 'PackageName', ], 'packageArn' => [ 'shape' => 'PackageArn', ], 'description' => [ 'shape' => 'ResourceDescription', ], ], ], 'CreatePackageVersionRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', 'versionName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], 'versionName' => [ 'shape' => 'VersionName', 'location' => 'uri', 'locationName' => 'versionName', ], 'description' => [ 'shape' => 'ResourceDescription', ], 'attributes' => [ 'shape' => 'ResourceAttributes', ], 'tags' => [ 'shape' => 'TagMap', ], 'clientToken' => [ 'shape' => 'ClientToken', 'idempotencyToken' => true, 'location' => 'querystring', 'locationName' => 'clientToken', ], ], ], 'CreatePackageVersionResponse' => [ 'type' => 'structure', 'members' => [ 'packageVersionArn' => [ 'shape' => 'PackageVersionArn', ], 'packageName' => [ 'shape' => 'PackageName', ], 'versionName' => [ 'shape' => 'VersionName', ], 'description' => [ 'shape' => 'ResourceDescription', ], 'attributes' => [ 'shape' => 'ResourceAttributes', ], 'status' => [ 'shape' => 'PackageVersionStatus', ], 'errorReason' => [ 'shape' => 'PackageVersionErrorReason', ], ], ], 'CreatePolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyDocument', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreatePolicyResponse' => [ 'type' => 'structure', 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', ], 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', ], ], ], 'CreatePolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyDocument', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'setAsDefault' => [ 'shape' => 'SetAsDefault', 'location' => 'querystring', 'locationName' => 'setAsDefault', ], ], ], 'CreatePolicyVersionResponse' => [ 'type' => 'structure', 'members' => [ 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], ], ], 'CreateProvisioningClaimRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], ], ], 'CreateProvisioningClaimResponse' => [ 'type' => 'structure', 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'keyPair' => [ 'shape' => 'KeyPair', ], 'expiration' => [ 'shape' => 'DateType', ], ], ], 'CreateProvisioningTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', 'templateBody', 'provisioningRoleArn', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', ], 'description' => [ 'shape' => 'TemplateDescription', ], 'templateBody' => [ 'shape' => 'TemplateBody', ], 'enabled' => [ 'shape' => 'Enabled', ], 'provisioningRoleArn' => [ 'shape' => 'RoleArn', ], 'preProvisioningHook' => [ 'shape' => 'ProvisioningHook', ], 'tags' => [ 'shape' => 'TagList', ], 'type' => [ 'shape' => 'TemplateType', ], ], ], 'CreateProvisioningTemplateResponse' => [ 'type' => 'structure', 'members' => [ 'templateArn' => [ 'shape' => 'TemplateArn', ], 'templateName' => [ 'shape' => 'TemplateName', ], 'defaultVersionId' => [ 'shape' => 'TemplateVersionId', ], ], ], 'CreateProvisioningTemplateVersionRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', 'templateBody', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], 'templateBody' => [ 'shape' => 'TemplateBody', ], 'setAsDefault' => [ 'shape' => 'SetAsDefault', 'location' => 'querystring', 'locationName' => 'setAsDefault', ], ], ], 'CreateProvisioningTemplateVersionResponse' => [ 'type' => 'structure', 'members' => [ 'templateArn' => [ 'shape' => 'TemplateArn', ], 'templateName' => [ 'shape' => 'TemplateName', ], 'versionId' => [ 'shape' => 'TemplateVersionId', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], ], ], 'CreateRoleAliasRequest' => [ 'type' => 'structure', 'required' => [ 'roleAlias', 'roleArn', ], 'members' => [ 'roleAlias' => [ 'shape' => 'RoleAlias', 'location' => 'uri', 'locationName' => 'roleAlias', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'credentialDurationSeconds' => [ 'shape' => 'CredentialDurationSeconds', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateRoleAliasResponse' => [ 'type' => 'structure', 'members' => [ 'roleAlias' => [ 'shape' => 'RoleAlias', ], 'roleAliasArn' => [ 'shape' => 'RoleAliasArn', ], ], ], 'CreateScheduledAuditRequest' => [ 'type' => 'structure', 'required' => [ 'frequency', 'targetCheckNames', 'scheduledAuditName', ], 'members' => [ 'frequency' => [ 'shape' => 'AuditFrequency', ], 'dayOfMonth' => [ 'shape' => 'DayOfMonth', ], 'dayOfWeek' => [ 'shape' => 'DayOfWeek', ], 'targetCheckNames' => [ 'shape' => 'TargetAuditCheckNames', ], 'scheduledAuditName' => [ 'shape' => 'ScheduledAuditName', 'location' => 'uri', 'locationName' => 'scheduledAuditName', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateScheduledAuditResponse' => [ 'type' => 'structure', 'members' => [ 'scheduledAuditArn' => [ 'shape' => 'ScheduledAuditArn', ], ], ], 'CreateSecurityProfileRequest' => [ 'type' => 'structure', 'required' => [ 'securityProfileName', ], 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'uri', 'locationName' => 'securityProfileName', ], 'securityProfileDescription' => [ 'shape' => 'SecurityProfileDescription', ], 'behaviors' => [ 'shape' => 'Behaviors', ], 'alertTargets' => [ 'shape' => 'AlertTargets', ], 'additionalMetricsToRetain' => [ 'shape' => 'AdditionalMetricsToRetainList', 'deprecated' => true, 'deprecatedMessage' => 'Use additionalMetricsToRetainV2.', ], 'additionalMetricsToRetainV2' => [ 'shape' => 'AdditionalMetricsToRetainV2List', ], 'tags' => [ 'shape' => 'TagList', ], 'metricsExportConfig' => [ 'shape' => 'MetricsExportConfig', ], ], ], 'CreateSecurityProfileResponse' => [ 'type' => 'structure', 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', ], 'securityProfileArn' => [ 'shape' => 'SecurityProfileArn', ], ], ], 'CreateStreamRequest' => [ 'type' => 'structure', 'required' => [ 'streamId', 'files', 'roleArn', ], 'members' => [ 'streamId' => [ 'shape' => 'StreamId', 'location' => 'uri', 'locationName' => 'streamId', ], 'description' => [ 'shape' => 'StreamDescription', ], 'files' => [ 'shape' => 'StreamFiles', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateStreamResponse' => [ 'type' => 'structure', 'members' => [ 'streamId' => [ 'shape' => 'StreamId', ], 'streamArn' => [ 'shape' => 'StreamArn', ], 'description' => [ 'shape' => 'StreamDescription', ], 'streamVersion' => [ 'shape' => 'StreamVersion', ], ], ], 'CreateThingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'thingGroupName', ], 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'uri', 'locationName' => 'thingGroupName', ], 'parentGroupName' => [ 'shape' => 'ThingGroupName', ], 'thingGroupProperties' => [ 'shape' => 'ThingGroupProperties', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateThingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', ], 'thingGroupArn' => [ 'shape' => 'ThingGroupArn', ], 'thingGroupId' => [ 'shape' => 'ThingGroupId', ], ], ], 'CreateThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'attributePayload' => [ 'shape' => 'AttributePayload', ], 'billingGroupName' => [ 'shape' => 'BillingGroupName', ], ], ], 'CreateThingResponse' => [ 'type' => 'structure', 'members' => [ 'thingName' => [ 'shape' => 'ThingName', ], 'thingArn' => [ 'shape' => 'ThingArn', ], 'thingId' => [ 'shape' => 'ThingId', ], ], ], 'CreateThingTypeRequest' => [ 'type' => 'structure', 'required' => [ 'thingTypeName', ], 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'uri', 'locationName' => 'thingTypeName', ], 'thingTypeProperties' => [ 'shape' => 'ThingTypeProperties', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateThingTypeResponse' => [ 'type' => 'structure', 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'thingTypeArn' => [ 'shape' => 'ThingTypeArn', ], 'thingTypeId' => [ 'shape' => 'ThingTypeId', ], ], ], 'CreateTopicRuleDestinationRequest' => [ 'type' => 'structure', 'required' => [ 'destinationConfiguration', ], 'members' => [ 'destinationConfiguration' => [ 'shape' => 'TopicRuleDestinationConfiguration', ], ], ], 'CreateTopicRuleDestinationResponse' => [ 'type' => 'structure', 'members' => [ 'topicRuleDestination' => [ 'shape' => 'TopicRuleDestination', ], ], ], 'CreateTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', 'topicRulePayload', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], 'topicRulePayload' => [ 'shape' => 'TopicRulePayload', ], 'tags' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'x-amz-tagging', ], ], 'payload' => 'topicRulePayload', ], 'CreatedAtDate' => [ 'type' => 'timestamp', ], 'CreationDate' => [ 'type' => 'timestamp', ], 'CredentialDurationSeconds' => [ 'type' => 'integer', 'max' => 43200, 'min' => 900, ], 'CronExpression' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'CustomCodeSigning' => [ 'type' => 'structure', 'members' => [ 'signature' => [ 'shape' => 'CodeSigningSignature', ], 'certificateChain' => [ 'shape' => 'CodeSigningCertificateChain', ], 'hashAlgorithm' => [ 'shape' => 'HashAlgorithm', ], 'signatureAlgorithm' => [ 'shape' => 'SignatureAlgorithm', ], ], ], 'CustomMetricArn' => [ 'type' => 'string', ], 'CustomMetricDisplayName' => [ 'type' => 'string', 'max' => 128, 'pattern' => '[\\p{Graph}\\x20]*', ], 'CustomMetricType' => [ 'type' => 'string', 'enum' => [ 'string-list', 'ip-address-list', 'number-list', 'number', ], ], 'CustomerVersion' => [ 'type' => 'integer', 'min' => 1, ], 'DataCollectionPercentage' => [ 'type' => 'double', 'max' => 100, 'min' => 0, ], 'DateType' => [ 'type' => 'timestamp', ], 'DayOfMonth' => [ 'type' => 'string', 'pattern' => '^([1-9]|[12][0-9]|3[01])$|^LAST$', ], 'DayOfWeek' => [ 'type' => 'string', 'enum' => [ 'SUN', 'MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT', ], ], 'DeleteAccountAuditConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'deleteScheduledAudits' => [ 'shape' => 'DeleteScheduledAudits', 'location' => 'querystring', 'locationName' => 'deleteScheduledAudits', ], ], ], 'DeleteAccountAuditConfigurationResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteAdditionalMetricsToRetain' => [ 'type' => 'boolean', ], 'DeleteAlertTargets' => [ 'type' => 'boolean', ], 'DeleteAuditSuppressionRequest' => [ 'type' => 'structure', 'required' => [ 'checkName', 'resourceIdentifier', ], 'members' => [ 'checkName' => [ 'shape' => 'AuditCheckName', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], ], ], 'DeleteAuditSuppressionResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'authorizerName', ], 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', 'location' => 'uri', 'locationName' => 'authorizerName', ], ], ], 'DeleteAuthorizerResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteBehaviors' => [ 'type' => 'boolean', ], 'DeleteBillingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'billingGroupName', ], 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', 'location' => 'uri', 'locationName' => 'billingGroupName', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', 'location' => 'querystring', 'locationName' => 'expectedVersion', ], ], ], 'DeleteBillingGroupResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteCACertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'caCertificateId', ], ], ], 'DeleteCACertificateResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteCertificateProviderRequest' => [ 'type' => 'structure', 'required' => [ 'certificateProviderName', ], 'members' => [ 'certificateProviderName' => [ 'shape' => 'CertificateProviderName', 'location' => 'uri', 'locationName' => 'certificateProviderName', ], ], ], 'DeleteCertificateProviderResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'forceDelete' => [ 'shape' => 'ForceDelete', 'location' => 'querystring', 'locationName' => 'forceDelete', ], ], ], 'DeleteConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'DeleteCustomMetricRequest' => [ 'type' => 'structure', 'required' => [ 'metricName', ], 'members' => [ 'metricName' => [ 'shape' => 'MetricName', 'location' => 'uri', 'locationName' => 'metricName', ], ], ], 'DeleteCustomMetricResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteDimensionRequest' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'DimensionName', 'location' => 'uri', 'locationName' => 'name', ], ], ], 'DeleteDimensionResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteDomainConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'domainConfigurationName', ], 'members' => [ 'domainConfigurationName' => [ 'shape' => 'DomainConfigurationName', 'location' => 'uri', 'locationName' => 'domainConfigurationName', ], ], ], 'DeleteDomainConfigurationResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteDynamicThingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'thingGroupName', ], 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'uri', 'locationName' => 'thingGroupName', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', 'location' => 'querystring', 'locationName' => 'expectedVersion', ], ], ], 'DeleteDynamicThingGroupResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteFleetMetricRequest' => [ 'type' => 'structure', 'required' => [ 'metricName', ], 'members' => [ 'metricName' => [ 'shape' => 'FleetMetricName', 'location' => 'uri', 'locationName' => 'metricName', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', 'location' => 'querystring', 'locationName' => 'expectedVersion', ], ], ], 'DeleteJobExecutionRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', 'thingName', 'executionNumber', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'executionNumber' => [ 'shape' => 'ExecutionNumber', 'location' => 'uri', 'locationName' => 'executionNumber', ], 'force' => [ 'shape' => 'ForceFlag', 'location' => 'querystring', 'locationName' => 'force', ], 'namespaceId' => [ 'shape' => 'NamespaceId', 'location' => 'querystring', 'locationName' => 'namespaceId', ], ], ], 'DeleteJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'force' => [ 'shape' => 'ForceFlag', 'location' => 'querystring', 'locationName' => 'force', ], 'namespaceId' => [ 'shape' => 'NamespaceId', 'location' => 'querystring', 'locationName' => 'namespaceId', ], ], ], 'DeleteJobTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'jobTemplateId', ], 'members' => [ 'jobTemplateId' => [ 'shape' => 'JobTemplateId', 'location' => 'uri', 'locationName' => 'jobTemplateId', ], ], ], 'DeleteMetricsExportConfig' => [ 'type' => 'boolean', ], 'DeleteMitigationActionRequest' => [ 'type' => 'structure', 'required' => [ 'actionName', ], 'members' => [ 'actionName' => [ 'shape' => 'MitigationActionName', 'location' => 'uri', 'locationName' => 'actionName', ], ], ], 'DeleteMitigationActionResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteOTAUpdateRequest' => [ 'type' => 'structure', 'required' => [ 'otaUpdateId', ], 'members' => [ 'otaUpdateId' => [ 'shape' => 'OTAUpdateId', 'location' => 'uri', 'locationName' => 'otaUpdateId', ], 'deleteStream' => [ 'shape' => 'DeleteStream', 'location' => 'querystring', 'locationName' => 'deleteStream', ], 'forceDeleteAWSJob' => [ 'shape' => 'ForceDeleteAWSJob', 'location' => 'querystring', 'locationName' => 'forceDeleteAWSJob', ], ], ], 'DeleteOTAUpdateResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeletePackageRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], 'clientToken' => [ 'shape' => 'ClientToken', 'idempotencyToken' => true, 'location' => 'querystring', 'locationName' => 'clientToken', ], ], ], 'DeletePackageResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeletePackageVersionRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', 'versionName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], 'versionName' => [ 'shape' => 'VersionName', 'location' => 'uri', 'locationName' => 'versionName', ], 'clientToken' => [ 'shape' => 'ClientToken', 'idempotencyToken' => true, 'location' => 'querystring', 'locationName' => 'clientToken', ], ], ], 'DeletePackageVersionResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeletePolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], ], ], 'DeletePolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyVersionId', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', 'location' => 'uri', 'locationName' => 'policyVersionId', ], ], ], 'DeleteProvisioningTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], ], ], 'DeleteProvisioningTemplateResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteProvisioningTemplateVersionRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', 'versionId', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], 'versionId' => [ 'shape' => 'TemplateVersionId', 'location' => 'uri', 'locationName' => 'versionId', ], ], ], 'DeleteProvisioningTemplateVersionResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteRegistrationCodeRequest' => [ 'type' => 'structure', 'members' => [], ], 'DeleteRegistrationCodeResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteRoleAliasRequest' => [ 'type' => 'structure', 'required' => [ 'roleAlias', ], 'members' => [ 'roleAlias' => [ 'shape' => 'RoleAlias', 'location' => 'uri', 'locationName' => 'roleAlias', ], ], ], 'DeleteRoleAliasResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteScheduledAuditRequest' => [ 'type' => 'structure', 'required' => [ 'scheduledAuditName', ], 'members' => [ 'scheduledAuditName' => [ 'shape' => 'ScheduledAuditName', 'location' => 'uri', 'locationName' => 'scheduledAuditName', ], ], ], 'DeleteScheduledAuditResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteScheduledAudits' => [ 'type' => 'boolean', ], 'DeleteSecurityProfileRequest' => [ 'type' => 'structure', 'required' => [ 'securityProfileName', ], 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'uri', 'locationName' => 'securityProfileName', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', 'location' => 'querystring', 'locationName' => 'expectedVersion', ], ], ], 'DeleteSecurityProfileResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteStream' => [ 'type' => 'boolean', ], 'DeleteStreamRequest' => [ 'type' => 'structure', 'required' => [ 'streamId', ], 'members' => [ 'streamId' => [ 'shape' => 'StreamId', 'location' => 'uri', 'locationName' => 'streamId', ], ], ], 'DeleteStreamResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteThingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'thingGroupName', ], 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'uri', 'locationName' => 'thingGroupName', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', 'location' => 'querystring', 'locationName' => 'expectedVersion', ], ], ], 'DeleteThingGroupResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', 'location' => 'querystring', 'locationName' => 'expectedVersion', ], ], ], 'DeleteThingResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteThingTypeRequest' => [ 'type' => 'structure', 'required' => [ 'thingTypeName', ], 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'uri', 'locationName' => 'thingTypeName', ], ], ], 'DeleteThingTypeResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteTopicRuleDestinationRequest' => [ 'type' => 'structure', 'required' => [ 'arn', ], 'members' => [ 'arn' => [ 'shape' => 'AwsArn', 'location' => 'uri', 'locationName' => 'arn', ], ], ], 'DeleteTopicRuleDestinationResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], ], ], 'DeleteV2LoggingLevelRequest' => [ 'type' => 'structure', 'required' => [ 'targetType', 'targetName', ], 'members' => [ 'targetType' => [ 'shape' => 'LogTargetType', 'location' => 'querystring', 'locationName' => 'targetType', ], 'targetName' => [ 'shape' => 'LogTargetName', 'location' => 'querystring', 'locationName' => 'targetName', ], ], ], 'DeliveryStreamName' => [ 'type' => 'string', ], 'Denied' => [ 'type' => 'structure', 'members' => [ 'implicitDeny' => [ 'shape' => 'ImplicitDeny', ], 'explicitDeny' => [ 'shape' => 'ExplicitDeny', ], ], ], 'DeprecateThingTypeRequest' => [ 'type' => 'structure', 'required' => [ 'thingTypeName', ], 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'uri', 'locationName' => 'thingTypeName', ], 'undoDeprecate' => [ 'shape' => 'UndoDeprecate', ], ], ], 'DeprecateThingTypeResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeprecationDate' => [ 'type' => 'timestamp', ], 'DescribeAccountAuditConfigurationRequest' => [ 'type' => 'structure', 'members' => [], ], 'DescribeAccountAuditConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'roleArn' => [ 'shape' => 'RoleArn', ], 'auditNotificationTargetConfigurations' => [ 'shape' => 'AuditNotificationTargetConfigurations', ], 'auditCheckConfigurations' => [ 'shape' => 'AuditCheckConfigurations', ], ], ], 'DescribeAuditFindingRequest' => [ 'type' => 'structure', 'required' => [ 'findingId', ], 'members' => [ 'findingId' => [ 'shape' => 'FindingId', 'location' => 'uri', 'locationName' => 'findingId', ], ], ], 'DescribeAuditFindingResponse' => [ 'type' => 'structure', 'members' => [ 'finding' => [ 'shape' => 'AuditFinding', ], ], ], 'DescribeAuditMitigationActionsTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', ], 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', 'location' => 'uri', 'locationName' => 'taskId', ], ], ], 'DescribeAuditMitigationActionsTaskResponse' => [ 'type' => 'structure', 'members' => [ 'taskStatus' => [ 'shape' => 'AuditMitigationActionsTaskStatus', ], 'startTime' => [ 'shape' => 'Timestamp', ], 'endTime' => [ 'shape' => 'Timestamp', ], 'taskStatistics' => [ 'shape' => 'AuditMitigationActionsTaskStatistics', ], 'target' => [ 'shape' => 'AuditMitigationActionsTaskTarget', ], 'auditCheckToActionsMapping' => [ 'shape' => 'AuditCheckToActionsMapping', ], 'actionsDefinition' => [ 'shape' => 'MitigationActionList', ], ], ], 'DescribeAuditSuppressionRequest' => [ 'type' => 'structure', 'required' => [ 'checkName', 'resourceIdentifier', ], 'members' => [ 'checkName' => [ 'shape' => 'AuditCheckName', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], ], ], 'DescribeAuditSuppressionResponse' => [ 'type' => 'structure', 'members' => [ 'checkName' => [ 'shape' => 'AuditCheckName', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], 'expirationDate' => [ 'shape' => 'Timestamp', ], 'suppressIndefinitely' => [ 'shape' => 'SuppressIndefinitely', ], 'description' => [ 'shape' => 'AuditDescription', ], ], ], 'DescribeAuditTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', ], 'members' => [ 'taskId' => [ 'shape' => 'AuditTaskId', 'location' => 'uri', 'locationName' => 'taskId', ], ], ], 'DescribeAuditTaskResponse' => [ 'type' => 'structure', 'members' => [ 'taskStatus' => [ 'shape' => 'AuditTaskStatus', ], 'taskType' => [ 'shape' => 'AuditTaskType', ], 'taskStartTime' => [ 'shape' => 'Timestamp', ], 'taskStatistics' => [ 'shape' => 'TaskStatistics', ], 'scheduledAuditName' => [ 'shape' => 'ScheduledAuditName', ], 'auditDetails' => [ 'shape' => 'AuditDetails', ], ], ], 'DescribeAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'authorizerName', ], 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', 'location' => 'uri', 'locationName' => 'authorizerName', ], ], ], 'DescribeAuthorizerResponse' => [ 'type' => 'structure', 'members' => [ 'authorizerDescription' => [ 'shape' => 'AuthorizerDescription', ], ], ], 'DescribeBillingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'billingGroupName', ], 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', 'location' => 'uri', 'locationName' => 'billingGroupName', ], ], ], 'DescribeBillingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', ], 'billingGroupId' => [ 'shape' => 'BillingGroupId', ], 'billingGroupArn' => [ 'shape' => 'BillingGroupArn', ], 'version' => [ 'shape' => 'Version', ], 'billingGroupProperties' => [ 'shape' => 'BillingGroupProperties', ], 'billingGroupMetadata' => [ 'shape' => 'BillingGroupMetadata', ], ], ], 'DescribeCACertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'caCertificateId', ], ], ], 'DescribeCACertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateDescription' => [ 'shape' => 'CACertificateDescription', ], 'registrationConfig' => [ 'shape' => 'RegistrationConfig', ], ], ], 'DescribeCertificateProviderRequest' => [ 'type' => 'structure', 'required' => [ 'certificateProviderName', ], 'members' => [ 'certificateProviderName' => [ 'shape' => 'CertificateProviderName', 'location' => 'uri', 'locationName' => 'certificateProviderName', ], ], ], 'DescribeCertificateProviderResponse' => [ 'type' => 'structure', 'members' => [ 'certificateProviderName' => [ 'shape' => 'CertificateProviderName', ], 'certificateProviderArn' => [ 'shape' => 'CertificateProviderArn', ], 'lambdaFunctionArn' => [ 'shape' => 'CertificateProviderFunctionArn', ], 'accountDefaultForOperations' => [ 'shape' => 'CertificateProviderAccountDefaultForOperations', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], ], ], 'DescribeCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], ], ], 'DescribeCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateDescription' => [ 'shape' => 'CertificateDescription', ], ], ], 'DescribeCustomMetricRequest' => [ 'type' => 'structure', 'required' => [ 'metricName', ], 'members' => [ 'metricName' => [ 'shape' => 'MetricName', 'location' => 'uri', 'locationName' => 'metricName', ], ], ], 'DescribeCustomMetricResponse' => [ 'type' => 'structure', 'members' => [ 'metricName' => [ 'shape' => 'MetricName', ], 'metricArn' => [ 'shape' => 'CustomMetricArn', ], 'metricType' => [ 'shape' => 'CustomMetricType', ], 'displayName' => [ 'shape' => 'CustomMetricDisplayName', ], 'creationDate' => [ 'shape' => 'Timestamp', ], 'lastModifiedDate' => [ 'shape' => 'Timestamp', ], ], ], 'DescribeDefaultAuthorizerRequest' => [ 'type' => 'structure', 'members' => [], ], 'DescribeDefaultAuthorizerResponse' => [ 'type' => 'structure', 'members' => [ 'authorizerDescription' => [ 'shape' => 'AuthorizerDescription', ], ], ], 'DescribeDetectMitigationActionsTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', ], 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', 'location' => 'uri', 'locationName' => 'taskId', ], ], ], 'DescribeDetectMitigationActionsTaskResponse' => [ 'type' => 'structure', 'members' => [ 'taskSummary' => [ 'shape' => 'DetectMitigationActionsTaskSummary', ], ], ], 'DescribeDimensionRequest' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'DimensionName', 'location' => 'uri', 'locationName' => 'name', ], ], ], 'DescribeDimensionResponse' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'DimensionName', ], 'arn' => [ 'shape' => 'DimensionArn', ], 'type' => [ 'shape' => 'DimensionType', ], 'stringValues' => [ 'shape' => 'DimensionStringValues', ], 'creationDate' => [ 'shape' => 'Timestamp', ], 'lastModifiedDate' => [ 'shape' => 'Timestamp', ], ], ], 'DescribeDomainConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'domainConfigurationName', ], 'members' => [ 'domainConfigurationName' => [ 'shape' => 'ReservedDomainConfigurationName', 'location' => 'uri', 'locationName' => 'domainConfigurationName', ], ], ], 'DescribeDomainConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'domainConfigurationName' => [ 'shape' => 'ReservedDomainConfigurationName', ], 'domainConfigurationArn' => [ 'shape' => 'DomainConfigurationArn', ], 'domainName' => [ 'shape' => 'DomainName', ], 'serverCertificates' => [ 'shape' => 'ServerCertificates', ], 'authorizerConfig' => [ 'shape' => 'AuthorizerConfig', ], 'domainConfigurationStatus' => [ 'shape' => 'DomainConfigurationStatus', ], 'serviceType' => [ 'shape' => 'ServiceType', ], 'domainType' => [ 'shape' => 'DomainType', ], 'lastStatusChangeDate' => [ 'shape' => 'DateType', ], 'tlsConfig' => [ 'shape' => 'TlsConfig', ], 'serverCertificateConfig' => [ 'shape' => 'ServerCertificateConfig', ], ], ], 'DescribeEndpointRequest' => [ 'type' => 'structure', 'members' => [ 'endpointType' => [ 'shape' => 'EndpointType', 'location' => 'querystring', 'locationName' => 'endpointType', ], ], ], 'DescribeEndpointResponse' => [ 'type' => 'structure', 'members' => [ 'endpointAddress' => [ 'shape' => 'EndpointAddress', ], ], ], 'DescribeEventConfigurationsRequest' => [ 'type' => 'structure', 'members' => [], ], 'DescribeEventConfigurationsResponse' => [ 'type' => 'structure', 'members' => [ 'eventConfigurations' => [ 'shape' => 'EventConfigurations', ], 'creationDate' => [ 'shape' => 'CreationDate', ], 'lastModifiedDate' => [ 'shape' => 'LastModifiedDate', ], ], ], 'DescribeFleetMetricRequest' => [ 'type' => 'structure', 'required' => [ 'metricName', ], 'members' => [ 'metricName' => [ 'shape' => 'FleetMetricName', 'location' => 'uri', 'locationName' => 'metricName', ], ], ], 'DescribeFleetMetricResponse' => [ 'type' => 'structure', 'members' => [ 'metricName' => [ 'shape' => 'FleetMetricName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'aggregationType' => [ 'shape' => 'AggregationType', ], 'period' => [ 'shape' => 'FleetMetricPeriod', ], 'aggregationField' => [ 'shape' => 'AggregationField', ], 'description' => [ 'shape' => 'FleetMetricDescription', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], 'indexName' => [ 'shape' => 'IndexName', ], 'creationDate' => [ 'shape' => 'CreationDate', ], 'lastModifiedDate' => [ 'shape' => 'LastModifiedDate', ], 'unit' => [ 'shape' => 'FleetMetricUnit', ], 'version' => [ 'shape' => 'Version', ], 'metricArn' => [ 'shape' => 'FleetMetricArn', ], ], ], 'DescribeIndexRequest' => [ 'type' => 'structure', 'required' => [ 'indexName', ], 'members' => [ 'indexName' => [ 'shape' => 'IndexName', 'location' => 'uri', 'locationName' => 'indexName', ], ], ], 'DescribeIndexResponse' => [ 'type' => 'structure', 'members' => [ 'indexName' => [ 'shape' => 'IndexName', ], 'indexStatus' => [ 'shape' => 'IndexStatus', ], 'schema' => [ 'shape' => 'IndexSchema', ], ], ], 'DescribeJobExecutionRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', 'thingName', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'executionNumber' => [ 'shape' => 'ExecutionNumber', 'location' => 'querystring', 'locationName' => 'executionNumber', ], ], ], 'DescribeJobExecutionResponse' => [ 'type' => 'structure', 'members' => [ 'execution' => [ 'shape' => 'JobExecution', ], ], ], 'DescribeJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], ], ], 'DescribeJobResponse' => [ 'type' => 'structure', 'members' => [ 'documentSource' => [ 'shape' => 'JobDocumentSource', ], 'job' => [ 'shape' => 'Job', ], ], ], 'DescribeJobTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'jobTemplateId', ], 'members' => [ 'jobTemplateId' => [ 'shape' => 'JobTemplateId', 'location' => 'uri', 'locationName' => 'jobTemplateId', ], ], ], 'DescribeJobTemplateResponse' => [ 'type' => 'structure', 'members' => [ 'jobTemplateArn' => [ 'shape' => 'JobTemplateArn', ], 'jobTemplateId' => [ 'shape' => 'JobTemplateId', ], 'description' => [ 'shape' => 'JobDescription', ], 'documentSource' => [ 'shape' => 'JobDocumentSource', ], 'document' => [ 'shape' => 'JobDocument', ], 'createdAt' => [ 'shape' => 'DateType', ], 'presignedUrlConfig' => [ 'shape' => 'PresignedUrlConfig', ], 'jobExecutionsRolloutConfig' => [ 'shape' => 'JobExecutionsRolloutConfig', ], 'abortConfig' => [ 'shape' => 'AbortConfig', ], 'timeoutConfig' => [ 'shape' => 'TimeoutConfig', ], 'jobExecutionsRetryConfig' => [ 'shape' => 'JobExecutionsRetryConfig', ], 'maintenanceWindows' => [ 'shape' => 'MaintenanceWindows', ], 'destinationPackageVersions' => [ 'shape' => 'DestinationPackageVersions', ], ], ], 'DescribeManagedJobTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', ], 'members' => [ 'templateName' => [ 'shape' => 'ManagedJobTemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], 'templateVersion' => [ 'shape' => 'ManagedTemplateVersion', 'location' => 'querystring', 'locationName' => 'templateVersion', ], ], ], 'DescribeManagedJobTemplateResponse' => [ 'type' => 'structure', 'members' => [ 'templateName' => [ 'shape' => 'ManagedJobTemplateName', ], 'templateArn' => [ 'shape' => 'JobTemplateArn', ], 'description' => [ 'shape' => 'JobDescription', ], 'templateVersion' => [ 'shape' => 'ManagedTemplateVersion', ], 'environments' => [ 'shape' => 'Environments', ], 'documentParameters' => [ 'shape' => 'DocumentParameters', ], 'document' => [ 'shape' => 'JobDocument', ], ], ], 'DescribeMitigationActionRequest' => [ 'type' => 'structure', 'required' => [ 'actionName', ], 'members' => [ 'actionName' => [ 'shape' => 'MitigationActionName', 'location' => 'uri', 'locationName' => 'actionName', ], ], ], 'DescribeMitigationActionResponse' => [ 'type' => 'structure', 'members' => [ 'actionName' => [ 'shape' => 'MitigationActionName', ], 'actionType' => [ 'shape' => 'MitigationActionType', ], 'actionArn' => [ 'shape' => 'MitigationActionArn', ], 'actionId' => [ 'shape' => 'MitigationActionId', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'actionParams' => [ 'shape' => 'MitigationActionParams', ], 'creationDate' => [ 'shape' => 'Timestamp', ], 'lastModifiedDate' => [ 'shape' => 'Timestamp', ], ], ], 'DescribeProvisioningTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], ], ], 'DescribeProvisioningTemplateResponse' => [ 'type' => 'structure', 'members' => [ 'templateArn' => [ 'shape' => 'TemplateArn', ], 'templateName' => [ 'shape' => 'TemplateName', ], 'description' => [ 'shape' => 'TemplateDescription', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'defaultVersionId' => [ 'shape' => 'TemplateVersionId', ], 'templateBody' => [ 'shape' => 'TemplateBody', ], 'enabled' => [ 'shape' => 'Enabled', ], 'provisioningRoleArn' => [ 'shape' => 'RoleArn', ], 'preProvisioningHook' => [ 'shape' => 'ProvisioningHook', ], 'type' => [ 'shape' => 'TemplateType', ], ], ], 'DescribeProvisioningTemplateVersionRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', 'versionId', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], 'versionId' => [ 'shape' => 'TemplateVersionId', 'location' => 'uri', 'locationName' => 'versionId', ], ], ], 'DescribeProvisioningTemplateVersionResponse' => [ 'type' => 'structure', 'members' => [ 'versionId' => [ 'shape' => 'TemplateVersionId', ], 'creationDate' => [ 'shape' => 'DateType', ], 'templateBody' => [ 'shape' => 'TemplateBody', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], ], ], 'DescribeRoleAliasRequest' => [ 'type' => 'structure', 'required' => [ 'roleAlias', ], 'members' => [ 'roleAlias' => [ 'shape' => 'RoleAlias', 'location' => 'uri', 'locationName' => 'roleAlias', ], ], ], 'DescribeRoleAliasResponse' => [ 'type' => 'structure', 'members' => [ 'roleAliasDescription' => [ 'shape' => 'RoleAliasDescription', ], ], ], 'DescribeScheduledAuditRequest' => [ 'type' => 'structure', 'required' => [ 'scheduledAuditName', ], 'members' => [ 'scheduledAuditName' => [ 'shape' => 'ScheduledAuditName', 'location' => 'uri', 'locationName' => 'scheduledAuditName', ], ], ], 'DescribeScheduledAuditResponse' => [ 'type' => 'structure', 'members' => [ 'frequency' => [ 'shape' => 'AuditFrequency', ], 'dayOfMonth' => [ 'shape' => 'DayOfMonth', ], 'dayOfWeek' => [ 'shape' => 'DayOfWeek', ], 'targetCheckNames' => [ 'shape' => 'TargetAuditCheckNames', ], 'scheduledAuditName' => [ 'shape' => 'ScheduledAuditName', ], 'scheduledAuditArn' => [ 'shape' => 'ScheduledAuditArn', ], ], ], 'DescribeSecurityProfileRequest' => [ 'type' => 'structure', 'required' => [ 'securityProfileName', ], 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'uri', 'locationName' => 'securityProfileName', ], ], ], 'DescribeSecurityProfileResponse' => [ 'type' => 'structure', 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', ], 'securityProfileArn' => [ 'shape' => 'SecurityProfileArn', ], 'securityProfileDescription' => [ 'shape' => 'SecurityProfileDescription', ], 'behaviors' => [ 'shape' => 'Behaviors', ], 'alertTargets' => [ 'shape' => 'AlertTargets', ], 'additionalMetricsToRetain' => [ 'shape' => 'AdditionalMetricsToRetainList', 'deprecated' => true, 'deprecatedMessage' => 'Use additionalMetricsToRetainV2.', ], 'additionalMetricsToRetainV2' => [ 'shape' => 'AdditionalMetricsToRetainV2List', ], 'version' => [ 'shape' => 'Version', ], 'creationDate' => [ 'shape' => 'Timestamp', ], 'lastModifiedDate' => [ 'shape' => 'Timestamp', ], 'metricsExportConfig' => [ 'shape' => 'MetricsExportConfig', ], ], ], 'DescribeStreamRequest' => [ 'type' => 'structure', 'required' => [ 'streamId', ], 'members' => [ 'streamId' => [ 'shape' => 'StreamId', 'location' => 'uri', 'locationName' => 'streamId', ], ], ], 'DescribeStreamResponse' => [ 'type' => 'structure', 'members' => [ 'streamInfo' => [ 'shape' => 'StreamInfo', ], ], ], 'DescribeThingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'thingGroupName', ], 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'uri', 'locationName' => 'thingGroupName', ], ], ], 'DescribeThingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', ], 'thingGroupId' => [ 'shape' => 'ThingGroupId', ], 'thingGroupArn' => [ 'shape' => 'ThingGroupArn', ], 'version' => [ 'shape' => 'Version', ], 'thingGroupProperties' => [ 'shape' => 'ThingGroupProperties', ], 'thingGroupMetadata' => [ 'shape' => 'ThingGroupMetadata', ], 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], 'status' => [ 'shape' => 'DynamicGroupStatus', ], ], ], 'DescribeThingRegistrationTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', ], 'members' => [ 'taskId' => [ 'shape' => 'TaskId', 'location' => 'uri', 'locationName' => 'taskId', ], ], ], 'DescribeThingRegistrationTaskResponse' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'TaskId', ], 'creationDate' => [ 'shape' => 'CreationDate', ], 'lastModifiedDate' => [ 'shape' => 'LastModifiedDate', ], 'templateBody' => [ 'shape' => 'TemplateBody', ], 'inputFileBucket' => [ 'shape' => 'RegistryS3BucketName', ], 'inputFileKey' => [ 'shape' => 'RegistryS3KeyName', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'status' => [ 'shape' => 'Status', ], 'message' => [ 'shape' => 'ErrorMessage', ], 'successCount' => [ 'shape' => 'Count', ], 'failureCount' => [ 'shape' => 'Count', ], 'percentageProgress' => [ 'shape' => 'Percentage', ], ], ], 'DescribeThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], ], ], 'DescribeThingResponse' => [ 'type' => 'structure', 'members' => [ 'defaultClientId' => [ 'shape' => 'ClientId', ], 'thingName' => [ 'shape' => 'ThingName', ], 'thingId' => [ 'shape' => 'ThingId', ], 'thingArn' => [ 'shape' => 'ThingArn', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'attributes' => [ 'shape' => 'Attributes', ], 'version' => [ 'shape' => 'Version', ], 'billingGroupName' => [ 'shape' => 'BillingGroupName', ], ], ], 'DescribeThingTypeRequest' => [ 'type' => 'structure', 'required' => [ 'thingTypeName', ], 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'uri', 'locationName' => 'thingTypeName', ], ], ], 'DescribeThingTypeResponse' => [ 'type' => 'structure', 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'thingTypeId' => [ 'shape' => 'ThingTypeId', ], 'thingTypeArn' => [ 'shape' => 'ThingTypeArn', ], 'thingTypeProperties' => [ 'shape' => 'ThingTypeProperties', ], 'thingTypeMetadata' => [ 'shape' => 'ThingTypeMetadata', ], ], ], 'Description' => [ 'type' => 'string', ], 'Destination' => [ 'type' => 'structure', 'members' => [ 's3Destination' => [ 'shape' => 'S3Destination', ], ], ], 'DestinationPackageVersions' => [ 'type' => 'list', 'member' => [ 'shape' => 'PackageVersionArn', ], ], 'DetachPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'target', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'target' => [ 'shape' => 'PolicyTarget', ], ], ], 'DetachPrincipalPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'principal', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-iot-principal', ], ], ], 'DetachSecurityProfileRequest' => [ 'type' => 'structure', 'required' => [ 'securityProfileName', 'securityProfileTargetArn', ], 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'uri', 'locationName' => 'securityProfileName', ], 'securityProfileTargetArn' => [ 'shape' => 'SecurityProfileTargetArn', 'location' => 'querystring', 'locationName' => 'securityProfileTargetArn', ], ], ], 'DetachSecurityProfileResponse' => [ 'type' => 'structure', 'members' => [], ], 'DetachThingPrincipalRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', 'principal', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-principal', ], ], ], 'DetachThingPrincipalResponse' => [ 'type' => 'structure', 'members' => [], ], 'DetailsKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'DetailsMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'DetailsKey', ], 'value' => [ 'shape' => 'DetailsValue', ], ], 'DetailsValue' => [ 'type' => 'string', 'min' => 1, 'pattern' => '[^\\p{C}]+', ], 'DetectMitigationActionExecution' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', ], 'violationId' => [ 'shape' => 'ViolationId', ], 'actionName' => [ 'shape' => 'MitigationActionName', ], 'thingName' => [ 'shape' => 'DeviceDefenderThingName', ], 'executionStartDate' => [ 'shape' => 'Timestamp', ], 'executionEndDate' => [ 'shape' => 'Timestamp', ], 'status' => [ 'shape' => 'DetectMitigationActionExecutionStatus', ], 'errorCode' => [ 'shape' => 'DetectMitigationActionExecutionErrorCode', ], 'message' => [ 'shape' => 'ErrorMessage', ], ], ], 'DetectMitigationActionExecutionErrorCode' => [ 'type' => 'string', ], 'DetectMitigationActionExecutionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DetectMitigationActionExecution', ], ], 'DetectMitigationActionExecutionStatus' => [ 'type' => 'string', 'enum' => [ 'IN_PROGRESS', 'SUCCESSFUL', 'FAILED', 'SKIPPED', ], ], 'DetectMitigationActionsTaskStatistics' => [ 'type' => 'structure', 'members' => [ 'actionsExecuted' => [ 'shape' => 'GenericLongValue', ], 'actionsSkipped' => [ 'shape' => 'GenericLongValue', ], 'actionsFailed' => [ 'shape' => 'GenericLongValue', ], ], ], 'DetectMitigationActionsTaskStatus' => [ 'type' => 'string', 'enum' => [ 'IN_PROGRESS', 'SUCCESSFUL', 'FAILED', 'CANCELED', ], ], 'DetectMitigationActionsTaskSummary' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', ], 'taskStatus' => [ 'shape' => 'DetectMitigationActionsTaskStatus', ], 'taskStartTime' => [ 'shape' => 'Timestamp', ], 'taskEndTime' => [ 'shape' => 'Timestamp', ], 'target' => [ 'shape' => 'DetectMitigationActionsTaskTarget', ], 'violationEventOccurrenceRange' => [ 'shape' => 'ViolationEventOccurrenceRange', ], 'onlyActiveViolationsIncluded' => [ 'shape' => 'PrimitiveBoolean', ], 'suppressedAlertsIncluded' => [ 'shape' => 'PrimitiveBoolean', ], 'actionsDefinition' => [ 'shape' => 'MitigationActionList', ], 'taskStatistics' => [ 'shape' => 'DetectMitigationActionsTaskStatistics', ], ], ], 'DetectMitigationActionsTaskSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DetectMitigationActionsTaskSummary', ], ], 'DetectMitigationActionsTaskTarget' => [ 'type' => 'structure', 'members' => [ 'violationIds' => [ 'shape' => 'TargetViolationIdsForDetectMitigationActions', ], 'securityProfileName' => [ 'shape' => 'SecurityProfileName', ], 'behaviorName' => [ 'shape' => 'BehaviorName', ], ], ], 'DetectMitigationActionsToExecuteList' => [ 'type' => 'list', 'member' => [ 'shape' => 'MitigationActionName', ], 'max' => 5, 'min' => 1, ], 'DeviceCertificateUpdateAction' => [ 'type' => 'string', 'enum' => [ 'DEACTIVATE', ], ], 'DeviceDefenderIndexingMode' => [ 'type' => 'string', 'enum' => [ 'OFF', 'VIOLATIONS', ], ], 'DeviceDefenderThingName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'DimensionArn' => [ 'type' => 'string', ], 'DimensionName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'DimensionNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'DimensionName', ], ], 'DimensionStringValue' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'DimensionStringValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'DimensionStringValue', ], 'max' => 100, 'min' => 1, ], 'DimensionType' => [ 'type' => 'string', 'enum' => [ 'TOPIC_FILTER', ], ], 'DimensionValueOperator' => [ 'type' => 'string', 'enum' => [ 'IN', 'NOT_IN', ], ], 'DisableAllLogs' => [ 'type' => 'boolean', ], 'DisableTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], ], ], 'DisconnectReason' => [ 'type' => 'string', ], 'DocumentParameter' => [ 'type' => 'structure', 'members' => [ 'key' => [ 'shape' => 'ParameterKey', ], 'description' => [ 'shape' => 'JobDescription', ], 'regex' => [ 'shape' => 'Regex', ], 'example' => [ 'shape' => 'Example', ], 'optional' => [ 'shape' => 'Optional', ], ], ], 'DocumentParameters' => [ 'type' => 'list', 'member' => [ 'shape' => 'DocumentParameter', ], ], 'DomainConfigurationArn' => [ 'type' => 'string', ], 'DomainConfigurationName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w.-]+', ], 'DomainConfigurationStatus' => [ 'type' => 'string', 'enum' => [ 'ENABLED', 'DISABLED', ], ], 'DomainConfigurationSummary' => [ 'type' => 'structure', 'members' => [ 'domainConfigurationName' => [ 'shape' => 'ReservedDomainConfigurationName', ], 'domainConfigurationArn' => [ 'shape' => 'DomainConfigurationArn', ], 'serviceType' => [ 'shape' => 'ServiceType', ], ], ], 'DomainConfigurations' => [ 'type' => 'list', 'member' => [ 'shape' => 'DomainConfigurationSummary', ], ], 'DomainName' => [ 'type' => 'string', 'max' => 253, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'DomainType' => [ 'type' => 'string', 'enum' => [ 'ENDPOINT', 'AWS_MANAGED', 'CUSTOMER_MANAGED', ], ], 'DurationInMinutes' => [ 'type' => 'integer', 'max' => 1430, 'min' => 1, ], 'DurationSeconds' => [ 'type' => 'integer', ], 'DynamicGroupStatus' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'BUILDING', 'REBUILDING', ], ], 'DynamoDBAction' => [ 'type' => 'structure', 'required' => [ 'tableName', 'roleArn', 'hashKeyField', 'hashKeyValue', ], 'members' => [ 'tableName' => [ 'shape' => 'TableName', ], 'roleArn' => [ 'shape' => 'AwsArn', ], 'operation' => [ 'shape' => 'DynamoOperation', ], 'hashKeyField' => [ 'shape' => 'HashKeyField', ], 'hashKeyValue' => [ 'shape' => 'HashKeyValue', ], 'hashKeyType' => [ 'shape' => 'DynamoKeyType', ], 'rangeKeyField' => [ 'shape' => 'RangeKeyField', ], 'rangeKeyValue' => [ 'shape' => 'RangeKeyValue', ], 'rangeKeyType' => [ 'shape' => 'DynamoKeyType', ], 'payloadField' => [ 'shape' => 'PayloadField', ], ], ], 'DynamoDBv2Action' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'putItem', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'putItem' => [ 'shape' => 'PutItemInput', ], ], ], 'DynamoKeyType' => [ 'type' => 'string', 'enum' => [ 'STRING', 'NUMBER', ], ], 'DynamoOperation' => [ 'type' => 'string', ], 'EffectivePolicies' => [ 'type' => 'list', 'member' => [ 'shape' => 'EffectivePolicy', ], ], 'EffectivePolicy' => [ 'type' => 'structure', 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', ], 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], ], ], 'ElasticsearchAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'endpoint', 'index', 'type', 'id', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'endpoint' => [ 'shape' => 'ElasticsearchEndpoint', ], 'index' => [ 'shape' => 'ElasticsearchIndex', ], 'type' => [ 'shape' => 'ElasticsearchType', ], 'id' => [ 'shape' => 'ElasticsearchId', ], ], ], 'ElasticsearchEndpoint' => [ 'type' => 'string', 'pattern' => 'https?://.*', ], 'ElasticsearchId' => [ 'type' => 'string', ], 'ElasticsearchIndex' => [ 'type' => 'string', ], 'ElasticsearchType' => [ 'type' => 'string', ], 'EnableCachingForHttp' => [ 'type' => 'boolean', ], 'EnableIoTLoggingParams' => [ 'type' => 'structure', 'required' => [ 'roleArnForLogging', 'logLevel', ], 'members' => [ 'roleArnForLogging' => [ 'shape' => 'RoleArn', ], 'logLevel' => [ 'shape' => 'LogLevel', ], ], ], 'EnableOCSPCheck' => [ 'type' => 'boolean', ], 'EnableTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], ], ], 'Enabled' => [ 'type' => 'boolean', ], 'EnabledBoolean' => [ 'type' => 'boolean', 'box' => true, ], 'EndpointAddress' => [ 'type' => 'string', ], 'EndpointType' => [ 'type' => 'string', 'max' => 128, 'pattern' => '[\\s\\S]*', ], 'Environment' => [ 'type' => 'string', 'pattern' => '[^\\p{C}]+', ], 'Environments' => [ 'type' => 'list', 'member' => [ 'shape' => 'Environment', ], ], 'ErrorCode' => [ 'type' => 'string', ], 'ErrorInfo' => [ 'type' => 'structure', 'members' => [ 'code' => [ 'shape' => 'Code', ], 'message' => [ 'shape' => 'OTAUpdateErrorMessage', ], ], ], 'ErrorMessage' => [ 'type' => 'string', 'max' => 2048, ], 'EvaluationStatistic' => [ 'type' => 'string', 'pattern' => '(p0|p0\\.1|p0\\.01|p1|p10|p50|p90|p99|p99\\.9|p99\\.99|p100)', ], 'EventConfigurations' => [ 'type' => 'map', 'key' => [ 'shape' => 'EventType', ], 'value' => [ 'shape' => 'Configuration', ], ], 'EventType' => [ 'type' => 'string', 'enum' => [ 'THING', 'THING_GROUP', 'THING_TYPE', 'THING_GROUP_MEMBERSHIP', 'THING_GROUP_HIERARCHY', 'THING_TYPE_ASSOCIATION', 'JOB', 'JOB_EXECUTION', 'POLICY', 'CERTIFICATE', 'CA_CERTIFICATE', ], ], 'Example' => [ 'type' => 'string', 'pattern' => '[^\\p{C}]+', ], 'ExecutionNamePrefix' => [ 'type' => 'string', ], 'ExecutionNumber' => [ 'type' => 'long', ], 'ExpectedVersion' => [ 'type' => 'long', ], 'ExpiresInSec' => [ 'type' => 'long', 'max' => 3600, 'min' => 60, ], 'ExpiresInSeconds' => [ 'type' => 'long', ], 'ExplicitDeny' => [ 'type' => 'structure', 'members' => [ 'policies' => [ 'shape' => 'Policies', ], ], ], 'ExponentialRolloutRate' => [ 'type' => 'structure', 'required' => [ 'baseRatePerMinute', 'incrementFactor', 'rateIncreaseCriteria', ], 'members' => [ 'baseRatePerMinute' => [ 'shape' => 'RolloutRatePerMinute', ], 'incrementFactor' => [ 'shape' => 'IncrementFactor', ], 'rateIncreaseCriteria' => [ 'shape' => 'RateIncreaseCriteria', ], ], ], 'ExportMetric' => [ 'type' => 'boolean', ], 'FailedChecksCount' => [ 'type' => 'integer', ], 'FailedFindingsCount' => [ 'type' => 'long', ], 'FailedThings' => [ 'type' => 'integer', ], 'Field' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'FieldName', ], 'type' => [ 'shape' => 'FieldType', ], ], ], 'FieldName' => [ 'type' => 'string', ], 'FieldType' => [ 'type' => 'string', 'enum' => [ 'Number', 'String', 'Boolean', ], ], 'Fields' => [ 'type' => 'list', 'member' => [ 'shape' => 'Field', ], ], 'FileId' => [ 'type' => 'integer', 'max' => 255, 'min' => 0, ], 'FileLocation' => [ 'type' => 'structure', 'members' => [ 'stream' => [ 'shape' => 'Stream', ], 's3Location' => [ 'shape' => 'S3Location', ], ], ], 'FileName' => [ 'type' => 'string', ], 'FileType' => [ 'type' => 'integer', 'max' => 255, 'min' => 0, ], 'FindingId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'FindingIds' => [ 'type' => 'list', 'member' => [ 'shape' => 'FindingId', ], 'max' => 25, 'min' => 1, ], 'FirehoseAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'deliveryStreamName', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'deliveryStreamName' => [ 'shape' => 'DeliveryStreamName', ], 'separator' => [ 'shape' => 'FirehoseSeparator', ], 'batchMode' => [ 'shape' => 'BatchMode', ], ], ], 'FirehoseSeparator' => [ 'type' => 'string', 'pattern' => '([\\n\\t])|(\\r\\n)|(,)', ], 'Flag' => [ 'type' => 'boolean', ], 'FleetMetricArn' => [ 'type' => 'string', ], 'FleetMetricDescription' => [ 'type' => 'string', 'max' => 1024, 'pattern' => '[\\p{Graph}\\x20]*', ], 'FleetMetricName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_\\-\\.]+', ], 'FleetMetricNameAndArn' => [ 'type' => 'structure', 'members' => [ 'metricName' => [ 'shape' => 'FleetMetricName', ], 'metricArn' => [ 'shape' => 'FleetMetricArn', ], ], ], 'FleetMetricNameAndArnList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetMetricNameAndArn', ], ], 'FleetMetricPeriod' => [ 'type' => 'integer', 'max' => 86400, 'min' => 60, ], 'FleetMetricUnit' => [ 'type' => 'string', 'enum' => [ 'Seconds', 'Microseconds', 'Milliseconds', 'Bytes', 'Kilobytes', 'Megabytes', 'Gigabytes', 'Terabytes', 'Bits', 'Kilobits', 'Megabits', 'Gigabits', 'Terabits', 'Percent', 'Count', 'Bytes/Second', 'Kilobytes/Second', 'Megabytes/Second', 'Gigabytes/Second', 'Terabytes/Second', 'Bits/Second', 'Kilobits/Second', 'Megabits/Second', 'Gigabits/Second', 'Terabits/Second', 'Count/Second', 'None', ], ], 'ForceDelete' => [ 'type' => 'boolean', ], 'ForceDeleteAWSJob' => [ 'type' => 'boolean', ], 'ForceFlag' => [ 'type' => 'boolean', ], 'Forced' => [ 'type' => 'boolean', ], 'FunctionArn' => [ 'type' => 'string', ], 'GenerationId' => [ 'type' => 'string', ], 'GenericLongValue' => [ 'type' => 'long', ], 'GeoLocationTarget' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'TargetFieldName', ], 'order' => [ 'shape' => 'TargetFieldOrder', ], ], ], 'GeoLocationsFilter' => [ 'type' => 'list', 'member' => [ 'shape' => 'GeoLocationTarget', ], ], 'GetBehaviorModelTrainingSummariesRequest' => [ 'type' => 'structure', 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'querystring', 'locationName' => 'securityProfileName', ], 'maxResults' => [ 'shape' => 'TinyMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'GetBehaviorModelTrainingSummariesResponse' => [ 'type' => 'structure', 'members' => [ 'summaries' => [ 'shape' => 'BehaviorModelTrainingSummaries', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetBucketsAggregationRequest' => [ 'type' => 'structure', 'required' => [ 'queryString', 'aggregationField', 'bucketsAggregationType', ], 'members' => [ 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'aggregationField' => [ 'shape' => 'AggregationField', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], 'bucketsAggregationType' => [ 'shape' => 'BucketsAggregationType', ], ], ], 'GetBucketsAggregationResponse' => [ 'type' => 'structure', 'members' => [ 'totalCount' => [ 'shape' => 'Count', ], 'buckets' => [ 'shape' => 'Buckets', ], ], ], 'GetCardinalityRequest' => [ 'type' => 'structure', 'required' => [ 'queryString', ], 'members' => [ 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'aggregationField' => [ 'shape' => 'AggregationField', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], ], ], 'GetCardinalityResponse' => [ 'type' => 'structure', 'members' => [ 'cardinality' => [ 'shape' => 'Count', ], ], ], 'GetEffectivePoliciesRequest' => [ 'type' => 'structure', 'members' => [ 'principal' => [ 'shape' => 'Principal', ], 'cognitoIdentityPoolId' => [ 'shape' => 'CognitoIdentityPoolId', ], 'thingName' => [ 'shape' => 'ThingName', 'location' => 'querystring', 'locationName' => 'thingName', ], ], ], 'GetEffectivePoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'effectivePolicies' => [ 'shape' => 'EffectivePolicies', ], ], ], 'GetIndexingConfigurationRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetIndexingConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'thingIndexingConfiguration' => [ 'shape' => 'ThingIndexingConfiguration', ], 'thingGroupIndexingConfiguration' => [ 'shape' => 'ThingGroupIndexingConfiguration', ], ], ], 'GetJobDocumentRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], ], ], 'GetJobDocumentResponse' => [ 'type' => 'structure', 'members' => [ 'document' => [ 'shape' => 'JobDocument', ], ], ], 'GetLoggingOptionsRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetLoggingOptionsResponse' => [ 'type' => 'structure', 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'logLevel' => [ 'shape' => 'LogLevel', ], ], ], 'GetOTAUpdateRequest' => [ 'type' => 'structure', 'required' => [ 'otaUpdateId', ], 'members' => [ 'otaUpdateId' => [ 'shape' => 'OTAUpdateId', 'location' => 'uri', 'locationName' => 'otaUpdateId', ], ], ], 'GetOTAUpdateResponse' => [ 'type' => 'structure', 'members' => [ 'otaUpdateInfo' => [ 'shape' => 'OTAUpdateInfo', ], ], ], 'GetPackageConfigurationRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetPackageConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'versionUpdateByJobsConfig' => [ 'shape' => 'VersionUpdateByJobsConfig', ], ], ], 'GetPackageRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], ], ], 'GetPackageResponse' => [ 'type' => 'structure', 'members' => [ 'packageName' => [ 'shape' => 'PackageName', ], 'packageArn' => [ 'shape' => 'PackageArn', ], 'description' => [ 'shape' => 'ResourceDescription', ], 'defaultVersionName' => [ 'shape' => 'VersionName', ], 'creationDate' => [ 'shape' => 'CreationDate', ], 'lastModifiedDate' => [ 'shape' => 'LastModifiedDate', ], ], ], 'GetPackageVersionRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', 'versionName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], 'versionName' => [ 'shape' => 'VersionName', 'location' => 'uri', 'locationName' => 'versionName', ], ], ], 'GetPackageVersionResponse' => [ 'type' => 'structure', 'members' => [ 'packageVersionArn' => [ 'shape' => 'PackageVersionArn', ], 'packageName' => [ 'shape' => 'PackageName', ], 'versionName' => [ 'shape' => 'VersionName', ], 'description' => [ 'shape' => 'ResourceDescription', ], 'attributes' => [ 'shape' => 'ResourceAttributes', ], 'status' => [ 'shape' => 'PackageVersionStatus', ], 'errorReason' => [ 'shape' => 'PackageVersionErrorReason', ], 'creationDate' => [ 'shape' => 'CreationDate', ], 'lastModifiedDate' => [ 'shape' => 'LastModifiedDate', ], ], ], 'GetPercentilesRequest' => [ 'type' => 'structure', 'required' => [ 'queryString', ], 'members' => [ 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'aggregationField' => [ 'shape' => 'AggregationField', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], 'percents' => [ 'shape' => 'PercentList', ], ], ], 'GetPercentilesResponse' => [ 'type' => 'structure', 'members' => [ 'percentiles' => [ 'shape' => 'Percentiles', ], ], ], 'GetPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], ], ], 'GetPolicyResponse' => [ 'type' => 'structure', 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', ], 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'defaultVersionId' => [ 'shape' => 'PolicyVersionId', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'generationId' => [ 'shape' => 'GenerationId', ], ], ], 'GetPolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyVersionId', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', 'location' => 'uri', 'locationName' => 'policyVersionId', ], ], ], 'GetPolicyVersionResponse' => [ 'type' => 'structure', 'members' => [ 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyName' => [ 'shape' => 'PolicyName', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'generationId' => [ 'shape' => 'GenerationId', ], ], ], 'GetRegistrationCodeRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetRegistrationCodeResponse' => [ 'type' => 'structure', 'members' => [ 'registrationCode' => [ 'shape' => 'RegistrationCode', ], ], ], 'GetStatisticsRequest' => [ 'type' => 'structure', 'required' => [ 'queryString', ], 'members' => [ 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'aggregationField' => [ 'shape' => 'AggregationField', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], ], ], 'GetStatisticsResponse' => [ 'type' => 'structure', 'members' => [ 'statistics' => [ 'shape' => 'Statistics', ], ], ], 'GetTopicRuleDestinationRequest' => [ 'type' => 'structure', 'required' => [ 'arn', ], 'members' => [ 'arn' => [ 'shape' => 'AwsArn', 'location' => 'uri', 'locationName' => 'arn', ], ], ], 'GetTopicRuleDestinationResponse' => [ 'type' => 'structure', 'members' => [ 'topicRuleDestination' => [ 'shape' => 'TopicRuleDestination', ], ], ], 'GetTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], ], ], 'GetTopicRuleResponse' => [ 'type' => 'structure', 'members' => [ 'ruleArn' => [ 'shape' => 'RuleArn', ], 'rule' => [ 'shape' => 'TopicRule', ], ], ], 'GetV2LoggingOptionsRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetV2LoggingOptionsResponse' => [ 'type' => 'structure', 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'defaultLogLevel' => [ 'shape' => 'LogLevel', ], 'disableAllLogs' => [ 'shape' => 'DisableAllLogs', ], ], ], 'GroupNameAndArn' => [ 'type' => 'structure', 'members' => [ 'groupName' => [ 'shape' => 'ThingGroupName', ], 'groupArn' => [ 'shape' => 'ThingGroupArn', ], ], ], 'HashAlgorithm' => [ 'type' => 'string', ], 'HashKeyField' => [ 'type' => 'string', ], 'HashKeyValue' => [ 'type' => 'string', ], 'HeaderKey' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'HeaderList' => [ 'type' => 'list', 'member' => [ 'shape' => 'HttpActionHeader', ], 'max' => 100, 'min' => 0, ], 'HeaderValue' => [ 'type' => 'string', ], 'HttpAction' => [ 'type' => 'structure', 'required' => [ 'url', ], 'members' => [ 'url' => [ 'shape' => 'Url', ], 'confirmationUrl' => [ 'shape' => 'Url', ], 'headers' => [ 'shape' => 'HeaderList', ], 'auth' => [ 'shape' => 'HttpAuthorization', ], ], ], 'HttpActionHeader' => [ 'type' => 'structure', 'required' => [ 'key', 'value', ], 'members' => [ 'key' => [ 'shape' => 'HeaderKey', ], 'value' => [ 'shape' => 'HeaderValue', ], ], ], 'HttpAuthorization' => [ 'type' => 'structure', 'members' => [ 'sigv4' => [ 'shape' => 'SigV4Authorization', ], ], ], 'HttpContext' => [ 'type' => 'structure', 'members' => [ 'headers' => [ 'shape' => 'HttpHeaders', ], 'queryString' => [ 'shape' => 'HttpQueryString', ], ], ], 'HttpHeaderName' => [ 'type' => 'string', 'max' => 8192, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'HttpHeaderValue' => [ 'type' => 'string', 'max' => 8192, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'HttpHeaders' => [ 'type' => 'map', 'key' => [ 'shape' => 'HttpHeaderName', ], 'value' => [ 'shape' => 'HttpHeaderValue', ], ], 'HttpQueryString' => [ 'type' => 'string', 'max' => 4096, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'HttpUrlDestinationConfiguration' => [ 'type' => 'structure', 'required' => [ 'confirmationUrl', ], 'members' => [ 'confirmationUrl' => [ 'shape' => 'Url', ], ], ], 'HttpUrlDestinationProperties' => [ 'type' => 'structure', 'members' => [ 'confirmationUrl' => [ 'shape' => 'Url', ], ], ], 'HttpUrlDestinationSummary' => [ 'type' => 'structure', 'members' => [ 'confirmationUrl' => [ 'shape' => 'Url', ], ], ], 'ImplicitDeny' => [ 'type' => 'structure', 'members' => [ 'policies' => [ 'shape' => 'Policies', ], ], ], 'InProgressChecksCount' => [ 'type' => 'integer', ], 'InProgressThings' => [ 'type' => 'integer', ], 'InProgressTimeoutInMinutes' => [ 'type' => 'long', ], 'IncrementFactor' => [ 'type' => 'double', 'max' => 5, 'min' => 1.1, ], 'IndexName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'IndexNamesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IndexName', ], ], 'IndexNotReadyException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'IndexSchema' => [ 'type' => 'string', ], 'IndexStatus' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'BUILDING', 'REBUILDING', ], ], 'IndexingFilter' => [ 'type' => 'structure', 'members' => [ 'namedShadowNames' => [ 'shape' => 'NamedShadowNamesFilter', ], 'geoLocations' => [ 'shape' => 'GeoLocationsFilter', ], ], ], 'InlineDocument' => [ 'type' => 'string', ], 'InputName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'InternalException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], 'InternalFailureException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], 'InternalServerException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], 'InvalidAggregationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidQueryException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidRequestException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidResponseException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidStateTransitionException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'IotAnalyticsAction' => [ 'type' => 'structure', 'members' => [ 'channelArn' => [ 'shape' => 'AwsArn', ], 'channelName' => [ 'shape' => 'ChannelName', ], 'batchMode' => [ 'shape' => 'BatchMode', ], 'roleArn' => [ 'shape' => 'AwsArn', ], ], ], 'IotEventsAction' => [ 'type' => 'structure', 'required' => [ 'inputName', 'roleArn', ], 'members' => [ 'inputName' => [ 'shape' => 'InputName', ], 'messageId' => [ 'shape' => 'MessageId', ], 'batchMode' => [ 'shape' => 'BatchMode', ], 'roleArn' => [ 'shape' => 'AwsArn', ], ], ], 'IotSiteWiseAction' => [ 'type' => 'structure', 'required' => [ 'putAssetPropertyValueEntries', 'roleArn', ], 'members' => [ 'putAssetPropertyValueEntries' => [ 'shape' => 'PutAssetPropertyValueEntryList', ], 'roleArn' => [ 'shape' => 'AwsArn', ], ], ], 'IsAuthenticated' => [ 'type' => 'boolean', ], 'IsDefaultVersion' => [ 'type' => 'boolean', ], 'IsDisabled' => [ 'type' => 'boolean', ], 'IsSuppressed' => [ 'type' => 'boolean', ], 'IssuerCertificateIdentifier' => [ 'type' => 'structure', 'members' => [ 'issuerCertificateSubject' => [ 'shape' => 'IssuerCertificateSubject', ], 'issuerId' => [ 'shape' => 'IssuerId', ], 'issuerCertificateSerialNumber' => [ 'shape' => 'IssuerCertificateSerialNumber', ], ], ], 'IssuerCertificateSerialNumber' => [ 'type' => 'string', 'max' => 20, 'pattern' => '[a-fA-F0-9:]+', ], 'IssuerCertificateSubject' => [ 'type' => 'string', 'max' => 1000, 'pattern' => '[\\p{Graph}\\x20]*', ], 'IssuerId' => [ 'type' => 'string', 'max' => 64, 'pattern' => '(0x)?[a-fA-F0-9]+', ], 'Job' => [ 'type' => 'structure', 'members' => [ 'jobArn' => [ 'shape' => 'JobArn', ], 'jobId' => [ 'shape' => 'JobId', ], 'targetSelection' => [ 'shape' => 'TargetSelection', ], 'status' => [ 'shape' => 'JobStatus', ], 'forceCanceled' => [ 'shape' => 'Forced', ], 'reasonCode' => [ 'shape' => 'ReasonCode', ], 'comment' => [ 'shape' => 'Comment', ], 'targets' => [ 'shape' => 'JobTargets', ], 'description' => [ 'shape' => 'JobDescription', ], 'presignedUrlConfig' => [ 'shape' => 'PresignedUrlConfig', ], 'jobExecutionsRolloutConfig' => [ 'shape' => 'JobExecutionsRolloutConfig', ], 'abortConfig' => [ 'shape' => 'AbortConfig', ], 'createdAt' => [ 'shape' => 'DateType', ], 'lastUpdatedAt' => [ 'shape' => 'DateType', ], 'completedAt' => [ 'shape' => 'DateType', ], 'jobProcessDetails' => [ 'shape' => 'JobProcessDetails', ], 'timeoutConfig' => [ 'shape' => 'TimeoutConfig', ], 'namespaceId' => [ 'shape' => 'NamespaceId', ], 'jobTemplateArn' => [ 'shape' => 'JobTemplateArn', ], 'jobExecutionsRetryConfig' => [ 'shape' => 'JobExecutionsRetryConfig', ], 'documentParameters' => [ 'shape' => 'ParameterMap', ], 'isConcurrent' => [ 'shape' => 'BooleanWrapperObject', ], 'schedulingConfig' => [ 'shape' => 'SchedulingConfig', ], 'scheduledJobRollouts' => [ 'shape' => 'ScheduledJobRolloutList', ], 'destinationPackageVersions' => [ 'shape' => 'DestinationPackageVersions', ], ], ], 'JobArn' => [ 'type' => 'string', ], 'JobDescription' => [ 'type' => 'string', 'max' => 2028, 'pattern' => '[^\\p{C}]+', ], 'JobDocument' => [ 'type' => 'string', 'max' => 32768, ], 'JobDocumentSource' => [ 'type' => 'string', 'max' => 1350, 'min' => 1, ], 'JobEndBehavior' => [ 'type' => 'string', 'enum' => [ 'STOP_ROLLOUT', 'CANCEL', 'FORCE_CANCEL', ], ], 'JobExecution' => [ 'type' => 'structure', 'members' => [ 'jobId' => [ 'shape' => 'JobId', ], 'status' => [ 'shape' => 'JobExecutionStatus', ], 'forceCanceled' => [ 'shape' => 'Forced', ], 'statusDetails' => [ 'shape' => 'JobExecutionStatusDetails', ], 'thingArn' => [ 'shape' => 'ThingArn', ], 'queuedAt' => [ 'shape' => 'DateType', ], 'startedAt' => [ 'shape' => 'DateType', ], 'lastUpdatedAt' => [ 'shape' => 'DateType', ], 'executionNumber' => [ 'shape' => 'ExecutionNumber', ], 'versionNumber' => [ 'shape' => 'VersionNumber', ], 'approximateSecondsBeforeTimedOut' => [ 'shape' => 'ApproximateSecondsBeforeTimedOut', ], ], ], 'JobExecutionFailureType' => [ 'type' => 'string', 'enum' => [ 'FAILED', 'REJECTED', 'TIMED_OUT', 'ALL', ], ], 'JobExecutionStatus' => [ 'type' => 'string', 'enum' => [ 'QUEUED', 'IN_PROGRESS', 'SUCCEEDED', 'FAILED', 'TIMED_OUT', 'REJECTED', 'REMOVED', 'CANCELED', ], ], 'JobExecutionStatusDetails' => [ 'type' => 'structure', 'members' => [ 'detailsMap' => [ 'shape' => 'DetailsMap', ], ], ], 'JobExecutionSummary' => [ 'type' => 'structure', 'members' => [ 'status' => [ 'shape' => 'JobExecutionStatus', ], 'queuedAt' => [ 'shape' => 'DateType', ], 'startedAt' => [ 'shape' => 'DateType', ], 'lastUpdatedAt' => [ 'shape' => 'DateType', ], 'executionNumber' => [ 'shape' => 'ExecutionNumber', ], 'retryAttempt' => [ 'shape' => 'RetryAttempt', ], ], ], 'JobExecutionSummaryForJob' => [ 'type' => 'structure', 'members' => [ 'thingArn' => [ 'shape' => 'ThingArn', ], 'jobExecutionSummary' => [ 'shape' => 'JobExecutionSummary', ], ], ], 'JobExecutionSummaryForJobList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobExecutionSummaryForJob', ], ], 'JobExecutionSummaryForThing' => [ 'type' => 'structure', 'members' => [ 'jobId' => [ 'shape' => 'JobId', ], 'jobExecutionSummary' => [ 'shape' => 'JobExecutionSummary', ], ], ], 'JobExecutionSummaryForThingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobExecutionSummaryForThing', ], ], 'JobExecutionsRetryConfig' => [ 'type' => 'structure', 'required' => [ 'criteriaList', ], 'members' => [ 'criteriaList' => [ 'shape' => 'RetryCriteriaList', ], ], ], 'JobExecutionsRolloutConfig' => [ 'type' => 'structure', 'members' => [ 'maximumPerMinute' => [ 'shape' => 'MaxJobExecutionsPerMin', ], 'exponentialRate' => [ 'shape' => 'ExponentialRolloutRate', ], ], ], 'JobId' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'JobProcessDetails' => [ 'type' => 'structure', 'members' => [ 'processingTargets' => [ 'shape' => 'ProcessingTargetNameList', ], 'numberOfCanceledThings' => [ 'shape' => 'CanceledThings', ], 'numberOfSucceededThings' => [ 'shape' => 'SucceededThings', ], 'numberOfFailedThings' => [ 'shape' => 'FailedThings', ], 'numberOfRejectedThings' => [ 'shape' => 'RejectedThings', ], 'numberOfQueuedThings' => [ 'shape' => 'QueuedThings', ], 'numberOfInProgressThings' => [ 'shape' => 'InProgressThings', ], 'numberOfRemovedThings' => [ 'shape' => 'RemovedThings', ], 'numberOfTimedOutThings' => [ 'shape' => 'TimedOutThings', ], ], ], 'JobStatus' => [ 'type' => 'string', 'enum' => [ 'IN_PROGRESS', 'CANCELED', 'COMPLETED', 'DELETION_IN_PROGRESS', 'SCHEDULED', ], ], 'JobSummary' => [ 'type' => 'structure', 'members' => [ 'jobArn' => [ 'shape' => 'JobArn', ], 'jobId' => [ 'shape' => 'JobId', ], 'thingGroupId' => [ 'shape' => 'ThingGroupId', ], 'targetSelection' => [ 'shape' => 'TargetSelection', ], 'status' => [ 'shape' => 'JobStatus', ], 'createdAt' => [ 'shape' => 'DateType', ], 'lastUpdatedAt' => [ 'shape' => 'DateType', ], 'completedAt' => [ 'shape' => 'DateType', ], 'isConcurrent' => [ 'shape' => 'BooleanWrapperObject', ], ], ], 'JobSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobSummary', ], ], 'JobTargets' => [ 'type' => 'list', 'member' => [ 'shape' => 'TargetArn', ], 'min' => 1, ], 'JobTemplateArn' => [ 'type' => 'string', 'max' => 1600, 'min' => 1, 'pattern' => '^arn:[!-~]+$', ], 'JobTemplateId' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'JobTemplateSummary' => [ 'type' => 'structure', 'members' => [ 'jobTemplateArn' => [ 'shape' => 'JobTemplateArn', ], 'jobTemplateId' => [ 'shape' => 'JobTemplateId', ], 'description' => [ 'shape' => 'JobDescription', ], 'createdAt' => [ 'shape' => 'DateType', ], ], ], 'JobTemplateSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobTemplateSummary', ], ], 'JsonDocument' => [ 'type' => 'string', ], 'KafkaAction' => [ 'type' => 'structure', 'required' => [ 'destinationArn', 'topic', 'clientProperties', ], 'members' => [ 'destinationArn' => [ 'shape' => 'AwsArn', ], 'topic' => [ 'shape' => 'String', ], 'key' => [ 'shape' => 'String', ], 'partition' => [ 'shape' => 'String', ], 'clientProperties' => [ 'shape' => 'ClientProperties', ], 'headers' => [ 'shape' => 'KafkaHeaders', ], ], ], 'KafkaActionHeader' => [ 'type' => 'structure', 'required' => [ 'key', 'value', ], 'members' => [ 'key' => [ 'shape' => 'KafkaHeaderKey', ], 'value' => [ 'shape' => 'KafkaHeaderValue', ], ], ], 'KafkaHeaderKey' => [ 'type' => 'string', 'max' => 16384, 'min' => 0, ], 'KafkaHeaderValue' => [ 'type' => 'string', 'max' => 16384, 'min' => 0, ], 'KafkaHeaders' => [ 'type' => 'list', 'member' => [ 'shape' => 'KafkaActionHeader', ], 'max' => 100, 'min' => 1, ], 'Key' => [ 'type' => 'string', ], 'KeyName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'KeyPair' => [ 'type' => 'structure', 'members' => [ 'PublicKey' => [ 'shape' => 'PublicKey', ], 'PrivateKey' => [ 'shape' => 'PrivateKey', ], ], ], 'KeyValue' => [ 'type' => 'string', 'max' => 5120, 'pattern' => '[\\s\\S]*', ], 'KinesisAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'streamName', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'streamName' => [ 'shape' => 'StreamName', ], 'partitionKey' => [ 'shape' => 'PartitionKey', ], ], ], 'LambdaAction' => [ 'type' => 'structure', 'required' => [ 'functionArn', ], 'members' => [ 'functionArn' => [ 'shape' => 'FunctionArn', ], ], ], 'LaserMaxResults' => [ 'type' => 'integer', 'max' => 250, 'min' => 1, ], 'LastModifiedDate' => [ 'type' => 'timestamp', ], 'LastUpdatedAtDate' => [ 'type' => 'timestamp', ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], 'ListActiveViolationsRequest' => [ 'type' => 'structure', 'members' => [ 'thingName' => [ 'shape' => 'DeviceDefenderThingName', 'location' => 'querystring', 'locationName' => 'thingName', ], 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'querystring', 'locationName' => 'securityProfileName', ], 'behaviorCriteriaType' => [ 'shape' => 'BehaviorCriteriaType', 'location' => 'querystring', 'locationName' => 'behaviorCriteriaType', ], 'listSuppressedAlerts' => [ 'shape' => 'ListSuppressedAlerts', 'location' => 'querystring', 'locationName' => 'listSuppressedAlerts', ], 'verificationState' => [ 'shape' => 'VerificationState', 'location' => 'querystring', 'locationName' => 'verificationState', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListActiveViolationsResponse' => [ 'type' => 'structure', 'members' => [ 'activeViolations' => [ 'shape' => 'ActiveViolations', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListAttachedPoliciesRequest' => [ 'type' => 'structure', 'required' => [ 'target', ], 'members' => [ 'target' => [ 'shape' => 'PolicyTarget', 'location' => 'uri', 'locationName' => 'target', ], 'recursive' => [ 'shape' => 'Recursive', 'location' => 'querystring', 'locationName' => 'recursive', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], ], ], 'ListAttachedPoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'policies' => [ 'shape' => 'Policies', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListAuditFindingsRequest' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'AuditTaskId', ], 'checkName' => [ 'shape' => 'AuditCheckName', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], 'maxResults' => [ 'shape' => 'MaxResults', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'startTime' => [ 'shape' => 'Timestamp', ], 'endTime' => [ 'shape' => 'Timestamp', ], 'listSuppressedFindings' => [ 'shape' => 'ListSuppressedFindings', ], ], ], 'ListAuditFindingsResponse' => [ 'type' => 'structure', 'members' => [ 'findings' => [ 'shape' => 'AuditFindings', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListAuditMitigationActionsExecutionsRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', 'findingId', ], 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', 'location' => 'querystring', 'locationName' => 'taskId', ], 'actionStatus' => [ 'shape' => 'AuditMitigationActionsExecutionStatus', 'location' => 'querystring', 'locationName' => 'actionStatus', ], 'findingId' => [ 'shape' => 'FindingId', 'location' => 'querystring', 'locationName' => 'findingId', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListAuditMitigationActionsExecutionsResponse' => [ 'type' => 'structure', 'members' => [ 'actionsExecutions' => [ 'shape' => 'AuditMitigationActionExecutionMetadataList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListAuditMitigationActionsTasksRequest' => [ 'type' => 'structure', 'required' => [ 'startTime', 'endTime', ], 'members' => [ 'auditTaskId' => [ 'shape' => 'AuditTaskId', 'location' => 'querystring', 'locationName' => 'auditTaskId', ], 'findingId' => [ 'shape' => 'FindingId', 'location' => 'querystring', 'locationName' => 'findingId', ], 'taskStatus' => [ 'shape' => 'AuditMitigationActionsTaskStatus', 'location' => 'querystring', 'locationName' => 'taskStatus', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'startTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'startTime', ], 'endTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'endTime', ], ], ], 'ListAuditMitigationActionsTasksResponse' => [ 'type' => 'structure', 'members' => [ 'tasks' => [ 'shape' => 'AuditMitigationActionsTaskMetadataList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListAuditSuppressionsRequest' => [ 'type' => 'structure', 'members' => [ 'checkName' => [ 'shape' => 'AuditCheckName', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', ], ], ], 'ListAuditSuppressionsResponse' => [ 'type' => 'structure', 'members' => [ 'suppressions' => [ 'shape' => 'AuditSuppressionList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListAuditTasksRequest' => [ 'type' => 'structure', 'required' => [ 'startTime', 'endTime', ], 'members' => [ 'startTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'startTime', ], 'endTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'endTime', ], 'taskType' => [ 'shape' => 'AuditTaskType', 'location' => 'querystring', 'locationName' => 'taskType', ], 'taskStatus' => [ 'shape' => 'AuditTaskStatus', 'location' => 'querystring', 'locationName' => 'taskStatus', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListAuditTasksResponse' => [ 'type' => 'structure', 'members' => [ 'tasks' => [ 'shape' => 'AuditTaskMetadataList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListAuthorizersRequest' => [ 'type' => 'structure', 'members' => [ 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], 'status' => [ 'shape' => 'AuthorizerStatus', 'location' => 'querystring', 'locationName' => 'status', ], ], ], 'ListAuthorizersResponse' => [ 'type' => 'structure', 'members' => [ 'authorizers' => [ 'shape' => 'Authorizers', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListBillingGroupsRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'namePrefixFilter' => [ 'shape' => 'BillingGroupName', 'location' => 'querystring', 'locationName' => 'namePrefixFilter', ], ], ], 'ListBillingGroupsResponse' => [ 'type' => 'structure', 'members' => [ 'billingGroups' => [ 'shape' => 'BillingGroupNameAndArnList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListCACertificatesRequest' => [ 'type' => 'structure', 'members' => [ 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'querystring', 'locationName' => 'templateName', ], ], ], 'ListCACertificatesResponse' => [ 'type' => 'structure', 'members' => [ 'certificates' => [ 'shape' => 'CACertificates', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListCertificateProvidersRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListCertificateProvidersResponse' => [ 'type' => 'structure', 'members' => [ 'certificateProviders' => [ 'shape' => 'CertificateProviders', ], 'nextToken' => [ 'shape' => 'Marker', ], ], ], 'ListCertificatesByCARequest' => [ 'type' => 'structure', 'required' => [ 'caCertificateId', ], 'members' => [ 'caCertificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'caCertificateId', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListCertificatesByCAResponse' => [ 'type' => 'structure', 'members' => [ 'certificates' => [ 'shape' => 'Certificates', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListCertificatesRequest' => [ 'type' => 'structure', 'members' => [ 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListCertificatesResponse' => [ 'type' => 'structure', 'members' => [ 'certificates' => [ 'shape' => 'Certificates', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListCustomMetricsRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListCustomMetricsResponse' => [ 'type' => 'structure', 'members' => [ 'metricNames' => [ 'shape' => 'MetricNames', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDetectMitigationActionsExecutionsRequest' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', 'location' => 'querystring', 'locationName' => 'taskId', ], 'violationId' => [ 'shape' => 'ViolationId', 'location' => 'querystring', 'locationName' => 'violationId', ], 'thingName' => [ 'shape' => 'DeviceDefenderThingName', 'location' => 'querystring', 'locationName' => 'thingName', ], 'startTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'startTime', ], 'endTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'endTime', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListDetectMitigationActionsExecutionsResponse' => [ 'type' => 'structure', 'members' => [ 'actionsExecutions' => [ 'shape' => 'DetectMitigationActionExecutionList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDetectMitigationActionsTasksRequest' => [ 'type' => 'structure', 'required' => [ 'startTime', 'endTime', ], 'members' => [ 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'startTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'startTime', ], 'endTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'endTime', ], ], ], 'ListDetectMitigationActionsTasksResponse' => [ 'type' => 'structure', 'members' => [ 'tasks' => [ 'shape' => 'DetectMitigationActionsTaskSummaryList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDimensionsRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListDimensionsResponse' => [ 'type' => 'structure', 'members' => [ 'dimensionNames' => [ 'shape' => 'DimensionNames', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDomainConfigurationsRequest' => [ 'type' => 'structure', 'members' => [ 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'serviceType' => [ 'shape' => 'ServiceType', 'location' => 'querystring', 'locationName' => 'serviceType', ], ], ], 'ListDomainConfigurationsResponse' => [ 'type' => 'structure', 'members' => [ 'domainConfigurations' => [ 'shape' => 'DomainConfigurations', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListFleetMetricsRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListFleetMetricsResponse' => [ 'type' => 'structure', 'members' => [ 'fleetMetrics' => [ 'shape' => 'FleetMetricNameAndArnList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListIndicesRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'QueryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListIndicesResponse' => [ 'type' => 'structure', 'members' => [ 'indexNames' => [ 'shape' => 'IndexNamesList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListJobExecutionsForJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'status' => [ 'shape' => 'JobExecutionStatus', 'location' => 'querystring', 'locationName' => 'status', ], 'maxResults' => [ 'shape' => 'LaserMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListJobExecutionsForJobResponse' => [ 'type' => 'structure', 'members' => [ 'executionSummaries' => [ 'shape' => 'JobExecutionSummaryForJobList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListJobExecutionsForThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'status' => [ 'shape' => 'JobExecutionStatus', 'location' => 'querystring', 'locationName' => 'status', ], 'namespaceId' => [ 'shape' => 'NamespaceId', 'location' => 'querystring', 'locationName' => 'namespaceId', ], 'maxResults' => [ 'shape' => 'LaserMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'jobId' => [ 'shape' => 'JobId', 'location' => 'querystring', 'locationName' => 'jobId', ], ], ], 'ListJobExecutionsForThingResponse' => [ 'type' => 'structure', 'members' => [ 'executionSummaries' => [ 'shape' => 'JobExecutionSummaryForThingList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListJobTemplatesRequest' => [ 'type' => 'structure', 'members' => [ 'maxResults' => [ 'shape' => 'LaserMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListJobTemplatesResponse' => [ 'type' => 'structure', 'members' => [ 'jobTemplates' => [ 'shape' => 'JobTemplateSummaryList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListJobsRequest' => [ 'type' => 'structure', 'members' => [ 'status' => [ 'shape' => 'JobStatus', 'location' => 'querystring', 'locationName' => 'status', ], 'targetSelection' => [ 'shape' => 'TargetSelection', 'location' => 'querystring', 'locationName' => 'targetSelection', ], 'maxResults' => [ 'shape' => 'LaserMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'querystring', 'locationName' => 'thingGroupName', ], 'thingGroupId' => [ 'shape' => 'ThingGroupId', 'location' => 'querystring', 'locationName' => 'thingGroupId', ], 'namespaceId' => [ 'shape' => 'NamespaceId', 'location' => 'querystring', 'locationName' => 'namespaceId', ], ], ], 'ListJobsResponse' => [ 'type' => 'structure', 'members' => [ 'jobs' => [ 'shape' => 'JobSummaryList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListManagedJobTemplatesRequest' => [ 'type' => 'structure', 'members' => [ 'templateName' => [ 'shape' => 'ManagedJobTemplateName', 'location' => 'querystring', 'locationName' => 'templateName', ], 'maxResults' => [ 'shape' => 'LaserMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListManagedJobTemplatesResponse' => [ 'type' => 'structure', 'members' => [ 'managedJobTemplates' => [ 'shape' => 'ManagedJobTemplatesSummaryList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListMetricValuesRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', 'metricName', 'startTime', 'endTime', ], 'members' => [ 'thingName' => [ 'shape' => 'DeviceDefenderThingName', 'location' => 'querystring', 'locationName' => 'thingName', ], 'metricName' => [ 'shape' => 'BehaviorMetric', 'location' => 'querystring', 'locationName' => 'metricName', ], 'dimensionName' => [ 'shape' => 'DimensionName', 'location' => 'querystring', 'locationName' => 'dimensionName', ], 'dimensionValueOperator' => [ 'shape' => 'DimensionValueOperator', 'location' => 'querystring', 'locationName' => 'dimensionValueOperator', ], 'startTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'startTime', ], 'endTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'endTime', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListMetricValuesResponse' => [ 'type' => 'structure', 'members' => [ 'metricDatumList' => [ 'shape' => 'MetricDatumList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListMitigationActionsRequest' => [ 'type' => 'structure', 'members' => [ 'actionType' => [ 'shape' => 'MitigationActionType', 'location' => 'querystring', 'locationName' => 'actionType', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListMitigationActionsResponse' => [ 'type' => 'structure', 'members' => [ 'actionIdentifiers' => [ 'shape' => 'MitigationActionIdentifierList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListOTAUpdatesRequest' => [ 'type' => 'structure', 'members' => [ 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'otaUpdateStatus' => [ 'shape' => 'OTAUpdateStatus', 'location' => 'querystring', 'locationName' => 'otaUpdateStatus', ], ], ], 'ListOTAUpdatesResponse' => [ 'type' => 'structure', 'members' => [ 'otaUpdates' => [ 'shape' => 'OTAUpdatesSummary', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListOutgoingCertificatesRequest' => [ 'type' => 'structure', 'members' => [ 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListOutgoingCertificatesResponse' => [ 'type' => 'structure', 'members' => [ 'outgoingCertificates' => [ 'shape' => 'OutgoingCertificates', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListPackageVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], 'status' => [ 'shape' => 'PackageVersionStatus', 'location' => 'querystring', 'locationName' => 'status', ], 'maxResults' => [ 'shape' => 'PackageCatalogMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListPackageVersionsResponse' => [ 'type' => 'structure', 'members' => [ 'packageVersionSummaries' => [ 'shape' => 'PackageVersionSummaryList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListPackagesRequest' => [ 'type' => 'structure', 'members' => [ 'maxResults' => [ 'shape' => 'PackageCatalogMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListPackagesResponse' => [ 'type' => 'structure', 'members' => [ 'packageSummaries' => [ 'shape' => 'PackageSummaryList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListPoliciesRequest' => [ 'type' => 'structure', 'members' => [ 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListPoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'policies' => [ 'shape' => 'Policies', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListPolicyPrincipalsRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'header', 'locationName' => 'x-amzn-iot-policy', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListPolicyPrincipalsResponse' => [ 'type' => 'structure', 'members' => [ 'principals' => [ 'shape' => 'Principals', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListPolicyVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], ], ], 'ListPolicyVersionsResponse' => [ 'type' => 'structure', 'members' => [ 'policyVersions' => [ 'shape' => 'PolicyVersions', ], ], ], 'ListPrincipalPoliciesRequest' => [ 'type' => 'structure', 'required' => [ 'principal', ], 'members' => [ 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-iot-principal', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListPrincipalPoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'policies' => [ 'shape' => 'Policies', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListPrincipalThingsRequest' => [ 'type' => 'structure', 'required' => [ 'principal', ], 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-principal', ], ], ], 'ListPrincipalThingsResponse' => [ 'type' => 'structure', 'members' => [ 'things' => [ 'shape' => 'ThingNameList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListProvisioningTemplateVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListProvisioningTemplateVersionsResponse' => [ 'type' => 'structure', 'members' => [ 'versions' => [ 'shape' => 'ProvisioningTemplateVersionListing', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListProvisioningTemplatesRequest' => [ 'type' => 'structure', 'members' => [ 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListProvisioningTemplatesResponse' => [ 'type' => 'structure', 'members' => [ 'templates' => [ 'shape' => 'ProvisioningTemplateListing', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListRelatedResourcesForAuditFindingRequest' => [ 'type' => 'structure', 'required' => [ 'findingId', ], 'members' => [ 'findingId' => [ 'shape' => 'FindingId', 'location' => 'querystring', 'locationName' => 'findingId', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListRelatedResourcesForAuditFindingResponse' => [ 'type' => 'structure', 'members' => [ 'relatedResources' => [ 'shape' => 'RelatedResources', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListRoleAliasesRequest' => [ 'type' => 'structure', 'members' => [ 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListRoleAliasesResponse' => [ 'type' => 'structure', 'members' => [ 'roleAliases' => [ 'shape' => 'RoleAliases', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListScheduledAuditsRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListScheduledAuditsResponse' => [ 'type' => 'structure', 'members' => [ 'scheduledAudits' => [ 'shape' => 'ScheduledAuditMetadataList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListSecurityProfilesForTargetRequest' => [ 'type' => 'structure', 'required' => [ 'securityProfileTargetArn', ], 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'recursive' => [ 'shape' => 'Recursive', 'location' => 'querystring', 'locationName' => 'recursive', ], 'securityProfileTargetArn' => [ 'shape' => 'SecurityProfileTargetArn', 'location' => 'querystring', 'locationName' => 'securityProfileTargetArn', ], ], ], 'ListSecurityProfilesForTargetResponse' => [ 'type' => 'structure', 'members' => [ 'securityProfileTargetMappings' => [ 'shape' => 'SecurityProfileTargetMappings', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListSecurityProfilesRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'dimensionName' => [ 'shape' => 'DimensionName', 'location' => 'querystring', 'locationName' => 'dimensionName', ], 'metricName' => [ 'shape' => 'MetricName', 'location' => 'querystring', 'locationName' => 'metricName', ], ], ], 'ListSecurityProfilesResponse' => [ 'type' => 'structure', 'members' => [ 'securityProfileIdentifiers' => [ 'shape' => 'SecurityProfileIdentifiers', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListStreamsRequest' => [ 'type' => 'structure', 'members' => [ 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListStreamsResponse' => [ 'type' => 'structure', 'members' => [ 'streams' => [ 'shape' => 'StreamsSummary', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListSuppressedAlerts' => [ 'type' => 'boolean', ], 'ListSuppressedFindings' => [ 'type' => 'boolean', ], 'ListTagsForResourceRequest' => [ 'type' => 'structure', 'required' => [ 'resourceArn', ], 'members' => [ 'resourceArn' => [ 'shape' => 'ResourceArn', 'location' => 'querystring', 'locationName' => 'resourceArn', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListTagsForResourceResponse' => [ 'type' => 'structure', 'members' => [ 'tags' => [ 'shape' => 'TagList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListTargetsForPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], ], ], 'ListTargetsForPolicyResponse' => [ 'type' => 'structure', 'members' => [ 'targets' => [ 'shape' => 'PolicyTargets', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListTargetsForSecurityProfileRequest' => [ 'type' => 'structure', 'required' => [ 'securityProfileName', ], 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'uri', 'locationName' => 'securityProfileName', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListTargetsForSecurityProfileResponse' => [ 'type' => 'structure', 'members' => [ 'securityProfileTargets' => [ 'shape' => 'SecurityProfileTargets', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingGroupsForThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListThingGroupsForThingResponse' => [ 'type' => 'structure', 'members' => [ 'thingGroups' => [ 'shape' => 'ThingGroupNameAndArnList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingGroupsRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'parentGroup' => [ 'shape' => 'ThingGroupName', 'location' => 'querystring', 'locationName' => 'parentGroup', ], 'namePrefixFilter' => [ 'shape' => 'ThingGroupName', 'location' => 'querystring', 'locationName' => 'namePrefixFilter', ], 'recursive' => [ 'shape' => 'RecursiveWithoutDefault', 'location' => 'querystring', 'locationName' => 'recursive', ], ], ], 'ListThingGroupsResponse' => [ 'type' => 'structure', 'members' => [ 'thingGroups' => [ 'shape' => 'ThingGroupNameAndArnList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingPrincipalsRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], ], ], 'ListThingPrincipalsResponse' => [ 'type' => 'structure', 'members' => [ 'principals' => [ 'shape' => 'Principals', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingRegistrationTaskReportsRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', 'reportType', ], 'members' => [ 'taskId' => [ 'shape' => 'TaskId', 'location' => 'uri', 'locationName' => 'taskId', ], 'reportType' => [ 'shape' => 'ReportType', 'location' => 'querystring', 'locationName' => 'reportType', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListThingRegistrationTaskReportsResponse' => [ 'type' => 'structure', 'members' => [ 'resourceLinks' => [ 'shape' => 'S3FileUrlList', ], 'reportType' => [ 'shape' => 'ReportType', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingRegistrationTasksRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'status' => [ 'shape' => 'Status', 'location' => 'querystring', 'locationName' => 'status', ], ], ], 'ListThingRegistrationTasksResponse' => [ 'type' => 'structure', 'members' => [ 'taskIds' => [ 'shape' => 'TaskIdList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingTypesRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'querystring', 'locationName' => 'thingTypeName', ], ], ], 'ListThingTypesResponse' => [ 'type' => 'structure', 'members' => [ 'thingTypes' => [ 'shape' => 'ThingTypeList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingsInBillingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'billingGroupName', ], 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', 'location' => 'uri', 'locationName' => 'billingGroupName', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListThingsInBillingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'things' => [ 'shape' => 'ThingNameList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingsInThingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'thingGroupName', ], 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'uri', 'locationName' => 'thingGroupName', ], 'recursive' => [ 'shape' => 'Recursive', 'location' => 'querystring', 'locationName' => 'recursive', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListThingsInThingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'things' => [ 'shape' => 'ThingNameList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingsRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'attributeName' => [ 'shape' => 'AttributeName', 'location' => 'querystring', 'locationName' => 'attributeName', ], 'attributeValue' => [ 'shape' => 'AttributeValue', 'location' => 'querystring', 'locationName' => 'attributeValue', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'querystring', 'locationName' => 'thingTypeName', ], 'usePrefixAttributeValue' => [ 'shape' => 'usePrefixAttributeValue', 'location' => 'querystring', 'locationName' => 'usePrefixAttributeValue', ], ], ], 'ListThingsResponse' => [ 'type' => 'structure', 'members' => [ 'things' => [ 'shape' => 'ThingAttributeList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListTopicRuleDestinationsRequest' => [ 'type' => 'structure', 'members' => [ 'maxResults' => [ 'shape' => 'TopicRuleDestinationMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListTopicRuleDestinationsResponse' => [ 'type' => 'structure', 'members' => [ 'destinationSummaries' => [ 'shape' => 'TopicRuleDestinationSummaries', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListTopicRulesRequest' => [ 'type' => 'structure', 'members' => [ 'topic' => [ 'shape' => 'Topic', 'location' => 'querystring', 'locationName' => 'topic', ], 'maxResults' => [ 'shape' => 'TopicRuleMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'ruleDisabled' => [ 'shape' => 'IsDisabled', 'location' => 'querystring', 'locationName' => 'ruleDisabled', ], ], ], 'ListTopicRulesResponse' => [ 'type' => 'structure', 'members' => [ 'rules' => [ 'shape' => 'TopicRuleList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListV2LoggingLevelsRequest' => [ 'type' => 'structure', 'members' => [ 'targetType' => [ 'shape' => 'LogTargetType', 'location' => 'querystring', 'locationName' => 'targetType', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'SkyfallMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListV2LoggingLevelsResponse' => [ 'type' => 'structure', 'members' => [ 'logTargetConfigurations' => [ 'shape' => 'LogTargetConfigurations', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListViolationEventsRequest' => [ 'type' => 'structure', 'required' => [ 'startTime', 'endTime', ], 'members' => [ 'startTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'startTime', ], 'endTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'endTime', ], 'thingName' => [ 'shape' => 'DeviceDefenderThingName', 'location' => 'querystring', 'locationName' => 'thingName', ], 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'querystring', 'locationName' => 'securityProfileName', ], 'behaviorCriteriaType' => [ 'shape' => 'BehaviorCriteriaType', 'location' => 'querystring', 'locationName' => 'behaviorCriteriaType', ], 'listSuppressedAlerts' => [ 'shape' => 'ListSuppressedAlerts', 'location' => 'querystring', 'locationName' => 'listSuppressedAlerts', ], 'verificationState' => [ 'shape' => 'VerificationState', 'location' => 'querystring', 'locationName' => 'verificationState', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListViolationEventsResponse' => [ 'type' => 'structure', 'members' => [ 'violationEvents' => [ 'shape' => 'ViolationEvents', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'LocationAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'trackerName', 'deviceId', 'latitude', 'longitude', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'trackerName' => [ 'shape' => 'String', ], 'deviceId' => [ 'shape' => 'String', ], 'timestamp' => [ 'shape' => 'LocationTimestamp', ], 'latitude' => [ 'shape' => 'String', ], 'longitude' => [ 'shape' => 'String', ], ], ], 'LocationTimestamp' => [ 'type' => 'structure', 'required' => [ 'value', ], 'members' => [ 'value' => [ 'shape' => 'String', ], 'unit' => [ 'shape' => 'String', ], ], ], 'LogGroupName' => [ 'type' => 'string', ], 'LogLevel' => [ 'type' => 'string', 'enum' => [ 'DEBUG', 'INFO', 'ERROR', 'WARN', 'DISABLED', ], ], 'LogTarget' => [ 'type' => 'structure', 'required' => [ 'targetType', ], 'members' => [ 'targetType' => [ 'shape' => 'LogTargetType', ], 'targetName' => [ 'shape' => 'LogTargetName', ], ], ], 'LogTargetConfiguration' => [ 'type' => 'structure', 'members' => [ 'logTarget' => [ 'shape' => 'LogTarget', ], 'logLevel' => [ 'shape' => 'LogLevel', ], ], ], 'LogTargetConfigurations' => [ 'type' => 'list', 'member' => [ 'shape' => 'LogTargetConfiguration', ], ], 'LogTargetName' => [ 'type' => 'string', ], 'LogTargetType' => [ 'type' => 'string', 'enum' => [ 'DEFAULT', 'THING_GROUP', 'CLIENT_ID', 'SOURCE_IP', 'PRINCIPAL_ID', ], ], 'LoggingOptionsPayload' => [ 'type' => 'structure', 'required' => [ 'roleArn', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'logLevel' => [ 'shape' => 'LogLevel', ], ], ], 'MachineLearningDetectionConfig' => [ 'type' => 'structure', 'required' => [ 'confidenceLevel', ], 'members' => [ 'confidenceLevel' => [ 'shape' => 'ConfidenceLevel', ], ], ], 'MaintenanceWindow' => [ 'type' => 'structure', 'required' => [ 'startTime', 'durationInMinutes', ], 'members' => [ 'startTime' => [ 'shape' => 'CronExpression', ], 'durationInMinutes' => [ 'shape' => 'DurationInMinutes', ], ], ], 'MaintenanceWindows' => [ 'type' => 'list', 'member' => [ 'shape' => 'MaintenanceWindow', ], ], 'MalformedPolicyException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'ManagedJobTemplateName' => [ 'type' => 'string', 'max' => 64, 'min' => 1, ], 'ManagedJobTemplateSummary' => [ 'type' => 'structure', 'members' => [ 'templateArn' => [ 'shape' => 'JobTemplateArn', ], 'templateName' => [ 'shape' => 'ManagedJobTemplateName', ], 'description' => [ 'shape' => 'JobDescription', ], 'environments' => [ 'shape' => 'Environments', ], 'templateVersion' => [ 'shape' => 'ManagedTemplateVersion', ], ], ], 'ManagedJobTemplatesSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedJobTemplateSummary', ], ], 'ManagedTemplateVersion' => [ 'type' => 'string', 'pattern' => '^[1-9]+.[0-9]+', ], 'Marker' => [ 'type' => 'string', 'max' => 1024, 'pattern' => '[A-Za-z0-9+/]+={0,2}', ], 'MaxBuckets' => [ 'type' => 'integer', 'max' => 10000, 'min' => 1, ], 'MaxJobExecutionsPerMin' => [ 'type' => 'integer', 'min' => 1, ], 'MaxResults' => [ 'type' => 'integer', 'max' => 250, 'min' => 1, ], 'Maximum' => [ 'type' => 'double', ], 'MaximumPerMinute' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'Message' => [ 'type' => 'string', 'max' => 128, 'pattern' => '[\\s\\S]*', ], 'MessageExpiry' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, ], 'MessageFormat' => [ 'type' => 'string', 'enum' => [ 'RAW', 'JSON', ], ], 'MessageId' => [ 'type' => 'string', 'max' => 128, ], 'MetricDatum' => [ 'type' => 'structure', 'members' => [ 'timestamp' => [ 'shape' => 'Timestamp', ], 'value' => [ 'shape' => 'MetricValue', ], ], ], 'MetricDatumList' => [ 'type' => 'list', 'member' => [ 'shape' => 'MetricDatum', ], ], 'MetricDimension' => [ 'type' => 'structure', 'required' => [ 'dimensionName', ], 'members' => [ 'dimensionName' => [ 'shape' => 'DimensionName', ], 'operator' => [ 'shape' => 'DimensionValueOperator', ], ], ], 'MetricName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'MetricNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'MetricName', ], ], 'MetricToRetain' => [ 'type' => 'structure', 'required' => [ 'metric', ], 'members' => [ 'metric' => [ 'shape' => 'BehaviorMetric', ], 'metricDimension' => [ 'shape' => 'MetricDimension', ], 'exportMetric' => [ 'shape' => 'ExportMetric', ], ], ], 'MetricValue' => [ 'type' => 'structure', 'members' => [ 'count' => [ 'shape' => 'UnsignedLong', ], 'cidrs' => [ 'shape' => 'Cidrs', ], 'ports' => [ 'shape' => 'Ports', ], 'number' => [ 'shape' => 'Number', ], 'numbers' => [ 'shape' => 'NumberList', ], 'strings' => [ 'shape' => 'StringList', ], ], ], 'MetricsExportConfig' => [ 'type' => 'structure', 'required' => [ 'mqttTopic', 'roleArn', ], 'members' => [ 'mqttTopic' => [ 'shape' => 'MqttTopic', ], 'roleArn' => [ 'shape' => 'RoleArn', ], ], ], 'Minimum' => [ 'type' => 'double', ], 'MinimumNumberOfExecutedThings' => [ 'type' => 'integer', 'min' => 1, ], 'MissingContextValue' => [ 'type' => 'string', ], 'MissingContextValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'MissingContextValue', ], ], 'MitigationAction' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'MitigationActionName', ], 'id' => [ 'shape' => 'MitigationActionId', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'actionParams' => [ 'shape' => 'MitigationActionParams', ], ], ], 'MitigationActionArn' => [ 'type' => 'string', ], 'MitigationActionId' => [ 'type' => 'string', ], 'MitigationActionIdentifier' => [ 'type' => 'structure', 'members' => [ 'actionName' => [ 'shape' => 'MitigationActionName', ], 'actionArn' => [ 'shape' => 'MitigationActionArn', ], 'creationDate' => [ 'shape' => 'Timestamp', ], ], ], 'MitigationActionIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'MitigationActionIdentifier', ], ], 'MitigationActionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'MitigationAction', ], ], 'MitigationActionName' => [ 'type' => 'string', 'max' => 128, 'pattern' => '[a-zA-Z0-9_-]+', ], 'MitigationActionNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'MitigationActionName', ], 'max' => 5, 'min' => 1, ], 'MitigationActionParams' => [ 'type' => 'structure', 'members' => [ 'updateDeviceCertificateParams' => [ 'shape' => 'UpdateDeviceCertificateParams', ], 'updateCACertificateParams' => [ 'shape' => 'UpdateCACertificateParams', ], 'addThingsToThingGroupParams' => [ 'shape' => 'AddThingsToThingGroupParams', ], 'replaceDefaultPolicyVersionParams' => [ 'shape' => 'ReplaceDefaultPolicyVersionParams', ], 'enableIoTLoggingParams' => [ 'shape' => 'EnableIoTLoggingParams', ], 'publishFindingToSnsParams' => [ 'shape' => 'PublishFindingToSnsParams', ], ], ], 'MitigationActionType' => [ 'type' => 'string', 'enum' => [ 'UPDATE_DEVICE_CERTIFICATE', 'UPDATE_CA_CERTIFICATE', 'ADD_THINGS_TO_THING_GROUP', 'REPLACE_DEFAULT_POLICY_VERSION', 'ENABLE_IOT_LOGGING', 'PUBLISH_FINDING_TO_SNS', ], ], 'MitigationActionsTaskId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'ModelStatus' => [ 'type' => 'string', 'enum' => [ 'PENDING_BUILD', 'ACTIVE', 'EXPIRED', ], ], 'MqttClientId' => [ 'type' => 'string', 'max' => 65535, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'MqttContext' => [ 'type' => 'structure', 'members' => [ 'username' => [ 'shape' => 'MqttUsername', ], 'password' => [ 'shape' => 'MqttPassword', ], 'clientId' => [ 'shape' => 'MqttClientId', ], ], ], 'MqttHeaders' => [ 'type' => 'structure', 'members' => [ 'payloadFormatIndicator' => [ 'shape' => 'PayloadFormatIndicator', ], 'contentType' => [ 'shape' => 'ContentType', ], 'responseTopic' => [ 'shape' => 'ResponseTopic', ], 'correlationData' => [ 'shape' => 'CorrelationData', ], 'messageExpiry' => [ 'shape' => 'MessageExpiry', ], 'userProperties' => [ 'shape' => 'UserProperties', ], ], ], 'MqttPassword' => [ 'type' => 'blob', 'max' => 65535, 'min' => 1, ], 'MqttTopic' => [ 'type' => 'string', 'max' => 512, 'min' => 1, ], 'MqttUsername' => [ 'type' => 'string', 'max' => 65535, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'NamedShadowIndexingMode' => [ 'type' => 'string', 'enum' => [ 'OFF', 'ON', ], ], 'NamedShadowNamesFilter' => [ 'type' => 'list', 'member' => [ 'shape' => 'ShadowName', ], ], 'NamespaceId' => [ 'type' => 'string', 'pattern' => '[a-zA-Z0-9_-]+', ], 'NextToken' => [ 'type' => 'string', ], 'NonCompliantChecksCount' => [ 'type' => 'integer', ], 'NonCompliantResource' => [ 'type' => 'structure', 'members' => [ 'resourceType' => [ 'shape' => 'ResourceType', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], 'additionalInfo' => [ 'shape' => 'StringMap', ], ], ], 'NonCompliantResourcesCount' => [ 'type' => 'long', ], 'NotConfiguredException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NullableBoolean' => [ 'type' => 'boolean', ], 'Number' => [ 'type' => 'double', ], 'NumberList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Number', ], ], 'NumberOfRetries' => [ 'type' => 'integer', 'max' => 10, 'min' => 0, ], 'NumberOfThings' => [ 'type' => 'integer', 'min' => 1, ], 'OTAUpdateArn' => [ 'type' => 'string', ], 'OTAUpdateDescription' => [ 'type' => 'string', 'max' => 2028, 'pattern' => '[^\\p{C}]+', ], 'OTAUpdateErrorMessage' => [ 'type' => 'string', ], 'OTAUpdateFile' => [ 'type' => 'structure', 'members' => [ 'fileName' => [ 'shape' => 'FileName', ], 'fileType' => [ 'shape' => 'FileType', ], 'fileVersion' => [ 'shape' => 'OTAUpdateFileVersion', ], 'fileLocation' => [ 'shape' => 'FileLocation', ], 'codeSigning' => [ 'shape' => 'CodeSigning', ], 'attributes' => [ 'shape' => 'AttributesMap', ], ], ], 'OTAUpdateFileVersion' => [ 'type' => 'string', ], 'OTAUpdateFiles' => [ 'type' => 'list', 'member' => [ 'shape' => 'OTAUpdateFile', ], 'min' => 1, ], 'OTAUpdateId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'OTAUpdateInfo' => [ 'type' => 'structure', 'members' => [ 'otaUpdateId' => [ 'shape' => 'OTAUpdateId', ], 'otaUpdateArn' => [ 'shape' => 'OTAUpdateArn', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'description' => [ 'shape' => 'OTAUpdateDescription', ], 'targets' => [ 'shape' => 'Targets', ], 'protocols' => [ 'shape' => 'Protocols', ], 'awsJobExecutionsRolloutConfig' => [ 'shape' => 'AwsJobExecutionsRolloutConfig', ], 'awsJobPresignedUrlConfig' => [ 'shape' => 'AwsJobPresignedUrlConfig', ], 'targetSelection' => [ 'shape' => 'TargetSelection', ], 'otaUpdateFiles' => [ 'shape' => 'OTAUpdateFiles', ], 'otaUpdateStatus' => [ 'shape' => 'OTAUpdateStatus', ], 'awsIotJobId' => [ 'shape' => 'AwsIotJobId', ], 'awsIotJobArn' => [ 'shape' => 'AwsIotJobArn', ], 'errorInfo' => [ 'shape' => 'ErrorInfo', ], 'additionalParameters' => [ 'shape' => 'AdditionalParameterMap', ], ], ], 'OTAUpdateStatus' => [ 'type' => 'string', 'enum' => [ 'CREATE_PENDING', 'CREATE_IN_PROGRESS', 'CREATE_COMPLETE', 'CREATE_FAILED', 'DELETE_IN_PROGRESS', 'DELETE_FAILED', ], ], 'OTAUpdateSummary' => [ 'type' => 'structure', 'members' => [ 'otaUpdateId' => [ 'shape' => 'OTAUpdateId', ], 'otaUpdateArn' => [ 'shape' => 'OTAUpdateArn', ], 'creationDate' => [ 'shape' => 'DateType', ], ], ], 'OTAUpdatesSummary' => [ 'type' => 'list', 'member' => [ 'shape' => 'OTAUpdateSummary', ], ], 'OpenSearchAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'endpoint', 'index', 'type', 'id', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'endpoint' => [ 'shape' => 'ElasticsearchEndpoint', ], 'index' => [ 'shape' => 'ElasticsearchIndex', ], 'type' => [ 'shape' => 'ElasticsearchType', ], 'id' => [ 'shape' => 'ElasticsearchId', ], ], ], 'Optional' => [ 'type' => 'boolean', ], 'OptionalVersion' => [ 'type' => 'long', ], 'OutgoingCertificate' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'transferredTo' => [ 'shape' => 'AwsAccountId', ], 'transferDate' => [ 'shape' => 'DateType', ], 'transferMessage' => [ 'shape' => 'Message', ], 'creationDate' => [ 'shape' => 'DateType', ], ], ], 'OutgoingCertificates' => [ 'type' => 'list', 'member' => [ 'shape' => 'OutgoingCertificate', ], ], 'OverrideDynamicGroups' => [ 'type' => 'boolean', ], 'PackageArn' => [ 'type' => 'string', ], 'PackageCatalogMaxResults' => [ 'type' => 'integer', 'box' => true, 'max' => 100, 'min' => 1, ], 'PackageName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9-_.]+', ], 'PackageSummary' => [ 'type' => 'structure', 'members' => [ 'packageName' => [ 'shape' => 'PackageName', ], 'defaultVersionName' => [ 'shape' => 'VersionName', ], 'creationDate' => [ 'shape' => 'CreationDate', ], 'lastModifiedDate' => [ 'shape' => 'LastModifiedDate', ], ], ], 'PackageSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PackageSummary', ], ], 'PackageVersionAction' => [ 'type' => 'string', 'enum' => [ 'PUBLISH', 'DEPRECATE', ], ], 'PackageVersionArn' => [ 'type' => 'string', 'max' => 1600, 'min' => 1, 'pattern' => '^arn:[!-~]+$', ], 'PackageVersionErrorReason' => [ 'type' => 'string', ], 'PackageVersionStatus' => [ 'type' => 'string', 'enum' => [ 'DRAFT', 'PUBLISHED', 'DEPRECATED', ], ], 'PackageVersionSummary' => [ 'type' => 'structure', 'members' => [ 'packageName' => [ 'shape' => 'PackageName', ], 'versionName' => [ 'shape' => 'VersionName', ], 'status' => [ 'shape' => 'PackageVersionStatus', ], 'creationDate' => [ 'shape' => 'CreationDate', ], 'lastModifiedDate' => [ 'shape' => 'LastModifiedDate', ], ], ], 'PackageVersionSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PackageVersionSummary', ], ], 'PageSize' => [ 'type' => 'integer', 'max' => 250, 'min' => 1, ], 'Parameter' => [ 'type' => 'string', 'max' => 2048, 'min' => 0, 'pattern' => '[\\s\\S]*', ], 'ParameterKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'ParameterMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'ParameterKey', ], 'value' => [ 'shape' => 'ParameterValue', ], ], 'ParameterValue' => [ 'type' => 'string', 'max' => 512, 'min' => 1, 'pattern' => '[^\\p{C}]+', ], 'Parameters' => [ 'type' => 'map', 'key' => [ 'shape' => 'Parameter', ], 'value' => [ 'shape' => 'Value', ], ], 'PartitionKey' => [ 'type' => 'string', ], 'PayloadField' => [ 'type' => 'string', ], 'PayloadFormatIndicator' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, ], 'PayloadVersion' => [ 'type' => 'string', 'max' => 32, 'min' => 10, 'pattern' => '^[0-9-]+$', ], 'Percent' => [ 'type' => 'double', 'max' => 100, 'min' => 0, ], 'PercentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Percent', ], ], 'PercentPair' => [ 'type' => 'structure', 'members' => [ 'percent' => [ 'shape' => 'Percent', ], 'value' => [ 'shape' => 'PercentValue', ], ], ], 'PercentValue' => [ 'type' => 'double', ], 'Percentage' => [ 'type' => 'integer', 'max' => 100, 'min' => 0, ], 'Percentiles' => [ 'type' => 'list', 'member' => [ 'shape' => 'PercentPair', ], ], 'Platform' => [ 'type' => 'string', ], 'Policies' => [ 'type' => 'list', 'member' => [ 'shape' => 'Policy', ], ], 'Policy' => [ 'type' => 'structure', 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', ], 'policyArn' => [ 'shape' => 'PolicyArn', ], ], ], 'PolicyArn' => [ 'type' => 'string', ], 'PolicyDocument' => [ 'type' => 'string', 'max' => 404600, 'min' => 0, 'pattern' => '[\\s\\S]*', ], 'PolicyDocuments' => [ 'type' => 'list', 'member' => [ 'shape' => 'PolicyDocument', ], ], 'PolicyName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w+=,.@-]+', ], 'PolicyNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'PolicyName', ], ], 'PolicyTarget' => [ 'type' => 'string', ], 'PolicyTargets' => [ 'type' => 'list', 'member' => [ 'shape' => 'PolicyTarget', ], ], 'PolicyTemplateName' => [ 'type' => 'string', 'enum' => [ 'BLANK_POLICY', ], ], 'PolicyVersion' => [ 'type' => 'structure', 'members' => [ 'versionId' => [ 'shape' => 'PolicyVersionId', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], 'createDate' => [ 'shape' => 'DateType', ], ], ], 'PolicyVersionId' => [ 'type' => 'string', 'pattern' => '[0-9]+', ], 'PolicyVersionIdentifier' => [ 'type' => 'structure', 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', ], ], ], 'PolicyVersions' => [ 'type' => 'list', 'member' => [ 'shape' => 'PolicyVersion', ], ], 'Port' => [ 'type' => 'integer', 'max' => 65535, 'min' => 0, ], 'Ports' => [ 'type' => 'list', 'member' => [ 'shape' => 'Port', ], ], 'Prefix' => [ 'type' => 'string', ], 'PresignedUrlConfig' => [ 'type' => 'structure', 'members' => [ 'roleArn' => [ 'shape' => 'RoleArn', ], 'expiresInSec' => [ 'shape' => 'ExpiresInSec', ], ], ], 'PrimitiveBoolean' => [ 'type' => 'boolean', ], 'Principal' => [ 'type' => 'string', ], 'PrincipalArn' => [ 'type' => 'string', ], 'PrincipalId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9]+', ], 'Principals' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrincipalArn', ], ], 'PrivateKey' => [ 'type' => 'string', 'min' => 1, 'sensitive' => true, ], 'ProcessingTargetName' => [ 'type' => 'string', ], 'ProcessingTargetNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProcessingTargetName', ], ], 'Protocol' => [ 'type' => 'string', 'enum' => [ 'MQTT', 'HTTP', ], ], 'Protocols' => [ 'type' => 'list', 'member' => [ 'shape' => 'Protocol', ], 'max' => 2, 'min' => 1, ], 'ProvisioningHook' => [ 'type' => 'structure', 'required' => [ 'targetArn', ], 'members' => [ 'payloadVersion' => [ 'shape' => 'PayloadVersion', ], 'targetArn' => [ 'shape' => 'TargetArn', ], ], ], 'ProvisioningTemplateListing' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProvisioningTemplateSummary', ], ], 'ProvisioningTemplateSummary' => [ 'type' => 'structure', 'members' => [ 'templateArn' => [ 'shape' => 'TemplateArn', ], 'templateName' => [ 'shape' => 'TemplateName', ], 'description' => [ 'shape' => 'TemplateDescription', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'enabled' => [ 'shape' => 'Enabled', ], 'type' => [ 'shape' => 'TemplateType', ], ], ], 'ProvisioningTemplateVersionListing' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProvisioningTemplateVersionSummary', ], ], 'ProvisioningTemplateVersionSummary' => [ 'type' => 'structure', 'members' => [ 'versionId' => [ 'shape' => 'TemplateVersionId', ], 'creationDate' => [ 'shape' => 'DateType', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], ], ], 'PublicKey' => [ 'type' => 'string', 'min' => 1, ], 'PublicKeyMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'KeyName', ], 'value' => [ 'shape' => 'KeyValue', ], ], 'PublishFindingToSnsParams' => [ 'type' => 'structure', 'required' => [ 'topicArn', ], 'members' => [ 'topicArn' => [ 'shape' => 'SnsTopicArn', ], ], ], 'PutAssetPropertyValueEntry' => [ 'type' => 'structure', 'required' => [ 'propertyValues', ], 'members' => [ 'entryId' => [ 'shape' => 'AssetPropertyEntryId', ], 'assetId' => [ 'shape' => 'AssetId', ], 'propertyId' => [ 'shape' => 'AssetPropertyId', ], 'propertyAlias' => [ 'shape' => 'AssetPropertyAlias', ], 'propertyValues' => [ 'shape' => 'AssetPropertyValueList', ], ], ], 'PutAssetPropertyValueEntryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PutAssetPropertyValueEntry', ], 'min' => 1, ], 'PutItemInput' => [ 'type' => 'structure', 'required' => [ 'tableName', ], 'members' => [ 'tableName' => [ 'shape' => 'TableName', ], ], ], 'PutVerificationStateOnViolationRequest' => [ 'type' => 'structure', 'required' => [ 'violationId', 'verificationState', ], 'members' => [ 'violationId' => [ 'shape' => 'ViolationId', 'location' => 'uri', 'locationName' => 'violationId', ], 'verificationState' => [ 'shape' => 'VerificationState', ], 'verificationStateDescription' => [ 'shape' => 'VerificationStateDescription', ], ], ], 'PutVerificationStateOnViolationResponse' => [ 'type' => 'structure', 'members' => [], ], 'Qos' => [ 'type' => 'integer', 'max' => 1, 'min' => 0, ], 'QueryMaxResults' => [ 'type' => 'integer', 'max' => 500, 'min' => 1, ], 'QueryString' => [ 'type' => 'string', 'min' => 1, ], 'QueryVersion' => [ 'type' => 'string', ], 'QueueUrl' => [ 'type' => 'string', ], 'QueuedThings' => [ 'type' => 'integer', ], 'RangeKeyField' => [ 'type' => 'string', ], 'RangeKeyValue' => [ 'type' => 'string', ], 'RateIncreaseCriteria' => [ 'type' => 'structure', 'members' => [ 'numberOfNotifiedThings' => [ 'shape' => 'NumberOfThings', ], 'numberOfSucceededThings' => [ 'shape' => 'NumberOfThings', ], ], ], 'ReasonCode' => [ 'type' => 'string', 'max' => 128, 'pattern' => '[\\p{Upper}\\p{Digit}_]+', ], 'ReasonForNonCompliance' => [ 'type' => 'string', ], 'ReasonForNonComplianceCode' => [ 'type' => 'string', ], 'ReasonForNonComplianceCodes' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReasonForNonComplianceCode', ], 'max' => 25, 'min' => 1, ], 'Recursive' => [ 'type' => 'boolean', ], 'RecursiveWithoutDefault' => [ 'type' => 'boolean', ], 'Regex' => [ 'type' => 'string', ], 'RegisterCACertificateRequest' => [ 'type' => 'structure', 'required' => [ 'caCertificate', ], 'members' => [ 'caCertificate' => [ 'shape' => 'CertificatePem', ], 'verificationCertificate' => [ 'shape' => 'CertificatePem', ], 'setAsActive' => [ 'shape' => 'SetAsActive', 'location' => 'querystring', 'locationName' => 'setAsActive', ], 'allowAutoRegistration' => [ 'shape' => 'AllowAutoRegistration', 'location' => 'querystring', 'locationName' => 'allowAutoRegistration', ], 'registrationConfig' => [ 'shape' => 'RegistrationConfig', ], 'tags' => [ 'shape' => 'TagList', ], 'certificateMode' => [ 'shape' => 'CertificateMode', ], ], ], 'RegisterCACertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], ], ], 'RegisterCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificatePem', ], 'members' => [ 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'caCertificatePem' => [ 'shape' => 'CertificatePem', ], 'setAsActive' => [ 'shape' => 'SetAsActiveFlag', 'deprecated' => true, 'location' => 'querystring', 'locationName' => 'setAsActive', ], 'status' => [ 'shape' => 'CertificateStatus', ], ], ], 'RegisterCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], ], ], 'RegisterCertificateWithoutCARequest' => [ 'type' => 'structure', 'required' => [ 'certificatePem', ], 'members' => [ 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'status' => [ 'shape' => 'CertificateStatus', ], ], ], 'RegisterCertificateWithoutCAResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], ], ], 'RegisterThingRequest' => [ 'type' => 'structure', 'required' => [ 'templateBody', ], 'members' => [ 'templateBody' => [ 'shape' => 'TemplateBody', ], 'parameters' => [ 'shape' => 'Parameters', ], ], ], 'RegisterThingResponse' => [ 'type' => 'structure', 'members' => [ 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'resourceArns' => [ 'shape' => 'ResourceArns', ], ], ], 'RegistrationCode' => [ 'type' => 'string', 'max' => 64, 'min' => 64, 'pattern' => '(0x)?[a-fA-F0-9]+', ], 'RegistrationCodeValidationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'RegistrationConfig' => [ 'type' => 'structure', 'members' => [ 'templateBody' => [ 'shape' => 'TemplateBody', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'templateName' => [ 'shape' => 'TemplateName', ], ], ], 'RegistryMaxResults' => [ 'type' => 'integer', 'max' => 250, 'min' => 1, ], 'RegistryS3BucketName' => [ 'type' => 'string', 'max' => 256, 'min' => 3, 'pattern' => '[a-zA-Z0-9._-]+', ], 'RegistryS3KeyName' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, 'pattern' => '[a-zA-Z0-9!_.*\'()-\\/]+', ], 'RejectCertificateTransferRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'rejectReason' => [ 'shape' => 'Message', ], ], ], 'RejectedThings' => [ 'type' => 'integer', ], 'RelatedResource' => [ 'type' => 'structure', 'members' => [ 'resourceType' => [ 'shape' => 'ResourceType', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], 'additionalInfo' => [ 'shape' => 'StringMap', ], ], ], 'RelatedResources' => [ 'type' => 'list', 'member' => [ 'shape' => 'RelatedResource', ], ], 'RemoveAuthorizerConfig' => [ 'type' => 'boolean', ], 'RemoveAutoRegistration' => [ 'type' => 'boolean', ], 'RemoveHook' => [ 'type' => 'boolean', ], 'RemoveThingFromBillingGroupRequest' => [ 'type' => 'structure', 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', ], 'billingGroupArn' => [ 'shape' => 'BillingGroupArn', ], 'thingName' => [ 'shape' => 'ThingName', ], 'thingArn' => [ 'shape' => 'ThingArn', ], ], ], 'RemoveThingFromBillingGroupResponse' => [ 'type' => 'structure', 'members' => [], ], 'RemoveThingFromThingGroupRequest' => [ 'type' => 'structure', 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', ], 'thingGroupArn' => [ 'shape' => 'ThingGroupArn', ], 'thingName' => [ 'shape' => 'ThingName', ], 'thingArn' => [ 'shape' => 'ThingArn', ], ], ], 'RemoveThingFromThingGroupResponse' => [ 'type' => 'structure', 'members' => [], ], 'RemoveThingType' => [ 'type' => 'boolean', ], 'RemovedThings' => [ 'type' => 'integer', ], 'ReplaceDefaultPolicyVersionParams' => [ 'type' => 'structure', 'required' => [ 'templateName', ], 'members' => [ 'templateName' => [ 'shape' => 'PolicyTemplateName', ], ], ], 'ReplaceTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', 'topicRulePayload', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], 'topicRulePayload' => [ 'shape' => 'TopicRulePayload', ], ], 'payload' => 'topicRulePayload', ], 'ReportType' => [ 'type' => 'string', 'enum' => [ 'ERRORS', 'RESULTS', ], ], 'RepublishAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'topic', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'topic' => [ 'shape' => 'TopicPattern', ], 'qos' => [ 'shape' => 'Qos', ], 'headers' => [ 'shape' => 'MqttHeaders', ], ], ], 'ReservedDomainConfigurationName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w.:-]+', ], 'Resource' => [ 'type' => 'string', 'max' => 2048, 'pattern' => '[\\s\\S]*', ], 'ResourceAlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], 'resourceId' => [ 'shape' => 'resourceId', ], 'resourceArn' => [ 'shape' => 'resourceArn', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'ResourceArn' => [ 'type' => 'string', ], 'ResourceArns' => [ 'type' => 'map', 'key' => [ 'shape' => 'ResourceLogicalId', ], 'value' => [ 'shape' => 'ResourceArn', ], ], 'ResourceAttributeKey' => [ 'type' => 'string', 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'ResourceAttributeValue' => [ 'type' => 'string', 'min' => 1, 'pattern' => '[^\\p{C}]+', ], 'ResourceAttributes' => [ 'type' => 'map', 'key' => [ 'shape' => 'ResourceAttributeKey', ], 'value' => [ 'shape' => 'ResourceAttributeValue', ], 'sensitive' => true, ], 'ResourceDescription' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, 'pattern' => '[^\\p{C}]+', 'sensitive' => true, ], 'ResourceIdentifier' => [ 'type' => 'structure', 'members' => [ 'deviceCertificateId' => [ 'shape' => 'CertificateId', ], 'caCertificateId' => [ 'shape' => 'CertificateId', ], 'cognitoIdentityPoolId' => [ 'shape' => 'CognitoIdentityPoolId', ], 'clientId' => [ 'shape' => 'ClientId', ], 'policyVersionIdentifier' => [ 'shape' => 'PolicyVersionIdentifier', ], 'account' => [ 'shape' => 'AwsAccountId', ], 'iamRoleArn' => [ 'shape' => 'RoleArn', ], 'roleAliasArn' => [ 'shape' => 'RoleAliasArn', ], 'issuerCertificateIdentifier' => [ 'shape' => 'IssuerCertificateIdentifier', ], 'deviceCertificateArn' => [ 'shape' => 'CertificateArn', ], ], ], 'ResourceLogicalId' => [ 'type' => 'string', ], 'ResourceNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'ResourceRegistrationFailureException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'ResourceType' => [ 'type' => 'string', 'enum' => [ 'DEVICE_CERTIFICATE', 'CA_CERTIFICATE', 'IOT_POLICY', 'COGNITO_IDENTITY_POOL', 'CLIENT_ID', 'ACCOUNT_SETTINGS', 'ROLE_ALIAS', 'IAM_ROLE', 'ISSUER_CERTIFICATE', ], ], 'Resources' => [ 'type' => 'list', 'member' => [ 'shape' => 'Resource', ], ], 'ResponseTopic' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, ], 'RetryAttempt' => [ 'type' => 'integer', ], 'RetryCriteria' => [ 'type' => 'structure', 'required' => [ 'failureType', 'numberOfRetries', ], 'members' => [ 'failureType' => [ 'shape' => 'RetryableFailureType', ], 'numberOfRetries' => [ 'shape' => 'NumberOfRetries', ], ], ], 'RetryCriteriaList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RetryCriteria', ], 'max' => 2, 'min' => 1, ], 'RetryableFailureType' => [ 'type' => 'string', 'enum' => [ 'FAILED', 'TIMED_OUT', 'ALL', ], ], 'RoleAlias' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w=,@-]+', ], 'RoleAliasArn' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, ], 'RoleAliasDescription' => [ 'type' => 'structure', 'members' => [ 'roleAlias' => [ 'shape' => 'RoleAlias', ], 'roleAliasArn' => [ 'shape' => 'RoleAliasArn', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'owner' => [ 'shape' => 'AwsAccountId', ], 'credentialDurationSeconds' => [ 'shape' => 'CredentialDurationSeconds', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], ], ], 'RoleAliases' => [ 'type' => 'list', 'member' => [ 'shape' => 'RoleAlias', ], ], 'RoleArn' => [ 'type' => 'string', 'max' => 2048, 'min' => 20, ], 'RolloutRatePerMinute' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'RuleArn' => [ 'type' => 'string', ], 'RuleName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '^[a-zA-Z0-9_]+$', ], 'S3Action' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'bucketName', 'key', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'bucketName' => [ 'shape' => 'BucketName', ], 'key' => [ 'shape' => 'Key', ], 'cannedAcl' => [ 'shape' => 'CannedAccessControlList', ], ], ], 'S3Bucket' => [ 'type' => 'string', 'min' => 1, ], 'S3Destination' => [ 'type' => 'structure', 'members' => [ 'bucket' => [ 'shape' => 'S3Bucket', ], 'prefix' => [ 'shape' => 'Prefix', ], ], ], 'S3FileUrl' => [ 'type' => 'string', 'max' => 65535, ], 'S3FileUrlList' => [ 'type' => 'list', 'member' => [ 'shape' => 'S3FileUrl', ], ], 'S3Key' => [ 'type' => 'string', 'min' => 1, ], 'S3Location' => [ 'type' => 'structure', 'members' => [ 'bucket' => [ 'shape' => 'S3Bucket', ], 'key' => [ 'shape' => 'S3Key', ], 'version' => [ 'shape' => 'S3Version', ], ], ], 'S3Version' => [ 'type' => 'string', ], 'SQL' => [ 'type' => 'string', ], 'SalesforceAction' => [ 'type' => 'structure', 'required' => [ 'token', 'url', ], 'members' => [ 'token' => [ 'shape' => 'SalesforceToken', ], 'url' => [ 'shape' => 'SalesforceEndpoint', ], ], ], 'SalesforceEndpoint' => [ 'type' => 'string', 'max' => 2000, 'pattern' => 'https://ingestion-[a-zA-Z0-9]{1,12}\\.[a-zA-Z0-9]+\\.((sfdc-matrix\\.net)|(sfdcnow\\.com))/streams/\\w{1,20}/\\w{1,20}/event', ], 'SalesforceToken' => [ 'type' => 'string', 'min' => 40, ], 'ScheduledAuditArn' => [ 'type' => 'string', ], 'ScheduledAuditMetadata' => [ 'type' => 'structure', 'members' => [ 'scheduledAuditName' => [ 'shape' => 'ScheduledAuditName', ], 'scheduledAuditArn' => [ 'shape' => 'ScheduledAuditArn', ], 'frequency' => [ 'shape' => 'AuditFrequency', ], 'dayOfMonth' => [ 'shape' => 'DayOfMonth', ], 'dayOfWeek' => [ 'shape' => 'DayOfWeek', ], ], ], 'ScheduledAuditMetadataList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledAuditMetadata', ], ], 'ScheduledAuditName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'ScheduledJobRollout' => [ 'type' => 'structure', 'members' => [ 'startTime' => [ 'shape' => 'StringDateTime', ], ], ], 'ScheduledJobRolloutList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledJobRollout', ], ], 'SchedulingConfig' => [ 'type' => 'structure', 'members' => [ 'startTime' => [ 'shape' => 'StringDateTime', ], 'endTime' => [ 'shape' => 'StringDateTime', ], 'endBehavior' => [ 'shape' => 'JobEndBehavior', ], 'maintenanceWindows' => [ 'shape' => 'MaintenanceWindows', ], ], ], 'SearchIndexRequest' => [ 'type' => 'structure', 'required' => [ 'queryString', ], 'members' => [ 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'maxResults' => [ 'shape' => 'QueryMaxResults', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], ], ], 'SearchIndexResponse' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', ], 'things' => [ 'shape' => 'ThingDocumentList', ], 'thingGroups' => [ 'shape' => 'ThingGroupDocumentList', ], ], ], 'SearchableAttributes' => [ 'type' => 'list', 'member' => [ 'shape' => 'AttributeName', ], ], 'Seconds' => [ 'type' => 'integer', ], 'SecurityGroupId' => [ 'type' => 'string', ], 'SecurityGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', ], ], 'SecurityPolicy' => [ 'type' => 'string', 'max' => 128, 'pattern' => '[\\s\\S]*', ], 'SecurityProfileArn' => [ 'type' => 'string', ], 'SecurityProfileDescription' => [ 'type' => 'string', 'max' => 1000, 'pattern' => '[\\p{Graph}\\x20]*', ], 'SecurityProfileIdentifier' => [ 'type' => 'structure', 'required' => [ 'name', 'arn', ], 'members' => [ 'name' => [ 'shape' => 'SecurityProfileName', ], 'arn' => [ 'shape' => 'SecurityProfileArn', ], ], ], 'SecurityProfileIdentifiers' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityProfileIdentifier', ], ], 'SecurityProfileName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'SecurityProfileTarget' => [ 'type' => 'structure', 'required' => [ 'arn', ], 'members' => [ 'arn' => [ 'shape' => 'SecurityProfileTargetArn', ], ], ], 'SecurityProfileTargetArn' => [ 'type' => 'string', ], 'SecurityProfileTargetMapping' => [ 'type' => 'structure', 'members' => [ 'securityProfileIdentifier' => [ 'shape' => 'SecurityProfileIdentifier', ], 'target' => [ 'shape' => 'SecurityProfileTarget', ], ], ], 'SecurityProfileTargetMappings' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityProfileTargetMapping', ], ], 'SecurityProfileTargets' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityProfileTarget', ], ], 'ServerCertificateArns' => [ 'type' => 'list', 'member' => [ 'shape' => 'AcmCertificateArn', ], 'max' => 1, 'min' => 0, ], 'ServerCertificateConfig' => [ 'type' => 'structure', 'members' => [ 'enableOCSPCheck' => [ 'shape' => 'EnableOCSPCheck', ], ], ], 'ServerCertificateStatus' => [ 'type' => 'string', 'enum' => [ 'INVALID', 'VALID', ], ], 'ServerCertificateStatusDetail' => [ 'type' => 'string', ], 'ServerCertificateSummary' => [ 'type' => 'structure', 'members' => [ 'serverCertificateArn' => [ 'shape' => 'AcmCertificateArn', ], 'serverCertificateStatus' => [ 'shape' => 'ServerCertificateStatus', ], 'serverCertificateStatusDetail' => [ 'shape' => 'ServerCertificateStatusDetail', ], ], ], 'ServerCertificates' => [ 'type' => 'list', 'member' => [ 'shape' => 'ServerCertificateSummary', ], ], 'ServerName' => [ 'type' => 'string', 'max' => 253, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'ServiceName' => [ 'type' => 'string', ], 'ServiceQuotaExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 402, ], 'exception' => true, ], 'ServiceType' => [ 'type' => 'string', 'enum' => [ 'DATA', 'CREDENTIAL_PROVIDER', 'JOBS', ], ], 'ServiceUnavailableException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], 'SetAsActive' => [ 'type' => 'boolean', ], 'SetAsActiveFlag' => [ 'type' => 'boolean', ], 'SetAsDefault' => [ 'type' => 'boolean', ], 'SetDefaultAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'authorizerName', ], 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', ], ], ], 'SetDefaultAuthorizerResponse' => [ 'type' => 'structure', 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', ], 'authorizerArn' => [ 'shape' => 'AuthorizerArn', ], ], ], 'SetDefaultPolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyVersionId', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', 'location' => 'uri', 'locationName' => 'policyVersionId', ], ], ], 'SetLoggingOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'loggingOptionsPayload', ], 'members' => [ 'loggingOptionsPayload' => [ 'shape' => 'LoggingOptionsPayload', ], ], 'payload' => 'loggingOptionsPayload', ], 'SetV2LoggingLevelRequest' => [ 'type' => 'structure', 'required' => [ 'logTarget', 'logLevel', ], 'members' => [ 'logTarget' => [ 'shape' => 'LogTarget', ], 'logLevel' => [ 'shape' => 'LogLevel', ], ], ], 'SetV2LoggingOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'defaultLogLevel' => [ 'shape' => 'LogLevel', ], 'disableAllLogs' => [ 'shape' => 'DisableAllLogs', ], ], ], 'ShadowName' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '[$a-zA-Z0-9:_-]+', ], 'SigV4Authorization' => [ 'type' => 'structure', 'required' => [ 'signingRegion', 'serviceName', 'roleArn', ], 'members' => [ 'signingRegion' => [ 'shape' => 'SigningRegion', ], 'serviceName' => [ 'shape' => 'ServiceName', ], 'roleArn' => [ 'shape' => 'AwsArn', ], ], ], 'Signature' => [ 'type' => 'blob', ], 'SignatureAlgorithm' => [ 'type' => 'string', ], 'SigningJobId' => [ 'type' => 'string', ], 'SigningProfileName' => [ 'type' => 'string', ], 'SigningProfileParameter' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'platform' => [ 'shape' => 'Platform', ], 'certificatePathOnDevice' => [ 'shape' => 'CertificatePathOnDevice', ], ], ], 'SigningRegion' => [ 'type' => 'string', ], 'SkippedFindingsCount' => [ 'type' => 'long', ], 'SkyfallMaxResults' => [ 'type' => 'integer', 'max' => 250, 'min' => 1, ], 'SnsAction' => [ 'type' => 'structure', 'required' => [ 'targetArn', 'roleArn', ], 'members' => [ 'targetArn' => [ 'shape' => 'AwsArn', ], 'roleArn' => [ 'shape' => 'AwsArn', ], 'messageFormat' => [ 'shape' => 'MessageFormat', ], ], ], 'SnsTopicArn' => [ 'type' => 'string', 'max' => 350, ], 'SqlParseException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'SqsAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'queueUrl', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'queueUrl' => [ 'shape' => 'QueueUrl', ], 'useBase64' => [ 'shape' => 'UseBase64', ], ], ], 'StartAuditMitigationActionsTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', 'target', 'auditCheckToActionsMapping', 'clientRequestToken', ], 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', 'location' => 'uri', 'locationName' => 'taskId', ], 'target' => [ 'shape' => 'AuditMitigationActionsTaskTarget', ], 'auditCheckToActionsMapping' => [ 'shape' => 'AuditCheckToActionsMapping', ], 'clientRequestToken' => [ 'shape' => 'ClientRequestToken', 'idempotencyToken' => true, ], ], ], 'StartAuditMitigationActionsTaskResponse' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', ], ], ], 'StartDetectMitigationActionsTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', 'target', 'actions', 'clientRequestToken', ], 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', 'location' => 'uri', 'locationName' => 'taskId', ], 'target' => [ 'shape' => 'DetectMitigationActionsTaskTarget', ], 'actions' => [ 'shape' => 'DetectMitigationActionsToExecuteList', ], 'violationEventOccurrenceRange' => [ 'shape' => 'ViolationEventOccurrenceRange', ], 'includeOnlyActiveViolations' => [ 'shape' => 'NullableBoolean', ], 'includeSuppressedAlerts' => [ 'shape' => 'NullableBoolean', ], 'clientRequestToken' => [ 'shape' => 'ClientRequestToken', 'idempotencyToken' => true, ], ], ], 'StartDetectMitigationActionsTaskResponse' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', ], ], ], 'StartOnDemandAuditTaskRequest' => [ 'type' => 'structure', 'required' => [ 'targetCheckNames', ], 'members' => [ 'targetCheckNames' => [ 'shape' => 'TargetAuditCheckNames', ], ], ], 'StartOnDemandAuditTaskResponse' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'AuditTaskId', ], ], ], 'StartSigningJobParameter' => [ 'type' => 'structure', 'members' => [ 'signingProfileParameter' => [ 'shape' => 'SigningProfileParameter', ], 'signingProfileName' => [ 'shape' => 'SigningProfileName', ], 'destination' => [ 'shape' => 'Destination', ], ], ], 'StartThingRegistrationTaskRequest' => [ 'type' => 'structure', 'required' => [ 'templateBody', 'inputFileBucket', 'inputFileKey', 'roleArn', ], 'members' => [ 'templateBody' => [ 'shape' => 'TemplateBody', ], 'inputFileBucket' => [ 'shape' => 'RegistryS3BucketName', ], 'inputFileKey' => [ 'shape' => 'RegistryS3KeyName', ], 'roleArn' => [ 'shape' => 'RoleArn', ], ], ], 'StartThingRegistrationTaskResponse' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'TaskId', ], ], ], 'StateMachineName' => [ 'type' => 'string', ], 'StateReason' => [ 'type' => 'string', ], 'StateValue' => [ 'type' => 'string', ], 'StatisticalThreshold' => [ 'type' => 'structure', 'members' => [ 'statistic' => [ 'shape' => 'EvaluationStatistic', ], ], ], 'Statistics' => [ 'type' => 'structure', 'members' => [ 'count' => [ 'shape' => 'Count', ], 'average' => [ 'shape' => 'Average', 'box' => true, ], 'sum' => [ 'shape' => 'Sum', 'box' => true, ], 'minimum' => [ 'shape' => 'Minimum', 'box' => true, ], 'maximum' => [ 'shape' => 'Maximum', 'box' => true, ], 'sumOfSquares' => [ 'shape' => 'SumOfSquares', 'box' => true, ], 'variance' => [ 'shape' => 'Variance', 'box' => true, ], 'stdDeviation' => [ 'shape' => 'StdDeviation', 'box' => true, ], ], ], 'Status' => [ 'type' => 'string', 'enum' => [ 'InProgress', 'Completed', 'Failed', 'Cancelled', 'Cancelling', ], ], 'StdDeviation' => [ 'type' => 'double', ], 'StepFunctionsAction' => [ 'type' => 'structure', 'required' => [ 'stateMachineName', 'roleArn', ], 'members' => [ 'executionNamePrefix' => [ 'shape' => 'ExecutionNamePrefix', ], 'stateMachineName' => [ 'shape' => 'StateMachineName', ], 'roleArn' => [ 'shape' => 'AwsArn', ], ], ], 'StopThingRegistrationTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', ], 'members' => [ 'taskId' => [ 'shape' => 'TaskId', 'location' => 'uri', 'locationName' => 'taskId', ], ], ], 'StopThingRegistrationTaskResponse' => [ 'type' => 'structure', 'members' => [], ], 'Stream' => [ 'type' => 'structure', 'members' => [ 'streamId' => [ 'shape' => 'StreamId', ], 'fileId' => [ 'shape' => 'FileId', ], ], ], 'StreamArn' => [ 'type' => 'string', ], 'StreamDescription' => [ 'type' => 'string', 'max' => 2028, 'pattern' => '[^\\p{C}]+', ], 'StreamFile' => [ 'type' => 'structure', 'members' => [ 'fileId' => [ 'shape' => 'FileId', ], 's3Location' => [ 'shape' => 'S3Location', ], ], ], 'StreamFiles' => [ 'type' => 'list', 'member' => [ 'shape' => 'StreamFile', ], 'max' => 50, 'min' => 1, ], 'StreamId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'StreamInfo' => [ 'type' => 'structure', 'members' => [ 'streamId' => [ 'shape' => 'StreamId', ], 'streamArn' => [ 'shape' => 'StreamArn', ], 'streamVersion' => [ 'shape' => 'StreamVersion', ], 'description' => [ 'shape' => 'StreamDescription', ], 'files' => [ 'shape' => 'StreamFiles', ], 'createdAt' => [ 'shape' => 'DateType', ], 'lastUpdatedAt' => [ 'shape' => 'DateType', ], 'roleArn' => [ 'shape' => 'RoleArn', ], ], ], 'StreamName' => [ 'type' => 'string', ], 'StreamSummary' => [ 'type' => 'structure', 'members' => [ 'streamId' => [ 'shape' => 'StreamId', ], 'streamArn' => [ 'shape' => 'StreamArn', ], 'streamVersion' => [ 'shape' => 'StreamVersion', ], 'description' => [ 'shape' => 'StreamDescription', ], ], ], 'StreamVersion' => [ 'type' => 'integer', 'max' => 65535, 'min' => 0, ], 'StreamsSummary' => [ 'type' => 'list', 'member' => [ 'shape' => 'StreamSummary', ], ], 'String' => [ 'type' => 'string', ], 'StringDateTime' => [ 'type' => 'string', 'max' => 64, 'min' => 1, ], 'StringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'stringValue', ], ], 'StringMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'SubnetId' => [ 'type' => 'string', ], 'SubnetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetId', ], ], 'SucceededFindingsCount' => [ 'type' => 'long', ], 'SucceededThings' => [ 'type' => 'integer', ], 'Sum' => [ 'type' => 'double', ], 'SumOfSquares' => [ 'type' => 'double', ], 'SuppressAlerts' => [ 'type' => 'boolean', ], 'SuppressIndefinitely' => [ 'type' => 'boolean', ], 'SuppressedNonCompliantResourcesCount' => [ 'type' => 'long', ], 'TableName' => [ 'type' => 'string', ], 'Tag' => [ 'type' => 'structure', 'required' => [ 'Key', ], 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Value' => [ 'shape' => 'TagValue', ], ], ], 'TagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$', ], 'TagKeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagKey', ], ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', ], ], 'TagMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'TagKey', ], 'value' => [ 'shape' => 'TagValue', ], 'max' => 50, 'min' => 1, ], 'TagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'resourceArn', 'tags', ], 'members' => [ 'resourceArn' => [ 'shape' => 'ResourceArn', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'TagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'TagValue' => [ 'type' => 'string', 'max' => 256, 'min' => 0, ], 'Target' => [ 'type' => 'string', ], 'TargetArn' => [ 'type' => 'string', 'max' => 2048, ], 'TargetAuditCheckNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuditCheckName', ], ], 'TargetFieldName' => [ 'type' => 'string', ], 'TargetFieldOrder' => [ 'type' => 'string', 'enum' => [ 'LatLon', 'LonLat', ], ], 'TargetSelection' => [ 'type' => 'string', 'enum' => [ 'CONTINUOUS', 'SNAPSHOT', ], ], 'TargetViolationIdsForDetectMitigationActions' => [ 'type' => 'list', 'member' => [ 'shape' => 'ViolationId', ], 'max' => 25, 'min' => 1, ], 'Targets' => [ 'type' => 'list', 'member' => [ 'shape' => 'Target', ], 'min' => 1, ], 'TaskAlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TaskId' => [ 'type' => 'string', 'max' => 40, ], 'TaskIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TaskId', ], ], 'TaskStatistics' => [ 'type' => 'structure', 'members' => [ 'totalChecks' => [ 'shape' => 'TotalChecksCount', ], 'inProgressChecks' => [ 'shape' => 'InProgressChecksCount', ], 'waitingForDataCollectionChecks' => [ 'shape' => 'WaitingForDataCollectionChecksCount', ], 'compliantChecks' => [ 'shape' => 'CompliantChecksCount', ], 'nonCompliantChecks' => [ 'shape' => 'NonCompliantChecksCount', ], 'failedChecks' => [ 'shape' => 'FailedChecksCount', ], 'canceledChecks' => [ 'shape' => 'CanceledChecksCount', ], ], ], 'TaskStatisticsForAuditCheck' => [ 'type' => 'structure', 'members' => [ 'totalFindingsCount' => [ 'shape' => 'TotalFindingsCount', ], 'failedFindingsCount' => [ 'shape' => 'FailedFindingsCount', ], 'succeededFindingsCount' => [ 'shape' => 'SucceededFindingsCount', ], 'skippedFindingsCount' => [ 'shape' => 'SkippedFindingsCount', ], 'canceledFindingsCount' => [ 'shape' => 'CanceledFindingsCount', ], ], ], 'TemplateArn' => [ 'type' => 'string', ], 'TemplateBody' => [ 'type' => 'string', 'max' => 10240, 'min' => 0, 'pattern' => '[\\s\\S]*', ], 'TemplateDescription' => [ 'type' => 'string', 'max' => 500, 'min' => 0, 'pattern' => '[^\\p{C}]*', ], 'TemplateName' => [ 'type' => 'string', 'max' => 36, 'min' => 1, 'pattern' => '^[0-9A-Za-z_-]+$', ], 'TemplateType' => [ 'type' => 'string', 'enum' => [ 'FLEET_PROVISIONING', 'JITP', ], ], 'TemplateVersionId' => [ 'type' => 'integer', ], 'TermsAggregation' => [ 'type' => 'structure', 'members' => [ 'maxBuckets' => [ 'shape' => 'MaxBuckets', ], ], ], 'TestAuthorizationRequest' => [ 'type' => 'structure', 'required' => [ 'authInfos', ], 'members' => [ 'principal' => [ 'shape' => 'Principal', ], 'cognitoIdentityPoolId' => [ 'shape' => 'CognitoIdentityPoolId', ], 'authInfos' => [ 'shape' => 'AuthInfos', ], 'clientId' => [ 'shape' => 'ClientId', 'location' => 'querystring', 'locationName' => 'clientId', ], 'policyNamesToAdd' => [ 'shape' => 'PolicyNames', ], 'policyNamesToSkip' => [ 'shape' => 'PolicyNames', ], ], ], 'TestAuthorizationResponse' => [ 'type' => 'structure', 'members' => [ 'authResults' => [ 'shape' => 'AuthResults', ], ], ], 'TestInvokeAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'authorizerName', ], 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', 'location' => 'uri', 'locationName' => 'authorizerName', ], 'token' => [ 'shape' => 'Token', ], 'tokenSignature' => [ 'shape' => 'TokenSignature', ], 'httpContext' => [ 'shape' => 'HttpContext', ], 'mqttContext' => [ 'shape' => 'MqttContext', ], 'tlsContext' => [ 'shape' => 'TlsContext', ], ], ], 'TestInvokeAuthorizerResponse' => [ 'type' => 'structure', 'members' => [ 'isAuthenticated' => [ 'shape' => 'IsAuthenticated', ], 'principalId' => [ 'shape' => 'PrincipalId', ], 'policyDocuments' => [ 'shape' => 'PolicyDocuments', ], 'refreshAfterInSeconds' => [ 'shape' => 'Seconds', ], 'disconnectAfterInSeconds' => [ 'shape' => 'Seconds', ], ], ], 'ThingArn' => [ 'type' => 'string', ], 'ThingAttribute' => [ 'type' => 'structure', 'members' => [ 'thingName' => [ 'shape' => 'ThingName', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'thingArn' => [ 'shape' => 'ThingArn', ], 'attributes' => [ 'shape' => 'Attributes', ], 'version' => [ 'shape' => 'Version', ], ], ], 'ThingAttributeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingAttribute', ], ], 'ThingConnectivity' => [ 'type' => 'structure', 'members' => [ 'connected' => [ 'shape' => 'Boolean', ], 'timestamp' => [ 'shape' => 'ConnectivityTimestamp', ], 'disconnectReason' => [ 'shape' => 'DisconnectReason', ], ], ], 'ThingConnectivityIndexingMode' => [ 'type' => 'string', 'enum' => [ 'OFF', 'STATUS', ], ], 'ThingDocument' => [ 'type' => 'structure', 'members' => [ 'thingName' => [ 'shape' => 'ThingName', ], 'thingId' => [ 'shape' => 'ThingId', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'thingGroupNames' => [ 'shape' => 'ThingGroupNameList', ], 'attributes' => [ 'shape' => 'Attributes', ], 'shadow' => [ 'shape' => 'JsonDocument', ], 'deviceDefender' => [ 'shape' => 'JsonDocument', ], 'connectivity' => [ 'shape' => 'ThingConnectivity', ], ], ], 'ThingDocumentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingDocument', ], ], 'ThingGroupArn' => [ 'type' => 'string', ], 'ThingGroupDescription' => [ 'type' => 'string', 'max' => 2028, 'pattern' => '[\\p{Graph}\\x20]*', ], 'ThingGroupDocument' => [ 'type' => 'structure', 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', ], 'thingGroupId' => [ 'shape' => 'ThingGroupId', ], 'thingGroupDescription' => [ 'shape' => 'ThingGroupDescription', ], 'attributes' => [ 'shape' => 'Attributes', ], 'parentGroupNames' => [ 'shape' => 'ThingGroupNameList', ], ], ], 'ThingGroupDocumentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingGroupDocument', ], ], 'ThingGroupId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9\\-]+', ], 'ThingGroupIndexingConfiguration' => [ 'type' => 'structure', 'required' => [ 'thingGroupIndexingMode', ], 'members' => [ 'thingGroupIndexingMode' => [ 'shape' => 'ThingGroupIndexingMode', ], 'managedFields' => [ 'shape' => 'Fields', ], 'customFields' => [ 'shape' => 'Fields', ], ], ], 'ThingGroupIndexingMode' => [ 'type' => 'string', 'enum' => [ 'OFF', 'ON', ], ], 'ThingGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingGroupName', ], ], 'ThingGroupMetadata' => [ 'type' => 'structure', 'members' => [ 'parentGroupName' => [ 'shape' => 'ThingGroupName', ], 'rootToParentThingGroups' => [ 'shape' => 'ThingGroupNameAndArnList', ], 'creationDate' => [ 'shape' => 'CreationDate', ], ], ], 'ThingGroupName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'ThingGroupNameAndArnList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GroupNameAndArn', ], ], 'ThingGroupNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingGroupName', ], ], 'ThingGroupNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingGroupName', ], 'max' => 10, 'min' => 1, ], 'ThingGroupProperties' => [ 'type' => 'structure', 'members' => [ 'thingGroupDescription' => [ 'shape' => 'ThingGroupDescription', ], 'attributePayload' => [ 'shape' => 'AttributePayload', ], ], ], 'ThingId' => [ 'type' => 'string', ], 'ThingIndexingConfiguration' => [ 'type' => 'structure', 'required' => [ 'thingIndexingMode', ], 'members' => [ 'thingIndexingMode' => [ 'shape' => 'ThingIndexingMode', ], 'thingConnectivityIndexingMode' => [ 'shape' => 'ThingConnectivityIndexingMode', ], 'deviceDefenderIndexingMode' => [ 'shape' => 'DeviceDefenderIndexingMode', ], 'namedShadowIndexingMode' => [ 'shape' => 'NamedShadowIndexingMode', ], 'managedFields' => [ 'shape' => 'Fields', ], 'customFields' => [ 'shape' => 'Fields', ], 'filter' => [ 'shape' => 'IndexingFilter', ], ], ], 'ThingIndexingMode' => [ 'type' => 'string', 'enum' => [ 'OFF', 'REGISTRY', 'REGISTRY_AND_SHADOW', ], ], 'ThingName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'ThingNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingName', ], ], 'ThingTypeArn' => [ 'type' => 'string', ], 'ThingTypeDefinition' => [ 'type' => 'structure', 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'thingTypeArn' => [ 'shape' => 'ThingTypeArn', ], 'thingTypeProperties' => [ 'shape' => 'ThingTypeProperties', ], 'thingTypeMetadata' => [ 'shape' => 'ThingTypeMetadata', ], ], ], 'ThingTypeDescription' => [ 'type' => 'string', 'max' => 2028, 'pattern' => '[\\p{Graph}\\x20]*', ], 'ThingTypeId' => [ 'type' => 'string', ], 'ThingTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingTypeDefinition', ], ], 'ThingTypeMetadata' => [ 'type' => 'structure', 'members' => [ 'deprecated' => [ 'shape' => 'Boolean', ], 'deprecationDate' => [ 'shape' => 'DeprecationDate', ], 'creationDate' => [ 'shape' => 'CreationDate', ], ], ], 'ThingTypeName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'ThingTypeProperties' => [ 'type' => 'structure', 'members' => [ 'thingTypeDescription' => [ 'shape' => 'ThingTypeDescription', ], 'searchableAttributes' => [ 'shape' => 'SearchableAttributes', ], ], ], 'ThrottlingException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TimedOutThings' => [ 'type' => 'integer', ], 'TimeoutConfig' => [ 'type' => 'structure', 'members' => [ 'inProgressTimeoutInMinutes' => [ 'shape' => 'InProgressTimeoutInMinutes', ], ], ], 'Timestamp' => [ 'type' => 'timestamp', ], 'TimestreamAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'databaseName', 'tableName', 'dimensions', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'databaseName' => [ 'shape' => 'TimestreamDatabaseName', ], 'tableName' => [ 'shape' => 'TimestreamTableName', ], 'dimensions' => [ 'shape' => 'TimestreamDimensionList', ], 'timestamp' => [ 'shape' => 'TimestreamTimestamp', ], ], ], 'TimestreamDatabaseName' => [ 'type' => 'string', ], 'TimestreamDimension' => [ 'type' => 'structure', 'required' => [ 'name', 'value', ], 'members' => [ 'name' => [ 'shape' => 'TimestreamDimensionName', ], 'value' => [ 'shape' => 'TimestreamDimensionValue', ], ], ], 'TimestreamDimensionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TimestreamDimension', ], 'max' => 128, 'min' => 1, ], 'TimestreamDimensionName' => [ 'type' => 'string', ], 'TimestreamDimensionValue' => [ 'type' => 'string', ], 'TimestreamTableName' => [ 'type' => 'string', ], 'TimestreamTimestamp' => [ 'type' => 'structure', 'required' => [ 'value', 'unit', ], 'members' => [ 'value' => [ 'shape' => 'TimestreamTimestampValue', ], 'unit' => [ 'shape' => 'TimestreamTimestampUnit', ], ], ], 'TimestreamTimestampUnit' => [ 'type' => 'string', ], 'TimestreamTimestampValue' => [ 'type' => 'string', ], 'TinyMaxResults' => [ 'type' => 'integer', 'max' => 10, 'min' => 1, ], 'TlsConfig' => [ 'type' => 'structure', 'members' => [ 'securityPolicy' => [ 'shape' => 'SecurityPolicy', ], ], ], 'TlsContext' => [ 'type' => 'structure', 'members' => [ 'serverName' => [ 'shape' => 'ServerName', ], ], ], 'Token' => [ 'type' => 'string', 'max' => 6144, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'TokenKeyName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'TokenSignature' => [ 'type' => 'string', 'max' => 2560, 'min' => 1, 'pattern' => '[A-Za-z0-9+/]+={0,2}', ], 'Topic' => [ 'type' => 'string', ], 'TopicPattern' => [ 'type' => 'string', ], 'TopicRule' => [ 'type' => 'structure', 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', ], 'sql' => [ 'shape' => 'SQL', ], 'description' => [ 'shape' => 'Description', ], 'createdAt' => [ 'shape' => 'CreatedAtDate', ], 'actions' => [ 'shape' => 'ActionList', ], 'ruleDisabled' => [ 'shape' => 'IsDisabled', ], 'awsIotSqlVersion' => [ 'shape' => 'AwsIotSqlVersion', ], 'errorAction' => [ 'shape' => 'Action', ], ], ], 'TopicRuleDestination' => [ 'type' => 'structure', 'members' => [ 'arn' => [ 'shape' => 'AwsArn', ], 'status' => [ 'shape' => 'TopicRuleDestinationStatus', ], 'createdAt' => [ 'shape' => 'CreatedAtDate', ], 'lastUpdatedAt' => [ 'shape' => 'LastUpdatedAtDate', ], 'statusReason' => [ 'shape' => 'String', ], 'httpUrlProperties' => [ 'shape' => 'HttpUrlDestinationProperties', ], 'vpcProperties' => [ 'shape' => 'VpcDestinationProperties', ], ], ], 'TopicRuleDestinationConfiguration' => [ 'type' => 'structure', 'members' => [ 'httpUrlConfiguration' => [ 'shape' => 'HttpUrlDestinationConfiguration', ], 'vpcConfiguration' => [ 'shape' => 'VpcDestinationConfiguration', ], ], ], 'TopicRuleDestinationMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'TopicRuleDestinationStatus' => [ 'type' => 'string', 'enum' => [ 'ENABLED', 'IN_PROGRESS', 'DISABLED', 'ERROR', 'DELETING', ], ], 'TopicRuleDestinationSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'TopicRuleDestinationSummary', ], ], 'TopicRuleDestinationSummary' => [ 'type' => 'structure', 'members' => [ 'arn' => [ 'shape' => 'AwsArn', ], 'status' => [ 'shape' => 'TopicRuleDestinationStatus', ], 'createdAt' => [ 'shape' => 'CreatedAtDate', ], 'lastUpdatedAt' => [ 'shape' => 'LastUpdatedAtDate', ], 'statusReason' => [ 'shape' => 'String', ], 'httpUrlSummary' => [ 'shape' => 'HttpUrlDestinationSummary', ], 'vpcDestinationSummary' => [ 'shape' => 'VpcDestinationSummary', ], ], ], 'TopicRuleList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TopicRuleListItem', ], ], 'TopicRuleListItem' => [ 'type' => 'structure', 'members' => [ 'ruleArn' => [ 'shape' => 'RuleArn', ], 'ruleName' => [ 'shape' => 'RuleName', ], 'topicPattern' => [ 'shape' => 'TopicPattern', ], 'createdAt' => [ 'shape' => 'CreatedAtDate', ], 'ruleDisabled' => [ 'shape' => 'IsDisabled', ], ], ], 'TopicRuleMaxResults' => [ 'type' => 'integer', 'max' => 10000, 'min' => 1, ], 'TopicRulePayload' => [ 'type' => 'structure', 'required' => [ 'sql', 'actions', ], 'members' => [ 'sql' => [ 'shape' => 'SQL', ], 'description' => [ 'shape' => 'Description', ], 'actions' => [ 'shape' => 'ActionList', ], 'ruleDisabled' => [ 'shape' => 'IsDisabled', ], 'awsIotSqlVersion' => [ 'shape' => 'AwsIotSqlVersion', ], 'errorAction' => [ 'shape' => 'Action', ], ], ], 'TotalChecksCount' => [ 'type' => 'integer', ], 'TotalFindingsCount' => [ 'type' => 'long', ], 'TotalResourcesCount' => [ 'type' => 'long', ], 'TransferAlreadyCompletedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], 'TransferCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', 'targetAwsAccount', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'targetAwsAccount' => [ 'shape' => 'AwsAccountId', 'location' => 'querystring', 'locationName' => 'targetAwsAccount', ], 'transferMessage' => [ 'shape' => 'Message', ], ], ], 'TransferCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'transferredCertificateArn' => [ 'shape' => 'CertificateArn', ], ], ], 'TransferConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'TransferData' => [ 'type' => 'structure', 'members' => [ 'transferMessage' => [ 'shape' => 'Message', ], 'rejectReason' => [ 'shape' => 'Message', ], 'transferDate' => [ 'shape' => 'DateType', ], 'acceptDate' => [ 'shape' => 'DateType', ], 'rejectDate' => [ 'shape' => 'DateType', ], ], ], 'UnauthorizedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], 'UndoDeprecate' => [ 'type' => 'boolean', ], 'UnsetDefaultVersion' => [ 'type' => 'boolean', 'box' => true, ], 'UnsignedLong' => [ 'type' => 'long', 'min' => 0, ], 'UntagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'resourceArn', 'tagKeys', ], 'members' => [ 'resourceArn' => [ 'shape' => 'ResourceArn', ], 'tagKeys' => [ 'shape' => 'TagKeyList', ], ], ], 'UntagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateAccountAuditConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'roleArn' => [ 'shape' => 'RoleArn', ], 'auditNotificationTargetConfigurations' => [ 'shape' => 'AuditNotificationTargetConfigurations', ], 'auditCheckConfigurations' => [ 'shape' => 'AuditCheckConfigurations', ], ], ], 'UpdateAccountAuditConfigurationResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateAuditSuppressionRequest' => [ 'type' => 'structure', 'required' => [ 'checkName', 'resourceIdentifier', ], 'members' => [ 'checkName' => [ 'shape' => 'AuditCheckName', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], 'expirationDate' => [ 'shape' => 'Timestamp', ], 'suppressIndefinitely' => [ 'shape' => 'SuppressIndefinitely', ], 'description' => [ 'shape' => 'AuditDescription', ], ], ], 'UpdateAuditSuppressionResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'authorizerName', ], 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', 'location' => 'uri', 'locationName' => 'authorizerName', ], 'authorizerFunctionArn' => [ 'shape' => 'AuthorizerFunctionArn', ], 'tokenKeyName' => [ 'shape' => 'TokenKeyName', ], 'tokenSigningPublicKeys' => [ 'shape' => 'PublicKeyMap', ], 'status' => [ 'shape' => 'AuthorizerStatus', ], 'enableCachingForHttp' => [ 'shape' => 'EnableCachingForHttp', ], ], ], 'UpdateAuthorizerResponse' => [ 'type' => 'structure', 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', ], 'authorizerArn' => [ 'shape' => 'AuthorizerArn', ], ], ], 'UpdateBillingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'billingGroupName', 'billingGroupProperties', ], 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', 'location' => 'uri', 'locationName' => 'billingGroupName', ], 'billingGroupProperties' => [ 'shape' => 'BillingGroupProperties', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', ], ], ], 'UpdateBillingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'version' => [ 'shape' => 'Version', ], ], ], 'UpdateCACertificateParams' => [ 'type' => 'structure', 'required' => [ 'action', ], 'members' => [ 'action' => [ 'shape' => 'CACertificateUpdateAction', ], ], ], 'UpdateCACertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'caCertificateId', ], 'newStatus' => [ 'shape' => 'CACertificateStatus', 'location' => 'querystring', 'locationName' => 'newStatus', ], 'newAutoRegistrationStatus' => [ 'shape' => 'AutoRegistrationStatus', 'location' => 'querystring', 'locationName' => 'newAutoRegistrationStatus', ], 'registrationConfig' => [ 'shape' => 'RegistrationConfig', ], 'removeAutoRegistration' => [ 'shape' => 'RemoveAutoRegistration', ], ], ], 'UpdateCertificateProviderRequest' => [ 'type' => 'structure', 'required' => [ 'certificateProviderName', ], 'members' => [ 'certificateProviderName' => [ 'shape' => 'CertificateProviderName', 'location' => 'uri', 'locationName' => 'certificateProviderName', ], 'lambdaFunctionArn' => [ 'shape' => 'CertificateProviderFunctionArn', ], 'accountDefaultForOperations' => [ 'shape' => 'CertificateProviderAccountDefaultForOperations', ], ], ], 'UpdateCertificateProviderResponse' => [ 'type' => 'structure', 'members' => [ 'certificateProviderName' => [ 'shape' => 'CertificateProviderName', ], 'certificateProviderArn' => [ 'shape' => 'CertificateProviderArn', ], ], ], 'UpdateCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', 'newStatus', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'newStatus' => [ 'shape' => 'CertificateStatus', 'location' => 'querystring', 'locationName' => 'newStatus', ], ], ], 'UpdateCustomMetricRequest' => [ 'type' => 'structure', 'required' => [ 'metricName', 'displayName', ], 'members' => [ 'metricName' => [ 'shape' => 'MetricName', 'location' => 'uri', 'locationName' => 'metricName', ], 'displayName' => [ 'shape' => 'CustomMetricDisplayName', ], ], ], 'UpdateCustomMetricResponse' => [ 'type' => 'structure', 'members' => [ 'metricName' => [ 'shape' => 'MetricName', ], 'metricArn' => [ 'shape' => 'CustomMetricArn', ], 'metricType' => [ 'shape' => 'CustomMetricType', ], 'displayName' => [ 'shape' => 'CustomMetricDisplayName', ], 'creationDate' => [ 'shape' => 'Timestamp', ], 'lastModifiedDate' => [ 'shape' => 'Timestamp', ], ], ], 'UpdateDeviceCertificateParams' => [ 'type' => 'structure', 'required' => [ 'action', ], 'members' => [ 'action' => [ 'shape' => 'DeviceCertificateUpdateAction', ], ], ], 'UpdateDimensionRequest' => [ 'type' => 'structure', 'required' => [ 'name', 'stringValues', ], 'members' => [ 'name' => [ 'shape' => 'DimensionName', 'location' => 'uri', 'locationName' => 'name', ], 'stringValues' => [ 'shape' => 'DimensionStringValues', ], ], ], 'UpdateDimensionResponse' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'DimensionName', ], 'arn' => [ 'shape' => 'DimensionArn', ], 'type' => [ 'shape' => 'DimensionType', ], 'stringValues' => [ 'shape' => 'DimensionStringValues', ], 'creationDate' => [ 'shape' => 'Timestamp', ], 'lastModifiedDate' => [ 'shape' => 'Timestamp', ], ], ], 'UpdateDomainConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'domainConfigurationName', ], 'members' => [ 'domainConfigurationName' => [ 'shape' => 'ReservedDomainConfigurationName', 'location' => 'uri', 'locationName' => 'domainConfigurationName', ], 'authorizerConfig' => [ 'shape' => 'AuthorizerConfig', ], 'domainConfigurationStatus' => [ 'shape' => 'DomainConfigurationStatus', ], 'removeAuthorizerConfig' => [ 'shape' => 'RemoveAuthorizerConfig', ], 'tlsConfig' => [ 'shape' => 'TlsConfig', ], 'serverCertificateConfig' => [ 'shape' => 'ServerCertificateConfig', ], ], ], 'UpdateDomainConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'domainConfigurationName' => [ 'shape' => 'ReservedDomainConfigurationName', ], 'domainConfigurationArn' => [ 'shape' => 'DomainConfigurationArn', ], ], ], 'UpdateDynamicThingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'thingGroupName', 'thingGroupProperties', ], 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'uri', 'locationName' => 'thingGroupName', ], 'thingGroupProperties' => [ 'shape' => 'ThingGroupProperties', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', ], 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], ], ], 'UpdateDynamicThingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'version' => [ 'shape' => 'Version', ], ], ], 'UpdateEventConfigurationsRequest' => [ 'type' => 'structure', 'members' => [ 'eventConfigurations' => [ 'shape' => 'EventConfigurations', ], ], ], 'UpdateEventConfigurationsResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateFleetMetricRequest' => [ 'type' => 'structure', 'required' => [ 'metricName', 'indexName', ], 'members' => [ 'metricName' => [ 'shape' => 'FleetMetricName', 'location' => 'uri', 'locationName' => 'metricName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'aggregationType' => [ 'shape' => 'AggregationType', ], 'period' => [ 'shape' => 'FleetMetricPeriod', ], 'aggregationField' => [ 'shape' => 'AggregationField', ], 'description' => [ 'shape' => 'FleetMetricDescription', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], 'indexName' => [ 'shape' => 'IndexName', ], 'unit' => [ 'shape' => 'FleetMetricUnit', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', ], ], ], 'UpdateIndexingConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'thingIndexingConfiguration' => [ 'shape' => 'ThingIndexingConfiguration', ], 'thingGroupIndexingConfiguration' => [ 'shape' => 'ThingGroupIndexingConfiguration', ], ], ], 'UpdateIndexingConfigurationResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'description' => [ 'shape' => 'JobDescription', ], 'presignedUrlConfig' => [ 'shape' => 'PresignedUrlConfig', ], 'jobExecutionsRolloutConfig' => [ 'shape' => 'JobExecutionsRolloutConfig', ], 'abortConfig' => [ 'shape' => 'AbortConfig', ], 'timeoutConfig' => [ 'shape' => 'TimeoutConfig', ], 'namespaceId' => [ 'shape' => 'NamespaceId', 'location' => 'querystring', 'locationName' => 'namespaceId', ], 'jobExecutionsRetryConfig' => [ 'shape' => 'JobExecutionsRetryConfig', ], ], ], 'UpdateMitigationActionRequest' => [ 'type' => 'structure', 'required' => [ 'actionName', ], 'members' => [ 'actionName' => [ 'shape' => 'MitigationActionName', 'location' => 'uri', 'locationName' => 'actionName', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'actionParams' => [ 'shape' => 'MitigationActionParams', ], ], ], 'UpdateMitigationActionResponse' => [ 'type' => 'structure', 'members' => [ 'actionArn' => [ 'shape' => 'MitigationActionArn', ], 'actionId' => [ 'shape' => 'MitigationActionId', ], ], ], 'UpdatePackageConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'versionUpdateByJobsConfig' => [ 'shape' => 'VersionUpdateByJobsConfig', ], 'clientToken' => [ 'shape' => 'ClientToken', 'idempotencyToken' => true, 'location' => 'querystring', 'locationName' => 'clientToken', ], ], ], 'UpdatePackageConfigurationResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdatePackageRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], 'description' => [ 'shape' => 'ResourceDescription', ], 'defaultVersionName' => [ 'shape' => 'VersionName', ], 'unsetDefaultVersion' => [ 'shape' => 'UnsetDefaultVersion', ], 'clientToken' => [ 'shape' => 'ClientToken', 'idempotencyToken' => true, 'location' => 'querystring', 'locationName' => 'clientToken', ], ], ], 'UpdatePackageResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdatePackageVersionRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', 'versionName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], 'versionName' => [ 'shape' => 'VersionName', 'location' => 'uri', 'locationName' => 'versionName', ], 'description' => [ 'shape' => 'ResourceDescription', ], 'attributes' => [ 'shape' => 'ResourceAttributes', ], 'action' => [ 'shape' => 'PackageVersionAction', ], 'clientToken' => [ 'shape' => 'ClientToken', 'idempotencyToken' => true, 'location' => 'querystring', 'locationName' => 'clientToken', ], ], ], 'UpdatePackageVersionResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateProvisioningTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], 'description' => [ 'shape' => 'TemplateDescription', ], 'enabled' => [ 'shape' => 'Enabled', ], 'defaultVersionId' => [ 'shape' => 'TemplateVersionId', ], 'provisioningRoleArn' => [ 'shape' => 'RoleArn', ], 'preProvisioningHook' => [ 'shape' => 'ProvisioningHook', ], 'removePreProvisioningHook' => [ 'shape' => 'RemoveHook', ], ], ], 'UpdateProvisioningTemplateResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateRoleAliasRequest' => [ 'type' => 'structure', 'required' => [ 'roleAlias', ], 'members' => [ 'roleAlias' => [ 'shape' => 'RoleAlias', 'location' => 'uri', 'locationName' => 'roleAlias', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'credentialDurationSeconds' => [ 'shape' => 'CredentialDurationSeconds', ], ], ], 'UpdateRoleAliasResponse' => [ 'type' => 'structure', 'members' => [ 'roleAlias' => [ 'shape' => 'RoleAlias', ], 'roleAliasArn' => [ 'shape' => 'RoleAliasArn', ], ], ], 'UpdateScheduledAuditRequest' => [ 'type' => 'structure', 'required' => [ 'scheduledAuditName', ], 'members' => [ 'frequency' => [ 'shape' => 'AuditFrequency', ], 'dayOfMonth' => [ 'shape' => 'DayOfMonth', ], 'dayOfWeek' => [ 'shape' => 'DayOfWeek', ], 'targetCheckNames' => [ 'shape' => 'TargetAuditCheckNames', ], 'scheduledAuditName' => [ 'shape' => 'ScheduledAuditName', 'location' => 'uri', 'locationName' => 'scheduledAuditName', ], ], ], 'UpdateScheduledAuditResponse' => [ 'type' => 'structure', 'members' => [ 'scheduledAuditArn' => [ 'shape' => 'ScheduledAuditArn', ], ], ], 'UpdateSecurityProfileRequest' => [ 'type' => 'structure', 'required' => [ 'securityProfileName', ], 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'uri', 'locationName' => 'securityProfileName', ], 'securityProfileDescription' => [ 'shape' => 'SecurityProfileDescription', ], 'behaviors' => [ 'shape' => 'Behaviors', ], 'alertTargets' => [ 'shape' => 'AlertTargets', ], 'additionalMetricsToRetain' => [ 'shape' => 'AdditionalMetricsToRetainList', 'deprecated' => true, 'deprecatedMessage' => 'Use additionalMetricsToRetainV2.', ], 'additionalMetricsToRetainV2' => [ 'shape' => 'AdditionalMetricsToRetainV2List', ], 'deleteBehaviors' => [ 'shape' => 'DeleteBehaviors', ], 'deleteAlertTargets' => [ 'shape' => 'DeleteAlertTargets', ], 'deleteAdditionalMetricsToRetain' => [ 'shape' => 'DeleteAdditionalMetricsToRetain', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', 'location' => 'querystring', 'locationName' => 'expectedVersion', ], 'metricsExportConfig' => [ 'shape' => 'MetricsExportConfig', ], 'deleteMetricsExportConfig' => [ 'shape' => 'DeleteMetricsExportConfig', ], ], ], 'UpdateSecurityProfileResponse' => [ 'type' => 'structure', 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', ], 'securityProfileArn' => [ 'shape' => 'SecurityProfileArn', ], 'securityProfileDescription' => [ 'shape' => 'SecurityProfileDescription', ], 'behaviors' => [ 'shape' => 'Behaviors', ], 'alertTargets' => [ 'shape' => 'AlertTargets', ], 'additionalMetricsToRetain' => [ 'shape' => 'AdditionalMetricsToRetainList', 'deprecated' => true, 'deprecatedMessage' => 'Use additionalMetricsToRetainV2.', ], 'additionalMetricsToRetainV2' => [ 'shape' => 'AdditionalMetricsToRetainV2List', ], 'version' => [ 'shape' => 'Version', ], 'creationDate' => [ 'shape' => 'Timestamp', ], 'lastModifiedDate' => [ 'shape' => 'Timestamp', ], 'metricsExportConfig' => [ 'shape' => 'MetricsExportConfig', ], ], ], 'UpdateStreamRequest' => [ 'type' => 'structure', 'required' => [ 'streamId', ], 'members' => [ 'streamId' => [ 'shape' => 'StreamId', 'location' => 'uri', 'locationName' => 'streamId', ], 'description' => [ 'shape' => 'StreamDescription', ], 'files' => [ 'shape' => 'StreamFiles', ], 'roleArn' => [ 'shape' => 'RoleArn', ], ], ], 'UpdateStreamResponse' => [ 'type' => 'structure', 'members' => [ 'streamId' => [ 'shape' => 'StreamId', ], 'streamArn' => [ 'shape' => 'StreamArn', ], 'description' => [ 'shape' => 'StreamDescription', ], 'streamVersion' => [ 'shape' => 'StreamVersion', ], ], ], 'UpdateThingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'thingGroupName', 'thingGroupProperties', ], 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'uri', 'locationName' => 'thingGroupName', ], 'thingGroupProperties' => [ 'shape' => 'ThingGroupProperties', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', ], ], ], 'UpdateThingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'version' => [ 'shape' => 'Version', ], ], ], 'UpdateThingGroupsForThingRequest' => [ 'type' => 'structure', 'members' => [ 'thingName' => [ 'shape' => 'ThingName', ], 'thingGroupsToAdd' => [ 'shape' => 'ThingGroupList', ], 'thingGroupsToRemove' => [ 'shape' => 'ThingGroupList', ], 'overrideDynamicGroups' => [ 'shape' => 'OverrideDynamicGroups', ], ], ], 'UpdateThingGroupsForThingResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'attributePayload' => [ 'shape' => 'AttributePayload', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', ], 'removeThingType' => [ 'shape' => 'RemoveThingType', ], ], ], 'UpdateThingResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateTopicRuleDestinationRequest' => [ 'type' => 'structure', 'required' => [ 'arn', 'status', ], 'members' => [ 'arn' => [ 'shape' => 'AwsArn', ], 'status' => [ 'shape' => 'TopicRuleDestinationStatus', ], ], ], 'UpdateTopicRuleDestinationResponse' => [ 'type' => 'structure', 'members' => [], ], 'Url' => [ 'type' => 'string', 'max' => 2000, ], 'UseBase64' => [ 'type' => 'boolean', ], 'UserProperties' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserProperty', ], 'max' => 100, 'min' => 1, ], 'UserProperty' => [ 'type' => 'structure', 'required' => [ 'key', 'value', ], 'members' => [ 'key' => [ 'shape' => 'UserPropertyKey', ], 'value' => [ 'shape' => 'UserPropertyValue', ], ], ], 'UserPropertyKey' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, ], 'UserPropertyValue' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, ], 'Valid' => [ 'type' => 'boolean', ], 'ValidateSecurityProfileBehaviorsRequest' => [ 'type' => 'structure', 'required' => [ 'behaviors', ], 'members' => [ 'behaviors' => [ 'shape' => 'Behaviors', ], ], ], 'ValidateSecurityProfileBehaviorsResponse' => [ 'type' => 'structure', 'members' => [ 'valid' => [ 'shape' => 'Valid', ], 'validationErrors' => [ 'shape' => 'ValidationErrors', ], ], ], 'ValidationError' => [ 'type' => 'structure', 'members' => [ 'errorMessage' => [ 'shape' => 'ErrorMessage', ], ], ], 'ValidationErrors' => [ 'type' => 'list', 'member' => [ 'shape' => 'ValidationError', ], ], 'ValidationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'Value' => [ 'type' => 'string', 'max' => 4096, 'min' => 0, 'pattern' => '[\\s\\S]*', ], 'Variance' => [ 'type' => 'double', ], 'VerificationState' => [ 'type' => 'string', 'enum' => [ 'FALSE_POSITIVE', 'BENIGN_POSITIVE', 'TRUE_POSITIVE', 'UNKNOWN', ], ], 'VerificationStateDescription' => [ 'type' => 'string', 'max' => 1000, 'pattern' => '[^\\p{Cntrl}]*', ], 'Version' => [ 'type' => 'long', ], 'VersionConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'VersionName' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '[a-zA-Z0-9-_.]+', ], 'VersionNumber' => [ 'type' => 'long', ], 'VersionUpdateByJobsConfig' => [ 'type' => 'structure', 'members' => [ 'enabled' => [ 'shape' => 'EnabledBoolean', ], 'roleArn' => [ 'shape' => 'RoleArn', ], ], ], 'VersionsLimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'ViolationEvent' => [ 'type' => 'structure', 'members' => [ 'violationId' => [ 'shape' => 'ViolationId', ], 'thingName' => [ 'shape' => 'DeviceDefenderThingName', ], 'securityProfileName' => [ 'shape' => 'SecurityProfileName', ], 'behavior' => [ 'shape' => 'Behavior', ], 'metricValue' => [ 'shape' => 'MetricValue', ], 'violationEventAdditionalInfo' => [ 'shape' => 'ViolationEventAdditionalInfo', ], 'violationEventType' => [ 'shape' => 'ViolationEventType', ], 'verificationState' => [ 'shape' => 'VerificationState', ], 'verificationStateDescription' => [ 'shape' => 'VerificationStateDescription', ], 'violationEventTime' => [ 'shape' => 'Timestamp', ], ], ], 'ViolationEventAdditionalInfo' => [ 'type' => 'structure', 'members' => [ 'confidenceLevel' => [ 'shape' => 'ConfidenceLevel', ], ], ], 'ViolationEventOccurrenceRange' => [ 'type' => 'structure', 'required' => [ 'startTime', 'endTime', ], 'members' => [ 'startTime' => [ 'shape' => 'Timestamp', ], 'endTime' => [ 'shape' => 'Timestamp', ], ], ], 'ViolationEventType' => [ 'type' => 'string', 'enum' => [ 'in-alarm', 'alarm-cleared', 'alarm-invalidated', ], ], 'ViolationEvents' => [ 'type' => 'list', 'member' => [ 'shape' => 'ViolationEvent', ], ], 'ViolationId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9\\-]+', ], 'VpcDestinationConfiguration' => [ 'type' => 'structure', 'required' => [ 'subnetIds', 'vpcId', 'roleArn', ], 'members' => [ 'subnetIds' => [ 'shape' => 'SubnetIdList', ], 'securityGroups' => [ 'shape' => 'SecurityGroupList', ], 'vpcId' => [ 'shape' => 'VpcId', ], 'roleArn' => [ 'shape' => 'AwsArn', ], ], ], 'VpcDestinationProperties' => [ 'type' => 'structure', 'members' => [ 'subnetIds' => [ 'shape' => 'SubnetIdList', ], 'securityGroups' => [ 'shape' => 'SecurityGroupList', ], 'vpcId' => [ 'shape' => 'VpcId', ], 'roleArn' => [ 'shape' => 'AwsArn', ], ], ], 'VpcDestinationSummary' => [ 'type' => 'structure', 'members' => [ 'subnetIds' => [ 'shape' => 'SubnetIdList', ], 'securityGroups' => [ 'shape' => 'SecurityGroupList', ], 'vpcId' => [ 'shape' => 'VpcId', ], 'roleArn' => [ 'shape' => 'AwsArn', ], ], ], 'VpcId' => [ 'type' => 'string', ], 'WaitingForDataCollectionChecksCount' => [ 'type' => 'integer', ], 'errorMessage' => [ 'type' => 'string', ], 'resourceArn' => [ 'type' => 'string', ], 'resourceId' => [ 'type' => 'string', ], 'stringValue' => [ 'type' => 'string', ], 'usePrefixAttributeValue' => [ 'type' => 'boolean', ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2015-05-28', 'endpointPrefix' => 'iot', 'protocol' => 'rest-json', 'serviceFullName' => 'AWS IoT', 'serviceId' => 'IoT', 'signatureVersion' => 'v4', 'signingName' => 'iot', 'uid' => 'iot-2015-05-28', ], 'operations' => [ 'AcceptCertificateTransfer' => [ 'name' => 'AcceptCertificateTransfer', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/accept-certificate-transfer/{certificateId}', ], 'input' => [ 'shape' => 'AcceptCertificateTransferRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'TransferAlreadyCompletedException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'AddThingToBillingGroup' => [ 'name' => 'AddThingToBillingGroup', 'http' => [ 'method' => 'PUT', 'requestUri' => '/billing-groups/addThingToBillingGroup', ], 'input' => [ 'shape' => 'AddThingToBillingGroupRequest', ], 'output' => [ 'shape' => 'AddThingToBillingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'AddThingToThingGroup' => [ 'name' => 'AddThingToThingGroup', 'http' => [ 'method' => 'PUT', 'requestUri' => '/thing-groups/addThingToThingGroup', ], 'input' => [ 'shape' => 'AddThingToThingGroupRequest', ], 'output' => [ 'shape' => 'AddThingToThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'AssociateTargetsWithJob' => [ 'name' => 'AssociateTargetsWithJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/jobs/{jobId}/targets', ], 'input' => [ 'shape' => 'AssociateTargetsWithJobRequest', ], 'output' => [ 'shape' => 'AssociateTargetsWithJobResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'AttachPolicy' => [ 'name' => 'AttachPolicy', 'http' => [ 'method' => 'PUT', 'requestUri' => '/target-policies/{policyName}', ], 'input' => [ 'shape' => 'AttachPolicyRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'AttachPrincipalPolicy' => [ 'name' => 'AttachPrincipalPolicy', 'http' => [ 'method' => 'PUT', 'requestUri' => '/principal-policies/{policyName}', ], 'input' => [ 'shape' => 'AttachPrincipalPolicyRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], 'deprecated' => true, ], 'AttachSecurityProfile' => [ 'name' => 'AttachSecurityProfile', 'http' => [ 'method' => 'PUT', 'requestUri' => '/security-profiles/{securityProfileName}/targets', ], 'input' => [ 'shape' => 'AttachSecurityProfileRequest', ], 'output' => [ 'shape' => 'AttachSecurityProfileResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'AttachThingPrincipal' => [ 'name' => 'AttachThingPrincipal', 'http' => [ 'method' => 'PUT', 'requestUri' => '/things/{thingName}/principals', ], 'input' => [ 'shape' => 'AttachThingPrincipalRequest', ], 'output' => [ 'shape' => 'AttachThingPrincipalResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CancelAuditMitigationActionsTask' => [ 'name' => 'CancelAuditMitigationActionsTask', 'http' => [ 'method' => 'PUT', 'requestUri' => '/audit/mitigationactions/tasks/{taskId}/cancel', ], 'input' => [ 'shape' => 'CancelAuditMitigationActionsTaskRequest', ], 'output' => [ 'shape' => 'CancelAuditMitigationActionsTaskResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CancelAuditTask' => [ 'name' => 'CancelAuditTask', 'http' => [ 'method' => 'PUT', 'requestUri' => '/audit/tasks/{taskId}/cancel', ], 'input' => [ 'shape' => 'CancelAuditTaskRequest', ], 'output' => [ 'shape' => 'CancelAuditTaskResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CancelCertificateTransfer' => [ 'name' => 'CancelCertificateTransfer', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/cancel-certificate-transfer/{certificateId}', ], 'input' => [ 'shape' => 'CancelCertificateTransferRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'TransferAlreadyCompletedException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CancelDetectMitigationActionsTask' => [ 'name' => 'CancelDetectMitigationActionsTask', 'http' => [ 'method' => 'PUT', 'requestUri' => '/detect/mitigationactions/tasks/{taskId}/cancel', ], 'input' => [ 'shape' => 'CancelDetectMitigationActionsTaskRequest', ], 'output' => [ 'shape' => 'CancelDetectMitigationActionsTaskResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CancelJob' => [ 'name' => 'CancelJob', 'http' => [ 'method' => 'PUT', 'requestUri' => '/jobs/{jobId}/cancel', ], 'input' => [ 'shape' => 'CancelJobRequest', ], 'output' => [ 'shape' => 'CancelJobResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CancelJobExecution' => [ 'name' => 'CancelJobExecution', 'http' => [ 'method' => 'PUT', 'requestUri' => '/things/{thingName}/jobs/{jobId}/cancel', ], 'input' => [ 'shape' => 'CancelJobExecutionRequest', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InvalidStateTransitionException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'VersionConflictException', ], ], ], 'ClearDefaultAuthorizer' => [ 'name' => 'ClearDefaultAuthorizer', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/default-authorizer', ], 'input' => [ 'shape' => 'ClearDefaultAuthorizerRequest', ], 'output' => [ 'shape' => 'ClearDefaultAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ConfirmTopicRuleDestination' => [ 'name' => 'ConfirmTopicRuleDestination', 'http' => [ 'method' => 'GET', 'requestUri' => '/confirmdestination/{confirmationToken+}', ], 'input' => [ 'shape' => 'ConfirmTopicRuleDestinationRequest', ], 'output' => [ 'shape' => 'ConfirmTopicRuleDestinationResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'CreateAuditSuppression' => [ 'name' => 'CreateAuditSuppression', 'http' => [ 'method' => 'POST', 'requestUri' => '/audit/suppressions/create', ], 'input' => [ 'shape' => 'CreateAuditSuppressionRequest', ], 'output' => [ 'shape' => 'CreateAuditSuppressionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CreateAuthorizer' => [ 'name' => 'CreateAuthorizer', 'http' => [ 'method' => 'POST', 'requestUri' => '/authorizer/{authorizerName}', ], 'input' => [ 'shape' => 'CreateAuthorizerRequest', ], 'output' => [ 'shape' => 'CreateAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateBillingGroup' => [ 'name' => 'CreateBillingGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/billing-groups/{billingGroupName}', ], 'input' => [ 'shape' => 'CreateBillingGroupRequest', ], 'output' => [ 'shape' => 'CreateBillingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateCertificateFromCsr' => [ 'name' => 'CreateCertificateFromCsr', 'http' => [ 'method' => 'POST', 'requestUri' => '/certificates', ], 'input' => [ 'shape' => 'CreateCertificateFromCsrRequest', ], 'output' => [ 'shape' => 'CreateCertificateFromCsrResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateCertificateProvider' => [ 'name' => 'CreateCertificateProvider', 'http' => [ 'method' => 'POST', 'requestUri' => '/certificate-providers/{certificateProviderName}', ], 'input' => [ 'shape' => 'CreateCertificateProviderRequest', ], 'output' => [ 'shape' => 'CreateCertificateProviderResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateCustomMetric' => [ 'name' => 'CreateCustomMetric', 'http' => [ 'method' => 'POST', 'requestUri' => '/custom-metric/{metricName}', ], 'input' => [ 'shape' => 'CreateCustomMetricRequest', ], 'output' => [ 'shape' => 'CreateCustomMetricResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateDimension' => [ 'name' => 'CreateDimension', 'http' => [ 'method' => 'POST', 'requestUri' => '/dimensions/{name}', ], 'input' => [ 'shape' => 'CreateDimensionRequest', ], 'output' => [ 'shape' => 'CreateDimensionResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'CreateDomainConfiguration' => [ 'name' => 'CreateDomainConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/domainConfigurations/{domainConfigurationName}', ], 'input' => [ 'shape' => 'CreateDomainConfigurationRequest', ], 'output' => [ 'shape' => 'CreateDomainConfigurationResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'CertificateValidationException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'CreateDynamicThingGroup' => [ 'name' => 'CreateDynamicThingGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/dynamic-thing-groups/{thingGroupName}', ], 'input' => [ 'shape' => 'CreateDynamicThingGroupRequest', ], 'output' => [ 'shape' => 'CreateDynamicThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidQueryException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CreateFleetMetric' => [ 'name' => 'CreateFleetMetric', 'http' => [ 'method' => 'PUT', 'requestUri' => '/fleet-metric/{metricName}', ], 'input' => [ 'shape' => 'CreateFleetMetricRequest', ], 'output' => [ 'shape' => 'CreateFleetMetricResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidQueryException', ], [ 'shape' => 'InvalidAggregationException', ], [ 'shape' => 'IndexNotReadyException', ], ], ], 'CreateJob' => [ 'name' => 'CreateJob', 'http' => [ 'method' => 'PUT', 'requestUri' => '/jobs/{jobId}', ], 'input' => [ 'shape' => 'CreateJobRequest', ], 'output' => [ 'shape' => 'CreateJobResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'CreateJobTemplate' => [ 'name' => 'CreateJobTemplate', 'http' => [ 'method' => 'PUT', 'requestUri' => '/job-templates/{jobTemplateId}', ], 'input' => [ 'shape' => 'CreateJobTemplateRequest', ], 'output' => [ 'shape' => 'CreateJobTemplateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateKeysAndCertificate' => [ 'name' => 'CreateKeysAndCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/keys-and-certificate', ], 'input' => [ 'shape' => 'CreateKeysAndCertificateRequest', ], 'output' => [ 'shape' => 'CreateKeysAndCertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateMitigationAction' => [ 'name' => 'CreateMitigationAction', 'http' => [ 'method' => 'POST', 'requestUri' => '/mitigationactions/actions/{actionName}', ], 'input' => [ 'shape' => 'CreateMitigationActionRequest', ], 'output' => [ 'shape' => 'CreateMitigationActionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateOTAUpdate' => [ 'name' => 'CreateOTAUpdate', 'http' => [ 'method' => 'POST', 'requestUri' => '/otaUpdates/{otaUpdateId}', ], 'input' => [ 'shape' => 'CreateOTAUpdateRequest', ], 'output' => [ 'shape' => 'CreateOTAUpdateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'CreatePackage' => [ 'name' => 'CreatePackage', 'http' => [ 'method' => 'PUT', 'requestUri' => '/packages/{packageName}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'CreatePackageRequest', ], 'output' => [ 'shape' => 'CreatePackageResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'ServiceQuotaExceededException', ], ], 'idempotent' => true, ], 'CreatePackageVersion' => [ 'name' => 'CreatePackageVersion', 'http' => [ 'method' => 'PUT', 'requestUri' => '/packages/{packageName}/versions/{versionName}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'CreatePackageVersionRequest', ], 'output' => [ 'shape' => 'CreatePackageVersionResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'ServiceQuotaExceededException', ], ], 'idempotent' => true, ], 'CreatePolicy' => [ 'name' => 'CreatePolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/policies/{policyName}', ], 'input' => [ 'shape' => 'CreatePolicyRequest', ], 'output' => [ 'shape' => 'CreatePolicyResponse', ], 'errors' => [ [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'MalformedPolicyException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreatePolicyVersion' => [ 'name' => 'CreatePolicyVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/policies/{policyName}/version', ], 'input' => [ 'shape' => 'CreatePolicyVersionRequest', ], 'output' => [ 'shape' => 'CreatePolicyVersionResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'MalformedPolicyException', ], [ 'shape' => 'VersionsLimitExceededException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateProvisioningClaim' => [ 'name' => 'CreateProvisioningClaim', 'http' => [ 'method' => 'POST', 'requestUri' => '/provisioning-templates/{templateName}/provisioning-claim', ], 'input' => [ 'shape' => 'CreateProvisioningClaimRequest', ], 'output' => [ 'shape' => 'CreateProvisioningClaimResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateProvisioningTemplate' => [ 'name' => 'CreateProvisioningTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/provisioning-templates', ], 'input' => [ 'shape' => 'CreateProvisioningTemplateRequest', ], 'output' => [ 'shape' => 'CreateProvisioningTemplateResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], ], ], 'CreateProvisioningTemplateVersion' => [ 'name' => 'CreateProvisioningTemplateVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/provisioning-templates/{templateName}/versions', ], 'input' => [ 'shape' => 'CreateProvisioningTemplateVersionRequest', ], 'output' => [ 'shape' => 'CreateProvisioningTemplateVersionResponse', ], 'errors' => [ [ 'shape' => 'VersionsLimitExceededException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'CreateRoleAlias' => [ 'name' => 'CreateRoleAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/role-aliases/{roleAlias}', ], 'input' => [ 'shape' => 'CreateRoleAliasRequest', ], 'output' => [ 'shape' => 'CreateRoleAliasResponse', ], 'errors' => [ [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateScheduledAudit' => [ 'name' => 'CreateScheduledAudit', 'http' => [ 'method' => 'POST', 'requestUri' => '/audit/scheduledaudits/{scheduledAuditName}', ], 'input' => [ 'shape' => 'CreateScheduledAuditRequest', ], 'output' => [ 'shape' => 'CreateScheduledAuditResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CreateSecurityProfile' => [ 'name' => 'CreateSecurityProfile', 'http' => [ 'method' => 'POST', 'requestUri' => '/security-profiles/{securityProfileName}', ], 'input' => [ 'shape' => 'CreateSecurityProfileRequest', ], 'output' => [ 'shape' => 'CreateSecurityProfileResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateStream' => [ 'name' => 'CreateStream', 'http' => [ 'method' => 'POST', 'requestUri' => '/streams/{streamId}', ], 'input' => [ 'shape' => 'CreateStreamRequest', ], 'output' => [ 'shape' => 'CreateStreamResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateThing' => [ 'name' => 'CreateThing', 'http' => [ 'method' => 'POST', 'requestUri' => '/things/{thingName}', ], 'input' => [ 'shape' => 'CreateThingRequest', ], 'output' => [ 'shape' => 'CreateThingResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'CreateThingGroup' => [ 'name' => 'CreateThingGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/thing-groups/{thingGroupName}', ], 'input' => [ 'shape' => 'CreateThingGroupRequest', ], 'output' => [ 'shape' => 'CreateThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'CreateThingType' => [ 'name' => 'CreateThingType', 'http' => [ 'method' => 'POST', 'requestUri' => '/thing-types/{thingTypeName}', ], 'input' => [ 'shape' => 'CreateThingTypeRequest', ], 'output' => [ 'shape' => 'CreateThingTypeResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], ], ], 'CreateTopicRule' => [ 'name' => 'CreateTopicRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/rules/{ruleName}', ], 'input' => [ 'shape' => 'CreateTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'SqlParseException', ], [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'CreateTopicRuleDestination' => [ 'name' => 'CreateTopicRuleDestination', 'http' => [ 'method' => 'POST', 'requestUri' => '/destinations', ], 'input' => [ 'shape' => 'CreateTopicRuleDestinationRequest', ], 'output' => [ 'shape' => 'CreateTopicRuleDestinationResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'DeleteAccountAuditConfiguration' => [ 'name' => 'DeleteAccountAuditConfiguration', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/audit/configuration', ], 'input' => [ 'shape' => 'DeleteAccountAuditConfigurationRequest', ], 'output' => [ 'shape' => 'DeleteAccountAuditConfigurationResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteAuditSuppression' => [ 'name' => 'DeleteAuditSuppression', 'http' => [ 'method' => 'POST', 'requestUri' => '/audit/suppressions/delete', ], 'input' => [ 'shape' => 'DeleteAuditSuppressionRequest', ], 'output' => [ 'shape' => 'DeleteAuditSuppressionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteAuthorizer' => [ 'name' => 'DeleteAuthorizer', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/authorizer/{authorizerName}', ], 'input' => [ 'shape' => 'DeleteAuthorizerRequest', ], 'output' => [ 'shape' => 'DeleteAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'DeleteConflictException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteBillingGroup' => [ 'name' => 'DeleteBillingGroup', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/billing-groups/{billingGroupName}', ], 'input' => [ 'shape' => 'DeleteBillingGroupRequest', ], 'output' => [ 'shape' => 'DeleteBillingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteCACertificate' => [ 'name' => 'DeleteCACertificate', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/cacertificate/{caCertificateId}', ], 'input' => [ 'shape' => 'DeleteCACertificateRequest', ], 'output' => [ 'shape' => 'DeleteCACertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'CertificateStateException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DeleteCertificate' => [ 'name' => 'DeleteCertificate', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/certificates/{certificateId}', ], 'input' => [ 'shape' => 'DeleteCertificateRequest', ], 'errors' => [ [ 'shape' => 'CertificateStateException', ], [ 'shape' => 'DeleteConflictException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DeleteCertificateProvider' => [ 'name' => 'DeleteCertificateProvider', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/certificate-providers/{certificateProviderName}', ], 'input' => [ 'shape' => 'DeleteCertificateProviderRequest', ], 'output' => [ 'shape' => 'DeleteCertificateProviderResponse', ], 'errors' => [ [ 'shape' => 'DeleteConflictException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteCustomMetric' => [ 'name' => 'DeleteCustomMetric', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/custom-metric/{metricName}', ], 'input' => [ 'shape' => 'DeleteCustomMetricRequest', ], 'output' => [ 'shape' => 'DeleteCustomMetricResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteDimension' => [ 'name' => 'DeleteDimension', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/dimensions/{name}', ], 'input' => [ 'shape' => 'DeleteDimensionRequest', ], 'output' => [ 'shape' => 'DeleteDimensionResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'DeleteDomainConfiguration' => [ 'name' => 'DeleteDomainConfiguration', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/domainConfigurations/{domainConfigurationName}', ], 'input' => [ 'shape' => 'DeleteDomainConfigurationRequest', ], 'output' => [ 'shape' => 'DeleteDomainConfigurationResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'DeleteDynamicThingGroup' => [ 'name' => 'DeleteDynamicThingGroup', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/dynamic-thing-groups/{thingGroupName}', ], 'input' => [ 'shape' => 'DeleteDynamicThingGroupRequest', ], 'output' => [ 'shape' => 'DeleteDynamicThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteFleetMetric' => [ 'name' => 'DeleteFleetMetric', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/fleet-metric/{metricName}', ], 'input' => [ 'shape' => 'DeleteFleetMetricRequest', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'VersionConflictException', ], ], ], 'DeleteJob' => [ 'name' => 'DeleteJob', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/jobs/{jobId}', ], 'input' => [ 'shape' => 'DeleteJobRequest', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InvalidStateTransitionException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'DeleteJobExecution' => [ 'name' => 'DeleteJobExecution', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/things/{thingName}/jobs/{jobId}/executionNumber/{executionNumber}', ], 'input' => [ 'shape' => 'DeleteJobExecutionRequest', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InvalidStateTransitionException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'DeleteJobTemplate' => [ 'name' => 'DeleteJobTemplate', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/job-templates/{jobTemplateId}', ], 'input' => [ 'shape' => 'DeleteJobTemplateRequest', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteMitigationAction' => [ 'name' => 'DeleteMitigationAction', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/mitigationactions/actions/{actionName}', ], 'input' => [ 'shape' => 'DeleteMitigationActionRequest', ], 'output' => [ 'shape' => 'DeleteMitigationActionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteOTAUpdate' => [ 'name' => 'DeleteOTAUpdate', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/otaUpdates/{otaUpdateId}', ], 'input' => [ 'shape' => 'DeleteOTAUpdateRequest', ], 'output' => [ 'shape' => 'DeleteOTAUpdateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'VersionConflictException', ], ], ], 'DeletePackage' => [ 'name' => 'DeletePackage', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/packages/{packageName}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'DeletePackageRequest', ], 'output' => [ 'shape' => 'DeletePackageResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], ], 'idempotent' => true, ], 'DeletePackageVersion' => [ 'name' => 'DeletePackageVersion', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/packages/{packageName}/versions/{versionName}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'DeletePackageVersionRequest', ], 'output' => [ 'shape' => 'DeletePackageVersionResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], ], 'idempotent' => true, ], 'DeletePolicy' => [ 'name' => 'DeletePolicy', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/policies/{policyName}', ], 'input' => [ 'shape' => 'DeletePolicyRequest', ], 'errors' => [ [ 'shape' => 'DeleteConflictException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeletePolicyVersion' => [ 'name' => 'DeletePolicyVersion', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/policies/{policyName}/version/{policyVersionId}', ], 'input' => [ 'shape' => 'DeletePolicyVersionRequest', ], 'errors' => [ [ 'shape' => 'DeleteConflictException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteProvisioningTemplate' => [ 'name' => 'DeleteProvisioningTemplate', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/provisioning-templates/{templateName}', ], 'input' => [ 'shape' => 'DeleteProvisioningTemplateRequest', ], 'output' => [ 'shape' => 'DeleteProvisioningTemplateResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'DeleteConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'DeleteProvisioningTemplateVersion' => [ 'name' => 'DeleteProvisioningTemplateVersion', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/provisioning-templates/{templateName}/versions/{versionId}', ], 'input' => [ 'shape' => 'DeleteProvisioningTemplateVersionRequest', ], 'output' => [ 'shape' => 'DeleteProvisioningTemplateVersionResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], [ 'shape' => 'DeleteConflictException', ], ], ], 'DeleteRegistrationCode' => [ 'name' => 'DeleteRegistrationCode', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/registrationcode', ], 'input' => [ 'shape' => 'DeleteRegistrationCodeRequest', ], 'output' => [ 'shape' => 'DeleteRegistrationCodeResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteRoleAlias' => [ 'name' => 'DeleteRoleAlias', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/role-aliases/{roleAlias}', ], 'input' => [ 'shape' => 'DeleteRoleAliasRequest', ], 'output' => [ 'shape' => 'DeleteRoleAliasResponse', ], 'errors' => [ [ 'shape' => 'DeleteConflictException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DeleteScheduledAudit' => [ 'name' => 'DeleteScheduledAudit', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/audit/scheduledaudits/{scheduledAuditName}', ], 'input' => [ 'shape' => 'DeleteScheduledAuditRequest', ], 'output' => [ 'shape' => 'DeleteScheduledAuditResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteSecurityProfile' => [ 'name' => 'DeleteSecurityProfile', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/security-profiles/{securityProfileName}', ], 'input' => [ 'shape' => 'DeleteSecurityProfileRequest', ], 'output' => [ 'shape' => 'DeleteSecurityProfileResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'VersionConflictException', ], ], ], 'DeleteStream' => [ 'name' => 'DeleteStream', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/streams/{streamId}', ], 'input' => [ 'shape' => 'DeleteStreamRequest', ], 'output' => [ 'shape' => 'DeleteStreamResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'DeleteConflictException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteThing' => [ 'name' => 'DeleteThing', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/things/{thingName}', ], 'input' => [ 'shape' => 'DeleteThingRequest', ], 'output' => [ 'shape' => 'DeleteThingResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteThingGroup' => [ 'name' => 'DeleteThingGroup', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/thing-groups/{thingGroupName}', ], 'input' => [ 'shape' => 'DeleteThingGroupRequest', ], 'output' => [ 'shape' => 'DeleteThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteThingType' => [ 'name' => 'DeleteThingType', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/thing-types/{thingTypeName}', ], 'input' => [ 'shape' => 'DeleteThingTypeRequest', ], 'output' => [ 'shape' => 'DeleteThingTypeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DeleteTopicRule' => [ 'name' => 'DeleteTopicRule', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/rules/{ruleName}', ], 'input' => [ 'shape' => 'DeleteTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'DeleteTopicRuleDestination' => [ 'name' => 'DeleteTopicRuleDestination', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/destinations/{arn+}', ], 'input' => [ 'shape' => 'DeleteTopicRuleDestinationRequest', ], 'output' => [ 'shape' => 'DeleteTopicRuleDestinationResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'DeleteV2LoggingLevel' => [ 'name' => 'DeleteV2LoggingLevel', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/v2LoggingLevel', ], 'input' => [ 'shape' => 'DeleteV2LoggingLevelRequest', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'DeprecateThingType' => [ 'name' => 'DeprecateThingType', 'http' => [ 'method' => 'POST', 'requestUri' => '/thing-types/{thingTypeName}/deprecate', ], 'input' => [ 'shape' => 'DeprecateThingTypeRequest', ], 'output' => [ 'shape' => 'DeprecateThingTypeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeAccountAuditConfiguration' => [ 'name' => 'DescribeAccountAuditConfiguration', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/configuration', ], 'input' => [ 'shape' => 'DescribeAccountAuditConfigurationRequest', ], 'output' => [ 'shape' => 'DescribeAccountAuditConfigurationResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeAuditFinding' => [ 'name' => 'DescribeAuditFinding', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/findings/{findingId}', ], 'input' => [ 'shape' => 'DescribeAuditFindingRequest', ], 'output' => [ 'shape' => 'DescribeAuditFindingResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeAuditMitigationActionsTask' => [ 'name' => 'DescribeAuditMitigationActionsTask', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/mitigationactions/tasks/{taskId}', ], 'input' => [ 'shape' => 'DescribeAuditMitigationActionsTaskRequest', ], 'output' => [ 'shape' => 'DescribeAuditMitigationActionsTaskResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeAuditSuppression' => [ 'name' => 'DescribeAuditSuppression', 'http' => [ 'method' => 'POST', 'requestUri' => '/audit/suppressions/describe', ], 'input' => [ 'shape' => 'DescribeAuditSuppressionRequest', ], 'output' => [ 'shape' => 'DescribeAuditSuppressionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeAuditTask' => [ 'name' => 'DescribeAuditTask', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/tasks/{taskId}', ], 'input' => [ 'shape' => 'DescribeAuditTaskRequest', ], 'output' => [ 'shape' => 'DescribeAuditTaskResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeAuthorizer' => [ 'name' => 'DescribeAuthorizer', 'http' => [ 'method' => 'GET', 'requestUri' => '/authorizer/{authorizerName}', ], 'input' => [ 'shape' => 'DescribeAuthorizerRequest', ], 'output' => [ 'shape' => 'DescribeAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeBillingGroup' => [ 'name' => 'DescribeBillingGroup', 'http' => [ 'method' => 'GET', 'requestUri' => '/billing-groups/{billingGroupName}', ], 'input' => [ 'shape' => 'DescribeBillingGroupRequest', ], 'output' => [ 'shape' => 'DescribeBillingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeCACertificate' => [ 'name' => 'DescribeCACertificate', 'http' => [ 'method' => 'GET', 'requestUri' => '/cacertificate/{caCertificateId}', ], 'input' => [ 'shape' => 'DescribeCACertificateRequest', ], 'output' => [ 'shape' => 'DescribeCACertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeCertificate' => [ 'name' => 'DescribeCertificate', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificates/{certificateId}', ], 'input' => [ 'shape' => 'DescribeCertificateRequest', ], 'output' => [ 'shape' => 'DescribeCertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeCertificateProvider' => [ 'name' => 'DescribeCertificateProvider', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificate-providers/{certificateProviderName}', ], 'input' => [ 'shape' => 'DescribeCertificateProviderRequest', ], 'output' => [ 'shape' => 'DescribeCertificateProviderResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeCustomMetric' => [ 'name' => 'DescribeCustomMetric', 'http' => [ 'method' => 'GET', 'requestUri' => '/custom-metric/{metricName}', ], 'input' => [ 'shape' => 'DescribeCustomMetricRequest', ], 'output' => [ 'shape' => 'DescribeCustomMetricResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeDefaultAuthorizer' => [ 'name' => 'DescribeDefaultAuthorizer', 'http' => [ 'method' => 'GET', 'requestUri' => '/default-authorizer', ], 'input' => [ 'shape' => 'DescribeDefaultAuthorizerRequest', ], 'output' => [ 'shape' => 'DescribeDefaultAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeDetectMitigationActionsTask' => [ 'name' => 'DescribeDetectMitigationActionsTask', 'http' => [ 'method' => 'GET', 'requestUri' => '/detect/mitigationactions/tasks/{taskId}', ], 'input' => [ 'shape' => 'DescribeDetectMitigationActionsTaskRequest', ], 'output' => [ 'shape' => 'DescribeDetectMitigationActionsTaskResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeDimension' => [ 'name' => 'DescribeDimension', 'http' => [ 'method' => 'GET', 'requestUri' => '/dimensions/{name}', ], 'input' => [ 'shape' => 'DescribeDimensionRequest', ], 'output' => [ 'shape' => 'DescribeDimensionResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'DescribeDomainConfiguration' => [ 'name' => 'DescribeDomainConfiguration', 'http' => [ 'method' => 'GET', 'requestUri' => '/domainConfigurations/{domainConfigurationName}', ], 'input' => [ 'shape' => 'DescribeDomainConfigurationRequest', ], 'output' => [ 'shape' => 'DescribeDomainConfigurationResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeEndpoint' => [ 'name' => 'DescribeEndpoint', 'http' => [ 'method' => 'GET', 'requestUri' => '/endpoint', ], 'input' => [ 'shape' => 'DescribeEndpointRequest', ], 'output' => [ 'shape' => 'DescribeEndpointResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'DescribeEventConfigurations' => [ 'name' => 'DescribeEventConfigurations', 'http' => [ 'method' => 'GET', 'requestUri' => '/event-configurations', ], 'input' => [ 'shape' => 'DescribeEventConfigurationsRequest', ], 'output' => [ 'shape' => 'DescribeEventConfigurationsResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'DescribeFleetMetric' => [ 'name' => 'DescribeFleetMetric', 'http' => [ 'method' => 'GET', 'requestUri' => '/fleet-metric/{metricName}', ], 'input' => [ 'shape' => 'DescribeFleetMetricRequest', ], 'output' => [ 'shape' => 'DescribeFleetMetricResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeIndex' => [ 'name' => 'DescribeIndex', 'http' => [ 'method' => 'GET', 'requestUri' => '/indices/{indexName}', ], 'input' => [ 'shape' => 'DescribeIndexRequest', ], 'output' => [ 'shape' => 'DescribeIndexResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeJob' => [ 'name' => 'DescribeJob', 'http' => [ 'method' => 'GET', 'requestUri' => '/jobs/{jobId}', ], 'input' => [ 'shape' => 'DescribeJobRequest', ], 'output' => [ 'shape' => 'DescribeJobResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'DescribeJobExecution' => [ 'name' => 'DescribeJobExecution', 'http' => [ 'method' => 'GET', 'requestUri' => '/things/{thingName}/jobs/{jobId}', ], 'input' => [ 'shape' => 'DescribeJobExecutionRequest', ], 'output' => [ 'shape' => 'DescribeJobExecutionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'DescribeJobTemplate' => [ 'name' => 'DescribeJobTemplate', 'http' => [ 'method' => 'GET', 'requestUri' => '/job-templates/{jobTemplateId}', ], 'input' => [ 'shape' => 'DescribeJobTemplateRequest', ], 'output' => [ 'shape' => 'DescribeJobTemplateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeManagedJobTemplate' => [ 'name' => 'DescribeManagedJobTemplate', 'http' => [ 'method' => 'GET', 'requestUri' => '/managed-job-templates/{templateName}', ], 'input' => [ 'shape' => 'DescribeManagedJobTemplateRequest', ], 'output' => [ 'shape' => 'DescribeManagedJobTemplateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], ], ], 'DescribeMitigationAction' => [ 'name' => 'DescribeMitigationAction', 'http' => [ 'method' => 'GET', 'requestUri' => '/mitigationactions/actions/{actionName}', ], 'input' => [ 'shape' => 'DescribeMitigationActionRequest', ], 'output' => [ 'shape' => 'DescribeMitigationActionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeProvisioningTemplate' => [ 'name' => 'DescribeProvisioningTemplate', 'http' => [ 'method' => 'GET', 'requestUri' => '/provisioning-templates/{templateName}', ], 'input' => [ 'shape' => 'DescribeProvisioningTemplateRequest', ], 'output' => [ 'shape' => 'DescribeProvisioningTemplateResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'DescribeProvisioningTemplateVersion' => [ 'name' => 'DescribeProvisioningTemplateVersion', 'http' => [ 'method' => 'GET', 'requestUri' => '/provisioning-templates/{templateName}/versions/{versionId}', ], 'input' => [ 'shape' => 'DescribeProvisioningTemplateVersionRequest', ], 'output' => [ 'shape' => 'DescribeProvisioningTemplateVersionResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'DescribeRoleAlias' => [ 'name' => 'DescribeRoleAlias', 'http' => [ 'method' => 'GET', 'requestUri' => '/role-aliases/{roleAlias}', ], 'input' => [ 'shape' => 'DescribeRoleAliasRequest', ], 'output' => [ 'shape' => 'DescribeRoleAliasResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeScheduledAudit' => [ 'name' => 'DescribeScheduledAudit', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/scheduledaudits/{scheduledAuditName}', ], 'input' => [ 'shape' => 'DescribeScheduledAuditRequest', ], 'output' => [ 'shape' => 'DescribeScheduledAuditResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeSecurityProfile' => [ 'name' => 'DescribeSecurityProfile', 'http' => [ 'method' => 'GET', 'requestUri' => '/security-profiles/{securityProfileName}', ], 'input' => [ 'shape' => 'DescribeSecurityProfileRequest', ], 'output' => [ 'shape' => 'DescribeSecurityProfileResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeStream' => [ 'name' => 'DescribeStream', 'http' => [ 'method' => 'GET', 'requestUri' => '/streams/{streamId}', ], 'input' => [ 'shape' => 'DescribeStreamRequest', ], 'output' => [ 'shape' => 'DescribeStreamResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeThing' => [ 'name' => 'DescribeThing', 'http' => [ 'method' => 'GET', 'requestUri' => '/things/{thingName}', ], 'input' => [ 'shape' => 'DescribeThingRequest', ], 'output' => [ 'shape' => 'DescribeThingResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DescribeThingGroup' => [ 'name' => 'DescribeThingGroup', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-groups/{thingGroupName}', ], 'input' => [ 'shape' => 'DescribeThingGroupRequest', ], 'output' => [ 'shape' => 'DescribeThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeThingRegistrationTask' => [ 'name' => 'DescribeThingRegistrationTask', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-registration-tasks/{taskId}', ], 'input' => [ 'shape' => 'DescribeThingRegistrationTaskRequest', ], 'output' => [ 'shape' => 'DescribeThingRegistrationTaskResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeThingType' => [ 'name' => 'DescribeThingType', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-types/{thingTypeName}', ], 'input' => [ 'shape' => 'DescribeThingTypeRequest', ], 'output' => [ 'shape' => 'DescribeThingTypeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DetachPolicy' => [ 'name' => 'DetachPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/target-policies/{policyName}', ], 'input' => [ 'shape' => 'DetachPolicyRequest', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'DetachPrincipalPolicy' => [ 'name' => 'DetachPrincipalPolicy', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/principal-policies/{policyName}', ], 'input' => [ 'shape' => 'DetachPrincipalPolicyRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], 'deprecated' => true, ], 'DetachSecurityProfile' => [ 'name' => 'DetachSecurityProfile', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/security-profiles/{securityProfileName}/targets', ], 'input' => [ 'shape' => 'DetachSecurityProfileRequest', ], 'output' => [ 'shape' => 'DetachSecurityProfileResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DetachThingPrincipal' => [ 'name' => 'DetachThingPrincipal', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/things/{thingName}/principals', ], 'input' => [ 'shape' => 'DetachThingPrincipalRequest', ], 'output' => [ 'shape' => 'DetachThingPrincipalResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'DisableTopicRule' => [ 'name' => 'DisableTopicRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/rules/{ruleName}/disable', ], 'input' => [ 'shape' => 'DisableTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'EnableTopicRule' => [ 'name' => 'EnableTopicRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/rules/{ruleName}/enable', ], 'input' => [ 'shape' => 'EnableTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'GetBehaviorModelTrainingSummaries' => [ 'name' => 'GetBehaviorModelTrainingSummaries', 'http' => [ 'method' => 'GET', 'requestUri' => '/behavior-model-training/summaries', ], 'input' => [ 'shape' => 'GetBehaviorModelTrainingSummariesRequest', ], 'output' => [ 'shape' => 'GetBehaviorModelTrainingSummariesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'GetBucketsAggregation' => [ 'name' => 'GetBucketsAggregation', 'http' => [ 'method' => 'POST', 'requestUri' => '/indices/buckets', ], 'input' => [ 'shape' => 'GetBucketsAggregationRequest', ], 'output' => [ 'shape' => 'GetBucketsAggregationResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidQueryException', ], [ 'shape' => 'InvalidAggregationException', ], [ 'shape' => 'IndexNotReadyException', ], ], ], 'GetCardinality' => [ 'name' => 'GetCardinality', 'http' => [ 'method' => 'POST', 'requestUri' => '/indices/cardinality', ], 'input' => [ 'shape' => 'GetCardinalityRequest', ], 'output' => [ 'shape' => 'GetCardinalityResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidQueryException', ], [ 'shape' => 'InvalidAggregationException', ], [ 'shape' => 'IndexNotReadyException', ], ], ], 'GetEffectivePolicies' => [ 'name' => 'GetEffectivePolicies', 'http' => [ 'method' => 'POST', 'requestUri' => '/effective-policies', ], 'input' => [ 'shape' => 'GetEffectivePoliciesRequest', ], 'output' => [ 'shape' => 'GetEffectivePoliciesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'GetIndexingConfiguration' => [ 'name' => 'GetIndexingConfiguration', 'http' => [ 'method' => 'GET', 'requestUri' => '/indexing/config', ], 'input' => [ 'shape' => 'GetIndexingConfigurationRequest', ], 'output' => [ 'shape' => 'GetIndexingConfigurationResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'GetJobDocument' => [ 'name' => 'GetJobDocument', 'http' => [ 'method' => 'GET', 'requestUri' => '/jobs/{jobId}/job-document', ], 'input' => [ 'shape' => 'GetJobDocumentRequest', ], 'output' => [ 'shape' => 'GetJobDocumentResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'GetLoggingOptions' => [ 'name' => 'GetLoggingOptions', 'http' => [ 'method' => 'GET', 'requestUri' => '/loggingOptions', ], 'input' => [ 'shape' => 'GetLoggingOptionsRequest', ], 'output' => [ 'shape' => 'GetLoggingOptionsResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'GetOTAUpdate' => [ 'name' => 'GetOTAUpdate', 'http' => [ 'method' => 'GET', 'requestUri' => '/otaUpdates/{otaUpdateId}', ], 'input' => [ 'shape' => 'GetOTAUpdateRequest', ], 'output' => [ 'shape' => 'GetOTAUpdateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'GetPackage' => [ 'name' => 'GetPackage', 'http' => [ 'method' => 'GET', 'requestUri' => '/packages/{packageName}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'GetPackageRequest', ], 'output' => [ 'shape' => 'GetPackageResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'GetPackageConfiguration' => [ 'name' => 'GetPackageConfiguration', 'http' => [ 'method' => 'GET', 'requestUri' => '/package-configuration', 'responseCode' => 200, ], 'input' => [ 'shape' => 'GetPackageConfigurationRequest', ], 'output' => [ 'shape' => 'GetPackageConfigurationResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], ], ], 'GetPackageVersion' => [ 'name' => 'GetPackageVersion', 'http' => [ 'method' => 'GET', 'requestUri' => '/packages/{packageName}/versions/{versionName}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'GetPackageVersionRequest', ], 'output' => [ 'shape' => 'GetPackageVersionResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'GetPercentiles' => [ 'name' => 'GetPercentiles', 'http' => [ 'method' => 'POST', 'requestUri' => '/indices/percentiles', ], 'input' => [ 'shape' => 'GetPercentilesRequest', ], 'output' => [ 'shape' => 'GetPercentilesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidQueryException', ], [ 'shape' => 'InvalidAggregationException', ], [ 'shape' => 'IndexNotReadyException', ], ], ], 'GetPolicy' => [ 'name' => 'GetPolicy', 'http' => [ 'method' => 'GET', 'requestUri' => '/policies/{policyName}', ], 'input' => [ 'shape' => 'GetPolicyRequest', ], 'output' => [ 'shape' => 'GetPolicyResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'GetPolicyVersion' => [ 'name' => 'GetPolicyVersion', 'http' => [ 'method' => 'GET', 'requestUri' => '/policies/{policyName}/version/{policyVersionId}', ], 'input' => [ 'shape' => 'GetPolicyVersionRequest', ], 'output' => [ 'shape' => 'GetPolicyVersionResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'GetRegistrationCode' => [ 'name' => 'GetRegistrationCode', 'http' => [ 'method' => 'GET', 'requestUri' => '/registrationcode', ], 'input' => [ 'shape' => 'GetRegistrationCodeRequest', ], 'output' => [ 'shape' => 'GetRegistrationCodeResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'GetStatistics' => [ 'name' => 'GetStatistics', 'http' => [ 'method' => 'POST', 'requestUri' => '/indices/statistics', ], 'input' => [ 'shape' => 'GetStatisticsRequest', ], 'output' => [ 'shape' => 'GetStatisticsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidQueryException', ], [ 'shape' => 'InvalidAggregationException', ], [ 'shape' => 'IndexNotReadyException', ], ], ], 'GetTopicRule' => [ 'name' => 'GetTopicRule', 'http' => [ 'method' => 'GET', 'requestUri' => '/rules/{ruleName}', ], 'input' => [ 'shape' => 'GetTopicRuleRequest', ], 'output' => [ 'shape' => 'GetTopicRuleResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'GetTopicRuleDestination' => [ 'name' => 'GetTopicRuleDestination', 'http' => [ 'method' => 'GET', 'requestUri' => '/destinations/{arn+}', ], 'input' => [ 'shape' => 'GetTopicRuleDestinationRequest', ], 'output' => [ 'shape' => 'GetTopicRuleDestinationResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'GetV2LoggingOptions' => [ 'name' => 'GetV2LoggingOptions', 'http' => [ 'method' => 'GET', 'requestUri' => '/v2LoggingOptions', ], 'input' => [ 'shape' => 'GetV2LoggingOptionsRequest', ], 'output' => [ 'shape' => 'GetV2LoggingOptionsResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'NotConfiguredException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'ListActiveViolations' => [ 'name' => 'ListActiveViolations', 'http' => [ 'method' => 'GET', 'requestUri' => '/active-violations', ], 'input' => [ 'shape' => 'ListActiveViolationsRequest', ], 'output' => [ 'shape' => 'ListActiveViolationsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListAttachedPolicies' => [ 'name' => 'ListAttachedPolicies', 'http' => [ 'method' => 'POST', 'requestUri' => '/attached-policies/{target}', ], 'input' => [ 'shape' => 'ListAttachedPoliciesRequest', ], 'output' => [ 'shape' => 'ListAttachedPoliciesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'ListAuditFindings' => [ 'name' => 'ListAuditFindings', 'http' => [ 'method' => 'POST', 'requestUri' => '/audit/findings', ], 'input' => [ 'shape' => 'ListAuditFindingsRequest', ], 'output' => [ 'shape' => 'ListAuditFindingsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListAuditMitigationActionsExecutions' => [ 'name' => 'ListAuditMitigationActionsExecutions', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/mitigationactions/executions', ], 'input' => [ 'shape' => 'ListAuditMitigationActionsExecutionsRequest', ], 'output' => [ 'shape' => 'ListAuditMitigationActionsExecutionsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListAuditMitigationActionsTasks' => [ 'name' => 'ListAuditMitigationActionsTasks', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/mitigationactions/tasks', ], 'input' => [ 'shape' => 'ListAuditMitigationActionsTasksRequest', ], 'output' => [ 'shape' => 'ListAuditMitigationActionsTasksResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListAuditSuppressions' => [ 'name' => 'ListAuditSuppressions', 'http' => [ 'method' => 'POST', 'requestUri' => '/audit/suppressions/list', ], 'input' => [ 'shape' => 'ListAuditSuppressionsRequest', ], 'output' => [ 'shape' => 'ListAuditSuppressionsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListAuditTasks' => [ 'name' => 'ListAuditTasks', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/tasks', ], 'input' => [ 'shape' => 'ListAuditTasksRequest', ], 'output' => [ 'shape' => 'ListAuditTasksResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListAuthorizers' => [ 'name' => 'ListAuthorizers', 'http' => [ 'method' => 'GET', 'requestUri' => '/authorizers/', ], 'input' => [ 'shape' => 'ListAuthorizersRequest', ], 'output' => [ 'shape' => 'ListAuthorizersResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListBillingGroups' => [ 'name' => 'ListBillingGroups', 'http' => [ 'method' => 'GET', 'requestUri' => '/billing-groups', ], 'input' => [ 'shape' => 'ListBillingGroupsRequest', ], 'output' => [ 'shape' => 'ListBillingGroupsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListCACertificates' => [ 'name' => 'ListCACertificates', 'http' => [ 'method' => 'GET', 'requestUri' => '/cacertificates', ], 'input' => [ 'shape' => 'ListCACertificatesRequest', ], 'output' => [ 'shape' => 'ListCACertificatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListCertificateProviders' => [ 'name' => 'ListCertificateProviders', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificate-providers/', ], 'input' => [ 'shape' => 'ListCertificateProvidersRequest', ], 'output' => [ 'shape' => 'ListCertificateProvidersResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListCertificates' => [ 'name' => 'ListCertificates', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificates', ], 'input' => [ 'shape' => 'ListCertificatesRequest', ], 'output' => [ 'shape' => 'ListCertificatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListCertificatesByCA' => [ 'name' => 'ListCertificatesByCA', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificates-by-ca/{caCertificateId}', ], 'input' => [ 'shape' => 'ListCertificatesByCARequest', ], 'output' => [ 'shape' => 'ListCertificatesByCAResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListCustomMetrics' => [ 'name' => 'ListCustomMetrics', 'http' => [ 'method' => 'GET', 'requestUri' => '/custom-metrics', ], 'input' => [ 'shape' => 'ListCustomMetricsRequest', ], 'output' => [ 'shape' => 'ListCustomMetricsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListDetectMitigationActionsExecutions' => [ 'name' => 'ListDetectMitigationActionsExecutions', 'http' => [ 'method' => 'GET', 'requestUri' => '/detect/mitigationactions/executions', ], 'input' => [ 'shape' => 'ListDetectMitigationActionsExecutionsRequest', ], 'output' => [ 'shape' => 'ListDetectMitigationActionsExecutionsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListDetectMitigationActionsTasks' => [ 'name' => 'ListDetectMitigationActionsTasks', 'http' => [ 'method' => 'GET', 'requestUri' => '/detect/mitigationactions/tasks', ], 'input' => [ 'shape' => 'ListDetectMitigationActionsTasksRequest', ], 'output' => [ 'shape' => 'ListDetectMitigationActionsTasksResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListDimensions' => [ 'name' => 'ListDimensions', 'http' => [ 'method' => 'GET', 'requestUri' => '/dimensions', ], 'input' => [ 'shape' => 'ListDimensionsRequest', ], 'output' => [ 'shape' => 'ListDimensionsResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListDomainConfigurations' => [ 'name' => 'ListDomainConfigurations', 'http' => [ 'method' => 'GET', 'requestUri' => '/domainConfigurations', ], 'input' => [ 'shape' => 'ListDomainConfigurationsRequest', ], 'output' => [ 'shape' => 'ListDomainConfigurationsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListFleetMetrics' => [ 'name' => 'ListFleetMetrics', 'http' => [ 'method' => 'GET', 'requestUri' => '/fleet-metrics', ], 'input' => [ 'shape' => 'ListFleetMetricsRequest', ], 'output' => [ 'shape' => 'ListFleetMetricsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListIndices' => [ 'name' => 'ListIndices', 'http' => [ 'method' => 'GET', 'requestUri' => '/indices', ], 'input' => [ 'shape' => 'ListIndicesRequest', ], 'output' => [ 'shape' => 'ListIndicesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListJobExecutionsForJob' => [ 'name' => 'ListJobExecutionsForJob', 'http' => [ 'method' => 'GET', 'requestUri' => '/jobs/{jobId}/things', ], 'input' => [ 'shape' => 'ListJobExecutionsForJobRequest', ], 'output' => [ 'shape' => 'ListJobExecutionsForJobResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'ListJobExecutionsForThing' => [ 'name' => 'ListJobExecutionsForThing', 'http' => [ 'method' => 'GET', 'requestUri' => '/things/{thingName}/jobs', ], 'input' => [ 'shape' => 'ListJobExecutionsForThingRequest', ], 'output' => [ 'shape' => 'ListJobExecutionsForThingResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'ListJobTemplates' => [ 'name' => 'ListJobTemplates', 'http' => [ 'method' => 'GET', 'requestUri' => '/job-templates', ], 'input' => [ 'shape' => 'ListJobTemplatesRequest', ], 'output' => [ 'shape' => 'ListJobTemplatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListJobs' => [ 'name' => 'ListJobs', 'http' => [ 'method' => 'GET', 'requestUri' => '/jobs', ], 'input' => [ 'shape' => 'ListJobsRequest', ], 'output' => [ 'shape' => 'ListJobsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'ListManagedJobTemplates' => [ 'name' => 'ListManagedJobTemplates', 'http' => [ 'method' => 'GET', 'requestUri' => '/managed-job-templates', ], 'input' => [ 'shape' => 'ListManagedJobTemplatesRequest', ], 'output' => [ 'shape' => 'ListManagedJobTemplatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], ], ], 'ListMetricValues' => [ 'name' => 'ListMetricValues', 'http' => [ 'method' => 'GET', 'requestUri' => '/metric-values', ], 'input' => [ 'shape' => 'ListMetricValuesRequest', ], 'output' => [ 'shape' => 'ListMetricValuesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'ListMitigationActions' => [ 'name' => 'ListMitigationActions', 'http' => [ 'method' => 'GET', 'requestUri' => '/mitigationactions/actions', ], 'input' => [ 'shape' => 'ListMitigationActionsRequest', ], 'output' => [ 'shape' => 'ListMitigationActionsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListOTAUpdates' => [ 'name' => 'ListOTAUpdates', 'http' => [ 'method' => 'GET', 'requestUri' => '/otaUpdates', ], 'input' => [ 'shape' => 'ListOTAUpdatesRequest', ], 'output' => [ 'shape' => 'ListOTAUpdatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'ListOutgoingCertificates' => [ 'name' => 'ListOutgoingCertificates', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificates-out-going', ], 'input' => [ 'shape' => 'ListOutgoingCertificatesRequest', ], 'output' => [ 'shape' => 'ListOutgoingCertificatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListPackageVersions' => [ 'name' => 'ListPackageVersions', 'http' => [ 'method' => 'GET', 'requestUri' => '/packages/{packageName}/versions', 'responseCode' => 200, ], 'input' => [ 'shape' => 'ListPackageVersionsRequest', ], 'output' => [ 'shape' => 'ListPackageVersionsResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], ], ], 'ListPackages' => [ 'name' => 'ListPackages', 'http' => [ 'method' => 'GET', 'requestUri' => '/packages', 'responseCode' => 200, ], 'input' => [ 'shape' => 'ListPackagesRequest', ], 'output' => [ 'shape' => 'ListPackagesResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], ], ], 'ListPolicies' => [ 'name' => 'ListPolicies', 'http' => [ 'method' => 'GET', 'requestUri' => '/policies', ], 'input' => [ 'shape' => 'ListPoliciesRequest', ], 'output' => [ 'shape' => 'ListPoliciesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListPolicyPrincipals' => [ 'name' => 'ListPolicyPrincipals', 'http' => [ 'method' => 'GET', 'requestUri' => '/policy-principals', ], 'input' => [ 'shape' => 'ListPolicyPrincipalsRequest', ], 'output' => [ 'shape' => 'ListPolicyPrincipalsResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], 'deprecated' => true, ], 'ListPolicyVersions' => [ 'name' => 'ListPolicyVersions', 'http' => [ 'method' => 'GET', 'requestUri' => '/policies/{policyName}/version', ], 'input' => [ 'shape' => 'ListPolicyVersionsRequest', ], 'output' => [ 'shape' => 'ListPolicyVersionsResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListPrincipalPolicies' => [ 'name' => 'ListPrincipalPolicies', 'http' => [ 'method' => 'GET', 'requestUri' => '/principal-policies', ], 'input' => [ 'shape' => 'ListPrincipalPoliciesRequest', ], 'output' => [ 'shape' => 'ListPrincipalPoliciesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], 'deprecated' => true, ], 'ListPrincipalThings' => [ 'name' => 'ListPrincipalThings', 'http' => [ 'method' => 'GET', 'requestUri' => '/principals/things', ], 'input' => [ 'shape' => 'ListPrincipalThingsRequest', ], 'output' => [ 'shape' => 'ListPrincipalThingsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'ListProvisioningTemplateVersions' => [ 'name' => 'ListProvisioningTemplateVersions', 'http' => [ 'method' => 'GET', 'requestUri' => '/provisioning-templates/{templateName}/versions', ], 'input' => [ 'shape' => 'ListProvisioningTemplateVersionsRequest', ], 'output' => [ 'shape' => 'ListProvisioningTemplateVersionsResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'ListProvisioningTemplates' => [ 'name' => 'ListProvisioningTemplates', 'http' => [ 'method' => 'GET', 'requestUri' => '/provisioning-templates', ], 'input' => [ 'shape' => 'ListProvisioningTemplatesRequest', ], 'output' => [ 'shape' => 'ListProvisioningTemplatesResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'ListRelatedResourcesForAuditFinding' => [ 'name' => 'ListRelatedResourcesForAuditFinding', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/relatedResources', ], 'input' => [ 'shape' => 'ListRelatedResourcesForAuditFindingRequest', ], 'output' => [ 'shape' => 'ListRelatedResourcesForAuditFindingResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListRoleAliases' => [ 'name' => 'ListRoleAliases', 'http' => [ 'method' => 'GET', 'requestUri' => '/role-aliases', ], 'input' => [ 'shape' => 'ListRoleAliasesRequest', ], 'output' => [ 'shape' => 'ListRoleAliasesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListScheduledAudits' => [ 'name' => 'ListScheduledAudits', 'http' => [ 'method' => 'GET', 'requestUri' => '/audit/scheduledaudits', ], 'input' => [ 'shape' => 'ListScheduledAuditsRequest', ], 'output' => [ 'shape' => 'ListScheduledAuditsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListSecurityProfiles' => [ 'name' => 'ListSecurityProfiles', 'http' => [ 'method' => 'GET', 'requestUri' => '/security-profiles', ], 'input' => [ 'shape' => 'ListSecurityProfilesRequest', ], 'output' => [ 'shape' => 'ListSecurityProfilesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'ListSecurityProfilesForTarget' => [ 'name' => 'ListSecurityProfilesForTarget', 'http' => [ 'method' => 'GET', 'requestUri' => '/security-profiles-for-target', ], 'input' => [ 'shape' => 'ListSecurityProfilesForTargetRequest', ], 'output' => [ 'shape' => 'ListSecurityProfilesForTargetResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'ListStreams' => [ 'name' => 'ListStreams', 'http' => [ 'method' => 'GET', 'requestUri' => '/streams', ], 'input' => [ 'shape' => 'ListStreamsRequest', ], 'output' => [ 'shape' => 'ListStreamsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource', 'http' => [ 'method' => 'GET', 'requestUri' => '/tags', ], 'input' => [ 'shape' => 'ListTagsForResourceRequest', ], 'output' => [ 'shape' => 'ListTagsForResourceResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListTargetsForPolicy' => [ 'name' => 'ListTargetsForPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/policy-targets/{policyName}', ], 'input' => [ 'shape' => 'ListTargetsForPolicyRequest', ], 'output' => [ 'shape' => 'ListTargetsForPolicyResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'ListTargetsForSecurityProfile' => [ 'name' => 'ListTargetsForSecurityProfile', 'http' => [ 'method' => 'GET', 'requestUri' => '/security-profiles/{securityProfileName}/targets', ], 'input' => [ 'shape' => 'ListTargetsForSecurityProfileRequest', ], 'output' => [ 'shape' => 'ListTargetsForSecurityProfileResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListThingGroups' => [ 'name' => 'ListThingGroups', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-groups', ], 'input' => [ 'shape' => 'ListThingGroupsRequest', ], 'output' => [ 'shape' => 'ListThingGroupsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListThingGroupsForThing' => [ 'name' => 'ListThingGroupsForThing', 'http' => [ 'method' => 'GET', 'requestUri' => '/things/{thingName}/thing-groups', ], 'input' => [ 'shape' => 'ListThingGroupsForThingRequest', ], 'output' => [ 'shape' => 'ListThingGroupsForThingResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListThingPrincipals' => [ 'name' => 'ListThingPrincipals', 'http' => [ 'method' => 'GET', 'requestUri' => '/things/{thingName}/principals', ], 'input' => [ 'shape' => 'ListThingPrincipalsRequest', ], 'output' => [ 'shape' => 'ListThingPrincipalsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'ListThingRegistrationTaskReports' => [ 'name' => 'ListThingRegistrationTaskReports', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-registration-tasks/{taskId}/reports', ], 'input' => [ 'shape' => 'ListThingRegistrationTaskReportsRequest', ], 'output' => [ 'shape' => 'ListThingRegistrationTaskReportsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListThingRegistrationTasks' => [ 'name' => 'ListThingRegistrationTasks', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-registration-tasks', ], 'input' => [ 'shape' => 'ListThingRegistrationTasksRequest', ], 'output' => [ 'shape' => 'ListThingRegistrationTasksResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListThingTypes' => [ 'name' => 'ListThingTypes', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-types', ], 'input' => [ 'shape' => 'ListThingTypesRequest', ], 'output' => [ 'shape' => 'ListThingTypesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListThings' => [ 'name' => 'ListThings', 'http' => [ 'method' => 'GET', 'requestUri' => '/things', ], 'input' => [ 'shape' => 'ListThingsRequest', ], 'output' => [ 'shape' => 'ListThingsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'ListThingsInBillingGroup' => [ 'name' => 'ListThingsInBillingGroup', 'http' => [ 'method' => 'GET', 'requestUri' => '/billing-groups/{billingGroupName}/things', ], 'input' => [ 'shape' => 'ListThingsInBillingGroupRequest', ], 'output' => [ 'shape' => 'ListThingsInBillingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListThingsInThingGroup' => [ 'name' => 'ListThingsInThingGroup', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-groups/{thingGroupName}/things', ], 'input' => [ 'shape' => 'ListThingsInThingGroupRequest', ], 'output' => [ 'shape' => 'ListThingsInThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListTopicRuleDestinations' => [ 'name' => 'ListTopicRuleDestinations', 'http' => [ 'method' => 'GET', 'requestUri' => '/destinations', ], 'input' => [ 'shape' => 'ListTopicRuleDestinationsRequest', ], 'output' => [ 'shape' => 'ListTopicRuleDestinationsResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'ListTopicRules' => [ 'name' => 'ListTopicRules', 'http' => [ 'method' => 'GET', 'requestUri' => '/rules', ], 'input' => [ 'shape' => 'ListTopicRulesRequest', ], 'output' => [ 'shape' => 'ListTopicRulesResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'ListV2LoggingLevels' => [ 'name' => 'ListV2LoggingLevels', 'http' => [ 'method' => 'GET', 'requestUri' => '/v2LoggingLevel', ], 'input' => [ 'shape' => 'ListV2LoggingLevelsRequest', ], 'output' => [ 'shape' => 'ListV2LoggingLevelsResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'NotConfiguredException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'ListViolationEvents' => [ 'name' => 'ListViolationEvents', 'http' => [ 'method' => 'GET', 'requestUri' => '/violation-events', ], 'input' => [ 'shape' => 'ListViolationEventsRequest', ], 'output' => [ 'shape' => 'ListViolationEventsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'PutVerificationStateOnViolation' => [ 'name' => 'PutVerificationStateOnViolation', 'http' => [ 'method' => 'POST', 'requestUri' => '/violations/verification-state/{violationId}', ], 'input' => [ 'shape' => 'PutVerificationStateOnViolationRequest', ], 'output' => [ 'shape' => 'PutVerificationStateOnViolationResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'RegisterCACertificate' => [ 'name' => 'RegisterCACertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/cacertificate', ], 'input' => [ 'shape' => 'RegisterCACertificateRequest', ], 'output' => [ 'shape' => 'RegisterCACertificateResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'RegistrationCodeValidationException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'CertificateValidationException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'RegisterCertificate' => [ 'name' => 'RegisterCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/certificate/register', ], 'input' => [ 'shape' => 'RegisterCertificateRequest', ], 'output' => [ 'shape' => 'RegisterCertificateResponse', ], 'errors' => [ [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'CertificateValidationException', ], [ 'shape' => 'CertificateStateException', ], [ 'shape' => 'CertificateConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'RegisterCertificateWithoutCA' => [ 'name' => 'RegisterCertificateWithoutCA', 'http' => [ 'method' => 'POST', 'requestUri' => '/certificate/register-no-ca', ], 'input' => [ 'shape' => 'RegisterCertificateWithoutCARequest', ], 'output' => [ 'shape' => 'RegisterCertificateWithoutCAResponse', ], 'errors' => [ [ 'shape' => 'ResourceAlreadyExistsException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'CertificateStateException', ], [ 'shape' => 'CertificateValidationException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'RegisterThing' => [ 'name' => 'RegisterThing', 'http' => [ 'method' => 'POST', 'requestUri' => '/things', ], 'input' => [ 'shape' => 'RegisterThingRequest', ], 'output' => [ 'shape' => 'RegisterThingResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], [ 'shape' => 'ResourceRegistrationFailureException', ], ], ], 'RejectCertificateTransfer' => [ 'name' => 'RejectCertificateTransfer', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/reject-certificate-transfer/{certificateId}', ], 'input' => [ 'shape' => 'RejectCertificateTransferRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'TransferAlreadyCompletedException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'RemoveThingFromBillingGroup' => [ 'name' => 'RemoveThingFromBillingGroup', 'http' => [ 'method' => 'PUT', 'requestUri' => '/billing-groups/removeThingFromBillingGroup', ], 'input' => [ 'shape' => 'RemoveThingFromBillingGroupRequest', ], 'output' => [ 'shape' => 'RemoveThingFromBillingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'RemoveThingFromThingGroup' => [ 'name' => 'RemoveThingFromThingGroup', 'http' => [ 'method' => 'PUT', 'requestUri' => '/thing-groups/removeThingFromThingGroup', ], 'input' => [ 'shape' => 'RemoveThingFromThingGroupRequest', ], 'output' => [ 'shape' => 'RemoveThingFromThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'ReplaceTopicRule' => [ 'name' => 'ReplaceTopicRule', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/rules/{ruleName}', ], 'input' => [ 'shape' => 'ReplaceTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'SqlParseException', ], [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'SearchIndex' => [ 'name' => 'SearchIndex', 'http' => [ 'method' => 'POST', 'requestUri' => '/indices/search', ], 'input' => [ 'shape' => 'SearchIndexRequest', ], 'output' => [ 'shape' => 'SearchIndexResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidQueryException', ], [ 'shape' => 'IndexNotReadyException', ], ], ], 'SetDefaultAuthorizer' => [ 'name' => 'SetDefaultAuthorizer', 'http' => [ 'method' => 'POST', 'requestUri' => '/default-authorizer', ], 'input' => [ 'shape' => 'SetDefaultAuthorizerRequest', ], 'output' => [ 'shape' => 'SetDefaultAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceAlreadyExistsException', ], ], ], 'SetDefaultPolicyVersion' => [ 'name' => 'SetDefaultPolicyVersion', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/policies/{policyName}/version/{policyVersionId}', ], 'input' => [ 'shape' => 'SetDefaultPolicyVersionRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'SetLoggingOptions' => [ 'name' => 'SetLoggingOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/loggingOptions', ], 'input' => [ 'shape' => 'SetLoggingOptionsRequest', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'SetV2LoggingLevel' => [ 'name' => 'SetV2LoggingLevel', 'http' => [ 'method' => 'POST', 'requestUri' => '/v2LoggingLevel', ], 'input' => [ 'shape' => 'SetV2LoggingLevelRequest', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'NotConfiguredException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'SetV2LoggingOptions' => [ 'name' => 'SetV2LoggingOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/v2LoggingOptions', ], 'input' => [ 'shape' => 'SetV2LoggingOptionsRequest', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'StartAuditMitigationActionsTask' => [ 'name' => 'StartAuditMitigationActionsTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/audit/mitigationactions/tasks/{taskId}', ], 'input' => [ 'shape' => 'StartAuditMitigationActionsTaskRequest', ], 'output' => [ 'shape' => 'StartAuditMitigationActionsTaskResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'TaskAlreadyExistsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'StartDetectMitigationActionsTask' => [ 'name' => 'StartDetectMitigationActionsTask', 'http' => [ 'method' => 'PUT', 'requestUri' => '/detect/mitigationactions/tasks/{taskId}', ], 'input' => [ 'shape' => 'StartDetectMitigationActionsTaskRequest', ], 'output' => [ 'shape' => 'StartDetectMitigationActionsTaskResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'TaskAlreadyExistsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'StartOnDemandAuditTask' => [ 'name' => 'StartOnDemandAuditTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/audit/tasks', ], 'input' => [ 'shape' => 'StartOnDemandAuditTaskRequest', ], 'output' => [ 'shape' => 'StartOnDemandAuditTaskResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'StartThingRegistrationTask' => [ 'name' => 'StartThingRegistrationTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/thing-registration-tasks', ], 'input' => [ 'shape' => 'StartThingRegistrationTaskRequest', ], 'output' => [ 'shape' => 'StartThingRegistrationTaskResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'StopThingRegistrationTask' => [ 'name' => 'StopThingRegistrationTask', 'http' => [ 'method' => 'PUT', 'requestUri' => '/thing-registration-tasks/{taskId}/cancel', ], 'input' => [ 'shape' => 'StopThingRegistrationTaskRequest', ], 'output' => [ 'shape' => 'StopThingRegistrationTaskResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'TagResource' => [ 'name' => 'TagResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/tags', ], 'input' => [ 'shape' => 'TagResourceRequest', ], 'output' => [ 'shape' => 'TagResourceResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'TestAuthorization' => [ 'name' => 'TestAuthorization', 'http' => [ 'method' => 'POST', 'requestUri' => '/test-authorization', ], 'input' => [ 'shape' => 'TestAuthorizationRequest', ], 'output' => [ 'shape' => 'TestAuthorizationResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'TestInvokeAuthorizer' => [ 'name' => 'TestInvokeAuthorizer', 'http' => [ 'method' => 'POST', 'requestUri' => '/authorizer/{authorizerName}/test', ], 'input' => [ 'shape' => 'TestInvokeAuthorizerRequest', ], 'output' => [ 'shape' => 'TestInvokeAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidResponseException', ], ], ], 'TransferCertificate' => [ 'name' => 'TransferCertificate', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/transfer-certificate/{certificateId}', ], 'input' => [ 'shape' => 'TransferCertificateRequest', ], 'output' => [ 'shape' => 'TransferCertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'CertificateStateException', ], [ 'shape' => 'TransferConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UntagResource' => [ 'name' => 'UntagResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/untag', ], 'input' => [ 'shape' => 'UntagResourceRequest', ], 'output' => [ 'shape' => 'UntagResourceResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'UpdateAccountAuditConfiguration' => [ 'name' => 'UpdateAccountAuditConfiguration', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/audit/configuration', ], 'input' => [ 'shape' => 'UpdateAccountAuditConfigurationRequest', ], 'output' => [ 'shape' => 'UpdateAccountAuditConfigurationResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateAuditSuppression' => [ 'name' => 'UpdateAuditSuppression', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/audit/suppressions/update', ], 'input' => [ 'shape' => 'UpdateAuditSuppressionRequest', ], 'output' => [ 'shape' => 'UpdateAuditSuppressionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateAuthorizer' => [ 'name' => 'UpdateAuthorizer', 'http' => [ 'method' => 'PUT', 'requestUri' => '/authorizer/{authorizerName}', ], 'input' => [ 'shape' => 'UpdateAuthorizerRequest', ], 'output' => [ 'shape' => 'UpdateAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateBillingGroup' => [ 'name' => 'UpdateBillingGroup', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/billing-groups/{billingGroupName}', ], 'input' => [ 'shape' => 'UpdateBillingGroupRequest', ], 'output' => [ 'shape' => 'UpdateBillingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'UpdateCACertificate' => [ 'name' => 'UpdateCACertificate', 'http' => [ 'method' => 'PUT', 'requestUri' => '/cacertificate/{caCertificateId}', ], 'input' => [ 'shape' => 'UpdateCACertificateRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateCertificate' => [ 'name' => 'UpdateCertificate', 'http' => [ 'method' => 'PUT', 'requestUri' => '/certificates/{certificateId}', ], 'input' => [ 'shape' => 'UpdateCertificateRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'CertificateStateException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateCertificateProvider' => [ 'name' => 'UpdateCertificateProvider', 'http' => [ 'method' => 'PUT', 'requestUri' => '/certificate-providers/{certificateProviderName}', ], 'input' => [ 'shape' => 'UpdateCertificateProviderRequest', ], 'output' => [ 'shape' => 'UpdateCertificateProviderResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateCustomMetric' => [ 'name' => 'UpdateCustomMetric', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/custom-metric/{metricName}', ], 'input' => [ 'shape' => 'UpdateCustomMetricRequest', ], 'output' => [ 'shape' => 'UpdateCustomMetricResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateDimension' => [ 'name' => 'UpdateDimension', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/dimensions/{name}', ], 'input' => [ 'shape' => 'UpdateDimensionRequest', ], 'output' => [ 'shape' => 'UpdateDimensionResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'UpdateDomainConfiguration' => [ 'name' => 'UpdateDomainConfiguration', 'http' => [ 'method' => 'PUT', 'requestUri' => '/domainConfigurations/{domainConfigurationName}', ], 'input' => [ 'shape' => 'UpdateDomainConfigurationRequest', ], 'output' => [ 'shape' => 'UpdateDomainConfigurationResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'CertificateValidationException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateDynamicThingGroup' => [ 'name' => 'UpdateDynamicThingGroup', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/dynamic-thing-groups/{thingGroupName}', ], 'input' => [ 'shape' => 'UpdateDynamicThingGroupRequest', ], 'output' => [ 'shape' => 'UpdateDynamicThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidQueryException', ], ], ], 'UpdateEventConfigurations' => [ 'name' => 'UpdateEventConfigurations', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/event-configurations', ], 'input' => [ 'shape' => 'UpdateEventConfigurationsRequest', ], 'output' => [ 'shape' => 'UpdateEventConfigurationsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ThrottlingException', ], ], ], 'UpdateFleetMetric' => [ 'name' => 'UpdateFleetMetric', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/fleet-metric/{metricName}', ], 'input' => [ 'shape' => 'UpdateFleetMetricRequest', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidQueryException', ], [ 'shape' => 'InvalidAggregationException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'IndexNotReadyException', ], ], ], 'UpdateIndexingConfiguration' => [ 'name' => 'UpdateIndexingConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/indexing/config', ], 'input' => [ 'shape' => 'UpdateIndexingConfigurationRequest', ], 'output' => [ 'shape' => 'UpdateIndexingConfigurationResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateJob' => [ 'name' => 'UpdateJob', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/jobs/{jobId}', ], 'input' => [ 'shape' => 'UpdateJobRequest', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'UpdateMitigationAction' => [ 'name' => 'UpdateMitigationAction', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/mitigationactions/actions/{actionName}', ], 'input' => [ 'shape' => 'UpdateMitigationActionRequest', ], 'output' => [ 'shape' => 'UpdateMitigationActionResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdatePackage' => [ 'name' => 'UpdatePackage', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/packages/{packageName}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'UpdatePackageRequest', ], 'output' => [ 'shape' => 'UpdatePackageResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'ResourceNotFoundException', ], ], 'idempotent' => true, ], 'UpdatePackageConfiguration' => [ 'name' => 'UpdatePackageConfiguration', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/package-configuration', 'responseCode' => 200, ], 'input' => [ 'shape' => 'UpdatePackageConfigurationRequest', ], 'output' => [ 'shape' => 'UpdatePackageConfigurationResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], ], 'idempotent' => true, ], 'UpdatePackageVersion' => [ 'name' => 'UpdatePackageVersion', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/packages/{packageName}/versions/{versionName}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'UpdatePackageVersionRequest', ], 'output' => [ 'shape' => 'UpdatePackageVersionResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'InternalServerException', ], [ 'shape' => 'ValidationException', ], [ 'shape' => 'ResourceNotFoundException', ], ], 'idempotent' => true, ], 'UpdateProvisioningTemplate' => [ 'name' => 'UpdateProvisioningTemplate', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/provisioning-templates/{templateName}', ], 'input' => [ 'shape' => 'UpdateProvisioningTemplateRequest', ], 'output' => [ 'shape' => 'UpdateProvisioningTemplateResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'UpdateRoleAlias' => [ 'name' => 'UpdateRoleAlias', 'http' => [ 'method' => 'PUT', 'requestUri' => '/role-aliases/{roleAlias}', ], 'input' => [ 'shape' => 'UpdateRoleAliasRequest', ], 'output' => [ 'shape' => 'UpdateRoleAliasResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateScheduledAudit' => [ 'name' => 'UpdateScheduledAudit', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/audit/scheduledaudits/{scheduledAuditName}', ], 'input' => [ 'shape' => 'UpdateScheduledAuditRequest', ], 'output' => [ 'shape' => 'UpdateScheduledAuditResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateSecurityProfile' => [ 'name' => 'UpdateSecurityProfile', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/security-profiles/{securityProfileName}', ], 'input' => [ 'shape' => 'UpdateSecurityProfileRequest', ], 'output' => [ 'shape' => 'UpdateSecurityProfileResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateStream' => [ 'name' => 'UpdateStream', 'http' => [ 'method' => 'PUT', 'requestUri' => '/streams/{streamId}', ], 'input' => [ 'shape' => 'UpdateStreamRequest', ], 'output' => [ 'shape' => 'UpdateStreamResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], ], ], 'UpdateThing' => [ 'name' => 'UpdateThing', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/things/{thingName}', ], 'input' => [ 'shape' => 'UpdateThingRequest', ], 'output' => [ 'shape' => 'UpdateThingResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'UpdateThingGroup' => [ 'name' => 'UpdateThingGroup', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/thing-groups/{thingGroupName}', ], 'input' => [ 'shape' => 'UpdateThingGroupRequest', ], 'output' => [ 'shape' => 'UpdateThingGroupResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'VersionConflictException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'UpdateThingGroupsForThing' => [ 'name' => 'UpdateThingGroupsForThing', 'http' => [ 'method' => 'PUT', 'requestUri' => '/thing-groups/updateThingGroupsForThing', ], 'input' => [ 'shape' => 'UpdateThingGroupsForThingRequest', ], 'output' => [ 'shape' => 'UpdateThingGroupsForThingResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'UpdateTopicRuleDestination' => [ 'name' => 'UpdateTopicRuleDestination', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/destinations', ], 'input' => [ 'shape' => 'UpdateTopicRuleDestinationRequest', ], 'output' => [ 'shape' => 'UpdateTopicRuleDestinationResponse', ], 'errors' => [ [ 'shape' => 'InternalException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictingResourceUpdateException', ], ], ], 'ValidateSecurityProfileBehaviors' => [ 'name' => 'ValidateSecurityProfileBehaviors', 'http' => [ 'method' => 'POST', 'requestUri' => '/security-profile-behaviors/validate', ], 'input' => [ 'shape' => 'ValidateSecurityProfileBehaviorsRequest', ], 'output' => [ 'shape' => 'ValidateSecurityProfileBehaviorsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ThrottlingException', ], [ 'shape' => 'InternalFailureException', ], ], ], ], 'shapes' => [ 'AbortAction' => [ 'type' => 'string', 'enum' => [ 'CANCEL', ], ], 'AbortConfig' => [ 'type' => 'structure', 'required' => [ 'criteriaList', ], 'members' => [ 'criteriaList' => [ 'shape' => 'AbortCriteriaList', ], ], ], 'AbortCriteria' => [ 'type' => 'structure', 'required' => [ 'failureType', 'action', 'thresholdPercentage', 'minNumberOfExecutedThings', ], 'members' => [ 'failureType' => [ 'shape' => 'JobExecutionFailureType', ], 'action' => [ 'shape' => 'AbortAction', ], 'thresholdPercentage' => [ 'shape' => 'AbortThresholdPercentage', ], 'minNumberOfExecutedThings' => [ 'shape' => 'MinimumNumberOfExecutedThings', ], ], ], 'AbortCriteriaList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AbortCriteria', ], 'min' => 1, ], 'AbortThresholdPercentage' => [ 'type' => 'double', 'max' => 100, ], 'AcceptCertificateTransferRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'setAsActive' => [ 'shape' => 'SetAsActive', 'location' => 'querystring', 'locationName' => 'setAsActive', ], ], ], 'AcmCertificateArn' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => 'arn:aws(-cn|-us-gov|-iso-b|-iso)?:acm:[a-z]{2}-(gov-|iso-|isob-)?[a-z]{4,9}-\\d{1}:\\d{12}:certificate/[a-zA-Z0-9/-]+', ], 'Action' => [ 'type' => 'structure', 'members' => [ 'dynamoDB' => [ 'shape' => 'DynamoDBAction', ], 'dynamoDBv2' => [ 'shape' => 'DynamoDBv2Action', ], 'lambda' => [ 'shape' => 'LambdaAction', ], 'sns' => [ 'shape' => 'SnsAction', ], 'sqs' => [ 'shape' => 'SqsAction', ], 'kinesis' => [ 'shape' => 'KinesisAction', ], 'republish' => [ 'shape' => 'RepublishAction', ], 's3' => [ 'shape' => 'S3Action', ], 'firehose' => [ 'shape' => 'FirehoseAction', ], 'cloudwatchMetric' => [ 'shape' => 'CloudwatchMetricAction', ], 'cloudwatchAlarm' => [ 'shape' => 'CloudwatchAlarmAction', ], 'cloudwatchLogs' => [ 'shape' => 'CloudwatchLogsAction', ], 'elasticsearch' => [ 'shape' => 'ElasticsearchAction', ], 'salesforce' => [ 'shape' => 'SalesforceAction', ], 'iotAnalytics' => [ 'shape' => 'IotAnalyticsAction', ], 'iotEvents' => [ 'shape' => 'IotEventsAction', ], 'iotSiteWise' => [ 'shape' => 'IotSiteWiseAction', ], 'stepFunctions' => [ 'shape' => 'StepFunctionsAction', ], 'timestream' => [ 'shape' => 'TimestreamAction', ], 'http' => [ 'shape' => 'HttpAction', ], 'kafka' => [ 'shape' => 'KafkaAction', ], 'openSearch' => [ 'shape' => 'OpenSearchAction', ], 'location' => [ 'shape' => 'LocationAction', ], ], ], 'ActionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Action', ], 'max' => 10, 'min' => 0, ], 'ActionType' => [ 'type' => 'string', 'enum' => [ 'PUBLISH', 'SUBSCRIBE', 'RECEIVE', 'CONNECT', ], ], 'ActiveViolation' => [ 'type' => 'structure', 'members' => [ 'violationId' => [ 'shape' => 'ViolationId', ], 'thingName' => [ 'shape' => 'DeviceDefenderThingName', ], 'securityProfileName' => [ 'shape' => 'SecurityProfileName', ], 'behavior' => [ 'shape' => 'Behavior', ], 'lastViolationValue' => [ 'shape' => 'MetricValue', ], 'violationEventAdditionalInfo' => [ 'shape' => 'ViolationEventAdditionalInfo', ], 'verificationState' => [ 'shape' => 'VerificationState', ], 'verificationStateDescription' => [ 'shape' => 'VerificationStateDescription', ], 'lastViolationTime' => [ 'shape' => 'Timestamp', ], 'violationStartTime' => [ 'shape' => 'Timestamp', ], ], ], 'ActiveViolations' => [ 'type' => 'list', 'member' => [ 'shape' => 'ActiveViolation', ], ], 'AddThingToBillingGroupRequest' => [ 'type' => 'structure', 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', ], 'billingGroupArn' => [ 'shape' => 'BillingGroupArn', ], 'thingName' => [ 'shape' => 'ThingName', ], 'thingArn' => [ 'shape' => 'ThingArn', ], ], ], 'AddThingToBillingGroupResponse' => [ 'type' => 'structure', 'members' => [], ], 'AddThingToThingGroupRequest' => [ 'type' => 'structure', 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', ], 'thingGroupArn' => [ 'shape' => 'ThingGroupArn', ], 'thingName' => [ 'shape' => 'ThingName', ], 'thingArn' => [ 'shape' => 'ThingArn', ], 'overrideDynamicGroups' => [ 'shape' => 'OverrideDynamicGroups', ], ], ], 'AddThingToThingGroupResponse' => [ 'type' => 'structure', 'members' => [], ], 'AddThingsToThingGroupParams' => [ 'type' => 'structure', 'required' => [ 'thingGroupNames', ], 'members' => [ 'thingGroupNames' => [ 'shape' => 'ThingGroupNames', ], 'overrideDynamicGroups' => [ 'shape' => 'NullableBoolean', ], ], ], 'AdditionalMetricsToRetainList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BehaviorMetric', ], ], 'AdditionalMetricsToRetainV2List' => [ 'type' => 'list', 'member' => [ 'shape' => 'MetricToRetain', ], ], 'AdditionalParameterMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'AttributeKey', ], 'value' => [ 'shape' => 'Value', ], ], 'AggregationField' => [ 'type' => 'string', 'min' => 1, ], 'AggregationType' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'AggregationTypeName', ], 'values' => [ 'shape' => 'AggregationTypeValues', ], ], ], 'AggregationTypeName' => [ 'type' => 'string', 'enum' => [ 'Statistics', 'Percentiles', 'Cardinality', ], ], 'AggregationTypeValue' => [ 'type' => 'string', 'max' => 12, 'min' => 1, 'pattern' => '[a-zA-Z0-9]+', ], 'AggregationTypeValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'AggregationTypeValue', ], ], 'AlarmName' => [ 'type' => 'string', ], 'AlertTarget' => [ 'type' => 'structure', 'required' => [ 'alertTargetArn', 'roleArn', ], 'members' => [ 'alertTargetArn' => [ 'shape' => 'AlertTargetArn', ], 'roleArn' => [ 'shape' => 'RoleArn', ], ], ], 'AlertTargetArn' => [ 'type' => 'string', ], 'AlertTargetType' => [ 'type' => 'string', 'enum' => [ 'SNS', ], ], 'AlertTargets' => [ 'type' => 'map', 'key' => [ 'shape' => 'AlertTargetType', ], 'value' => [ 'shape' => 'AlertTarget', ], ], 'AllowAuthorizerOverride' => [ 'type' => 'boolean', ], 'AllowAutoRegistration' => [ 'type' => 'boolean', ], 'Allowed' => [ 'type' => 'structure', 'members' => [ 'policies' => [ 'shape' => 'Policies', ], ], ], 'ApproximateSecondsBeforeTimedOut' => [ 'type' => 'long', ], 'AscendingOrder' => [ 'type' => 'boolean', ], 'AssetId' => [ 'type' => 'string', ], 'AssetPropertyAlias' => [ 'type' => 'string', 'min' => 1, ], 'AssetPropertyBooleanValue' => [ 'type' => 'string', ], 'AssetPropertyDoubleValue' => [ 'type' => 'string', ], 'AssetPropertyEntryId' => [ 'type' => 'string', ], 'AssetPropertyId' => [ 'type' => 'string', ], 'AssetPropertyIntegerValue' => [ 'type' => 'string', ], 'AssetPropertyOffsetInNanos' => [ 'type' => 'string', ], 'AssetPropertyQuality' => [ 'type' => 'string', ], 'AssetPropertyStringValue' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, ], 'AssetPropertyTimeInSeconds' => [ 'type' => 'string', ], 'AssetPropertyTimestamp' => [ 'type' => 'structure', 'required' => [ 'timeInSeconds', ], 'members' => [ 'timeInSeconds' => [ 'shape' => 'AssetPropertyTimeInSeconds', ], 'offsetInNanos' => [ 'shape' => 'AssetPropertyOffsetInNanos', ], ], ], 'AssetPropertyValue' => [ 'type' => 'structure', 'required' => [ 'value', 'timestamp', ], 'members' => [ 'value' => [ 'shape' => 'AssetPropertyVariant', ], 'timestamp' => [ 'shape' => 'AssetPropertyTimestamp', ], 'quality' => [ 'shape' => 'AssetPropertyQuality', ], ], ], 'AssetPropertyValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AssetPropertyValue', ], 'min' => 1, ], 'AssetPropertyVariant' => [ 'type' => 'structure', 'members' => [ 'stringValue' => [ 'shape' => 'AssetPropertyStringValue', ], 'integerValue' => [ 'shape' => 'AssetPropertyIntegerValue', ], 'doubleValue' => [ 'shape' => 'AssetPropertyDoubleValue', ], 'booleanValue' => [ 'shape' => 'AssetPropertyBooleanValue', ], ], ], 'AssociateTargetsWithJobRequest' => [ 'type' => 'structure', 'required' => [ 'targets', 'jobId', ], 'members' => [ 'targets' => [ 'shape' => 'JobTargets', ], 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'comment' => [ 'shape' => 'Comment', ], 'namespaceId' => [ 'shape' => 'NamespaceId', 'location' => 'querystring', 'locationName' => 'namespaceId', ], ], ], 'AssociateTargetsWithJobResponse' => [ 'type' => 'structure', 'members' => [ 'jobArn' => [ 'shape' => 'JobArn', ], 'jobId' => [ 'shape' => 'JobId', ], 'description' => [ 'shape' => 'JobDescription', ], ], ], 'AttachPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'target', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'target' => [ 'shape' => 'PolicyTarget', ], ], ], 'AttachPrincipalPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'principal', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-iot-principal', ], ], ], 'AttachSecurityProfileRequest' => [ 'type' => 'structure', 'required' => [ 'securityProfileName', 'securityProfileTargetArn', ], 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'uri', 'locationName' => 'securityProfileName', ], 'securityProfileTargetArn' => [ 'shape' => 'SecurityProfileTargetArn', 'location' => 'querystring', 'locationName' => 'securityProfileTargetArn', ], ], ], 'AttachSecurityProfileResponse' => [ 'type' => 'structure', 'members' => [], ], 'AttachThingPrincipalRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', 'principal', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-principal', ], ], ], 'AttachThingPrincipalResponse' => [ 'type' => 'structure', 'members' => [], ], 'AttributeKey' => [ 'type' => 'string', ], 'AttributeName' => [ 'type' => 'string', 'max' => 128, 'pattern' => '[a-zA-Z0-9_.,@/:#-]+', ], 'AttributePayload' => [ 'type' => 'structure', 'members' => [ 'attributes' => [ 'shape' => 'Attributes', ], 'merge' => [ 'shape' => 'Flag', ], ], ], 'AttributeValue' => [ 'type' => 'string', 'max' => 800, 'pattern' => '[a-zA-Z0-9_.,@/:#-]*', ], 'Attributes' => [ 'type' => 'map', 'key' => [ 'shape' => 'AttributeName', ], 'value' => [ 'shape' => 'AttributeValue', ], ], 'AttributesMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'AttributeKey', ], 'value' => [ 'shape' => 'Value', ], ], 'AuditCheckConfiguration' => [ 'type' => 'structure', 'members' => [ 'enabled' => [ 'shape' => 'Enabled', ], ], ], 'AuditCheckConfigurations' => [ 'type' => 'map', 'key' => [ 'shape' => 'AuditCheckName', ], 'value' => [ 'shape' => 'AuditCheckConfiguration', ], ], 'AuditCheckDetails' => [ 'type' => 'structure', 'members' => [ 'checkRunStatus' => [ 'shape' => 'AuditCheckRunStatus', ], 'checkCompliant' => [ 'shape' => 'CheckCompliant', ], 'totalResourcesCount' => [ 'shape' => 'TotalResourcesCount', ], 'nonCompliantResourcesCount' => [ 'shape' => 'NonCompliantResourcesCount', ], 'suppressedNonCompliantResourcesCount' => [ 'shape' => 'SuppressedNonCompliantResourcesCount', ], 'errorCode' => [ 'shape' => 'ErrorCode', ], 'message' => [ 'shape' => 'ErrorMessage', ], ], ], 'AuditCheckName' => [ 'type' => 'string', ], 'AuditCheckRunStatus' => [ 'type' => 'string', 'enum' => [ 'IN_PROGRESS', 'WAITING_FOR_DATA_COLLECTION', 'CANCELED', 'COMPLETED_COMPLIANT', 'COMPLETED_NON_COMPLIANT', 'FAILED', ], ], 'AuditCheckToActionsMapping' => [ 'type' => 'map', 'key' => [ 'shape' => 'AuditCheckName', ], 'value' => [ 'shape' => 'MitigationActionNameList', ], ], 'AuditCheckToReasonCodeFilter' => [ 'type' => 'map', 'key' => [ 'shape' => 'AuditCheckName', ], 'value' => [ 'shape' => 'ReasonForNonComplianceCodes', ], ], 'AuditDescription' => [ 'type' => 'string', 'max' => 1000, 'pattern' => '[\\p{Graph}\\x20]*', ], 'AuditDetails' => [ 'type' => 'map', 'key' => [ 'shape' => 'AuditCheckName', ], 'value' => [ 'shape' => 'AuditCheckDetails', ], ], 'AuditFinding' => [ 'type' => 'structure', 'members' => [ 'findingId' => [ 'shape' => 'FindingId', ], 'taskId' => [ 'shape' => 'AuditTaskId', ], 'checkName' => [ 'shape' => 'AuditCheckName', ], 'taskStartTime' => [ 'shape' => 'Timestamp', ], 'findingTime' => [ 'shape' => 'Timestamp', ], 'severity' => [ 'shape' => 'AuditFindingSeverity', ], 'nonCompliantResource' => [ 'shape' => 'NonCompliantResource', ], 'relatedResources' => [ 'shape' => 'RelatedResources', ], 'reasonForNonCompliance' => [ 'shape' => 'ReasonForNonCompliance', ], 'reasonForNonComplianceCode' => [ 'shape' => 'ReasonForNonComplianceCode', ], 'isSuppressed' => [ 'shape' => 'IsSuppressed', ], ], ], 'AuditFindingSeverity' => [ 'type' => 'string', 'enum' => [ 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', ], ], 'AuditFindings' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuditFinding', ], ], 'AuditFrequency' => [ 'type' => 'string', 'enum' => [ 'DAILY', 'WEEKLY', 'BIWEEKLY', 'MONTHLY', ], ], 'AuditMitigationActionExecutionMetadata' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', ], 'findingId' => [ 'shape' => 'FindingId', ], 'actionName' => [ 'shape' => 'MitigationActionName', ], 'actionId' => [ 'shape' => 'MitigationActionId', ], 'status' => [ 'shape' => 'AuditMitigationActionsExecutionStatus', ], 'startTime' => [ 'shape' => 'Timestamp', ], 'endTime' => [ 'shape' => 'Timestamp', ], 'errorCode' => [ 'shape' => 'ErrorCode', ], 'message' => [ 'shape' => 'ErrorMessage', ], ], ], 'AuditMitigationActionExecutionMetadataList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuditMitigationActionExecutionMetadata', ], ], 'AuditMitigationActionsExecutionStatus' => [ 'type' => 'string', 'enum' => [ 'IN_PROGRESS', 'COMPLETED', 'FAILED', 'CANCELED', 'SKIPPED', 'PENDING', ], ], 'AuditMitigationActionsTaskMetadata' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', ], 'startTime' => [ 'shape' => 'Timestamp', ], 'taskStatus' => [ 'shape' => 'AuditMitigationActionsTaskStatus', ], ], ], 'AuditMitigationActionsTaskMetadataList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuditMitigationActionsTaskMetadata', ], ], 'AuditMitigationActionsTaskStatistics' => [ 'type' => 'map', 'key' => [ 'shape' => 'AuditCheckName', ], 'value' => [ 'shape' => 'TaskStatisticsForAuditCheck', ], ], 'AuditMitigationActionsTaskStatus' => [ 'type' => 'string', 'enum' => [ 'IN_PROGRESS', 'COMPLETED', 'FAILED', 'CANCELED', ], ], 'AuditMitigationActionsTaskTarget' => [ 'type' => 'structure', 'members' => [ 'auditTaskId' => [ 'shape' => 'AuditTaskId', ], 'findingIds' => [ 'shape' => 'FindingIds', ], 'auditCheckToReasonCodeFilter' => [ 'shape' => 'AuditCheckToReasonCodeFilter', ], ], ], 'AuditNotificationTarget' => [ 'type' => 'structure', 'members' => [ 'targetArn' => [ 'shape' => 'TargetArn', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'enabled' => [ 'shape' => 'Enabled', ], ], ], 'AuditNotificationTargetConfigurations' => [ 'type' => 'map', 'key' => [ 'shape' => 'AuditNotificationType', ], 'value' => [ 'shape' => 'AuditNotificationTarget', ], ], 'AuditNotificationType' => [ 'type' => 'string', 'enum' => [ 'SNS', ], ], 'AuditSuppression' => [ 'type' => 'structure', 'required' => [ 'checkName', 'resourceIdentifier', ], 'members' => [ 'checkName' => [ 'shape' => 'AuditCheckName', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], 'expirationDate' => [ 'shape' => 'Timestamp', ], 'suppressIndefinitely' => [ 'shape' => 'SuppressIndefinitely', ], 'description' => [ 'shape' => 'AuditDescription', ], ], ], 'AuditSuppressionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuditSuppression', ], ], 'AuditTaskId' => [ 'type' => 'string', 'max' => 40, 'min' => 1, 'pattern' => '[a-zA-Z0-9\\-]+', ], 'AuditTaskMetadata' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'AuditTaskId', ], 'taskStatus' => [ 'shape' => 'AuditTaskStatus', ], 'taskType' => [ 'shape' => 'AuditTaskType', ], ], ], 'AuditTaskMetadataList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuditTaskMetadata', ], ], 'AuditTaskStatus' => [ 'type' => 'string', 'enum' => [ 'IN_PROGRESS', 'COMPLETED', 'FAILED', 'CANCELED', ], ], 'AuditTaskType' => [ 'type' => 'string', 'enum' => [ 'ON_DEMAND_AUDIT_TASK', 'SCHEDULED_AUDIT_TASK', ], ], 'AuthDecision' => [ 'type' => 'string', 'enum' => [ 'ALLOWED', 'EXPLICIT_DENY', 'IMPLICIT_DENY', ], ], 'AuthInfo' => [ 'type' => 'structure', 'required' => [ 'resources', ], 'members' => [ 'actionType' => [ 'shape' => 'ActionType', ], 'resources' => [ 'shape' => 'Resources', ], ], ], 'AuthInfos' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuthInfo', ], 'max' => 10, 'min' => 1, ], 'AuthResult' => [ 'type' => 'structure', 'members' => [ 'authInfo' => [ 'shape' => 'AuthInfo', ], 'allowed' => [ 'shape' => 'Allowed', ], 'denied' => [ 'shape' => 'Denied', ], 'authDecision' => [ 'shape' => 'AuthDecision', ], 'missingContextValues' => [ 'shape' => 'MissingContextValues', ], ], ], 'AuthResults' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuthResult', ], ], 'AuthorizerArn' => [ 'type' => 'string', 'max' => 2048, ], 'AuthorizerConfig' => [ 'type' => 'structure', 'members' => [ 'defaultAuthorizerName' => [ 'shape' => 'AuthorizerName', ], 'allowAuthorizerOverride' => [ 'shape' => 'AllowAuthorizerOverride', 'box' => true, ], ], ], 'AuthorizerDescription' => [ 'type' => 'structure', 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', ], 'authorizerArn' => [ 'shape' => 'AuthorizerArn', ], 'authorizerFunctionArn' => [ 'shape' => 'AuthorizerFunctionArn', ], 'tokenKeyName' => [ 'shape' => 'TokenKeyName', ], 'tokenSigningPublicKeys' => [ 'shape' => 'PublicKeyMap', ], 'status' => [ 'shape' => 'AuthorizerStatus', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'signingDisabled' => [ 'shape' => 'BooleanKey', ], 'enableCachingForHttp' => [ 'shape' => 'EnableCachingForHttp', ], ], ], 'AuthorizerFunctionArn' => [ 'type' => 'string', 'max' => 2048, 'pattern' => '[\\s\\S]*', ], 'AuthorizerName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w=,@-]+', ], 'AuthorizerStatus' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'INACTIVE', ], ], 'AuthorizerSummary' => [ 'type' => 'structure', 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', ], 'authorizerArn' => [ 'shape' => 'AuthorizerArn', ], ], ], 'Authorizers' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuthorizerSummary', ], ], 'AutoRegistrationStatus' => [ 'type' => 'string', 'enum' => [ 'ENABLE', 'DISABLE', ], ], 'Average' => [ 'type' => 'double', ], 'AwsAccountId' => [ 'type' => 'string', 'max' => 12, 'min' => 12, 'pattern' => '[0-9]+', ], 'AwsArn' => [ 'type' => 'string', ], 'AwsIotJobArn' => [ 'type' => 'string', ], 'AwsIotJobId' => [ 'type' => 'string', ], 'AwsIotSqlVersion' => [ 'type' => 'string', ], 'AwsJobAbortConfig' => [ 'type' => 'structure', 'required' => [ 'abortCriteriaList', ], 'members' => [ 'abortCriteriaList' => [ 'shape' => 'AwsJobAbortCriteriaList', ], ], ], 'AwsJobAbortCriteria' => [ 'type' => 'structure', 'required' => [ 'failureType', 'action', 'thresholdPercentage', 'minNumberOfExecutedThings', ], 'members' => [ 'failureType' => [ 'shape' => 'AwsJobAbortCriteriaFailureType', ], 'action' => [ 'shape' => 'AwsJobAbortCriteriaAbortAction', ], 'thresholdPercentage' => [ 'shape' => 'AwsJobAbortCriteriaAbortThresholdPercentage', ], 'minNumberOfExecutedThings' => [ 'shape' => 'AwsJobAbortCriteriaMinimumNumberOfExecutedThings', ], ], ], 'AwsJobAbortCriteriaAbortAction' => [ 'type' => 'string', 'enum' => [ 'CANCEL', ], ], 'AwsJobAbortCriteriaAbortThresholdPercentage' => [ 'type' => 'double', 'max' => 100, ], 'AwsJobAbortCriteriaFailureType' => [ 'type' => 'string', 'enum' => [ 'FAILED', 'REJECTED', 'TIMED_OUT', 'ALL', ], ], 'AwsJobAbortCriteriaList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AwsJobAbortCriteria', ], 'min' => 1, ], 'AwsJobAbortCriteriaMinimumNumberOfExecutedThings' => [ 'type' => 'integer', 'min' => 1, ], 'AwsJobExecutionsRolloutConfig' => [ 'type' => 'structure', 'members' => [ 'maximumPerMinute' => [ 'shape' => 'MaximumPerMinute', ], 'exponentialRate' => [ 'shape' => 'AwsJobExponentialRolloutRate', ], ], ], 'AwsJobExponentialRolloutRate' => [ 'type' => 'structure', 'required' => [ 'baseRatePerMinute', 'incrementFactor', 'rateIncreaseCriteria', ], 'members' => [ 'baseRatePerMinute' => [ 'shape' => 'AwsJobRolloutRatePerMinute', ], 'incrementFactor' => [ 'shape' => 'AwsJobRolloutIncrementFactor', ], 'rateIncreaseCriteria' => [ 'shape' => 'AwsJobRateIncreaseCriteria', ], ], ], 'AwsJobPresignedUrlConfig' => [ 'type' => 'structure', 'members' => [ 'expiresInSec' => [ 'shape' => 'ExpiresInSeconds', ], ], ], 'AwsJobRateIncreaseCriteria' => [ 'type' => 'structure', 'members' => [ 'numberOfNotifiedThings' => [ 'shape' => 'AwsJobRateIncreaseCriteriaNumberOfThings', ], 'numberOfSucceededThings' => [ 'shape' => 'AwsJobRateIncreaseCriteriaNumberOfThings', ], ], ], 'AwsJobRateIncreaseCriteriaNumberOfThings' => [ 'type' => 'integer', 'min' => 1, ], 'AwsJobRolloutIncrementFactor' => [ 'type' => 'double', ], 'AwsJobRolloutRatePerMinute' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'AwsJobTimeoutConfig' => [ 'type' => 'structure', 'members' => [ 'inProgressTimeoutInMinutes' => [ 'shape' => 'AwsJobTimeoutInProgressTimeoutInMinutes', ], ], ], 'AwsJobTimeoutInProgressTimeoutInMinutes' => [ 'type' => 'long', ], 'BatchMode' => [ 'type' => 'boolean', ], 'Behavior' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'BehaviorName', ], 'metric' => [ 'shape' => 'BehaviorMetric', ], 'metricDimension' => [ 'shape' => 'MetricDimension', ], 'criteria' => [ 'shape' => 'BehaviorCriteria', ], 'suppressAlerts' => [ 'shape' => 'SuppressAlerts', ], 'exportMetric' => [ 'shape' => 'ExportMetric', ], ], ], 'BehaviorCriteria' => [ 'type' => 'structure', 'members' => [ 'comparisonOperator' => [ 'shape' => 'ComparisonOperator', ], 'value' => [ 'shape' => 'MetricValue', ], 'durationSeconds' => [ 'shape' => 'DurationSeconds', ], 'consecutiveDatapointsToAlarm' => [ 'shape' => 'ConsecutiveDatapointsToAlarm', ], 'consecutiveDatapointsToClear' => [ 'shape' => 'ConsecutiveDatapointsToClear', ], 'statisticalThreshold' => [ 'shape' => 'StatisticalThreshold', ], 'mlDetectionConfig' => [ 'shape' => 'MachineLearningDetectionConfig', ], ], ], 'BehaviorCriteriaType' => [ 'type' => 'string', 'enum' => [ 'STATIC', 'STATISTICAL', 'MACHINE_LEARNING', ], ], 'BehaviorMetric' => [ 'type' => 'string', ], 'BehaviorModelTrainingSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'BehaviorModelTrainingSummary', ], ], 'BehaviorModelTrainingSummary' => [ 'type' => 'structure', 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', ], 'behaviorName' => [ 'shape' => 'BehaviorName', ], 'trainingDataCollectionStartDate' => [ 'shape' => 'Timestamp', ], 'modelStatus' => [ 'shape' => 'ModelStatus', ], 'datapointsCollectionPercentage' => [ 'shape' => 'DataCollectionPercentage', ], 'lastModelRefreshDate' => [ 'shape' => 'Timestamp', ], ], ], 'BehaviorName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'Behaviors' => [ 'type' => 'list', 'member' => [ 'shape' => 'Behavior', ], 'max' => 100, ], 'BillingGroupArn' => [ 'type' => 'string', ], 'BillingGroupDescription' => [ 'type' => 'string', 'max' => 2028, 'pattern' => '[\\p{Graph}\\x20]*', ], 'BillingGroupId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9\\-]+', ], 'BillingGroupMetadata' => [ 'type' => 'structure', 'members' => [ 'creationDate' => [ 'shape' => 'CreationDate', ], ], ], 'BillingGroupName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'BillingGroupNameAndArnList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GroupNameAndArn', ], ], 'BillingGroupProperties' => [ 'type' => 'structure', 'members' => [ 'billingGroupDescription' => [ 'shape' => 'BillingGroupDescription', ], ], ], 'Boolean' => [ 'type' => 'boolean', ], 'BooleanKey' => [ 'type' => 'boolean', ], 'BooleanWrapperObject' => [ 'type' => 'boolean', ], 'Bucket' => [ 'type' => 'structure', 'members' => [ 'keyValue' => [ 'shape' => 'BucketKeyValue', ], 'count' => [ 'shape' => 'Count', ], ], ], 'BucketKeyValue' => [ 'type' => 'string', ], 'BucketName' => [ 'type' => 'string', ], 'Buckets' => [ 'type' => 'list', 'member' => [ 'shape' => 'Bucket', ], ], 'BucketsAggregationType' => [ 'type' => 'structure', 'members' => [ 'termsAggregation' => [ 'shape' => 'TermsAggregation', ], ], ], 'CACertificate' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'status' => [ 'shape' => 'CACertificateStatus', ], 'creationDate' => [ 'shape' => 'DateType', ], ], ], 'CACertificateDescription' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'status' => [ 'shape' => 'CACertificateStatus', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'ownedBy' => [ 'shape' => 'AwsAccountId', ], 'creationDate' => [ 'shape' => 'DateType', ], 'autoRegistrationStatus' => [ 'shape' => 'AutoRegistrationStatus', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'customerVersion' => [ 'shape' => 'CustomerVersion', ], 'generationId' => [ 'shape' => 'GenerationId', ], 'validity' => [ 'shape' => 'CertificateValidity', ], 'certificateMode' => [ 'shape' => 'CertificateMode', ], ], ], 'CACertificateStatus' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'INACTIVE', ], ], 'CACertificateUpdateAction' => [ 'type' => 'string', 'enum' => [ 'DEACTIVATE', ], ], 'CACertificates' => [ 'type' => 'list', 'member' => [ 'shape' => 'CACertificate', ], ], 'CancelAuditMitigationActionsTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', ], 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', 'location' => 'uri', 'locationName' => 'taskId', ], ], ], 'CancelAuditMitigationActionsTaskResponse' => [ 'type' => 'structure', 'members' => [], ], 'CancelAuditTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', ], 'members' => [ 'taskId' => [ 'shape' => 'AuditTaskId', 'location' => 'uri', 'locationName' => 'taskId', ], ], ], 'CancelAuditTaskResponse' => [ 'type' => 'structure', 'members' => [], ], 'CancelCertificateTransferRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], ], ], 'CancelDetectMitigationActionsTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', ], 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', 'location' => 'uri', 'locationName' => 'taskId', ], ], ], 'CancelDetectMitigationActionsTaskResponse' => [ 'type' => 'structure', 'members' => [], ], 'CancelJobExecutionRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', 'thingName', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'force' => [ 'shape' => 'ForceFlag', 'location' => 'querystring', 'locationName' => 'force', ], 'expectedVersion' => [ 'shape' => 'ExpectedVersion', ], 'statusDetails' => [ 'shape' => 'DetailsMap', ], ], ], 'CancelJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'reasonCode' => [ 'shape' => 'ReasonCode', ], 'comment' => [ 'shape' => 'Comment', ], 'force' => [ 'shape' => 'ForceFlag', 'location' => 'querystring', 'locationName' => 'force', ], ], ], 'CancelJobResponse' => [ 'type' => 'structure', 'members' => [ 'jobArn' => [ 'shape' => 'JobArn', ], 'jobId' => [ 'shape' => 'JobId', ], 'description' => [ 'shape' => 'JobDescription', ], ], ], 'CanceledChecksCount' => [ 'type' => 'integer', ], 'CanceledFindingsCount' => [ 'type' => 'long', ], 'CanceledThings' => [ 'type' => 'integer', ], 'CannedAccessControlList' => [ 'type' => 'string', 'enum' => [ 'private', 'public-read', 'public-read-write', 'aws-exec-read', 'authenticated-read', 'bucket-owner-read', 'bucket-owner-full-control', 'log-delivery-write', ], ], 'Certificate' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'status' => [ 'shape' => 'CertificateStatus', ], 'certificateMode' => [ 'shape' => 'CertificateMode', ], 'creationDate' => [ 'shape' => 'DateType', ], ], ], 'CertificateArn' => [ 'type' => 'string', ], 'CertificateConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'CertificateDescription' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'caCertificateId' => [ 'shape' => 'CertificateId', ], 'status' => [ 'shape' => 'CertificateStatus', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'ownedBy' => [ 'shape' => 'AwsAccountId', ], 'previousOwnedBy' => [ 'shape' => 'AwsAccountId', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'customerVersion' => [ 'shape' => 'CustomerVersion', ], 'transferData' => [ 'shape' => 'TransferData', ], 'generationId' => [ 'shape' => 'GenerationId', ], 'validity' => [ 'shape' => 'CertificateValidity', ], 'certificateMode' => [ 'shape' => 'CertificateMode', ], ], ], 'CertificateId' => [ 'type' => 'string', 'max' => 64, 'min' => 64, 'pattern' => '(0x)?[a-fA-F0-9]+', ], 'CertificateMode' => [ 'type' => 'string', 'enum' => [ 'DEFAULT', 'SNI_ONLY', ], ], 'CertificateName' => [ 'type' => 'string', ], 'CertificatePathOnDevice' => [ 'type' => 'string', ], 'CertificatePem' => [ 'type' => 'string', 'max' => 65536, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'CertificateProviderAccountDefaultForOperations' => [ 'type' => 'list', 'member' => [ 'shape' => 'CertificateProviderOperation', ], 'max' => 1, 'min' => 1, ], 'CertificateProviderArn' => [ 'type' => 'string', 'max' => 2048, ], 'CertificateProviderFunctionArn' => [ 'type' => 'string', 'max' => 2048, 'pattern' => '[\\s\\S]*', ], 'CertificateProviderName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w=,@-]+', ], 'CertificateProviderOperation' => [ 'type' => 'string', 'enum' => [ 'CreateCertificateFromCsr', ], ], 'CertificateProviderSummary' => [ 'type' => 'structure', 'members' => [ 'certificateProviderName' => [ 'shape' => 'CertificateProviderName', ], 'certificateProviderArn' => [ 'shape' => 'CertificateProviderArn', ], ], ], 'CertificateProviders' => [ 'type' => 'list', 'member' => [ 'shape' => 'CertificateProviderSummary', ], ], 'CertificateSigningRequest' => [ 'type' => 'string', 'max' => 4096, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'CertificateStateException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 406, ], 'exception' => true, ], 'CertificateStatus' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'INACTIVE', 'REVOKED', 'PENDING_TRANSFER', 'REGISTER_INACTIVE', 'PENDING_ACTIVATION', ], ], 'CertificateValidationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'CertificateValidity' => [ 'type' => 'structure', 'members' => [ 'notBefore' => [ 'shape' => 'DateType', ], 'notAfter' => [ 'shape' => 'DateType', ], ], ], 'Certificates' => [ 'type' => 'list', 'member' => [ 'shape' => 'Certificate', ], ], 'ChannelName' => [ 'type' => 'string', ], 'CheckCompliant' => [ 'type' => 'boolean', ], 'Cidr' => [ 'type' => 'string', 'max' => 43, 'min' => 2, 'pattern' => '[a-fA-F0-9:\\.\\/]+', ], 'Cidrs' => [ 'type' => 'list', 'member' => [ 'shape' => 'Cidr', ], ], 'ClearDefaultAuthorizerRequest' => [ 'type' => 'structure', 'members' => [], ], 'ClearDefaultAuthorizerResponse' => [ 'type' => 'structure', 'members' => [], ], 'ClientId' => [ 'type' => 'string', ], 'ClientProperties' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'ClientRequestToken' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '^[a-zA-Z0-9-_]+$', ], 'ClientToken' => [ 'type' => 'string', 'max' => 64, 'min' => 36, 'pattern' => '\\S{36,64}', ], 'CloudwatchAlarmAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'alarmName', 'stateReason', 'stateValue', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'alarmName' => [ 'shape' => 'AlarmName', ], 'stateReason' => [ 'shape' => 'StateReason', ], 'stateValue' => [ 'shape' => 'StateValue', ], ], ], 'CloudwatchLogsAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'logGroupName', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'logGroupName' => [ 'shape' => 'LogGroupName', ], 'batchMode' => [ 'shape' => 'BatchMode', ], ], ], 'CloudwatchMetricAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'metricNamespace', 'metricName', 'metricValue', 'metricUnit', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'metricNamespace' => [ 'shape' => 'String', ], 'metricName' => [ 'shape' => 'String', ], 'metricValue' => [ 'shape' => 'String', ], 'metricUnit' => [ 'shape' => 'String', ], 'metricTimestamp' => [ 'shape' => 'String', ], ], ], 'Code' => [ 'type' => 'string', ], 'CodeSigning' => [ 'type' => 'structure', 'members' => [ 'awsSignerJobId' => [ 'shape' => 'SigningJobId', ], 'startSigningJobParameter' => [ 'shape' => 'StartSigningJobParameter', ], 'customCodeSigning' => [ 'shape' => 'CustomCodeSigning', ], ], ], 'CodeSigningCertificateChain' => [ 'type' => 'structure', 'members' => [ 'certificateName' => [ 'shape' => 'CertificateName', ], 'inlineDocument' => [ 'shape' => 'InlineDocument', ], ], ], 'CodeSigningSignature' => [ 'type' => 'structure', 'members' => [ 'inlineDocument' => [ 'shape' => 'Signature', ], ], ], 'CognitoIdentityPoolId' => [ 'type' => 'string', ], 'Comment' => [ 'type' => 'string', 'max' => 2028, 'pattern' => '[^\\p{C}]+', ], 'ComparisonOperator' => [ 'type' => 'string', 'enum' => [ 'less-than', 'less-than-equals', 'greater-than', 'greater-than-equals', 'in-cidr-set', 'not-in-cidr-set', 'in-port-set', 'not-in-port-set', 'in-set', 'not-in-set', ], ], 'CompliantChecksCount' => [ 'type' => 'integer', ], 'ConfidenceLevel' => [ 'type' => 'string', 'enum' => [ 'LOW', 'MEDIUM', 'HIGH', ], ], 'Configuration' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Enabled', ], ], ], 'ConfirmTopicRuleDestinationRequest' => [ 'type' => 'structure', 'required' => [ 'confirmationToken', ], 'members' => [ 'confirmationToken' => [ 'shape' => 'ConfirmationToken', 'location' => 'uri', 'locationName' => 'confirmationToken', ], ], ], 'ConfirmTopicRuleDestinationResponse' => [ 'type' => 'structure', 'members' => [], ], 'ConfirmationToken' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, ], 'ConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], 'resourceId' => [ 'shape' => 'resourceId', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'ConflictingResourceUpdateException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'ConnectivityTimestamp' => [ 'type' => 'long', ], 'ConsecutiveDatapointsToAlarm' => [ 'type' => 'integer', 'max' => 10, 'min' => 1, ], 'ConsecutiveDatapointsToClear' => [ 'type' => 'integer', 'max' => 10, 'min' => 1, ], 'ContentType' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, ], 'CorrelationData' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, ], 'Count' => [ 'type' => 'integer', ], 'CreateAuditSuppressionRequest' => [ 'type' => 'structure', 'required' => [ 'checkName', 'resourceIdentifier', 'clientRequestToken', ], 'members' => [ 'checkName' => [ 'shape' => 'AuditCheckName', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], 'expirationDate' => [ 'shape' => 'Timestamp', ], 'suppressIndefinitely' => [ 'shape' => 'SuppressIndefinitely', ], 'description' => [ 'shape' => 'AuditDescription', ], 'clientRequestToken' => [ 'shape' => 'ClientRequestToken', 'idempotencyToken' => true, ], ], ], 'CreateAuditSuppressionResponse' => [ 'type' => 'structure', 'members' => [], ], 'CreateAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'authorizerName', 'authorizerFunctionArn', ], 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', 'location' => 'uri', 'locationName' => 'authorizerName', ], 'authorizerFunctionArn' => [ 'shape' => 'AuthorizerFunctionArn', ], 'tokenKeyName' => [ 'shape' => 'TokenKeyName', ], 'tokenSigningPublicKeys' => [ 'shape' => 'PublicKeyMap', ], 'status' => [ 'shape' => 'AuthorizerStatus', ], 'tags' => [ 'shape' => 'TagList', ], 'signingDisabled' => [ 'shape' => 'BooleanKey', ], 'enableCachingForHttp' => [ 'shape' => 'EnableCachingForHttp', ], ], ], 'CreateAuthorizerResponse' => [ 'type' => 'structure', 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', ], 'authorizerArn' => [ 'shape' => 'AuthorizerArn', ], ], ], 'CreateBillingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'billingGroupName', ], 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', 'location' => 'uri', 'locationName' => 'billingGroupName', ], 'billingGroupProperties' => [ 'shape' => 'BillingGroupProperties', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateBillingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', ], 'billingGroupArn' => [ 'shape' => 'BillingGroupArn', ], 'billingGroupId' => [ 'shape' => 'BillingGroupId', ], ], ], 'CreateCertificateFromCsrRequest' => [ 'type' => 'structure', 'required' => [ 'certificateSigningRequest', ], 'members' => [ 'certificateSigningRequest' => [ 'shape' => 'CertificateSigningRequest', ], 'setAsActive' => [ 'shape' => 'SetAsActive', 'location' => 'querystring', 'locationName' => 'setAsActive', ], ], ], 'CreateCertificateFromCsrResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], ], ], 'CreateCertificateProviderRequest' => [ 'type' => 'structure', 'required' => [ 'certificateProviderName', 'lambdaFunctionArn', 'accountDefaultForOperations', ], 'members' => [ 'certificateProviderName' => [ 'shape' => 'CertificateProviderName', 'location' => 'uri', 'locationName' => 'certificateProviderName', ], 'lambdaFunctionArn' => [ 'shape' => 'CertificateProviderFunctionArn', ], 'accountDefaultForOperations' => [ 'shape' => 'CertificateProviderAccountDefaultForOperations', ], 'clientToken' => [ 'shape' => 'ClientToken', 'idempotencyToken' => true, ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateCertificateProviderResponse' => [ 'type' => 'structure', 'members' => [ 'certificateProviderName' => [ 'shape' => 'CertificateProviderName', ], 'certificateProviderArn' => [ 'shape' => 'CertificateProviderArn', ], ], ], 'CreateCustomMetricRequest' => [ 'type' => 'structure', 'required' => [ 'metricName', 'metricType', 'clientRequestToken', ], 'members' => [ 'metricName' => [ 'shape' => 'MetricName', 'location' => 'uri', 'locationName' => 'metricName', ], 'displayName' => [ 'shape' => 'CustomMetricDisplayName', ], 'metricType' => [ 'shape' => 'CustomMetricType', ], 'tags' => [ 'shape' => 'TagList', ], 'clientRequestToken' => [ 'shape' => 'ClientRequestToken', 'idempotencyToken' => true, ], ], ], 'CreateCustomMetricResponse' => [ 'type' => 'structure', 'members' => [ 'metricName' => [ 'shape' => 'MetricName', ], 'metricArn' => [ 'shape' => 'CustomMetricArn', ], ], ], 'CreateDimensionRequest' => [ 'type' => 'structure', 'required' => [ 'name', 'type', 'stringValues', 'clientRequestToken', ], 'members' => [ 'name' => [ 'shape' => 'DimensionName', 'location' => 'uri', 'locationName' => 'name', ], 'type' => [ 'shape' => 'DimensionType', ], 'stringValues' => [ 'shape' => 'DimensionStringValues', ], 'tags' => [ 'shape' => 'TagList', ], 'clientRequestToken' => [ 'shape' => 'ClientRequestToken', 'idempotencyToken' => true, ], ], ], 'CreateDimensionResponse' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'DimensionName', ], 'arn' => [ 'shape' => 'DimensionArn', ], ], ], 'CreateDomainConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'domainConfigurationName', ], 'members' => [ 'domainConfigurationName' => [ 'shape' => 'DomainConfigurationName', 'location' => 'uri', 'locationName' => 'domainConfigurationName', ], 'domainName' => [ 'shape' => 'DomainName', ], 'serverCertificateArns' => [ 'shape' => 'ServerCertificateArns', ], 'validationCertificateArn' => [ 'shape' => 'AcmCertificateArn', ], 'authorizerConfig' => [ 'shape' => 'AuthorizerConfig', ], 'serviceType' => [ 'shape' => 'ServiceType', ], 'tags' => [ 'shape' => 'TagList', ], 'tlsConfig' => [ 'shape' => 'TlsConfig', ], 'serverCertificateConfig' => [ 'shape' => 'ServerCertificateConfig', ], ], ], 'CreateDomainConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'domainConfigurationName' => [ 'shape' => 'DomainConfigurationName', ], 'domainConfigurationArn' => [ 'shape' => 'DomainConfigurationArn', ], ], ], 'CreateDynamicThingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'thingGroupName', 'queryString', ], 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'uri', 'locationName' => 'thingGroupName', ], 'thingGroupProperties' => [ 'shape' => 'ThingGroupProperties', ], 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDynamicThingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', ], 'thingGroupArn' => [ 'shape' => 'ThingGroupArn', ], 'thingGroupId' => [ 'shape' => 'ThingGroupId', ], 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], ], ], 'CreateFleetMetricRequest' => [ 'type' => 'structure', 'required' => [ 'metricName', 'queryString', 'aggregationType', 'period', 'aggregationField', ], 'members' => [ 'metricName' => [ 'shape' => 'FleetMetricName', 'location' => 'uri', 'locationName' => 'metricName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'aggregationType' => [ 'shape' => 'AggregationType', ], 'period' => [ 'shape' => 'FleetMetricPeriod', ], 'aggregationField' => [ 'shape' => 'AggregationField', ], 'description' => [ 'shape' => 'FleetMetricDescription', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], 'indexName' => [ 'shape' => 'IndexName', ], 'unit' => [ 'shape' => 'FleetMetricUnit', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateFleetMetricResponse' => [ 'type' => 'structure', 'members' => [ 'metricName' => [ 'shape' => 'FleetMetricName', ], 'metricArn' => [ 'shape' => 'FleetMetricArn', ], ], ], 'CreateJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', 'targets', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'targets' => [ 'shape' => 'JobTargets', ], 'documentSource' => [ 'shape' => 'JobDocumentSource', ], 'document' => [ 'shape' => 'JobDocument', ], 'description' => [ 'shape' => 'JobDescription', ], 'presignedUrlConfig' => [ 'shape' => 'PresignedUrlConfig', ], 'targetSelection' => [ 'shape' => 'TargetSelection', ], 'jobExecutionsRolloutConfig' => [ 'shape' => 'JobExecutionsRolloutConfig', ], 'abortConfig' => [ 'shape' => 'AbortConfig', ], 'timeoutConfig' => [ 'shape' => 'TimeoutConfig', ], 'tags' => [ 'shape' => 'TagList', ], 'namespaceId' => [ 'shape' => 'NamespaceId', ], 'jobTemplateArn' => [ 'shape' => 'JobTemplateArn', ], 'jobExecutionsRetryConfig' => [ 'shape' => 'JobExecutionsRetryConfig', ], 'documentParameters' => [ 'shape' => 'ParameterMap', ], 'schedulingConfig' => [ 'shape' => 'SchedulingConfig', ], 'destinationPackageVersions' => [ 'shape' => 'DestinationPackageVersions', ], ], ], 'CreateJobResponse' => [ 'type' => 'structure', 'members' => [ 'jobArn' => [ 'shape' => 'JobArn', ], 'jobId' => [ 'shape' => 'JobId', ], 'description' => [ 'shape' => 'JobDescription', ], ], ], 'CreateJobTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'jobTemplateId', 'description', ], 'members' => [ 'jobTemplateId' => [ 'shape' => 'JobTemplateId', 'location' => 'uri', 'locationName' => 'jobTemplateId', ], 'jobArn' => [ 'shape' => 'JobArn', ], 'documentSource' => [ 'shape' => 'JobDocumentSource', ], 'document' => [ 'shape' => 'JobDocument', ], 'description' => [ 'shape' => 'JobDescription', ], 'presignedUrlConfig' => [ 'shape' => 'PresignedUrlConfig', ], 'jobExecutionsRolloutConfig' => [ 'shape' => 'JobExecutionsRolloutConfig', ], 'abortConfig' => [ 'shape' => 'AbortConfig', ], 'timeoutConfig' => [ 'shape' => 'TimeoutConfig', ], 'tags' => [ 'shape' => 'TagList', ], 'jobExecutionsRetryConfig' => [ 'shape' => 'JobExecutionsRetryConfig', ], 'maintenanceWindows' => [ 'shape' => 'MaintenanceWindows', ], 'destinationPackageVersions' => [ 'shape' => 'DestinationPackageVersions', ], ], ], 'CreateJobTemplateResponse' => [ 'type' => 'structure', 'members' => [ 'jobTemplateArn' => [ 'shape' => 'JobTemplateArn', ], 'jobTemplateId' => [ 'shape' => 'JobTemplateId', ], ], ], 'CreateKeysAndCertificateRequest' => [ 'type' => 'structure', 'members' => [ 'setAsActive' => [ 'shape' => 'SetAsActive', 'location' => 'querystring', 'locationName' => 'setAsActive', ], ], ], 'CreateKeysAndCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'keyPair' => [ 'shape' => 'KeyPair', ], ], ], 'CreateMitigationActionRequest' => [ 'type' => 'structure', 'required' => [ 'actionName', 'roleArn', 'actionParams', ], 'members' => [ 'actionName' => [ 'shape' => 'MitigationActionName', 'location' => 'uri', 'locationName' => 'actionName', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'actionParams' => [ 'shape' => 'MitigationActionParams', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateMitigationActionResponse' => [ 'type' => 'structure', 'members' => [ 'actionArn' => [ 'shape' => 'MitigationActionArn', ], 'actionId' => [ 'shape' => 'MitigationActionId', ], ], ], 'CreateOTAUpdateRequest' => [ 'type' => 'structure', 'required' => [ 'otaUpdateId', 'targets', 'files', 'roleArn', ], 'members' => [ 'otaUpdateId' => [ 'shape' => 'OTAUpdateId', 'location' => 'uri', 'locationName' => 'otaUpdateId', ], 'description' => [ 'shape' => 'OTAUpdateDescription', ], 'targets' => [ 'shape' => 'Targets', ], 'protocols' => [ 'shape' => 'Protocols', ], 'targetSelection' => [ 'shape' => 'TargetSelection', ], 'awsJobExecutionsRolloutConfig' => [ 'shape' => 'AwsJobExecutionsRolloutConfig', ], 'awsJobPresignedUrlConfig' => [ 'shape' => 'AwsJobPresignedUrlConfig', ], 'awsJobAbortConfig' => [ 'shape' => 'AwsJobAbortConfig', ], 'awsJobTimeoutConfig' => [ 'shape' => 'AwsJobTimeoutConfig', ], 'files' => [ 'shape' => 'OTAUpdateFiles', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'additionalParameters' => [ 'shape' => 'AdditionalParameterMap', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateOTAUpdateResponse' => [ 'type' => 'structure', 'members' => [ 'otaUpdateId' => [ 'shape' => 'OTAUpdateId', ], 'awsIotJobId' => [ 'shape' => 'AwsIotJobId', ], 'otaUpdateArn' => [ 'shape' => 'OTAUpdateArn', ], 'awsIotJobArn' => [ 'shape' => 'AwsIotJobArn', ], 'otaUpdateStatus' => [ 'shape' => 'OTAUpdateStatus', ], ], ], 'CreatePackageRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], 'description' => [ 'shape' => 'ResourceDescription', ], 'tags' => [ 'shape' => 'TagMap', ], 'clientToken' => [ 'shape' => 'ClientToken', 'idempotencyToken' => true, 'location' => 'querystring', 'locationName' => 'clientToken', ], ], ], 'CreatePackageResponse' => [ 'type' => 'structure', 'members' => [ 'packageName' => [ 'shape' => 'PackageName', ], 'packageArn' => [ 'shape' => 'PackageArn', ], 'description' => [ 'shape' => 'ResourceDescription', ], ], ], 'CreatePackageVersionRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', 'versionName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], 'versionName' => [ 'shape' => 'VersionName', 'location' => 'uri', 'locationName' => 'versionName', ], 'description' => [ 'shape' => 'ResourceDescription', ], 'attributes' => [ 'shape' => 'ResourceAttributes', ], 'tags' => [ 'shape' => 'TagMap', ], 'clientToken' => [ 'shape' => 'ClientToken', 'idempotencyToken' => true, 'location' => 'querystring', 'locationName' => 'clientToken', ], ], ], 'CreatePackageVersionResponse' => [ 'type' => 'structure', 'members' => [ 'packageVersionArn' => [ 'shape' => 'PackageVersionArn', ], 'packageName' => [ 'shape' => 'PackageName', ], 'versionName' => [ 'shape' => 'VersionName', ], 'description' => [ 'shape' => 'ResourceDescription', ], 'attributes' => [ 'shape' => 'ResourceAttributes', ], 'status' => [ 'shape' => 'PackageVersionStatus', ], 'errorReason' => [ 'shape' => 'PackageVersionErrorReason', ], ], ], 'CreatePolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyDocument', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreatePolicyResponse' => [ 'type' => 'structure', 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', ], 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', ], ], ], 'CreatePolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyDocument', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'setAsDefault' => [ 'shape' => 'SetAsDefault', 'location' => 'querystring', 'locationName' => 'setAsDefault', ], ], ], 'CreatePolicyVersionResponse' => [ 'type' => 'structure', 'members' => [ 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], ], ], 'CreateProvisioningClaimRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], ], ], 'CreateProvisioningClaimResponse' => [ 'type' => 'structure', 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'keyPair' => [ 'shape' => 'KeyPair', ], 'expiration' => [ 'shape' => 'DateType', ], ], ], 'CreateProvisioningTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', 'templateBody', 'provisioningRoleArn', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', ], 'description' => [ 'shape' => 'TemplateDescription', ], 'templateBody' => [ 'shape' => 'TemplateBody', ], 'enabled' => [ 'shape' => 'Enabled', ], 'provisioningRoleArn' => [ 'shape' => 'RoleArn', ], 'preProvisioningHook' => [ 'shape' => 'ProvisioningHook', ], 'tags' => [ 'shape' => 'TagList', ], 'type' => [ 'shape' => 'TemplateType', ], ], ], 'CreateProvisioningTemplateResponse' => [ 'type' => 'structure', 'members' => [ 'templateArn' => [ 'shape' => 'TemplateArn', ], 'templateName' => [ 'shape' => 'TemplateName', ], 'defaultVersionId' => [ 'shape' => 'TemplateVersionId', ], ], ], 'CreateProvisioningTemplateVersionRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', 'templateBody', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], 'templateBody' => [ 'shape' => 'TemplateBody', ], 'setAsDefault' => [ 'shape' => 'SetAsDefault', 'location' => 'querystring', 'locationName' => 'setAsDefault', ], ], ], 'CreateProvisioningTemplateVersionResponse' => [ 'type' => 'structure', 'members' => [ 'templateArn' => [ 'shape' => 'TemplateArn', ], 'templateName' => [ 'shape' => 'TemplateName', ], 'versionId' => [ 'shape' => 'TemplateVersionId', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], ], ], 'CreateRoleAliasRequest' => [ 'type' => 'structure', 'required' => [ 'roleAlias', 'roleArn', ], 'members' => [ 'roleAlias' => [ 'shape' => 'RoleAlias', 'location' => 'uri', 'locationName' => 'roleAlias', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'credentialDurationSeconds' => [ 'shape' => 'CredentialDurationSeconds', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateRoleAliasResponse' => [ 'type' => 'structure', 'members' => [ 'roleAlias' => [ 'shape' => 'RoleAlias', ], 'roleAliasArn' => [ 'shape' => 'RoleAliasArn', ], ], ], 'CreateScheduledAuditRequest' => [ 'type' => 'structure', 'required' => [ 'frequency', 'targetCheckNames', 'scheduledAuditName', ], 'members' => [ 'frequency' => [ 'shape' => 'AuditFrequency', ], 'dayOfMonth' => [ 'shape' => 'DayOfMonth', ], 'dayOfWeek' => [ 'shape' => 'DayOfWeek', ], 'targetCheckNames' => [ 'shape' => 'TargetAuditCheckNames', ], 'scheduledAuditName' => [ 'shape' => 'ScheduledAuditName', 'location' => 'uri', 'locationName' => 'scheduledAuditName', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateScheduledAuditResponse' => [ 'type' => 'structure', 'members' => [ 'scheduledAuditArn' => [ 'shape' => 'ScheduledAuditArn', ], ], ], 'CreateSecurityProfileRequest' => [ 'type' => 'structure', 'required' => [ 'securityProfileName', ], 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'uri', 'locationName' => 'securityProfileName', ], 'securityProfileDescription' => [ 'shape' => 'SecurityProfileDescription', ], 'behaviors' => [ 'shape' => 'Behaviors', ], 'alertTargets' => [ 'shape' => 'AlertTargets', ], 'additionalMetricsToRetain' => [ 'shape' => 'AdditionalMetricsToRetainList', 'deprecated' => true, 'deprecatedMessage' => 'Use additionalMetricsToRetainV2.', ], 'additionalMetricsToRetainV2' => [ 'shape' => 'AdditionalMetricsToRetainV2List', ], 'tags' => [ 'shape' => 'TagList', ], 'metricsExportConfig' => [ 'shape' => 'MetricsExportConfig', ], ], ], 'CreateSecurityProfileResponse' => [ 'type' => 'structure', 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', ], 'securityProfileArn' => [ 'shape' => 'SecurityProfileArn', ], ], ], 'CreateStreamRequest' => [ 'type' => 'structure', 'required' => [ 'streamId', 'files', 'roleArn', ], 'members' => [ 'streamId' => [ 'shape' => 'StreamId', 'location' => 'uri', 'locationName' => 'streamId', ], 'description' => [ 'shape' => 'StreamDescription', ], 'files' => [ 'shape' => 'StreamFiles', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateStreamResponse' => [ 'type' => 'structure', 'members' => [ 'streamId' => [ 'shape' => 'StreamId', ], 'streamArn' => [ 'shape' => 'StreamArn', ], 'description' => [ 'shape' => 'StreamDescription', ], 'streamVersion' => [ 'shape' => 'StreamVersion', ], ], ], 'CreateThingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'thingGroupName', ], 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'uri', 'locationName' => 'thingGroupName', ], 'parentGroupName' => [ 'shape' => 'ThingGroupName', ], 'thingGroupProperties' => [ 'shape' => 'ThingGroupProperties', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateThingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', ], 'thingGroupArn' => [ 'shape' => 'ThingGroupArn', ], 'thingGroupId' => [ 'shape' => 'ThingGroupId', ], ], ], 'CreateThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'attributePayload' => [ 'shape' => 'AttributePayload', ], 'billingGroupName' => [ 'shape' => 'BillingGroupName', ], ], ], 'CreateThingResponse' => [ 'type' => 'structure', 'members' => [ 'thingName' => [ 'shape' => 'ThingName', ], 'thingArn' => [ 'shape' => 'ThingArn', ], 'thingId' => [ 'shape' => 'ThingId', ], ], ], 'CreateThingTypeRequest' => [ 'type' => 'structure', 'required' => [ 'thingTypeName', ], 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'uri', 'locationName' => 'thingTypeName', ], 'thingTypeProperties' => [ 'shape' => 'ThingTypeProperties', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'CreateThingTypeResponse' => [ 'type' => 'structure', 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'thingTypeArn' => [ 'shape' => 'ThingTypeArn', ], 'thingTypeId' => [ 'shape' => 'ThingTypeId', ], ], ], 'CreateTopicRuleDestinationRequest' => [ 'type' => 'structure', 'required' => [ 'destinationConfiguration', ], 'members' => [ 'destinationConfiguration' => [ 'shape' => 'TopicRuleDestinationConfiguration', ], ], ], 'CreateTopicRuleDestinationResponse' => [ 'type' => 'structure', 'members' => [ 'topicRuleDestination' => [ 'shape' => 'TopicRuleDestination', ], ], ], 'CreateTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', 'topicRulePayload', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], 'topicRulePayload' => [ 'shape' => 'TopicRulePayload', ], 'tags' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'x-amz-tagging', ], ], 'payload' => 'topicRulePayload', ], 'CreatedAtDate' => [ 'type' => 'timestamp', ], 'CreationDate' => [ 'type' => 'timestamp', ], 'CredentialDurationSeconds' => [ 'type' => 'integer', 'max' => 43200, 'min' => 900, ], 'CronExpression' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'CustomCodeSigning' => [ 'type' => 'structure', 'members' => [ 'signature' => [ 'shape' => 'CodeSigningSignature', ], 'certificateChain' => [ 'shape' => 'CodeSigningCertificateChain', ], 'hashAlgorithm' => [ 'shape' => 'HashAlgorithm', ], 'signatureAlgorithm' => [ 'shape' => 'SignatureAlgorithm', ], ], ], 'CustomMetricArn' => [ 'type' => 'string', ], 'CustomMetricDisplayName' => [ 'type' => 'string', 'max' => 128, 'pattern' => '[\\p{Graph}\\x20]*', ], 'CustomMetricType' => [ 'type' => 'string', 'enum' => [ 'string-list', 'ip-address-list', 'number-list', 'number', ], ], 'CustomerVersion' => [ 'type' => 'integer', 'min' => 1, ], 'DataCollectionPercentage' => [ 'type' => 'double', 'max' => 100, 'min' => 0, ], 'DateType' => [ 'type' => 'timestamp', ], 'DayOfMonth' => [ 'type' => 'string', 'pattern' => '^([1-9]|[12][0-9]|3[01])$|^LAST$', ], 'DayOfWeek' => [ 'type' => 'string', 'enum' => [ 'SUN', 'MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT', ], ], 'DeleteAccountAuditConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'deleteScheduledAudits' => [ 'shape' => 'DeleteScheduledAudits', 'location' => 'querystring', 'locationName' => 'deleteScheduledAudits', ], ], ], 'DeleteAccountAuditConfigurationResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteAdditionalMetricsToRetain' => [ 'type' => 'boolean', ], 'DeleteAlertTargets' => [ 'type' => 'boolean', ], 'DeleteAuditSuppressionRequest' => [ 'type' => 'structure', 'required' => [ 'checkName', 'resourceIdentifier', ], 'members' => [ 'checkName' => [ 'shape' => 'AuditCheckName', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], ], ], 'DeleteAuditSuppressionResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'authorizerName', ], 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', 'location' => 'uri', 'locationName' => 'authorizerName', ], ], ], 'DeleteAuthorizerResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteBehaviors' => [ 'type' => 'boolean', ], 'DeleteBillingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'billingGroupName', ], 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', 'location' => 'uri', 'locationName' => 'billingGroupName', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', 'location' => 'querystring', 'locationName' => 'expectedVersion', ], ], ], 'DeleteBillingGroupResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteCACertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'caCertificateId', ], ], ], 'DeleteCACertificateResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteCertificateProviderRequest' => [ 'type' => 'structure', 'required' => [ 'certificateProviderName', ], 'members' => [ 'certificateProviderName' => [ 'shape' => 'CertificateProviderName', 'location' => 'uri', 'locationName' => 'certificateProviderName', ], ], ], 'DeleteCertificateProviderResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'forceDelete' => [ 'shape' => 'ForceDelete', 'location' => 'querystring', 'locationName' => 'forceDelete', ], ], ], 'DeleteConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'DeleteCustomMetricRequest' => [ 'type' => 'structure', 'required' => [ 'metricName', ], 'members' => [ 'metricName' => [ 'shape' => 'MetricName', 'location' => 'uri', 'locationName' => 'metricName', ], ], ], 'DeleteCustomMetricResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteDimensionRequest' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'DimensionName', 'location' => 'uri', 'locationName' => 'name', ], ], ], 'DeleteDimensionResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteDomainConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'domainConfigurationName', ], 'members' => [ 'domainConfigurationName' => [ 'shape' => 'DomainConfigurationName', 'location' => 'uri', 'locationName' => 'domainConfigurationName', ], ], ], 'DeleteDomainConfigurationResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteDynamicThingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'thingGroupName', ], 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'uri', 'locationName' => 'thingGroupName', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', 'location' => 'querystring', 'locationName' => 'expectedVersion', ], ], ], 'DeleteDynamicThingGroupResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteFleetMetricRequest' => [ 'type' => 'structure', 'required' => [ 'metricName', ], 'members' => [ 'metricName' => [ 'shape' => 'FleetMetricName', 'location' => 'uri', 'locationName' => 'metricName', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', 'location' => 'querystring', 'locationName' => 'expectedVersion', ], ], ], 'DeleteJobExecutionRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', 'thingName', 'executionNumber', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'executionNumber' => [ 'shape' => 'ExecutionNumber', 'location' => 'uri', 'locationName' => 'executionNumber', ], 'force' => [ 'shape' => 'ForceFlag', 'location' => 'querystring', 'locationName' => 'force', ], 'namespaceId' => [ 'shape' => 'NamespaceId', 'location' => 'querystring', 'locationName' => 'namespaceId', ], ], ], 'DeleteJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'force' => [ 'shape' => 'ForceFlag', 'location' => 'querystring', 'locationName' => 'force', ], 'namespaceId' => [ 'shape' => 'NamespaceId', 'location' => 'querystring', 'locationName' => 'namespaceId', ], ], ], 'DeleteJobTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'jobTemplateId', ], 'members' => [ 'jobTemplateId' => [ 'shape' => 'JobTemplateId', 'location' => 'uri', 'locationName' => 'jobTemplateId', ], ], ], 'DeleteMetricsExportConfig' => [ 'type' => 'boolean', ], 'DeleteMitigationActionRequest' => [ 'type' => 'structure', 'required' => [ 'actionName', ], 'members' => [ 'actionName' => [ 'shape' => 'MitigationActionName', 'location' => 'uri', 'locationName' => 'actionName', ], ], ], 'DeleteMitigationActionResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteOTAUpdateRequest' => [ 'type' => 'structure', 'required' => [ 'otaUpdateId', ], 'members' => [ 'otaUpdateId' => [ 'shape' => 'OTAUpdateId', 'location' => 'uri', 'locationName' => 'otaUpdateId', ], 'deleteStream' => [ 'shape' => 'DeleteStream', 'location' => 'querystring', 'locationName' => 'deleteStream', ], 'forceDeleteAWSJob' => [ 'shape' => 'ForceDeleteAWSJob', 'location' => 'querystring', 'locationName' => 'forceDeleteAWSJob', ], ], ], 'DeleteOTAUpdateResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeletePackageRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], 'clientToken' => [ 'shape' => 'ClientToken', 'idempotencyToken' => true, 'location' => 'querystring', 'locationName' => 'clientToken', ], ], ], 'DeletePackageResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeletePackageVersionRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', 'versionName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], 'versionName' => [ 'shape' => 'VersionName', 'location' => 'uri', 'locationName' => 'versionName', ], 'clientToken' => [ 'shape' => 'ClientToken', 'idempotencyToken' => true, 'location' => 'querystring', 'locationName' => 'clientToken', ], ], ], 'DeletePackageVersionResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeletePolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], ], ], 'DeletePolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyVersionId', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', 'location' => 'uri', 'locationName' => 'policyVersionId', ], ], ], 'DeleteProvisioningTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], ], ], 'DeleteProvisioningTemplateResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteProvisioningTemplateVersionRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', 'versionId', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], 'versionId' => [ 'shape' => 'TemplateVersionId', 'location' => 'uri', 'locationName' => 'versionId', ], ], ], 'DeleteProvisioningTemplateVersionResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteRegistrationCodeRequest' => [ 'type' => 'structure', 'members' => [], ], 'DeleteRegistrationCodeResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteRoleAliasRequest' => [ 'type' => 'structure', 'required' => [ 'roleAlias', ], 'members' => [ 'roleAlias' => [ 'shape' => 'RoleAlias', 'location' => 'uri', 'locationName' => 'roleAlias', ], ], ], 'DeleteRoleAliasResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteScheduledAuditRequest' => [ 'type' => 'structure', 'required' => [ 'scheduledAuditName', ], 'members' => [ 'scheduledAuditName' => [ 'shape' => 'ScheduledAuditName', 'location' => 'uri', 'locationName' => 'scheduledAuditName', ], ], ], 'DeleteScheduledAuditResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteScheduledAudits' => [ 'type' => 'boolean', ], 'DeleteSecurityProfileRequest' => [ 'type' => 'structure', 'required' => [ 'securityProfileName', ], 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'uri', 'locationName' => 'securityProfileName', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', 'location' => 'querystring', 'locationName' => 'expectedVersion', ], ], ], 'DeleteSecurityProfileResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteStream' => [ 'type' => 'boolean', ], 'DeleteStreamRequest' => [ 'type' => 'structure', 'required' => [ 'streamId', ], 'members' => [ 'streamId' => [ 'shape' => 'StreamId', 'location' => 'uri', 'locationName' => 'streamId', ], ], ], 'DeleteStreamResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteThingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'thingGroupName', ], 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'uri', 'locationName' => 'thingGroupName', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', 'location' => 'querystring', 'locationName' => 'expectedVersion', ], ], ], 'DeleteThingGroupResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', 'location' => 'querystring', 'locationName' => 'expectedVersion', ], ], ], 'DeleteThingResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteThingTypeRequest' => [ 'type' => 'structure', 'required' => [ 'thingTypeName', ], 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'uri', 'locationName' => 'thingTypeName', ], ], ], 'DeleteThingTypeResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteTopicRuleDestinationRequest' => [ 'type' => 'structure', 'required' => [ 'arn', ], 'members' => [ 'arn' => [ 'shape' => 'AwsArn', 'location' => 'uri', 'locationName' => 'arn', ], ], ], 'DeleteTopicRuleDestinationResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], ], ], 'DeleteV2LoggingLevelRequest' => [ 'type' => 'structure', 'required' => [ 'targetType', 'targetName', ], 'members' => [ 'targetType' => [ 'shape' => 'LogTargetType', 'location' => 'querystring', 'locationName' => 'targetType', ], 'targetName' => [ 'shape' => 'LogTargetName', 'location' => 'querystring', 'locationName' => 'targetName', ], ], ], 'DeliveryStreamName' => [ 'type' => 'string', ], 'Denied' => [ 'type' => 'structure', 'members' => [ 'implicitDeny' => [ 'shape' => 'ImplicitDeny', ], 'explicitDeny' => [ 'shape' => 'ExplicitDeny', ], ], ], 'DeprecateThingTypeRequest' => [ 'type' => 'structure', 'required' => [ 'thingTypeName', ], 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'uri', 'locationName' => 'thingTypeName', ], 'undoDeprecate' => [ 'shape' => 'UndoDeprecate', ], ], ], 'DeprecateThingTypeResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeprecationDate' => [ 'type' => 'timestamp', ], 'DescribeAccountAuditConfigurationRequest' => [ 'type' => 'structure', 'members' => [], ], 'DescribeAccountAuditConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'roleArn' => [ 'shape' => 'RoleArn', ], 'auditNotificationTargetConfigurations' => [ 'shape' => 'AuditNotificationTargetConfigurations', ], 'auditCheckConfigurations' => [ 'shape' => 'AuditCheckConfigurations', ], ], ], 'DescribeAuditFindingRequest' => [ 'type' => 'structure', 'required' => [ 'findingId', ], 'members' => [ 'findingId' => [ 'shape' => 'FindingId', 'location' => 'uri', 'locationName' => 'findingId', ], ], ], 'DescribeAuditFindingResponse' => [ 'type' => 'structure', 'members' => [ 'finding' => [ 'shape' => 'AuditFinding', ], ], ], 'DescribeAuditMitigationActionsTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', ], 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', 'location' => 'uri', 'locationName' => 'taskId', ], ], ], 'DescribeAuditMitigationActionsTaskResponse' => [ 'type' => 'structure', 'members' => [ 'taskStatus' => [ 'shape' => 'AuditMitigationActionsTaskStatus', ], 'startTime' => [ 'shape' => 'Timestamp', ], 'endTime' => [ 'shape' => 'Timestamp', ], 'taskStatistics' => [ 'shape' => 'AuditMitigationActionsTaskStatistics', ], 'target' => [ 'shape' => 'AuditMitigationActionsTaskTarget', ], 'auditCheckToActionsMapping' => [ 'shape' => 'AuditCheckToActionsMapping', ], 'actionsDefinition' => [ 'shape' => 'MitigationActionList', ], ], ], 'DescribeAuditSuppressionRequest' => [ 'type' => 'structure', 'required' => [ 'checkName', 'resourceIdentifier', ], 'members' => [ 'checkName' => [ 'shape' => 'AuditCheckName', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], ], ], 'DescribeAuditSuppressionResponse' => [ 'type' => 'structure', 'members' => [ 'checkName' => [ 'shape' => 'AuditCheckName', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], 'expirationDate' => [ 'shape' => 'Timestamp', ], 'suppressIndefinitely' => [ 'shape' => 'SuppressIndefinitely', ], 'description' => [ 'shape' => 'AuditDescription', ], ], ], 'DescribeAuditTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', ], 'members' => [ 'taskId' => [ 'shape' => 'AuditTaskId', 'location' => 'uri', 'locationName' => 'taskId', ], ], ], 'DescribeAuditTaskResponse' => [ 'type' => 'structure', 'members' => [ 'taskStatus' => [ 'shape' => 'AuditTaskStatus', ], 'taskType' => [ 'shape' => 'AuditTaskType', ], 'taskStartTime' => [ 'shape' => 'Timestamp', ], 'taskStatistics' => [ 'shape' => 'TaskStatistics', ], 'scheduledAuditName' => [ 'shape' => 'ScheduledAuditName', ], 'auditDetails' => [ 'shape' => 'AuditDetails', ], ], ], 'DescribeAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'authorizerName', ], 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', 'location' => 'uri', 'locationName' => 'authorizerName', ], ], ], 'DescribeAuthorizerResponse' => [ 'type' => 'structure', 'members' => [ 'authorizerDescription' => [ 'shape' => 'AuthorizerDescription', ], ], ], 'DescribeBillingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'billingGroupName', ], 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', 'location' => 'uri', 'locationName' => 'billingGroupName', ], ], ], 'DescribeBillingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', ], 'billingGroupId' => [ 'shape' => 'BillingGroupId', ], 'billingGroupArn' => [ 'shape' => 'BillingGroupArn', ], 'version' => [ 'shape' => 'Version', ], 'billingGroupProperties' => [ 'shape' => 'BillingGroupProperties', ], 'billingGroupMetadata' => [ 'shape' => 'BillingGroupMetadata', ], ], ], 'DescribeCACertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'caCertificateId', ], ], ], 'DescribeCACertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateDescription' => [ 'shape' => 'CACertificateDescription', ], 'registrationConfig' => [ 'shape' => 'RegistrationConfig', ], ], ], 'DescribeCertificateProviderRequest' => [ 'type' => 'structure', 'required' => [ 'certificateProviderName', ], 'members' => [ 'certificateProviderName' => [ 'shape' => 'CertificateProviderName', 'location' => 'uri', 'locationName' => 'certificateProviderName', ], ], ], 'DescribeCertificateProviderResponse' => [ 'type' => 'structure', 'members' => [ 'certificateProviderName' => [ 'shape' => 'CertificateProviderName', ], 'certificateProviderArn' => [ 'shape' => 'CertificateProviderArn', ], 'lambdaFunctionArn' => [ 'shape' => 'CertificateProviderFunctionArn', ], 'accountDefaultForOperations' => [ 'shape' => 'CertificateProviderAccountDefaultForOperations', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], ], ], 'DescribeCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], ], ], 'DescribeCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateDescription' => [ 'shape' => 'CertificateDescription', ], ], ], 'DescribeCustomMetricRequest' => [ 'type' => 'structure', 'required' => [ 'metricName', ], 'members' => [ 'metricName' => [ 'shape' => 'MetricName', 'location' => 'uri', 'locationName' => 'metricName', ], ], ], 'DescribeCustomMetricResponse' => [ 'type' => 'structure', 'members' => [ 'metricName' => [ 'shape' => 'MetricName', ], 'metricArn' => [ 'shape' => 'CustomMetricArn', ], 'metricType' => [ 'shape' => 'CustomMetricType', ], 'displayName' => [ 'shape' => 'CustomMetricDisplayName', ], 'creationDate' => [ 'shape' => 'Timestamp', ], 'lastModifiedDate' => [ 'shape' => 'Timestamp', ], ], ], 'DescribeDefaultAuthorizerRequest' => [ 'type' => 'structure', 'members' => [], ], 'DescribeDefaultAuthorizerResponse' => [ 'type' => 'structure', 'members' => [ 'authorizerDescription' => [ 'shape' => 'AuthorizerDescription', ], ], ], 'DescribeDetectMitigationActionsTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', ], 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', 'location' => 'uri', 'locationName' => 'taskId', ], ], ], 'DescribeDetectMitigationActionsTaskResponse' => [ 'type' => 'structure', 'members' => [ 'taskSummary' => [ 'shape' => 'DetectMitigationActionsTaskSummary', ], ], ], 'DescribeDimensionRequest' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'DimensionName', 'location' => 'uri', 'locationName' => 'name', ], ], ], 'DescribeDimensionResponse' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'DimensionName', ], 'arn' => [ 'shape' => 'DimensionArn', ], 'type' => [ 'shape' => 'DimensionType', ], 'stringValues' => [ 'shape' => 'DimensionStringValues', ], 'creationDate' => [ 'shape' => 'Timestamp', ], 'lastModifiedDate' => [ 'shape' => 'Timestamp', ], ], ], 'DescribeDomainConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'domainConfigurationName', ], 'members' => [ 'domainConfigurationName' => [ 'shape' => 'ReservedDomainConfigurationName', 'location' => 'uri', 'locationName' => 'domainConfigurationName', ], ], ], 'DescribeDomainConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'domainConfigurationName' => [ 'shape' => 'ReservedDomainConfigurationName', ], 'domainConfigurationArn' => [ 'shape' => 'DomainConfigurationArn', ], 'domainName' => [ 'shape' => 'DomainName', ], 'serverCertificates' => [ 'shape' => 'ServerCertificates', ], 'authorizerConfig' => [ 'shape' => 'AuthorizerConfig', ], 'domainConfigurationStatus' => [ 'shape' => 'DomainConfigurationStatus', ], 'serviceType' => [ 'shape' => 'ServiceType', ], 'domainType' => [ 'shape' => 'DomainType', ], 'lastStatusChangeDate' => [ 'shape' => 'DateType', ], 'tlsConfig' => [ 'shape' => 'TlsConfig', ], 'serverCertificateConfig' => [ 'shape' => 'ServerCertificateConfig', ], ], ], 'DescribeEndpointRequest' => [ 'type' => 'structure', 'members' => [ 'endpointType' => [ 'shape' => 'EndpointType', 'location' => 'querystring', 'locationName' => 'endpointType', ], ], ], 'DescribeEndpointResponse' => [ 'type' => 'structure', 'members' => [ 'endpointAddress' => [ 'shape' => 'EndpointAddress', ], ], ], 'DescribeEventConfigurationsRequest' => [ 'type' => 'structure', 'members' => [], ], 'DescribeEventConfigurationsResponse' => [ 'type' => 'structure', 'members' => [ 'eventConfigurations' => [ 'shape' => 'EventConfigurations', ], 'creationDate' => [ 'shape' => 'CreationDate', ], 'lastModifiedDate' => [ 'shape' => 'LastModifiedDate', ], ], ], 'DescribeFleetMetricRequest' => [ 'type' => 'structure', 'required' => [ 'metricName', ], 'members' => [ 'metricName' => [ 'shape' => 'FleetMetricName', 'location' => 'uri', 'locationName' => 'metricName', ], ], ], 'DescribeFleetMetricResponse' => [ 'type' => 'structure', 'members' => [ 'metricName' => [ 'shape' => 'FleetMetricName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'aggregationType' => [ 'shape' => 'AggregationType', ], 'period' => [ 'shape' => 'FleetMetricPeriod', ], 'aggregationField' => [ 'shape' => 'AggregationField', ], 'description' => [ 'shape' => 'FleetMetricDescription', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], 'indexName' => [ 'shape' => 'IndexName', ], 'creationDate' => [ 'shape' => 'CreationDate', ], 'lastModifiedDate' => [ 'shape' => 'LastModifiedDate', ], 'unit' => [ 'shape' => 'FleetMetricUnit', ], 'version' => [ 'shape' => 'Version', ], 'metricArn' => [ 'shape' => 'FleetMetricArn', ], ], ], 'DescribeIndexRequest' => [ 'type' => 'structure', 'required' => [ 'indexName', ], 'members' => [ 'indexName' => [ 'shape' => 'IndexName', 'location' => 'uri', 'locationName' => 'indexName', ], ], ], 'DescribeIndexResponse' => [ 'type' => 'structure', 'members' => [ 'indexName' => [ 'shape' => 'IndexName', ], 'indexStatus' => [ 'shape' => 'IndexStatus', ], 'schema' => [ 'shape' => 'IndexSchema', ], ], ], 'DescribeJobExecutionRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', 'thingName', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'executionNumber' => [ 'shape' => 'ExecutionNumber', 'location' => 'querystring', 'locationName' => 'executionNumber', ], ], ], 'DescribeJobExecutionResponse' => [ 'type' => 'structure', 'members' => [ 'execution' => [ 'shape' => 'JobExecution', ], ], ], 'DescribeJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], ], ], 'DescribeJobResponse' => [ 'type' => 'structure', 'members' => [ 'documentSource' => [ 'shape' => 'JobDocumentSource', ], 'job' => [ 'shape' => 'Job', ], ], ], 'DescribeJobTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'jobTemplateId', ], 'members' => [ 'jobTemplateId' => [ 'shape' => 'JobTemplateId', 'location' => 'uri', 'locationName' => 'jobTemplateId', ], ], ], 'DescribeJobTemplateResponse' => [ 'type' => 'structure', 'members' => [ 'jobTemplateArn' => [ 'shape' => 'JobTemplateArn', ], 'jobTemplateId' => [ 'shape' => 'JobTemplateId', ], 'description' => [ 'shape' => 'JobDescription', ], 'documentSource' => [ 'shape' => 'JobDocumentSource', ], 'document' => [ 'shape' => 'JobDocument', ], 'createdAt' => [ 'shape' => 'DateType', ], 'presignedUrlConfig' => [ 'shape' => 'PresignedUrlConfig', ], 'jobExecutionsRolloutConfig' => [ 'shape' => 'JobExecutionsRolloutConfig', ], 'abortConfig' => [ 'shape' => 'AbortConfig', ], 'timeoutConfig' => [ 'shape' => 'TimeoutConfig', ], 'jobExecutionsRetryConfig' => [ 'shape' => 'JobExecutionsRetryConfig', ], 'maintenanceWindows' => [ 'shape' => 'MaintenanceWindows', ], 'destinationPackageVersions' => [ 'shape' => 'DestinationPackageVersions', ], ], ], 'DescribeManagedJobTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', ], 'members' => [ 'templateName' => [ 'shape' => 'ManagedJobTemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], 'templateVersion' => [ 'shape' => 'ManagedTemplateVersion', 'location' => 'querystring', 'locationName' => 'templateVersion', ], ], ], 'DescribeManagedJobTemplateResponse' => [ 'type' => 'structure', 'members' => [ 'templateName' => [ 'shape' => 'ManagedJobTemplateName', ], 'templateArn' => [ 'shape' => 'JobTemplateArn', ], 'description' => [ 'shape' => 'JobDescription', ], 'templateVersion' => [ 'shape' => 'ManagedTemplateVersion', ], 'environments' => [ 'shape' => 'Environments', ], 'documentParameters' => [ 'shape' => 'DocumentParameters', ], 'document' => [ 'shape' => 'JobDocument', ], ], ], 'DescribeMitigationActionRequest' => [ 'type' => 'structure', 'required' => [ 'actionName', ], 'members' => [ 'actionName' => [ 'shape' => 'MitigationActionName', 'location' => 'uri', 'locationName' => 'actionName', ], ], ], 'DescribeMitigationActionResponse' => [ 'type' => 'structure', 'members' => [ 'actionName' => [ 'shape' => 'MitigationActionName', ], 'actionType' => [ 'shape' => 'MitigationActionType', ], 'actionArn' => [ 'shape' => 'MitigationActionArn', ], 'actionId' => [ 'shape' => 'MitigationActionId', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'actionParams' => [ 'shape' => 'MitigationActionParams', ], 'creationDate' => [ 'shape' => 'Timestamp', ], 'lastModifiedDate' => [ 'shape' => 'Timestamp', ], ], ], 'DescribeProvisioningTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], ], ], 'DescribeProvisioningTemplateResponse' => [ 'type' => 'structure', 'members' => [ 'templateArn' => [ 'shape' => 'TemplateArn', ], 'templateName' => [ 'shape' => 'TemplateName', ], 'description' => [ 'shape' => 'TemplateDescription', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'defaultVersionId' => [ 'shape' => 'TemplateVersionId', ], 'templateBody' => [ 'shape' => 'TemplateBody', ], 'enabled' => [ 'shape' => 'Enabled', ], 'provisioningRoleArn' => [ 'shape' => 'RoleArn', ], 'preProvisioningHook' => [ 'shape' => 'ProvisioningHook', ], 'type' => [ 'shape' => 'TemplateType', ], ], ], 'DescribeProvisioningTemplateVersionRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', 'versionId', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], 'versionId' => [ 'shape' => 'TemplateVersionId', 'location' => 'uri', 'locationName' => 'versionId', ], ], ], 'DescribeProvisioningTemplateVersionResponse' => [ 'type' => 'structure', 'members' => [ 'versionId' => [ 'shape' => 'TemplateVersionId', ], 'creationDate' => [ 'shape' => 'DateType', ], 'templateBody' => [ 'shape' => 'TemplateBody', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], ], ], 'DescribeRoleAliasRequest' => [ 'type' => 'structure', 'required' => [ 'roleAlias', ], 'members' => [ 'roleAlias' => [ 'shape' => 'RoleAlias', 'location' => 'uri', 'locationName' => 'roleAlias', ], ], ], 'DescribeRoleAliasResponse' => [ 'type' => 'structure', 'members' => [ 'roleAliasDescription' => [ 'shape' => 'RoleAliasDescription', ], ], ], 'DescribeScheduledAuditRequest' => [ 'type' => 'structure', 'required' => [ 'scheduledAuditName', ], 'members' => [ 'scheduledAuditName' => [ 'shape' => 'ScheduledAuditName', 'location' => 'uri', 'locationName' => 'scheduledAuditName', ], ], ], 'DescribeScheduledAuditResponse' => [ 'type' => 'structure', 'members' => [ 'frequency' => [ 'shape' => 'AuditFrequency', ], 'dayOfMonth' => [ 'shape' => 'DayOfMonth', ], 'dayOfWeek' => [ 'shape' => 'DayOfWeek', ], 'targetCheckNames' => [ 'shape' => 'TargetAuditCheckNames', ], 'scheduledAuditName' => [ 'shape' => 'ScheduledAuditName', ], 'scheduledAuditArn' => [ 'shape' => 'ScheduledAuditArn', ], ], ], 'DescribeSecurityProfileRequest' => [ 'type' => 'structure', 'required' => [ 'securityProfileName', ], 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'uri', 'locationName' => 'securityProfileName', ], ], ], 'DescribeSecurityProfileResponse' => [ 'type' => 'structure', 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', ], 'securityProfileArn' => [ 'shape' => 'SecurityProfileArn', ], 'securityProfileDescription' => [ 'shape' => 'SecurityProfileDescription', ], 'behaviors' => [ 'shape' => 'Behaviors', ], 'alertTargets' => [ 'shape' => 'AlertTargets', ], 'additionalMetricsToRetain' => [ 'shape' => 'AdditionalMetricsToRetainList', 'deprecated' => true, 'deprecatedMessage' => 'Use additionalMetricsToRetainV2.', ], 'additionalMetricsToRetainV2' => [ 'shape' => 'AdditionalMetricsToRetainV2List', ], 'version' => [ 'shape' => 'Version', ], 'creationDate' => [ 'shape' => 'Timestamp', ], 'lastModifiedDate' => [ 'shape' => 'Timestamp', ], 'metricsExportConfig' => [ 'shape' => 'MetricsExportConfig', ], ], ], 'DescribeStreamRequest' => [ 'type' => 'structure', 'required' => [ 'streamId', ], 'members' => [ 'streamId' => [ 'shape' => 'StreamId', 'location' => 'uri', 'locationName' => 'streamId', ], ], ], 'DescribeStreamResponse' => [ 'type' => 'structure', 'members' => [ 'streamInfo' => [ 'shape' => 'StreamInfo', ], ], ], 'DescribeThingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'thingGroupName', ], 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'uri', 'locationName' => 'thingGroupName', ], ], ], 'DescribeThingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', ], 'thingGroupId' => [ 'shape' => 'ThingGroupId', ], 'thingGroupArn' => [ 'shape' => 'ThingGroupArn', ], 'version' => [ 'shape' => 'Version', ], 'thingGroupProperties' => [ 'shape' => 'ThingGroupProperties', ], 'thingGroupMetadata' => [ 'shape' => 'ThingGroupMetadata', ], 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], 'status' => [ 'shape' => 'DynamicGroupStatus', ], ], ], 'DescribeThingRegistrationTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', ], 'members' => [ 'taskId' => [ 'shape' => 'TaskId', 'location' => 'uri', 'locationName' => 'taskId', ], ], ], 'DescribeThingRegistrationTaskResponse' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'TaskId', ], 'creationDate' => [ 'shape' => 'CreationDate', ], 'lastModifiedDate' => [ 'shape' => 'LastModifiedDate', ], 'templateBody' => [ 'shape' => 'TemplateBody', ], 'inputFileBucket' => [ 'shape' => 'RegistryS3BucketName', ], 'inputFileKey' => [ 'shape' => 'RegistryS3KeyName', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'status' => [ 'shape' => 'Status', ], 'message' => [ 'shape' => 'ErrorMessage', ], 'successCount' => [ 'shape' => 'Count', ], 'failureCount' => [ 'shape' => 'Count', ], 'percentageProgress' => [ 'shape' => 'Percentage', ], ], ], 'DescribeThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], ], ], 'DescribeThingResponse' => [ 'type' => 'structure', 'members' => [ 'defaultClientId' => [ 'shape' => 'ClientId', ], 'thingName' => [ 'shape' => 'ThingName', ], 'thingId' => [ 'shape' => 'ThingId', ], 'thingArn' => [ 'shape' => 'ThingArn', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'attributes' => [ 'shape' => 'Attributes', ], 'version' => [ 'shape' => 'Version', ], 'billingGroupName' => [ 'shape' => 'BillingGroupName', ], ], ], 'DescribeThingTypeRequest' => [ 'type' => 'structure', 'required' => [ 'thingTypeName', ], 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'uri', 'locationName' => 'thingTypeName', ], ], ], 'DescribeThingTypeResponse' => [ 'type' => 'structure', 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'thingTypeId' => [ 'shape' => 'ThingTypeId', ], 'thingTypeArn' => [ 'shape' => 'ThingTypeArn', ], 'thingTypeProperties' => [ 'shape' => 'ThingTypeProperties', ], 'thingTypeMetadata' => [ 'shape' => 'ThingTypeMetadata', ], ], ], 'Description' => [ 'type' => 'string', ], 'Destination' => [ 'type' => 'structure', 'members' => [ 's3Destination' => [ 'shape' => 'S3Destination', ], ], ], 'DestinationPackageVersions' => [ 'type' => 'list', 'member' => [ 'shape' => 'PackageVersionArn', ], ], 'DetachPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'target', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'target' => [ 'shape' => 'PolicyTarget', ], ], ], 'DetachPrincipalPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'principal', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-iot-principal', ], ], ], 'DetachSecurityProfileRequest' => [ 'type' => 'structure', 'required' => [ 'securityProfileName', 'securityProfileTargetArn', ], 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'uri', 'locationName' => 'securityProfileName', ], 'securityProfileTargetArn' => [ 'shape' => 'SecurityProfileTargetArn', 'location' => 'querystring', 'locationName' => 'securityProfileTargetArn', ], ], ], 'DetachSecurityProfileResponse' => [ 'type' => 'structure', 'members' => [], ], 'DetachThingPrincipalRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', 'principal', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-principal', ], ], ], 'DetachThingPrincipalResponse' => [ 'type' => 'structure', 'members' => [], ], 'DetailsKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'DetailsMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'DetailsKey', ], 'value' => [ 'shape' => 'DetailsValue', ], ], 'DetailsValue' => [ 'type' => 'string', 'min' => 1, 'pattern' => '[^\\p{C}]+', ], 'DetectMitigationActionExecution' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', ], 'violationId' => [ 'shape' => 'ViolationId', ], 'actionName' => [ 'shape' => 'MitigationActionName', ], 'thingName' => [ 'shape' => 'DeviceDefenderThingName', ], 'executionStartDate' => [ 'shape' => 'Timestamp', ], 'executionEndDate' => [ 'shape' => 'Timestamp', ], 'status' => [ 'shape' => 'DetectMitigationActionExecutionStatus', ], 'errorCode' => [ 'shape' => 'DetectMitigationActionExecutionErrorCode', ], 'message' => [ 'shape' => 'ErrorMessage', ], ], ], 'DetectMitigationActionExecutionErrorCode' => [ 'type' => 'string', ], 'DetectMitigationActionExecutionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DetectMitigationActionExecution', ], ], 'DetectMitigationActionExecutionStatus' => [ 'type' => 'string', 'enum' => [ 'IN_PROGRESS', 'SUCCESSFUL', 'FAILED', 'SKIPPED', ], ], 'DetectMitigationActionsTaskStatistics' => [ 'type' => 'structure', 'members' => [ 'actionsExecuted' => [ 'shape' => 'GenericLongValue', ], 'actionsSkipped' => [ 'shape' => 'GenericLongValue', ], 'actionsFailed' => [ 'shape' => 'GenericLongValue', ], ], ], 'DetectMitigationActionsTaskStatus' => [ 'type' => 'string', 'enum' => [ 'IN_PROGRESS', 'SUCCESSFUL', 'FAILED', 'CANCELED', ], ], 'DetectMitigationActionsTaskSummary' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', ], 'taskStatus' => [ 'shape' => 'DetectMitigationActionsTaskStatus', ], 'taskStartTime' => [ 'shape' => 'Timestamp', ], 'taskEndTime' => [ 'shape' => 'Timestamp', ], 'target' => [ 'shape' => 'DetectMitigationActionsTaskTarget', ], 'violationEventOccurrenceRange' => [ 'shape' => 'ViolationEventOccurrenceRange', ], 'onlyActiveViolationsIncluded' => [ 'shape' => 'PrimitiveBoolean', ], 'suppressedAlertsIncluded' => [ 'shape' => 'PrimitiveBoolean', ], 'actionsDefinition' => [ 'shape' => 'MitigationActionList', ], 'taskStatistics' => [ 'shape' => 'DetectMitigationActionsTaskStatistics', ], ], ], 'DetectMitigationActionsTaskSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DetectMitigationActionsTaskSummary', ], ], 'DetectMitigationActionsTaskTarget' => [ 'type' => 'structure', 'members' => [ 'violationIds' => [ 'shape' => 'TargetViolationIdsForDetectMitigationActions', ], 'securityProfileName' => [ 'shape' => 'SecurityProfileName', ], 'behaviorName' => [ 'shape' => 'BehaviorName', ], ], ], 'DetectMitigationActionsToExecuteList' => [ 'type' => 'list', 'member' => [ 'shape' => 'MitigationActionName', ], 'max' => 5, 'min' => 1, ], 'DeviceCertificateUpdateAction' => [ 'type' => 'string', 'enum' => [ 'DEACTIVATE', ], ], 'DeviceDefenderIndexingMode' => [ 'type' => 'string', 'enum' => [ 'OFF', 'VIOLATIONS', ], ], 'DeviceDefenderThingName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'DimensionArn' => [ 'type' => 'string', ], 'DimensionName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'DimensionNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'DimensionName', ], ], 'DimensionStringValue' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'DimensionStringValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'DimensionStringValue', ], 'max' => 100, 'min' => 1, ], 'DimensionType' => [ 'type' => 'string', 'enum' => [ 'TOPIC_FILTER', ], ], 'DimensionValueOperator' => [ 'type' => 'string', 'enum' => [ 'IN', 'NOT_IN', ], ], 'DisableAllLogs' => [ 'type' => 'boolean', ], 'DisableTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], ], ], 'DisconnectReason' => [ 'type' => 'string', ], 'DocumentParameter' => [ 'type' => 'structure', 'members' => [ 'key' => [ 'shape' => 'ParameterKey', ], 'description' => [ 'shape' => 'JobDescription', ], 'regex' => [ 'shape' => 'Regex', ], 'example' => [ 'shape' => 'Example', ], 'optional' => [ 'shape' => 'Optional', ], ], ], 'DocumentParameters' => [ 'type' => 'list', 'member' => [ 'shape' => 'DocumentParameter', ], ], 'DomainConfigurationArn' => [ 'type' => 'string', ], 'DomainConfigurationName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w.-]+', ], 'DomainConfigurationStatus' => [ 'type' => 'string', 'enum' => [ 'ENABLED', 'DISABLED', ], ], 'DomainConfigurationSummary' => [ 'type' => 'structure', 'members' => [ 'domainConfigurationName' => [ 'shape' => 'ReservedDomainConfigurationName', ], 'domainConfigurationArn' => [ 'shape' => 'DomainConfigurationArn', ], 'serviceType' => [ 'shape' => 'ServiceType', ], ], ], 'DomainConfigurations' => [ 'type' => 'list', 'member' => [ 'shape' => 'DomainConfigurationSummary', ], ], 'DomainName' => [ 'type' => 'string', 'max' => 253, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'DomainType' => [ 'type' => 'string', 'enum' => [ 'ENDPOINT', 'AWS_MANAGED', 'CUSTOMER_MANAGED', ], ], 'DurationInMinutes' => [ 'type' => 'integer', 'max' => 1430, 'min' => 1, ], 'DurationSeconds' => [ 'type' => 'integer', ], 'DynamicGroupStatus' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'BUILDING', 'REBUILDING', ], ], 'DynamoDBAction' => [ 'type' => 'structure', 'required' => [ 'tableName', 'roleArn', 'hashKeyField', 'hashKeyValue', ], 'members' => [ 'tableName' => [ 'shape' => 'TableName', ], 'roleArn' => [ 'shape' => 'AwsArn', ], 'operation' => [ 'shape' => 'DynamoOperation', ], 'hashKeyField' => [ 'shape' => 'HashKeyField', ], 'hashKeyValue' => [ 'shape' => 'HashKeyValue', ], 'hashKeyType' => [ 'shape' => 'DynamoKeyType', ], 'rangeKeyField' => [ 'shape' => 'RangeKeyField', ], 'rangeKeyValue' => [ 'shape' => 'RangeKeyValue', ], 'rangeKeyType' => [ 'shape' => 'DynamoKeyType', ], 'payloadField' => [ 'shape' => 'PayloadField', ], ], ], 'DynamoDBv2Action' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'putItem', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'putItem' => [ 'shape' => 'PutItemInput', ], ], ], 'DynamoKeyType' => [ 'type' => 'string', 'enum' => [ 'STRING', 'NUMBER', ], ], 'DynamoOperation' => [ 'type' => 'string', ], 'EffectivePolicies' => [ 'type' => 'list', 'member' => [ 'shape' => 'EffectivePolicy', ], ], 'EffectivePolicy' => [ 'type' => 'structure', 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', ], 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], ], ], 'ElasticsearchAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'endpoint', 'index', 'type', 'id', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'endpoint' => [ 'shape' => 'ElasticsearchEndpoint', ], 'index' => [ 'shape' => 'ElasticsearchIndex', ], 'type' => [ 'shape' => 'ElasticsearchType', ], 'id' => [ 'shape' => 'ElasticsearchId', ], ], ], 'ElasticsearchEndpoint' => [ 'type' => 'string', 'pattern' => 'https?://.*', ], 'ElasticsearchId' => [ 'type' => 'string', ], 'ElasticsearchIndex' => [ 'type' => 'string', ], 'ElasticsearchType' => [ 'type' => 'string', ], 'EnableCachingForHttp' => [ 'type' => 'boolean', ], 'EnableIoTLoggingParams' => [ 'type' => 'structure', 'required' => [ 'roleArnForLogging', 'logLevel', ], 'members' => [ 'roleArnForLogging' => [ 'shape' => 'RoleArn', ], 'logLevel' => [ 'shape' => 'LogLevel', ], ], ], 'EnableOCSPCheck' => [ 'type' => 'boolean', ], 'EnableTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], ], ], 'Enabled' => [ 'type' => 'boolean', ], 'EnabledBoolean' => [ 'type' => 'boolean', 'box' => true, ], 'EndpointAddress' => [ 'type' => 'string', ], 'EndpointType' => [ 'type' => 'string', 'max' => 128, 'pattern' => '[\\s\\S]*', ], 'Environment' => [ 'type' => 'string', 'pattern' => '[^\\p{C}]+', ], 'Environments' => [ 'type' => 'list', 'member' => [ 'shape' => 'Environment', ], ], 'ErrorCode' => [ 'type' => 'string', ], 'ErrorInfo' => [ 'type' => 'structure', 'members' => [ 'code' => [ 'shape' => 'Code', ], 'message' => [ 'shape' => 'OTAUpdateErrorMessage', ], ], ], 'ErrorMessage' => [ 'type' => 'string', 'max' => 2048, ], 'EvaluationStatistic' => [ 'type' => 'string', 'pattern' => '(p0|p0\\.1|p0\\.01|p1|p10|p50|p90|p99|p99\\.9|p99\\.99|p100)', ], 'EventConfigurations' => [ 'type' => 'map', 'key' => [ 'shape' => 'EventType', ], 'value' => [ 'shape' => 'Configuration', ], ], 'EventType' => [ 'type' => 'string', 'enum' => [ 'THING', 'THING_GROUP', 'THING_TYPE', 'THING_GROUP_MEMBERSHIP', 'THING_GROUP_HIERARCHY', 'THING_TYPE_ASSOCIATION', 'JOB', 'JOB_EXECUTION', 'POLICY', 'CERTIFICATE', 'CA_CERTIFICATE', ], ], 'Example' => [ 'type' => 'string', 'pattern' => '[^\\p{C}]+', ], 'ExecutionNamePrefix' => [ 'type' => 'string', ], 'ExecutionNumber' => [ 'type' => 'long', ], 'ExpectedVersion' => [ 'type' => 'long', ], 'ExpiresInSec' => [ 'type' => 'long', 'max' => 3600, 'min' => 60, ], 'ExpiresInSeconds' => [ 'type' => 'long', ], 'ExplicitDeny' => [ 'type' => 'structure', 'members' => [ 'policies' => [ 'shape' => 'Policies', ], ], ], 'ExponentialRolloutRate' => [ 'type' => 'structure', 'required' => [ 'baseRatePerMinute', 'incrementFactor', 'rateIncreaseCriteria', ], 'members' => [ 'baseRatePerMinute' => [ 'shape' => 'RolloutRatePerMinute', ], 'incrementFactor' => [ 'shape' => 'IncrementFactor', ], 'rateIncreaseCriteria' => [ 'shape' => 'RateIncreaseCriteria', ], ], ], 'ExportMetric' => [ 'type' => 'boolean', ], 'FailedChecksCount' => [ 'type' => 'integer', ], 'FailedFindingsCount' => [ 'type' => 'long', ], 'FailedThings' => [ 'type' => 'integer', ], 'Field' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'FieldName', ], 'type' => [ 'shape' => 'FieldType', ], ], ], 'FieldName' => [ 'type' => 'string', ], 'FieldType' => [ 'type' => 'string', 'enum' => [ 'Number', 'String', 'Boolean', ], ], 'Fields' => [ 'type' => 'list', 'member' => [ 'shape' => 'Field', ], ], 'FileId' => [ 'type' => 'integer', 'max' => 255, 'min' => 0, ], 'FileLocation' => [ 'type' => 'structure', 'members' => [ 'stream' => [ 'shape' => 'Stream', ], 's3Location' => [ 'shape' => 'S3Location', ], ], ], 'FileName' => [ 'type' => 'string', ], 'FileType' => [ 'type' => 'integer', 'max' => 255, 'min' => 0, ], 'FindingId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'FindingIds' => [ 'type' => 'list', 'member' => [ 'shape' => 'FindingId', ], 'max' => 25, 'min' => 1, ], 'FirehoseAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'deliveryStreamName', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'deliveryStreamName' => [ 'shape' => 'DeliveryStreamName', ], 'separator' => [ 'shape' => 'FirehoseSeparator', ], 'batchMode' => [ 'shape' => 'BatchMode', ], ], ], 'FirehoseSeparator' => [ 'type' => 'string', 'pattern' => '([\\n\\t])|(\\r\\n)|(,)', ], 'Flag' => [ 'type' => 'boolean', ], 'FleetMetricArn' => [ 'type' => 'string', ], 'FleetMetricDescription' => [ 'type' => 'string', 'max' => 1024, 'pattern' => '[\\p{Graph}\\x20]*', ], 'FleetMetricName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_\\-\\.]+', ], 'FleetMetricNameAndArn' => [ 'type' => 'structure', 'members' => [ 'metricName' => [ 'shape' => 'FleetMetricName', ], 'metricArn' => [ 'shape' => 'FleetMetricArn', ], ], ], 'FleetMetricNameAndArnList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetMetricNameAndArn', ], ], 'FleetMetricPeriod' => [ 'type' => 'integer', 'max' => 86400, 'min' => 60, ], 'FleetMetricUnit' => [ 'type' => 'string', 'enum' => [ 'Seconds', 'Microseconds', 'Milliseconds', 'Bytes', 'Kilobytes', 'Megabytes', 'Gigabytes', 'Terabytes', 'Bits', 'Kilobits', 'Megabits', 'Gigabits', 'Terabits', 'Percent', 'Count', 'Bytes/Second', 'Kilobytes/Second', 'Megabytes/Second', 'Gigabytes/Second', 'Terabytes/Second', 'Bits/Second', 'Kilobits/Second', 'Megabits/Second', 'Gigabits/Second', 'Terabits/Second', 'Count/Second', 'None', ], ], 'ForceDelete' => [ 'type' => 'boolean', ], 'ForceDeleteAWSJob' => [ 'type' => 'boolean', ], 'ForceFlag' => [ 'type' => 'boolean', ], 'Forced' => [ 'type' => 'boolean', ], 'FunctionArn' => [ 'type' => 'string', ], 'GenerationId' => [ 'type' => 'string', ], 'GenericLongValue' => [ 'type' => 'long', ], 'GeoLocationTarget' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'TargetFieldName', ], 'order' => [ 'shape' => 'TargetFieldOrder', ], ], ], 'GeoLocationsFilter' => [ 'type' => 'list', 'member' => [ 'shape' => 'GeoLocationTarget', ], ], 'GetBehaviorModelTrainingSummariesRequest' => [ 'type' => 'structure', 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'querystring', 'locationName' => 'securityProfileName', ], 'maxResults' => [ 'shape' => 'TinyMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'GetBehaviorModelTrainingSummariesResponse' => [ 'type' => 'structure', 'members' => [ 'summaries' => [ 'shape' => 'BehaviorModelTrainingSummaries', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetBucketsAggregationRequest' => [ 'type' => 'structure', 'required' => [ 'queryString', 'aggregationField', 'bucketsAggregationType', ], 'members' => [ 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'aggregationField' => [ 'shape' => 'AggregationField', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], 'bucketsAggregationType' => [ 'shape' => 'BucketsAggregationType', ], ], ], 'GetBucketsAggregationResponse' => [ 'type' => 'structure', 'members' => [ 'totalCount' => [ 'shape' => 'Count', ], 'buckets' => [ 'shape' => 'Buckets', ], ], ], 'GetCardinalityRequest' => [ 'type' => 'structure', 'required' => [ 'queryString', ], 'members' => [ 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'aggregationField' => [ 'shape' => 'AggregationField', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], ], ], 'GetCardinalityResponse' => [ 'type' => 'structure', 'members' => [ 'cardinality' => [ 'shape' => 'Count', ], ], ], 'GetEffectivePoliciesRequest' => [ 'type' => 'structure', 'members' => [ 'principal' => [ 'shape' => 'Principal', ], 'cognitoIdentityPoolId' => [ 'shape' => 'CognitoIdentityPoolId', ], 'thingName' => [ 'shape' => 'ThingName', 'location' => 'querystring', 'locationName' => 'thingName', ], ], ], 'GetEffectivePoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'effectivePolicies' => [ 'shape' => 'EffectivePolicies', ], ], ], 'GetIndexingConfigurationRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetIndexingConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'thingIndexingConfiguration' => [ 'shape' => 'ThingIndexingConfiguration', ], 'thingGroupIndexingConfiguration' => [ 'shape' => 'ThingGroupIndexingConfiguration', ], ], ], 'GetJobDocumentRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], ], ], 'GetJobDocumentResponse' => [ 'type' => 'structure', 'members' => [ 'document' => [ 'shape' => 'JobDocument', ], ], ], 'GetLoggingOptionsRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetLoggingOptionsResponse' => [ 'type' => 'structure', 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'logLevel' => [ 'shape' => 'LogLevel', ], ], ], 'GetOTAUpdateRequest' => [ 'type' => 'structure', 'required' => [ 'otaUpdateId', ], 'members' => [ 'otaUpdateId' => [ 'shape' => 'OTAUpdateId', 'location' => 'uri', 'locationName' => 'otaUpdateId', ], ], ], 'GetOTAUpdateResponse' => [ 'type' => 'structure', 'members' => [ 'otaUpdateInfo' => [ 'shape' => 'OTAUpdateInfo', ], ], ], 'GetPackageConfigurationRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetPackageConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'versionUpdateByJobsConfig' => [ 'shape' => 'VersionUpdateByJobsConfig', ], ], ], 'GetPackageRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], ], ], 'GetPackageResponse' => [ 'type' => 'structure', 'members' => [ 'packageName' => [ 'shape' => 'PackageName', ], 'packageArn' => [ 'shape' => 'PackageArn', ], 'description' => [ 'shape' => 'ResourceDescription', ], 'defaultVersionName' => [ 'shape' => 'VersionName', ], 'creationDate' => [ 'shape' => 'CreationDate', ], 'lastModifiedDate' => [ 'shape' => 'LastModifiedDate', ], ], ], 'GetPackageVersionRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', 'versionName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], 'versionName' => [ 'shape' => 'VersionName', 'location' => 'uri', 'locationName' => 'versionName', ], ], ], 'GetPackageVersionResponse' => [ 'type' => 'structure', 'members' => [ 'packageVersionArn' => [ 'shape' => 'PackageVersionArn', ], 'packageName' => [ 'shape' => 'PackageName', ], 'versionName' => [ 'shape' => 'VersionName', ], 'description' => [ 'shape' => 'ResourceDescription', ], 'attributes' => [ 'shape' => 'ResourceAttributes', ], 'status' => [ 'shape' => 'PackageVersionStatus', ], 'errorReason' => [ 'shape' => 'PackageVersionErrorReason', ], 'creationDate' => [ 'shape' => 'CreationDate', ], 'lastModifiedDate' => [ 'shape' => 'LastModifiedDate', ], ], ], 'GetPercentilesRequest' => [ 'type' => 'structure', 'required' => [ 'queryString', ], 'members' => [ 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'aggregationField' => [ 'shape' => 'AggregationField', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], 'percents' => [ 'shape' => 'PercentList', ], ], ], 'GetPercentilesResponse' => [ 'type' => 'structure', 'members' => [ 'percentiles' => [ 'shape' => 'Percentiles', ], ], ], 'GetPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], ], ], 'GetPolicyResponse' => [ 'type' => 'structure', 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', ], 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'defaultVersionId' => [ 'shape' => 'PolicyVersionId', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'generationId' => [ 'shape' => 'GenerationId', ], ], ], 'GetPolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyVersionId', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', 'location' => 'uri', 'locationName' => 'policyVersionId', ], ], ], 'GetPolicyVersionResponse' => [ 'type' => 'structure', 'members' => [ 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyName' => [ 'shape' => 'PolicyName', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'generationId' => [ 'shape' => 'GenerationId', ], ], ], 'GetRegistrationCodeRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetRegistrationCodeResponse' => [ 'type' => 'structure', 'members' => [ 'registrationCode' => [ 'shape' => 'RegistrationCode', ], ], ], 'GetStatisticsRequest' => [ 'type' => 'structure', 'required' => [ 'queryString', ], 'members' => [ 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'aggregationField' => [ 'shape' => 'AggregationField', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], ], ], 'GetStatisticsResponse' => [ 'type' => 'structure', 'members' => [ 'statistics' => [ 'shape' => 'Statistics', ], ], ], 'GetTopicRuleDestinationRequest' => [ 'type' => 'structure', 'required' => [ 'arn', ], 'members' => [ 'arn' => [ 'shape' => 'AwsArn', 'location' => 'uri', 'locationName' => 'arn', ], ], ], 'GetTopicRuleDestinationResponse' => [ 'type' => 'structure', 'members' => [ 'topicRuleDestination' => [ 'shape' => 'TopicRuleDestination', ], ], ], 'GetTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], ], ], 'GetTopicRuleResponse' => [ 'type' => 'structure', 'members' => [ 'ruleArn' => [ 'shape' => 'RuleArn', ], 'rule' => [ 'shape' => 'TopicRule', ], ], ], 'GetV2LoggingOptionsRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetV2LoggingOptionsResponse' => [ 'type' => 'structure', 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'defaultLogLevel' => [ 'shape' => 'LogLevel', ], 'disableAllLogs' => [ 'shape' => 'DisableAllLogs', ], ], ], 'GroupNameAndArn' => [ 'type' => 'structure', 'members' => [ 'groupName' => [ 'shape' => 'ThingGroupName', ], 'groupArn' => [ 'shape' => 'ThingGroupArn', ], ], ], 'HashAlgorithm' => [ 'type' => 'string', ], 'HashKeyField' => [ 'type' => 'string', ], 'HashKeyValue' => [ 'type' => 'string', ], 'HeaderKey' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'HeaderList' => [ 'type' => 'list', 'member' => [ 'shape' => 'HttpActionHeader', ], 'max' => 100, 'min' => 0, ], 'HeaderValue' => [ 'type' => 'string', ], 'HttpAction' => [ 'type' => 'structure', 'required' => [ 'url', ], 'members' => [ 'url' => [ 'shape' => 'Url', ], 'confirmationUrl' => [ 'shape' => 'Url', ], 'headers' => [ 'shape' => 'HeaderList', ], 'auth' => [ 'shape' => 'HttpAuthorization', ], ], ], 'HttpActionHeader' => [ 'type' => 'structure', 'required' => [ 'key', 'value', ], 'members' => [ 'key' => [ 'shape' => 'HeaderKey', ], 'value' => [ 'shape' => 'HeaderValue', ], ], ], 'HttpAuthorization' => [ 'type' => 'structure', 'members' => [ 'sigv4' => [ 'shape' => 'SigV4Authorization', ], ], ], 'HttpContext' => [ 'type' => 'structure', 'members' => [ 'headers' => [ 'shape' => 'HttpHeaders', ], 'queryString' => [ 'shape' => 'HttpQueryString', ], ], ], 'HttpHeaderName' => [ 'type' => 'string', 'max' => 8192, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'HttpHeaderValue' => [ 'type' => 'string', 'max' => 8192, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'HttpHeaders' => [ 'type' => 'map', 'key' => [ 'shape' => 'HttpHeaderName', ], 'value' => [ 'shape' => 'HttpHeaderValue', ], ], 'HttpQueryString' => [ 'type' => 'string', 'max' => 4096, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'HttpUrlDestinationConfiguration' => [ 'type' => 'structure', 'required' => [ 'confirmationUrl', ], 'members' => [ 'confirmationUrl' => [ 'shape' => 'Url', ], ], ], 'HttpUrlDestinationProperties' => [ 'type' => 'structure', 'members' => [ 'confirmationUrl' => [ 'shape' => 'Url', ], ], ], 'HttpUrlDestinationSummary' => [ 'type' => 'structure', 'members' => [ 'confirmationUrl' => [ 'shape' => 'Url', ], ], ], 'ImplicitDeny' => [ 'type' => 'structure', 'members' => [ 'policies' => [ 'shape' => 'Policies', ], ], ], 'InProgressChecksCount' => [ 'type' => 'integer', ], 'InProgressThings' => [ 'type' => 'integer', ], 'InProgressTimeoutInMinutes' => [ 'type' => 'long', ], 'IncrementFactor' => [ 'type' => 'double', 'max' => 5, 'min' => 1.1, ], 'IndexName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'IndexNamesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IndexName', ], ], 'IndexNotReadyException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'IndexSchema' => [ 'type' => 'string', ], 'IndexStatus' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'BUILDING', 'REBUILDING', ], ], 'IndexingFilter' => [ 'type' => 'structure', 'members' => [ 'namedShadowNames' => [ 'shape' => 'NamedShadowNamesFilter', ], 'geoLocations' => [ 'shape' => 'GeoLocationsFilter', ], ], ], 'InlineDocument' => [ 'type' => 'string', ], 'InputName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'InternalException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], 'InternalFailureException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], 'InternalServerException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], 'InvalidAggregationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidQueryException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidRequestException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidResponseException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidStateTransitionException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'IotAnalyticsAction' => [ 'type' => 'structure', 'members' => [ 'channelArn' => [ 'shape' => 'AwsArn', ], 'channelName' => [ 'shape' => 'ChannelName', ], 'batchMode' => [ 'shape' => 'BatchMode', ], 'roleArn' => [ 'shape' => 'AwsArn', ], ], ], 'IotEventsAction' => [ 'type' => 'structure', 'required' => [ 'inputName', 'roleArn', ], 'members' => [ 'inputName' => [ 'shape' => 'InputName', ], 'messageId' => [ 'shape' => 'MessageId', ], 'batchMode' => [ 'shape' => 'BatchMode', ], 'roleArn' => [ 'shape' => 'AwsArn', ], ], ], 'IotSiteWiseAction' => [ 'type' => 'structure', 'required' => [ 'putAssetPropertyValueEntries', 'roleArn', ], 'members' => [ 'putAssetPropertyValueEntries' => [ 'shape' => 'PutAssetPropertyValueEntryList', ], 'roleArn' => [ 'shape' => 'AwsArn', ], ], ], 'IsAuthenticated' => [ 'type' => 'boolean', ], 'IsDefaultVersion' => [ 'type' => 'boolean', ], 'IsDisabled' => [ 'type' => 'boolean', ], 'IsSuppressed' => [ 'type' => 'boolean', ], 'IssuerCertificateIdentifier' => [ 'type' => 'structure', 'members' => [ 'issuerCertificateSubject' => [ 'shape' => 'IssuerCertificateSubject', ], 'issuerId' => [ 'shape' => 'IssuerId', ], 'issuerCertificateSerialNumber' => [ 'shape' => 'IssuerCertificateSerialNumber', ], ], ], 'IssuerCertificateSerialNumber' => [ 'type' => 'string', 'max' => 20, 'pattern' => '[a-fA-F0-9:]+', ], 'IssuerCertificateSubject' => [ 'type' => 'string', 'max' => 1000, 'pattern' => '[\\p{Graph}\\x20]*', ], 'IssuerId' => [ 'type' => 'string', 'max' => 64, 'pattern' => '(0x)?[a-fA-F0-9]+', ], 'Job' => [ 'type' => 'structure', 'members' => [ 'jobArn' => [ 'shape' => 'JobArn', ], 'jobId' => [ 'shape' => 'JobId', ], 'targetSelection' => [ 'shape' => 'TargetSelection', ], 'status' => [ 'shape' => 'JobStatus', ], 'forceCanceled' => [ 'shape' => 'Forced', ], 'reasonCode' => [ 'shape' => 'ReasonCode', ], 'comment' => [ 'shape' => 'Comment', ], 'targets' => [ 'shape' => 'JobTargets', ], 'description' => [ 'shape' => 'JobDescription', ], 'presignedUrlConfig' => [ 'shape' => 'PresignedUrlConfig', ], 'jobExecutionsRolloutConfig' => [ 'shape' => 'JobExecutionsRolloutConfig', ], 'abortConfig' => [ 'shape' => 'AbortConfig', ], 'createdAt' => [ 'shape' => 'DateType', ], 'lastUpdatedAt' => [ 'shape' => 'DateType', ], 'completedAt' => [ 'shape' => 'DateType', ], 'jobProcessDetails' => [ 'shape' => 'JobProcessDetails', ], 'timeoutConfig' => [ 'shape' => 'TimeoutConfig', ], 'namespaceId' => [ 'shape' => 'NamespaceId', ], 'jobTemplateArn' => [ 'shape' => 'JobTemplateArn', ], 'jobExecutionsRetryConfig' => [ 'shape' => 'JobExecutionsRetryConfig', ], 'documentParameters' => [ 'shape' => 'ParameterMap', ], 'isConcurrent' => [ 'shape' => 'BooleanWrapperObject', ], 'schedulingConfig' => [ 'shape' => 'SchedulingConfig', ], 'scheduledJobRollouts' => [ 'shape' => 'ScheduledJobRolloutList', ], 'destinationPackageVersions' => [ 'shape' => 'DestinationPackageVersions', ], ], ], 'JobArn' => [ 'type' => 'string', ], 'JobDescription' => [ 'type' => 'string', 'max' => 2028, 'pattern' => '[^\\p{C}]+', ], 'JobDocument' => [ 'type' => 'string', 'max' => 32768, ], 'JobDocumentSource' => [ 'type' => 'string', 'max' => 1350, 'min' => 1, ], 'JobEndBehavior' => [ 'type' => 'string', 'enum' => [ 'STOP_ROLLOUT', 'CANCEL', 'FORCE_CANCEL', ], ], 'JobExecution' => [ 'type' => 'structure', 'members' => [ 'jobId' => [ 'shape' => 'JobId', ], 'status' => [ 'shape' => 'JobExecutionStatus', ], 'forceCanceled' => [ 'shape' => 'Forced', ], 'statusDetails' => [ 'shape' => 'JobExecutionStatusDetails', ], 'thingArn' => [ 'shape' => 'ThingArn', ], 'queuedAt' => [ 'shape' => 'DateType', ], 'startedAt' => [ 'shape' => 'DateType', ], 'lastUpdatedAt' => [ 'shape' => 'DateType', ], 'executionNumber' => [ 'shape' => 'ExecutionNumber', ], 'versionNumber' => [ 'shape' => 'VersionNumber', ], 'approximateSecondsBeforeTimedOut' => [ 'shape' => 'ApproximateSecondsBeforeTimedOut', ], ], ], 'JobExecutionFailureType' => [ 'type' => 'string', 'enum' => [ 'FAILED', 'REJECTED', 'TIMED_OUT', 'ALL', ], ], 'JobExecutionStatus' => [ 'type' => 'string', 'enum' => [ 'QUEUED', 'IN_PROGRESS', 'SUCCEEDED', 'FAILED', 'TIMED_OUT', 'REJECTED', 'REMOVED', 'CANCELED', ], ], 'JobExecutionStatusDetails' => [ 'type' => 'structure', 'members' => [ 'detailsMap' => [ 'shape' => 'DetailsMap', ], ], ], 'JobExecutionSummary' => [ 'type' => 'structure', 'members' => [ 'status' => [ 'shape' => 'JobExecutionStatus', ], 'queuedAt' => [ 'shape' => 'DateType', ], 'startedAt' => [ 'shape' => 'DateType', ], 'lastUpdatedAt' => [ 'shape' => 'DateType', ], 'executionNumber' => [ 'shape' => 'ExecutionNumber', ], 'retryAttempt' => [ 'shape' => 'RetryAttempt', ], ], ], 'JobExecutionSummaryForJob' => [ 'type' => 'structure', 'members' => [ 'thingArn' => [ 'shape' => 'ThingArn', ], 'jobExecutionSummary' => [ 'shape' => 'JobExecutionSummary', ], ], ], 'JobExecutionSummaryForJobList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobExecutionSummaryForJob', ], ], 'JobExecutionSummaryForThing' => [ 'type' => 'structure', 'members' => [ 'jobId' => [ 'shape' => 'JobId', ], 'jobExecutionSummary' => [ 'shape' => 'JobExecutionSummary', ], ], ], 'JobExecutionSummaryForThingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobExecutionSummaryForThing', ], ], 'JobExecutionsRetryConfig' => [ 'type' => 'structure', 'required' => [ 'criteriaList', ], 'members' => [ 'criteriaList' => [ 'shape' => 'RetryCriteriaList', ], ], ], 'JobExecutionsRolloutConfig' => [ 'type' => 'structure', 'members' => [ 'maximumPerMinute' => [ 'shape' => 'MaxJobExecutionsPerMin', ], 'exponentialRate' => [ 'shape' => 'ExponentialRolloutRate', ], ], ], 'JobId' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'JobProcessDetails' => [ 'type' => 'structure', 'members' => [ 'processingTargets' => [ 'shape' => 'ProcessingTargetNameList', ], 'numberOfCanceledThings' => [ 'shape' => 'CanceledThings', ], 'numberOfSucceededThings' => [ 'shape' => 'SucceededThings', ], 'numberOfFailedThings' => [ 'shape' => 'FailedThings', ], 'numberOfRejectedThings' => [ 'shape' => 'RejectedThings', ], 'numberOfQueuedThings' => [ 'shape' => 'QueuedThings', ], 'numberOfInProgressThings' => [ 'shape' => 'InProgressThings', ], 'numberOfRemovedThings' => [ 'shape' => 'RemovedThings', ], 'numberOfTimedOutThings' => [ 'shape' => 'TimedOutThings', ], ], ], 'JobStatus' => [ 'type' => 'string', 'enum' => [ 'IN_PROGRESS', 'CANCELED', 'COMPLETED', 'DELETION_IN_PROGRESS', 'SCHEDULED', ], ], 'JobSummary' => [ 'type' => 'structure', 'members' => [ 'jobArn' => [ 'shape' => 'JobArn', ], 'jobId' => [ 'shape' => 'JobId', ], 'thingGroupId' => [ 'shape' => 'ThingGroupId', ], 'targetSelection' => [ 'shape' => 'TargetSelection', ], 'status' => [ 'shape' => 'JobStatus', ], 'createdAt' => [ 'shape' => 'DateType', ], 'lastUpdatedAt' => [ 'shape' => 'DateType', ], 'completedAt' => [ 'shape' => 'DateType', ], 'isConcurrent' => [ 'shape' => 'BooleanWrapperObject', ], ], ], 'JobSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobSummary', ], ], 'JobTargets' => [ 'type' => 'list', 'member' => [ 'shape' => 'TargetArn', ], 'min' => 1, ], 'JobTemplateArn' => [ 'type' => 'string', 'max' => 1600, 'min' => 1, 'pattern' => '^arn:[!-~]+$', ], 'JobTemplateId' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'JobTemplateSummary' => [ 'type' => 'structure', 'members' => [ 'jobTemplateArn' => [ 'shape' => 'JobTemplateArn', ], 'jobTemplateId' => [ 'shape' => 'JobTemplateId', ], 'description' => [ 'shape' => 'JobDescription', ], 'createdAt' => [ 'shape' => 'DateType', ], ], ], 'JobTemplateSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobTemplateSummary', ], ], 'JsonDocument' => [ 'type' => 'string', ], 'KafkaAction' => [ 'type' => 'structure', 'required' => [ 'destinationArn', 'topic', 'clientProperties', ], 'members' => [ 'destinationArn' => [ 'shape' => 'AwsArn', ], 'topic' => [ 'shape' => 'String', ], 'key' => [ 'shape' => 'String', ], 'partition' => [ 'shape' => 'String', ], 'clientProperties' => [ 'shape' => 'ClientProperties', ], 'headers' => [ 'shape' => 'KafkaHeaders', ], ], ], 'KafkaActionHeader' => [ 'type' => 'structure', 'required' => [ 'key', 'value', ], 'members' => [ 'key' => [ 'shape' => 'KafkaHeaderKey', ], 'value' => [ 'shape' => 'KafkaHeaderValue', ], ], ], 'KafkaHeaderKey' => [ 'type' => 'string', 'max' => 16384, 'min' => 0, ], 'KafkaHeaderValue' => [ 'type' => 'string', 'max' => 16384, 'min' => 0, ], 'KafkaHeaders' => [ 'type' => 'list', 'member' => [ 'shape' => 'KafkaActionHeader', ], 'max' => 100, 'min' => 1, ], 'Key' => [ 'type' => 'string', ], 'KeyName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'KeyPair' => [ 'type' => 'structure', 'members' => [ 'PublicKey' => [ 'shape' => 'PublicKey', ], 'PrivateKey' => [ 'shape' => 'PrivateKey', ], ], ], 'KeyValue' => [ 'type' => 'string', 'max' => 5120, 'pattern' => '[\\s\\S]*', ], 'KinesisAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'streamName', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'streamName' => [ 'shape' => 'StreamName', ], 'partitionKey' => [ 'shape' => 'PartitionKey', ], ], ], 'LambdaAction' => [ 'type' => 'structure', 'required' => [ 'functionArn', ], 'members' => [ 'functionArn' => [ 'shape' => 'FunctionArn', ], ], ], 'LaserMaxResults' => [ 'type' => 'integer', 'max' => 250, 'min' => 1, ], 'LastModifiedDate' => [ 'type' => 'timestamp', ], 'LastUpdatedAtDate' => [ 'type' => 'timestamp', ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], 'ListActiveViolationsRequest' => [ 'type' => 'structure', 'members' => [ 'thingName' => [ 'shape' => 'DeviceDefenderThingName', 'location' => 'querystring', 'locationName' => 'thingName', ], 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'querystring', 'locationName' => 'securityProfileName', ], 'behaviorCriteriaType' => [ 'shape' => 'BehaviorCriteriaType', 'location' => 'querystring', 'locationName' => 'behaviorCriteriaType', ], 'listSuppressedAlerts' => [ 'shape' => 'ListSuppressedAlerts', 'location' => 'querystring', 'locationName' => 'listSuppressedAlerts', ], 'verificationState' => [ 'shape' => 'VerificationState', 'location' => 'querystring', 'locationName' => 'verificationState', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListActiveViolationsResponse' => [ 'type' => 'structure', 'members' => [ 'activeViolations' => [ 'shape' => 'ActiveViolations', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListAttachedPoliciesRequest' => [ 'type' => 'structure', 'required' => [ 'target', ], 'members' => [ 'target' => [ 'shape' => 'PolicyTarget', 'location' => 'uri', 'locationName' => 'target', ], 'recursive' => [ 'shape' => 'Recursive', 'location' => 'querystring', 'locationName' => 'recursive', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], ], ], 'ListAttachedPoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'policies' => [ 'shape' => 'Policies', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListAuditFindingsRequest' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'AuditTaskId', ], 'checkName' => [ 'shape' => 'AuditCheckName', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], 'maxResults' => [ 'shape' => 'MaxResults', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'startTime' => [ 'shape' => 'Timestamp', ], 'endTime' => [ 'shape' => 'Timestamp', ], 'listSuppressedFindings' => [ 'shape' => 'ListSuppressedFindings', ], ], ], 'ListAuditFindingsResponse' => [ 'type' => 'structure', 'members' => [ 'findings' => [ 'shape' => 'AuditFindings', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListAuditMitigationActionsExecutionsRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', 'findingId', ], 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', 'location' => 'querystring', 'locationName' => 'taskId', ], 'actionStatus' => [ 'shape' => 'AuditMitigationActionsExecutionStatus', 'location' => 'querystring', 'locationName' => 'actionStatus', ], 'findingId' => [ 'shape' => 'FindingId', 'location' => 'querystring', 'locationName' => 'findingId', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListAuditMitigationActionsExecutionsResponse' => [ 'type' => 'structure', 'members' => [ 'actionsExecutions' => [ 'shape' => 'AuditMitigationActionExecutionMetadataList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListAuditMitigationActionsTasksRequest' => [ 'type' => 'structure', 'required' => [ 'startTime', 'endTime', ], 'members' => [ 'auditTaskId' => [ 'shape' => 'AuditTaskId', 'location' => 'querystring', 'locationName' => 'auditTaskId', ], 'findingId' => [ 'shape' => 'FindingId', 'location' => 'querystring', 'locationName' => 'findingId', ], 'taskStatus' => [ 'shape' => 'AuditMitigationActionsTaskStatus', 'location' => 'querystring', 'locationName' => 'taskStatus', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'startTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'startTime', ], 'endTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'endTime', ], ], ], 'ListAuditMitigationActionsTasksResponse' => [ 'type' => 'structure', 'members' => [ 'tasks' => [ 'shape' => 'AuditMitigationActionsTaskMetadataList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListAuditSuppressionsRequest' => [ 'type' => 'structure', 'members' => [ 'checkName' => [ 'shape' => 'AuditCheckName', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', ], ], ], 'ListAuditSuppressionsResponse' => [ 'type' => 'structure', 'members' => [ 'suppressions' => [ 'shape' => 'AuditSuppressionList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListAuditTasksRequest' => [ 'type' => 'structure', 'required' => [ 'startTime', 'endTime', ], 'members' => [ 'startTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'startTime', ], 'endTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'endTime', ], 'taskType' => [ 'shape' => 'AuditTaskType', 'location' => 'querystring', 'locationName' => 'taskType', ], 'taskStatus' => [ 'shape' => 'AuditTaskStatus', 'location' => 'querystring', 'locationName' => 'taskStatus', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListAuditTasksResponse' => [ 'type' => 'structure', 'members' => [ 'tasks' => [ 'shape' => 'AuditTaskMetadataList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListAuthorizersRequest' => [ 'type' => 'structure', 'members' => [ 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], 'status' => [ 'shape' => 'AuthorizerStatus', 'location' => 'querystring', 'locationName' => 'status', ], ], ], 'ListAuthorizersResponse' => [ 'type' => 'structure', 'members' => [ 'authorizers' => [ 'shape' => 'Authorizers', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListBillingGroupsRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'namePrefixFilter' => [ 'shape' => 'BillingGroupName', 'location' => 'querystring', 'locationName' => 'namePrefixFilter', ], ], ], 'ListBillingGroupsResponse' => [ 'type' => 'structure', 'members' => [ 'billingGroups' => [ 'shape' => 'BillingGroupNameAndArnList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListCACertificatesRequest' => [ 'type' => 'structure', 'members' => [ 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'querystring', 'locationName' => 'templateName', ], ], ], 'ListCACertificatesResponse' => [ 'type' => 'structure', 'members' => [ 'certificates' => [ 'shape' => 'CACertificates', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListCertificateProvidersRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListCertificateProvidersResponse' => [ 'type' => 'structure', 'members' => [ 'certificateProviders' => [ 'shape' => 'CertificateProviders', ], 'nextToken' => [ 'shape' => 'Marker', ], ], ], 'ListCertificatesByCARequest' => [ 'type' => 'structure', 'required' => [ 'caCertificateId', ], 'members' => [ 'caCertificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'caCertificateId', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListCertificatesByCAResponse' => [ 'type' => 'structure', 'members' => [ 'certificates' => [ 'shape' => 'Certificates', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListCertificatesRequest' => [ 'type' => 'structure', 'members' => [ 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListCertificatesResponse' => [ 'type' => 'structure', 'members' => [ 'certificates' => [ 'shape' => 'Certificates', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListCustomMetricsRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListCustomMetricsResponse' => [ 'type' => 'structure', 'members' => [ 'metricNames' => [ 'shape' => 'MetricNames', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDetectMitigationActionsExecutionsRequest' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', 'location' => 'querystring', 'locationName' => 'taskId', ], 'violationId' => [ 'shape' => 'ViolationId', 'location' => 'querystring', 'locationName' => 'violationId', ], 'thingName' => [ 'shape' => 'DeviceDefenderThingName', 'location' => 'querystring', 'locationName' => 'thingName', ], 'startTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'startTime', ], 'endTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'endTime', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListDetectMitigationActionsExecutionsResponse' => [ 'type' => 'structure', 'members' => [ 'actionsExecutions' => [ 'shape' => 'DetectMitigationActionExecutionList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDetectMitigationActionsTasksRequest' => [ 'type' => 'structure', 'required' => [ 'startTime', 'endTime', ], 'members' => [ 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'startTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'startTime', ], 'endTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'endTime', ], ], ], 'ListDetectMitigationActionsTasksResponse' => [ 'type' => 'structure', 'members' => [ 'tasks' => [ 'shape' => 'DetectMitigationActionsTaskSummaryList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDimensionsRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListDimensionsResponse' => [ 'type' => 'structure', 'members' => [ 'dimensionNames' => [ 'shape' => 'DimensionNames', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDomainConfigurationsRequest' => [ 'type' => 'structure', 'members' => [ 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'serviceType' => [ 'shape' => 'ServiceType', 'location' => 'querystring', 'locationName' => 'serviceType', ], ], ], 'ListDomainConfigurationsResponse' => [ 'type' => 'structure', 'members' => [ 'domainConfigurations' => [ 'shape' => 'DomainConfigurations', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListFleetMetricsRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListFleetMetricsResponse' => [ 'type' => 'structure', 'members' => [ 'fleetMetrics' => [ 'shape' => 'FleetMetricNameAndArnList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListIndicesRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'QueryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListIndicesResponse' => [ 'type' => 'structure', 'members' => [ 'indexNames' => [ 'shape' => 'IndexNamesList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListJobExecutionsForJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'status' => [ 'shape' => 'JobExecutionStatus', 'location' => 'querystring', 'locationName' => 'status', ], 'maxResults' => [ 'shape' => 'LaserMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListJobExecutionsForJobResponse' => [ 'type' => 'structure', 'members' => [ 'executionSummaries' => [ 'shape' => 'JobExecutionSummaryForJobList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListJobExecutionsForThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'status' => [ 'shape' => 'JobExecutionStatus', 'location' => 'querystring', 'locationName' => 'status', ], 'namespaceId' => [ 'shape' => 'NamespaceId', 'location' => 'querystring', 'locationName' => 'namespaceId', ], 'maxResults' => [ 'shape' => 'LaserMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'jobId' => [ 'shape' => 'JobId', 'location' => 'querystring', 'locationName' => 'jobId', ], ], ], 'ListJobExecutionsForThingResponse' => [ 'type' => 'structure', 'members' => [ 'executionSummaries' => [ 'shape' => 'JobExecutionSummaryForThingList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListJobTemplatesRequest' => [ 'type' => 'structure', 'members' => [ 'maxResults' => [ 'shape' => 'LaserMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListJobTemplatesResponse' => [ 'type' => 'structure', 'members' => [ 'jobTemplates' => [ 'shape' => 'JobTemplateSummaryList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListJobsRequest' => [ 'type' => 'structure', 'members' => [ 'status' => [ 'shape' => 'JobStatus', 'location' => 'querystring', 'locationName' => 'status', ], 'targetSelection' => [ 'shape' => 'TargetSelection', 'location' => 'querystring', 'locationName' => 'targetSelection', ], 'maxResults' => [ 'shape' => 'LaserMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'querystring', 'locationName' => 'thingGroupName', ], 'thingGroupId' => [ 'shape' => 'ThingGroupId', 'location' => 'querystring', 'locationName' => 'thingGroupId', ], 'namespaceId' => [ 'shape' => 'NamespaceId', 'location' => 'querystring', 'locationName' => 'namespaceId', ], ], ], 'ListJobsResponse' => [ 'type' => 'structure', 'members' => [ 'jobs' => [ 'shape' => 'JobSummaryList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListManagedJobTemplatesRequest' => [ 'type' => 'structure', 'members' => [ 'templateName' => [ 'shape' => 'ManagedJobTemplateName', 'location' => 'querystring', 'locationName' => 'templateName', ], 'maxResults' => [ 'shape' => 'LaserMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListManagedJobTemplatesResponse' => [ 'type' => 'structure', 'members' => [ 'managedJobTemplates' => [ 'shape' => 'ManagedJobTemplatesSummaryList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListMetricValuesRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', 'metricName', 'startTime', 'endTime', ], 'members' => [ 'thingName' => [ 'shape' => 'DeviceDefenderThingName', 'location' => 'querystring', 'locationName' => 'thingName', ], 'metricName' => [ 'shape' => 'BehaviorMetric', 'location' => 'querystring', 'locationName' => 'metricName', ], 'dimensionName' => [ 'shape' => 'DimensionName', 'location' => 'querystring', 'locationName' => 'dimensionName', ], 'dimensionValueOperator' => [ 'shape' => 'DimensionValueOperator', 'location' => 'querystring', 'locationName' => 'dimensionValueOperator', ], 'startTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'startTime', ], 'endTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'endTime', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListMetricValuesResponse' => [ 'type' => 'structure', 'members' => [ 'metricDatumList' => [ 'shape' => 'MetricDatumList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListMitigationActionsRequest' => [ 'type' => 'structure', 'members' => [ 'actionType' => [ 'shape' => 'MitigationActionType', 'location' => 'querystring', 'locationName' => 'actionType', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListMitigationActionsResponse' => [ 'type' => 'structure', 'members' => [ 'actionIdentifiers' => [ 'shape' => 'MitigationActionIdentifierList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListOTAUpdatesRequest' => [ 'type' => 'structure', 'members' => [ 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'otaUpdateStatus' => [ 'shape' => 'OTAUpdateStatus', 'location' => 'querystring', 'locationName' => 'otaUpdateStatus', ], ], ], 'ListOTAUpdatesResponse' => [ 'type' => 'structure', 'members' => [ 'otaUpdates' => [ 'shape' => 'OTAUpdatesSummary', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListOutgoingCertificatesRequest' => [ 'type' => 'structure', 'members' => [ 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListOutgoingCertificatesResponse' => [ 'type' => 'structure', 'members' => [ 'outgoingCertificates' => [ 'shape' => 'OutgoingCertificates', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListPackageVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], 'status' => [ 'shape' => 'PackageVersionStatus', 'location' => 'querystring', 'locationName' => 'status', ], 'maxResults' => [ 'shape' => 'PackageCatalogMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListPackageVersionsResponse' => [ 'type' => 'structure', 'members' => [ 'packageVersionSummaries' => [ 'shape' => 'PackageVersionSummaryList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListPackagesRequest' => [ 'type' => 'structure', 'members' => [ 'maxResults' => [ 'shape' => 'PackageCatalogMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListPackagesResponse' => [ 'type' => 'structure', 'members' => [ 'packageSummaries' => [ 'shape' => 'PackageSummaryList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListPoliciesRequest' => [ 'type' => 'structure', 'members' => [ 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListPoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'policies' => [ 'shape' => 'Policies', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListPolicyPrincipalsRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'header', 'locationName' => 'x-amzn-iot-policy', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListPolicyPrincipalsResponse' => [ 'type' => 'structure', 'members' => [ 'principals' => [ 'shape' => 'Principals', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListPolicyVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], ], ], 'ListPolicyVersionsResponse' => [ 'type' => 'structure', 'members' => [ 'policyVersions' => [ 'shape' => 'PolicyVersions', ], ], ], 'ListPrincipalPoliciesRequest' => [ 'type' => 'structure', 'required' => [ 'principal', ], 'members' => [ 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-iot-principal', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListPrincipalPoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'policies' => [ 'shape' => 'Policies', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListPrincipalThingsRequest' => [ 'type' => 'structure', 'required' => [ 'principal', ], 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-principal', ], ], ], 'ListPrincipalThingsResponse' => [ 'type' => 'structure', 'members' => [ 'things' => [ 'shape' => 'ThingNameList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListProvisioningTemplateVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListProvisioningTemplateVersionsResponse' => [ 'type' => 'structure', 'members' => [ 'versions' => [ 'shape' => 'ProvisioningTemplateVersionListing', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListProvisioningTemplatesRequest' => [ 'type' => 'structure', 'members' => [ 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListProvisioningTemplatesResponse' => [ 'type' => 'structure', 'members' => [ 'templates' => [ 'shape' => 'ProvisioningTemplateListing', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListRelatedResourcesForAuditFindingRequest' => [ 'type' => 'structure', 'required' => [ 'findingId', ], 'members' => [ 'findingId' => [ 'shape' => 'FindingId', 'location' => 'querystring', 'locationName' => 'findingId', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListRelatedResourcesForAuditFindingResponse' => [ 'type' => 'structure', 'members' => [ 'relatedResources' => [ 'shape' => 'RelatedResources', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListRoleAliasesRequest' => [ 'type' => 'structure', 'members' => [ 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListRoleAliasesResponse' => [ 'type' => 'structure', 'members' => [ 'roleAliases' => [ 'shape' => 'RoleAliases', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListScheduledAuditsRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListScheduledAuditsResponse' => [ 'type' => 'structure', 'members' => [ 'scheduledAudits' => [ 'shape' => 'ScheduledAuditMetadataList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListSecurityProfilesForTargetRequest' => [ 'type' => 'structure', 'required' => [ 'securityProfileTargetArn', ], 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'recursive' => [ 'shape' => 'Recursive', 'location' => 'querystring', 'locationName' => 'recursive', ], 'securityProfileTargetArn' => [ 'shape' => 'SecurityProfileTargetArn', 'location' => 'querystring', 'locationName' => 'securityProfileTargetArn', ], ], ], 'ListSecurityProfilesForTargetResponse' => [ 'type' => 'structure', 'members' => [ 'securityProfileTargetMappings' => [ 'shape' => 'SecurityProfileTargetMappings', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListSecurityProfilesRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'dimensionName' => [ 'shape' => 'DimensionName', 'location' => 'querystring', 'locationName' => 'dimensionName', ], 'metricName' => [ 'shape' => 'MetricName', 'location' => 'querystring', 'locationName' => 'metricName', ], ], ], 'ListSecurityProfilesResponse' => [ 'type' => 'structure', 'members' => [ 'securityProfileIdentifiers' => [ 'shape' => 'SecurityProfileIdentifiers', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListStreamsRequest' => [ 'type' => 'structure', 'members' => [ 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListStreamsResponse' => [ 'type' => 'structure', 'members' => [ 'streams' => [ 'shape' => 'StreamsSummary', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListSuppressedAlerts' => [ 'type' => 'boolean', ], 'ListSuppressedFindings' => [ 'type' => 'boolean', ], 'ListTagsForResourceRequest' => [ 'type' => 'structure', 'required' => [ 'resourceArn', ], 'members' => [ 'resourceArn' => [ 'shape' => 'ResourceArn', 'location' => 'querystring', 'locationName' => 'resourceArn', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListTagsForResourceResponse' => [ 'type' => 'structure', 'members' => [ 'tags' => [ 'shape' => 'TagList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListTargetsForPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], ], ], 'ListTargetsForPolicyResponse' => [ 'type' => 'structure', 'members' => [ 'targets' => [ 'shape' => 'PolicyTargets', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListTargetsForSecurityProfileRequest' => [ 'type' => 'structure', 'required' => [ 'securityProfileName', ], 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'uri', 'locationName' => 'securityProfileName', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListTargetsForSecurityProfileResponse' => [ 'type' => 'structure', 'members' => [ 'securityProfileTargets' => [ 'shape' => 'SecurityProfileTargets', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingGroupsForThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListThingGroupsForThingResponse' => [ 'type' => 'structure', 'members' => [ 'thingGroups' => [ 'shape' => 'ThingGroupNameAndArnList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingGroupsRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'parentGroup' => [ 'shape' => 'ThingGroupName', 'location' => 'querystring', 'locationName' => 'parentGroup', ], 'namePrefixFilter' => [ 'shape' => 'ThingGroupName', 'location' => 'querystring', 'locationName' => 'namePrefixFilter', ], 'recursive' => [ 'shape' => 'RecursiveWithoutDefault', 'location' => 'querystring', 'locationName' => 'recursive', ], ], ], 'ListThingGroupsResponse' => [ 'type' => 'structure', 'members' => [ 'thingGroups' => [ 'shape' => 'ThingGroupNameAndArnList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingPrincipalsRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], ], ], 'ListThingPrincipalsResponse' => [ 'type' => 'structure', 'members' => [ 'principals' => [ 'shape' => 'Principals', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingRegistrationTaskReportsRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', 'reportType', ], 'members' => [ 'taskId' => [ 'shape' => 'TaskId', 'location' => 'uri', 'locationName' => 'taskId', ], 'reportType' => [ 'shape' => 'ReportType', 'location' => 'querystring', 'locationName' => 'reportType', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListThingRegistrationTaskReportsResponse' => [ 'type' => 'structure', 'members' => [ 'resourceLinks' => [ 'shape' => 'S3FileUrlList', ], 'reportType' => [ 'shape' => 'ReportType', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingRegistrationTasksRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'status' => [ 'shape' => 'Status', 'location' => 'querystring', 'locationName' => 'status', ], ], ], 'ListThingRegistrationTasksResponse' => [ 'type' => 'structure', 'members' => [ 'taskIds' => [ 'shape' => 'TaskIdList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingTypesRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'querystring', 'locationName' => 'thingTypeName', ], ], ], 'ListThingTypesResponse' => [ 'type' => 'structure', 'members' => [ 'thingTypes' => [ 'shape' => 'ThingTypeList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingsInBillingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'billingGroupName', ], 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', 'location' => 'uri', 'locationName' => 'billingGroupName', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListThingsInBillingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'things' => [ 'shape' => 'ThingNameList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingsInThingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'thingGroupName', ], 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'uri', 'locationName' => 'thingGroupName', ], 'recursive' => [ 'shape' => 'Recursive', 'location' => 'querystring', 'locationName' => 'recursive', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListThingsInThingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'things' => [ 'shape' => 'ThingNameList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingsRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'RegistryMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'attributeName' => [ 'shape' => 'AttributeName', 'location' => 'querystring', 'locationName' => 'attributeName', ], 'attributeValue' => [ 'shape' => 'AttributeValue', 'location' => 'querystring', 'locationName' => 'attributeValue', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'querystring', 'locationName' => 'thingTypeName', ], 'usePrefixAttributeValue' => [ 'shape' => 'usePrefixAttributeValue', 'location' => 'querystring', 'locationName' => 'usePrefixAttributeValue', ], ], ], 'ListThingsResponse' => [ 'type' => 'structure', 'members' => [ 'things' => [ 'shape' => 'ThingAttributeList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListTopicRuleDestinationsRequest' => [ 'type' => 'structure', 'members' => [ 'maxResults' => [ 'shape' => 'TopicRuleDestinationMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], ], ], 'ListTopicRuleDestinationsResponse' => [ 'type' => 'structure', 'members' => [ 'destinationSummaries' => [ 'shape' => 'TopicRuleDestinationSummaries', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListTopicRulesRequest' => [ 'type' => 'structure', 'members' => [ 'topic' => [ 'shape' => 'Topic', 'location' => 'querystring', 'locationName' => 'topic', ], 'maxResults' => [ 'shape' => 'TopicRuleMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'ruleDisabled' => [ 'shape' => 'IsDisabled', 'location' => 'querystring', 'locationName' => 'ruleDisabled', ], ], ], 'ListTopicRulesResponse' => [ 'type' => 'structure', 'members' => [ 'rules' => [ 'shape' => 'TopicRuleList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListV2LoggingLevelsRequest' => [ 'type' => 'structure', 'members' => [ 'targetType' => [ 'shape' => 'LogTargetType', 'location' => 'querystring', 'locationName' => 'targetType', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'SkyfallMaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListV2LoggingLevelsResponse' => [ 'type' => 'structure', 'members' => [ 'logTargetConfigurations' => [ 'shape' => 'LogTargetConfigurations', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListViolationEventsRequest' => [ 'type' => 'structure', 'required' => [ 'startTime', 'endTime', ], 'members' => [ 'startTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'startTime', ], 'endTime' => [ 'shape' => 'Timestamp', 'location' => 'querystring', 'locationName' => 'endTime', ], 'thingName' => [ 'shape' => 'DeviceDefenderThingName', 'location' => 'querystring', 'locationName' => 'thingName', ], 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'querystring', 'locationName' => 'securityProfileName', ], 'behaviorCriteriaType' => [ 'shape' => 'BehaviorCriteriaType', 'location' => 'querystring', 'locationName' => 'behaviorCriteriaType', ], 'listSuppressedAlerts' => [ 'shape' => 'ListSuppressedAlerts', 'location' => 'querystring', 'locationName' => 'listSuppressedAlerts', ], 'verificationState' => [ 'shape' => 'VerificationState', 'location' => 'querystring', 'locationName' => 'verificationState', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], ], ], 'ListViolationEventsResponse' => [ 'type' => 'structure', 'members' => [ 'violationEvents' => [ 'shape' => 'ViolationEvents', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'LocationAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'trackerName', 'deviceId', 'latitude', 'longitude', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'trackerName' => [ 'shape' => 'String', ], 'deviceId' => [ 'shape' => 'String', ], 'timestamp' => [ 'shape' => 'LocationTimestamp', ], 'latitude' => [ 'shape' => 'String', ], 'longitude' => [ 'shape' => 'String', ], ], ], 'LocationTimestamp' => [ 'type' => 'structure', 'required' => [ 'value', ], 'members' => [ 'value' => [ 'shape' => 'String', ], 'unit' => [ 'shape' => 'String', ], ], ], 'LogGroupName' => [ 'type' => 'string', ], 'LogLevel' => [ 'type' => 'string', 'enum' => [ 'DEBUG', 'INFO', 'ERROR', 'WARN', 'DISABLED', ], ], 'LogTarget' => [ 'type' => 'structure', 'required' => [ 'targetType', ], 'members' => [ 'targetType' => [ 'shape' => 'LogTargetType', ], 'targetName' => [ 'shape' => 'LogTargetName', ], ], ], 'LogTargetConfiguration' => [ 'type' => 'structure', 'members' => [ 'logTarget' => [ 'shape' => 'LogTarget', ], 'logLevel' => [ 'shape' => 'LogLevel', ], ], ], 'LogTargetConfigurations' => [ 'type' => 'list', 'member' => [ 'shape' => 'LogTargetConfiguration', ], ], 'LogTargetName' => [ 'type' => 'string', ], 'LogTargetType' => [ 'type' => 'string', 'enum' => [ 'DEFAULT', 'THING_GROUP', 'CLIENT_ID', 'SOURCE_IP', 'PRINCIPAL_ID', ], ], 'LoggingOptionsPayload' => [ 'type' => 'structure', 'required' => [ 'roleArn', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'logLevel' => [ 'shape' => 'LogLevel', ], ], ], 'MachineLearningDetectionConfig' => [ 'type' => 'structure', 'required' => [ 'confidenceLevel', ], 'members' => [ 'confidenceLevel' => [ 'shape' => 'ConfidenceLevel', ], ], ], 'MaintenanceWindow' => [ 'type' => 'structure', 'required' => [ 'startTime', 'durationInMinutes', ], 'members' => [ 'startTime' => [ 'shape' => 'CronExpression', ], 'durationInMinutes' => [ 'shape' => 'DurationInMinutes', ], ], ], 'MaintenanceWindows' => [ 'type' => 'list', 'member' => [ 'shape' => 'MaintenanceWindow', ], ], 'MalformedPolicyException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'ManagedJobTemplateName' => [ 'type' => 'string', 'max' => 64, 'min' => 1, ], 'ManagedJobTemplateSummary' => [ 'type' => 'structure', 'members' => [ 'templateArn' => [ 'shape' => 'JobTemplateArn', ], 'templateName' => [ 'shape' => 'ManagedJobTemplateName', ], 'description' => [ 'shape' => 'JobDescription', ], 'environments' => [ 'shape' => 'Environments', ], 'templateVersion' => [ 'shape' => 'ManagedTemplateVersion', ], ], ], 'ManagedJobTemplatesSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedJobTemplateSummary', ], ], 'ManagedTemplateVersion' => [ 'type' => 'string', 'pattern' => '^[1-9]+.[0-9]+', ], 'Marker' => [ 'type' => 'string', 'max' => 1024, 'pattern' => '[A-Za-z0-9+/]+={0,2}', ], 'MaxBuckets' => [ 'type' => 'integer', 'max' => 10000, 'min' => 1, ], 'MaxJobExecutionsPerMin' => [ 'type' => 'integer', 'min' => 1, ], 'MaxResults' => [ 'type' => 'integer', 'max' => 250, 'min' => 1, ], 'Maximum' => [ 'type' => 'double', ], 'MaximumPerMinute' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'Message' => [ 'type' => 'string', 'max' => 128, 'pattern' => '[\\s\\S]*', ], 'MessageExpiry' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, ], 'MessageFormat' => [ 'type' => 'string', 'enum' => [ 'RAW', 'JSON', ], ], 'MessageId' => [ 'type' => 'string', 'max' => 128, ], 'MetricDatum' => [ 'type' => 'structure', 'members' => [ 'timestamp' => [ 'shape' => 'Timestamp', ], 'value' => [ 'shape' => 'MetricValue', ], ], ], 'MetricDatumList' => [ 'type' => 'list', 'member' => [ 'shape' => 'MetricDatum', ], ], 'MetricDimension' => [ 'type' => 'structure', 'required' => [ 'dimensionName', ], 'members' => [ 'dimensionName' => [ 'shape' => 'DimensionName', ], 'operator' => [ 'shape' => 'DimensionValueOperator', ], ], ], 'MetricName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'MetricNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'MetricName', ], ], 'MetricToRetain' => [ 'type' => 'structure', 'required' => [ 'metric', ], 'members' => [ 'metric' => [ 'shape' => 'BehaviorMetric', ], 'metricDimension' => [ 'shape' => 'MetricDimension', ], 'exportMetric' => [ 'shape' => 'ExportMetric', ], ], ], 'MetricValue' => [ 'type' => 'structure', 'members' => [ 'count' => [ 'shape' => 'UnsignedLong', ], 'cidrs' => [ 'shape' => 'Cidrs', ], 'ports' => [ 'shape' => 'Ports', ], 'number' => [ 'shape' => 'Number', ], 'numbers' => [ 'shape' => 'NumberList', ], 'strings' => [ 'shape' => 'StringList', ], ], ], 'MetricsExportConfig' => [ 'type' => 'structure', 'required' => [ 'mqttTopic', 'roleArn', ], 'members' => [ 'mqttTopic' => [ 'shape' => 'MqttTopic', ], 'roleArn' => [ 'shape' => 'RoleArn', ], ], ], 'Minimum' => [ 'type' => 'double', ], 'MinimumNumberOfExecutedThings' => [ 'type' => 'integer', 'min' => 1, ], 'MissingContextValue' => [ 'type' => 'string', ], 'MissingContextValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'MissingContextValue', ], ], 'MitigationAction' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'MitigationActionName', ], 'id' => [ 'shape' => 'MitigationActionId', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'actionParams' => [ 'shape' => 'MitigationActionParams', ], ], ], 'MitigationActionArn' => [ 'type' => 'string', ], 'MitigationActionId' => [ 'type' => 'string', ], 'MitigationActionIdentifier' => [ 'type' => 'structure', 'members' => [ 'actionName' => [ 'shape' => 'MitigationActionName', ], 'actionArn' => [ 'shape' => 'MitigationActionArn', ], 'creationDate' => [ 'shape' => 'Timestamp', ], ], ], 'MitigationActionIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'MitigationActionIdentifier', ], ], 'MitigationActionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'MitigationAction', ], ], 'MitigationActionName' => [ 'type' => 'string', 'max' => 128, 'pattern' => '[a-zA-Z0-9_-]+', ], 'MitigationActionNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'MitigationActionName', ], 'max' => 5, 'min' => 1, ], 'MitigationActionParams' => [ 'type' => 'structure', 'members' => [ 'updateDeviceCertificateParams' => [ 'shape' => 'UpdateDeviceCertificateParams', ], 'updateCACertificateParams' => [ 'shape' => 'UpdateCACertificateParams', ], 'addThingsToThingGroupParams' => [ 'shape' => 'AddThingsToThingGroupParams', ], 'replaceDefaultPolicyVersionParams' => [ 'shape' => 'ReplaceDefaultPolicyVersionParams', ], 'enableIoTLoggingParams' => [ 'shape' => 'EnableIoTLoggingParams', ], 'publishFindingToSnsParams' => [ 'shape' => 'PublishFindingToSnsParams', ], ], ], 'MitigationActionType' => [ 'type' => 'string', 'enum' => [ 'UPDATE_DEVICE_CERTIFICATE', 'UPDATE_CA_CERTIFICATE', 'ADD_THINGS_TO_THING_GROUP', 'REPLACE_DEFAULT_POLICY_VERSION', 'ENABLE_IOT_LOGGING', 'PUBLISH_FINDING_TO_SNS', ], ], 'MitigationActionsTaskId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'ModelStatus' => [ 'type' => 'string', 'enum' => [ 'PENDING_BUILD', 'ACTIVE', 'EXPIRED', ], ], 'MqttClientId' => [ 'type' => 'string', 'max' => 65535, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'MqttContext' => [ 'type' => 'structure', 'members' => [ 'username' => [ 'shape' => 'MqttUsername', ], 'password' => [ 'shape' => 'MqttPassword', ], 'clientId' => [ 'shape' => 'MqttClientId', ], ], ], 'MqttHeaders' => [ 'type' => 'structure', 'members' => [ 'payloadFormatIndicator' => [ 'shape' => 'PayloadFormatIndicator', ], 'contentType' => [ 'shape' => 'ContentType', ], 'responseTopic' => [ 'shape' => 'ResponseTopic', ], 'correlationData' => [ 'shape' => 'CorrelationData', ], 'messageExpiry' => [ 'shape' => 'MessageExpiry', ], 'userProperties' => [ 'shape' => 'UserProperties', ], ], ], 'MqttPassword' => [ 'type' => 'blob', 'max' => 65535, 'min' => 1, ], 'MqttTopic' => [ 'type' => 'string', 'max' => 512, 'min' => 1, ], 'MqttUsername' => [ 'type' => 'string', 'max' => 65535, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'NamedShadowIndexingMode' => [ 'type' => 'string', 'enum' => [ 'OFF', 'ON', ], ], 'NamedShadowNamesFilter' => [ 'type' => 'list', 'member' => [ 'shape' => 'ShadowName', ], ], 'NamespaceId' => [ 'type' => 'string', 'pattern' => '[a-zA-Z0-9_-]+', ], 'NextToken' => [ 'type' => 'string', ], 'NonCompliantChecksCount' => [ 'type' => 'integer', ], 'NonCompliantResource' => [ 'type' => 'structure', 'members' => [ 'resourceType' => [ 'shape' => 'ResourceType', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], 'additionalInfo' => [ 'shape' => 'StringMap', ], ], ], 'NonCompliantResourcesCount' => [ 'type' => 'long', ], 'NotConfiguredException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NullableBoolean' => [ 'type' => 'boolean', ], 'Number' => [ 'type' => 'double', ], 'NumberList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Number', ], ], 'NumberOfRetries' => [ 'type' => 'integer', 'max' => 10, 'min' => 0, ], 'NumberOfThings' => [ 'type' => 'integer', 'min' => 1, ], 'OTAUpdateArn' => [ 'type' => 'string', ], 'OTAUpdateDescription' => [ 'type' => 'string', 'max' => 2028, 'pattern' => '[^\\p{C}]+', ], 'OTAUpdateErrorMessage' => [ 'type' => 'string', ], 'OTAUpdateFile' => [ 'type' => 'structure', 'members' => [ 'fileName' => [ 'shape' => 'FileName', ], 'fileType' => [ 'shape' => 'FileType', ], 'fileVersion' => [ 'shape' => 'OTAUpdateFileVersion', ], 'fileLocation' => [ 'shape' => 'FileLocation', ], 'codeSigning' => [ 'shape' => 'CodeSigning', ], 'attributes' => [ 'shape' => 'AttributesMap', ], ], ], 'OTAUpdateFileVersion' => [ 'type' => 'string', ], 'OTAUpdateFiles' => [ 'type' => 'list', 'member' => [ 'shape' => 'OTAUpdateFile', ], 'min' => 1, ], 'OTAUpdateId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'OTAUpdateInfo' => [ 'type' => 'structure', 'members' => [ 'otaUpdateId' => [ 'shape' => 'OTAUpdateId', ], 'otaUpdateArn' => [ 'shape' => 'OTAUpdateArn', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'description' => [ 'shape' => 'OTAUpdateDescription', ], 'targets' => [ 'shape' => 'Targets', ], 'protocols' => [ 'shape' => 'Protocols', ], 'awsJobExecutionsRolloutConfig' => [ 'shape' => 'AwsJobExecutionsRolloutConfig', ], 'awsJobPresignedUrlConfig' => [ 'shape' => 'AwsJobPresignedUrlConfig', ], 'targetSelection' => [ 'shape' => 'TargetSelection', ], 'otaUpdateFiles' => [ 'shape' => 'OTAUpdateFiles', ], 'otaUpdateStatus' => [ 'shape' => 'OTAUpdateStatus', ], 'awsIotJobId' => [ 'shape' => 'AwsIotJobId', ], 'awsIotJobArn' => [ 'shape' => 'AwsIotJobArn', ], 'errorInfo' => [ 'shape' => 'ErrorInfo', ], 'additionalParameters' => [ 'shape' => 'AdditionalParameterMap', ], ], ], 'OTAUpdateStatus' => [ 'type' => 'string', 'enum' => [ 'CREATE_PENDING', 'CREATE_IN_PROGRESS', 'CREATE_COMPLETE', 'CREATE_FAILED', 'DELETE_IN_PROGRESS', 'DELETE_FAILED', ], ], 'OTAUpdateSummary' => [ 'type' => 'structure', 'members' => [ 'otaUpdateId' => [ 'shape' => 'OTAUpdateId', ], 'otaUpdateArn' => [ 'shape' => 'OTAUpdateArn', ], 'creationDate' => [ 'shape' => 'DateType', ], ], ], 'OTAUpdatesSummary' => [ 'type' => 'list', 'member' => [ 'shape' => 'OTAUpdateSummary', ], ], 'OpenSearchAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'endpoint', 'index', 'type', 'id', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'endpoint' => [ 'shape' => 'ElasticsearchEndpoint', ], 'index' => [ 'shape' => 'ElasticsearchIndex', ], 'type' => [ 'shape' => 'ElasticsearchType', ], 'id' => [ 'shape' => 'ElasticsearchId', ], ], ], 'Optional' => [ 'type' => 'boolean', ], 'OptionalVersion' => [ 'type' => 'long', ], 'OutgoingCertificate' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'transferredTo' => [ 'shape' => 'AwsAccountId', ], 'transferDate' => [ 'shape' => 'DateType', ], 'transferMessage' => [ 'shape' => 'Message', ], 'creationDate' => [ 'shape' => 'DateType', ], ], ], 'OutgoingCertificates' => [ 'type' => 'list', 'member' => [ 'shape' => 'OutgoingCertificate', ], ], 'OverrideDynamicGroups' => [ 'type' => 'boolean', ], 'PackageArn' => [ 'type' => 'string', ], 'PackageCatalogMaxResults' => [ 'type' => 'integer', 'box' => true, 'max' => 100, 'min' => 1, ], 'PackageName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9-_.]+', ], 'PackageSummary' => [ 'type' => 'structure', 'members' => [ 'packageName' => [ 'shape' => 'PackageName', ], 'defaultVersionName' => [ 'shape' => 'VersionName', ], 'creationDate' => [ 'shape' => 'CreationDate', ], 'lastModifiedDate' => [ 'shape' => 'LastModifiedDate', ], ], ], 'PackageSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PackageSummary', ], ], 'PackageVersionAction' => [ 'type' => 'string', 'enum' => [ 'PUBLISH', 'DEPRECATE', ], ], 'PackageVersionArn' => [ 'type' => 'string', 'max' => 1600, 'min' => 1, 'pattern' => '^arn:[!-~]+$', ], 'PackageVersionErrorReason' => [ 'type' => 'string', ], 'PackageVersionStatus' => [ 'type' => 'string', 'enum' => [ 'DRAFT', 'PUBLISHED', 'DEPRECATED', ], ], 'PackageVersionSummary' => [ 'type' => 'structure', 'members' => [ 'packageName' => [ 'shape' => 'PackageName', ], 'versionName' => [ 'shape' => 'VersionName', ], 'status' => [ 'shape' => 'PackageVersionStatus', ], 'creationDate' => [ 'shape' => 'CreationDate', ], 'lastModifiedDate' => [ 'shape' => 'LastModifiedDate', ], ], ], 'PackageVersionSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PackageVersionSummary', ], ], 'PageSize' => [ 'type' => 'integer', 'max' => 250, 'min' => 1, ], 'Parameter' => [ 'type' => 'string', 'max' => 2048, 'min' => 0, 'pattern' => '[\\s\\S]*', ], 'ParameterKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'ParameterMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'ParameterKey', ], 'value' => [ 'shape' => 'ParameterValue', ], ], 'ParameterValue' => [ 'type' => 'string', 'max' => 512, 'min' => 1, 'pattern' => '[^\\p{C}]+', ], 'Parameters' => [ 'type' => 'map', 'key' => [ 'shape' => 'Parameter', ], 'value' => [ 'shape' => 'Value', ], ], 'PartitionKey' => [ 'type' => 'string', ], 'PayloadField' => [ 'type' => 'string', ], 'PayloadFormatIndicator' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, ], 'PayloadVersion' => [ 'type' => 'string', 'max' => 32, 'min' => 10, 'pattern' => '^[0-9-]+$', ], 'Percent' => [ 'type' => 'double', 'max' => 100, 'min' => 0, ], 'PercentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Percent', ], ], 'PercentPair' => [ 'type' => 'structure', 'members' => [ 'percent' => [ 'shape' => 'Percent', ], 'value' => [ 'shape' => 'PercentValue', ], ], ], 'PercentValue' => [ 'type' => 'double', ], 'Percentage' => [ 'type' => 'integer', 'max' => 100, 'min' => 0, ], 'Percentiles' => [ 'type' => 'list', 'member' => [ 'shape' => 'PercentPair', ], ], 'Platform' => [ 'type' => 'string', ], 'Policies' => [ 'type' => 'list', 'member' => [ 'shape' => 'Policy', ], ], 'Policy' => [ 'type' => 'structure', 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', ], 'policyArn' => [ 'shape' => 'PolicyArn', ], ], ], 'PolicyArn' => [ 'type' => 'string', ], 'PolicyDocument' => [ 'type' => 'string', 'max' => 404600, 'min' => 0, 'pattern' => '[\\s\\S]*', ], 'PolicyDocuments' => [ 'type' => 'list', 'member' => [ 'shape' => 'PolicyDocument', ], ], 'PolicyName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w+=,.@-]+', ], 'PolicyNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'PolicyName', ], ], 'PolicyTarget' => [ 'type' => 'string', ], 'PolicyTargets' => [ 'type' => 'list', 'member' => [ 'shape' => 'PolicyTarget', ], ], 'PolicyTemplateName' => [ 'type' => 'string', 'enum' => [ 'BLANK_POLICY', ], ], 'PolicyVersion' => [ 'type' => 'structure', 'members' => [ 'versionId' => [ 'shape' => 'PolicyVersionId', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], 'createDate' => [ 'shape' => 'DateType', ], ], ], 'PolicyVersionId' => [ 'type' => 'string', 'pattern' => '[0-9]+', ], 'PolicyVersionIdentifier' => [ 'type' => 'structure', 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', ], ], ], 'PolicyVersions' => [ 'type' => 'list', 'member' => [ 'shape' => 'PolicyVersion', ], ], 'Port' => [ 'type' => 'integer', 'max' => 65535, 'min' => 0, ], 'Ports' => [ 'type' => 'list', 'member' => [ 'shape' => 'Port', ], ], 'Prefix' => [ 'type' => 'string', ], 'PresignedUrlConfig' => [ 'type' => 'structure', 'members' => [ 'roleArn' => [ 'shape' => 'RoleArn', ], 'expiresInSec' => [ 'shape' => 'ExpiresInSec', ], ], ], 'PrimitiveBoolean' => [ 'type' => 'boolean', ], 'Principal' => [ 'type' => 'string', ], 'PrincipalArn' => [ 'type' => 'string', ], 'PrincipalId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9]+', ], 'Principals' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrincipalArn', ], ], 'PrivateKey' => [ 'type' => 'string', 'min' => 1, 'sensitive' => true, ], 'ProcessingTargetName' => [ 'type' => 'string', ], 'ProcessingTargetNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProcessingTargetName', ], ], 'Protocol' => [ 'type' => 'string', 'enum' => [ 'MQTT', 'HTTP', ], ], 'Protocols' => [ 'type' => 'list', 'member' => [ 'shape' => 'Protocol', ], 'max' => 2, 'min' => 1, ], 'ProvisioningHook' => [ 'type' => 'structure', 'required' => [ 'targetArn', ], 'members' => [ 'payloadVersion' => [ 'shape' => 'PayloadVersion', ], 'targetArn' => [ 'shape' => 'TargetArn', ], ], ], 'ProvisioningTemplateListing' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProvisioningTemplateSummary', ], ], 'ProvisioningTemplateSummary' => [ 'type' => 'structure', 'members' => [ 'templateArn' => [ 'shape' => 'TemplateArn', ], 'templateName' => [ 'shape' => 'TemplateName', ], 'description' => [ 'shape' => 'TemplateDescription', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'enabled' => [ 'shape' => 'Enabled', ], 'type' => [ 'shape' => 'TemplateType', ], ], ], 'ProvisioningTemplateVersionListing' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProvisioningTemplateVersionSummary', ], ], 'ProvisioningTemplateVersionSummary' => [ 'type' => 'structure', 'members' => [ 'versionId' => [ 'shape' => 'TemplateVersionId', ], 'creationDate' => [ 'shape' => 'DateType', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], ], ], 'PublicKey' => [ 'type' => 'string', 'min' => 1, ], 'PublicKeyMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'KeyName', ], 'value' => [ 'shape' => 'KeyValue', ], ], 'PublishFindingToSnsParams' => [ 'type' => 'structure', 'required' => [ 'topicArn', ], 'members' => [ 'topicArn' => [ 'shape' => 'SnsTopicArn', ], ], ], 'PutAssetPropertyValueEntry' => [ 'type' => 'structure', 'required' => [ 'propertyValues', ], 'members' => [ 'entryId' => [ 'shape' => 'AssetPropertyEntryId', ], 'assetId' => [ 'shape' => 'AssetId', ], 'propertyId' => [ 'shape' => 'AssetPropertyId', ], 'propertyAlias' => [ 'shape' => 'AssetPropertyAlias', ], 'propertyValues' => [ 'shape' => 'AssetPropertyValueList', ], ], ], 'PutAssetPropertyValueEntryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PutAssetPropertyValueEntry', ], 'min' => 1, ], 'PutItemInput' => [ 'type' => 'structure', 'required' => [ 'tableName', ], 'members' => [ 'tableName' => [ 'shape' => 'TableName', ], ], ], 'PutVerificationStateOnViolationRequest' => [ 'type' => 'structure', 'required' => [ 'violationId', 'verificationState', ], 'members' => [ 'violationId' => [ 'shape' => 'ViolationId', 'location' => 'uri', 'locationName' => 'violationId', ], 'verificationState' => [ 'shape' => 'VerificationState', ], 'verificationStateDescription' => [ 'shape' => 'VerificationStateDescription', ], ], ], 'PutVerificationStateOnViolationResponse' => [ 'type' => 'structure', 'members' => [], ], 'Qos' => [ 'type' => 'integer', 'max' => 1, 'min' => 0, ], 'QueryMaxResults' => [ 'type' => 'integer', 'max' => 500, 'min' => 1, ], 'QueryString' => [ 'type' => 'string', 'min' => 1, ], 'QueryVersion' => [ 'type' => 'string', ], 'QueueUrl' => [ 'type' => 'string', ], 'QueuedThings' => [ 'type' => 'integer', ], 'RangeKeyField' => [ 'type' => 'string', ], 'RangeKeyValue' => [ 'type' => 'string', ], 'RateIncreaseCriteria' => [ 'type' => 'structure', 'members' => [ 'numberOfNotifiedThings' => [ 'shape' => 'NumberOfThings', ], 'numberOfSucceededThings' => [ 'shape' => 'NumberOfThings', ], ], ], 'ReasonCode' => [ 'type' => 'string', 'max' => 128, 'pattern' => '[\\p{Upper}\\p{Digit}_]+', ], 'ReasonForNonCompliance' => [ 'type' => 'string', ], 'ReasonForNonComplianceCode' => [ 'type' => 'string', ], 'ReasonForNonComplianceCodes' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReasonForNonComplianceCode', ], 'max' => 25, 'min' => 1, ], 'Recursive' => [ 'type' => 'boolean', ], 'RecursiveWithoutDefault' => [ 'type' => 'boolean', ], 'Regex' => [ 'type' => 'string', ], 'RegisterCACertificateRequest' => [ 'type' => 'structure', 'required' => [ 'caCertificate', ], 'members' => [ 'caCertificate' => [ 'shape' => 'CertificatePem', ], 'verificationCertificate' => [ 'shape' => 'CertificatePem', ], 'setAsActive' => [ 'shape' => 'SetAsActive', 'location' => 'querystring', 'locationName' => 'setAsActive', ], 'allowAutoRegistration' => [ 'shape' => 'AllowAutoRegistration', 'location' => 'querystring', 'locationName' => 'allowAutoRegistration', ], 'registrationConfig' => [ 'shape' => 'RegistrationConfig', ], 'tags' => [ 'shape' => 'TagList', ], 'certificateMode' => [ 'shape' => 'CertificateMode', ], ], ], 'RegisterCACertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], ], ], 'RegisterCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificatePem', ], 'members' => [ 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'caCertificatePem' => [ 'shape' => 'CertificatePem', ], 'setAsActive' => [ 'shape' => 'SetAsActiveFlag', 'deprecated' => true, 'location' => 'querystring', 'locationName' => 'setAsActive', ], 'status' => [ 'shape' => 'CertificateStatus', ], ], ], 'RegisterCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], ], ], 'RegisterCertificateWithoutCARequest' => [ 'type' => 'structure', 'required' => [ 'certificatePem', ], 'members' => [ 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'status' => [ 'shape' => 'CertificateStatus', ], ], ], 'RegisterCertificateWithoutCAResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], ], ], 'RegisterThingRequest' => [ 'type' => 'structure', 'required' => [ 'templateBody', ], 'members' => [ 'templateBody' => [ 'shape' => 'TemplateBody', ], 'parameters' => [ 'shape' => 'Parameters', ], ], ], 'RegisterThingResponse' => [ 'type' => 'structure', 'members' => [ 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'resourceArns' => [ 'shape' => 'ResourceArns', ], ], ], 'RegistrationCode' => [ 'type' => 'string', 'max' => 64, 'min' => 64, 'pattern' => '(0x)?[a-fA-F0-9]+', ], 'RegistrationCodeValidationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'RegistrationConfig' => [ 'type' => 'structure', 'members' => [ 'templateBody' => [ 'shape' => 'TemplateBody', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'templateName' => [ 'shape' => 'TemplateName', ], ], ], 'RegistryMaxResults' => [ 'type' => 'integer', 'max' => 250, 'min' => 1, ], 'RegistryS3BucketName' => [ 'type' => 'string', 'max' => 256, 'min' => 3, 'pattern' => '[a-zA-Z0-9._-]+', ], 'RegistryS3KeyName' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, 'pattern' => '[a-zA-Z0-9!_.*\'()-\\/]+', ], 'RejectCertificateTransferRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'rejectReason' => [ 'shape' => 'Message', ], ], ], 'RejectedThings' => [ 'type' => 'integer', ], 'RelatedResource' => [ 'type' => 'structure', 'members' => [ 'resourceType' => [ 'shape' => 'ResourceType', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], 'additionalInfo' => [ 'shape' => 'StringMap', ], ], ], 'RelatedResources' => [ 'type' => 'list', 'member' => [ 'shape' => 'RelatedResource', ], ], 'RemoveAuthorizerConfig' => [ 'type' => 'boolean', ], 'RemoveAutoRegistration' => [ 'type' => 'boolean', ], 'RemoveHook' => [ 'type' => 'boolean', ], 'RemoveThingFromBillingGroupRequest' => [ 'type' => 'structure', 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', ], 'billingGroupArn' => [ 'shape' => 'BillingGroupArn', ], 'thingName' => [ 'shape' => 'ThingName', ], 'thingArn' => [ 'shape' => 'ThingArn', ], ], ], 'RemoveThingFromBillingGroupResponse' => [ 'type' => 'structure', 'members' => [], ], 'RemoveThingFromThingGroupRequest' => [ 'type' => 'structure', 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', ], 'thingGroupArn' => [ 'shape' => 'ThingGroupArn', ], 'thingName' => [ 'shape' => 'ThingName', ], 'thingArn' => [ 'shape' => 'ThingArn', ], ], ], 'RemoveThingFromThingGroupResponse' => [ 'type' => 'structure', 'members' => [], ], 'RemoveThingType' => [ 'type' => 'boolean', ], 'RemovedThings' => [ 'type' => 'integer', ], 'ReplaceDefaultPolicyVersionParams' => [ 'type' => 'structure', 'required' => [ 'templateName', ], 'members' => [ 'templateName' => [ 'shape' => 'PolicyTemplateName', ], ], ], 'ReplaceTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', 'topicRulePayload', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], 'topicRulePayload' => [ 'shape' => 'TopicRulePayload', ], ], 'payload' => 'topicRulePayload', ], 'ReportType' => [ 'type' => 'string', 'enum' => [ 'ERRORS', 'RESULTS', ], ], 'RepublishAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'topic', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'topic' => [ 'shape' => 'TopicPattern', ], 'qos' => [ 'shape' => 'Qos', ], 'headers' => [ 'shape' => 'MqttHeaders', ], ], ], 'ReservedDomainConfigurationName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w.:-]+', ], 'Resource' => [ 'type' => 'string', 'max' => 2048, 'pattern' => '[\\s\\S]*', ], 'ResourceAlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], 'resourceId' => [ 'shape' => 'resourceId', ], 'resourceArn' => [ 'shape' => 'resourceArn', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'ResourceArn' => [ 'type' => 'string', ], 'ResourceArns' => [ 'type' => 'map', 'key' => [ 'shape' => 'ResourceLogicalId', ], 'value' => [ 'shape' => 'ResourceArn', ], ], 'ResourceAttributeKey' => [ 'type' => 'string', 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'ResourceAttributeValue' => [ 'type' => 'string', 'min' => 1, 'pattern' => '[^\\p{C}]+', ], 'ResourceAttributes' => [ 'type' => 'map', 'key' => [ 'shape' => 'ResourceAttributeKey', ], 'value' => [ 'shape' => 'ResourceAttributeValue', ], 'sensitive' => true, ], 'ResourceDescription' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, 'pattern' => '[^\\p{C}]+', 'sensitive' => true, ], 'ResourceIdentifier' => [ 'type' => 'structure', 'members' => [ 'deviceCertificateId' => [ 'shape' => 'CertificateId', ], 'caCertificateId' => [ 'shape' => 'CertificateId', ], 'cognitoIdentityPoolId' => [ 'shape' => 'CognitoIdentityPoolId', ], 'clientId' => [ 'shape' => 'ClientId', ], 'policyVersionIdentifier' => [ 'shape' => 'PolicyVersionIdentifier', ], 'account' => [ 'shape' => 'AwsAccountId', ], 'iamRoleArn' => [ 'shape' => 'RoleArn', ], 'roleAliasArn' => [ 'shape' => 'RoleAliasArn', ], 'issuerCertificateIdentifier' => [ 'shape' => 'IssuerCertificateIdentifier', ], 'deviceCertificateArn' => [ 'shape' => 'CertificateArn', ], ], ], 'ResourceLogicalId' => [ 'type' => 'string', ], 'ResourceNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'ResourceRegistrationFailureException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'ResourceType' => [ 'type' => 'string', 'enum' => [ 'DEVICE_CERTIFICATE', 'CA_CERTIFICATE', 'IOT_POLICY', 'COGNITO_IDENTITY_POOL', 'CLIENT_ID', 'ACCOUNT_SETTINGS', 'ROLE_ALIAS', 'IAM_ROLE', 'ISSUER_CERTIFICATE', ], ], 'Resources' => [ 'type' => 'list', 'member' => [ 'shape' => 'Resource', ], ], 'ResponseTopic' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, ], 'RetryAttempt' => [ 'type' => 'integer', ], 'RetryCriteria' => [ 'type' => 'structure', 'required' => [ 'failureType', 'numberOfRetries', ], 'members' => [ 'failureType' => [ 'shape' => 'RetryableFailureType', ], 'numberOfRetries' => [ 'shape' => 'NumberOfRetries', ], ], ], 'RetryCriteriaList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RetryCriteria', ], 'max' => 2, 'min' => 1, ], 'RetryableFailureType' => [ 'type' => 'string', 'enum' => [ 'FAILED', 'TIMED_OUT', 'ALL', ], ], 'RoleAlias' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w=,@-]+', ], 'RoleAliasArn' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, ], 'RoleAliasDescription' => [ 'type' => 'structure', 'members' => [ 'roleAlias' => [ 'shape' => 'RoleAlias', ], 'roleAliasArn' => [ 'shape' => 'RoleAliasArn', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'owner' => [ 'shape' => 'AwsAccountId', ], 'credentialDurationSeconds' => [ 'shape' => 'CredentialDurationSeconds', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], ], ], 'RoleAliases' => [ 'type' => 'list', 'member' => [ 'shape' => 'RoleAlias', ], ], 'RoleArn' => [ 'type' => 'string', 'max' => 2048, 'min' => 20, ], 'RolloutRatePerMinute' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'RuleArn' => [ 'type' => 'string', ], 'RuleName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '^[a-zA-Z0-9_]+$', ], 'S3Action' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'bucketName', 'key', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'bucketName' => [ 'shape' => 'BucketName', ], 'key' => [ 'shape' => 'Key', ], 'cannedAcl' => [ 'shape' => 'CannedAccessControlList', ], ], ], 'S3Bucket' => [ 'type' => 'string', 'min' => 1, ], 'S3Destination' => [ 'type' => 'structure', 'members' => [ 'bucket' => [ 'shape' => 'S3Bucket', ], 'prefix' => [ 'shape' => 'Prefix', ], ], ], 'S3FileUrl' => [ 'type' => 'string', 'max' => 65535, ], 'S3FileUrlList' => [ 'type' => 'list', 'member' => [ 'shape' => 'S3FileUrl', ], ], 'S3Key' => [ 'type' => 'string', 'min' => 1, ], 'S3Location' => [ 'type' => 'structure', 'members' => [ 'bucket' => [ 'shape' => 'S3Bucket', ], 'key' => [ 'shape' => 'S3Key', ], 'version' => [ 'shape' => 'S3Version', ], ], ], 'S3Version' => [ 'type' => 'string', ], 'SQL' => [ 'type' => 'string', ], 'SalesforceAction' => [ 'type' => 'structure', 'required' => [ 'token', 'url', ], 'members' => [ 'token' => [ 'shape' => 'SalesforceToken', ], 'url' => [ 'shape' => 'SalesforceEndpoint', ], ], ], 'SalesforceEndpoint' => [ 'type' => 'string', 'max' => 2000, 'pattern' => 'https://ingestion-[a-zA-Z0-9]{1,12}\\.[a-zA-Z0-9]+\\.((sfdc-matrix\\.net)|(sfdcnow\\.com))/streams/\\w{1,20}/\\w{1,20}/event', ], 'SalesforceToken' => [ 'type' => 'string', 'min' => 40, ], 'ScheduledAuditArn' => [ 'type' => 'string', ], 'ScheduledAuditMetadata' => [ 'type' => 'structure', 'members' => [ 'scheduledAuditName' => [ 'shape' => 'ScheduledAuditName', ], 'scheduledAuditArn' => [ 'shape' => 'ScheduledAuditArn', ], 'frequency' => [ 'shape' => 'AuditFrequency', ], 'dayOfMonth' => [ 'shape' => 'DayOfMonth', ], 'dayOfWeek' => [ 'shape' => 'DayOfWeek', ], ], ], 'ScheduledAuditMetadataList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledAuditMetadata', ], ], 'ScheduledAuditName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'ScheduledJobRollout' => [ 'type' => 'structure', 'members' => [ 'startTime' => [ 'shape' => 'StringDateTime', ], ], ], 'ScheduledJobRolloutList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledJobRollout', ], ], 'SchedulingConfig' => [ 'type' => 'structure', 'members' => [ 'startTime' => [ 'shape' => 'StringDateTime', ], 'endTime' => [ 'shape' => 'StringDateTime', ], 'endBehavior' => [ 'shape' => 'JobEndBehavior', ], 'maintenanceWindows' => [ 'shape' => 'MaintenanceWindows', ], ], ], 'SearchIndexRequest' => [ 'type' => 'structure', 'required' => [ 'queryString', ], 'members' => [ 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'maxResults' => [ 'shape' => 'SearchQueryMaxResults', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], ], ], 'SearchIndexResponse' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', ], 'things' => [ 'shape' => 'ThingDocumentList', ], 'thingGroups' => [ 'shape' => 'ThingGroupDocumentList', ], ], ], 'SearchQueryMaxResults' => [ 'type' => 'integer', 'min' => 1, ], 'SearchableAttributes' => [ 'type' => 'list', 'member' => [ 'shape' => 'AttributeName', ], ], 'Seconds' => [ 'type' => 'integer', ], 'SecurityGroupId' => [ 'type' => 'string', ], 'SecurityGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupId', ], ], 'SecurityPolicy' => [ 'type' => 'string', 'max' => 128, 'pattern' => '[\\s\\S]*', ], 'SecurityProfileArn' => [ 'type' => 'string', ], 'SecurityProfileDescription' => [ 'type' => 'string', 'max' => 1000, 'pattern' => '[\\p{Graph}\\x20]*', ], 'SecurityProfileIdentifier' => [ 'type' => 'structure', 'required' => [ 'name', 'arn', ], 'members' => [ 'name' => [ 'shape' => 'SecurityProfileName', ], 'arn' => [ 'shape' => 'SecurityProfileArn', ], ], ], 'SecurityProfileIdentifiers' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityProfileIdentifier', ], ], 'SecurityProfileName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'SecurityProfileTarget' => [ 'type' => 'structure', 'required' => [ 'arn', ], 'members' => [ 'arn' => [ 'shape' => 'SecurityProfileTargetArn', ], ], ], 'SecurityProfileTargetArn' => [ 'type' => 'string', ], 'SecurityProfileTargetMapping' => [ 'type' => 'structure', 'members' => [ 'securityProfileIdentifier' => [ 'shape' => 'SecurityProfileIdentifier', ], 'target' => [ 'shape' => 'SecurityProfileTarget', ], ], ], 'SecurityProfileTargetMappings' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityProfileTargetMapping', ], ], 'SecurityProfileTargets' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityProfileTarget', ], ], 'ServerCertificateArns' => [ 'type' => 'list', 'member' => [ 'shape' => 'AcmCertificateArn', ], 'max' => 1, 'min' => 0, ], 'ServerCertificateConfig' => [ 'type' => 'structure', 'members' => [ 'enableOCSPCheck' => [ 'shape' => 'EnableOCSPCheck', ], ], ], 'ServerCertificateStatus' => [ 'type' => 'string', 'enum' => [ 'INVALID', 'VALID', ], ], 'ServerCertificateStatusDetail' => [ 'type' => 'string', ], 'ServerCertificateSummary' => [ 'type' => 'structure', 'members' => [ 'serverCertificateArn' => [ 'shape' => 'AcmCertificateArn', ], 'serverCertificateStatus' => [ 'shape' => 'ServerCertificateStatus', ], 'serverCertificateStatusDetail' => [ 'shape' => 'ServerCertificateStatusDetail', ], ], ], 'ServerCertificates' => [ 'type' => 'list', 'member' => [ 'shape' => 'ServerCertificateSummary', ], ], 'ServerName' => [ 'type' => 'string', 'max' => 253, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'ServiceName' => [ 'type' => 'string', ], 'ServiceQuotaExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 402, ], 'exception' => true, ], 'ServiceType' => [ 'type' => 'string', 'enum' => [ 'DATA', 'CREDENTIAL_PROVIDER', 'JOBS', ], ], 'ServiceUnavailableException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], 'SetAsActive' => [ 'type' => 'boolean', ], 'SetAsActiveFlag' => [ 'type' => 'boolean', ], 'SetAsDefault' => [ 'type' => 'boolean', ], 'SetDefaultAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'authorizerName', ], 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', ], ], ], 'SetDefaultAuthorizerResponse' => [ 'type' => 'structure', 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', ], 'authorizerArn' => [ 'shape' => 'AuthorizerArn', ], ], ], 'SetDefaultPolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyVersionId', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', 'location' => 'uri', 'locationName' => 'policyVersionId', ], ], ], 'SetLoggingOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'loggingOptionsPayload', ], 'members' => [ 'loggingOptionsPayload' => [ 'shape' => 'LoggingOptionsPayload', ], ], 'payload' => 'loggingOptionsPayload', ], 'SetV2LoggingLevelRequest' => [ 'type' => 'structure', 'required' => [ 'logTarget', 'logLevel', ], 'members' => [ 'logTarget' => [ 'shape' => 'LogTarget', ], 'logLevel' => [ 'shape' => 'LogLevel', ], ], ], 'SetV2LoggingOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'defaultLogLevel' => [ 'shape' => 'LogLevel', ], 'disableAllLogs' => [ 'shape' => 'DisableAllLogs', ], ], ], 'ShadowName' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '[$a-zA-Z0-9:_-]+', ], 'SigV4Authorization' => [ 'type' => 'structure', 'required' => [ 'signingRegion', 'serviceName', 'roleArn', ], 'members' => [ 'signingRegion' => [ 'shape' => 'SigningRegion', ], 'serviceName' => [ 'shape' => 'ServiceName', ], 'roleArn' => [ 'shape' => 'AwsArn', ], ], ], 'Signature' => [ 'type' => 'blob', ], 'SignatureAlgorithm' => [ 'type' => 'string', ], 'SigningJobId' => [ 'type' => 'string', ], 'SigningProfileName' => [ 'type' => 'string', ], 'SigningProfileParameter' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'platform' => [ 'shape' => 'Platform', ], 'certificatePathOnDevice' => [ 'shape' => 'CertificatePathOnDevice', ], ], ], 'SigningRegion' => [ 'type' => 'string', ], 'SkippedFindingsCount' => [ 'type' => 'long', ], 'SkyfallMaxResults' => [ 'type' => 'integer', 'max' => 250, 'min' => 1, ], 'SnsAction' => [ 'type' => 'structure', 'required' => [ 'targetArn', 'roleArn', ], 'members' => [ 'targetArn' => [ 'shape' => 'AwsArn', ], 'roleArn' => [ 'shape' => 'AwsArn', ], 'messageFormat' => [ 'shape' => 'MessageFormat', ], ], ], 'SnsTopicArn' => [ 'type' => 'string', 'max' => 350, ], 'SqlParseException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'SqsAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'queueUrl', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'queueUrl' => [ 'shape' => 'QueueUrl', ], 'useBase64' => [ 'shape' => 'UseBase64', ], ], ], 'StartAuditMitigationActionsTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', 'target', 'auditCheckToActionsMapping', 'clientRequestToken', ], 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', 'location' => 'uri', 'locationName' => 'taskId', ], 'target' => [ 'shape' => 'AuditMitigationActionsTaskTarget', ], 'auditCheckToActionsMapping' => [ 'shape' => 'AuditCheckToActionsMapping', ], 'clientRequestToken' => [ 'shape' => 'ClientRequestToken', 'idempotencyToken' => true, ], ], ], 'StartAuditMitigationActionsTaskResponse' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', ], ], ], 'StartDetectMitigationActionsTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', 'target', 'actions', 'clientRequestToken', ], 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', 'location' => 'uri', 'locationName' => 'taskId', ], 'target' => [ 'shape' => 'DetectMitigationActionsTaskTarget', ], 'actions' => [ 'shape' => 'DetectMitigationActionsToExecuteList', ], 'violationEventOccurrenceRange' => [ 'shape' => 'ViolationEventOccurrenceRange', ], 'includeOnlyActiveViolations' => [ 'shape' => 'NullableBoolean', ], 'includeSuppressedAlerts' => [ 'shape' => 'NullableBoolean', ], 'clientRequestToken' => [ 'shape' => 'ClientRequestToken', 'idempotencyToken' => true, ], ], ], 'StartDetectMitigationActionsTaskResponse' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'MitigationActionsTaskId', ], ], ], 'StartOnDemandAuditTaskRequest' => [ 'type' => 'structure', 'required' => [ 'targetCheckNames', ], 'members' => [ 'targetCheckNames' => [ 'shape' => 'TargetAuditCheckNames', ], ], ], 'StartOnDemandAuditTaskResponse' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'AuditTaskId', ], ], ], 'StartSigningJobParameter' => [ 'type' => 'structure', 'members' => [ 'signingProfileParameter' => [ 'shape' => 'SigningProfileParameter', ], 'signingProfileName' => [ 'shape' => 'SigningProfileName', ], 'destination' => [ 'shape' => 'Destination', ], ], ], 'StartThingRegistrationTaskRequest' => [ 'type' => 'structure', 'required' => [ 'templateBody', 'inputFileBucket', 'inputFileKey', 'roleArn', ], 'members' => [ 'templateBody' => [ 'shape' => 'TemplateBody', ], 'inputFileBucket' => [ 'shape' => 'RegistryS3BucketName', ], 'inputFileKey' => [ 'shape' => 'RegistryS3KeyName', ], 'roleArn' => [ 'shape' => 'RoleArn', ], ], ], 'StartThingRegistrationTaskResponse' => [ 'type' => 'structure', 'members' => [ 'taskId' => [ 'shape' => 'TaskId', ], ], ], 'StateMachineName' => [ 'type' => 'string', ], 'StateReason' => [ 'type' => 'string', ], 'StateValue' => [ 'type' => 'string', ], 'StatisticalThreshold' => [ 'type' => 'structure', 'members' => [ 'statistic' => [ 'shape' => 'EvaluationStatistic', ], ], ], 'Statistics' => [ 'type' => 'structure', 'members' => [ 'count' => [ 'shape' => 'Count', ], 'average' => [ 'shape' => 'Average', 'box' => true, ], 'sum' => [ 'shape' => 'Sum', 'box' => true, ], 'minimum' => [ 'shape' => 'Minimum', 'box' => true, ], 'maximum' => [ 'shape' => 'Maximum', 'box' => true, ], 'sumOfSquares' => [ 'shape' => 'SumOfSquares', 'box' => true, ], 'variance' => [ 'shape' => 'Variance', 'box' => true, ], 'stdDeviation' => [ 'shape' => 'StdDeviation', 'box' => true, ], ], ], 'Status' => [ 'type' => 'string', 'enum' => [ 'InProgress', 'Completed', 'Failed', 'Cancelled', 'Cancelling', ], ], 'StdDeviation' => [ 'type' => 'double', ], 'StepFunctionsAction' => [ 'type' => 'structure', 'required' => [ 'stateMachineName', 'roleArn', ], 'members' => [ 'executionNamePrefix' => [ 'shape' => 'ExecutionNamePrefix', ], 'stateMachineName' => [ 'shape' => 'StateMachineName', ], 'roleArn' => [ 'shape' => 'AwsArn', ], ], ], 'StopThingRegistrationTaskRequest' => [ 'type' => 'structure', 'required' => [ 'taskId', ], 'members' => [ 'taskId' => [ 'shape' => 'TaskId', 'location' => 'uri', 'locationName' => 'taskId', ], ], ], 'StopThingRegistrationTaskResponse' => [ 'type' => 'structure', 'members' => [], ], 'Stream' => [ 'type' => 'structure', 'members' => [ 'streamId' => [ 'shape' => 'StreamId', ], 'fileId' => [ 'shape' => 'FileId', ], ], ], 'StreamArn' => [ 'type' => 'string', ], 'StreamDescription' => [ 'type' => 'string', 'max' => 2028, 'pattern' => '[^\\p{C}]+', ], 'StreamFile' => [ 'type' => 'structure', 'members' => [ 'fileId' => [ 'shape' => 'FileId', ], 's3Location' => [ 'shape' => 'S3Location', ], ], ], 'StreamFiles' => [ 'type' => 'list', 'member' => [ 'shape' => 'StreamFile', ], 'max' => 50, 'min' => 1, ], 'StreamId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'StreamInfo' => [ 'type' => 'structure', 'members' => [ 'streamId' => [ 'shape' => 'StreamId', ], 'streamArn' => [ 'shape' => 'StreamArn', ], 'streamVersion' => [ 'shape' => 'StreamVersion', ], 'description' => [ 'shape' => 'StreamDescription', ], 'files' => [ 'shape' => 'StreamFiles', ], 'createdAt' => [ 'shape' => 'DateType', ], 'lastUpdatedAt' => [ 'shape' => 'DateType', ], 'roleArn' => [ 'shape' => 'RoleArn', ], ], ], 'StreamName' => [ 'type' => 'string', ], 'StreamSummary' => [ 'type' => 'structure', 'members' => [ 'streamId' => [ 'shape' => 'StreamId', ], 'streamArn' => [ 'shape' => 'StreamArn', ], 'streamVersion' => [ 'shape' => 'StreamVersion', ], 'description' => [ 'shape' => 'StreamDescription', ], ], ], 'StreamVersion' => [ 'type' => 'integer', 'max' => 65535, 'min' => 0, ], 'StreamsSummary' => [ 'type' => 'list', 'member' => [ 'shape' => 'StreamSummary', ], ], 'String' => [ 'type' => 'string', ], 'StringDateTime' => [ 'type' => 'string', 'max' => 64, 'min' => 1, ], 'StringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'stringValue', ], ], 'StringMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'SubnetId' => [ 'type' => 'string', ], 'SubnetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SubnetId', ], ], 'SucceededFindingsCount' => [ 'type' => 'long', ], 'SucceededThings' => [ 'type' => 'integer', ], 'Sum' => [ 'type' => 'double', ], 'SumOfSquares' => [ 'type' => 'double', ], 'SuppressAlerts' => [ 'type' => 'boolean', ], 'SuppressIndefinitely' => [ 'type' => 'boolean', ], 'SuppressedNonCompliantResourcesCount' => [ 'type' => 'long', ], 'TableName' => [ 'type' => 'string', ], 'Tag' => [ 'type' => 'structure', 'required' => [ 'Key', ], 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Value' => [ 'shape' => 'TagValue', ], ], ], 'TagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$', ], 'TagKeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagKey', ], ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', ], ], 'TagMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'TagKey', ], 'value' => [ 'shape' => 'TagValue', ], 'max' => 50, 'min' => 1, ], 'TagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'resourceArn', 'tags', ], 'members' => [ 'resourceArn' => [ 'shape' => 'ResourceArn', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'TagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'TagValue' => [ 'type' => 'string', 'max' => 256, 'min' => 0, ], 'Target' => [ 'type' => 'string', ], 'TargetArn' => [ 'type' => 'string', 'max' => 2048, ], 'TargetAuditCheckNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuditCheckName', ], ], 'TargetFieldName' => [ 'type' => 'string', ], 'TargetFieldOrder' => [ 'type' => 'string', 'enum' => [ 'LatLon', 'LonLat', ], ], 'TargetSelection' => [ 'type' => 'string', 'enum' => [ 'CONTINUOUS', 'SNAPSHOT', ], ], 'TargetViolationIdsForDetectMitigationActions' => [ 'type' => 'list', 'member' => [ 'shape' => 'ViolationId', ], 'max' => 25, 'min' => 1, ], 'Targets' => [ 'type' => 'list', 'member' => [ 'shape' => 'Target', ], 'min' => 1, ], 'TaskAlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TaskId' => [ 'type' => 'string', 'max' => 40, ], 'TaskIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TaskId', ], ], 'TaskStatistics' => [ 'type' => 'structure', 'members' => [ 'totalChecks' => [ 'shape' => 'TotalChecksCount', ], 'inProgressChecks' => [ 'shape' => 'InProgressChecksCount', ], 'waitingForDataCollectionChecks' => [ 'shape' => 'WaitingForDataCollectionChecksCount', ], 'compliantChecks' => [ 'shape' => 'CompliantChecksCount', ], 'nonCompliantChecks' => [ 'shape' => 'NonCompliantChecksCount', ], 'failedChecks' => [ 'shape' => 'FailedChecksCount', ], 'canceledChecks' => [ 'shape' => 'CanceledChecksCount', ], ], ], 'TaskStatisticsForAuditCheck' => [ 'type' => 'structure', 'members' => [ 'totalFindingsCount' => [ 'shape' => 'TotalFindingsCount', ], 'failedFindingsCount' => [ 'shape' => 'FailedFindingsCount', ], 'succeededFindingsCount' => [ 'shape' => 'SucceededFindingsCount', ], 'skippedFindingsCount' => [ 'shape' => 'SkippedFindingsCount', ], 'canceledFindingsCount' => [ 'shape' => 'CanceledFindingsCount', ], ], ], 'TemplateArn' => [ 'type' => 'string', ], 'TemplateBody' => [ 'type' => 'string', 'max' => 10240, 'min' => 0, 'pattern' => '[\\s\\S]*', ], 'TemplateDescription' => [ 'type' => 'string', 'max' => 500, 'min' => 0, 'pattern' => '[^\\p{C}]*', ], 'TemplateName' => [ 'type' => 'string', 'max' => 36, 'min' => 1, 'pattern' => '^[0-9A-Za-z_-]+$', ], 'TemplateType' => [ 'type' => 'string', 'enum' => [ 'FLEET_PROVISIONING', 'JITP', ], ], 'TemplateVersionId' => [ 'type' => 'integer', ], 'TermsAggregation' => [ 'type' => 'structure', 'members' => [ 'maxBuckets' => [ 'shape' => 'MaxBuckets', ], ], ], 'TestAuthorizationRequest' => [ 'type' => 'structure', 'required' => [ 'authInfos', ], 'members' => [ 'principal' => [ 'shape' => 'Principal', ], 'cognitoIdentityPoolId' => [ 'shape' => 'CognitoIdentityPoolId', ], 'authInfos' => [ 'shape' => 'AuthInfos', ], 'clientId' => [ 'shape' => 'ClientId', 'location' => 'querystring', 'locationName' => 'clientId', ], 'policyNamesToAdd' => [ 'shape' => 'PolicyNames', ], 'policyNamesToSkip' => [ 'shape' => 'PolicyNames', ], ], ], 'TestAuthorizationResponse' => [ 'type' => 'structure', 'members' => [ 'authResults' => [ 'shape' => 'AuthResults', ], ], ], 'TestInvokeAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'authorizerName', ], 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', 'location' => 'uri', 'locationName' => 'authorizerName', ], 'token' => [ 'shape' => 'Token', ], 'tokenSignature' => [ 'shape' => 'TokenSignature', ], 'httpContext' => [ 'shape' => 'HttpContext', ], 'mqttContext' => [ 'shape' => 'MqttContext', ], 'tlsContext' => [ 'shape' => 'TlsContext', ], ], ], 'TestInvokeAuthorizerResponse' => [ 'type' => 'structure', 'members' => [ 'isAuthenticated' => [ 'shape' => 'IsAuthenticated', ], 'principalId' => [ 'shape' => 'PrincipalId', ], 'policyDocuments' => [ 'shape' => 'PolicyDocuments', ], 'refreshAfterInSeconds' => [ 'shape' => 'Seconds', ], 'disconnectAfterInSeconds' => [ 'shape' => 'Seconds', ], ], ], 'ThingArn' => [ 'type' => 'string', ], 'ThingAttribute' => [ 'type' => 'structure', 'members' => [ 'thingName' => [ 'shape' => 'ThingName', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'thingArn' => [ 'shape' => 'ThingArn', ], 'attributes' => [ 'shape' => 'Attributes', ], 'version' => [ 'shape' => 'Version', ], ], ], 'ThingAttributeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingAttribute', ], ], 'ThingConnectivity' => [ 'type' => 'structure', 'members' => [ 'connected' => [ 'shape' => 'Boolean', ], 'timestamp' => [ 'shape' => 'ConnectivityTimestamp', ], 'disconnectReason' => [ 'shape' => 'DisconnectReason', ], ], ], 'ThingConnectivityIndexingMode' => [ 'type' => 'string', 'enum' => [ 'OFF', 'STATUS', ], ], 'ThingDocument' => [ 'type' => 'structure', 'members' => [ 'thingName' => [ 'shape' => 'ThingName', ], 'thingId' => [ 'shape' => 'ThingId', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'thingGroupNames' => [ 'shape' => 'ThingGroupNameList', ], 'attributes' => [ 'shape' => 'Attributes', ], 'shadow' => [ 'shape' => 'JsonDocument', ], 'deviceDefender' => [ 'shape' => 'JsonDocument', ], 'connectivity' => [ 'shape' => 'ThingConnectivity', ], ], ], 'ThingDocumentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingDocument', ], ], 'ThingGroupArn' => [ 'type' => 'string', ], 'ThingGroupDescription' => [ 'type' => 'string', 'max' => 2028, 'pattern' => '[\\p{Graph}\\x20]*', ], 'ThingGroupDocument' => [ 'type' => 'structure', 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', ], 'thingGroupId' => [ 'shape' => 'ThingGroupId', ], 'thingGroupDescription' => [ 'shape' => 'ThingGroupDescription', ], 'attributes' => [ 'shape' => 'Attributes', ], 'parentGroupNames' => [ 'shape' => 'ThingGroupNameList', ], ], ], 'ThingGroupDocumentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingGroupDocument', ], ], 'ThingGroupId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9\\-]+', ], 'ThingGroupIndexingConfiguration' => [ 'type' => 'structure', 'required' => [ 'thingGroupIndexingMode', ], 'members' => [ 'thingGroupIndexingMode' => [ 'shape' => 'ThingGroupIndexingMode', ], 'managedFields' => [ 'shape' => 'Fields', ], 'customFields' => [ 'shape' => 'Fields', ], ], ], 'ThingGroupIndexingMode' => [ 'type' => 'string', 'enum' => [ 'OFF', 'ON', ], ], 'ThingGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingGroupName', ], ], 'ThingGroupMetadata' => [ 'type' => 'structure', 'members' => [ 'parentGroupName' => [ 'shape' => 'ThingGroupName', ], 'rootToParentThingGroups' => [ 'shape' => 'ThingGroupNameAndArnList', ], 'creationDate' => [ 'shape' => 'CreationDate', ], ], ], 'ThingGroupName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'ThingGroupNameAndArnList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GroupNameAndArn', ], ], 'ThingGroupNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingGroupName', ], ], 'ThingGroupNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingGroupName', ], 'max' => 10, 'min' => 1, ], 'ThingGroupProperties' => [ 'type' => 'structure', 'members' => [ 'thingGroupDescription' => [ 'shape' => 'ThingGroupDescription', ], 'attributePayload' => [ 'shape' => 'AttributePayload', ], ], ], 'ThingId' => [ 'type' => 'string', ], 'ThingIndexingConfiguration' => [ 'type' => 'structure', 'required' => [ 'thingIndexingMode', ], 'members' => [ 'thingIndexingMode' => [ 'shape' => 'ThingIndexingMode', ], 'thingConnectivityIndexingMode' => [ 'shape' => 'ThingConnectivityIndexingMode', ], 'deviceDefenderIndexingMode' => [ 'shape' => 'DeviceDefenderIndexingMode', ], 'namedShadowIndexingMode' => [ 'shape' => 'NamedShadowIndexingMode', ], 'managedFields' => [ 'shape' => 'Fields', ], 'customFields' => [ 'shape' => 'Fields', ], 'filter' => [ 'shape' => 'IndexingFilter', ], ], ], 'ThingIndexingMode' => [ 'type' => 'string', 'enum' => [ 'OFF', 'REGISTRY', 'REGISTRY_AND_SHADOW', ], ], 'ThingName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'ThingNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingName', ], ], 'ThingTypeArn' => [ 'type' => 'string', ], 'ThingTypeDefinition' => [ 'type' => 'structure', 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'thingTypeArn' => [ 'shape' => 'ThingTypeArn', ], 'thingTypeProperties' => [ 'shape' => 'ThingTypeProperties', ], 'thingTypeMetadata' => [ 'shape' => 'ThingTypeMetadata', ], ], ], 'ThingTypeDescription' => [ 'type' => 'string', 'max' => 2028, 'pattern' => '[\\p{Graph}\\x20]*', ], 'ThingTypeId' => [ 'type' => 'string', ], 'ThingTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingTypeDefinition', ], ], 'ThingTypeMetadata' => [ 'type' => 'structure', 'members' => [ 'deprecated' => [ 'shape' => 'Boolean', ], 'deprecationDate' => [ 'shape' => 'DeprecationDate', ], 'creationDate' => [ 'shape' => 'CreationDate', ], ], ], 'ThingTypeName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'ThingTypeProperties' => [ 'type' => 'structure', 'members' => [ 'thingTypeDescription' => [ 'shape' => 'ThingTypeDescription', ], 'searchableAttributes' => [ 'shape' => 'SearchableAttributes', ], ], ], 'ThrottlingException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TimedOutThings' => [ 'type' => 'integer', ], 'TimeoutConfig' => [ 'type' => 'structure', 'members' => [ 'inProgressTimeoutInMinutes' => [ 'shape' => 'InProgressTimeoutInMinutes', ], ], ], 'Timestamp' => [ 'type' => 'timestamp', ], 'TimestreamAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'databaseName', 'tableName', 'dimensions', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'databaseName' => [ 'shape' => 'TimestreamDatabaseName', ], 'tableName' => [ 'shape' => 'TimestreamTableName', ], 'dimensions' => [ 'shape' => 'TimestreamDimensionList', ], 'timestamp' => [ 'shape' => 'TimestreamTimestamp', ], ], ], 'TimestreamDatabaseName' => [ 'type' => 'string', ], 'TimestreamDimension' => [ 'type' => 'structure', 'required' => [ 'name', 'value', ], 'members' => [ 'name' => [ 'shape' => 'TimestreamDimensionName', ], 'value' => [ 'shape' => 'TimestreamDimensionValue', ], ], ], 'TimestreamDimensionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TimestreamDimension', ], 'max' => 128, 'min' => 1, ], 'TimestreamDimensionName' => [ 'type' => 'string', ], 'TimestreamDimensionValue' => [ 'type' => 'string', ], 'TimestreamTableName' => [ 'type' => 'string', ], 'TimestreamTimestamp' => [ 'type' => 'structure', 'required' => [ 'value', 'unit', ], 'members' => [ 'value' => [ 'shape' => 'TimestreamTimestampValue', ], 'unit' => [ 'shape' => 'TimestreamTimestampUnit', ], ], ], 'TimestreamTimestampUnit' => [ 'type' => 'string', ], 'TimestreamTimestampValue' => [ 'type' => 'string', ], 'TinyMaxResults' => [ 'type' => 'integer', 'max' => 10, 'min' => 1, ], 'TlsConfig' => [ 'type' => 'structure', 'members' => [ 'securityPolicy' => [ 'shape' => 'SecurityPolicy', ], ], ], 'TlsContext' => [ 'type' => 'structure', 'members' => [ 'serverName' => [ 'shape' => 'ServerName', ], ], ], 'Token' => [ 'type' => 'string', 'max' => 6144, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'TokenKeyName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_-]+', ], 'TokenSignature' => [ 'type' => 'string', 'max' => 2560, 'min' => 1, 'pattern' => '[A-Za-z0-9+/]+={0,2}', ], 'Topic' => [ 'type' => 'string', ], 'TopicPattern' => [ 'type' => 'string', ], 'TopicRule' => [ 'type' => 'structure', 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', ], 'sql' => [ 'shape' => 'SQL', ], 'description' => [ 'shape' => 'Description', ], 'createdAt' => [ 'shape' => 'CreatedAtDate', ], 'actions' => [ 'shape' => 'ActionList', ], 'ruleDisabled' => [ 'shape' => 'IsDisabled', ], 'awsIotSqlVersion' => [ 'shape' => 'AwsIotSqlVersion', ], 'errorAction' => [ 'shape' => 'Action', ], ], ], 'TopicRuleDestination' => [ 'type' => 'structure', 'members' => [ 'arn' => [ 'shape' => 'AwsArn', ], 'status' => [ 'shape' => 'TopicRuleDestinationStatus', ], 'createdAt' => [ 'shape' => 'CreatedAtDate', ], 'lastUpdatedAt' => [ 'shape' => 'LastUpdatedAtDate', ], 'statusReason' => [ 'shape' => 'String', ], 'httpUrlProperties' => [ 'shape' => 'HttpUrlDestinationProperties', ], 'vpcProperties' => [ 'shape' => 'VpcDestinationProperties', ], ], ], 'TopicRuleDestinationConfiguration' => [ 'type' => 'structure', 'members' => [ 'httpUrlConfiguration' => [ 'shape' => 'HttpUrlDestinationConfiguration', ], 'vpcConfiguration' => [ 'shape' => 'VpcDestinationConfiguration', ], ], ], 'TopicRuleDestinationMaxResults' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'TopicRuleDestinationStatus' => [ 'type' => 'string', 'enum' => [ 'ENABLED', 'IN_PROGRESS', 'DISABLED', 'ERROR', 'DELETING', ], ], 'TopicRuleDestinationSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'TopicRuleDestinationSummary', ], ], 'TopicRuleDestinationSummary' => [ 'type' => 'structure', 'members' => [ 'arn' => [ 'shape' => 'AwsArn', ], 'status' => [ 'shape' => 'TopicRuleDestinationStatus', ], 'createdAt' => [ 'shape' => 'CreatedAtDate', ], 'lastUpdatedAt' => [ 'shape' => 'LastUpdatedAtDate', ], 'statusReason' => [ 'shape' => 'String', ], 'httpUrlSummary' => [ 'shape' => 'HttpUrlDestinationSummary', ], 'vpcDestinationSummary' => [ 'shape' => 'VpcDestinationSummary', ], ], ], 'TopicRuleList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TopicRuleListItem', ], ], 'TopicRuleListItem' => [ 'type' => 'structure', 'members' => [ 'ruleArn' => [ 'shape' => 'RuleArn', ], 'ruleName' => [ 'shape' => 'RuleName', ], 'topicPattern' => [ 'shape' => 'TopicPattern', ], 'createdAt' => [ 'shape' => 'CreatedAtDate', ], 'ruleDisabled' => [ 'shape' => 'IsDisabled', ], ], ], 'TopicRuleMaxResults' => [ 'type' => 'integer', 'max' => 10000, 'min' => 1, ], 'TopicRulePayload' => [ 'type' => 'structure', 'required' => [ 'sql', 'actions', ], 'members' => [ 'sql' => [ 'shape' => 'SQL', ], 'description' => [ 'shape' => 'Description', ], 'actions' => [ 'shape' => 'ActionList', ], 'ruleDisabled' => [ 'shape' => 'IsDisabled', ], 'awsIotSqlVersion' => [ 'shape' => 'AwsIotSqlVersion', ], 'errorAction' => [ 'shape' => 'Action', ], ], ], 'TotalChecksCount' => [ 'type' => 'integer', ], 'TotalFindingsCount' => [ 'type' => 'long', ], 'TotalResourcesCount' => [ 'type' => 'long', ], 'TransferAlreadyCompletedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], 'TransferCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', 'targetAwsAccount', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'targetAwsAccount' => [ 'shape' => 'AwsAccountId', 'location' => 'querystring', 'locationName' => 'targetAwsAccount', ], 'transferMessage' => [ 'shape' => 'Message', ], ], ], 'TransferCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'transferredCertificateArn' => [ 'shape' => 'CertificateArn', ], ], ], 'TransferConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'TransferData' => [ 'type' => 'structure', 'members' => [ 'transferMessage' => [ 'shape' => 'Message', ], 'rejectReason' => [ 'shape' => 'Message', ], 'transferDate' => [ 'shape' => 'DateType', ], 'acceptDate' => [ 'shape' => 'DateType', ], 'rejectDate' => [ 'shape' => 'DateType', ], ], ], 'UnauthorizedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], 'UndoDeprecate' => [ 'type' => 'boolean', ], 'UnsetDefaultVersion' => [ 'type' => 'boolean', 'box' => true, ], 'UnsignedLong' => [ 'type' => 'long', 'min' => 0, ], 'UntagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'resourceArn', 'tagKeys', ], 'members' => [ 'resourceArn' => [ 'shape' => 'ResourceArn', ], 'tagKeys' => [ 'shape' => 'TagKeyList', ], ], ], 'UntagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateAccountAuditConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'roleArn' => [ 'shape' => 'RoleArn', ], 'auditNotificationTargetConfigurations' => [ 'shape' => 'AuditNotificationTargetConfigurations', ], 'auditCheckConfigurations' => [ 'shape' => 'AuditCheckConfigurations', ], ], ], 'UpdateAccountAuditConfigurationResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateAuditSuppressionRequest' => [ 'type' => 'structure', 'required' => [ 'checkName', 'resourceIdentifier', ], 'members' => [ 'checkName' => [ 'shape' => 'AuditCheckName', ], 'resourceIdentifier' => [ 'shape' => 'ResourceIdentifier', ], 'expirationDate' => [ 'shape' => 'Timestamp', ], 'suppressIndefinitely' => [ 'shape' => 'SuppressIndefinitely', ], 'description' => [ 'shape' => 'AuditDescription', ], ], ], 'UpdateAuditSuppressionResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'authorizerName', ], 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', 'location' => 'uri', 'locationName' => 'authorizerName', ], 'authorizerFunctionArn' => [ 'shape' => 'AuthorizerFunctionArn', ], 'tokenKeyName' => [ 'shape' => 'TokenKeyName', ], 'tokenSigningPublicKeys' => [ 'shape' => 'PublicKeyMap', ], 'status' => [ 'shape' => 'AuthorizerStatus', ], 'enableCachingForHttp' => [ 'shape' => 'EnableCachingForHttp', ], ], ], 'UpdateAuthorizerResponse' => [ 'type' => 'structure', 'members' => [ 'authorizerName' => [ 'shape' => 'AuthorizerName', ], 'authorizerArn' => [ 'shape' => 'AuthorizerArn', ], ], ], 'UpdateBillingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'billingGroupName', 'billingGroupProperties', ], 'members' => [ 'billingGroupName' => [ 'shape' => 'BillingGroupName', 'location' => 'uri', 'locationName' => 'billingGroupName', ], 'billingGroupProperties' => [ 'shape' => 'BillingGroupProperties', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', ], ], ], 'UpdateBillingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'version' => [ 'shape' => 'Version', ], ], ], 'UpdateCACertificateParams' => [ 'type' => 'structure', 'required' => [ 'action', ], 'members' => [ 'action' => [ 'shape' => 'CACertificateUpdateAction', ], ], ], 'UpdateCACertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'caCertificateId', ], 'newStatus' => [ 'shape' => 'CACertificateStatus', 'location' => 'querystring', 'locationName' => 'newStatus', ], 'newAutoRegistrationStatus' => [ 'shape' => 'AutoRegistrationStatus', 'location' => 'querystring', 'locationName' => 'newAutoRegistrationStatus', ], 'registrationConfig' => [ 'shape' => 'RegistrationConfig', ], 'removeAutoRegistration' => [ 'shape' => 'RemoveAutoRegistration', ], ], ], 'UpdateCertificateProviderRequest' => [ 'type' => 'structure', 'required' => [ 'certificateProviderName', ], 'members' => [ 'certificateProviderName' => [ 'shape' => 'CertificateProviderName', 'location' => 'uri', 'locationName' => 'certificateProviderName', ], 'lambdaFunctionArn' => [ 'shape' => 'CertificateProviderFunctionArn', ], 'accountDefaultForOperations' => [ 'shape' => 'CertificateProviderAccountDefaultForOperations', ], ], ], 'UpdateCertificateProviderResponse' => [ 'type' => 'structure', 'members' => [ 'certificateProviderName' => [ 'shape' => 'CertificateProviderName', ], 'certificateProviderArn' => [ 'shape' => 'CertificateProviderArn', ], ], ], 'UpdateCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', 'newStatus', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'newStatus' => [ 'shape' => 'CertificateStatus', 'location' => 'querystring', 'locationName' => 'newStatus', ], ], ], 'UpdateCustomMetricRequest' => [ 'type' => 'structure', 'required' => [ 'metricName', 'displayName', ], 'members' => [ 'metricName' => [ 'shape' => 'MetricName', 'location' => 'uri', 'locationName' => 'metricName', ], 'displayName' => [ 'shape' => 'CustomMetricDisplayName', ], ], ], 'UpdateCustomMetricResponse' => [ 'type' => 'structure', 'members' => [ 'metricName' => [ 'shape' => 'MetricName', ], 'metricArn' => [ 'shape' => 'CustomMetricArn', ], 'metricType' => [ 'shape' => 'CustomMetricType', ], 'displayName' => [ 'shape' => 'CustomMetricDisplayName', ], 'creationDate' => [ 'shape' => 'Timestamp', ], 'lastModifiedDate' => [ 'shape' => 'Timestamp', ], ], ], 'UpdateDeviceCertificateParams' => [ 'type' => 'structure', 'required' => [ 'action', ], 'members' => [ 'action' => [ 'shape' => 'DeviceCertificateUpdateAction', ], ], ], 'UpdateDimensionRequest' => [ 'type' => 'structure', 'required' => [ 'name', 'stringValues', ], 'members' => [ 'name' => [ 'shape' => 'DimensionName', 'location' => 'uri', 'locationName' => 'name', ], 'stringValues' => [ 'shape' => 'DimensionStringValues', ], ], ], 'UpdateDimensionResponse' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'DimensionName', ], 'arn' => [ 'shape' => 'DimensionArn', ], 'type' => [ 'shape' => 'DimensionType', ], 'stringValues' => [ 'shape' => 'DimensionStringValues', ], 'creationDate' => [ 'shape' => 'Timestamp', ], 'lastModifiedDate' => [ 'shape' => 'Timestamp', ], ], ], 'UpdateDomainConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'domainConfigurationName', ], 'members' => [ 'domainConfigurationName' => [ 'shape' => 'ReservedDomainConfigurationName', 'location' => 'uri', 'locationName' => 'domainConfigurationName', ], 'authorizerConfig' => [ 'shape' => 'AuthorizerConfig', ], 'domainConfigurationStatus' => [ 'shape' => 'DomainConfigurationStatus', ], 'removeAuthorizerConfig' => [ 'shape' => 'RemoveAuthorizerConfig', ], 'tlsConfig' => [ 'shape' => 'TlsConfig', ], 'serverCertificateConfig' => [ 'shape' => 'ServerCertificateConfig', ], ], ], 'UpdateDomainConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'domainConfigurationName' => [ 'shape' => 'ReservedDomainConfigurationName', ], 'domainConfigurationArn' => [ 'shape' => 'DomainConfigurationArn', ], ], ], 'UpdateDynamicThingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'thingGroupName', 'thingGroupProperties', ], 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'uri', 'locationName' => 'thingGroupName', ], 'thingGroupProperties' => [ 'shape' => 'ThingGroupProperties', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', ], 'indexName' => [ 'shape' => 'IndexName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], ], ], 'UpdateDynamicThingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'version' => [ 'shape' => 'Version', ], ], ], 'UpdateEventConfigurationsRequest' => [ 'type' => 'structure', 'members' => [ 'eventConfigurations' => [ 'shape' => 'EventConfigurations', ], ], ], 'UpdateEventConfigurationsResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateFleetMetricRequest' => [ 'type' => 'structure', 'required' => [ 'metricName', 'indexName', ], 'members' => [ 'metricName' => [ 'shape' => 'FleetMetricName', 'location' => 'uri', 'locationName' => 'metricName', ], 'queryString' => [ 'shape' => 'QueryString', ], 'aggregationType' => [ 'shape' => 'AggregationType', ], 'period' => [ 'shape' => 'FleetMetricPeriod', ], 'aggregationField' => [ 'shape' => 'AggregationField', ], 'description' => [ 'shape' => 'FleetMetricDescription', ], 'queryVersion' => [ 'shape' => 'QueryVersion', ], 'indexName' => [ 'shape' => 'IndexName', ], 'unit' => [ 'shape' => 'FleetMetricUnit', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', ], ], ], 'UpdateIndexingConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'thingIndexingConfiguration' => [ 'shape' => 'ThingIndexingConfiguration', ], 'thingGroupIndexingConfiguration' => [ 'shape' => 'ThingGroupIndexingConfiguration', ], ], ], 'UpdateIndexingConfigurationResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateJobRequest' => [ 'type' => 'structure', 'required' => [ 'jobId', ], 'members' => [ 'jobId' => [ 'shape' => 'JobId', 'location' => 'uri', 'locationName' => 'jobId', ], 'description' => [ 'shape' => 'JobDescription', ], 'presignedUrlConfig' => [ 'shape' => 'PresignedUrlConfig', ], 'jobExecutionsRolloutConfig' => [ 'shape' => 'JobExecutionsRolloutConfig', ], 'abortConfig' => [ 'shape' => 'AbortConfig', ], 'timeoutConfig' => [ 'shape' => 'TimeoutConfig', ], 'namespaceId' => [ 'shape' => 'NamespaceId', 'location' => 'querystring', 'locationName' => 'namespaceId', ], 'jobExecutionsRetryConfig' => [ 'shape' => 'JobExecutionsRetryConfig', ], ], ], 'UpdateMitigationActionRequest' => [ 'type' => 'structure', 'required' => [ 'actionName', ], 'members' => [ 'actionName' => [ 'shape' => 'MitigationActionName', 'location' => 'uri', 'locationName' => 'actionName', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'actionParams' => [ 'shape' => 'MitigationActionParams', ], ], ], 'UpdateMitigationActionResponse' => [ 'type' => 'structure', 'members' => [ 'actionArn' => [ 'shape' => 'MitigationActionArn', ], 'actionId' => [ 'shape' => 'MitigationActionId', ], ], ], 'UpdatePackageConfigurationRequest' => [ 'type' => 'structure', 'members' => [ 'versionUpdateByJobsConfig' => [ 'shape' => 'VersionUpdateByJobsConfig', ], 'clientToken' => [ 'shape' => 'ClientToken', 'idempotencyToken' => true, 'location' => 'querystring', 'locationName' => 'clientToken', ], ], ], 'UpdatePackageConfigurationResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdatePackageRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], 'description' => [ 'shape' => 'ResourceDescription', ], 'defaultVersionName' => [ 'shape' => 'VersionName', ], 'unsetDefaultVersion' => [ 'shape' => 'UnsetDefaultVersion', ], 'clientToken' => [ 'shape' => 'ClientToken', 'idempotencyToken' => true, 'location' => 'querystring', 'locationName' => 'clientToken', ], ], ], 'UpdatePackageResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdatePackageVersionRequest' => [ 'type' => 'structure', 'required' => [ 'packageName', 'versionName', ], 'members' => [ 'packageName' => [ 'shape' => 'PackageName', 'location' => 'uri', 'locationName' => 'packageName', ], 'versionName' => [ 'shape' => 'VersionName', 'location' => 'uri', 'locationName' => 'versionName', ], 'description' => [ 'shape' => 'ResourceDescription', ], 'attributes' => [ 'shape' => 'ResourceAttributes', ], 'action' => [ 'shape' => 'PackageVersionAction', ], 'clientToken' => [ 'shape' => 'ClientToken', 'idempotencyToken' => true, 'location' => 'querystring', 'locationName' => 'clientToken', ], ], ], 'UpdatePackageVersionResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateProvisioningTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'templateName', ], 'members' => [ 'templateName' => [ 'shape' => 'TemplateName', 'location' => 'uri', 'locationName' => 'templateName', ], 'description' => [ 'shape' => 'TemplateDescription', ], 'enabled' => [ 'shape' => 'Enabled', ], 'defaultVersionId' => [ 'shape' => 'TemplateVersionId', ], 'provisioningRoleArn' => [ 'shape' => 'RoleArn', ], 'preProvisioningHook' => [ 'shape' => 'ProvisioningHook', ], 'removePreProvisioningHook' => [ 'shape' => 'RemoveHook', ], ], ], 'UpdateProvisioningTemplateResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateRoleAliasRequest' => [ 'type' => 'structure', 'required' => [ 'roleAlias', ], 'members' => [ 'roleAlias' => [ 'shape' => 'RoleAlias', 'location' => 'uri', 'locationName' => 'roleAlias', ], 'roleArn' => [ 'shape' => 'RoleArn', ], 'credentialDurationSeconds' => [ 'shape' => 'CredentialDurationSeconds', ], ], ], 'UpdateRoleAliasResponse' => [ 'type' => 'structure', 'members' => [ 'roleAlias' => [ 'shape' => 'RoleAlias', ], 'roleAliasArn' => [ 'shape' => 'RoleAliasArn', ], ], ], 'UpdateScheduledAuditRequest' => [ 'type' => 'structure', 'required' => [ 'scheduledAuditName', ], 'members' => [ 'frequency' => [ 'shape' => 'AuditFrequency', ], 'dayOfMonth' => [ 'shape' => 'DayOfMonth', ], 'dayOfWeek' => [ 'shape' => 'DayOfWeek', ], 'targetCheckNames' => [ 'shape' => 'TargetAuditCheckNames', ], 'scheduledAuditName' => [ 'shape' => 'ScheduledAuditName', 'location' => 'uri', 'locationName' => 'scheduledAuditName', ], ], ], 'UpdateScheduledAuditResponse' => [ 'type' => 'structure', 'members' => [ 'scheduledAuditArn' => [ 'shape' => 'ScheduledAuditArn', ], ], ], 'UpdateSecurityProfileRequest' => [ 'type' => 'structure', 'required' => [ 'securityProfileName', ], 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', 'location' => 'uri', 'locationName' => 'securityProfileName', ], 'securityProfileDescription' => [ 'shape' => 'SecurityProfileDescription', ], 'behaviors' => [ 'shape' => 'Behaviors', ], 'alertTargets' => [ 'shape' => 'AlertTargets', ], 'additionalMetricsToRetain' => [ 'shape' => 'AdditionalMetricsToRetainList', 'deprecated' => true, 'deprecatedMessage' => 'Use additionalMetricsToRetainV2.', ], 'additionalMetricsToRetainV2' => [ 'shape' => 'AdditionalMetricsToRetainV2List', ], 'deleteBehaviors' => [ 'shape' => 'DeleteBehaviors', ], 'deleteAlertTargets' => [ 'shape' => 'DeleteAlertTargets', ], 'deleteAdditionalMetricsToRetain' => [ 'shape' => 'DeleteAdditionalMetricsToRetain', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', 'location' => 'querystring', 'locationName' => 'expectedVersion', ], 'metricsExportConfig' => [ 'shape' => 'MetricsExportConfig', ], 'deleteMetricsExportConfig' => [ 'shape' => 'DeleteMetricsExportConfig', ], ], ], 'UpdateSecurityProfileResponse' => [ 'type' => 'structure', 'members' => [ 'securityProfileName' => [ 'shape' => 'SecurityProfileName', ], 'securityProfileArn' => [ 'shape' => 'SecurityProfileArn', ], 'securityProfileDescription' => [ 'shape' => 'SecurityProfileDescription', ], 'behaviors' => [ 'shape' => 'Behaviors', ], 'alertTargets' => [ 'shape' => 'AlertTargets', ], 'additionalMetricsToRetain' => [ 'shape' => 'AdditionalMetricsToRetainList', 'deprecated' => true, 'deprecatedMessage' => 'Use additionalMetricsToRetainV2.', ], 'additionalMetricsToRetainV2' => [ 'shape' => 'AdditionalMetricsToRetainV2List', ], 'version' => [ 'shape' => 'Version', ], 'creationDate' => [ 'shape' => 'Timestamp', ], 'lastModifiedDate' => [ 'shape' => 'Timestamp', ], 'metricsExportConfig' => [ 'shape' => 'MetricsExportConfig', ], ], ], 'UpdateStreamRequest' => [ 'type' => 'structure', 'required' => [ 'streamId', ], 'members' => [ 'streamId' => [ 'shape' => 'StreamId', 'location' => 'uri', 'locationName' => 'streamId', ], 'description' => [ 'shape' => 'StreamDescription', ], 'files' => [ 'shape' => 'StreamFiles', ], 'roleArn' => [ 'shape' => 'RoleArn', ], ], ], 'UpdateStreamResponse' => [ 'type' => 'structure', 'members' => [ 'streamId' => [ 'shape' => 'StreamId', ], 'streamArn' => [ 'shape' => 'StreamArn', ], 'description' => [ 'shape' => 'StreamDescription', ], 'streamVersion' => [ 'shape' => 'StreamVersion', ], ], ], 'UpdateThingGroupRequest' => [ 'type' => 'structure', 'required' => [ 'thingGroupName', 'thingGroupProperties', ], 'members' => [ 'thingGroupName' => [ 'shape' => 'ThingGroupName', 'location' => 'uri', 'locationName' => 'thingGroupName', ], 'thingGroupProperties' => [ 'shape' => 'ThingGroupProperties', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', ], ], ], 'UpdateThingGroupResponse' => [ 'type' => 'structure', 'members' => [ 'version' => [ 'shape' => 'Version', ], ], ], 'UpdateThingGroupsForThingRequest' => [ 'type' => 'structure', 'members' => [ 'thingName' => [ 'shape' => 'ThingName', ], 'thingGroupsToAdd' => [ 'shape' => 'ThingGroupList', ], 'thingGroupsToRemove' => [ 'shape' => 'ThingGroupList', ], 'overrideDynamicGroups' => [ 'shape' => 'OverrideDynamicGroups', ], ], ], 'UpdateThingGroupsForThingResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'attributePayload' => [ 'shape' => 'AttributePayload', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', ], 'removeThingType' => [ 'shape' => 'RemoveThingType', ], ], ], 'UpdateThingResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateTopicRuleDestinationRequest' => [ 'type' => 'structure', 'required' => [ 'arn', 'status', ], 'members' => [ 'arn' => [ 'shape' => 'AwsArn', ], 'status' => [ 'shape' => 'TopicRuleDestinationStatus', ], ], ], 'UpdateTopicRuleDestinationResponse' => [ 'type' => 'structure', 'members' => [], ], 'Url' => [ 'type' => 'string', 'max' => 2000, ], 'UseBase64' => [ 'type' => 'boolean', ], 'UserProperties' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserProperty', ], 'max' => 100, 'min' => 1, ], 'UserProperty' => [ 'type' => 'structure', 'required' => [ 'key', 'value', ], 'members' => [ 'key' => [ 'shape' => 'UserPropertyKey', ], 'value' => [ 'shape' => 'UserPropertyValue', ], ], ], 'UserPropertyKey' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, ], 'UserPropertyValue' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, ], 'Valid' => [ 'type' => 'boolean', ], 'ValidateSecurityProfileBehaviorsRequest' => [ 'type' => 'structure', 'required' => [ 'behaviors', ], 'members' => [ 'behaviors' => [ 'shape' => 'Behaviors', ], ], ], 'ValidateSecurityProfileBehaviorsResponse' => [ 'type' => 'structure', 'members' => [ 'valid' => [ 'shape' => 'Valid', ], 'validationErrors' => [ 'shape' => 'ValidationErrors', ], ], ], 'ValidationError' => [ 'type' => 'structure', 'members' => [ 'errorMessage' => [ 'shape' => 'ErrorMessage', ], ], ], 'ValidationErrors' => [ 'type' => 'list', 'member' => [ 'shape' => 'ValidationError', ], ], 'ValidationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'Value' => [ 'type' => 'string', 'max' => 4096, 'min' => 0, 'pattern' => '[\\s\\S]*', ], 'Variance' => [ 'type' => 'double', ], 'VerificationState' => [ 'type' => 'string', 'enum' => [ 'FALSE_POSITIVE', 'BENIGN_POSITIVE', 'TRUE_POSITIVE', 'UNKNOWN', ], ], 'VerificationStateDescription' => [ 'type' => 'string', 'max' => 1000, 'pattern' => '[^\\p{Cntrl}]*', ], 'Version' => [ 'type' => 'long', ], 'VersionConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'VersionName' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '[a-zA-Z0-9-_.]+', ], 'VersionNumber' => [ 'type' => 'long', ], 'VersionUpdateByJobsConfig' => [ 'type' => 'structure', 'members' => [ 'enabled' => [ 'shape' => 'EnabledBoolean', ], 'roleArn' => [ 'shape' => 'RoleArn', ], ], ], 'VersionsLimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'ViolationEvent' => [ 'type' => 'structure', 'members' => [ 'violationId' => [ 'shape' => 'ViolationId', ], 'thingName' => [ 'shape' => 'DeviceDefenderThingName', ], 'securityProfileName' => [ 'shape' => 'SecurityProfileName', ], 'behavior' => [ 'shape' => 'Behavior', ], 'metricValue' => [ 'shape' => 'MetricValue', ], 'violationEventAdditionalInfo' => [ 'shape' => 'ViolationEventAdditionalInfo', ], 'violationEventType' => [ 'shape' => 'ViolationEventType', ], 'verificationState' => [ 'shape' => 'VerificationState', ], 'verificationStateDescription' => [ 'shape' => 'VerificationStateDescription', ], 'violationEventTime' => [ 'shape' => 'Timestamp', ], ], ], 'ViolationEventAdditionalInfo' => [ 'type' => 'structure', 'members' => [ 'confidenceLevel' => [ 'shape' => 'ConfidenceLevel', ], ], ], 'ViolationEventOccurrenceRange' => [ 'type' => 'structure', 'required' => [ 'startTime', 'endTime', ], 'members' => [ 'startTime' => [ 'shape' => 'Timestamp', ], 'endTime' => [ 'shape' => 'Timestamp', ], ], ], 'ViolationEventType' => [ 'type' => 'string', 'enum' => [ 'in-alarm', 'alarm-cleared', 'alarm-invalidated', ], ], 'ViolationEvents' => [ 'type' => 'list', 'member' => [ 'shape' => 'ViolationEvent', ], ], 'ViolationId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9\\-]+', ], 'VpcDestinationConfiguration' => [ 'type' => 'structure', 'required' => [ 'subnetIds', 'vpcId', 'roleArn', ], 'members' => [ 'subnetIds' => [ 'shape' => 'SubnetIdList', ], 'securityGroups' => [ 'shape' => 'SecurityGroupList', ], 'vpcId' => [ 'shape' => 'VpcId', ], 'roleArn' => [ 'shape' => 'AwsArn', ], ], ], 'VpcDestinationProperties' => [ 'type' => 'structure', 'members' => [ 'subnetIds' => [ 'shape' => 'SubnetIdList', ], 'securityGroups' => [ 'shape' => 'SecurityGroupList', ], 'vpcId' => [ 'shape' => 'VpcId', ], 'roleArn' => [ 'shape' => 'AwsArn', ], ], ], 'VpcDestinationSummary' => [ 'type' => 'structure', 'members' => [ 'subnetIds' => [ 'shape' => 'SubnetIdList', ], 'securityGroups' => [ 'shape' => 'SecurityGroupList', ], 'vpcId' => [ 'shape' => 'VpcId', ], 'roleArn' => [ 'shape' => 'AwsArn', ], ], ], 'VpcId' => [ 'type' => 'string', ], 'WaitingForDataCollectionChecksCount' => [ 'type' => 'integer', ], 'errorMessage' => [ 'type' => 'string', ], 'resourceArn' => [ 'type' => 'string', ], 'resourceId' => [ 'type' => 'string', ], 'stringValue' => [ 'type' => 'string', ], 'usePrefixAttributeValue' => [ 'type' => 'boolean', ], ],]; diff --git a/src/data/iot/2015-05-28/docs-2.json b/src/data/iot/2015-05-28/docs-2.json index e81c0f69c8..e9ae20d037 100644 --- a/src/data/iot/2015-05-28/docs-2.json +++ b/src/data/iot/2015-05-28/docs-2.json @@ -5772,14 +5772,14 @@ "NamespaceId": { "base": null, "refs": { - "AssociateTargetsWithJobRequest$namespaceId": "

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

", - "CreateJobRequest$namespaceId": "

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

", - "DeleteJobExecutionRequest$namespaceId": "

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

", - "DeleteJobRequest$namespaceId": "

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

", - "Job$namespaceId": "

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

", - "ListJobExecutionsForThingRequest$namespaceId": "

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

", - "ListJobsRequest$namespaceId": "

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

", - "UpdateJobRequest$namespaceId": "

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

" + "AssociateTargetsWithJobRequest$namespaceId": "

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.

", + "CreateJobRequest$namespaceId": "

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.

", + "DeleteJobExecutionRequest$namespaceId": "

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.

", + "DeleteJobRequest$namespaceId": "

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.

", + "Job$namespaceId": "

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.

", + "ListJobExecutionsForThingRequest$namespaceId": "

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.

", + "ListJobsRequest$namespaceId": "

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.

", + "UpdateJobRequest$namespaceId": "

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.

" } }, "NextToken": { @@ -6589,8 +6589,7 @@ "QueryMaxResults": { "base": null, "refs": { - "ListIndicesRequest$maxResults": "

The maximum number of results to return at one time.

", - "SearchIndexRequest$maxResults": "

The maximum number of results to return per page at one time. The response might contain fewer results but will never contain more.

" + "ListIndicesRequest$maxResults": "

The maximum number of results to return at one time.

" } }, "QueryString": { @@ -7262,6 +7261,12 @@ "refs": { } }, + "SearchQueryMaxResults": { + "base": null, + "refs": { + "SearchIndexRequest$maxResults": "

The maximum number of results to return per page at one time. This maximum number cannot exceed 100. The response might contain fewer results but will never contain more. You can use nextToken to retrieve the next set of results until nextToken returns NULL.

" + } + }, "SearchableAttributes": { "base": null, "refs": { diff --git a/src/data/iot/2015-05-28/docs-2.json.php b/src/data/iot/2015-05-28/docs-2.json.php index 147a083039..cece266bc6 100644 --- a/src/data/iot/2015-05-28/docs-2.json.php +++ b/src/data/iot/2015-05-28/docs-2.json.php @@ -1,3 +1,3 @@ '2.0', 'service' => 'IoT

IoT provides secure, bi-directional communication between Internet-connected devices (such as sensors, actuators, embedded devices, or smart appliances) and the Amazon Web Services cloud. You can discover your custom IoT-Data endpoint to communicate with, configure rules for data processing and integration with other services, organize resources associated with each device (Registry), configure logging, and create and manage policies and credentials to authenticate devices.

The service endpoints that expose this API are listed in Amazon Web Services IoT Core Endpoints and Quotas. You must use the endpoint for the region that has the resources you want to access.

The service name used by Amazon Web Services Signature Version 4 to sign the request is: execute-api.

For more information about how IoT works, see the Developer Guide.

For information about how to use the credentials provider for IoT, see Authorizing Direct Calls to Amazon Web Services Services.

', 'operations' => [ 'AcceptCertificateTransfer' => '

Accepts a pending certificate transfer. The default state of the certificate is INACTIVE.

To check for pending certificate transfers, call ListCertificates to enumerate your certificates.

Requires permission to access the AcceptCertificateTransfer action.

', 'AddThingToBillingGroup' => '

Adds a thing to a billing group.

Requires permission to access the AddThingToBillingGroup action.

', 'AddThingToThingGroup' => '

Adds a thing to a thing group.

Requires permission to access the AddThingToThingGroup action.

', 'AssociateTargetsWithJob' => '

Associates a group with a continuous job. The following criteria must be met:

  • The job must have been created with the targetSelection field set to "CONTINUOUS".

  • The job status must currently be "IN_PROGRESS".

  • The total number of targets associated with a job must not exceed 100.

Requires permission to access the AssociateTargetsWithJob action.

', 'AttachPolicy' => '

Attaches the specified policy to the specified principal (certificate or other credential).

Requires permission to access the AttachPolicy action.

', 'AttachPrincipalPolicy' => '

Attaches the specified policy to the specified principal (certificate or other credential).

Note: This action is deprecated and works as expected for backward compatibility, but we won\'t add enhancements. Use AttachPolicy instead.

Requires permission to access the AttachPrincipalPolicy action.

', 'AttachSecurityProfile' => '

Associates a Device Defender security profile with a thing group or this account. Each thing group or account can have up to five security profiles associated with it.

Requires permission to access the AttachSecurityProfile action.

', 'AttachThingPrincipal' => '

Attaches the specified principal to the specified thing. A principal can be X.509 certificates, Amazon Cognito identities or federated identities.

Requires permission to access the AttachThingPrincipal action.

', 'CancelAuditMitigationActionsTask' => '

Cancels a mitigation action task that is in progress. If the task is not in progress, an InvalidRequestException occurs.

Requires permission to access the CancelAuditMitigationActionsTask action.

', 'CancelAuditTask' => '

Cancels an audit that is in progress. The audit can be either scheduled or on demand. If the audit isn\'t in progress, an "InvalidRequestException" occurs.

Requires permission to access the CancelAuditTask action.

', 'CancelCertificateTransfer' => '

Cancels a pending transfer for the specified certificate.

Note Only the transfer source account can use this operation to cancel a transfer. (Transfer destinations can use RejectCertificateTransfer instead.) After transfer, IoT returns the certificate to the source account in the INACTIVE state. After the destination account has accepted the transfer, the transfer cannot be cancelled.

After a certificate transfer is cancelled, the status of the certificate changes from PENDING_TRANSFER to INACTIVE.

Requires permission to access the CancelCertificateTransfer action.

', 'CancelDetectMitigationActionsTask' => '

Cancels a Device Defender ML Detect mitigation action.

Requires permission to access the CancelDetectMitigationActionsTask action.

', 'CancelJob' => '

Cancels a job.

Requires permission to access the CancelJob action.

', 'CancelJobExecution' => '

Cancels the execution of a job for a given thing.

Requires permission to access the CancelJobExecution action.

', 'ClearDefaultAuthorizer' => '

Clears the default authorizer.

Requires permission to access the ClearDefaultAuthorizer action.

', 'ConfirmTopicRuleDestination' => '

Confirms a topic rule destination. When you create a rule requiring a destination, IoT sends a confirmation message to the endpoint or base address you specify. The message includes a token which you pass back when calling ConfirmTopicRuleDestination to confirm that you own or have access to the endpoint.

Requires permission to access the ConfirmTopicRuleDestination action.

', 'CreateAuditSuppression' => '

Creates a Device Defender audit suppression.

Requires permission to access the CreateAuditSuppression action.

', 'CreateAuthorizer' => '

Creates an authorizer.

Requires permission to access the CreateAuthorizer action.

', 'CreateBillingGroup' => '

Creates a billing group.

Requires permission to access the CreateBillingGroup action.

', 'CreateCertificateFromCsr' => '

Creates an X.509 certificate using the specified certificate signing request.

Requires permission to access the CreateCertificateFromCsr action.

The CSR must include a public key that is either an RSA key with a length of at least 2048 bits or an ECC key from NIST P-256, NIST P-384, or NIST P-521 curves. For supported certificates, consult Certificate signing algorithms supported by IoT.

Reusing the same certificate signing request (CSR) results in a distinct certificate.

You can create multiple certificates in a batch by creating a directory, copying multiple .csr files into that directory, and then specifying that directory on the command line. The following commands show how to create a batch of certificates given a batch of CSRs. In the following commands, we assume that a set of CSRs are located inside of the directory my-csr-directory:

On Linux and OS X, the command is:

$ ls my-csr-directory/ | xargs -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{}

This command lists all of the CSRs in my-csr-directory and pipes each CSR file name to the aws iot create-certificate-from-csr Amazon Web Services CLI command to create a certificate for the corresponding CSR.

You can also run the aws iot create-certificate-from-csr part of the command in parallel to speed up the certificate creation process:

$ ls my-csr-directory/ | xargs -P 10 -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{}

On Windows PowerShell, the command to create certificates for all CSRs in my-csr-directory is:

> ls -Name my-csr-directory | %{aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/$_}

On a Windows command prompt, the command to create certificates for all CSRs in my-csr-directory is:

> forfiles /p my-csr-directory /c "cmd /c aws iot create-certificate-from-csr --certificate-signing-request file://@path"

', 'CreateCertificateProvider' => '

Creates an Amazon Web Services IoT Core certificate provider. You can use Amazon Web Services IoT Core certificate provider to customize how to sign a certificate signing request (CSR) in IoT fleet provisioning. For more information, see Customizing certificate signing using Amazon Web Services IoT Core certificate provider from Amazon Web Services IoT Core Developer Guide.

Requires permission to access the CreateCertificateProvider action.

After you create a certificate provider, the behavior of CreateCertificateFromCsr API for fleet provisioning will change and all API calls to CreateCertificateFromCsr will invoke the certificate provider to create the certificates. It can take up to a few minutes for this behavior to change after a certificate provider is created.

', 'CreateCustomMetric' => '

Use this API to define a Custom Metric published by your devices to Device Defender.

Requires permission to access the CreateCustomMetric action.

', 'CreateDimension' => '

Create a dimension that you can use to limit the scope of a metric used in a security profile for IoT Device Defender. For example, using a TOPIC_FILTER dimension, you can narrow down the scope of the metric only to MQTT topics whose name match the pattern specified in the dimension.

Requires permission to access the CreateDimension action.

', 'CreateDomainConfiguration' => '

Creates a domain configuration.

Requires permission to access the CreateDomainConfiguration action.

', 'CreateDynamicThingGroup' => '

Creates a dynamic thing group.

Requires permission to access the CreateDynamicThingGroup action.

', 'CreateFleetMetric' => '

Creates a fleet metric.

Requires permission to access the CreateFleetMetric action.

', 'CreateJob' => '

Creates a job.

Requires permission to access the CreateJob action.

', 'CreateJobTemplate' => '

Creates a job template.

Requires permission to access the CreateJobTemplate action.

', 'CreateKeysAndCertificate' => '

Creates a 2048-bit RSA key pair and issues an X.509 certificate using the issued public key. You can also call CreateKeysAndCertificate over MQTT from a device, for more information, see Provisioning MQTT API.

Note This is the only time IoT issues the private key for this certificate, so it is important to keep it in a secure location.

Requires permission to access the CreateKeysAndCertificate action.

', 'CreateMitigationAction' => '

Defines an action that can be applied to audit findings by using StartAuditMitigationActionsTask. Only certain types of mitigation actions can be applied to specific check names. For more information, see Mitigation actions. Each mitigation action can apply only one type of change.

Requires permission to access the CreateMitigationAction action.

', 'CreateOTAUpdate' => '

Creates an IoT OTA update on a target group of things or groups.

Requires permission to access the CreateOTAUpdate action.

', 'CreatePackage' => '

Creates an IoT software package that can be deployed to your fleet.

Requires permission to access the CreatePackage and GetIndexingConfiguration actions.

', 'CreatePackageVersion' => '

Creates a new version for an existing IoT software package.

Requires permission to access the CreatePackageVersion and GetIndexingConfiguration actions.

', 'CreatePolicy' => '

Creates an IoT policy.

The created policy is the default version for the policy. This operation creates a policy version with a version identifier of 1 and sets 1 as the policy\'s default version.

Requires permission to access the CreatePolicy action.

', 'CreatePolicyVersion' => '

Creates a new version of the specified IoT policy. To update a policy, create a new policy version. A managed policy can have up to five versions. If the policy has five versions, you must use DeletePolicyVersion to delete an existing version before you create a new one.

Optionally, you can set the new version as the policy\'s default version. The default version is the operative version (that is, the version that is in effect for the certificates to which the policy is attached).

Requires permission to access the CreatePolicyVersion action.

', 'CreateProvisioningClaim' => '

Creates a provisioning claim.

Requires permission to access the CreateProvisioningClaim action.

', 'CreateProvisioningTemplate' => '

Creates a provisioning template.

Requires permission to access the CreateProvisioningTemplate action.

', 'CreateProvisioningTemplateVersion' => '

Creates a new version of a provisioning template.

Requires permission to access the CreateProvisioningTemplateVersion action.

', 'CreateRoleAlias' => '

Creates a role alias.

Requires permission to access the CreateRoleAlias action.

', 'CreateScheduledAudit' => '

Creates a scheduled audit that is run at a specified time interval.

Requires permission to access the CreateScheduledAudit action.

', 'CreateSecurityProfile' => '

Creates a Device Defender security profile.

Requires permission to access the CreateSecurityProfile action.

', 'CreateStream' => '

Creates a stream for delivering one or more large files in chunks over MQTT. A stream transports data bytes in chunks or blocks packaged as MQTT messages from a source like S3. You can have one or more files associated with a stream.

Requires permission to access the CreateStream action.

', 'CreateThing' => '

Creates a thing record in the registry. If this call is made multiple times using the same thing name and configuration, the call will succeed. If this call is made with the same thing name but different configuration a ResourceAlreadyExistsException is thrown.

This is a control plane operation. See Authorization for information about authorizing control plane actions.

Requires permission to access the CreateThing action.

', 'CreateThingGroup' => '

Create a thing group.

This is a control plane operation. See Authorization for information about authorizing control plane actions.

If the ThingGroup that you create has the exact same attributes as an existing ThingGroup, you will get a 200 success response.

Requires permission to access the CreateThingGroup action.

', 'CreateThingType' => '

Creates a new thing type.

Requires permission to access the CreateThingType action.

', 'CreateTopicRule' => '

Creates a rule. Creating rules is an administrator-level action. Any user who has permission to create rules will be able to access data processed by the rule.

Requires permission to access the CreateTopicRule action.

', 'CreateTopicRuleDestination' => '

Creates a topic rule destination. The destination must be confirmed prior to use.

Requires permission to access the CreateTopicRuleDestination action.

', 'DeleteAccountAuditConfiguration' => '

Restores the default settings for Device Defender audits for this account. Any configuration data you entered is deleted and all audit checks are reset to disabled.

Requires permission to access the DeleteAccountAuditConfiguration action.

', 'DeleteAuditSuppression' => '

Deletes a Device Defender audit suppression.

Requires permission to access the DeleteAuditSuppression action.

', 'DeleteAuthorizer' => '

Deletes an authorizer.

Requires permission to access the DeleteAuthorizer action.

', 'DeleteBillingGroup' => '

Deletes the billing group.

Requires permission to access the DeleteBillingGroup action.

', 'DeleteCACertificate' => '

Deletes a registered CA certificate.

Requires permission to access the DeleteCACertificate action.

', 'DeleteCertificate' => '

Deletes the specified certificate.

A certificate cannot be deleted if it has a policy or IoT thing attached to it or if its status is set to ACTIVE. To delete a certificate, first use the DetachPolicy action to detach all policies. Next, use the UpdateCertificate action to set the certificate to the INACTIVE status.

Requires permission to access the DeleteCertificate action.

', 'DeleteCertificateProvider' => '

Deletes a certificate provider.

Requires permission to access the DeleteCertificateProvider action.

If you delete the certificate provider resource, the behavior of CreateCertificateFromCsr will resume, and IoT will create certificates signed by IoT from a certificate signing request (CSR).

', 'DeleteCustomMetric' => '

Deletes a Device Defender detect custom metric.

Requires permission to access the DeleteCustomMetric action.

Before you can delete a custom metric, you must first remove the custom metric from all security profiles it\'s a part of. The security profile associated with the custom metric can be found using the ListSecurityProfiles API with metricName set to your custom metric name.

', 'DeleteDimension' => '

Removes the specified dimension from your Amazon Web Services accounts.

Requires permission to access the DeleteDimension action.

', 'DeleteDomainConfiguration' => '

Deletes the specified domain configuration.

Requires permission to access the DeleteDomainConfiguration action.

', 'DeleteDynamicThingGroup' => '

Deletes a dynamic thing group.

Requires permission to access the DeleteDynamicThingGroup action.

', 'DeleteFleetMetric' => '

Deletes the specified fleet metric. Returns successfully with no error if the deletion is successful or you specify a fleet metric that doesn\'t exist.

Requires permission to access the DeleteFleetMetric action.

', 'DeleteJob' => '

Deletes a job and its related job executions.

Deleting a job may take time, depending on the number of job executions created for the job and various other factors. While the job is being deleted, the status of the job will be shown as "DELETION_IN_PROGRESS". Attempting to delete or cancel a job whose status is already "DELETION_IN_PROGRESS" will result in an error.

Only 10 jobs may have status "DELETION_IN_PROGRESS" at the same time, or a LimitExceededException will occur.

Requires permission to access the DeleteJob action.

', 'DeleteJobExecution' => '

Deletes a job execution.

Requires permission to access the DeleteJobExecution action.

', 'DeleteJobTemplate' => '

Deletes the specified job template.

', 'DeleteMitigationAction' => '

Deletes a defined mitigation action from your Amazon Web Services accounts.

Requires permission to access the DeleteMitigationAction action.

', 'DeleteOTAUpdate' => '

Delete an OTA update.

Requires permission to access the DeleteOTAUpdate action.

', 'DeletePackage' => '

Deletes a specific version from a software package.

Note: All package versions must be deleted before deleting the software package.

Requires permission to access the DeletePackageVersion action.

', 'DeletePackageVersion' => '

Deletes a specific version from a software package.

Note: If a package version is designated as default, you must remove the designation from the software package using the UpdatePackage action.

', 'DeletePolicy' => '

Deletes the specified policy.

A policy cannot be deleted if it has non-default versions or it is attached to any certificate.

To delete a policy, use the DeletePolicyVersion action to delete all non-default versions of the policy; use the DetachPolicy action to detach the policy from any certificate; and then use the DeletePolicy action to delete the policy.

When a policy is deleted using DeletePolicy, its default version is deleted with it.

Because of the distributed nature of Amazon Web Services, it can take up to five minutes after a policy is detached before it\'s ready to be deleted.

Requires permission to access the DeletePolicy action.

', 'DeletePolicyVersion' => '

Deletes the specified version of the specified policy. You cannot delete the default version of a policy using this action. To delete the default version of a policy, use DeletePolicy. To find out which version of a policy is marked as the default version, use ListPolicyVersions.

Requires permission to access the DeletePolicyVersion action.

', 'DeleteProvisioningTemplate' => '

Deletes a provisioning template.

Requires permission to access the DeleteProvisioningTemplate action.

', 'DeleteProvisioningTemplateVersion' => '

Deletes a provisioning template version.

Requires permission to access the DeleteProvisioningTemplateVersion action.

', 'DeleteRegistrationCode' => '

Deletes a CA certificate registration code.

Requires permission to access the DeleteRegistrationCode action.

', 'DeleteRoleAlias' => '

Deletes a role alias

Requires permission to access the DeleteRoleAlias action.

', 'DeleteScheduledAudit' => '

Deletes a scheduled audit.

Requires permission to access the DeleteScheduledAudit action.

', 'DeleteSecurityProfile' => '

Deletes a Device Defender security profile.

Requires permission to access the DeleteSecurityProfile action.

', 'DeleteStream' => '

Deletes a stream.

Requires permission to access the DeleteStream action.

', 'DeleteThing' => '

Deletes the specified thing. Returns successfully with no error if the deletion is successful or you specify a thing that doesn\'t exist.

Requires permission to access the DeleteThing action.

', 'DeleteThingGroup' => '

Deletes a thing group.

Requires permission to access the DeleteThingGroup action.

', 'DeleteThingType' => '

Deletes the specified thing type. You cannot delete a thing type if it has things associated with it. To delete a thing type, first mark it as deprecated by calling DeprecateThingType, then remove any associated things by calling UpdateThing to change the thing type on any associated thing, and finally use DeleteThingType to delete the thing type.

Requires permission to access the DeleteThingType action.

', 'DeleteTopicRule' => '

Deletes the rule.

Requires permission to access the DeleteTopicRule action.

', 'DeleteTopicRuleDestination' => '

Deletes a topic rule destination.

Requires permission to access the DeleteTopicRuleDestination action.

', 'DeleteV2LoggingLevel' => '

Deletes a logging level.

Requires permission to access the DeleteV2LoggingLevel action.

', 'DeprecateThingType' => '

Deprecates a thing type. You can not associate new things with deprecated thing type.

Requires permission to access the DeprecateThingType action.

', 'DescribeAccountAuditConfiguration' => '

Gets information about the Device Defender audit settings for this account. Settings include how audit notifications are sent and which audit checks are enabled or disabled.

Requires permission to access the DescribeAccountAuditConfiguration action.

', 'DescribeAuditFinding' => '

Gets information about a single audit finding. Properties include the reason for noncompliance, the severity of the issue, and the start time when the audit that returned the finding.

Requires permission to access the DescribeAuditFinding action.

', 'DescribeAuditMitigationActionsTask' => '

Gets information about an audit mitigation task that is used to apply mitigation actions to a set of audit findings. Properties include the actions being applied, the audit checks to which they\'re being applied, the task status, and aggregated task statistics.

', 'DescribeAuditSuppression' => '

Gets information about a Device Defender audit suppression.

', 'DescribeAuditTask' => '

Gets information about a Device Defender audit.

Requires permission to access the DescribeAuditTask action.

', 'DescribeAuthorizer' => '

Describes an authorizer.

Requires permission to access the DescribeAuthorizer action.

', 'DescribeBillingGroup' => '

Returns information about a billing group.

Requires permission to access the DescribeBillingGroup action.

', 'DescribeCACertificate' => '

Describes a registered CA certificate.

Requires permission to access the DescribeCACertificate action.

', 'DescribeCertificate' => '

Gets information about the specified certificate.

Requires permission to access the DescribeCertificate action.

', 'DescribeCertificateProvider' => '

Describes a certificate provider.

Requires permission to access the DescribeCertificateProvider action.

', 'DescribeCustomMetric' => '

Gets information about a Device Defender detect custom metric.

Requires permission to access the DescribeCustomMetric action.

', 'DescribeDefaultAuthorizer' => '

Describes the default authorizer.

Requires permission to access the DescribeDefaultAuthorizer action.

', 'DescribeDetectMitigationActionsTask' => '

Gets information about a Device Defender ML Detect mitigation action.

Requires permission to access the DescribeDetectMitigationActionsTask action.

', 'DescribeDimension' => '

Provides details about a dimension that is defined in your Amazon Web Services accounts.

Requires permission to access the DescribeDimension action.

', 'DescribeDomainConfiguration' => '

Gets summary information about a domain configuration.

Requires permission to access the DescribeDomainConfiguration action.

', 'DescribeEndpoint' => '

Returns or creates a unique endpoint specific to the Amazon Web Services account making the call.

The first time DescribeEndpoint is called, an endpoint is created. All subsequent calls to DescribeEndpoint return the same endpoint.

Requires permission to access the DescribeEndpoint action.

', 'DescribeEventConfigurations' => '

Describes event configurations.

Requires permission to access the DescribeEventConfigurations action.

', 'DescribeFleetMetric' => '

Gets information about the specified fleet metric.

Requires permission to access the DescribeFleetMetric action.

', 'DescribeIndex' => '

Describes a search index.

Requires permission to access the DescribeIndex action.

', 'DescribeJob' => '

Describes a job.

Requires permission to access the DescribeJob action.

', 'DescribeJobExecution' => '

Describes a job execution.

Requires permission to access the DescribeJobExecution action.

', 'DescribeJobTemplate' => '

Returns information about a job template.

', 'DescribeManagedJobTemplate' => '

View details of a managed job template.

', 'DescribeMitigationAction' => '

Gets information about a mitigation action.

Requires permission to access the DescribeMitigationAction action.

', 'DescribeProvisioningTemplate' => '

Returns information about a provisioning template.

Requires permission to access the DescribeProvisioningTemplate action.

', 'DescribeProvisioningTemplateVersion' => '

Returns information about a provisioning template version.

Requires permission to access the DescribeProvisioningTemplateVersion action.

', 'DescribeRoleAlias' => '

Describes a role alias.

Requires permission to access the DescribeRoleAlias action.

', 'DescribeScheduledAudit' => '

Gets information about a scheduled audit.

Requires permission to access the DescribeScheduledAudit action.

', 'DescribeSecurityProfile' => '

Gets information about a Device Defender security profile.

Requires permission to access the DescribeSecurityProfile action.

', 'DescribeStream' => '

Gets information about a stream.

Requires permission to access the DescribeStream action.

', 'DescribeThing' => '

Gets information about the specified thing.

Requires permission to access the DescribeThing action.

', 'DescribeThingGroup' => '

Describe a thing group.

Requires permission to access the DescribeThingGroup action.

', 'DescribeThingRegistrationTask' => '

Describes a bulk thing provisioning task.

Requires permission to access the DescribeThingRegistrationTask action.

', 'DescribeThingType' => '

Gets information about the specified thing type.

Requires permission to access the DescribeThingType action.

', 'DetachPolicy' => '

Detaches a policy from the specified target.

Because of the distributed nature of Amazon Web Services, it can take up to five minutes after a policy is detached before it\'s ready to be deleted.

Requires permission to access the DetachPolicy action.

', 'DetachPrincipalPolicy' => '

Removes the specified policy from the specified certificate.

Note: This action is deprecated and works as expected for backward compatibility, but we won\'t add enhancements. Use DetachPolicy instead.

Requires permission to access the DetachPrincipalPolicy action.

', 'DetachSecurityProfile' => '

Disassociates a Device Defender security profile from a thing group or from this account.

Requires permission to access the DetachSecurityProfile action.

', 'DetachThingPrincipal' => '

Detaches the specified principal from the specified thing. A principal can be X.509 certificates, IAM users, groups, and roles, Amazon Cognito identities or federated identities.

This call is asynchronous. It might take several seconds for the detachment to propagate.

Requires permission to access the DetachThingPrincipal action.

', 'DisableTopicRule' => '

Disables the rule.

Requires permission to access the DisableTopicRule action.

', 'EnableTopicRule' => '

Enables the rule.

Requires permission to access the EnableTopicRule action.

', 'GetBehaviorModelTrainingSummaries' => '

Returns a Device Defender\'s ML Detect Security Profile training model\'s status.

Requires permission to access the GetBehaviorModelTrainingSummaries action.

', 'GetBucketsAggregation' => '

Aggregates on indexed data with search queries pertaining to particular fields.

Requires permission to access the GetBucketsAggregation action.

', 'GetCardinality' => '

Returns the approximate count of unique values that match the query.

Requires permission to access the GetCardinality action.

', 'GetEffectivePolicies' => '

Gets a list of the policies that have an effect on the authorization behavior of the specified device when it connects to the IoT device gateway.

Requires permission to access the GetEffectivePolicies action.

', 'GetIndexingConfiguration' => '

Gets the indexing configuration.

Requires permission to access the GetIndexingConfiguration action.

', 'GetJobDocument' => '

Gets a job document.

Requires permission to access the GetJobDocument action.

', 'GetLoggingOptions' => '

Gets the logging options.

NOTE: use of this command is not recommended. Use GetV2LoggingOptions instead.

Requires permission to access the GetLoggingOptions action.

', 'GetOTAUpdate' => '

Gets an OTA update.

Requires permission to access the GetOTAUpdate action.

', 'GetPackage' => '

Gets information about the specified software package.

Requires permission to access the GetPackage action.

', 'GetPackageConfiguration' => '

Gets information about the specified software package\'s configuration.

Requires permission to access the GetPackageConfiguration action.

', 'GetPackageVersion' => '

Gets information about the specified package version.

Requires permission to access the GetPackageVersion action.

', 'GetPercentiles' => '

Groups the aggregated values that match the query into percentile groupings. The default percentile groupings are: 1,5,25,50,75,95,99, although you can specify your own when you call GetPercentiles. This function returns a value for each percentile group specified (or the default percentile groupings). The percentile group "1" contains the aggregated field value that occurs in approximately one percent of the values that match the query. The percentile group "5" contains the aggregated field value that occurs in approximately five percent of the values that match the query, and so on. The result is an approximation, the more values that match the query, the more accurate the percentile values.

Requires permission to access the GetPercentiles action.

', 'GetPolicy' => '

Gets information about the specified policy with the policy document of the default version.

Requires permission to access the GetPolicy action.

', 'GetPolicyVersion' => '

Gets information about the specified policy version.

Requires permission to access the GetPolicyVersion action.

', 'GetRegistrationCode' => '

Gets a registration code used to register a CA certificate with IoT.

IoT will create a registration code as part of this API call if the registration code doesn\'t exist or has been deleted. If you already have a registration code, this API call will return the same registration code.

Requires permission to access the GetRegistrationCode action.

', 'GetStatistics' => '

Returns the count, average, sum, minimum, maximum, sum of squares, variance, and standard deviation for the specified aggregated field. If the aggregation field is of type String, only the count statistic is returned.

Requires permission to access the GetStatistics action.

', 'GetTopicRule' => '

Gets information about the rule.

Requires permission to access the GetTopicRule action.

', 'GetTopicRuleDestination' => '

Gets information about a topic rule destination.

Requires permission to access the GetTopicRuleDestination action.

', 'GetV2LoggingOptions' => '

Gets the fine grained logging options.

Requires permission to access the GetV2LoggingOptions action.

', 'ListActiveViolations' => '

Lists the active violations for a given Device Defender security profile.

Requires permission to access the ListActiveViolations action.

', 'ListAttachedPolicies' => '

Lists the policies attached to the specified thing group.

Requires permission to access the ListAttachedPolicies action.

', 'ListAuditFindings' => '

Lists the findings (results) of a Device Defender audit or of the audits performed during a specified time period. (Findings are retained for 90 days.)

Requires permission to access the ListAuditFindings action.

', 'ListAuditMitigationActionsExecutions' => '

Gets the status of audit mitigation action tasks that were executed.

Requires permission to access the ListAuditMitigationActionsExecutions action.

', 'ListAuditMitigationActionsTasks' => '

Gets a list of audit mitigation action tasks that match the specified filters.

Requires permission to access the ListAuditMitigationActionsTasks action.

', 'ListAuditSuppressions' => '

Lists your Device Defender audit listings.

Requires permission to access the ListAuditSuppressions action.

', 'ListAuditTasks' => '

Lists the Device Defender audits that have been performed during a given time period.

Requires permission to access the ListAuditTasks action.

', 'ListAuthorizers' => '

Lists the authorizers registered in your account.

Requires permission to access the ListAuthorizers action.

', 'ListBillingGroups' => '

Lists the billing groups you have created.

Requires permission to access the ListBillingGroups action.

', 'ListCACertificates' => '

Lists the CA certificates registered for your Amazon Web Services account.

The results are paginated with a default page size of 25. You can use the returned marker to retrieve additional results.

Requires permission to access the ListCACertificates action.

', 'ListCertificateProviders' => '

Lists all your certificate providers in your Amazon Web Services account.

Requires permission to access the ListCertificateProviders action.

', 'ListCertificates' => '

Lists the certificates registered in your Amazon Web Services account.

The results are paginated with a default page size of 25. You can use the returned marker to retrieve additional results.

Requires permission to access the ListCertificates action.

', 'ListCertificatesByCA' => '

List the device certificates signed by the specified CA certificate.

Requires permission to access the ListCertificatesByCA action.

', 'ListCustomMetrics' => '

Lists your Device Defender detect custom metrics.

Requires permission to access the ListCustomMetrics action.

', 'ListDetectMitigationActionsExecutions' => '

Lists mitigation actions executions for a Device Defender ML Detect Security Profile.

Requires permission to access the ListDetectMitigationActionsExecutions action.

', 'ListDetectMitigationActionsTasks' => '

List of Device Defender ML Detect mitigation actions tasks.

Requires permission to access the ListDetectMitigationActionsTasks action.

', 'ListDimensions' => '

List the set of dimensions that are defined for your Amazon Web Services accounts.

Requires permission to access the ListDimensions action.

', 'ListDomainConfigurations' => '

Gets a list of domain configurations for the user. This list is sorted alphabetically by domain configuration name.

Requires permission to access the ListDomainConfigurations action.

', 'ListFleetMetrics' => '

Lists all your fleet metrics.

Requires permission to access the ListFleetMetrics action.

', 'ListIndices' => '

Lists the search indices.

Requires permission to access the ListIndices action.

', 'ListJobExecutionsForJob' => '

Lists the job executions for a job.

Requires permission to access the ListJobExecutionsForJob action.

', 'ListJobExecutionsForThing' => '

Lists the job executions for the specified thing.

Requires permission to access the ListJobExecutionsForThing action.

', 'ListJobTemplates' => '

Returns a list of job templates.

Requires permission to access the ListJobTemplates action.

', 'ListJobs' => '

Lists jobs.

Requires permission to access the ListJobs action.

', 'ListManagedJobTemplates' => '

Returns a list of managed job templates.

', 'ListMetricValues' => '

Lists the values reported for an IoT Device Defender metric (device-side metric, cloud-side metric, or custom metric) by the given thing during the specified time period.

', 'ListMitigationActions' => '

Gets a list of all mitigation actions that match the specified filter criteria.

Requires permission to access the ListMitigationActions action.

', 'ListOTAUpdates' => '

Lists OTA updates.

Requires permission to access the ListOTAUpdates action.

', 'ListOutgoingCertificates' => '

Lists certificates that are being transferred but not yet accepted.

Requires permission to access the ListOutgoingCertificates action.

', 'ListPackageVersions' => '

Lists the software package versions associated to the account.

Requires permission to access the ListPackageVersions action.

', 'ListPackages' => '

Lists the software packages associated to the account.

Requires permission to access the ListPackages action.

', 'ListPolicies' => '

Lists your policies.

Requires permission to access the ListPolicies action.

', 'ListPolicyPrincipals' => '

Lists the principals associated with the specified policy.

Note: This action is deprecated and works as expected for backward compatibility, but we won\'t add enhancements. Use ListTargetsForPolicy instead.

Requires permission to access the ListPolicyPrincipals action.

', 'ListPolicyVersions' => '

Lists the versions of the specified policy and identifies the default version.

Requires permission to access the ListPolicyVersions action.

', 'ListPrincipalPolicies' => '

Lists the policies attached to the specified principal. If you use an Cognito identity, the ID must be in AmazonCognito Identity format.

Note: This action is deprecated and works as expected for backward compatibility, but we won\'t add enhancements. Use ListAttachedPolicies instead.

Requires permission to access the ListPrincipalPolicies action.

', 'ListPrincipalThings' => '

Lists the things associated with the specified principal. A principal can be X.509 certificates, IAM users, groups, and roles, Amazon Cognito identities or federated identities.

Requires permission to access the ListPrincipalThings action.

', 'ListProvisioningTemplateVersions' => '

A list of provisioning template versions.

Requires permission to access the ListProvisioningTemplateVersions action.

', 'ListProvisioningTemplates' => '

Lists the provisioning templates in your Amazon Web Services account.

Requires permission to access the ListProvisioningTemplates action.

', 'ListRelatedResourcesForAuditFinding' => '

The related resources of an Audit finding. The following resources can be returned from calling this API:

  • DEVICE_CERTIFICATE

  • CA_CERTIFICATE

  • IOT_POLICY

  • COGNITO_IDENTITY_POOL

  • CLIENT_ID

  • ACCOUNT_SETTINGS

  • ROLE_ALIAS

  • IAM_ROLE

  • ISSUER_CERTIFICATE

This API is similar to DescribeAuditFinding\'s RelatedResources but provides pagination and is not limited to 10 resources. When calling DescribeAuditFinding for the intermediate CA revoked for active device certificates check, RelatedResources will not be populated. You must use this API, ListRelatedResourcesForAuditFinding, to list the certificates.

', 'ListRoleAliases' => '

Lists the role aliases registered in your account.

Requires permission to access the ListRoleAliases action.

', 'ListScheduledAudits' => '

Lists all of your scheduled audits.

Requires permission to access the ListScheduledAudits action.

', 'ListSecurityProfiles' => '

Lists the Device Defender security profiles you\'ve created. You can filter security profiles by dimension or custom metric.

Requires permission to access the ListSecurityProfiles action.

dimensionName and metricName cannot be used in the same request.

', 'ListSecurityProfilesForTarget' => '

Lists the Device Defender security profiles attached to a target (thing group).

Requires permission to access the ListSecurityProfilesForTarget action.

', 'ListStreams' => '

Lists all of the streams in your Amazon Web Services account.

Requires permission to access the ListStreams action.

', 'ListTagsForResource' => '

Lists the tags (metadata) you have assigned to the resource.

Requires permission to access the ListTagsForResource action.

', 'ListTargetsForPolicy' => '

List targets for the specified policy.

Requires permission to access the ListTargetsForPolicy action.

', 'ListTargetsForSecurityProfile' => '

Lists the targets (thing groups) associated with a given Device Defender security profile.

Requires permission to access the ListTargetsForSecurityProfile action.

', 'ListThingGroups' => '

List the thing groups in your account.

Requires permission to access the ListThingGroups action.

', 'ListThingGroupsForThing' => '

List the thing groups to which the specified thing belongs.

Requires permission to access the ListThingGroupsForThing action.

', 'ListThingPrincipals' => '

Lists the principals associated with the specified thing. A principal can be X.509 certificates, IAM users, groups, and roles, Amazon Cognito identities or federated identities.

Requires permission to access the ListThingPrincipals action.

', 'ListThingRegistrationTaskReports' => '

Information about the thing registration tasks.

', 'ListThingRegistrationTasks' => '

List bulk thing provisioning tasks.

Requires permission to access the ListThingRegistrationTasks action.

', 'ListThingTypes' => '

Lists the existing thing types.

Requires permission to access the ListThingTypes action.

', 'ListThings' => '

Lists your things. Use the attributeName and attributeValue parameters to filter your things. For example, calling ListThings with attributeName=Color and attributeValue=Red retrieves all things in the registry that contain an attribute Color with the value Red. For more information, see List Things from the Amazon Web Services IoT Core Developer Guide.

Requires permission to access the ListThings action.

You will not be charged for calling this API if an Access denied error is returned. You will also not be charged if no attributes or pagination token was provided in request and no pagination token and no results were returned.

', 'ListThingsInBillingGroup' => '

Lists the things you have added to the given billing group.

Requires permission to access the ListThingsInBillingGroup action.

', 'ListThingsInThingGroup' => '

Lists the things in the specified group.

Requires permission to access the ListThingsInThingGroup action.

', 'ListTopicRuleDestinations' => '

Lists all the topic rule destinations in your Amazon Web Services account.

Requires permission to access the ListTopicRuleDestinations action.

', 'ListTopicRules' => '

Lists the rules for the specific topic.

Requires permission to access the ListTopicRules action.

', 'ListV2LoggingLevels' => '

Lists logging levels.

Requires permission to access the ListV2LoggingLevels action.

', 'ListViolationEvents' => '

Lists the Device Defender security profile violations discovered during the given time period. You can use filters to limit the results to those alerts issued for a particular security profile, behavior, or thing (device).

Requires permission to access the ListViolationEvents action.

', 'PutVerificationStateOnViolation' => '

Set a verification state and provide a description of that verification state on a violation (detect alarm).

', 'RegisterCACertificate' => '

Registers a CA certificate with Amazon Web Services IoT Core. There is no limit to the number of CA certificates you can register in your Amazon Web Services account. You can register up to 10 CA certificates with the same CA subject field per Amazon Web Services account.

Requires permission to access the RegisterCACertificate action.

', 'RegisterCertificate' => '

Registers a device certificate with IoT in the same certificate mode as the signing CA. If you have more than one CA certificate that has the same subject field, you must specify the CA certificate that was used to sign the device certificate being registered.

Requires permission to access the RegisterCertificate action.

', 'RegisterCertificateWithoutCA' => '

Register a certificate that does not have a certificate authority (CA). For supported certificates, consult Certificate signing algorithms supported by IoT.

', 'RegisterThing' => '

Provisions a thing in the device registry. RegisterThing calls other IoT control plane APIs. These calls might exceed your account level IoT Throttling Limits and cause throttle errors. Please contact Amazon Web Services Customer Support to raise your throttling limits if necessary.

Requires permission to access the RegisterThing action.

', 'RejectCertificateTransfer' => '

Rejects a pending certificate transfer. After IoT rejects a certificate transfer, the certificate status changes from PENDING_TRANSFER to INACTIVE.

To check for pending certificate transfers, call ListCertificates to enumerate your certificates.

This operation can only be called by the transfer destination. After it is called, the certificate will be returned to the source\'s account in the INACTIVE state.

Requires permission to access the RejectCertificateTransfer action.

', 'RemoveThingFromBillingGroup' => '

Removes the given thing from the billing group.

Requires permission to access the RemoveThingFromBillingGroup action.

This call is asynchronous. It might take several seconds for the detachment to propagate.

', 'RemoveThingFromThingGroup' => '

Remove the specified thing from the specified group.

You must specify either a thingGroupArn or a thingGroupName to identify the thing group and either a thingArn or a thingName to identify the thing to remove from the thing group.

Requires permission to access the RemoveThingFromThingGroup action.

', 'ReplaceTopicRule' => '

Replaces the rule. You must specify all parameters for the new rule. Creating rules is an administrator-level action. Any user who has permission to create rules will be able to access data processed by the rule.

Requires permission to access the ReplaceTopicRule action.

', 'SearchIndex' => '

The query search index.

Requires permission to access the SearchIndex action.

', 'SetDefaultAuthorizer' => '

Sets the default authorizer. This will be used if a websocket connection is made without specifying an authorizer.

Requires permission to access the SetDefaultAuthorizer action.

', 'SetDefaultPolicyVersion' => '

Sets the specified version of the specified policy as the policy\'s default (operative) version. This action affects all certificates to which the policy is attached. To list the principals the policy is attached to, use the ListPrincipalPolicies action.

Requires permission to access the SetDefaultPolicyVersion action.

', 'SetLoggingOptions' => '

Sets the logging options.

NOTE: use of this command is not recommended. Use SetV2LoggingOptions instead.

Requires permission to access the SetLoggingOptions action.

', 'SetV2LoggingLevel' => '

Sets the logging level.

Requires permission to access the SetV2LoggingLevel action.

', 'SetV2LoggingOptions' => '

Sets the logging options for the V2 logging service.

Requires permission to access the SetV2LoggingOptions action.

', 'StartAuditMitigationActionsTask' => '

Starts a task that applies a set of mitigation actions to the specified target.

Requires permission to access the StartAuditMitigationActionsTask action.

', 'StartDetectMitigationActionsTask' => '

Starts a Device Defender ML Detect mitigation actions task.

Requires permission to access the StartDetectMitigationActionsTask action.

', 'StartOnDemandAuditTask' => '

Starts an on-demand Device Defender audit.

Requires permission to access the StartOnDemandAuditTask action.

', 'StartThingRegistrationTask' => '

Creates a bulk thing provisioning task.

Requires permission to access the StartThingRegistrationTask action.

', 'StopThingRegistrationTask' => '

Cancels a bulk thing provisioning task.

Requires permission to access the StopThingRegistrationTask action.

', 'TagResource' => '

Adds to or modifies the tags of the given resource. Tags are metadata which can be used to manage a resource.

Requires permission to access the TagResource action.

', 'TestAuthorization' => '

Tests if a specified principal is authorized to perform an IoT action on a specified resource. Use this to test and debug the authorization behavior of devices that connect to the IoT device gateway.

Requires permission to access the TestAuthorization action.

', 'TestInvokeAuthorizer' => '

Tests a custom authorization behavior by invoking a specified custom authorizer. Use this to test and debug the custom authorization behavior of devices that connect to the IoT device gateway.

Requires permission to access the TestInvokeAuthorizer action.

', 'TransferCertificate' => '

Transfers the specified certificate to the specified Amazon Web Services account.

Requires permission to access the TransferCertificate action.

You can cancel the transfer until it is acknowledged by the recipient.

No notification is sent to the transfer destination\'s account. It is up to the caller to notify the transfer target.

The certificate being transferred must not be in the ACTIVE state. You can use the UpdateCertificate action to deactivate it.

The certificate must not have any policies attached to it. You can use the DetachPolicy action to detach them.

', 'UntagResource' => '

Removes the given tags (metadata) from the resource.

Requires permission to access the UntagResource action.

', 'UpdateAccountAuditConfiguration' => '

Configures or reconfigures the Device Defender audit settings for this account. Settings include how audit notifications are sent and which audit checks are enabled or disabled.

Requires permission to access the UpdateAccountAuditConfiguration action.

', 'UpdateAuditSuppression' => '

Updates a Device Defender audit suppression.

', 'UpdateAuthorizer' => '

Updates an authorizer.

Requires permission to access the UpdateAuthorizer action.

', 'UpdateBillingGroup' => '

Updates information about the billing group.

Requires permission to access the UpdateBillingGroup action.

', 'UpdateCACertificate' => '

Updates a registered CA certificate.

Requires permission to access the UpdateCACertificate action.

', 'UpdateCertificate' => '

Updates the status of the specified certificate. This operation is idempotent.

Requires permission to access the UpdateCertificate action.

Certificates must be in the ACTIVE state to authenticate devices that use a certificate to connect to IoT.

Within a few minutes of updating a certificate from the ACTIVE state to any other state, IoT disconnects all devices that used that certificate to connect. Devices cannot use a certificate that is not in the ACTIVE state to reconnect.

', 'UpdateCertificateProvider' => '

Updates a certificate provider.

Requires permission to access the UpdateCertificateProvider action.

', 'UpdateCustomMetric' => '

Updates a Device Defender detect custom metric.

Requires permission to access the UpdateCustomMetric action.

', 'UpdateDimension' => '

Updates the definition for a dimension. You cannot change the type of a dimension after it is created (you can delete it and recreate it).

Requires permission to access the UpdateDimension action.

', 'UpdateDomainConfiguration' => '

Updates values stored in the domain configuration. Domain configurations for default endpoints can\'t be updated.

Requires permission to access the UpdateDomainConfiguration action.

', 'UpdateDynamicThingGroup' => '

Updates a dynamic thing group.

Requires permission to access the UpdateDynamicThingGroup action.

', 'UpdateEventConfigurations' => '

Updates the event configurations.

Requires permission to access the UpdateEventConfigurations action.

', 'UpdateFleetMetric' => '

Updates the data for a fleet metric.

Requires permission to access the UpdateFleetMetric action.

', 'UpdateIndexingConfiguration' => '

Updates the search configuration.

Requires permission to access the UpdateIndexingConfiguration action.

', 'UpdateJob' => '

Updates supported fields of the specified job.

Requires permission to access the UpdateJob action.

', 'UpdateMitigationAction' => '

Updates the definition for the specified mitigation action.

Requires permission to access the UpdateMitigationAction action.

', 'UpdatePackage' => '

Updates the supported fields for a specific software package.

Requires permission to access the UpdatePackage and GetIndexingConfiguration actions.

', 'UpdatePackageConfiguration' => '

Updates the software package configuration.

Requires permission to access the UpdatePackageConfiguration and iam:PassRole actions.

', 'UpdatePackageVersion' => '

Updates the supported fields for a specific package version.

Requires permission to access the UpdatePackageVersion and GetIndexingConfiguration actions.

', 'UpdateProvisioningTemplate' => '

Updates a provisioning template.

Requires permission to access the UpdateProvisioningTemplate action.

', 'UpdateRoleAlias' => '

Updates a role alias.

Requires permission to access the UpdateRoleAlias action.

', 'UpdateScheduledAudit' => '

Updates a scheduled audit, including which checks are performed and how often the audit takes place.

Requires permission to access the UpdateScheduledAudit action.

', 'UpdateSecurityProfile' => '

Updates a Device Defender security profile.

Requires permission to access the UpdateSecurityProfile action.

', 'UpdateStream' => '

Updates an existing stream. The stream version will be incremented by one.

Requires permission to access the UpdateStream action.

', 'UpdateThing' => '

Updates the data for a thing.

Requires permission to access the UpdateThing action.

', 'UpdateThingGroup' => '

Update a thing group.

Requires permission to access the UpdateThingGroup action.

', 'UpdateThingGroupsForThing' => '

Updates the groups to which the thing belongs.

Requires permission to access the UpdateThingGroupsForThing action.

', 'UpdateTopicRuleDestination' => '

Updates a topic rule destination. You use this to change the status, endpoint URL, or confirmation URL of the destination.

Requires permission to access the UpdateTopicRuleDestination action.

', 'ValidateSecurityProfileBehaviors' => '

Validates a Device Defender security profile behaviors specification.

Requires permission to access the ValidateSecurityProfileBehaviors action.

', ], 'shapes' => [ 'AbortAction' => [ 'base' => NULL, 'refs' => [ 'AbortCriteria$action' => '

The type of job action to take to initiate the job abort.

', ], ], 'AbortConfig' => [ 'base' => '

The criteria that determine when and how a job abort takes place.

', 'refs' => [ 'CreateJobRequest$abortConfig' => '

Allows you to create the criteria to abort a job.

', 'CreateJobTemplateRequest$abortConfig' => NULL, 'DescribeJobTemplateResponse$abortConfig' => NULL, 'Job$abortConfig' => '

Configuration for criteria to abort the job.

', 'UpdateJobRequest$abortConfig' => '

Allows you to create criteria to abort a job.

', ], ], 'AbortCriteria' => [ 'base' => '

The criteria that determine when and how a job abort takes place.

', 'refs' => [ 'AbortCriteriaList$member' => NULL, ], ], 'AbortCriteriaList' => [ 'base' => NULL, 'refs' => [ 'AbortConfig$criteriaList' => '

The list of criteria that determine when and how to abort the job.

', ], ], 'AbortThresholdPercentage' => [ 'base' => NULL, 'refs' => [ 'AbortCriteria$thresholdPercentage' => '

The minimum percentage of job execution failures that must occur to initiate the job abort.

Amazon Web Services IoT Core supports up to two digits after the decimal (for example, 10.9 and 10.99, but not 10.999).

', ], ], 'AcceptCertificateTransferRequest' => [ 'base' => '

The input for the AcceptCertificateTransfer operation.

', 'refs' => [], ], 'AcmCertificateArn' => [ 'base' => NULL, 'refs' => [ 'CreateDomainConfigurationRequest$validationCertificateArn' => '

The certificate used to validate the server certificate and prove domain name ownership. This certificate must be signed by a public certificate authority. This value is not required for Amazon Web Services-managed domains.

', 'ServerCertificateArns$member' => NULL, 'ServerCertificateSummary$serverCertificateArn' => '

The ARN of the server certificate.

', ], ], 'Action' => [ 'base' => '

Describes the actions associated with a rule.

', 'refs' => [ 'ActionList$member' => NULL, 'TopicRule$errorAction' => '

The action to perform when an error occurs.

', 'TopicRulePayload$errorAction' => '

The action to take when an error occurs.

', ], ], 'ActionList' => [ 'base' => NULL, 'refs' => [ 'TopicRule$actions' => '

The actions associated with the rule.

', 'TopicRulePayload$actions' => '

The actions associated with the rule.

', ], ], 'ActionType' => [ 'base' => NULL, 'refs' => [ 'AuthInfo$actionType' => '

The type of action for which the principal is being authorized.

', ], ], 'ActiveViolation' => [ 'base' => '

Information about an active Device Defender security profile behavior violation.

', 'refs' => [ 'ActiveViolations$member' => NULL, ], ], 'ActiveViolations' => [ 'base' => NULL, 'refs' => [ 'ListActiveViolationsResponse$activeViolations' => '

The list of active violations.

', ], ], 'AddThingToBillingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'AddThingToBillingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'AddThingToThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'AddThingToThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'AddThingsToThingGroupParams' => [ 'base' => '

Parameters used when defining a mitigation action that move a set of things to a thing group.

', 'refs' => [ 'MitigationActionParams$addThingsToThingGroupParams' => '

Parameters to define a mitigation action that moves devices associated with a certificate to one or more specified thing groups, typically for quarantine.

', ], ], 'AdditionalMetricsToRetainList' => [ 'base' => NULL, 'refs' => [ 'CreateSecurityProfileRequest$additionalMetricsToRetain' => '

Please use CreateSecurityProfileRequest$additionalMetricsToRetainV2 instead.

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile\'s behaviors, but it is also retained for any metric specified here. Can be used with custom metrics; cannot be used with dimensions.

', 'DescribeSecurityProfileResponse$additionalMetricsToRetain' => '

Please use DescribeSecurityProfileResponse$additionalMetricsToRetainV2 instead.

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile\'s behaviors, but it is also retained for any metric specified here.

', 'UpdateSecurityProfileRequest$additionalMetricsToRetain' => '

Please use UpdateSecurityProfileRequest$additionalMetricsToRetainV2 instead.

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile\'s behaviors, but it is also retained for any metric specified here. Can be used with custom metrics; cannot be used with dimensions.

', 'UpdateSecurityProfileResponse$additionalMetricsToRetain' => '

Please use UpdateSecurityProfileResponse$additionalMetricsToRetainV2 instead.

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the security profile\'s behaviors, but it is also retained for any metric specified here.

', ], ], 'AdditionalMetricsToRetainV2List' => [ 'base' => NULL, 'refs' => [ 'CreateSecurityProfileRequest$additionalMetricsToRetainV2' => '

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile\'s behaviors, but it is also retained for any metric specified here. Can be used with custom metrics; cannot be used with dimensions.

', 'DescribeSecurityProfileResponse$additionalMetricsToRetainV2' => '

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile\'s behaviors, but it is also retained for any metric specified here.

', 'UpdateSecurityProfileRequest$additionalMetricsToRetainV2' => '

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile\'s behaviors, but it is also retained for any metric specified here. Can be used with custom metrics; cannot be used with dimensions.

', 'UpdateSecurityProfileResponse$additionalMetricsToRetainV2' => '

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile\'s behaviors, but it is also retained for any metric specified here. Can be used with custom metrics; cannot be used with dimensions.

', ], ], 'AdditionalParameterMap' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateRequest$additionalParameters' => '

A list of additional OTA update parameters, which are name-value pairs. They won\'t be sent to devices as a part of the Job document.

', 'OTAUpdateInfo$additionalParameters' => '

A collection of name/value pairs

', ], ], 'AggregationField' => [ 'base' => NULL, 'refs' => [ 'CreateFleetMetricRequest$aggregationField' => '

The field to aggregate.

', 'DescribeFleetMetricResponse$aggregationField' => '

The field to aggregate.

', 'GetBucketsAggregationRequest$aggregationField' => '

The aggregation field.

', 'GetCardinalityRequest$aggregationField' => '

The field to aggregate.

', 'GetPercentilesRequest$aggregationField' => '

The field to aggregate.

', 'GetStatisticsRequest$aggregationField' => '

The aggregation field name.

', 'UpdateFleetMetricRequest$aggregationField' => '

The field to aggregate.

', ], ], 'AggregationType' => [ 'base' => '

The type of aggregation queries.

', 'refs' => [ 'CreateFleetMetricRequest$aggregationType' => '

The type of the aggregation query.

', 'DescribeFleetMetricResponse$aggregationType' => '

The type of the aggregation query.

', 'UpdateFleetMetricRequest$aggregationType' => '

The type of the aggregation query.

', ], ], 'AggregationTypeName' => [ 'base' => NULL, 'refs' => [ 'AggregationType$name' => '

The name of the aggregation type.

', ], ], 'AggregationTypeValue' => [ 'base' => NULL, 'refs' => [ 'AggregationTypeValues$member' => NULL, ], ], 'AggregationTypeValues' => [ 'base' => NULL, 'refs' => [ 'AggregationType$values' => '

A list of the values of aggregation types.

', ], ], 'AlarmName' => [ 'base' => NULL, 'refs' => [ 'CloudwatchAlarmAction$alarmName' => '

The CloudWatch alarm name.

', ], ], 'AlertTarget' => [ 'base' => '

A structure containing the alert target ARN and the role ARN.

', 'refs' => [ 'AlertTargets$value' => NULL, ], ], 'AlertTargetArn' => [ 'base' => NULL, 'refs' => [ 'AlertTarget$alertTargetArn' => '

The Amazon Resource Name (ARN) of the notification target to which alerts are sent.

', ], ], 'AlertTargetType' => [ 'base' => '

The type of alert target: one of "SNS".

', 'refs' => [ 'AlertTargets$key' => NULL, ], ], 'AlertTargets' => [ 'base' => NULL, 'refs' => [ 'CreateSecurityProfileRequest$alertTargets' => '

Specifies the destinations to which alerts are sent. (Alerts are always sent to the console.) Alerts are generated when a device (thing) violates a behavior.

', 'DescribeSecurityProfileResponse$alertTargets' => '

Where the alerts are sent. (Alerts are always sent to the console.)

', 'UpdateSecurityProfileRequest$alertTargets' => '

Where the alerts are sent. (Alerts are always sent to the console.)

', 'UpdateSecurityProfileResponse$alertTargets' => '

Where the alerts are sent. (Alerts are always sent to the console.)

', ], ], 'AllowAuthorizerOverride' => [ 'base' => NULL, 'refs' => [ 'AuthorizerConfig$allowAuthorizerOverride' => '

A Boolean that specifies whether the domain configuration\'s authorization service can be overridden.

', ], ], 'AllowAutoRegistration' => [ 'base' => NULL, 'refs' => [ 'RegisterCACertificateRequest$allowAutoRegistration' => '

Allows this CA certificate to be used for auto registration of device certificates.

', ], ], 'Allowed' => [ 'base' => '

Contains information that allowed the authorization.

', 'refs' => [ 'AuthResult$allowed' => '

The policies and statements that allowed the specified action.

', ], ], 'ApproximateSecondsBeforeTimedOut' => [ 'base' => NULL, 'refs' => [ 'JobExecution$approximateSecondsBeforeTimedOut' => '

The estimated number of seconds that remain before the job execution status will be changed to TIMED_OUT. The timeout interval can be anywhere between 1 minute and 7 days (1 to 10080 minutes). The actual job execution timeout can occur up to 60 seconds later than the estimated duration. This value will not be included if the job execution has reached a terminal status.

', ], ], 'AscendingOrder' => [ 'base' => NULL, 'refs' => [ 'ListAuditSuppressionsRequest$ascendingOrder' => '

Determines whether suppressions are listed in ascending order by expiration date or not. If parameter isn\'t provided, ascendingOrder=true.

', 'ListAuthorizersRequest$ascendingOrder' => '

Return the list of authorizers in ascending alphabetical order.

', 'ListCACertificatesRequest$ascendingOrder' => '

Determines the order of the results.

', 'ListCertificateProvidersRequest$ascendingOrder' => '

Returns the list of certificate providers in ascending alphabetical order.

', 'ListCertificatesByCARequest$ascendingOrder' => '

Specifies the order for results. If True, the results are returned in ascending order, based on the creation date.

', 'ListCertificatesRequest$ascendingOrder' => '

Specifies the order for results. If True, the results are returned in ascending order, based on the creation date.

', 'ListOutgoingCertificatesRequest$ascendingOrder' => '

Specifies the order for results. If True, the results are returned in ascending order, based on the creation date.

', 'ListPoliciesRequest$ascendingOrder' => '

Specifies the order for results. If true, the results are returned in ascending creation order.

', 'ListPolicyPrincipalsRequest$ascendingOrder' => '

Specifies the order for results. If true, the results are returned in ascending creation order.

', 'ListPrincipalPoliciesRequest$ascendingOrder' => '

Specifies the order for results. If true, results are returned in ascending creation order.

', 'ListRoleAliasesRequest$ascendingOrder' => '

Return the list of role aliases in ascending alphabetical order.

', 'ListStreamsRequest$ascendingOrder' => '

Set to true to return the list of streams in ascending order.

', ], ], 'AssetId' => [ 'base' => NULL, 'refs' => [ 'PutAssetPropertyValueEntry$assetId' => '

The ID of the IoT SiteWise asset. You must specify either a propertyAlias or both an aliasId and a propertyId. Accepts substitution templates.

', ], ], 'AssetPropertyAlias' => [ 'base' => NULL, 'refs' => [ 'PutAssetPropertyValueEntry$propertyAlias' => '

The name of the property alias associated with your asset property. You must specify either a propertyAlias or both an aliasId and a propertyId. Accepts substitution templates.

', ], ], 'AssetPropertyBooleanValue' => [ 'base' => NULL, 'refs' => [ 'AssetPropertyVariant$booleanValue' => '

Optional. A string that contains the boolean value (true or false) of the value entry. Accepts substitution templates.

', ], ], 'AssetPropertyDoubleValue' => [ 'base' => NULL, 'refs' => [ 'AssetPropertyVariant$doubleValue' => '

Optional. A string that contains the double value of the value entry. Accepts substitution templates.

', ], ], 'AssetPropertyEntryId' => [ 'base' => NULL, 'refs' => [ 'PutAssetPropertyValueEntry$entryId' => '

Optional. A unique identifier for this entry that you can define to better track which message caused an error in case of failure. Accepts substitution templates. Defaults to a new UUID.

', ], ], 'AssetPropertyId' => [ 'base' => NULL, 'refs' => [ 'PutAssetPropertyValueEntry$propertyId' => '

The ID of the asset\'s property. You must specify either a propertyAlias or both an aliasId and a propertyId. Accepts substitution templates.

', ], ], 'AssetPropertyIntegerValue' => [ 'base' => NULL, 'refs' => [ 'AssetPropertyVariant$integerValue' => '

Optional. A string that contains the integer value of the value entry. Accepts substitution templates.

', ], ], 'AssetPropertyOffsetInNanos' => [ 'base' => NULL, 'refs' => [ 'AssetPropertyTimestamp$offsetInNanos' => '

Optional. A string that contains the nanosecond time offset. Accepts substitution templates.

', ], ], 'AssetPropertyQuality' => [ 'base' => NULL, 'refs' => [ 'AssetPropertyValue$quality' => '

Optional. A string that describes the quality of the value. Accepts substitution templates. Must be GOOD, BAD, or UNCERTAIN.

', ], ], 'AssetPropertyStringValue' => [ 'base' => NULL, 'refs' => [ 'AssetPropertyVariant$stringValue' => '

Optional. The string value of the value entry. Accepts substitution templates.

', ], ], 'AssetPropertyTimeInSeconds' => [ 'base' => NULL, 'refs' => [ 'AssetPropertyTimestamp$timeInSeconds' => '

A string that contains the time in seconds since epoch. Accepts substitution templates.

', ], ], 'AssetPropertyTimestamp' => [ 'base' => '

An asset property timestamp entry containing the following information.

', 'refs' => [ 'AssetPropertyValue$timestamp' => '

The asset property value timestamp.

', ], ], 'AssetPropertyValue' => [ 'base' => '

An asset property value entry containing the following information.

', 'refs' => [ 'AssetPropertyValueList$member' => NULL, ], ], 'AssetPropertyValueList' => [ 'base' => NULL, 'refs' => [ 'PutAssetPropertyValueEntry$propertyValues' => '

A list of property values to insert that each contain timestamp, quality, and value (TQV) information.

', ], ], 'AssetPropertyVariant' => [ 'base' => '

Contains an asset property value (of a single type).

', 'refs' => [ 'AssetPropertyValue$value' => '

The value of the asset property.

', ], ], 'AssociateTargetsWithJobRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTargetsWithJobResponse' => [ 'base' => NULL, 'refs' => [], ], 'AttachPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'AttachPrincipalPolicyRequest' => [ 'base' => '

The input for the AttachPrincipalPolicy operation.

', 'refs' => [], ], 'AttachSecurityProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'AttachSecurityProfileResponse' => [ 'base' => NULL, 'refs' => [], ], 'AttachThingPrincipalRequest' => [ 'base' => '

The input for the AttachThingPrincipal operation.

', 'refs' => [], ], 'AttachThingPrincipalResponse' => [ 'base' => '

The output from the AttachThingPrincipal operation.

', 'refs' => [], ], 'AttributeKey' => [ 'base' => NULL, 'refs' => [ 'AdditionalParameterMap$key' => NULL, 'AttributesMap$key' => NULL, ], ], 'AttributeName' => [ 'base' => NULL, 'refs' => [ 'Attributes$key' => NULL, 'ListThingsRequest$attributeName' => '

The attribute name used to search for things.

', 'SearchableAttributes$member' => NULL, ], ], 'AttributePayload' => [ 'base' => '

The attribute payload.

', 'refs' => [ 'CreateThingRequest$attributePayload' => '

The attribute payload, which consists of up to three name/value pairs in a JSON document. For example:

{\\"attributes\\":{\\"string1\\":\\"string2\\"}}

', 'ThingGroupProperties$attributePayload' => '

The thing group attributes in JSON format.

', 'UpdateThingRequest$attributePayload' => '

A list of thing attributes, a JSON string containing name-value pairs. For example:

{\\"attributes\\":{\\"name1\\":\\"value2\\"}}

This data is used to add new attributes or update existing attributes.

', ], ], 'AttributeValue' => [ 'base' => NULL, 'refs' => [ 'Attributes$value' => NULL, 'ListThingsRequest$attributeValue' => '

The attribute value used to search for things.

', ], ], 'Attributes' => [ 'base' => NULL, 'refs' => [ 'AttributePayload$attributes' => '

A JSON string containing up to three key-value pair in JSON format. For example:

{\\"attributes\\":{\\"string1\\":\\"string2\\"}}

', 'DescribeThingResponse$attributes' => '

The thing attributes.

', 'ThingAttribute$attributes' => '

A list of thing attributes which are name-value pairs.

', 'ThingDocument$attributes' => '

The attributes.

', 'ThingGroupDocument$attributes' => '

The thing group attributes.

', ], ], 'AttributesMap' => [ 'base' => NULL, 'refs' => [ 'OTAUpdateFile$attributes' => '

A list of name-attribute pairs. They won\'t be sent to devices as a part of the Job document.

', ], ], 'AuditCheckConfiguration' => [ 'base' => '

Which audit checks are enabled and disabled for this account.

', 'refs' => [ 'AuditCheckConfigurations$value' => NULL, ], ], 'AuditCheckConfigurations' => [ 'base' => NULL, 'refs' => [ 'DescribeAccountAuditConfigurationResponse$auditCheckConfigurations' => '

Which audit checks are enabled and disabled for this account.

', 'UpdateAccountAuditConfigurationRequest$auditCheckConfigurations' => '

Specifies which audit checks are enabled and disabled for this account. Use DescribeAccountAuditConfiguration to see the list of all checks, including those that are currently enabled.

Some data collection might start immediately when certain checks are enabled. When a check is disabled, any data collected so far in relation to the check is deleted.

You cannot disable a check if it\'s used by any scheduled audit. You must first delete the check from the scheduled audit or delete the scheduled audit itself.

On the first call to UpdateAccountAuditConfiguration, this parameter is required and must specify at least one enabled check.

', ], ], 'AuditCheckDetails' => [ 'base' => '

Information about the audit check.

', 'refs' => [ 'AuditDetails$value' => NULL, ], ], 'AuditCheckName' => [ 'base' => '

An audit check name. Checks must be enabled for your account. (Use DescribeAccountAuditConfiguration to see the list of all checks, including those that are enabled or use UpdateAccountAuditConfiguration to select which checks are enabled.)

', 'refs' => [ 'AuditCheckConfigurations$key' => NULL, 'AuditCheckToActionsMapping$key' => NULL, 'AuditCheckToReasonCodeFilter$key' => NULL, 'AuditDetails$key' => NULL, 'AuditFinding$checkName' => '

The audit check that generated this result.

', 'AuditMitigationActionsTaskStatistics$key' => NULL, 'AuditSuppression$checkName' => NULL, 'CreateAuditSuppressionRequest$checkName' => NULL, 'DeleteAuditSuppressionRequest$checkName' => NULL, 'DescribeAuditSuppressionRequest$checkName' => NULL, 'DescribeAuditSuppressionResponse$checkName' => NULL, 'ListAuditFindingsRequest$checkName' => '

A filter to limit results to the findings for the specified audit check.

', 'ListAuditSuppressionsRequest$checkName' => NULL, 'TargetAuditCheckNames$member' => NULL, 'UpdateAuditSuppressionRequest$checkName' => NULL, ], ], 'AuditCheckRunStatus' => [ 'base' => NULL, 'refs' => [ 'AuditCheckDetails$checkRunStatus' => '

The completion status of this check. One of "IN_PROGRESS", "WAITING_FOR_DATA_COLLECTION", "CANCELED", "COMPLETED_COMPLIANT", "COMPLETED_NON_COMPLIANT", or "FAILED".

', ], ], 'AuditCheckToActionsMapping' => [ 'base' => NULL, 'refs' => [ 'DescribeAuditMitigationActionsTaskResponse$auditCheckToActionsMapping' => '

Specifies the mitigation actions that should be applied to specific audit checks.

', 'StartAuditMitigationActionsTaskRequest$auditCheckToActionsMapping' => '

For an audit check, specifies which mitigation actions to apply. Those actions must be defined in your Amazon Web Services accounts.

', ], ], 'AuditCheckToReasonCodeFilter' => [ 'base' => NULL, 'refs' => [ 'AuditMitigationActionsTaskTarget$auditCheckToReasonCodeFilter' => '

Specifies a filter in the form of an audit check and set of reason codes that identify the findings from the audit to which the audit mitigation actions task apply.

', ], ], 'AuditDescription' => [ 'base' => NULL, 'refs' => [ 'AuditSuppression$description' => '

The description of the audit suppression.

', 'CreateAuditSuppressionRequest$description' => '

The description of the audit suppression.

', 'DescribeAuditSuppressionResponse$description' => '

The description of the audit suppression.

', 'UpdateAuditSuppressionRequest$description' => '

The description of the audit suppression.

', ], ], 'AuditDetails' => [ 'base' => NULL, 'refs' => [ 'DescribeAuditTaskResponse$auditDetails' => '

Detailed information about each check performed during this audit.

', ], ], 'AuditFinding' => [ 'base' => '

The findings (results) of the audit.

', 'refs' => [ 'AuditFindings$member' => NULL, 'DescribeAuditFindingResponse$finding' => NULL, ], ], 'AuditFindingSeverity' => [ 'base' => NULL, 'refs' => [ 'AuditFinding$severity' => '

The severity of the result (finding).

', ], ], 'AuditFindings' => [ 'base' => NULL, 'refs' => [ 'ListAuditFindingsResponse$findings' => '

The findings (results) of the audit.

', ], ], 'AuditFrequency' => [ 'base' => NULL, 'refs' => [ 'CreateScheduledAuditRequest$frequency' => '

How often the scheduled audit takes place, either DAILY, WEEKLY, BIWEEKLY or MONTHLY. The start time of each audit is determined by the system.

', 'DescribeScheduledAuditResponse$frequency' => '

How often the scheduled audit takes place, either one of DAILY, WEEKLY, BIWEEKLY, or MONTHLY. The start time of each audit is determined by the system.

', 'ScheduledAuditMetadata$frequency' => '

How often the scheduled audit occurs.

', 'UpdateScheduledAuditRequest$frequency' => '

How often the scheduled audit takes place, either DAILY, WEEKLY, BIWEEKLY, or MONTHLY. The start time of each audit is determined by the system.

', ], ], 'AuditMitigationActionExecutionMetadata' => [ 'base' => '

Returned by ListAuditMitigationActionsTask, this object contains information that describes a mitigation action that has been started.

', 'refs' => [ 'AuditMitigationActionExecutionMetadataList$member' => NULL, ], ], 'AuditMitigationActionExecutionMetadataList' => [ 'base' => NULL, 'refs' => [ 'ListAuditMitigationActionsExecutionsResponse$actionsExecutions' => '

A set of task execution results based on the input parameters. Details include the mitigation action applied, start time, and task status.

', ], ], 'AuditMitigationActionsExecutionStatus' => [ 'base' => NULL, 'refs' => [ 'AuditMitigationActionExecutionMetadata$status' => '

The current status of the task being executed.

', 'ListAuditMitigationActionsExecutionsRequest$actionStatus' => '

Specify this filter to limit results to those with a specific status.

', ], ], 'AuditMitigationActionsTaskMetadata' => [ 'base' => '

Information about an audit mitigation actions task that is returned by ListAuditMitigationActionsTasks.

', 'refs' => [ 'AuditMitigationActionsTaskMetadataList$member' => NULL, ], ], 'AuditMitigationActionsTaskMetadataList' => [ 'base' => NULL, 'refs' => [ 'ListAuditMitigationActionsTasksResponse$tasks' => '

The collection of audit mitigation tasks that matched the filter criteria.

', ], ], 'AuditMitigationActionsTaskStatistics' => [ 'base' => NULL, 'refs' => [ 'DescribeAuditMitigationActionsTaskResponse$taskStatistics' => '

Aggregate counts of the results when the mitigation tasks were applied to the findings for this audit mitigation actions task.

', ], ], 'AuditMitigationActionsTaskStatus' => [ 'base' => NULL, 'refs' => [ 'AuditMitigationActionsTaskMetadata$taskStatus' => '

The current state of the audit mitigation actions task.

', 'DescribeAuditMitigationActionsTaskResponse$taskStatus' => '

The current status of the task.

', 'ListAuditMitigationActionsTasksRequest$taskStatus' => '

Specify this filter to limit results to tasks that are in a specific state.

', ], ], 'AuditMitigationActionsTaskTarget' => [ 'base' => '

Used in MitigationActionParams, this information identifies the target findings to which the mitigation actions are applied. Only one entry appears.

', 'refs' => [ 'DescribeAuditMitigationActionsTaskResponse$target' => '

Identifies the findings to which the mitigation actions are applied. This can be by audit checks, by audit task, or a set of findings.

', 'StartAuditMitigationActionsTaskRequest$target' => '

Specifies the audit findings to which the mitigation actions are applied. You can apply them to a type of audit check, to all findings from an audit, or to a specific set of findings.

', ], ], 'AuditNotificationTarget' => [ 'base' => '

Information about the targets to which audit notifications are sent.

', 'refs' => [ 'AuditNotificationTargetConfigurations$value' => NULL, ], ], 'AuditNotificationTargetConfigurations' => [ 'base' => NULL, 'refs' => [ 'DescribeAccountAuditConfigurationResponse$auditNotificationTargetConfigurations' => '

Information about the targets to which audit notifications are sent for this account.

', 'UpdateAccountAuditConfigurationRequest$auditNotificationTargetConfigurations' => '

Information about the targets to which audit notifications are sent.

', ], ], 'AuditNotificationType' => [ 'base' => NULL, 'refs' => [ 'AuditNotificationTargetConfigurations$key' => NULL, ], ], 'AuditSuppression' => [ 'base' => '

Filters out specific findings of a Device Defender audit.

', 'refs' => [ 'AuditSuppressionList$member' => NULL, ], ], 'AuditSuppressionList' => [ 'base' => NULL, 'refs' => [ 'ListAuditSuppressionsResponse$suppressions' => '

List of audit suppressions.

', ], ], 'AuditTaskId' => [ 'base' => NULL, 'refs' => [ 'AuditFinding$taskId' => '

The ID of the audit that generated this result (finding).

', 'AuditMitigationActionsTaskTarget$auditTaskId' => '

If the task will apply a mitigation action to findings from a specific audit, this value uniquely identifies the audit.

', 'AuditTaskMetadata$taskId' => '

The ID of this audit.

', 'CancelAuditTaskRequest$taskId' => '

The ID of the audit you want to cancel. You can only cancel an audit that is "IN_PROGRESS".

', 'DescribeAuditTaskRequest$taskId' => '

The ID of the audit whose information you want to get.

', 'ListAuditFindingsRequest$taskId' => '

A filter to limit results to the audit with the specified ID. You must specify either the taskId or the startTime and endTime, but not both.

', 'ListAuditMitigationActionsTasksRequest$auditTaskId' => '

Specify this filter to limit results to tasks that were applied to results for a specific audit.

', 'StartOnDemandAuditTaskResponse$taskId' => '

The ID of the on-demand audit you started.

', ], ], 'AuditTaskMetadata' => [ 'base' => '

The audits that were performed.

', 'refs' => [ 'AuditTaskMetadataList$member' => NULL, ], ], 'AuditTaskMetadataList' => [ 'base' => NULL, 'refs' => [ 'ListAuditTasksResponse$tasks' => '

The audits that were performed during the specified time period.

', ], ], 'AuditTaskStatus' => [ 'base' => NULL, 'refs' => [ 'AuditTaskMetadata$taskStatus' => '

The status of this audit. One of "IN_PROGRESS", "COMPLETED", "FAILED", or "CANCELED".

', 'DescribeAuditTaskResponse$taskStatus' => '

The status of the audit: one of "IN_PROGRESS", "COMPLETED", "FAILED", or "CANCELED".

', 'ListAuditTasksRequest$taskStatus' => '

A filter to limit the output to audits with the specified completion status: can be one of "IN_PROGRESS", "COMPLETED", "FAILED", or "CANCELED".

', ], ], 'AuditTaskType' => [ 'base' => NULL, 'refs' => [ 'AuditTaskMetadata$taskType' => '

The type of this audit. One of "ON_DEMAND_AUDIT_TASK" or "SCHEDULED_AUDIT_TASK".

', 'DescribeAuditTaskResponse$taskType' => '

The type of audit: "ON_DEMAND_AUDIT_TASK" or "SCHEDULED_AUDIT_TASK".

', 'ListAuditTasksRequest$taskType' => '

A filter to limit the output to the specified type of audit: can be one of "ON_DEMAND_AUDIT_TASK" or "SCHEDULED__AUDIT_TASK".

', ], ], 'AuthDecision' => [ 'base' => NULL, 'refs' => [ 'AuthResult$authDecision' => '

The final authorization decision of this scenario. Multiple statements are taken into account when determining the authorization decision. An explicit deny statement can override multiple allow statements.

', ], ], 'AuthInfo' => [ 'base' => '

A collection of authorization information.

', 'refs' => [ 'AuthInfos$member' => NULL, 'AuthResult$authInfo' => '

Authorization information.

', ], ], 'AuthInfos' => [ 'base' => NULL, 'refs' => [ 'TestAuthorizationRequest$authInfos' => '

A list of authorization info objects. Simulating authorization will create a response for each authInfo object in the list.

', ], ], 'AuthResult' => [ 'base' => '

The authorizer result.

', 'refs' => [ 'AuthResults$member' => NULL, ], ], 'AuthResults' => [ 'base' => NULL, 'refs' => [ 'TestAuthorizationResponse$authResults' => '

The authentication results.

', ], ], 'AuthorizerArn' => [ 'base' => NULL, 'refs' => [ 'AuthorizerDescription$authorizerArn' => '

The authorizer ARN.

', 'AuthorizerSummary$authorizerArn' => '

The authorizer ARN.

', 'CreateAuthorizerResponse$authorizerArn' => '

The authorizer ARN.

', 'SetDefaultAuthorizerResponse$authorizerArn' => '

The authorizer ARN.

', 'UpdateAuthorizerResponse$authorizerArn' => '

The authorizer ARN.

', ], ], 'AuthorizerConfig' => [ 'base' => '

An object that specifies the authorization service for a domain.

', 'refs' => [ 'CreateDomainConfigurationRequest$authorizerConfig' => '

An object that specifies the authorization service for a domain.

', 'DescribeDomainConfigurationResponse$authorizerConfig' => '

An object that specifies the authorization service for a domain.

', 'UpdateDomainConfigurationRequest$authorizerConfig' => '

An object that specifies the authorization service for a domain.

', ], ], 'AuthorizerDescription' => [ 'base' => '

The authorizer description.

', 'refs' => [ 'DescribeAuthorizerResponse$authorizerDescription' => '

The authorizer description.

', 'DescribeDefaultAuthorizerResponse$authorizerDescription' => '

The default authorizer\'s description.

', ], ], 'AuthorizerFunctionArn' => [ 'base' => NULL, 'refs' => [ 'AuthorizerDescription$authorizerFunctionArn' => '

The authorizer\'s Lambda function ARN.

', 'CreateAuthorizerRequest$authorizerFunctionArn' => '

The ARN of the authorizer\'s Lambda function.

', 'UpdateAuthorizerRequest$authorizerFunctionArn' => '

The ARN of the authorizer\'s Lambda function.

', ], ], 'AuthorizerName' => [ 'base' => NULL, 'refs' => [ 'AuthorizerConfig$defaultAuthorizerName' => '

The name of the authorization service for a domain configuration.

', 'AuthorizerDescription$authorizerName' => '

The authorizer name.

', 'AuthorizerSummary$authorizerName' => '

The authorizer name.

', 'CreateAuthorizerRequest$authorizerName' => '

The authorizer name.

', 'CreateAuthorizerResponse$authorizerName' => '

The authorizer\'s name.

', 'DeleteAuthorizerRequest$authorizerName' => '

The name of the authorizer to delete.

', 'DescribeAuthorizerRequest$authorizerName' => '

The name of the authorizer to describe.

', 'SetDefaultAuthorizerRequest$authorizerName' => '

The authorizer name.

', 'SetDefaultAuthorizerResponse$authorizerName' => '

The authorizer name.

', 'TestInvokeAuthorizerRequest$authorizerName' => '

The custom authorizer name.

', 'UpdateAuthorizerRequest$authorizerName' => '

The authorizer name.

', 'UpdateAuthorizerResponse$authorizerName' => '

The authorizer name.

', ], ], 'AuthorizerStatus' => [ 'base' => NULL, 'refs' => [ 'AuthorizerDescription$status' => '

The status of the authorizer.

', 'CreateAuthorizerRequest$status' => '

The status of the create authorizer request.

', 'ListAuthorizersRequest$status' => '

The status of the list authorizers request.

', 'UpdateAuthorizerRequest$status' => '

The status of the update authorizer request.

', ], ], 'AuthorizerSummary' => [ 'base' => '

The authorizer summary.

', 'refs' => [ 'Authorizers$member' => NULL, ], ], 'Authorizers' => [ 'base' => NULL, 'refs' => [ 'ListAuthorizersResponse$authorizers' => '

The authorizers.

', ], ], 'AutoRegistrationStatus' => [ 'base' => NULL, 'refs' => [ 'CACertificateDescription$autoRegistrationStatus' => '

Whether the CA certificate configured for auto registration of device certificates. Valid values are "ENABLE" and "DISABLE"

', 'UpdateCACertificateRequest$newAutoRegistrationStatus' => '

The new value for the auto registration status. Valid values are: "ENABLE" or "DISABLE".

', ], ], 'Average' => [ 'base' => NULL, 'refs' => [ 'Statistics$average' => '

The average of the aggregated field values.

', ], ], 'AwsAccountId' => [ 'base' => NULL, 'refs' => [ 'CACertificateDescription$ownedBy' => '

The owner of the CA certificate.

', 'CertificateDescription$ownedBy' => '

The ID of the Amazon Web Services account that owns the certificate.

', 'CertificateDescription$previousOwnedBy' => '

The ID of the Amazon Web Services account of the previous owner of the certificate.

', 'OutgoingCertificate$transferredTo' => '

The Amazon Web Services account to which the transfer was made.

', 'ResourceIdentifier$account' => '

The account with which the resource is associated.

', 'RoleAliasDescription$owner' => '

The role alias owner.

', 'TransferCertificateRequest$targetAwsAccount' => '

The Amazon Web Services account.

', ], ], 'AwsArn' => [ 'base' => NULL, 'refs' => [ 'CloudwatchAlarmAction$roleArn' => '

The IAM role that allows access to the CloudWatch alarm.

', 'CloudwatchLogsAction$roleArn' => '

The IAM role that allows access to the CloudWatch log.

', 'CloudwatchMetricAction$roleArn' => '

The IAM role that allows access to the CloudWatch metric.

', 'DeleteTopicRuleDestinationRequest$arn' => '

The ARN of the topic rule destination to delete.

', 'DynamoDBAction$roleArn' => '

The ARN of the IAM role that grants access to the DynamoDB table.

', 'DynamoDBv2Action$roleArn' => '

The ARN of the IAM role that grants access to the DynamoDB table.

', 'ElasticsearchAction$roleArn' => '

The IAM role ARN that has access to OpenSearch.

', 'FirehoseAction$roleArn' => '

The IAM role that grants access to the Amazon Kinesis Firehose stream.

', 'GetLoggingOptionsResponse$roleArn' => '

The ARN of the IAM role that grants access.

', 'GetTopicRuleDestinationRequest$arn' => '

The ARN of the topic rule destination.

', 'GetV2LoggingOptionsResponse$roleArn' => '

The IAM role ARN IoT uses to write to your CloudWatch logs.

', 'IotAnalyticsAction$channelArn' => '

(deprecated) The ARN of the IoT Analytics channel to which message data will be sent.

', 'IotAnalyticsAction$roleArn' => '

The ARN of the role which has a policy that grants IoT Analytics permission to send message data via IoT Analytics (iotanalytics:BatchPutMessage).

', 'IotEventsAction$roleArn' => '

The ARN of the role that grants IoT permission to send an input to an IoT Events detector. ("Action":"iotevents:BatchPutMessage").

', 'IotSiteWiseAction$roleArn' => '

The ARN of the role that grants IoT permission to send an asset property value to IoT SiteWise. ("Action": "iotsitewise:BatchPutAssetPropertyValue"). The trust policy can restrict access to specific asset hierarchy paths.

', 'KafkaAction$destinationArn' => '

The ARN of Kafka action\'s VPC TopicRuleDestination.

', 'KinesisAction$roleArn' => '

The ARN of the IAM role that grants access to the Amazon Kinesis stream.

', 'LocationAction$roleArn' => '

The IAM role that grants permission to write to the Amazon Location resource.

', 'LoggingOptionsPayload$roleArn' => '

The ARN of the IAM role that grants access.

', 'OpenSearchAction$roleArn' => '

The IAM role ARN that has access to OpenSearch.

', 'RepublishAction$roleArn' => '

The ARN of the IAM role that grants access.

', 'S3Action$roleArn' => '

The ARN of the IAM role that grants access.

', 'SetV2LoggingOptionsRequest$roleArn' => '

The ARN of the role that allows IoT to write to Cloudwatch logs.

', 'SigV4Authorization$roleArn' => '

The ARN of the signing role.

', 'SnsAction$targetArn' => '

The ARN of the SNS topic.

', 'SnsAction$roleArn' => '

The ARN of the IAM role that grants access.

', 'SqsAction$roleArn' => '

The ARN of the IAM role that grants access.

', 'StepFunctionsAction$roleArn' => '

The ARN of the role that grants IoT permission to start execution of a state machine ("Action":"states:StartExecution").

', 'TimestreamAction$roleArn' => '

The ARN of the role that grants permission to write to the Amazon Timestream database table.

', 'TopicRuleDestination$arn' => '

The topic rule destination URL.

', 'TopicRuleDestinationSummary$arn' => '

The topic rule destination ARN.

', 'UpdateTopicRuleDestinationRequest$arn' => '

The ARN of the topic rule destination.

', 'VpcDestinationConfiguration$roleArn' => '

The ARN of a role that has permission to create and attach to elastic network interfaces (ENIs).

', 'VpcDestinationProperties$roleArn' => '

The ARN of a role that has permission to create and attach to elastic network interfaces (ENIs).

', 'VpcDestinationSummary$roleArn' => '

The ARN of a role that has permission to create and attach to elastic network interfaces (ENIs).

', ], ], 'AwsIotJobArn' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateResponse$awsIotJobArn' => '

The IoT job ARN associated with the OTA update.

', 'OTAUpdateInfo$awsIotJobArn' => '

The IoT job ARN associated with the OTA update.

', ], ], 'AwsIotJobId' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateResponse$awsIotJobId' => '

The IoT job ID associated with the OTA update.

', 'OTAUpdateInfo$awsIotJobId' => '

The IoT job ID associated with the OTA update.

', ], ], 'AwsIotSqlVersion' => [ 'base' => NULL, 'refs' => [ 'TopicRule$awsIotSqlVersion' => '

The version of the SQL rules engine to use when evaluating the rule.

', 'TopicRulePayload$awsIotSqlVersion' => '

The version of the SQL rules engine to use when evaluating the rule.

', ], ], 'AwsJobAbortConfig' => [ 'base' => '

The criteria that determine when and how a job abort takes place.

', 'refs' => [ 'CreateOTAUpdateRequest$awsJobAbortConfig' => '

The criteria that determine when and how a job abort takes place.

', ], ], 'AwsJobAbortCriteria' => [ 'base' => '

The criteria that determine when and how a job abort takes place.

', 'refs' => [ 'AwsJobAbortCriteriaList$member' => NULL, ], ], 'AwsJobAbortCriteriaAbortAction' => [ 'base' => NULL, 'refs' => [ 'AwsJobAbortCriteria$action' => '

The type of job action to take to initiate the job abort.

', ], ], 'AwsJobAbortCriteriaAbortThresholdPercentage' => [ 'base' => NULL, 'refs' => [ 'AwsJobAbortCriteria$thresholdPercentage' => '

The minimum percentage of job execution failures that must occur to initiate the job abort.

Amazon Web Services IoT Core supports up to two digits after the decimal (for example, 10.9 and 10.99, but not 10.999).

', ], ], 'AwsJobAbortCriteriaFailureType' => [ 'base' => NULL, 'refs' => [ 'AwsJobAbortCriteria$failureType' => '

The type of job execution failures that can initiate a job abort.

', ], ], 'AwsJobAbortCriteriaList' => [ 'base' => NULL, 'refs' => [ 'AwsJobAbortConfig$abortCriteriaList' => '

The list of criteria that determine when and how to abort the job.

', ], ], 'AwsJobAbortCriteriaMinimumNumberOfExecutedThings' => [ 'base' => NULL, 'refs' => [ 'AwsJobAbortCriteria$minNumberOfExecutedThings' => '

The minimum number of things which must receive job execution notifications before the job can be aborted.

', ], ], 'AwsJobExecutionsRolloutConfig' => [ 'base' => '

Configuration for the rollout of OTA updates.

', 'refs' => [ 'CreateOTAUpdateRequest$awsJobExecutionsRolloutConfig' => '

Configuration for the rollout of OTA updates.

', 'OTAUpdateInfo$awsJobExecutionsRolloutConfig' => '

Configuration for the rollout of OTA updates.

', ], ], 'AwsJobExponentialRolloutRate' => [ 'base' => '

The rate of increase for a job rollout. This parameter allows you to define an exponential rate increase for a job rollout.

', 'refs' => [ 'AwsJobExecutionsRolloutConfig$exponentialRate' => '

The rate of increase for a job rollout. This parameter allows you to define an exponential rate increase for a job rollout.

', ], ], 'AwsJobPresignedUrlConfig' => [ 'base' => '

Configuration information for pre-signed URLs. Valid when protocols contains HTTP.

', 'refs' => [ 'CreateOTAUpdateRequest$awsJobPresignedUrlConfig' => '

Configuration information for pre-signed URLs.

', 'OTAUpdateInfo$awsJobPresignedUrlConfig' => '

Configuration information for pre-signed URLs. Valid when protocols contains HTTP.

', ], ], 'AwsJobRateIncreaseCriteria' => [ 'base' => '

The criteria to initiate the increase in rate of rollout for a job.

', 'refs' => [ 'AwsJobExponentialRolloutRate$rateIncreaseCriteria' => '

The criteria to initiate the increase in rate of rollout for a job.

Amazon Web Services IoT Core supports up to one digit after the decimal (for example, 1.5, but not 1.55).

', ], ], 'AwsJobRateIncreaseCriteriaNumberOfThings' => [ 'base' => NULL, 'refs' => [ 'AwsJobRateIncreaseCriteria$numberOfNotifiedThings' => '

When this number of things have been notified, it will initiate an increase in the rollout rate.

', 'AwsJobRateIncreaseCriteria$numberOfSucceededThings' => '

When this number of things have succeeded in their job execution, it will initiate an increase in the rollout rate.

', ], ], 'AwsJobRolloutIncrementFactor' => [ 'base' => NULL, 'refs' => [ 'AwsJobExponentialRolloutRate$incrementFactor' => '

The rate of increase for a job rollout. The number of things notified is multiplied by this factor.

', ], ], 'AwsJobRolloutRatePerMinute' => [ 'base' => NULL, 'refs' => [ 'AwsJobExponentialRolloutRate$baseRatePerMinute' => '

The minimum number of things that will be notified of a pending job, per minute, at the start of the job rollout. This is the initial rate of the rollout.

', ], ], 'AwsJobTimeoutConfig' => [ 'base' => '

Specifies the amount of time each device has to finish its execution of the job. A timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the timer expires, it will be automatically set to TIMED_OUT.

', 'refs' => [ 'CreateOTAUpdateRequest$awsJobTimeoutConfig' => '

Specifies the amount of time each device has to finish its execution of the job. A timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the timer expires, it will be automatically set to TIMED_OUT.

', ], ], 'AwsJobTimeoutInProgressTimeoutInMinutes' => [ 'base' => NULL, 'refs' => [ 'AwsJobTimeoutConfig$inProgressTimeoutInMinutes' => '

Specifies the amount of time, in minutes, this device has to finish execution of this job. The timeout interval can be anywhere between 1 minute and 7 days (1 to 10080 minutes). The in progress timer can\'t be updated and will apply to all job executions for the job. Whenever a job execution remains in the IN_PROGRESS status for longer than this interval, the job execution will fail and switch to the terminal TIMED_OUT status.

', ], ], 'BatchMode' => [ 'base' => NULL, 'refs' => [ 'CloudwatchLogsAction$batchMode' => '

Indicates whether batches of log records will be extracted and uploaded into CloudWatch. Values include true or false (default).

', 'FirehoseAction$batchMode' => '

Whether to deliver the Kinesis Data Firehose stream as a batch by using PutRecordBatch . The default value is false.

When batchMode is true and the rule\'s SQL statement evaluates to an Array, each Array element forms one record in the PutRecordBatch request. The resulting array can\'t have more than 500 records.

', 'IotAnalyticsAction$batchMode' => '

Whether to process the action as a batch. The default value is false.

When batchMode is true and the rule SQL statement evaluates to an Array, each Array element is delivered as a separate message when passed by BatchPutMessage to the IoT Analytics channel. The resulting array can\'t have more than 100 messages.

', 'IotEventsAction$batchMode' => '

Whether to process the event actions as a batch. The default value is false.

When batchMode is true, you can\'t specify a messageId.

When batchMode is true and the rule SQL statement evaluates to an Array, each Array element is treated as a separate message when it\'s sent to IoT Events by calling BatchPutMessage . The resulting array can\'t have more than 10 messages.

', ], ], 'Behavior' => [ 'base' => '

A Device Defender security profile behavior.

', 'refs' => [ 'ActiveViolation$behavior' => '

The behavior that is being violated.

', 'Behaviors$member' => NULL, 'ViolationEvent$behavior' => '

The behavior that was violated.

', ], ], 'BehaviorCriteria' => [ 'base' => '

The criteria by which the behavior is determined to be normal.

', 'refs' => [ 'Behavior$criteria' => '

The criteria that determine if a device is behaving normally in regard to the metric.

In the IoT console, you can choose to be sent an alert through Amazon SNS when IoT Device Defender detects that a device is behaving anomalously.

', ], ], 'BehaviorCriteriaType' => [ 'base' => NULL, 'refs' => [ 'ListActiveViolationsRequest$behaviorCriteriaType' => '

The criteria for a behavior.

', 'ListViolationEventsRequest$behaviorCriteriaType' => '

The criteria for a behavior.

', ], ], 'BehaviorMetric' => [ 'base' => NULL, 'refs' => [ 'AdditionalMetricsToRetainList$member' => NULL, 'Behavior$metric' => '

What is measured by the behavior.

', 'ListMetricValuesRequest$metricName' => '

The name of the security profile metric for which values are returned.

', 'MetricToRetain$metric' => '

What is measured by the behavior.

', ], ], 'BehaviorModelTrainingSummaries' => [ 'base' => NULL, 'refs' => [ 'GetBehaviorModelTrainingSummariesResponse$summaries' => '

A list of all ML Detect behaviors and their model status for a given Security Profile.

', ], ], 'BehaviorModelTrainingSummary' => [ 'base' => '

The summary of an ML Detect behavior model.

', 'refs' => [ 'BehaviorModelTrainingSummaries$member' => NULL, ], ], 'BehaviorName' => [ 'base' => NULL, 'refs' => [ 'Behavior$name' => '

The name you\'ve given to the behavior.

', 'BehaviorModelTrainingSummary$behaviorName' => '

The name of the behavior.

', 'DetectMitigationActionsTaskTarget$behaviorName' => '

The name of the behavior.

', ], ], 'Behaviors' => [ 'base' => NULL, 'refs' => [ 'CreateSecurityProfileRequest$behaviors' => '

Specifies the behaviors that, when violated by a device (thing), cause an alert.

', 'DescribeSecurityProfileResponse$behaviors' => '

Specifies the behaviors that, when violated by a device (thing), cause an alert.

', 'UpdateSecurityProfileRequest$behaviors' => '

Specifies the behaviors that, when violated by a device (thing), cause an alert.

', 'UpdateSecurityProfileResponse$behaviors' => '

Specifies the behaviors that, when violated by a device (thing), cause an alert.

', 'ValidateSecurityProfileBehaviorsRequest$behaviors' => '

Specifies the behaviors that, when violated by a device (thing), cause an alert.

', ], ], 'BillingGroupArn' => [ 'base' => NULL, 'refs' => [ 'AddThingToBillingGroupRequest$billingGroupArn' => '

The ARN of the billing group.

', 'CreateBillingGroupResponse$billingGroupArn' => '

The ARN of the billing group.

', 'DescribeBillingGroupResponse$billingGroupArn' => '

The ARN of the billing group.

', 'RemoveThingFromBillingGroupRequest$billingGroupArn' => '

The ARN of the billing group.

', ], ], 'BillingGroupDescription' => [ 'base' => NULL, 'refs' => [ 'BillingGroupProperties$billingGroupDescription' => '

The description of the billing group.

', ], ], 'BillingGroupId' => [ 'base' => NULL, 'refs' => [ 'CreateBillingGroupResponse$billingGroupId' => '

The ID of the billing group.

', 'DescribeBillingGroupResponse$billingGroupId' => '

The ID of the billing group.

', ], ], 'BillingGroupMetadata' => [ 'base' => '

Additional information about the billing group.

', 'refs' => [ 'DescribeBillingGroupResponse$billingGroupMetadata' => '

Additional information about the billing group.

', ], ], 'BillingGroupName' => [ 'base' => NULL, 'refs' => [ 'AddThingToBillingGroupRequest$billingGroupName' => '

The name of the billing group.

This call is asynchronous. It might take several seconds for the detachment to propagate.

', 'CreateBillingGroupRequest$billingGroupName' => '

The name you wish to give to the billing group.

', 'CreateBillingGroupResponse$billingGroupName' => '

The name you gave to the billing group.

', 'CreateThingRequest$billingGroupName' => '

The name of the billing group the thing will be added to.

', 'DeleteBillingGroupRequest$billingGroupName' => '

The name of the billing group.

', 'DescribeBillingGroupRequest$billingGroupName' => '

The name of the billing group.

', 'DescribeBillingGroupResponse$billingGroupName' => '

The name of the billing group.

', 'DescribeThingResponse$billingGroupName' => '

The name of the billing group the thing belongs to.

', 'ListBillingGroupsRequest$namePrefixFilter' => '

Limit the results to billing groups whose names have the given prefix.

', 'ListThingsInBillingGroupRequest$billingGroupName' => '

The name of the billing group.

', 'RemoveThingFromBillingGroupRequest$billingGroupName' => '

The name of the billing group.

', 'UpdateBillingGroupRequest$billingGroupName' => '

The name of the billing group.

', ], ], 'BillingGroupNameAndArnList' => [ 'base' => NULL, 'refs' => [ 'ListBillingGroupsResponse$billingGroups' => '

The list of billing groups.

', ], ], 'BillingGroupProperties' => [ 'base' => '

The properties of a billing group.

', 'refs' => [ 'CreateBillingGroupRequest$billingGroupProperties' => '

The properties of the billing group.

', 'DescribeBillingGroupResponse$billingGroupProperties' => '

The properties of the billing group.

', 'UpdateBillingGroupRequest$billingGroupProperties' => '

The properties of the billing group.

', ], ], 'Boolean' => [ 'base' => NULL, 'refs' => [ 'ThingConnectivity$connected' => '

True if the thing is connected to the Amazon Web Services IoT Core service; false if it is not connected.

', 'ThingTypeMetadata$deprecated' => '

Whether the thing type is deprecated. If true, no new things could be associated with this type.

', ], ], 'BooleanKey' => [ 'base' => NULL, 'refs' => [ 'AuthorizerDescription$signingDisabled' => '

Specifies whether IoT validates the token signature in an authorization request.

', 'CreateAuthorizerRequest$signingDisabled' => '

Specifies whether IoT validates the token signature in an authorization request.

', ], ], 'BooleanWrapperObject' => [ 'base' => NULL, 'refs' => [ 'Job$isConcurrent' => '

Indicates whether a job is concurrent. Will be true when a job is rolling out new job executions or canceling previously created executions, otherwise false.

', 'JobSummary$isConcurrent' => '

Indicates whether a job is concurrent. Will be true when a job is rolling out new job executions or canceling previously created executions, otherwise false.

', ], ], 'Bucket' => [ 'base' => '

A count of documents that meets a specific aggregation criteria.

', 'refs' => [ 'Buckets$member' => NULL, ], ], 'BucketKeyValue' => [ 'base' => NULL, 'refs' => [ 'Bucket$keyValue' => '

The value counted for the particular bucket.

', ], ], 'BucketName' => [ 'base' => NULL, 'refs' => [ 'S3Action$bucketName' => '

The Amazon S3 bucket.

', ], ], 'Buckets' => [ 'base' => NULL, 'refs' => [ 'GetBucketsAggregationResponse$buckets' => '

The main part of the response with a list of buckets. Each bucket contains a keyValue and a count.

keyValue: The aggregation field value counted for the particular bucket.

count: The number of documents that have that value.

', ], ], 'BucketsAggregationType' => [ 'base' => '

The type of bucketed aggregation performed.

', 'refs' => [ 'GetBucketsAggregationRequest$bucketsAggregationType' => '

The basic control of the response shape and the bucket aggregation type to perform.

', ], ], 'CACertificate' => [ 'base' => '

A CA certificate.

', 'refs' => [ 'CACertificates$member' => NULL, ], ], 'CACertificateDescription' => [ 'base' => '

Describes a CA certificate.

', 'refs' => [ 'DescribeCACertificateResponse$certificateDescription' => '

The CA certificate description.

', ], ], 'CACertificateStatus' => [ 'base' => NULL, 'refs' => [ 'CACertificate$status' => '

The status of the CA certificate.

The status value REGISTER_INACTIVE is deprecated and should not be used.

', 'CACertificateDescription$status' => '

The status of a CA certificate.

', 'UpdateCACertificateRequest$newStatus' => '

The updated status of the CA certificate.

Note: The status value REGISTER_INACTIVE is deprecated and should not be used.

', ], ], 'CACertificateUpdateAction' => [ 'base' => NULL, 'refs' => [ 'UpdateCACertificateParams$action' => '

The action that you want to apply to the CA certificate. The only supported value is DEACTIVATE.

', ], ], 'CACertificates' => [ 'base' => NULL, 'refs' => [ 'ListCACertificatesResponse$certificates' => '

The CA certificates registered in your Amazon Web Services account.

', ], ], 'CancelAuditMitigationActionsTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelAuditMitigationActionsTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'CancelAuditTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelAuditTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'CancelCertificateTransferRequest' => [ 'base' => '

The input for the CancelCertificateTransfer operation.

', 'refs' => [], ], 'CancelDetectMitigationActionsTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelDetectMitigationActionsTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'CancelJobExecutionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelJobRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelJobResponse' => [ 'base' => NULL, 'refs' => [], ], 'CanceledChecksCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatistics$canceledChecks' => '

The number of checks that did not run because the audit was canceled.

', ], ], 'CanceledFindingsCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatisticsForAuditCheck$canceledFindingsCount' => '

The number of findings to which the mitigation action task was canceled when applied.

', ], ], 'CanceledThings' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$numberOfCanceledThings' => '

The number of things that cancelled the job.

', ], ], 'CannedAccessControlList' => [ 'base' => NULL, 'refs' => [ 'S3Action$cannedAcl' => '

The Amazon S3 canned ACL that controls access to the object identified by the object key. For more information, see S3 canned ACLs.

', ], ], 'Certificate' => [ 'base' => '

Information about a certificate.

', 'refs' => [ 'Certificates$member' => NULL, ], ], 'CertificateArn' => [ 'base' => NULL, 'refs' => [ 'CACertificate$certificateArn' => '

The ARN of the CA certificate.

', 'CACertificateDescription$certificateArn' => '

The CA certificate ARN.

', 'Certificate$certificateArn' => '

The ARN of the certificate.

', 'CertificateDescription$certificateArn' => '

The ARN of the certificate.

', 'CreateCertificateFromCsrResponse$certificateArn' => '

The Amazon Resource Name (ARN) of the certificate. You can use the ARN as a principal for policy operations.

', 'CreateKeysAndCertificateResponse$certificateArn' => '

The ARN of the certificate.

', 'OutgoingCertificate$certificateArn' => '

The certificate ARN.

', 'RegisterCACertificateResponse$certificateArn' => '

The CA certificate ARN.

', 'RegisterCertificateResponse$certificateArn' => '

The certificate ARN.

', 'RegisterCertificateWithoutCAResponse$certificateArn' => '

The Amazon Resource Name (ARN) of the registered certificate.

', 'ResourceIdentifier$deviceCertificateArn' => '

The ARN of the identified device certificate.

', 'SigningProfileParameter$certificateArn' => '

Certificate ARN.

', 'TransferCertificateResponse$transferredCertificateArn' => '

The ARN of the certificate.

', ], ], 'CertificateConflictException' => [ 'base' => '

Unable to verify the CA certificate used to sign the device certificate you are attempting to register. This is happens when you have registered more than one CA certificate that has the same subject field and public key.

', 'refs' => [], ], 'CertificateDescription' => [ 'base' => '

Describes a certificate.

', 'refs' => [ 'DescribeCertificateResponse$certificateDescription' => '

The description of the certificate.

', ], ], 'CertificateId' => [ 'base' => NULL, 'refs' => [ 'AcceptCertificateTransferRequest$certificateId' => '

The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)

', 'CACertificate$certificateId' => '

The ID of the CA certificate.

', 'CACertificateDescription$certificateId' => '

The CA certificate ID.

', 'CancelCertificateTransferRequest$certificateId' => '

The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)

', 'Certificate$certificateId' => '

The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)

', 'CertificateDescription$certificateId' => '

The ID of the certificate.

', 'CertificateDescription$caCertificateId' => '

The certificate ID of the CA certificate used to sign this certificate.

', 'CreateCertificateFromCsrResponse$certificateId' => '

The ID of the certificate. Certificate management operations only take a certificateId.

', 'CreateKeysAndCertificateResponse$certificateId' => '

The ID of the certificate. IoT issues a default subject name for the certificate (for example, IoT Certificate).

', 'CreateProvisioningClaimResponse$certificateId' => '

The ID of the certificate.

', 'DeleteCACertificateRequest$certificateId' => '

The ID of the certificate to delete. (The last part of the certificate ARN contains the certificate ID.)

', 'DeleteCertificateRequest$certificateId' => '

The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)

', 'DescribeCACertificateRequest$certificateId' => '

The CA certificate identifier.

', 'DescribeCertificateRequest$certificateId' => '

The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)

', 'ListCertificatesByCARequest$caCertificateId' => '

The ID of the CA certificate. This operation will list all registered device certificate that were signed by this CA certificate.

', 'OutgoingCertificate$certificateId' => '

The certificate ID.

', 'RegisterCACertificateResponse$certificateId' => '

The CA certificate identifier.

', 'RegisterCertificateResponse$certificateId' => '

The certificate identifier.

', 'RegisterCertificateWithoutCAResponse$certificateId' => '

The ID of the registered certificate. (The last part of the certificate ARN contains the certificate ID.

', 'RejectCertificateTransferRequest$certificateId' => '

The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)

', 'ResourceIdentifier$deviceCertificateId' => '

The ID of the certificate attached to the resource.

', 'ResourceIdentifier$caCertificateId' => '

The ID of the CA certificate used to authorize the certificate.

', 'TransferCertificateRequest$certificateId' => '

The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)

', 'UpdateCACertificateRequest$certificateId' => '

The CA certificate identifier.

', 'UpdateCertificateRequest$certificateId' => '

The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)

', ], ], 'CertificateMode' => [ 'base' => NULL, 'refs' => [ 'CACertificateDescription$certificateMode' => '

The mode of the CA.

All the device certificates that are registered using this CA will be registered in the same mode as the CA. For more information about certificate mode for device certificates, see certificate mode.

', 'Certificate$certificateMode' => '

The mode of the certificate.

DEFAULT: A certificate in DEFAULT mode is either generated by Amazon Web Services IoT Core or registered with an issuer certificate authority (CA) in DEFAULT mode. Devices with certificates in DEFAULT mode aren\'t required to send the Server Name Indication (SNI) extension when connecting to Amazon Web Services IoT Core. However, to use features such as custom domains and VPC endpoints, we recommend that you use the SNI extension when connecting to Amazon Web Services IoT Core.

SNI_ONLY: A certificate in SNI_ONLY mode is registered without an issuer CA. Devices with certificates in SNI_ONLY mode must send the SNI extension when connecting to Amazon Web Services IoT Core.

', 'CertificateDescription$certificateMode' => '

The mode of the certificate.

DEFAULT: A certificate in DEFAULT mode is either generated by Amazon Web Services IoT Core or registered with an issuer certificate authority (CA) in DEFAULT mode. Devices with certificates in DEFAULT mode aren\'t required to send the Server Name Indication (SNI) extension when connecting to Amazon Web Services IoT Core. However, to use features such as custom domains and VPC endpoints, we recommend that you use the SNI extension when connecting to Amazon Web Services IoT Core.

SNI_ONLY: A certificate in SNI_ONLY mode is registered without an issuer CA. Devices with certificates in SNI_ONLY mode must send the SNI extension when connecting to Amazon Web Services IoT Core.

For more information about the value for SNI extension, see Transport security in IoT.

', 'RegisterCACertificateRequest$certificateMode' => '

Describes the certificate mode in which the Certificate Authority (CA) will be registered. If the verificationCertificate field is not provided, set certificateMode to be SNI_ONLY. If the verificationCertificate field is provided, set certificateMode to be DEFAULT. When certificateMode is not provided, it defaults to DEFAULT. All the device certificates that are registered using this CA will be registered in the same certificate mode as the CA. For more information about certificate mode for device certificates, see certificate mode.

', ], ], 'CertificateName' => [ 'base' => NULL, 'refs' => [ 'CodeSigningCertificateChain$certificateName' => '

The name of the certificate.

', ], ], 'CertificatePathOnDevice' => [ 'base' => NULL, 'refs' => [ 'SigningProfileParameter$certificatePathOnDevice' => '

The location of the code-signing certificate on your device.

', ], ], 'CertificatePem' => [ 'base' => '

The PEM of a certificate.

', 'refs' => [ 'CACertificateDescription$certificatePem' => '

The CA certificate data, in PEM format.

', 'CertificateDescription$certificatePem' => '

The certificate data, in PEM format.

', 'CreateCertificateFromCsrResponse$certificatePem' => '

The certificate data, in PEM format.

', 'CreateKeysAndCertificateResponse$certificatePem' => '

The certificate data, in PEM format.

', 'CreateProvisioningClaimResponse$certificatePem' => '

The provisioning claim certificate.

', 'RegisterCACertificateRequest$caCertificate' => '

The CA certificate.

', 'RegisterCACertificateRequest$verificationCertificate' => '

The private key verification certificate. If certificateMode is SNI_ONLY, the verificationCertificate field must be empty. If certificateMode is DEFAULT or not provided, the verificationCertificate field must not be empty.

', 'RegisterCertificateRequest$certificatePem' => '

The certificate data, in PEM format.

', 'RegisterCertificateRequest$caCertificatePem' => '

The CA certificate used to sign the device certificate being registered.

', 'RegisterCertificateWithoutCARequest$certificatePem' => '

The certificate data, in PEM format.

', 'RegisterThingResponse$certificatePem' => '

The certificate data, in PEM format.

', ], ], 'CertificateProviderAccountDefaultForOperations' => [ 'base' => NULL, 'refs' => [ 'CreateCertificateProviderRequest$accountDefaultForOperations' => '

A list of the operations that the certificate provider will use to generate certificates. Valid value: CreateCertificateFromCsr.

', 'DescribeCertificateProviderResponse$accountDefaultForOperations' => '

A list of the operations that the certificate provider will use to generate certificates. Valid value: CreateCertificateFromCsr.

', 'UpdateCertificateProviderRequest$accountDefaultForOperations' => '

A list of the operations that the certificate provider will use to generate certificates. Valid value: CreateCertificateFromCsr.

', ], ], 'CertificateProviderArn' => [ 'base' => NULL, 'refs' => [ 'CertificateProviderSummary$certificateProviderArn' => '

The ARN of the certificate provider.

', 'CreateCertificateProviderResponse$certificateProviderArn' => '

The ARN of the certificate provider.

', 'DescribeCertificateProviderResponse$certificateProviderArn' => '

The ARN of the certificate provider.

', 'UpdateCertificateProviderResponse$certificateProviderArn' => '

The ARN of the certificate provider.

', ], ], 'CertificateProviderFunctionArn' => [ 'base' => NULL, 'refs' => [ 'CreateCertificateProviderRequest$lambdaFunctionArn' => '

The ARN of the Lambda function that defines the authentication logic.

', 'DescribeCertificateProviderResponse$lambdaFunctionArn' => '

The Lambda function ARN that\'s associated with the certificate provider.

', 'UpdateCertificateProviderRequest$lambdaFunctionArn' => '

The Lambda function ARN that\'s associated with the certificate provider.

', ], ], 'CertificateProviderName' => [ 'base' => NULL, 'refs' => [ 'CertificateProviderSummary$certificateProviderName' => '

The name of the certificate provider.

', 'CreateCertificateProviderRequest$certificateProviderName' => '

The name of the certificate provider.

', 'CreateCertificateProviderResponse$certificateProviderName' => '

The name of the certificate provider.

', 'DeleteCertificateProviderRequest$certificateProviderName' => '

The name of the certificate provider.

', 'DescribeCertificateProviderRequest$certificateProviderName' => '

The name of the certificate provider.

', 'DescribeCertificateProviderResponse$certificateProviderName' => '

The name of the certificate provider.

', 'UpdateCertificateProviderRequest$certificateProviderName' => '

The name of the certificate provider.

', 'UpdateCertificateProviderResponse$certificateProviderName' => '

The name of the certificate provider.

', ], ], 'CertificateProviderOperation' => [ 'base' => NULL, 'refs' => [ 'CertificateProviderAccountDefaultForOperations$member' => NULL, ], ], 'CertificateProviderSummary' => [ 'base' => '

The certificate provider summary.

', 'refs' => [ 'CertificateProviders$member' => NULL, ], ], 'CertificateProviders' => [ 'base' => NULL, 'refs' => [ 'ListCertificateProvidersResponse$certificateProviders' => '

The list of certificate providers in your Amazon Web Services account.

', ], ], 'CertificateSigningRequest' => [ 'base' => NULL, 'refs' => [ 'CreateCertificateFromCsrRequest$certificateSigningRequest' => '

The certificate signing request (CSR).

', ], ], 'CertificateStateException' => [ 'base' => '

The certificate operation is not allowed.

', 'refs' => [], ], 'CertificateStatus' => [ 'base' => NULL, 'refs' => [ 'Certificate$status' => '

The status of the certificate.

The status value REGISTER_INACTIVE is deprecated and should not be used.

', 'CertificateDescription$status' => '

The status of the certificate.

', 'RegisterCertificateRequest$status' => '

The status of the register certificate request. Valid values that you can use include ACTIVE, INACTIVE, and REVOKED.

', 'RegisterCertificateWithoutCARequest$status' => '

The status of the register certificate request.

', 'UpdateCertificateRequest$newStatus' => '

The new status.

Note: Setting the status to PENDING_TRANSFER or PENDING_ACTIVATION will result in an exception being thrown. PENDING_TRANSFER and PENDING_ACTIVATION are statuses used internally by IoT. They are not intended for developer use.

Note: The status value REGISTER_INACTIVE is deprecated and should not be used.

', ], ], 'CertificateValidationException' => [ 'base' => '

The certificate is invalid.

', 'refs' => [], ], 'CertificateValidity' => [ 'base' => '

When the certificate is valid.

', 'refs' => [ 'CACertificateDescription$validity' => '

When the CA certificate is valid.

', 'CertificateDescription$validity' => '

When the certificate is valid.

', ], ], 'Certificates' => [ 'base' => NULL, 'refs' => [ 'ListCertificatesByCAResponse$certificates' => '

The device certificates signed by the specified CA certificate.

', 'ListCertificatesResponse$certificates' => '

The descriptions of the certificates.

', ], ], 'ChannelName' => [ 'base' => NULL, 'refs' => [ 'IotAnalyticsAction$channelName' => '

The name of the IoT Analytics channel to which message data will be sent.

', ], ], 'CheckCompliant' => [ 'base' => NULL, 'refs' => [ 'AuditCheckDetails$checkCompliant' => '

True if the check is complete and found all resources compliant.

', ], ], 'Cidr' => [ 'base' => NULL, 'refs' => [ 'Cidrs$member' => NULL, ], ], 'Cidrs' => [ 'base' => NULL, 'refs' => [ 'MetricValue$cidrs' => '

If the comparisonOperator calls for a set of CIDRs, use this to specify that set to be compared with the metric.

', ], ], 'ClearDefaultAuthorizerRequest' => [ 'base' => NULL, 'refs' => [], ], 'ClearDefaultAuthorizerResponse' => [ 'base' => NULL, 'refs' => [], ], 'ClientId' => [ 'base' => NULL, 'refs' => [ 'DescribeThingResponse$defaultClientId' => '

The default MQTT client ID. For a typical device, the thing name is also used as the default MQTT client ID. Although we don’t require a mapping between a thing\'s registry name and its use of MQTT client IDs, certificates, or shadow state, we recommend that you choose a thing name and use it as the MQTT client ID for the registry and the Device Shadow service.

This lets you better organize your IoT fleet without removing the flexibility of the underlying device certificate model or shadows.

', 'ResourceIdentifier$clientId' => '

The client ID.

', 'TestAuthorizationRequest$clientId' => '

The MQTT client ID.

', ], ], 'ClientProperties' => [ 'base' => NULL, 'refs' => [ 'KafkaAction$clientProperties' => '

Properties of the Apache Kafka producer client.

', ], ], 'ClientRequestToken' => [ 'base' => NULL, 'refs' => [ 'CreateAuditSuppressionRequest$clientRequestToken' => '

Each audit supression must have a unique client request token. If you try to create a new audit suppression with the same token as one that already exists, an exception occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.

', 'CreateCustomMetricRequest$clientRequestToken' => '

Each custom metric must have a unique client request token. If you try to create a new custom metric that already exists with a different token, an exception occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.

', 'CreateDimensionRequest$clientRequestToken' => '

Each dimension must have a unique client request token. If you try to create a new dimension with the same token as a dimension that already exists, an exception occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.

', 'StartAuditMitigationActionsTaskRequest$clientRequestToken' => '

Each audit mitigation task must have a unique client request token. If you try to start a new task with the same token as a task that already exists, an exception occurs. If you omit this value, a unique client request token is generated automatically.

', 'StartDetectMitigationActionsTaskRequest$clientRequestToken' => '

Each mitigation action task must have a unique client request token. If you try to create a new task with the same token as a task that already exists, an exception occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.

', ], ], 'ClientToken' => [ 'base' => NULL, 'refs' => [ 'CreateCertificateProviderRequest$clientToken' => '

A string that you can optionally pass in the CreateCertificateProvider request to make sure the request is idempotent.

', 'CreatePackageRequest$clientToken' => '

A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don\'t reuse this client token if a new idempotent request is required.

', 'CreatePackageVersionRequest$clientToken' => '

A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don\'t reuse this client token if a new idempotent request is required.

', 'DeletePackageRequest$clientToken' => '

A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don\'t reuse this client token if a new idempotent request is required.

', 'DeletePackageVersionRequest$clientToken' => '

A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don\'t reuse this client token if a new idempotent request is required.

', 'UpdatePackageConfigurationRequest$clientToken' => '

A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don\'t reuse this client token if a new idempotent request is required.

', 'UpdatePackageRequest$clientToken' => '

A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don\'t reuse this client token if a new idempotent request is required.

', 'UpdatePackageVersionRequest$clientToken' => '

A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don\'t reuse this client token if a new idempotent request is required.

', ], ], 'CloudwatchAlarmAction' => [ 'base' => '

Describes an action that updates a CloudWatch alarm.

', 'refs' => [ 'Action$cloudwatchAlarm' => '

Change the state of a CloudWatch alarm.

', ], ], 'CloudwatchLogsAction' => [ 'base' => '

Describes an action that sends data to CloudWatch Logs.

', 'refs' => [ 'Action$cloudwatchLogs' => '

Send data to CloudWatch Logs.

', ], ], 'CloudwatchMetricAction' => [ 'base' => '

Describes an action that captures a CloudWatch metric.

', 'refs' => [ 'Action$cloudwatchMetric' => '

Capture a CloudWatch metric.

', ], ], 'Code' => [ 'base' => NULL, 'refs' => [ 'ErrorInfo$code' => '

The error code.

', ], ], 'CodeSigning' => [ 'base' => '

Describes the method to use when code signing a file.

', 'refs' => [ 'OTAUpdateFile$codeSigning' => '

The code signing method of the file.

', ], ], 'CodeSigningCertificateChain' => [ 'base' => '

Describes the certificate chain being used when code signing a file.

', 'refs' => [ 'CustomCodeSigning$certificateChain' => '

The certificate chain.

', ], ], 'CodeSigningSignature' => [ 'base' => '

Describes the signature for a file.

', 'refs' => [ 'CustomCodeSigning$signature' => '

The signature for the file.

', ], ], 'CognitoIdentityPoolId' => [ 'base' => NULL, 'refs' => [ 'GetEffectivePoliciesRequest$cognitoIdentityPoolId' => '

The Cognito identity pool ID.

', 'ResourceIdentifier$cognitoIdentityPoolId' => '

The ID of the Amazon Cognito identity pool.

', 'TestAuthorizationRequest$cognitoIdentityPoolId' => '

The Cognito identity pool ID.

', ], ], 'Comment' => [ 'base' => NULL, 'refs' => [ 'AssociateTargetsWithJobRequest$comment' => '

An optional comment string describing why the job was associated with the targets.

', 'CancelJobRequest$comment' => '

An optional comment string describing why the job was canceled.

', 'Job$comment' => '

If the job was updated, describes the reason for the update.

', ], ], 'ComparisonOperator' => [ 'base' => NULL, 'refs' => [ 'BehaviorCriteria$comparisonOperator' => '

The operator that relates the thing measured (metric) to the criteria (containing a value or statisticalThreshold). Valid operators include:

  • string-list: in-set and not-in-set

  • number-list: in-set and not-in-set

  • ip-address-list: in-cidr-set and not-in-cidr-set

  • number: less-than, less-than-equals, greater-than, and greater-than-equals

', ], ], 'CompliantChecksCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatistics$compliantChecks' => '

The number of checks that found compliant resources.

', ], ], 'ConfidenceLevel' => [ 'base' => NULL, 'refs' => [ 'MachineLearningDetectionConfig$confidenceLevel' => '

The sensitivity of anomalous behavior evaluation. Can be Low, Medium, or High.

', 'ViolationEventAdditionalInfo$confidenceLevel' => '

The sensitivity of anomalous behavior evaluation. Can be Low, Medium, or High.

', ], ], 'Configuration' => [ 'base' => '

Configuration.

', 'refs' => [ 'EventConfigurations$value' => NULL, ], ], 'ConfirmTopicRuleDestinationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ConfirmTopicRuleDestinationResponse' => [ 'base' => NULL, 'refs' => [], ], 'ConfirmationToken' => [ 'base' => NULL, 'refs' => [ 'ConfirmTopicRuleDestinationRequest$confirmationToken' => '

The token used to confirm ownership or access to the topic rule confirmation URL.

', ], ], 'ConflictException' => [ 'base' => '

A resource with the same name already exists.

', 'refs' => [], ], 'ConflictingResourceUpdateException' => [ 'base' => '

A conflicting resource update exception. This exception is thrown when two pending updates cause a conflict.

', 'refs' => [], ], 'ConnectivityTimestamp' => [ 'base' => NULL, 'refs' => [ 'ThingConnectivity$timestamp' => '

The epoch time (in milliseconds) when the thing last connected or disconnected. If the thing has been disconnected for approximately an hour, the time value might be missing.

', ], ], 'ConsecutiveDatapointsToAlarm' => [ 'base' => NULL, 'refs' => [ 'BehaviorCriteria$consecutiveDatapointsToAlarm' => '

If a device is in violation of the behavior for the specified number of consecutive datapoints, an alarm occurs. If not specified, the default is 1.

', ], ], 'ConsecutiveDatapointsToClear' => [ 'base' => NULL, 'refs' => [ 'BehaviorCriteria$consecutiveDatapointsToClear' => '

If an alarm has occurred and the offending device is no longer in violation of the behavior for the specified number of consecutive datapoints, the alarm is cleared. If not specified, the default is 1.

', ], ], 'ContentType' => [ 'base' => NULL, 'refs' => [ 'MqttHeaders$contentType' => '

A UTF-8 encoded string that describes the content of the publishing message.

For more information, see Content Type from the MQTT Version 5.0 specification.

Supports substitution templates.

', ], ], 'CorrelationData' => [ 'base' => NULL, 'refs' => [ 'MqttHeaders$correlationData' => '

The base64-encoded binary data used by the sender of the request message to identify which request the response message is for when it\'s received.

For more information, see Correlation Data from the MQTT Version 5.0 specification.

This binary data must be based64-encoded.

Supports substitution templates.

', ], ], 'Count' => [ 'base' => NULL, 'refs' => [ 'Bucket$count' => '

The number of documents that have the value counted for the particular bucket.

', 'DescribeThingRegistrationTaskResponse$successCount' => '

The number of things successfully provisioned.

', 'DescribeThingRegistrationTaskResponse$failureCount' => '

The number of things that failed to be provisioned.

', 'GetBucketsAggregationResponse$totalCount' => '

The total number of things that fit the query string criteria.

', 'GetCardinalityResponse$cardinality' => '

The approximate count of unique values that match the query.

', 'Statistics$count' => '

The count of things that match the query string criteria and contain a valid aggregation field value.

', ], ], 'CreateAuditSuppressionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateAuditSuppressionResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateAuthorizerRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateAuthorizerResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateBillingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateBillingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateCertificateFromCsrRequest' => [ 'base' => '

The input for the CreateCertificateFromCsr operation.

', 'refs' => [], ], 'CreateCertificateFromCsrResponse' => [ 'base' => '

The output from the CreateCertificateFromCsr operation.

', 'refs' => [], ], 'CreateCertificateProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateCertificateProviderResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateCustomMetricRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateCustomMetricResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateDimensionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateDimensionResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateDomainConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateDomainConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateDynamicThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateDynamicThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateFleetMetricRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateFleetMetricResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateJobRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateJobResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateJobTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateJobTemplateResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateKeysAndCertificateRequest' => [ 'base' => '

The input for the CreateKeysAndCertificate operation.

Requires permission to access the CreateKeysAndCertificateRequest action.

', 'refs' => [], ], 'CreateKeysAndCertificateResponse' => [ 'base' => '

The output of the CreateKeysAndCertificate operation.

', 'refs' => [], ], 'CreateMitigationActionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateMitigationActionResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateOTAUpdateRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateOTAUpdateResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreatePackageRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreatePackageResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreatePackageVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreatePackageVersionResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreatePolicyRequest' => [ 'base' => '

The input for the CreatePolicy operation.

', 'refs' => [], ], 'CreatePolicyResponse' => [ 'base' => '

The output from the CreatePolicy operation.

', 'refs' => [], ], 'CreatePolicyVersionRequest' => [ 'base' => '

The input for the CreatePolicyVersion operation.

', 'refs' => [], ], 'CreatePolicyVersionResponse' => [ 'base' => '

The output of the CreatePolicyVersion operation.

', 'refs' => [], ], 'CreateProvisioningClaimRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateProvisioningClaimResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateProvisioningTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateProvisioningTemplateResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateProvisioningTemplateVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateProvisioningTemplateVersionResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateRoleAliasRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateRoleAliasResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateScheduledAuditRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateScheduledAuditResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateSecurityProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateSecurityProfileResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateStreamRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateStreamResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateThingRequest' => [ 'base' => '

The input for the CreateThing operation.

', 'refs' => [], ], 'CreateThingResponse' => [ 'base' => '

The output of the CreateThing operation.

', 'refs' => [], ], 'CreateThingTypeRequest' => [ 'base' => '

The input for the CreateThingType operation.

', 'refs' => [], ], 'CreateThingTypeResponse' => [ 'base' => '

The output of the CreateThingType operation.

', 'refs' => [], ], 'CreateTopicRuleDestinationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTopicRuleDestinationResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateTopicRuleRequest' => [ 'base' => '

The input for the CreateTopicRule operation.

', 'refs' => [], ], 'CreatedAtDate' => [ 'base' => NULL, 'refs' => [ 'TopicRule$createdAt' => '

The date and time the rule was created.

', 'TopicRuleDestination$createdAt' => '

The date and time when the topic rule destination was created.

', 'TopicRuleDestinationSummary$createdAt' => '

The date and time when the topic rule destination was created.

', 'TopicRuleListItem$createdAt' => '

The date and time the rule was created.

', ], ], 'CreationDate' => [ 'base' => NULL, 'refs' => [ 'BillingGroupMetadata$creationDate' => '

The date the billing group was created.

', 'DescribeEventConfigurationsResponse$creationDate' => '

The creation date of the event configuration.

', 'DescribeFleetMetricResponse$creationDate' => '

The date when the fleet metric is created.

', 'DescribeThingRegistrationTaskResponse$creationDate' => '

The task creation date.

', 'GetPackageResponse$creationDate' => '

The date the package was created.

', 'GetPackageVersionResponse$creationDate' => '

The date when the package version was created.

', 'PackageSummary$creationDate' => '

The date that the package was created.

', 'PackageVersionSummary$creationDate' => '

The date that the package version was created.

', 'ThingGroupMetadata$creationDate' => '

The UNIX timestamp of when the thing group was created.

', 'ThingTypeMetadata$creationDate' => '

The date and time when the thing type was created.

', ], ], 'CredentialDurationSeconds' => [ 'base' => NULL, 'refs' => [ 'CreateRoleAliasRequest$credentialDurationSeconds' => '

How long (in seconds) the credentials will be valid. The default value is 3,600 seconds.

This value must be less than or equal to the maximum session duration of the IAM role that the role alias references.

', 'RoleAliasDescription$credentialDurationSeconds' => '

The number of seconds for which the credential is valid.

', 'UpdateRoleAliasRequest$credentialDurationSeconds' => '

The number of seconds the credential will be valid.

This value must be less than or equal to the maximum session duration of the IAM role that the role alias references.

', ], ], 'CronExpression' => [ 'base' => NULL, 'refs' => [ 'MaintenanceWindow$startTime' => '

Displays the start time of the next maintenance window.

', ], ], 'CustomCodeSigning' => [ 'base' => '

Describes a custom method used to code sign a file.

', 'refs' => [ 'CodeSigning$customCodeSigning' => '

A custom method for code signing a file.

', ], ], 'CustomMetricArn' => [ 'base' => NULL, 'refs' => [ 'CreateCustomMetricResponse$metricArn' => '

The Amazon Resource Number (ARN) of the custom metric. For example, arn:aws-partition:iot:region:accountId:custommetric/metricName

', 'DescribeCustomMetricResponse$metricArn' => '

The Amazon Resource Number (ARN) of the custom metric.

', 'UpdateCustomMetricResponse$metricArn' => '

The Amazon Resource Number (ARN) of the custom metric.

', ], ], 'CustomMetricDisplayName' => [ 'base' => NULL, 'refs' => [ 'CreateCustomMetricRequest$displayName' => '

The friendly name in the console for the custom metric. This name doesn\'t have to be unique. Don\'t use this name as the metric identifier in the device metric report. You can update the friendly name after you define it.

', 'DescribeCustomMetricResponse$displayName' => '

Field represents a friendly name in the console for the custom metric; doesn\'t have to be unique. Don\'t use this name as the metric identifier in the device metric report. Can be updated.

', 'UpdateCustomMetricRequest$displayName' => '

Field represents a friendly name in the console for the custom metric, it doesn\'t have to be unique. Don\'t use this name as the metric identifier in the device metric report. Can be updated.

', 'UpdateCustomMetricResponse$displayName' => '

A friendly name in the console for the custom metric

', ], ], 'CustomMetricType' => [ 'base' => NULL, 'refs' => [ 'CreateCustomMetricRequest$metricType' => '

The type of the custom metric.

The type number only takes a single metric value as an input, but when you submit the metrics value in the DeviceMetrics report, you must pass it as an array with a single value.

', 'DescribeCustomMetricResponse$metricType' => '

The type of the custom metric.

The type number only takes a single metric value as an input, but while submitting the metrics value in the DeviceMetrics report, it must be passed as an array with a single value.

', 'UpdateCustomMetricResponse$metricType' => '

The type of the custom metric.

The type number only takes a single metric value as an input, but while submitting the metrics value in the DeviceMetrics report, it must be passed as an array with a single value.

', ], ], 'CustomerVersion' => [ 'base' => NULL, 'refs' => [ 'CACertificateDescription$customerVersion' => '

The customer version of the CA certificate.

', 'CertificateDescription$customerVersion' => '

The customer version of the certificate.

', ], ], 'DataCollectionPercentage' => [ 'base' => NULL, 'refs' => [ 'BehaviorModelTrainingSummary$datapointsCollectionPercentage' => '

The percentage of datapoints collected.

', ], ], 'DateType' => [ 'base' => NULL, 'refs' => [ 'AuthorizerDescription$creationDate' => '

The UNIX timestamp of when the authorizer was created.

', 'AuthorizerDescription$lastModifiedDate' => '

The UNIX timestamp of when the authorizer was last updated.

', 'CACertificate$creationDate' => '

The date the CA certificate was created.

', 'CACertificateDescription$creationDate' => '

The date the CA certificate was created.

', 'CACertificateDescription$lastModifiedDate' => '

The date the CA certificate was last modified.

', 'Certificate$creationDate' => '

The date and time the certificate was created.

', 'CertificateDescription$creationDate' => '

The date and time the certificate was created.

', 'CertificateDescription$lastModifiedDate' => '

The date and time the certificate was last modified.

', 'CertificateValidity$notBefore' => '

The certificate is not valid before this date.

', 'CertificateValidity$notAfter' => '

The certificate is not valid after this date.

', 'CreateProvisioningClaimResponse$expiration' => '

The provisioning claim expiration time.

', 'DescribeCertificateProviderResponse$creationDate' => '

The date-time string that indicates when the certificate provider was created.

', 'DescribeCertificateProviderResponse$lastModifiedDate' => '

The date-time string that indicates when the certificate provider was last updated.

', 'DescribeDomainConfigurationResponse$lastStatusChangeDate' => '

The date and time the domain configuration\'s status was last changed.

', 'DescribeJobTemplateResponse$createdAt' => '

The time, in seconds since the epoch, when the job template was created.

', 'DescribeProvisioningTemplateResponse$creationDate' => '

The date when the provisioning template was created.

', 'DescribeProvisioningTemplateResponse$lastModifiedDate' => '

The date when the provisioning template was last modified.

', 'DescribeProvisioningTemplateVersionResponse$creationDate' => '

The date when the provisioning template version was created.

', 'GetPolicyResponse$creationDate' => '

The date the policy was created.

', 'GetPolicyResponse$lastModifiedDate' => '

The date the policy was last modified.

', 'GetPolicyVersionResponse$creationDate' => '

The date the policy was created.

', 'GetPolicyVersionResponse$lastModifiedDate' => '

The date the policy was last modified.

', 'Job$createdAt' => '

The time, in seconds since the epoch, when the job was created.

', 'Job$lastUpdatedAt' => '

The time, in seconds since the epoch, when the job was last updated.

', 'Job$completedAt' => '

The time, in seconds since the epoch, when the job was completed.

', 'JobExecution$queuedAt' => '

The time, in seconds since the epoch, when the job execution was queued.

', 'JobExecution$startedAt' => '

The time, in seconds since the epoch, when the job execution started.

', 'JobExecution$lastUpdatedAt' => '

The time, in seconds since the epoch, when the job execution was last updated.

', 'JobExecutionSummary$queuedAt' => '

The time, in seconds since the epoch, when the job execution was queued.

', 'JobExecutionSummary$startedAt' => '

The time, in seconds since the epoch, when the job execution started.

', 'JobExecutionSummary$lastUpdatedAt' => '

The time, in seconds since the epoch, when the job execution was last updated.

', 'JobSummary$createdAt' => '

The time, in seconds since the epoch, when the job was created.

', 'JobSummary$lastUpdatedAt' => '

The time, in seconds since the epoch, when the job was last updated.

', 'JobSummary$completedAt' => '

The time, in seconds since the epoch, when the job completed.

', 'JobTemplateSummary$createdAt' => '

The time, in seconds since the epoch, when the job template was created.

', 'OTAUpdateInfo$creationDate' => '

The date when the OTA update was created.

', 'OTAUpdateInfo$lastModifiedDate' => '

The date when the OTA update was last updated.

', 'OTAUpdateSummary$creationDate' => '

The date when the OTA update was created.

', 'OutgoingCertificate$transferDate' => '

The date the transfer was initiated.

', 'OutgoingCertificate$creationDate' => '

The certificate creation date.

', 'PolicyVersion$createDate' => '

The date and time the policy was created.

', 'ProvisioningTemplateSummary$creationDate' => '

The date when the provisioning template summary was created.

', 'ProvisioningTemplateSummary$lastModifiedDate' => '

The date when the provisioning template summary was last modified.

', 'ProvisioningTemplateVersionSummary$creationDate' => '

The date when the provisioning template version was created

', 'RoleAliasDescription$creationDate' => '

The UNIX timestamp of when the role alias was created.

', 'RoleAliasDescription$lastModifiedDate' => '

The UNIX timestamp of when the role alias was last modified.

', 'StreamInfo$createdAt' => '

The date when the stream was created.

', 'StreamInfo$lastUpdatedAt' => '

The date when the stream was last updated.

', 'TransferData$transferDate' => '

The date the transfer took place.

', 'TransferData$acceptDate' => '

The date the transfer was accepted.

', 'TransferData$rejectDate' => '

The date the transfer was rejected.

', ], ], 'DayOfMonth' => [ 'base' => NULL, 'refs' => [ 'CreateScheduledAuditRequest$dayOfMonth' => '

The day of the month on which the scheduled audit takes place. This can be "1" through "31" or "LAST". This field is required if the "frequency" parameter is set to MONTHLY. If days 29 to 31 are specified, and the month doesn\'t have that many days, the audit takes place on the LAST day of the month.

', 'DescribeScheduledAuditResponse$dayOfMonth' => '

The day of the month on which the scheduled audit takes place. This is will be 1 through 31 or LAST. If days 29-31 are specified, and the month does not have that many days, the audit takes place on the LAST day of the month.

', 'ScheduledAuditMetadata$dayOfMonth' => '

The day of the month on which the scheduled audit is run (if the frequency is "MONTHLY"). If days 29-31 are specified, and the month does not have that many days, the audit takes place on the "LAST" day of the month.

', 'UpdateScheduledAuditRequest$dayOfMonth' => '

The day of the month on which the scheduled audit takes place. This can be 1 through 31 or LAST. This field is required if the frequency parameter is set to MONTHLY. If days 29-31 are specified, and the month does not have that many days, the audit takes place on the "LAST" day of the month.

', ], ], 'DayOfWeek' => [ 'base' => NULL, 'refs' => [ 'CreateScheduledAuditRequest$dayOfWeek' => '

The day of the week on which the scheduled audit takes place, either SUN, MON, TUE, WED, THU, FRI, or SAT. This field is required if the frequency parameter is set to WEEKLY or BIWEEKLY.

', 'DescribeScheduledAuditResponse$dayOfWeek' => '

The day of the week on which the scheduled audit takes place, either one of SUN, MON, TUE, WED, THU, FRI, or SAT.

', 'ScheduledAuditMetadata$dayOfWeek' => '

The day of the week on which the scheduled audit is run (if the frequency is "WEEKLY" or "BIWEEKLY").

', 'UpdateScheduledAuditRequest$dayOfWeek' => '

The day of the week on which the scheduled audit takes place. This can be one of SUN, MON, TUE, WED, THU, FRI, or SAT. This field is required if the "frequency" parameter is set to WEEKLY or BIWEEKLY.

', ], ], 'DeleteAccountAuditConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAccountAuditConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAdditionalMetricsToRetain' => [ 'base' => NULL, 'refs' => [ 'UpdateSecurityProfileRequest$deleteAdditionalMetricsToRetain' => '

If true, delete all additionalMetricsToRetain defined for this security profile. If any additionalMetricsToRetain are defined in the current invocation, an exception occurs.

', ], ], 'DeleteAlertTargets' => [ 'base' => NULL, 'refs' => [ 'UpdateSecurityProfileRequest$deleteAlertTargets' => '

If true, delete all alertTargets defined for this security profile. If any alertTargets are defined in the current invocation, an exception occurs.

', ], ], 'DeleteAuditSuppressionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAuditSuppressionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAuthorizerRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAuthorizerResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteBehaviors' => [ 'base' => NULL, 'refs' => [ 'UpdateSecurityProfileRequest$deleteBehaviors' => '

If true, delete all behaviors defined for this security profile. If any behaviors are defined in the current invocation, an exception occurs.

', ], ], 'DeleteBillingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteBillingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCACertificateRequest' => [ 'base' => '

Input for the DeleteCACertificate operation.

', 'refs' => [], ], 'DeleteCACertificateResponse' => [ 'base' => '

The output for the DeleteCACertificate operation.

', 'refs' => [], ], 'DeleteCertificateProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCertificateProviderResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCertificateRequest' => [ 'base' => '

The input for the DeleteCertificate operation.

', 'refs' => [], ], 'DeleteConflictException' => [ 'base' => '

You can\'t delete the resource because it is attached to one or more resources.

', 'refs' => [], ], 'DeleteCustomMetricRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCustomMetricResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDimensionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDimensionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDomainConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDomainConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDynamicThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDynamicThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFleetMetricRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteJobExecutionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteJobRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteJobTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteMetricsExportConfig' => [ 'base' => NULL, 'refs' => [ 'UpdateSecurityProfileRequest$deleteMetricsExportConfig' => '

Set the value as true to delete metrics export related configurations.

', ], ], 'DeleteMitigationActionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteMitigationActionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteOTAUpdateRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteOTAUpdateResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeletePackageRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeletePackageResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeletePackageVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeletePackageVersionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeletePolicyRequest' => [ 'base' => '

The input for the DeletePolicy operation.

', 'refs' => [], ], 'DeletePolicyVersionRequest' => [ 'base' => '

The input for the DeletePolicyVersion operation.

', 'refs' => [], ], 'DeleteProvisioningTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteProvisioningTemplateResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteProvisioningTemplateVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteProvisioningTemplateVersionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteRegistrationCodeRequest' => [ 'base' => '

The input for the DeleteRegistrationCode operation.

', 'refs' => [], ], 'DeleteRegistrationCodeResponse' => [ 'base' => '

The output for the DeleteRegistrationCode operation.

', 'refs' => [], ], 'DeleteRoleAliasRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteRoleAliasResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteScheduledAuditRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteScheduledAuditResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteScheduledAudits' => [ 'base' => NULL, 'refs' => [ 'DeleteAccountAuditConfigurationRequest$deleteScheduledAudits' => '

If true, all scheduled audits are deleted.

', ], ], 'DeleteSecurityProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteSecurityProfileResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteStream' => [ 'base' => NULL, 'refs' => [ 'DeleteOTAUpdateRequest$deleteStream' => '

When true, the stream created by the OTAUpdate process is deleted when the OTA update is deleted. Ignored if the stream specified in the OTAUpdate is supplied by the user.

', ], ], 'DeleteStreamRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteStreamResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteThingRequest' => [ 'base' => '

The input for the DeleteThing operation.

', 'refs' => [], ], 'DeleteThingResponse' => [ 'base' => '

The output of the DeleteThing operation.

', 'refs' => [], ], 'DeleteThingTypeRequest' => [ 'base' => '

The input for the DeleteThingType operation.

', 'refs' => [], ], 'DeleteThingTypeResponse' => [ 'base' => '

The output for the DeleteThingType operation.

', 'refs' => [], ], 'DeleteTopicRuleDestinationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTopicRuleDestinationResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTopicRuleRequest' => [ 'base' => '

The input for the DeleteTopicRule operation.

', 'refs' => [], ], 'DeleteV2LoggingLevelRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeliveryStreamName' => [ 'base' => NULL, 'refs' => [ 'FirehoseAction$deliveryStreamName' => '

The delivery stream name.

', ], ], 'Denied' => [ 'base' => '

Contains information that denied the authorization.

', 'refs' => [ 'AuthResult$denied' => '

The policies and statements that denied the specified action.

', ], ], 'DeprecateThingTypeRequest' => [ 'base' => '

The input for the DeprecateThingType operation.

', 'refs' => [], ], 'DeprecateThingTypeResponse' => [ 'base' => '

The output for the DeprecateThingType operation.

', 'refs' => [], ], 'DeprecationDate' => [ 'base' => NULL, 'refs' => [ 'ThingTypeMetadata$deprecationDate' => '

The date and time when the thing type was deprecated.

', ], ], 'DescribeAccountAuditConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAccountAuditConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuditFindingRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuditFindingResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuditMitigationActionsTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuditMitigationActionsTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuditSuppressionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuditSuppressionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuditTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuditTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuthorizerRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuthorizerResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeBillingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeBillingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCACertificateRequest' => [ 'base' => '

The input for the DescribeCACertificate operation.

', 'refs' => [], ], 'DescribeCACertificateResponse' => [ 'base' => '

The output from the DescribeCACertificate operation.

', 'refs' => [], ], 'DescribeCertificateProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCertificateProviderResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCertificateRequest' => [ 'base' => '

The input for the DescribeCertificate operation.

', 'refs' => [], ], 'DescribeCertificateResponse' => [ 'base' => '

The output of the DescribeCertificate operation.

', 'refs' => [], ], 'DescribeCustomMetricRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCustomMetricResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDefaultAuthorizerRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDefaultAuthorizerResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDetectMitigationActionsTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDetectMitigationActionsTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDimensionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDimensionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDomainConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDomainConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeEndpointRequest' => [ 'base' => '

The input for the DescribeEndpoint operation.

', 'refs' => [], ], 'DescribeEndpointResponse' => [ 'base' => '

The output from the DescribeEndpoint operation.

', 'refs' => [], ], 'DescribeEventConfigurationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeEventConfigurationsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFleetMetricRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFleetMetricResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIndexRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIndexResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobExecutionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobExecutionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobTemplateResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeManagedJobTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeManagedJobTemplateResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeMitigationActionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeMitigationActionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeProvisioningTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeProvisioningTemplateResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeProvisioningTemplateVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeProvisioningTemplateVersionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeRoleAliasRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeRoleAliasResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeScheduledAuditRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeScheduledAuditResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSecurityProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSecurityProfileResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeStreamRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeStreamResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeThingRegistrationTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeThingRegistrationTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeThingRequest' => [ 'base' => '

The input for the DescribeThing operation.

', 'refs' => [], ], 'DescribeThingResponse' => [ 'base' => '

The output from the DescribeThing operation.

', 'refs' => [], ], 'DescribeThingTypeRequest' => [ 'base' => '

The input for the DescribeThingType operation.

', 'refs' => [], ], 'DescribeThingTypeResponse' => [ 'base' => '

The output for the DescribeThingType operation.

', 'refs' => [], ], 'Description' => [ 'base' => NULL, 'refs' => [ 'TopicRule$description' => '

The description of the rule.

', 'TopicRulePayload$description' => '

The description of the rule.

', ], ], 'Destination' => [ 'base' => '

Describes the location of the updated firmware.

', 'refs' => [ 'StartSigningJobParameter$destination' => '

The location to write the code-signed file.

', ], ], 'DestinationPackageVersions' => [ 'base' => NULL, 'refs' => [ 'CreateJobRequest$destinationPackageVersions' => '

The package version Amazon Resource Names (ARNs) that are installed on the device when the job successfully completes. The package version must be in either the Published or Deprecated state when the job deploys. For more information, see Package version lifecycle.

Note:The following Length Constraints relates to a single ARN. Up to 25 package version ARNs are allowed.

', 'CreateJobTemplateRequest$destinationPackageVersions' => '

The package version Amazon Resource Names (ARNs) that are installed on the device when the job successfully completes. The package version must be in either the Published or Deprecated state when the job deploys. For more information, see Package version lifecycle.

Note:The following Length Constraints relates to a single ARN. Up to 25 package version ARNs are allowed.

', 'DescribeJobTemplateResponse$destinationPackageVersions' => '

The package version Amazon Resource Names (ARNs) that are installed on the device when the job successfully completes. The package version must be in either the Published or Deprecated state when the job deploys. For more information, see Package version lifecycle.

Note:The following Length Constraints relates to a single ARN. Up to 25 package version ARNs are allowed.

', 'Job$destinationPackageVersions' => '

The package version Amazon Resource Names (ARNs) that are installed on the device when the job successfully completes. The package version must be in either the Published or Deprecated state when the job deploys. For more information, see Package version lifecycle.The package version must be in either the Published or Deprecated state when the job deploys. For more information, see Package version lifecycle.

Note:The following Length Constraints relates to a single ARN. Up to 25 package version ARNs are allowed.

', ], ], 'DetachPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'DetachPrincipalPolicyRequest' => [ 'base' => '

The input for the DetachPrincipalPolicy operation.

', 'refs' => [], ], 'DetachSecurityProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'DetachSecurityProfileResponse' => [ 'base' => NULL, 'refs' => [], ], 'DetachThingPrincipalRequest' => [ 'base' => '

The input for the DetachThingPrincipal operation.

', 'refs' => [], ], 'DetachThingPrincipalResponse' => [ 'base' => '

The output from the DetachThingPrincipal operation.

', 'refs' => [], ], 'DetailsKey' => [ 'base' => NULL, 'refs' => [ 'DetailsMap$key' => NULL, ], ], 'DetailsMap' => [ 'base' => NULL, 'refs' => [ 'CancelJobExecutionRequest$statusDetails' => '

A collection of name/value pairs that describe the status of the job execution. If not specified, the statusDetails are unchanged. You can specify at most 10 name/value pairs.

', 'JobExecutionStatusDetails$detailsMap' => '

The job execution status.

', ], ], 'DetailsValue' => [ 'base' => NULL, 'refs' => [ 'DetailsMap$value' => NULL, ], ], 'DetectMitigationActionExecution' => [ 'base' => '

Describes which mitigation actions should be executed.

', 'refs' => [ 'DetectMitigationActionExecutionList$member' => NULL, ], ], 'DetectMitigationActionExecutionErrorCode' => [ 'base' => NULL, 'refs' => [ 'DetectMitigationActionExecution$errorCode' => '

The error code of a mitigation action.

', ], ], 'DetectMitigationActionExecutionList' => [ 'base' => NULL, 'refs' => [ 'ListDetectMitigationActionsExecutionsResponse$actionsExecutions' => '

List of actions executions.

', ], ], 'DetectMitigationActionExecutionStatus' => [ 'base' => NULL, 'refs' => [ 'DetectMitigationActionExecution$status' => '

The status of a mitigation action.

', ], ], 'DetectMitigationActionsTaskStatistics' => [ 'base' => '

The statistics of a mitigation action task.

', 'refs' => [ 'DetectMitigationActionsTaskSummary$taskStatistics' => '

The statistics of a mitigation action task.

', ], ], 'DetectMitigationActionsTaskStatus' => [ 'base' => NULL, 'refs' => [ 'DetectMitigationActionsTaskSummary$taskStatus' => '

The status of the task.

', ], ], 'DetectMitigationActionsTaskSummary' => [ 'base' => '

The summary of the mitigation action tasks.

', 'refs' => [ 'DescribeDetectMitigationActionsTaskResponse$taskSummary' => '

The description of a task.

', 'DetectMitigationActionsTaskSummaryList$member' => NULL, ], ], 'DetectMitigationActionsTaskSummaryList' => [ 'base' => NULL, 'refs' => [ 'ListDetectMitigationActionsTasksResponse$tasks' => '

The collection of ML Detect mitigation tasks that matched the filter criteria.

', ], ], 'DetectMitigationActionsTaskTarget' => [ 'base' => '

The target of a mitigation action task.

', 'refs' => [ 'DetectMitigationActionsTaskSummary$target' => '

Specifies the ML Detect findings to which the mitigation actions are applied.

', 'StartDetectMitigationActionsTaskRequest$target' => '

Specifies the ML Detect findings to which the mitigation actions are applied.

', ], ], 'DetectMitigationActionsToExecuteList' => [ 'base' => NULL, 'refs' => [ 'StartDetectMitigationActionsTaskRequest$actions' => '

The actions to be performed when a device has unexpected behavior.

', ], ], 'DeviceCertificateUpdateAction' => [ 'base' => NULL, 'refs' => [ 'UpdateDeviceCertificateParams$action' => '

The action that you want to apply to the device certificate. The only supported value is DEACTIVATE.

', ], ], 'DeviceDefenderIndexingMode' => [ 'base' => NULL, 'refs' => [ 'ThingIndexingConfiguration$deviceDefenderIndexingMode' => '

Device Defender indexing mode. Valid values are:

  • VIOLATIONS – Your thing index contains Device Defender violations. To enable Device Defender indexing, deviceDefenderIndexingMode must not be set to OFF.

  • OFF - Device Defender indexing is disabled.

For more information about Device Defender violations, see Device Defender Detect.

', ], ], 'DeviceDefenderThingName' => [ 'base' => NULL, 'refs' => [ 'ActiveViolation$thingName' => '

The name of the thing responsible for the active violation.

', 'DetectMitigationActionExecution$thingName' => '

The name of the thing.

', 'ListActiveViolationsRequest$thingName' => '

The name of the thing whose active violations are listed.

', 'ListDetectMitigationActionsExecutionsRequest$thingName' => '

The name of the thing whose mitigation actions are listed.

', 'ListMetricValuesRequest$thingName' => '

The name of the thing for which security profile metric values are returned.

', 'ListViolationEventsRequest$thingName' => '

A filter to limit results to those alerts caused by the specified thing.

', 'ViolationEvent$thingName' => '

The name of the thing responsible for the violation event.

', ], ], 'DimensionArn' => [ 'base' => NULL, 'refs' => [ 'CreateDimensionResponse$arn' => '

The Amazon Resource Name (ARN) of the created dimension.

', 'DescribeDimensionResponse$arn' => '

The Amazon Resource Name (ARN) for the dimension.

', 'UpdateDimensionResponse$arn' => '

The Amazon Resource Name (ARN)of the created dimension.

', ], ], 'DimensionName' => [ 'base' => NULL, 'refs' => [ 'CreateDimensionRequest$name' => '

A unique identifier for the dimension. Choose something that describes the type and value to make it easy to remember what it does.

', 'CreateDimensionResponse$name' => '

A unique identifier for the dimension.

', 'DeleteDimensionRequest$name' => '

The unique identifier for the dimension that you want to delete.

', 'DescribeDimensionRequest$name' => '

The unique identifier for the dimension.

', 'DescribeDimensionResponse$name' => '

The unique identifier for the dimension.

', 'DimensionNames$member' => NULL, 'ListMetricValuesRequest$dimensionName' => '

The dimension name.

', 'ListSecurityProfilesRequest$dimensionName' => '

A filter to limit results to the security profiles that use the defined dimension. Cannot be used with metricName

', 'MetricDimension$dimensionName' => '

A unique identifier for the dimension.

', 'UpdateDimensionRequest$name' => '

A unique identifier for the dimension. Choose something that describes the type and value to make it easy to remember what it does.

', 'UpdateDimensionResponse$name' => '

A unique identifier for the dimension.

', ], ], 'DimensionNames' => [ 'base' => NULL, 'refs' => [ 'ListDimensionsResponse$dimensionNames' => '

A list of the names of the defined dimensions. Use DescribeDimension to get details for a dimension.

', ], ], 'DimensionStringValue' => [ 'base' => NULL, 'refs' => [ 'DimensionStringValues$member' => NULL, ], ], 'DimensionStringValues' => [ 'base' => NULL, 'refs' => [ 'CreateDimensionRequest$stringValues' => '

Specifies the value or list of values for the dimension. For TOPIC_FILTER dimensions, this is a pattern used to match the MQTT topic (for example, "admin/#").

', 'DescribeDimensionResponse$stringValues' => '

The value or list of values used to scope the dimension. For example, for topic filters, this is the pattern used to match the MQTT topic name.

', 'UpdateDimensionRequest$stringValues' => '

Specifies the value or list of values for the dimension. For TOPIC_FILTER dimensions, this is a pattern used to match the MQTT topic (for example, "admin/#").

', 'UpdateDimensionResponse$stringValues' => '

The value or list of values used to scope the dimension. For example, for topic filters, this is the pattern used to match the MQTT topic name.

', ], ], 'DimensionType' => [ 'base' => NULL, 'refs' => [ 'CreateDimensionRequest$type' => '

Specifies the type of dimension. Supported types: TOPIC_FILTER.

', 'DescribeDimensionResponse$type' => '

The type of the dimension.

', 'UpdateDimensionResponse$type' => '

The type of the dimension.

', ], ], 'DimensionValueOperator' => [ 'base' => NULL, 'refs' => [ 'ListMetricValuesRequest$dimensionValueOperator' => '

The dimension value operator.

', 'MetricDimension$operator' => '

Defines how the dimensionValues of a dimension are interpreted. For example, for dimension type TOPIC_FILTER, the IN operator, a message will be counted only if its topic matches one of the topic filters. With NOT_IN operator, a message will be counted only if it doesn\'t match any of the topic filters. The operator is optional: if it\'s not provided (is null), it will be interpreted as IN.

', ], ], 'DisableAllLogs' => [ 'base' => NULL, 'refs' => [ 'GetV2LoggingOptionsResponse$disableAllLogs' => '

Disables all logs.

', 'SetV2LoggingOptionsRequest$disableAllLogs' => '

If true all logs are disabled. The default is false.

', ], ], 'DisableTopicRuleRequest' => [ 'base' => '

The input for the DisableTopicRuleRequest operation.

', 'refs' => [], ], 'DisconnectReason' => [ 'base' => NULL, 'refs' => [ 'ThingConnectivity$disconnectReason' => '

The reason why the client is disconnected. If the thing has been disconnected for approximately an hour, the disconnectReason value might be missing.

', ], ], 'DocumentParameter' => [ 'base' => '

A map of key-value pairs containing the patterns that need to be replaced in a managed template job document schema. You can use the description of each key as a guidance to specify the inputs during runtime when creating a job.

documentParameters can only be used when creating jobs from Amazon Web Services managed templates. This parameter can\'t be used with custom job templates or to create jobs from them.

', 'refs' => [ 'DocumentParameters$member' => NULL, ], ], 'DocumentParameters' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedJobTemplateResponse$documentParameters' => '

A map of key-value pairs that you can use as guidance to specify the inputs for creating a job from a managed template.

documentParameters can only be used when creating jobs from Amazon Web Services managed templates. This parameter can\'t be used with custom job templates or to create jobs from them.

', ], ], 'DomainConfigurationArn' => [ 'base' => NULL, 'refs' => [ 'CreateDomainConfigurationResponse$domainConfigurationArn' => '

The ARN of the domain configuration.

', 'DescribeDomainConfigurationResponse$domainConfigurationArn' => '

The ARN of the domain configuration.

', 'DomainConfigurationSummary$domainConfigurationArn' => '

The ARN of the domain configuration.

', 'UpdateDomainConfigurationResponse$domainConfigurationArn' => '

The ARN of the domain configuration that was updated.

', ], ], 'DomainConfigurationName' => [ 'base' => NULL, 'refs' => [ 'CreateDomainConfigurationRequest$domainConfigurationName' => '

The name of the domain configuration. This value must be unique to a region.

', 'CreateDomainConfigurationResponse$domainConfigurationName' => '

The name of the domain configuration.

', 'DeleteDomainConfigurationRequest$domainConfigurationName' => '

The name of the domain configuration to be deleted.

', ], ], 'DomainConfigurationStatus' => [ 'base' => NULL, 'refs' => [ 'DescribeDomainConfigurationResponse$domainConfigurationStatus' => '

A Boolean value that specifies the current state of the domain configuration.

', 'UpdateDomainConfigurationRequest$domainConfigurationStatus' => '

The status to which the domain configuration should be updated.

', ], ], 'DomainConfigurationSummary' => [ 'base' => '

The summary of a domain configuration. A domain configuration specifies custom IoT-specific information about a domain. A domain configuration can be associated with an Amazon Web Services-managed domain (for example, dbc123defghijk.iot.us-west-2.amazonaws.com), a customer managed domain, or a default endpoint.

  • Data

  • Jobs

  • CredentialProvider

', 'refs' => [ 'DomainConfigurations$member' => NULL, ], ], 'DomainConfigurations' => [ 'base' => NULL, 'refs' => [ 'ListDomainConfigurationsResponse$domainConfigurations' => '

A list of objects that contain summary information about the user\'s domain configurations.

', ], ], 'DomainName' => [ 'base' => NULL, 'refs' => [ 'CreateDomainConfigurationRequest$domainName' => '

The name of the domain.

', 'DescribeDomainConfigurationResponse$domainName' => '

The name of the domain.

', ], ], 'DomainType' => [ 'base' => NULL, 'refs' => [ 'DescribeDomainConfigurationResponse$domainType' => '

The type of the domain.

', ], ], 'DurationInMinutes' => [ 'base' => NULL, 'refs' => [ 'MaintenanceWindow$durationInMinutes' => '

Displays the duration of the next maintenance window.

', ], ], 'DurationSeconds' => [ 'base' => NULL, 'refs' => [ 'BehaviorCriteria$durationSeconds' => '

Use this to specify the time duration over which the behavior is evaluated, for those criteria that have a time dimension (for example, NUM_MESSAGES_SENT). For a statisticalThreshhold metric comparison, measurements from all devices are accumulated over this time duration before being used to calculate percentiles, and later, measurements from an individual device are also accumulated over this time duration before being given a percentile rank. Cannot be used with list-based metric datatypes.

', ], ], 'DynamicGroupStatus' => [ 'base' => NULL, 'refs' => [ 'DescribeThingGroupResponse$status' => '

The dynamic thing group status.

', ], ], 'DynamoDBAction' => [ 'base' => '

Describes an action to write to a DynamoDB table.

The tableName, hashKeyField, and rangeKeyField values must match the values used when you created the table.

The hashKeyValue and rangeKeyvalue fields use a substitution template syntax. These templates provide data at runtime. The syntax is as follows: ${sql-expression}.

You can specify any valid expression in a WHERE or SELECT clause, including JSON properties, comparisons, calculations, and functions. For example, the following field uses the third level of the topic:

"hashKeyValue": "${topic(3)}"

The following field uses the timestamp:

"rangeKeyValue": "${timestamp()}"

', 'refs' => [ 'Action$dynamoDB' => '

Write to a DynamoDB table.

', ], ], 'DynamoDBv2Action' => [ 'base' => '

Describes an action to write to a DynamoDB table.

This DynamoDB action writes each attribute in the message payload into it\'s own column in the DynamoDB table.

', 'refs' => [ 'Action$dynamoDBv2' => '

Write to a DynamoDB table. This is a new version of the DynamoDB action. It allows you to write each attribute in an MQTT message payload into a separate DynamoDB column.

', ], ], 'DynamoKeyType' => [ 'base' => NULL, 'refs' => [ 'DynamoDBAction$hashKeyType' => '

The hash key type. Valid values are "STRING" or "NUMBER"

', 'DynamoDBAction$rangeKeyType' => '

The range key type. Valid values are "STRING" or "NUMBER"

', ], ], 'DynamoOperation' => [ 'base' => NULL, 'refs' => [ 'DynamoDBAction$operation' => '

The type of operation to be performed. This follows the substitution template, so it can be ${operation}, but the substitution must result in one of the following: INSERT, UPDATE, or DELETE.

', ], ], 'EffectivePolicies' => [ 'base' => NULL, 'refs' => [ 'GetEffectivePoliciesResponse$effectivePolicies' => '

The effective policies.

', ], ], 'EffectivePolicy' => [ 'base' => '

The policy that has the effect on the authorization results.

', 'refs' => [ 'EffectivePolicies$member' => NULL, ], ], 'ElasticsearchAction' => [ 'base' => '

Describes an action that writes data to an Amazon OpenSearch Service domain.

The Elasticsearch action can only be used by existing rule actions. To create a new rule action or to update an existing rule action, use the OpenSearch rule action instead. For more information, see OpenSearchAction.

', 'refs' => [ 'Action$elasticsearch' => '

Write data to an Amazon OpenSearch Service domain.

The Elasticsearch action can only be used by existing rule actions. To create a new rule action or to update an existing rule action, use the OpenSearch rule action instead. For more information, see OpenSearchAction.

', ], ], 'ElasticsearchEndpoint' => [ 'base' => NULL, 'refs' => [ 'ElasticsearchAction$endpoint' => '

The endpoint of your OpenSearch domain.

', 'OpenSearchAction$endpoint' => '

The endpoint of your OpenSearch domain.

', ], ], 'ElasticsearchId' => [ 'base' => NULL, 'refs' => [ 'ElasticsearchAction$id' => '

The unique identifier for the document you are storing.

', 'OpenSearchAction$id' => '

The unique identifier for the document you are storing.

', ], ], 'ElasticsearchIndex' => [ 'base' => NULL, 'refs' => [ 'ElasticsearchAction$index' => '

The index where you want to store your data.

', 'OpenSearchAction$index' => '

The OpenSearch index where you want to store your data.

', ], ], 'ElasticsearchType' => [ 'base' => NULL, 'refs' => [ 'ElasticsearchAction$type' => '

The type of document you are storing.

', 'OpenSearchAction$type' => '

The type of document you are storing.

', ], ], 'EnableCachingForHttp' => [ 'base' => NULL, 'refs' => [ 'AuthorizerDescription$enableCachingForHttp' => '

When true, the result from the authorizer’s Lambda function is cached for the time specified in refreshAfterInSeconds. The cached result is used while the device reuses the same HTTP connection.

', 'CreateAuthorizerRequest$enableCachingForHttp' => '

When true, the result from the authorizer’s Lambda function is cached for clients that use persistent HTTP connections. The results are cached for the time specified by the Lambda function in refreshAfterInSeconds. This value does not affect authorization of clients that use MQTT connections.

The default value is false.

', 'UpdateAuthorizerRequest$enableCachingForHttp' => '

When true, the result from the authorizer’s Lambda function is cached for the time specified in refreshAfterInSeconds. The cached result is used while the device reuses the same HTTP connection.

', ], ], 'EnableIoTLoggingParams' => [ 'base' => '

Parameters used when defining a mitigation action that enable Amazon Web Services IoT Core logging.

', 'refs' => [ 'MitigationActionParams$enableIoTLoggingParams' => '

Parameters to define a mitigation action that enables Amazon Web Services IoT Core logging at a specified level of detail.

', ], ], 'EnableOCSPCheck' => [ 'base' => NULL, 'refs' => [ 'ServerCertificateConfig$enableOCSPCheck' => '

A Boolean value that indicates whether Online Certificate Status Protocol (OCSP) server certificate check is enabled or not.

For more information, see Configuring OCSP server-certificate stapling in domain configuration from Amazon Web Services IoT Core Developer Guide.

', ], ], 'EnableTopicRuleRequest' => [ 'base' => '

The input for the EnableTopicRuleRequest operation.

', 'refs' => [], ], 'Enabled' => [ 'base' => NULL, 'refs' => [ 'AuditCheckConfiguration$enabled' => '

True if this audit check is enabled for this account.

', 'AuditNotificationTarget$enabled' => '

True if notifications to the target are enabled.

', 'Configuration$Enabled' => '

True to enable the configuration.

', 'CreateProvisioningTemplateRequest$enabled' => '

True to enable the provisioning template, otherwise false.

', 'DescribeProvisioningTemplateResponse$enabled' => '

True if the provisioning template is enabled, otherwise false.

', 'ProvisioningTemplateSummary$enabled' => '

True if the fleet provision template is enabled, otherwise false.

', 'UpdateProvisioningTemplateRequest$enabled' => '

True to enable the provisioning template, otherwise false.

', ], ], 'EnabledBoolean' => [ 'base' => NULL, 'refs' => [ 'VersionUpdateByJobsConfig$enabled' => '

Indicates whether the Job is enabled or not.

', ], ], 'EndpointAddress' => [ 'base' => NULL, 'refs' => [ 'DescribeEndpointResponse$endpointAddress' => '

The endpoint. The format of the endpoint is as follows: identifier.iot.region.amazonaws.com.

', ], ], 'EndpointType' => [ 'base' => NULL, 'refs' => [ 'DescribeEndpointRequest$endpointType' => '

The endpoint type. Valid endpoint types include:

  • iot:Data - Returns a VeriSign signed data endpoint.

  • iot:Data-ATS - Returns an ATS signed data endpoint.

  • iot:CredentialProvider - Returns an IoT credentials provider API endpoint.

  • iot:Jobs - Returns an IoT device management Jobs API endpoint.

We strongly recommend that customers use the newer iot:Data-ATS endpoint type to avoid issues related to the widespread distrust of Symantec certificate authorities. ATS Signed Certificates are more secure and are trusted by most popular browsers.

', ], ], 'Environment' => [ 'base' => NULL, 'refs' => [ 'Environments$member' => NULL, ], ], 'Environments' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedJobTemplateResponse$environments' => '

A list of environments that are supported with the managed job template.

', 'ManagedJobTemplateSummary$environments' => '

A list of environments that are supported with the managed job template.

', ], ], 'ErrorCode' => [ 'base' => NULL, 'refs' => [ 'AuditCheckDetails$errorCode' => '

The code of any error encountered when this check is performed during this audit. One of "INSUFFICIENT_PERMISSIONS" or "AUDIT_CHECK_DISABLED".

', 'AuditMitigationActionExecutionMetadata$errorCode' => '

If an error occurred, the code that indicates which type of error occurred.

', ], ], 'ErrorInfo' => [ 'base' => '

Error information.

', 'refs' => [ 'OTAUpdateInfo$errorInfo' => '

Error information associated with the OTA update.

', ], ], 'ErrorMessage' => [ 'base' => NULL, 'refs' => [ 'AuditCheckDetails$message' => '

The message associated with any error encountered when this check is performed during this audit.

', 'AuditMitigationActionExecutionMetadata$message' => '

If an error occurred, a message that describes the error.

', 'DescribeThingRegistrationTaskResponse$message' => '

The message.

', 'DetectMitigationActionExecution$message' => '

The message of a mitigation action.

', 'ValidationError$errorMessage' => '

The description of an error found in the behaviors.

', ], ], 'EvaluationStatistic' => [ 'base' => NULL, 'refs' => [ 'StatisticalThreshold$statistic' => '

The percentile that resolves to a threshold value by which compliance with a behavior is determined. Metrics are collected over the specified period (durationSeconds) from all reporting devices in your account and statistical ranks are calculated. Then, the measurements from a device are collected over the same period. If the accumulated measurements from the device fall above or below (comparisonOperator) the value associated with the percentile specified, then the device is considered to be in compliance with the behavior, otherwise a violation occurs.

', ], ], 'EventConfigurations' => [ 'base' => NULL, 'refs' => [ 'DescribeEventConfigurationsResponse$eventConfigurations' => '

The event configurations.

', 'UpdateEventConfigurationsRequest$eventConfigurations' => '

The new event configuration values.

', ], ], 'EventType' => [ 'base' => NULL, 'refs' => [ 'EventConfigurations$key' => NULL, ], ], 'Example' => [ 'base' => NULL, 'refs' => [ 'DocumentParameter$example' => '

An example illustrating a pattern that need to be replaced in a managed template job document schema.

', ], ], 'ExecutionNamePrefix' => [ 'base' => NULL, 'refs' => [ 'StepFunctionsAction$executionNamePrefix' => '

(Optional) A name will be given to the state machine execution consisting of this prefix followed by a UUID. Step Functions automatically creates a unique name for each state machine execution if one is not provided.

', ], ], 'ExecutionNumber' => [ 'base' => NULL, 'refs' => [ 'DeleteJobExecutionRequest$executionNumber' => '

The ID of the job execution to be deleted. The executionNumber refers to the execution of a particular job on a particular device.

Note that once a job execution is deleted, the executionNumber may be reused by IoT, so be sure you get and use the correct value here.

', 'DescribeJobExecutionRequest$executionNumber' => '

A string (consisting of the digits "0" through "9" which is used to specify a particular job execution on a particular device.

', 'JobExecution$executionNumber' => '

A string (consisting of the digits "0" through "9") which identifies this particular job execution on this particular device. It can be used in commands which return or update job execution information.

', 'JobExecutionSummary$executionNumber' => '

A string (consisting of the digits "0" through "9") which identifies this particular job execution on this particular device. It can be used later in commands which return or update job execution information.

', ], ], 'ExpectedVersion' => [ 'base' => NULL, 'refs' => [ 'CancelJobExecutionRequest$expectedVersion' => '

(Optional) The expected current version of the job execution. Each time you update the job execution, its version is incremented. If the version of the job execution stored in Jobs does not match, the update is rejected with a VersionMismatch error, and an ErrorResponse that contains the current job execution status data is returned. (This makes it unnecessary to perform a separate DescribeJobExecution request in order to obtain the job execution status data.)

', ], ], 'ExpiresInSec' => [ 'base' => NULL, 'refs' => [ 'PresignedUrlConfig$expiresInSec' => '

How long (in seconds) pre-signed URLs are valid. Valid values are 60 - 3600, the default value is 3600 seconds. Pre-signed URLs are generated when Jobs receives an MQTT request for the job document.

', ], ], 'ExpiresInSeconds' => [ 'base' => NULL, 'refs' => [ 'AwsJobPresignedUrlConfig$expiresInSec' => '

How long (in seconds) pre-signed URLs are valid. Valid values are 60 - 3600, the default value is 1800 seconds. Pre-signed URLs are generated when a request for the job document is received.

', ], ], 'ExplicitDeny' => [ 'base' => '

Information that explicitly denies authorization.

', 'refs' => [ 'Denied$explicitDeny' => '

Information that explicitly denies the authorization.

', ], ], 'ExponentialRolloutRate' => [ 'base' => '

Allows you to create an exponential rate of rollout for a job.

', 'refs' => [ 'JobExecutionsRolloutConfig$exponentialRate' => '

The rate of increase for a job rollout. This parameter allows you to define an exponential rate for a job rollout.

', ], ], 'ExportMetric' => [ 'base' => NULL, 'refs' => [ 'Behavior$exportMetric' => '

Value indicates exporting metrics related to the behavior when it is true.

', 'MetricToRetain$exportMetric' => '

The value indicates exporting metrics related to the MetricToRetain when it\'s true.

', ], ], 'FailedChecksCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatistics$failedChecks' => '

The number of checks.

', ], ], 'FailedFindingsCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatisticsForAuditCheck$failedFindingsCount' => '

The number of findings for which at least one of the actions failed when applied.

', ], ], 'FailedThings' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$numberOfFailedThings' => '

The number of things that failed executing the job.

', ], ], 'Field' => [ 'base' => '

Describes the name and data type at a field.

', 'refs' => [ 'Fields$member' => NULL, ], ], 'FieldName' => [ 'base' => NULL, 'refs' => [ 'Field$name' => '

The name of the field.

', ], ], 'FieldType' => [ 'base' => NULL, 'refs' => [ 'Field$type' => '

The data type of the field.

', ], ], 'Fields' => [ 'base' => NULL, 'refs' => [ 'ThingGroupIndexingConfiguration$managedFields' => '

Contains fields that are indexed and whose types are already known by the Fleet Indexing service. This is an optional field. For more information, see Managed fields in the Amazon Web Services IoT Core Developer Guide.

You can\'t modify managed fields by updating fleet indexing configuration.

', 'ThingGroupIndexingConfiguration$customFields' => '

A list of thing group fields to index. This list cannot contain any managed fields. Use the GetIndexingConfiguration API to get a list of managed fields.

Contains custom field names and their data type.

', 'ThingIndexingConfiguration$managedFields' => '

Contains fields that are indexed and whose types are already known by the Fleet Indexing service. This is an optional field. For more information, see Managed fields in the Amazon Web Services IoT Core Developer Guide.

You can\'t modify managed fields by updating fleet indexing configuration.

', 'ThingIndexingConfiguration$customFields' => '

Contains custom field names and their data type.

', ], ], 'FileId' => [ 'base' => NULL, 'refs' => [ 'Stream$fileId' => '

The ID of a file associated with a stream.

', 'StreamFile$fileId' => '

The file ID.

', ], ], 'FileLocation' => [ 'base' => '

The location of the OTA update.

', 'refs' => [ 'OTAUpdateFile$fileLocation' => '

The location of the updated firmware.

', ], ], 'FileName' => [ 'base' => NULL, 'refs' => [ 'OTAUpdateFile$fileName' => '

The name of the file.

', ], ], 'FileType' => [ 'base' => NULL, 'refs' => [ 'OTAUpdateFile$fileType' => '

An integer value you can include in the job document to allow your devices to identify the type of file received from the cloud.

', ], ], 'FindingId' => [ 'base' => NULL, 'refs' => [ 'AuditFinding$findingId' => '

A unique identifier for this set of audit findings. This identifier is used to apply mitigation tasks to one or more sets of findings.

', 'AuditMitigationActionExecutionMetadata$findingId' => '

The unique identifier for the findings to which the task and associated mitigation action are applied.

', 'DescribeAuditFindingRequest$findingId' => '

A unique identifier for a single audit finding. You can use this identifier to apply mitigation actions to the finding.

', 'FindingIds$member' => NULL, 'ListAuditMitigationActionsExecutionsRequest$findingId' => '

Specify this filter to limit results to those that were applied to a specific audit finding.

', 'ListAuditMitigationActionsTasksRequest$findingId' => '

Specify this filter to limit results to tasks that were applied to a specific audit finding.

', 'ListRelatedResourcesForAuditFindingRequest$findingId' => '

The finding Id.

', ], ], 'FindingIds' => [ 'base' => NULL, 'refs' => [ 'AuditMitigationActionsTaskTarget$findingIds' => '

If the task will apply a mitigation action to one or more listed findings, this value uniquely identifies those findings.

', ], ], 'FirehoseAction' => [ 'base' => '

Describes an action that writes data to an Amazon Kinesis Firehose stream.

', 'refs' => [ 'Action$firehose' => '

Write to an Amazon Kinesis Firehose stream.

', ], ], 'FirehoseSeparator' => [ 'base' => NULL, 'refs' => [ 'FirehoseAction$separator' => '

A character separator that will be used to separate records written to the Firehose stream. Valid values are: \'\\n\' (newline), \'\\t\' (tab), \'\\r\\n\' (Windows newline), \',\' (comma).

', ], ], 'Flag' => [ 'base' => NULL, 'refs' => [ 'AttributePayload$merge' => '

Specifies whether the list of attributes provided in the AttributePayload is merged with the attributes stored in the registry, instead of overwriting them.

To remove an attribute, call UpdateThing with an empty attribute value.

The merge attribute is only valid when calling UpdateThing or UpdateThingGroup.

', ], ], 'FleetMetricArn' => [ 'base' => NULL, 'refs' => [ 'CreateFleetMetricResponse$metricArn' => '

The Amazon Resource Name (ARN) of the new fleet metric.

', 'DescribeFleetMetricResponse$metricArn' => '

The ARN of the fleet metric to describe.

', 'FleetMetricNameAndArn$metricArn' => '

The fleet metric ARN.

', ], ], 'FleetMetricDescription' => [ 'base' => NULL, 'refs' => [ 'CreateFleetMetricRequest$description' => '

The fleet metric description.

', 'DescribeFleetMetricResponse$description' => '

The fleet metric description.

', 'UpdateFleetMetricRequest$description' => '

The description of the fleet metric.

', ], ], 'FleetMetricName' => [ 'base' => NULL, 'refs' => [ 'CreateFleetMetricRequest$metricName' => '

The name of the fleet metric to create.

', 'CreateFleetMetricResponse$metricName' => '

The name of the fleet metric to create.

', 'DeleteFleetMetricRequest$metricName' => '

The name of the fleet metric to delete.

', 'DescribeFleetMetricRequest$metricName' => '

The name of the fleet metric to describe.

', 'DescribeFleetMetricResponse$metricName' => '

The name of the fleet metric to describe.

', 'FleetMetricNameAndArn$metricName' => '

The fleet metric name.

', 'UpdateFleetMetricRequest$metricName' => '

The name of the fleet metric to update.

', ], ], 'FleetMetricNameAndArn' => [ 'base' => '

The name and ARN of a fleet metric.

', 'refs' => [ 'FleetMetricNameAndArnList$member' => NULL, ], ], 'FleetMetricNameAndArnList' => [ 'base' => NULL, 'refs' => [ 'ListFleetMetricsResponse$fleetMetrics' => '

The list of fleet metrics objects.

', ], ], 'FleetMetricPeriod' => [ 'base' => NULL, 'refs' => [ 'CreateFleetMetricRequest$period' => '

The time in seconds between fleet metric emissions. Range [60(1 min), 86400(1 day)] and must be multiple of 60.

', 'DescribeFleetMetricResponse$period' => '

The time in seconds between fleet metric emissions. Range [60(1 min), 86400(1 day)] and must be multiple of 60.

', 'UpdateFleetMetricRequest$period' => '

The time in seconds between fleet metric emissions. Range [60(1 min), 86400(1 day)] and must be multiple of 60.

', ], ], 'FleetMetricUnit' => [ 'base' => NULL, 'refs' => [ 'CreateFleetMetricRequest$unit' => '

Used to support unit transformation such as milliseconds to seconds. The unit must be supported by CW metric. Default to null.

', 'DescribeFleetMetricResponse$unit' => '

Used to support unit transformation such as milliseconds to seconds. The unit must be supported by CW metric.

', 'UpdateFleetMetricRequest$unit' => '

Used to support unit transformation such as milliseconds to seconds. The unit must be supported by CW metric.

', ], ], 'ForceDelete' => [ 'base' => NULL, 'refs' => [ 'DeleteCertificateRequest$forceDelete' => '

Forces the deletion of a certificate if it is inactive and is not attached to an IoT thing.

', ], ], 'ForceDeleteAWSJob' => [ 'base' => NULL, 'refs' => [ 'DeleteOTAUpdateRequest$forceDeleteAWSJob' => '

When true, deletes the IoT job created by the OTAUpdate process even if it is "IN_PROGRESS". Otherwise, if the job is not in a terminal state ("COMPLETED" or "CANCELED") an exception will occur. The default is false.

', ], ], 'ForceFlag' => [ 'base' => NULL, 'refs' => [ 'CancelJobExecutionRequest$force' => '

(Optional) If true the job execution will be canceled if it has status IN_PROGRESS or QUEUED, otherwise the job execution will be canceled only if it has status QUEUED. If you attempt to cancel a job execution that is IN_PROGRESS, and you do not set force to true, then an InvalidStateTransitionException will be thrown. The default is false.

Canceling a job execution which is "IN_PROGRESS", will cause the device to be unable to update the job execution status. Use caution and ensure that the device is able to recover to a valid state.

', 'CancelJobRequest$force' => '

(Optional) If true job executions with status "IN_PROGRESS" and "QUEUED" are canceled, otherwise only job executions with status "QUEUED" are canceled. The default is false.

Canceling a job which is "IN_PROGRESS", will cause a device which is executing the job to be unable to update the job execution status. Use caution and ensure that each device executing a job which is canceled is able to recover to a valid state.

', 'DeleteJobExecutionRequest$force' => '

(Optional) When true, you can delete a job execution which is "IN_PROGRESS". Otherwise, you can only delete a job execution which is in a terminal state ("SUCCEEDED", "FAILED", "REJECTED", "REMOVED" or "CANCELED") or an exception will occur. The default is false.

Deleting a job execution which is "IN_PROGRESS", will cause the device to be unable to access job information or update the job execution status. Use caution and ensure that the device is able to recover to a valid state.

', 'DeleteJobRequest$force' => '

(Optional) When true, you can delete a job which is "IN_PROGRESS". Otherwise, you can only delete a job which is in a terminal state ("COMPLETED" or "CANCELED") or an exception will occur. The default is false.

Deleting a job which is "IN_PROGRESS", will cause a device which is executing the job to be unable to access job information or update the job execution status. Use caution and ensure that each device executing a job which is deleted is able to recover to a valid state.

', ], ], 'Forced' => [ 'base' => NULL, 'refs' => [ 'Job$forceCanceled' => '

Will be true if the job was canceled with the optional force parameter set to true.

', 'JobExecution$forceCanceled' => '

Will be true if the job execution was canceled with the optional force parameter set to true.

', ], ], 'FunctionArn' => [ 'base' => NULL, 'refs' => [ 'LambdaAction$functionArn' => '

The ARN of the Lambda function.

', ], ], 'GenerationId' => [ 'base' => NULL, 'refs' => [ 'CACertificateDescription$generationId' => '

The generation ID of the CA certificate.

', 'CertificateDescription$generationId' => '

The generation ID of the certificate.

', 'GetPolicyResponse$generationId' => '

The generation ID of the policy.

', 'GetPolicyVersionResponse$generationId' => '

The generation ID of the policy version.

', ], ], 'GenericLongValue' => [ 'base' => NULL, 'refs' => [ 'DetectMitigationActionsTaskStatistics$actionsExecuted' => '

The actions that were performed.

', 'DetectMitigationActionsTaskStatistics$actionsSkipped' => '

The actions that were skipped.

', 'DetectMitigationActionsTaskStatistics$actionsFailed' => '

The actions that failed.

', ], ], 'GeoLocationTarget' => [ 'base' => '

A geolocation target that you select to index. Each geolocation target contains a name and order key-value pair that specifies the geolocation target fields.

', 'refs' => [ 'GeoLocationsFilter$member' => NULL, ], ], 'GeoLocationsFilter' => [ 'base' => NULL, 'refs' => [ 'IndexingFilter$geoLocations' => '

The list of geolocation targets that you select to index. The default maximum number of geolocation targets for indexing is 1. To increase the limit, see Amazon Web Services IoT Device Management Quotas in the Amazon Web Services General Reference.

', ], ], 'GetBehaviorModelTrainingSummariesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetBehaviorModelTrainingSummariesResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetBucketsAggregationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetBucketsAggregationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetCardinalityRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetCardinalityResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetEffectivePoliciesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetEffectivePoliciesResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetIndexingConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIndexingConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetJobDocumentRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetJobDocumentResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetLoggingOptionsRequest' => [ 'base' => '

The input for the GetLoggingOptions operation.

', 'refs' => [], ], 'GetLoggingOptionsResponse' => [ 'base' => '

The output from the GetLoggingOptions operation.

', 'refs' => [], ], 'GetOTAUpdateRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetOTAUpdateResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetPackageConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetPackageConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetPackageRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetPackageResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetPackageVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetPackageVersionResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetPercentilesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetPercentilesResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetPolicyRequest' => [ 'base' => '

The input for the GetPolicy operation.

', 'refs' => [], ], 'GetPolicyResponse' => [ 'base' => '

The output from the GetPolicy operation.

', 'refs' => [], ], 'GetPolicyVersionRequest' => [ 'base' => '

The input for the GetPolicyVersion operation.

', 'refs' => [], ], 'GetPolicyVersionResponse' => [ 'base' => '

The output from the GetPolicyVersion operation.

', 'refs' => [], ], 'GetRegistrationCodeRequest' => [ 'base' => '

The input to the GetRegistrationCode operation.

', 'refs' => [], ], 'GetRegistrationCodeResponse' => [ 'base' => '

The output from the GetRegistrationCode operation.

', 'refs' => [], ], 'GetStatisticsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetStatisticsResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetTopicRuleDestinationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTopicRuleDestinationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetTopicRuleRequest' => [ 'base' => '

The input for the GetTopicRule operation.

', 'refs' => [], ], 'GetTopicRuleResponse' => [ 'base' => '

The output from the GetTopicRule operation.

', 'refs' => [], ], 'GetV2LoggingOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetV2LoggingOptionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'GroupNameAndArn' => [ 'base' => '

The name and ARN of a group.

', 'refs' => [ 'BillingGroupNameAndArnList$member' => NULL, 'ThingGroupNameAndArnList$member' => NULL, ], ], 'HashAlgorithm' => [ 'base' => NULL, 'refs' => [ 'CustomCodeSigning$hashAlgorithm' => '

The hash algorithm used to code sign the file. You can use a string as the algorithm name if the target over-the-air (OTA) update devices are able to verify the signature that was generated using the same signature algorithm. For example, FreeRTOS uses SHA256 or SHA1, so you can pass either of them based on which was used for generating the signature.

', ], ], 'HashKeyField' => [ 'base' => NULL, 'refs' => [ 'DynamoDBAction$hashKeyField' => '

The hash key name.

', ], ], 'HashKeyValue' => [ 'base' => NULL, 'refs' => [ 'DynamoDBAction$hashKeyValue' => '

The hash key value.

', ], ], 'HeaderKey' => [ 'base' => NULL, 'refs' => [ 'HttpActionHeader$key' => '

The HTTP header key.

', ], ], 'HeaderList' => [ 'base' => NULL, 'refs' => [ 'HttpAction$headers' => '

The HTTP headers to send with the message data.

', ], ], 'HeaderValue' => [ 'base' => NULL, 'refs' => [ 'HttpActionHeader$value' => '

The HTTP header value. Substitution templates are supported.

', ], ], 'HttpAction' => [ 'base' => '

Send data to an HTTPS endpoint.

', 'refs' => [ 'Action$http' => '

Send data to an HTTPS endpoint.

', ], ], 'HttpActionHeader' => [ 'base' => '

The HTTP action header.

', 'refs' => [ 'HeaderList$member' => NULL, ], ], 'HttpAuthorization' => [ 'base' => '

The authorization method used to send messages.

', 'refs' => [ 'HttpAction$auth' => '

The authentication method to use when sending data to an HTTPS endpoint.

', ], ], 'HttpContext' => [ 'base' => '

Specifies the HTTP context to use for the test authorizer request.

', 'refs' => [ 'TestInvokeAuthorizerRequest$httpContext' => '

Specifies a test HTTP authorization request.

', ], ], 'HttpHeaderName' => [ 'base' => NULL, 'refs' => [ 'HttpHeaders$key' => NULL, ], ], 'HttpHeaderValue' => [ 'base' => NULL, 'refs' => [ 'HttpHeaders$value' => NULL, ], ], 'HttpHeaders' => [ 'base' => NULL, 'refs' => [ 'HttpContext$headers' => '

The header keys and values in an HTTP authorization request.

', ], ], 'HttpQueryString' => [ 'base' => NULL, 'refs' => [ 'HttpContext$queryString' => '

The query string keys and values in an HTTP authorization request.

', ], ], 'HttpUrlDestinationConfiguration' => [ 'base' => '

HTTP URL destination configuration used by the topic rule\'s HTTP action.

', 'refs' => [ 'TopicRuleDestinationConfiguration$httpUrlConfiguration' => '

Configuration of the HTTP URL.

', ], ], 'HttpUrlDestinationProperties' => [ 'base' => '

HTTP URL destination properties.

', 'refs' => [ 'TopicRuleDestination$httpUrlProperties' => '

Properties of the HTTP URL.

', ], ], 'HttpUrlDestinationSummary' => [ 'base' => '

Information about an HTTP URL destination.

', 'refs' => [ 'TopicRuleDestinationSummary$httpUrlSummary' => '

Information about the HTTP URL.

', ], ], 'ImplicitDeny' => [ 'base' => '

Information that implicitly denies authorization. When policy doesn\'t explicitly deny or allow an action on a resource it is considered an implicit deny.

', 'refs' => [ 'Denied$implicitDeny' => '

Information that implicitly denies the authorization. When a policy doesn\'t explicitly deny or allow an action on a resource it is considered an implicit deny.

', ], ], 'InProgressChecksCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatistics$inProgressChecks' => '

The number of checks in progress.

', ], ], 'InProgressThings' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$numberOfInProgressThings' => '

The number of things currently executing the job.

', ], ], 'InProgressTimeoutInMinutes' => [ 'base' => NULL, 'refs' => [ 'TimeoutConfig$inProgressTimeoutInMinutes' => '

Specifies the amount of time, in minutes, this device has to finish execution of this job. The timeout interval can be anywhere between 1 minute and 7 days (1 to 10080 minutes). The in progress timer can\'t be updated and will apply to all job executions for the job. Whenever a job execution remains in the IN_PROGRESS status for longer than this interval, the job execution will fail and switch to the terminal TIMED_OUT status.

', ], ], 'IncrementFactor' => [ 'base' => NULL, 'refs' => [ 'ExponentialRolloutRate$incrementFactor' => '

The exponential factor to increase the rate of rollout for a job.

Amazon Web Services IoT Core supports up to one digit after the decimal (for example, 1.5, but not 1.55).

', ], ], 'IndexName' => [ 'base' => NULL, 'refs' => [ 'CreateDynamicThingGroupRequest$indexName' => '

The dynamic thing group index name.

Currently one index is supported: AWS_Things.

', 'CreateDynamicThingGroupResponse$indexName' => '

The dynamic thing group index name.

', 'CreateFleetMetricRequest$indexName' => '

The name of the index to search.

', 'DescribeFleetMetricResponse$indexName' => '

The name of the index to search.

', 'DescribeIndexRequest$indexName' => '

The index name.

', 'DescribeIndexResponse$indexName' => '

The index name.

', 'DescribeThingGroupResponse$indexName' => '

The dynamic thing group index name.

', 'GetBucketsAggregationRequest$indexName' => '

The name of the index to search.

', 'GetCardinalityRequest$indexName' => '

The name of the index to search.

', 'GetPercentilesRequest$indexName' => '

The name of the index to search.

', 'GetStatisticsRequest$indexName' => '

The name of the index to search. The default value is AWS_Things.

', 'IndexNamesList$member' => NULL, 'SearchIndexRequest$indexName' => '

The search index name.

', 'UpdateDynamicThingGroupRequest$indexName' => '

The dynamic thing group index to update.

Currently one index is supported: AWS_Things.

', 'UpdateFleetMetricRequest$indexName' => '

The name of the index to search.

', ], ], 'IndexNamesList' => [ 'base' => NULL, 'refs' => [ 'ListIndicesResponse$indexNames' => '

The index names.

', ], ], 'IndexNotReadyException' => [ 'base' => '

The index is not ready.

', 'refs' => [], ], 'IndexSchema' => [ 'base' => NULL, 'refs' => [ 'DescribeIndexResponse$schema' => '

Contains a value that specifies the type of indexing performed. Valid values are:

  • REGISTRY – Your thing index contains only registry data.

  • REGISTRY_AND_SHADOW - Your thing index contains registry data and shadow data.

  • REGISTRY_AND_CONNECTIVITY_STATUS - Your thing index contains registry data and thing connectivity status data.

  • REGISTRY_AND_SHADOW_AND_CONNECTIVITY_STATUS - Your thing index contains registry data, shadow data, and thing connectivity status data.

  • MULTI_INDEXING_MODE - Your thing index contains multiple data sources. For more information, see GetIndexingConfiguration.

', ], ], 'IndexStatus' => [ 'base' => NULL, 'refs' => [ 'DescribeIndexResponse$indexStatus' => '

The index status.

', ], ], 'IndexingFilter' => [ 'base' => '

Provides additional selections for named shadows and geolocation data.

To add named shadows to your fleet indexing configuration, set namedShadowIndexingMode to be ON and specify your shadow names in namedShadowNames filter.

To add geolocation data to your fleet indexing configuration:

  • If you store geolocation data in a class/unnamed shadow, set thingIndexingMode to be REGISTRY_AND_SHADOW and specify your geolocation data in geoLocations filter.

  • If you store geolocation data in a named shadow, set namedShadowIndexingMode to be ON, add the shadow name in namedShadowNames filter, and specify your geolocation data in geoLocations filter. For more information, see Managing fleet indexing.

', 'refs' => [ 'ThingIndexingConfiguration$filter' => '

Provides additional selections for named shadows and geolocation data.

To add named shadows to your fleet indexing configuration, set namedShadowIndexingMode to be ON and specify your shadow names in namedShadowNames filter.

To add geolocation data to your fleet indexing configuration:

  • If you store geolocation data in a class/unnamed shadow, set thingIndexingMode to be REGISTRY_AND_SHADOW and specify your geolocation data in geoLocations filter.

  • If you store geolocation data in a named shadow, set namedShadowIndexingMode to be ON, add the shadow name in namedShadowNames filter, and specify your geolocation data in geoLocations filter. For more information, see Managing fleet indexing.

', ], ], 'InlineDocument' => [ 'base' => NULL, 'refs' => [ 'CodeSigningCertificateChain$inlineDocument' => '

A base64 encoded binary representation of the code signing certificate chain.

', ], ], 'InputName' => [ 'base' => NULL, 'refs' => [ 'IotEventsAction$inputName' => '

The name of the IoT Events input.

', ], ], 'InternalException' => [ 'base' => '

An unexpected error has occurred.

', 'refs' => [], ], 'InternalFailureException' => [ 'base' => '

An unexpected error has occurred.

', 'refs' => [], ], 'InternalServerException' => [ 'base' => '

Internal error from the service that indicates an unexpected error or that the service is unavailable.

', 'refs' => [], ], 'InvalidAggregationException' => [ 'base' => '

The aggregation is invalid.

', 'refs' => [], ], 'InvalidQueryException' => [ 'base' => '

The query is invalid.

', 'refs' => [], ], 'InvalidRequestException' => [ 'base' => '

The request is not valid.

', 'refs' => [], ], 'InvalidResponseException' => [ 'base' => '

The response is invalid.

', 'refs' => [], ], 'InvalidStateTransitionException' => [ 'base' => '

An attempt was made to change to an invalid state, for example by deleting a job or a job execution which is "IN_PROGRESS" without setting the force parameter.

', 'refs' => [], ], 'IotAnalyticsAction' => [ 'base' => '

Sends message data to an IoT Analytics channel.

', 'refs' => [ 'Action$iotAnalytics' => '

Sends message data to an IoT Analytics channel.

', ], ], 'IotEventsAction' => [ 'base' => '

Sends an input to an IoT Events detector.

', 'refs' => [ 'Action$iotEvents' => '

Sends an input to an IoT Events detector.

', ], ], 'IotSiteWiseAction' => [ 'base' => '

Describes an action to send data from an MQTT message that triggered the rule to IoT SiteWise asset properties.

', 'refs' => [ 'Action$iotSiteWise' => '

Sends data from the MQTT message that triggered the rule to IoT SiteWise asset properties.

', ], ], 'IsAuthenticated' => [ 'base' => NULL, 'refs' => [ 'TestInvokeAuthorizerResponse$isAuthenticated' => '

True if the token is authenticated, otherwise false.

', ], ], 'IsDefaultVersion' => [ 'base' => NULL, 'refs' => [ 'CreatePolicyVersionResponse$isDefaultVersion' => '

Specifies whether the policy version is the default.

', 'CreateProvisioningTemplateVersionResponse$isDefaultVersion' => '

True if the provisioning template version is the default version, otherwise false.

', 'DescribeProvisioningTemplateVersionResponse$isDefaultVersion' => '

True if the provisioning template version is the default version.

', 'GetPolicyVersionResponse$isDefaultVersion' => '

Specifies whether the policy version is the default.

', 'PolicyVersion$isDefaultVersion' => '

Specifies whether the policy version is the default.

', 'ProvisioningTemplateVersionSummary$isDefaultVersion' => '

True if the provisioning template version is the default version, otherwise false.

', ], ], 'IsDisabled' => [ 'base' => NULL, 'refs' => [ 'ListTopicRulesRequest$ruleDisabled' => '

Specifies whether the rule is disabled.

', 'TopicRule$ruleDisabled' => '

Specifies whether the rule is disabled.

', 'TopicRuleListItem$ruleDisabled' => '

Specifies whether the rule is disabled.

', 'TopicRulePayload$ruleDisabled' => '

Specifies whether the rule is disabled.

', ], ], 'IsSuppressed' => [ 'base' => NULL, 'refs' => [ 'AuditFinding$isSuppressed' => '

Indicates whether the audit finding was suppressed or not during reporting.

', ], ], 'IssuerCertificateIdentifier' => [ 'base' => '

The certificate issuer indentifier.

', 'refs' => [ 'ResourceIdentifier$issuerCertificateIdentifier' => '

The issuer certificate identifier.

', ], ], 'IssuerCertificateSerialNumber' => [ 'base' => NULL, 'refs' => [ 'IssuerCertificateIdentifier$issuerCertificateSerialNumber' => '

The issuer certificate serial number.

', ], ], 'IssuerCertificateSubject' => [ 'base' => NULL, 'refs' => [ 'IssuerCertificateIdentifier$issuerCertificateSubject' => '

The subject of the issuer certificate.

', ], ], 'IssuerId' => [ 'base' => NULL, 'refs' => [ 'IssuerCertificateIdentifier$issuerId' => '

The issuer ID.

', ], ], 'Job' => [ 'base' => '

The Job object contains details about a job.

', 'refs' => [ 'DescribeJobResponse$job' => '

Information about the job.

', ], ], 'JobArn' => [ 'base' => NULL, 'refs' => [ 'AssociateTargetsWithJobResponse$jobArn' => '

An ARN identifying the job.

', 'CancelJobResponse$jobArn' => '

The job ARN.

', 'CreateJobResponse$jobArn' => '

The job ARN.

', 'CreateJobTemplateRequest$jobArn' => '

The ARN of the job to use as the basis for the job template.

', 'Job$jobArn' => '

An ARN identifying the job with format "arn:aws:iot:region:account:job/jobId".

', 'JobSummary$jobArn' => '

The job ARN.

', ], ], 'JobDescription' => [ 'base' => NULL, 'refs' => [ 'AssociateTargetsWithJobResponse$description' => '

A short text description of the job.

', 'CancelJobResponse$description' => '

A short text description of the job.

', 'CreateJobRequest$description' => '

A short text description of the job.

', 'CreateJobResponse$description' => '

The job description.

', 'CreateJobTemplateRequest$description' => '

A description of the job document.

', 'DescribeJobTemplateResponse$description' => '

A description of the job template.

', 'DescribeManagedJobTemplateResponse$description' => '

The unique description of a managed template.

', 'DocumentParameter$description' => '

Description of the map field containing the patterns that need to be replaced in a managed template job document schema.

', 'Job$description' => '

A short text description of the job.

', 'JobTemplateSummary$description' => '

A description of the job template.

', 'ManagedJobTemplateSummary$description' => '

The description for a managed template.

', 'UpdateJobRequest$description' => '

A short text description of the job.

', ], ], 'JobDocument' => [ 'base' => NULL, 'refs' => [ 'CreateJobRequest$document' => '

The job document. Required if you don\'t specify a value for documentSource.

', 'CreateJobTemplateRequest$document' => '

The job document. Required if you don\'t specify a value for documentSource.

', 'DescribeJobTemplateResponse$document' => '

The job document.

', 'DescribeManagedJobTemplateResponse$document' => '

The document schema for a managed job template.

', 'GetJobDocumentResponse$document' => '

The job document content.

', ], ], 'JobDocumentSource' => [ 'base' => NULL, 'refs' => [ 'CreateJobRequest$documentSource' => '

An S3 link, or S3 object URL, to the job document. The link is an Amazon S3 object URL and is required if you don\'t specify a value for document.

For example, --document-source https://s3.region-code.amazonaws.com/example-firmware/device-firmware.1.0

For more information, see Methods for accessing a bucket.

', 'CreateJobTemplateRequest$documentSource' => '

An S3 link, or S3 object URL, to the job document. The link is an Amazon S3 object URL and is required if you don\'t specify a value for document.

For example, --document-source https://s3.region-code.amazonaws.com/example-firmware/device-firmware.1.0

For more information, see Methods for accessing a bucket.

', 'DescribeJobResponse$documentSource' => '

An S3 link to the job document.

', 'DescribeJobTemplateResponse$documentSource' => '

An S3 link to the job document.

', ], ], 'JobEndBehavior' => [ 'base' => NULL, 'refs' => [ 'SchedulingConfig$endBehavior' => '

Specifies the end behavior for all job executions after a job reaches the selected endTime. If endTime is not selected when creating the job, then endBehavior does not apply.

', ], ], 'JobExecution' => [ 'base' => '

The job execution object represents the execution of a job on a particular device.

', 'refs' => [ 'DescribeJobExecutionResponse$execution' => '

Information about the job execution.

', ], ], 'JobExecutionFailureType' => [ 'base' => NULL, 'refs' => [ 'AbortCriteria$failureType' => '

The type of job execution failures that can initiate a job abort.

', ], ], 'JobExecutionStatus' => [ 'base' => NULL, 'refs' => [ 'JobExecution$status' => '

The status of the job execution (IN_PROGRESS, QUEUED, FAILED, SUCCEEDED, TIMED_OUT, CANCELED, or REJECTED).

', 'JobExecutionSummary$status' => '

The status of the job execution.

', 'ListJobExecutionsForJobRequest$status' => '

The status of the job.

', 'ListJobExecutionsForThingRequest$status' => '

An optional filter that lets you search for jobs that have the specified status.

', ], ], 'JobExecutionStatusDetails' => [ 'base' => '

Details of the job execution status.

', 'refs' => [ 'JobExecution$statusDetails' => '

A collection of name/value pairs that describe the status of the job execution.

', ], ], 'JobExecutionSummary' => [ 'base' => '

The job execution summary.

', 'refs' => [ 'JobExecutionSummaryForJob$jobExecutionSummary' => '

Contains a subset of information about a job execution.

', 'JobExecutionSummaryForThing$jobExecutionSummary' => '

Contains a subset of information about a job execution.

', ], ], 'JobExecutionSummaryForJob' => [ 'base' => '

Contains a summary of information about job executions for a specific job.

', 'refs' => [ 'JobExecutionSummaryForJobList$member' => NULL, ], ], 'JobExecutionSummaryForJobList' => [ 'base' => NULL, 'refs' => [ 'ListJobExecutionsForJobResponse$executionSummaries' => '

A list of job execution summaries.

', ], ], 'JobExecutionSummaryForThing' => [ 'base' => '

The job execution summary for a thing.

', 'refs' => [ 'JobExecutionSummaryForThingList$member' => NULL, ], ], 'JobExecutionSummaryForThingList' => [ 'base' => NULL, 'refs' => [ 'ListJobExecutionsForThingResponse$executionSummaries' => '

A list of job execution summaries.

', ], ], 'JobExecutionsRetryConfig' => [ 'base' => '

The configuration that determines how many retries are allowed for each failure type for a job.

', 'refs' => [ 'CreateJobRequest$jobExecutionsRetryConfig' => '

Allows you to create the criteria to retry a job.

', 'CreateJobTemplateRequest$jobExecutionsRetryConfig' => '

Allows you to create the criteria to retry a job.

', 'DescribeJobTemplateResponse$jobExecutionsRetryConfig' => '

The configuration that determines how many retries are allowed for each failure type for a job.

', 'Job$jobExecutionsRetryConfig' => '

The configuration for the criteria to retry the job.

', 'UpdateJobRequest$jobExecutionsRetryConfig' => '

Allows you to create the criteria to retry a job.

', ], ], 'JobExecutionsRolloutConfig' => [ 'base' => '

Allows you to create a staged rollout of a job.

', 'refs' => [ 'CreateJobRequest$jobExecutionsRolloutConfig' => '

Allows you to create a staged rollout of the job.

', 'CreateJobTemplateRequest$jobExecutionsRolloutConfig' => NULL, 'DescribeJobTemplateResponse$jobExecutionsRolloutConfig' => NULL, 'Job$jobExecutionsRolloutConfig' => '

Allows you to create a staged rollout of a job.

', 'UpdateJobRequest$jobExecutionsRolloutConfig' => '

Allows you to create a staged rollout of the job.

', ], ], 'JobId' => [ 'base' => NULL, 'refs' => [ 'AssociateTargetsWithJobRequest$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'AssociateTargetsWithJobResponse$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'CancelJobExecutionRequest$jobId' => '

The ID of the job to be canceled.

', 'CancelJobRequest$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'CancelJobResponse$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'CreateJobRequest$jobId' => '

A job identifier which must be unique for your Amazon Web Services account. We recommend using a UUID. Alpha-numeric characters, "-" and "_" are valid for use here.

', 'CreateJobResponse$jobId' => '

The unique identifier you assigned to this job.

', 'DeleteJobExecutionRequest$jobId' => '

The ID of the job whose execution on a particular device will be deleted.

', 'DeleteJobRequest$jobId' => '

The ID of the job to be deleted.

After a job deletion is completed, you may reuse this jobId when you create a new job. However, this is not recommended, and you must ensure that your devices are not using the jobId to refer to the deleted job.

', 'DescribeJobExecutionRequest$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'DescribeJobRequest$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'GetJobDocumentRequest$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'Job$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'JobExecution$jobId' => '

The unique identifier you assigned to the job when it was created.

', 'JobExecutionSummaryForThing$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'JobSummary$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'ListJobExecutionsForJobRequest$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'ListJobExecutionsForThingRequest$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'UpdateJobRequest$jobId' => '

The ID of the job to be updated.

', ], ], 'JobProcessDetails' => [ 'base' => '

The job process details.

', 'refs' => [ 'Job$jobProcessDetails' => '

Details about the job process.

', ], ], 'JobStatus' => [ 'base' => NULL, 'refs' => [ 'Job$status' => '

The status of the job, one of IN_PROGRESS, CANCELED, DELETION_IN_PROGRESS or COMPLETED.

', 'JobSummary$status' => '

The job summary status.

', 'ListJobsRequest$status' => '

An optional filter that lets you search for jobs that have the specified status.

', ], ], 'JobSummary' => [ 'base' => '

The job summary.

', 'refs' => [ 'JobSummaryList$member' => NULL, ], ], 'JobSummaryList' => [ 'base' => NULL, 'refs' => [ 'ListJobsResponse$jobs' => '

A list of jobs.

', ], ], 'JobTargets' => [ 'base' => NULL, 'refs' => [ 'AssociateTargetsWithJobRequest$targets' => '

A list of thing group ARNs that define the targets of the job.

', 'CreateJobRequest$targets' => '

A list of things and thing groups to which the job should be sent.

', 'Job$targets' => '

A list of IoT things and thing groups to which the job should be sent.

', ], ], 'JobTemplateArn' => [ 'base' => NULL, 'refs' => [ 'CreateJobRequest$jobTemplateArn' => '

The ARN of the job template used to create the job.

', 'CreateJobTemplateResponse$jobTemplateArn' => '

The ARN of the job template.

', 'DescribeJobTemplateResponse$jobTemplateArn' => '

The ARN of the job template.

', 'DescribeManagedJobTemplateResponse$templateArn' => '

The unique Amazon Resource Name (ARN) of the managed template.

', 'Job$jobTemplateArn' => '

The ARN of the job template used to create the job.

', 'JobTemplateSummary$jobTemplateArn' => '

The ARN of the job template.

', 'ManagedJobTemplateSummary$templateArn' => '

The Amazon Resource Name (ARN) for a managed template.

', ], ], 'JobTemplateId' => [ 'base' => NULL, 'refs' => [ 'CreateJobTemplateRequest$jobTemplateId' => '

A unique identifier for the job template. We recommend using a UUID. Alpha-numeric characters, "-", and "_" are valid for use here.

', 'CreateJobTemplateResponse$jobTemplateId' => '

The unique identifier of the job template.

', 'DeleteJobTemplateRequest$jobTemplateId' => '

The unique identifier of the job template to delete.

', 'DescribeJobTemplateRequest$jobTemplateId' => '

The unique identifier of the job template.

', 'DescribeJobTemplateResponse$jobTemplateId' => '

The unique identifier of the job template.

', 'JobTemplateSummary$jobTemplateId' => '

The unique identifier of the job template.

', ], ], 'JobTemplateSummary' => [ 'base' => '

An object that contains information about the job template.

', 'refs' => [ 'JobTemplateSummaryList$member' => NULL, ], ], 'JobTemplateSummaryList' => [ 'base' => NULL, 'refs' => [ 'ListJobTemplatesResponse$jobTemplates' => '

A list of objects that contain information about the job templates.

', ], ], 'JsonDocument' => [ 'base' => NULL, 'refs' => [ 'ThingDocument$shadow' => '

The unnamed shadow and named shadow.

For more information about shadows, see IoT Device Shadow service.

', 'ThingDocument$deviceDefender' => '

Contains Device Defender data.

For more information about Device Defender, see Device Defender.

', ], ], 'KafkaAction' => [ 'base' => '

Send messages to an Amazon Managed Streaming for Apache Kafka (Amazon MSK) or self-managed Apache Kafka cluster.

', 'refs' => [ 'Action$kafka' => '

Send messages to an Amazon Managed Streaming for Apache Kafka (Amazon MSK) or self-managed Apache Kafka cluster.

', ], ], 'KafkaActionHeader' => [ 'base' => '

Specifies a Kafka header using key-value pairs when you create a Rule’s Kafka Action. You can use these headers to route data from IoT clients to downstream Kafka clusters without modifying your message payload.

For more information about Rule\'s Kafka action, see Apache Kafka.

', 'refs' => [ 'KafkaHeaders$member' => NULL, ], ], 'KafkaHeaderKey' => [ 'base' => NULL, 'refs' => [ 'KafkaActionHeader$key' => '

The key of the Kafka header.

', ], ], 'KafkaHeaderValue' => [ 'base' => NULL, 'refs' => [ 'KafkaActionHeader$value' => '

The value of the Kafka header.

', ], ], 'KafkaHeaders' => [ 'base' => NULL, 'refs' => [ 'KafkaAction$headers' => '

The list of Kafka headers that you specify.

', ], ], 'Key' => [ 'base' => NULL, 'refs' => [ 'S3Action$key' => '

The object key. For more information, see Actions, resources, and condition keys for Amazon S3.

', ], ], 'KeyName' => [ 'base' => NULL, 'refs' => [ 'PublicKeyMap$key' => NULL, ], ], 'KeyPair' => [ 'base' => '

Describes a key pair.

', 'refs' => [ 'CreateKeysAndCertificateResponse$keyPair' => '

The generated key pair.

', 'CreateProvisioningClaimResponse$keyPair' => '

The provisioning claim key pair.

', ], ], 'KeyValue' => [ 'base' => NULL, 'refs' => [ 'PublicKeyMap$value' => NULL, ], ], 'KinesisAction' => [ 'base' => '

Describes an action to write data to an Amazon Kinesis stream.

', 'refs' => [ 'Action$kinesis' => '

Write data to an Amazon Kinesis stream.

', ], ], 'LambdaAction' => [ 'base' => '

Describes an action to invoke a Lambda function.

', 'refs' => [ 'Action$lambda' => '

Invoke a Lambda function.

', ], ], 'LaserMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListJobExecutionsForJobRequest$maxResults' => '

The maximum number of results to be returned per request.

', 'ListJobExecutionsForThingRequest$maxResults' => '

The maximum number of results to be returned per request.

', 'ListJobTemplatesRequest$maxResults' => '

The maximum number of results to return in the list.

', 'ListJobsRequest$maxResults' => '

The maximum number of results to return per request.

', 'ListManagedJobTemplatesRequest$maxResults' => '

Maximum number of entries that can be returned.

', ], ], 'LastModifiedDate' => [ 'base' => NULL, 'refs' => [ 'DescribeEventConfigurationsResponse$lastModifiedDate' => '

The date the event configurations were last modified.

', 'DescribeFleetMetricResponse$lastModifiedDate' => '

The date when the fleet metric is last modified.

', 'DescribeThingRegistrationTaskResponse$lastModifiedDate' => '

The date when the task was last modified.

', 'GetPackageResponse$lastModifiedDate' => '

The date when the package was last updated.

', 'GetPackageVersionResponse$lastModifiedDate' => '

The date when the package version was last updated.

', 'PackageSummary$lastModifiedDate' => '

The date that the package was last updated.

', 'PackageVersionSummary$lastModifiedDate' => '

The date that the package version was last updated.

', ], ], 'LastUpdatedAtDate' => [ 'base' => NULL, 'refs' => [ 'TopicRuleDestination$lastUpdatedAt' => '

The date and time when the topic rule destination was last updated.

', 'TopicRuleDestinationSummary$lastUpdatedAt' => '

The date and time when the topic rule destination was last updated.

', ], ], 'LimitExceededException' => [ 'base' => '

A limit has been exceeded.

', 'refs' => [], ], 'ListActiveViolationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListActiveViolationsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAttachedPoliciesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAttachedPoliciesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditFindingsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditFindingsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditMitigationActionsExecutionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditMitigationActionsExecutionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditMitigationActionsTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditMitigationActionsTasksResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditSuppressionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditSuppressionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditTasksResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAuthorizersRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAuthorizersResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListBillingGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListBillingGroupsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListCACertificatesRequest' => [ 'base' => '

Input for the ListCACertificates operation.

', 'refs' => [], ], 'ListCACertificatesResponse' => [ 'base' => '

The output from the ListCACertificates operation.

', 'refs' => [], ], 'ListCertificateProvidersRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListCertificateProvidersResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListCertificatesByCARequest' => [ 'base' => '

The input to the ListCertificatesByCA operation.

', 'refs' => [], ], 'ListCertificatesByCAResponse' => [ 'base' => '

The output of the ListCertificatesByCA operation.

', 'refs' => [], ], 'ListCertificatesRequest' => [ 'base' => '

The input for the ListCertificates operation.

', 'refs' => [], ], 'ListCertificatesResponse' => [ 'base' => '

The output of the ListCertificates operation.

', 'refs' => [], ], 'ListCustomMetricsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListCustomMetricsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListDetectMitigationActionsExecutionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListDetectMitigationActionsExecutionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListDetectMitigationActionsTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListDetectMitigationActionsTasksResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListDimensionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListDimensionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListDomainConfigurationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListDomainConfigurationsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListFleetMetricsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListFleetMetricsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListIndicesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListIndicesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListJobExecutionsForJobRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListJobExecutionsForJobResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListJobExecutionsForThingRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListJobExecutionsForThingResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListJobTemplatesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListJobTemplatesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListJobsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListJobsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListManagedJobTemplatesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListManagedJobTemplatesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListMetricValuesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListMetricValuesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListMitigationActionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListMitigationActionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListOTAUpdatesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListOTAUpdatesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListOutgoingCertificatesRequest' => [ 'base' => '

The input to the ListOutgoingCertificates operation.

', 'refs' => [], ], 'ListOutgoingCertificatesResponse' => [ 'base' => '

The output from the ListOutgoingCertificates operation.

', 'refs' => [], ], 'ListPackageVersionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListPackageVersionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListPackagesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListPackagesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListPoliciesRequest' => [ 'base' => '

The input for the ListPolicies operation.

', 'refs' => [], ], 'ListPoliciesResponse' => [ 'base' => '

The output from the ListPolicies operation.

', 'refs' => [], ], 'ListPolicyPrincipalsRequest' => [ 'base' => '

The input for the ListPolicyPrincipals operation.

', 'refs' => [], ], 'ListPolicyPrincipalsResponse' => [ 'base' => '

The output from the ListPolicyPrincipals operation.

', 'refs' => [], ], 'ListPolicyVersionsRequest' => [ 'base' => '

The input for the ListPolicyVersions operation.

', 'refs' => [], ], 'ListPolicyVersionsResponse' => [ 'base' => '

The output from the ListPolicyVersions operation.

', 'refs' => [], ], 'ListPrincipalPoliciesRequest' => [ 'base' => '

The input for the ListPrincipalPolicies operation.

', 'refs' => [], ], 'ListPrincipalPoliciesResponse' => [ 'base' => '

The output from the ListPrincipalPolicies operation.

', 'refs' => [], ], 'ListPrincipalThingsRequest' => [ 'base' => '

The input for the ListPrincipalThings operation.

', 'refs' => [], ], 'ListPrincipalThingsResponse' => [ 'base' => '

The output from the ListPrincipalThings operation.

', 'refs' => [], ], 'ListProvisioningTemplateVersionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListProvisioningTemplateVersionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListProvisioningTemplatesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListProvisioningTemplatesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListRelatedResourcesForAuditFindingRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListRelatedResourcesForAuditFindingResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListRoleAliasesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListRoleAliasesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListScheduledAuditsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListScheduledAuditsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListSecurityProfilesForTargetRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListSecurityProfilesForTargetResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListSecurityProfilesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListSecurityProfilesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListStreamsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListStreamsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListSuppressedAlerts' => [ 'base' => NULL, 'refs' => [ 'ListActiveViolationsRequest$listSuppressedAlerts' => '

A list of all suppressed alerts.

', 'ListViolationEventsRequest$listSuppressedAlerts' => '

A list of all suppressed alerts.

', ], ], 'ListSuppressedFindings' => [ 'base' => NULL, 'refs' => [ 'ListAuditFindingsRequest$listSuppressedFindings' => '

Boolean flag indicating whether only the suppressed findings or the unsuppressed findings should be listed. If this parameter isn\'t provided, the response will list both suppressed and unsuppressed findings.

', ], ], 'ListTagsForResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListTagsForResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListTargetsForPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListTargetsForPolicyResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListTargetsForSecurityProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListTargetsForSecurityProfileResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListThingGroupsForThingRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListThingGroupsForThingResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListThingGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListThingGroupsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListThingPrincipalsRequest' => [ 'base' => '

The input for the ListThingPrincipal operation.

', 'refs' => [], ], 'ListThingPrincipalsResponse' => [ 'base' => '

The output from the ListThingPrincipals operation.

', 'refs' => [], ], 'ListThingRegistrationTaskReportsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListThingRegistrationTaskReportsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListThingRegistrationTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListThingRegistrationTasksResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListThingTypesRequest' => [ 'base' => '

The input for the ListThingTypes operation.

', 'refs' => [], ], 'ListThingTypesResponse' => [ 'base' => '

The output for the ListThingTypes operation.

', 'refs' => [], ], 'ListThingsInBillingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListThingsInBillingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListThingsInThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListThingsInThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListThingsRequest' => [ 'base' => '

The input for the ListThings operation.

', 'refs' => [], ], 'ListThingsResponse' => [ 'base' => '

The output from the ListThings operation.

', 'refs' => [], ], 'ListTopicRuleDestinationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListTopicRuleDestinationsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListTopicRulesRequest' => [ 'base' => '

The input for the ListTopicRules operation.

', 'refs' => [], ], 'ListTopicRulesResponse' => [ 'base' => '

The output from the ListTopicRules operation.

', 'refs' => [], ], 'ListV2LoggingLevelsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListV2LoggingLevelsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListViolationEventsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListViolationEventsResponse' => [ 'base' => NULL, 'refs' => [], ], 'LocationAction' => [ 'base' => '

The Amazon Location rule action sends device location updates from an MQTT message to an Amazon Location tracker resource.

', 'refs' => [ 'Action$location' => '

The Amazon Location Service rule action sends device location updates from an MQTT message to an Amazon Location tracker resource.

', ], ], 'LocationTimestamp' => [ 'base' => '

Describes how to interpret an application-defined timestamp value from an MQTT message payload and the precision of that value.

', 'refs' => [ 'LocationAction$timestamp' => '

The time that the location data was sampled. The default value is the time the MQTT message was processed.

', ], ], 'LogGroupName' => [ 'base' => NULL, 'refs' => [ 'CloudwatchLogsAction$logGroupName' => '

The CloudWatch log group to which the action sends data.

', ], ], 'LogLevel' => [ 'base' => NULL, 'refs' => [ 'EnableIoTLoggingParams$logLevel' => '

Specifies the type of information to be logged.

', 'GetLoggingOptionsResponse$logLevel' => '

The logging level.

', 'GetV2LoggingOptionsResponse$defaultLogLevel' => '

The default log level.

', 'LogTargetConfiguration$logLevel' => '

The logging level.

', 'LoggingOptionsPayload$logLevel' => '

The log level.

', 'SetV2LoggingLevelRequest$logLevel' => '

The log level.

', 'SetV2LoggingOptionsRequest$defaultLogLevel' => '

The default logging level.

', ], ], 'LogTarget' => [ 'base' => '

A log target.

', 'refs' => [ 'LogTargetConfiguration$logTarget' => '

A log target

', 'SetV2LoggingLevelRequest$logTarget' => '

The log target.

', ], ], 'LogTargetConfiguration' => [ 'base' => '

The target configuration.

', 'refs' => [ 'LogTargetConfigurations$member' => NULL, ], ], 'LogTargetConfigurations' => [ 'base' => NULL, 'refs' => [ 'ListV2LoggingLevelsResponse$logTargetConfigurations' => '

The logging configuration for a target.

', ], ], 'LogTargetName' => [ 'base' => NULL, 'refs' => [ 'DeleteV2LoggingLevelRequest$targetName' => '

The name of the resource for which you are configuring logging.

', 'LogTarget$targetName' => '

The target name.

', ], ], 'LogTargetType' => [ 'base' => NULL, 'refs' => [ 'DeleteV2LoggingLevelRequest$targetType' => '

The type of resource for which you are configuring logging. Must be THING_Group.

', 'ListV2LoggingLevelsRequest$targetType' => '

The type of resource for which you are configuring logging. Must be THING_Group.

', 'LogTarget$targetType' => '

The target type.

', ], ], 'LoggingOptionsPayload' => [ 'base' => '

Describes the logging options payload.

', 'refs' => [ 'SetLoggingOptionsRequest$loggingOptionsPayload' => '

The logging options payload.

', ], ], 'MachineLearningDetectionConfig' => [ 'base' => '

The configuration of an ML Detect Security Profile.

', 'refs' => [ 'BehaviorCriteria$mlDetectionConfig' => '

The configuration of an ML Detect

', ], ], 'MaintenanceWindow' => [ 'base' => '

An optional configuration within the SchedulingConfig to setup a recurring maintenance window with a predetermined start time and duration for the rollout of a job document to all devices in a target group for a job.

', 'refs' => [ 'MaintenanceWindows$member' => NULL, ], ], 'MaintenanceWindows' => [ 'base' => NULL, 'refs' => [ 'CreateJobTemplateRequest$maintenanceWindows' => '

Allows you to configure an optional maintenance window for the rollout of a job document to all devices in the target group for a job.

', 'DescribeJobTemplateResponse$maintenanceWindows' => '

Allows you to configure an optional maintenance window for the rollout of a job document to all devices in the target group for a job.

', 'SchedulingConfig$maintenanceWindows' => '

An optional configuration within the SchedulingConfig to setup a recurring maintenance window with a predetermined start time and duration for the rollout of a job document to all devices in a target group for a job.

', ], ], 'MalformedPolicyException' => [ 'base' => '

The policy documentation is not valid.

', 'refs' => [], ], 'ManagedJobTemplateName' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedJobTemplateRequest$templateName' => '

The unique name of a managed job template, which is required.

', 'DescribeManagedJobTemplateResponse$templateName' => '

The unique name of a managed template, such as AWS-Reboot.

', 'ListManagedJobTemplatesRequest$templateName' => '

An optional parameter for template name. If specified, only the versions of the managed job templates that have the specified template name will be returned.

', 'ManagedJobTemplateSummary$templateName' => '

The unique Name for a managed template.

', ], ], 'ManagedJobTemplateSummary' => [ 'base' => '

An object that contains information about the managed template.

', 'refs' => [ 'ManagedJobTemplatesSummaryList$member' => NULL, ], ], 'ManagedJobTemplatesSummaryList' => [ 'base' => NULL, 'refs' => [ 'ListManagedJobTemplatesResponse$managedJobTemplates' => '

A list of managed job templates that are returned.

', ], ], 'ManagedTemplateVersion' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedJobTemplateRequest$templateVersion' => '

An optional parameter to specify version of a managed template. If not specified, the pre-defined default version is returned.

', 'DescribeManagedJobTemplateResponse$templateVersion' => '

The version for a managed template.

', 'ManagedJobTemplateSummary$templateVersion' => '

The version for a managed template.

', ], ], 'Marker' => [ 'base' => NULL, 'refs' => [ 'ListAttachedPoliciesRequest$marker' => '

The token to retrieve the next set of results.

', 'ListAttachedPoliciesResponse$nextMarker' => '

The token to retrieve the next set of results, or ``null`` if there are no more results.

', 'ListAuthorizersRequest$marker' => '

A marker used to get the next set of results.

', 'ListAuthorizersResponse$nextMarker' => '

A marker used to get the next set of results.

', 'ListCACertificatesRequest$marker' => '

The marker for the next set of results.

', 'ListCACertificatesResponse$nextMarker' => '

The current position within the list of CA certificates.

', 'ListCertificateProvidersRequest$nextToken' => '

The token for the next set of results, or null if there are no more results.

', 'ListCertificateProvidersResponse$nextToken' => '

The token for the next set of results, or null if there are no more results.

', 'ListCertificatesByCARequest$marker' => '

The marker for the next set of results.

', 'ListCertificatesByCAResponse$nextMarker' => '

The marker for the next set of results, or null if there are no additional results.

', 'ListCertificatesRequest$marker' => '

The marker for the next set of results.

', 'ListCertificatesResponse$nextMarker' => '

The marker for the next set of results, or null if there are no additional results.

', 'ListDomainConfigurationsRequest$marker' => '

The marker for the next set of results.

', 'ListDomainConfigurationsResponse$nextMarker' => '

The marker for the next set of results.

', 'ListOutgoingCertificatesRequest$marker' => '

The marker for the next set of results.

', 'ListOutgoingCertificatesResponse$nextMarker' => '

The marker for the next set of results.

', 'ListPoliciesRequest$marker' => '

The marker for the next set of results.

', 'ListPoliciesResponse$nextMarker' => '

The marker for the next set of results, or null if there are no additional results.

', 'ListPolicyPrincipalsRequest$marker' => '

The marker for the next set of results.

', 'ListPolicyPrincipalsResponse$nextMarker' => '

The marker for the next set of results, or null if there are no additional results.

', 'ListPrincipalPoliciesRequest$marker' => '

The marker for the next set of results.

', 'ListPrincipalPoliciesResponse$nextMarker' => '

The marker for the next set of results, or null if there are no additional results.

', 'ListRoleAliasesRequest$marker' => '

A marker used to get the next set of results.

', 'ListRoleAliasesResponse$nextMarker' => '

A marker used to get the next set of results.

', 'ListTargetsForPolicyRequest$marker' => '

A marker used to get the next set of results.

', 'ListTargetsForPolicyResponse$nextMarker' => '

A marker used to get the next set of results.

', ], ], 'MaxBuckets' => [ 'base' => NULL, 'refs' => [ 'TermsAggregation$maxBuckets' => '

The number of buckets to return in the response. Default to 10.

', ], ], 'MaxJobExecutionsPerMin' => [ 'base' => NULL, 'refs' => [ 'JobExecutionsRolloutConfig$maximumPerMinute' => '

The maximum number of things that will be notified of a pending job, per minute. This parameter allows you to create a staged rollout.

', ], ], 'MaxResults' => [ 'base' => NULL, 'refs' => [ 'ListActiveViolationsRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListAuditFindingsRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListAuditMitigationActionsExecutionsRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListAuditMitigationActionsTasksRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListAuditSuppressionsRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListAuditTasksRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListCustomMetricsRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListDetectMitigationActionsExecutionsRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListDetectMitigationActionsTasksRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListDimensionsRequest$maxResults' => '

The maximum number of results to retrieve at one time.

', 'ListFleetMetricsRequest$maxResults' => '

The maximum number of results to return in this operation.

', 'ListMetricValuesRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListMitigationActionsRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListOTAUpdatesRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListProvisioningTemplateVersionsRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListProvisioningTemplatesRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListRelatedResourcesForAuditFindingRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListScheduledAuditsRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListSecurityProfilesForTargetRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListSecurityProfilesRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListStreamsRequest$maxResults' => '

The maximum number of results to return at a time.

', 'ListTargetsForSecurityProfileRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListViolationEventsRequest$maxResults' => '

The maximum number of results to return at one time.

', ], ], 'Maximum' => [ 'base' => NULL, 'refs' => [ 'Statistics$maximum' => '

The maximum aggregated field value.

', ], ], 'MaximumPerMinute' => [ 'base' => NULL, 'refs' => [ 'AwsJobExecutionsRolloutConfig$maximumPerMinute' => '

The maximum number of OTA update job executions started per minute.

', ], ], 'Message' => [ 'base' => NULL, 'refs' => [ 'OutgoingCertificate$transferMessage' => '

The transfer message.

', 'RejectCertificateTransferRequest$rejectReason' => '

The reason the certificate transfer was rejected.

', 'TransferCertificateRequest$transferMessage' => '

The transfer message.

', 'TransferData$transferMessage' => '

The transfer message.

', 'TransferData$rejectReason' => '

The reason why the transfer was rejected.

', ], ], 'MessageExpiry' => [ 'base' => NULL, 'refs' => [ 'MqttHeaders$messageExpiry' => '

A user-defined integer value that will persist a message at the message broker for a specified amount of time to ensure that the message will expire if it\'s no longer relevant to the subscriber. The value of messageExpiry represents the number of seconds before it expires. For more information about the limits of messageExpiry, see Amazon Web Services IoT Core message broker and protocol limits and quotas from the Amazon Web Services Reference Guide.

Supports substitution templates.

', ], ], 'MessageFormat' => [ 'base' => NULL, 'refs' => [ 'SnsAction$messageFormat' => '

(Optional) The message format of the message to publish. Accepted values are "JSON" and "RAW". The default value of the attribute is "RAW". SNS uses this setting to determine if the payload should be parsed and relevant platform-specific bits of the payload should be extracted. To read more about SNS message formats, see https://docs.aws.amazon.com/sns/latest/dg/json-formats.html refer to their official documentation.

', ], ], 'MessageId' => [ 'base' => NULL, 'refs' => [ 'IotEventsAction$messageId' => '

The ID of the message. The default messageId is a new UUID value.

When batchMode is true, you can\'t specify a messageId--a new UUID value will be assigned.

Assign a value to this property to ensure that only one input (message) with a given messageId will be processed by an IoT Events detector.

', ], ], 'MetricDatum' => [ 'base' => '

A metric.

', 'refs' => [ 'MetricDatumList$member' => NULL, ], ], 'MetricDatumList' => [ 'base' => NULL, 'refs' => [ 'ListMetricValuesResponse$metricDatumList' => '

The data the thing reports for the metric during the specified time period.

', ], ], 'MetricDimension' => [ 'base' => '

The dimension of a metric.

', 'refs' => [ 'Behavior$metricDimension' => '

The dimension for a metric in your behavior. For example, using a TOPIC_FILTER dimension, you can narrow down the scope of the metric to only MQTT topics where the name matches the pattern specified in the dimension. This can\'t be used with custom metrics.

', 'MetricToRetain$metricDimension' => '

The dimension of a metric. This can\'t be used with custom metrics.

', ], ], 'MetricName' => [ 'base' => NULL, 'refs' => [ 'CreateCustomMetricRequest$metricName' => '

The name of the custom metric. This will be used in the metric report submitted from the device/thing. The name can\'t begin with aws:. You can\'t change the name after you define it.

', 'CreateCustomMetricResponse$metricName' => '

The name of the custom metric to be used in the metric report.

', 'DeleteCustomMetricRequest$metricName' => '

The name of the custom metric.

', 'DescribeCustomMetricRequest$metricName' => '

The name of the custom metric.

', 'DescribeCustomMetricResponse$metricName' => '

The name of the custom metric.

', 'ListSecurityProfilesRequest$metricName' => '

The name of the custom metric. Cannot be used with dimensionName.

', 'MetricNames$member' => NULL, 'UpdateCustomMetricRequest$metricName' => '

The name of the custom metric. Cannot be updated.

', 'UpdateCustomMetricResponse$metricName' => '

The name of the custom metric.

', ], ], 'MetricNames' => [ 'base' => NULL, 'refs' => [ 'ListCustomMetricsResponse$metricNames' => '

The name of the custom metric.

', ], ], 'MetricToRetain' => [ 'base' => '

The metric you want to retain. Dimensions are optional.

', 'refs' => [ 'AdditionalMetricsToRetainV2List$member' => NULL, ], ], 'MetricValue' => [ 'base' => '

The value to be compared with the metric.

', 'refs' => [ 'ActiveViolation$lastViolationValue' => '

The value of the metric (the measurement) that caused the most recent violation.

', 'BehaviorCriteria$value' => '

The value to be compared with the metric.

', 'MetricDatum$value' => '

The value reported for the metric.

', 'ViolationEvent$metricValue' => '

The value of the metric (the measurement).

', ], ], 'MetricsExportConfig' => [ 'base' => '

Set configurations for metrics export.

', 'refs' => [ 'CreateSecurityProfileRequest$metricsExportConfig' => '

Specifies the MQTT topic and role ARN required for metric export.

', 'DescribeSecurityProfileResponse$metricsExportConfig' => '

Specifies the MQTT topic and role ARN required for metric export.

', 'UpdateSecurityProfileRequest$metricsExportConfig' => '

Specifies the MQTT topic and role ARN required for metric export.

', 'UpdateSecurityProfileResponse$metricsExportConfig' => '

Specifies the MQTT topic and role ARN required for metric export.

', ], ], 'Minimum' => [ 'base' => NULL, 'refs' => [ 'Statistics$minimum' => '

The minimum aggregated field value.

', ], ], 'MinimumNumberOfExecutedThings' => [ 'base' => NULL, 'refs' => [ 'AbortCriteria$minNumberOfExecutedThings' => '

The minimum number of things which must receive job execution notifications before the job can be aborted.

', ], ], 'MissingContextValue' => [ 'base' => NULL, 'refs' => [ 'MissingContextValues$member' => NULL, ], ], 'MissingContextValues' => [ 'base' => NULL, 'refs' => [ 'AuthResult$missingContextValues' => '

Contains any missing context values found while evaluating policy.

', ], ], 'MitigationAction' => [ 'base' => '

Describes which changes should be applied as part of a mitigation action.

', 'refs' => [ 'MitigationActionList$member' => NULL, ], ], 'MitigationActionArn' => [ 'base' => NULL, 'refs' => [ 'CreateMitigationActionResponse$actionArn' => '

The ARN for the new mitigation action.

', 'DescribeMitigationActionResponse$actionArn' => '

The ARN that identifies this migration action.

', 'MitigationActionIdentifier$actionArn' => '

The IAM role ARN used to apply this mitigation action.

', 'UpdateMitigationActionResponse$actionArn' => '

The ARN for the new mitigation action.

', ], ], 'MitigationActionId' => [ 'base' => NULL, 'refs' => [ 'AuditMitigationActionExecutionMetadata$actionId' => '

The unique identifier for the mitigation action being applied by the task.

', 'CreateMitigationActionResponse$actionId' => '

A unique identifier for the new mitigation action.

', 'DescribeMitigationActionResponse$actionId' => '

A unique identifier for this action.

', 'MitigationAction$id' => '

A unique identifier for the mitigation action.

', 'UpdateMitigationActionResponse$actionId' => '

A unique identifier for the mitigation action.

', ], ], 'MitigationActionIdentifier' => [ 'base' => '

Information that identifies a mitigation action. This information is returned by ListMitigationActions.

', 'refs' => [ 'MitigationActionIdentifierList$member' => NULL, ], ], 'MitigationActionIdentifierList' => [ 'base' => NULL, 'refs' => [ 'ListMitigationActionsResponse$actionIdentifiers' => '

A set of actions that matched the specified filter criteria.

', ], ], 'MitigationActionList' => [ 'base' => NULL, 'refs' => [ 'DescribeAuditMitigationActionsTaskResponse$actionsDefinition' => '

Specifies the mitigation actions and their parameters that are applied as part of this task.

', 'DetectMitigationActionsTaskSummary$actionsDefinition' => '

The definition of the actions.

', ], ], 'MitigationActionName' => [ 'base' => NULL, 'refs' => [ 'AuditMitigationActionExecutionMetadata$actionName' => '

The friendly name of the mitigation action being applied by the task.

', 'CreateMitigationActionRequest$actionName' => '

A friendly name for the action. Choose a friendly name that accurately describes the action (for example, EnableLoggingAction).

', 'DeleteMitigationActionRequest$actionName' => '

The name of the mitigation action that you want to delete.

', 'DescribeMitigationActionRequest$actionName' => '

The friendly name that uniquely identifies the mitigation action.

', 'DescribeMitigationActionResponse$actionName' => '

The friendly name that uniquely identifies the mitigation action.

', 'DetectMitigationActionExecution$actionName' => '

The friendly name that uniquely identifies the mitigation action.

', 'DetectMitigationActionsToExecuteList$member' => NULL, 'MitigationAction$name' => '

A user-friendly name for the mitigation action.

', 'MitigationActionIdentifier$actionName' => '

The friendly name of the mitigation action.

', 'MitigationActionNameList$member' => NULL, 'UpdateMitigationActionRequest$actionName' => '

The friendly name for the mitigation action. You cannot change the name by using UpdateMitigationAction. Instead, you must delete and recreate the mitigation action with the new name.

', ], ], 'MitigationActionNameList' => [ 'base' => NULL, 'refs' => [ 'AuditCheckToActionsMapping$value' => NULL, ], ], 'MitigationActionParams' => [ 'base' => '

The set of parameters for this mitigation action. You can specify only one type of parameter (in other words, you can apply only one action for each defined mitigation action).

', 'refs' => [ 'CreateMitigationActionRequest$actionParams' => '

Defines the type of action and the parameters for that action.

', 'DescribeMitigationActionResponse$actionParams' => '

Parameters that control how the mitigation action is applied, specific to the type of mitigation action.

', 'MitigationAction$actionParams' => '

The set of parameters for this mitigation action. The parameters vary, depending on the kind of action you apply.

', 'UpdateMitigationActionRequest$actionParams' => '

Defines the type of action and the parameters for that action.

', ], ], 'MitigationActionType' => [ 'base' => NULL, 'refs' => [ 'DescribeMitigationActionResponse$actionType' => '

The type of mitigation action.

', 'ListMitigationActionsRequest$actionType' => '

Specify a value to limit the result to mitigation actions with a specific action type.

', ], ], 'MitigationActionsTaskId' => [ 'base' => NULL, 'refs' => [ 'AuditMitigationActionExecutionMetadata$taskId' => '

The unique identifier for the task that applies the mitigation action.

', 'AuditMitigationActionsTaskMetadata$taskId' => '

The unique identifier for the task.

', 'CancelAuditMitigationActionsTaskRequest$taskId' => '

The unique identifier for the task that you want to cancel.

', 'CancelDetectMitigationActionsTaskRequest$taskId' => '

The unique identifier of the task.

', 'DescribeAuditMitigationActionsTaskRequest$taskId' => '

The unique identifier for the audit mitigation task.

', 'DescribeDetectMitigationActionsTaskRequest$taskId' => '

The unique identifier of the task.

', 'DetectMitigationActionExecution$taskId' => '

The unique identifier of the task.

', 'DetectMitigationActionsTaskSummary$taskId' => '

The unique identifier of the task.

', 'ListAuditMitigationActionsExecutionsRequest$taskId' => '

Specify this filter to limit results to actions for a specific audit mitigation actions task.

', 'ListDetectMitigationActionsExecutionsRequest$taskId' => '

The unique identifier of the task.

', 'StartAuditMitigationActionsTaskRequest$taskId' => '

A unique identifier for the task. You can use this identifier to check the status of the task or to cancel it.

', 'StartAuditMitigationActionsTaskResponse$taskId' => '

The unique identifier for the audit mitigation task. This matches the taskId that you specified in the request.

', 'StartDetectMitigationActionsTaskRequest$taskId' => '

The unique identifier of the task.

', 'StartDetectMitigationActionsTaskResponse$taskId' => '

The unique identifier of the task.

', ], ], 'ModelStatus' => [ 'base' => NULL, 'refs' => [ 'BehaviorModelTrainingSummary$modelStatus' => '

The status of the behavior model.

', ], ], 'MqttClientId' => [ 'base' => NULL, 'refs' => [ 'MqttContext$clientId' => '

The value of the clientId key in an MQTT authorization request.

', ], ], 'MqttContext' => [ 'base' => '

Specifies the MQTT context to use for the test authorizer request

', 'refs' => [ 'TestInvokeAuthorizerRequest$mqttContext' => '

Specifies a test MQTT authorization request.

', ], ], 'MqttHeaders' => [ 'base' => '

Specifies MQTT Version 5.0 headers information. For more information, see MQTT from Amazon Web Services IoT Core Developer Guide.

', 'refs' => [ 'RepublishAction$headers' => '

MQTT Version 5.0 headers information. For more information, see MQTT from the Amazon Web Services IoT Core Developer Guide.

', ], ], 'MqttPassword' => [ 'base' => NULL, 'refs' => [ 'MqttContext$password' => '

The value of the password key in an MQTT authorization request.

', ], ], 'MqttTopic' => [ 'base' => NULL, 'refs' => [ 'MetricsExportConfig$mqttTopic' => '

The MQTT topic that Device Defender Detect should publish messages to for metrics export.

', ], ], 'MqttUsername' => [ 'base' => NULL, 'refs' => [ 'MqttContext$username' => '

The value of the username key in an MQTT authorization request.

', ], ], 'NamedShadowIndexingMode' => [ 'base' => NULL, 'refs' => [ 'ThingIndexingConfiguration$namedShadowIndexingMode' => '

Named shadow indexing mode. Valid values are:

  • ON – Your thing index contains named shadow. To enable thing named shadow indexing, namedShadowIndexingMode must not be set to OFF.

  • OFF - Named shadow indexing is disabled.

For more information about Shadows, see IoT Device Shadow service.

', ], ], 'NamedShadowNamesFilter' => [ 'base' => NULL, 'refs' => [ 'IndexingFilter$namedShadowNames' => '

The shadow names that you select to index. The default maximum number of shadow names for indexing is 10. To increase the limit, see Amazon Web Services IoT Device Management Quotas in the Amazon Web Services General Reference.

', ], ], 'NamespaceId' => [ 'base' => NULL, 'refs' => [ 'AssociateTargetsWithJobRequest$namespaceId' => '

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

', 'CreateJobRequest$namespaceId' => '

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

', 'DeleteJobExecutionRequest$namespaceId' => '

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

', 'DeleteJobRequest$namespaceId' => '

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

', 'Job$namespaceId' => '

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

', 'ListJobExecutionsForThingRequest$namespaceId' => '

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

', 'ListJobsRequest$namespaceId' => '

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

', 'UpdateJobRequest$namespaceId' => '

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

', ], ], 'NextToken' => [ 'base' => NULL, 'refs' => [ 'GetBehaviorModelTrainingSummariesRequest$nextToken' => '

The token for the next set of results.

', 'GetBehaviorModelTrainingSummariesResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListActiveViolationsRequest$nextToken' => '

The token for the next set of results.

', 'ListActiveViolationsResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListAuditFindingsRequest$nextToken' => '

The token for the next set of results.

', 'ListAuditFindingsResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListAuditMitigationActionsExecutionsRequest$nextToken' => '

The token for the next set of results.

', 'ListAuditMitigationActionsExecutionsResponse$nextToken' => '

The token for the next set of results.

', 'ListAuditMitigationActionsTasksRequest$nextToken' => '

The token for the next set of results.

', 'ListAuditMitigationActionsTasksResponse$nextToken' => '

The token for the next set of results.

', 'ListAuditSuppressionsRequest$nextToken' => '

The token for the next set of results.

', 'ListAuditSuppressionsResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListAuditTasksRequest$nextToken' => '

The token for the next set of results.

', 'ListAuditTasksResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListBillingGroupsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListBillingGroupsResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListCustomMetricsRequest$nextToken' => '

The token for the next set of results.

', 'ListCustomMetricsResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListDetectMitigationActionsExecutionsRequest$nextToken' => '

The token for the next set of results.

', 'ListDetectMitigationActionsExecutionsResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListDetectMitigationActionsTasksRequest$nextToken' => '

The token for the next set of results.

', 'ListDetectMitigationActionsTasksResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListDimensionsRequest$nextToken' => '

The token for the next set of results.

', 'ListDimensionsResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListFleetMetricsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListFleetMetricsResponse$nextToken' => '

The token for the next set of results. Will not be returned if the operation has returned all results.

', 'ListIndicesRequest$nextToken' => '

The token used to get the next set of results, or null if there are no additional results.

', 'ListIndicesResponse$nextToken' => '

The token used to get the next set of results, or null if there are no additional results.

', 'ListJobExecutionsForJobRequest$nextToken' => '

The token to retrieve the next set of results.

', 'ListJobExecutionsForJobResponse$nextToken' => '

The token for the next set of results, or null if there are no additional results.

', 'ListJobExecutionsForThingRequest$nextToken' => '

The token to retrieve the next set of results.

', 'ListJobExecutionsForThingResponse$nextToken' => '

The token for the next set of results, or null if there are no additional results.

', 'ListJobTemplatesRequest$nextToken' => '

The token to use to return the next set of results in the list.

', 'ListJobTemplatesResponse$nextToken' => '

The token for the next set of results, or null if there are no additional results.

', 'ListJobsRequest$nextToken' => '

The token to retrieve the next set of results.

', 'ListJobsResponse$nextToken' => '

The token for the next set of results, or null if there are no additional results.

', 'ListManagedJobTemplatesRequest$nextToken' => '

The token to retrieve the next set of results.

', 'ListManagedJobTemplatesResponse$nextToken' => '

The token to retrieve the next set of results.

', 'ListMetricValuesRequest$nextToken' => '

The token for the next set of results.

', 'ListMetricValuesResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListMitigationActionsRequest$nextToken' => '

The token for the next set of results.

', 'ListMitigationActionsResponse$nextToken' => '

The token for the next set of results.

', 'ListOTAUpdatesRequest$nextToken' => '

A token used to retrieve the next set of results.

', 'ListOTAUpdatesResponse$nextToken' => '

A token to use to get the next set of results.

', 'ListPackageVersionsRequest$nextToken' => '

The token for the next set of results.

', 'ListPackageVersionsResponse$nextToken' => '

The token for the next set of results.

', 'ListPackagesRequest$nextToken' => '

The token for the next set of results.

', 'ListPackagesResponse$nextToken' => '

The token for the next set of results.

', 'ListPrincipalThingsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListPrincipalThingsResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListProvisioningTemplateVersionsRequest$nextToken' => '

A token to retrieve the next set of results.

', 'ListProvisioningTemplateVersionsResponse$nextToken' => '

A token to retrieve the next set of results.

', 'ListProvisioningTemplatesRequest$nextToken' => '

A token to retrieve the next set of results.

', 'ListProvisioningTemplatesResponse$nextToken' => '

A token to retrieve the next set of results.

', 'ListRelatedResourcesForAuditFindingRequest$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListRelatedResourcesForAuditFindingResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null for the first API call.

', 'ListScheduledAuditsRequest$nextToken' => '

The token for the next set of results.

', 'ListScheduledAuditsResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListSecurityProfilesForTargetRequest$nextToken' => '

The token for the next set of results.

', 'ListSecurityProfilesForTargetResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListSecurityProfilesRequest$nextToken' => '

The token for the next set of results.

', 'ListSecurityProfilesResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListStreamsRequest$nextToken' => '

A token used to get the next set of results.

', 'ListStreamsResponse$nextToken' => '

A token used to get the next set of results.

', 'ListTagsForResourceRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListTagsForResourceResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListTargetsForSecurityProfileRequest$nextToken' => '

The token for the next set of results.

', 'ListTargetsForSecurityProfileResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListThingGroupsForThingRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingGroupsForThingResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListThingGroupsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingGroupsResponse$nextToken' => '

The token to use to get the next set of results. Will not be returned if operation has returned all results.

', 'ListThingPrincipalsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingPrincipalsResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListThingRegistrationTaskReportsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingRegistrationTaskReportsResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListThingRegistrationTasksRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingRegistrationTasksResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListThingTypesRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingTypesResponse$nextToken' => '

The token for the next set of results. Will not be returned if operation has returned all results.

', 'ListThingsInBillingGroupRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingsInBillingGroupResponse$nextToken' => '

The token to use to get the next set of results. Will not be returned if operation has returned all results.

', 'ListThingsInThingGroupRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingsInThingGroupResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListThingsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingsResponse$nextToken' => '

The token to use to get the next set of results. Will not be returned if operation has returned all results.

', 'ListTopicRuleDestinationsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListTopicRuleDestinationsResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListTopicRulesRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListTopicRulesResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListV2LoggingLevelsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListV2LoggingLevelsResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListViolationEventsRequest$nextToken' => '

The token for the next set of results.

', 'ListViolationEventsResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'SearchIndexRequest$nextToken' => '

The token used to get the next set of results, or null if there are no additional results.

', 'SearchIndexResponse$nextToken' => '

The token used to get the next set of results, or null if there are no additional results.

', ], ], 'NonCompliantChecksCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatistics$nonCompliantChecks' => '

The number of checks that found noncompliant resources.

', ], ], 'NonCompliantResource' => [ 'base' => '

Information about the resource that was noncompliant with the audit check.

', 'refs' => [ 'AuditFinding$nonCompliantResource' => '

The resource that was found to be noncompliant with the audit check.

', ], ], 'NonCompliantResourcesCount' => [ 'base' => NULL, 'refs' => [ 'AuditCheckDetails$nonCompliantResourcesCount' => '

The number of resources that were found noncompliant during the check.

', ], ], 'NotConfiguredException' => [ 'base' => '

The resource is not configured.

', 'refs' => [], ], 'NullableBoolean' => [ 'base' => NULL, 'refs' => [ 'AddThingsToThingGroupParams$overrideDynamicGroups' => '

Specifies if this mitigation action can move the things that triggered the mitigation action even if they are part of one or more dynamic thing groups.

', 'StartDetectMitigationActionsTaskRequest$includeOnlyActiveViolations' => '

Specifies to list only active violations.

', 'StartDetectMitigationActionsTaskRequest$includeSuppressedAlerts' => '

Specifies to include suppressed alerts.

', ], ], 'Number' => [ 'base' => NULL, 'refs' => [ 'MetricValue$number' => '

The numeral value of a metric.

', 'NumberList$member' => NULL, ], ], 'NumberList' => [ 'base' => NULL, 'refs' => [ 'MetricValue$numbers' => '

The numeral values of a metric.

', ], ], 'NumberOfRetries' => [ 'base' => NULL, 'refs' => [ 'RetryCriteria$numberOfRetries' => '

The number of retries allowed for a failure type for the job.

', ], ], 'NumberOfThings' => [ 'base' => NULL, 'refs' => [ 'RateIncreaseCriteria$numberOfNotifiedThings' => '

The threshold for number of notified things that will initiate the increase in rate of rollout.

', 'RateIncreaseCriteria$numberOfSucceededThings' => '

The threshold for number of succeeded things that will initiate the increase in rate of rollout.

', ], ], 'OTAUpdateArn' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateResponse$otaUpdateArn' => '

The OTA update ARN.

', 'OTAUpdateInfo$otaUpdateArn' => '

The OTA update ARN.

', 'OTAUpdateSummary$otaUpdateArn' => '

The OTA update ARN.

', ], ], 'OTAUpdateDescription' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateRequest$description' => '

The description of the OTA update.

', 'OTAUpdateInfo$description' => '

A description of the OTA update.

', ], ], 'OTAUpdateErrorMessage' => [ 'base' => NULL, 'refs' => [ 'ErrorInfo$message' => '

The error message.

', ], ], 'OTAUpdateFile' => [ 'base' => '

Describes a file to be associated with an OTA update.

', 'refs' => [ 'OTAUpdateFiles$member' => NULL, ], ], 'OTAUpdateFileVersion' => [ 'base' => NULL, 'refs' => [ 'OTAUpdateFile$fileVersion' => '

The file version.

', ], ], 'OTAUpdateFiles' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateRequest$files' => '

The files to be streamed by the OTA update.

', 'OTAUpdateInfo$otaUpdateFiles' => '

A list of files associated with the OTA update.

', ], ], 'OTAUpdateId' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateRequest$otaUpdateId' => '

The ID of the OTA update to be created.

', 'CreateOTAUpdateResponse$otaUpdateId' => '

The OTA update ID.

', 'DeleteOTAUpdateRequest$otaUpdateId' => '

The ID of the OTA update to delete.

', 'GetOTAUpdateRequest$otaUpdateId' => '

The OTA update ID.

', 'OTAUpdateInfo$otaUpdateId' => '

The OTA update ID.

', 'OTAUpdateSummary$otaUpdateId' => '

The OTA update ID.

', ], ], 'OTAUpdateInfo' => [ 'base' => '

Information about an OTA update.

', 'refs' => [ 'GetOTAUpdateResponse$otaUpdateInfo' => '

The OTA update info.

', ], ], 'OTAUpdateStatus' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateResponse$otaUpdateStatus' => '

The OTA update status.

', 'ListOTAUpdatesRequest$otaUpdateStatus' => '

The OTA update job status.

', 'OTAUpdateInfo$otaUpdateStatus' => '

The status of the OTA update.

', ], ], 'OTAUpdateSummary' => [ 'base' => '

An OTA update summary.

', 'refs' => [ 'OTAUpdatesSummary$member' => NULL, ], ], 'OTAUpdatesSummary' => [ 'base' => NULL, 'refs' => [ 'ListOTAUpdatesResponse$otaUpdates' => '

A list of OTA update jobs.

', ], ], 'OpenSearchAction' => [ 'base' => '

Describes an action that writes data to an Amazon OpenSearch Service domain.

', 'refs' => [ 'Action$openSearch' => '

Write data to an Amazon OpenSearch Service domain.

', ], ], 'Optional' => [ 'base' => NULL, 'refs' => [ 'DocumentParameter$optional' => '

Specifies whether a pattern that needs to be replaced in a managed template job document schema is optional or required.

', ], ], 'OptionalVersion' => [ 'base' => NULL, 'refs' => [ 'DeleteBillingGroupRequest$expectedVersion' => '

The expected version of the billing group. If the version of the billing group does not match the expected version specified in the request, the DeleteBillingGroup request is rejected with a VersionConflictException.

', 'DeleteDynamicThingGroupRequest$expectedVersion' => '

The expected version of the dynamic thing group to delete.

', 'DeleteFleetMetricRequest$expectedVersion' => '

The expected version of the fleet metric to delete.

', 'DeleteSecurityProfileRequest$expectedVersion' => '

The expected version of the security profile. A new version is generated whenever the security profile is updated. If you specify a value that is different from the actual version, a VersionConflictException is thrown.

', 'DeleteThingGroupRequest$expectedVersion' => '

The expected version of the thing group to delete.

', 'DeleteThingRequest$expectedVersion' => '

The expected version of the thing record in the registry. If the version of the record in the registry does not match the expected version specified in the request, the DeleteThing request is rejected with a VersionConflictException.

', 'UpdateBillingGroupRequest$expectedVersion' => '

The expected version of the billing group. If the version of the billing group does not match the expected version specified in the request, the UpdateBillingGroup request is rejected with a VersionConflictException.

', 'UpdateDynamicThingGroupRequest$expectedVersion' => '

The expected version of the dynamic thing group to update.

', 'UpdateFleetMetricRequest$expectedVersion' => '

The expected version of the fleet metric record in the registry.

', 'UpdateSecurityProfileRequest$expectedVersion' => '

The expected version of the security profile. A new version is generated whenever the security profile is updated. If you specify a value that is different from the actual version, a VersionConflictException is thrown.

', 'UpdateThingGroupRequest$expectedVersion' => '

The expected version of the thing group. If this does not match the version of the thing group being updated, the update will fail.

', 'UpdateThingRequest$expectedVersion' => '

The expected version of the thing record in the registry. If the version of the record in the registry does not match the expected version specified in the request, the UpdateThing request is rejected with a VersionConflictException.

', ], ], 'OutgoingCertificate' => [ 'base' => '

A certificate that has been transferred but not yet accepted.

', 'refs' => [ 'OutgoingCertificates$member' => NULL, ], ], 'OutgoingCertificates' => [ 'base' => NULL, 'refs' => [ 'ListOutgoingCertificatesResponse$outgoingCertificates' => '

The certificates that are being transferred but not yet accepted.

', ], ], 'OverrideDynamicGroups' => [ 'base' => NULL, 'refs' => [ 'AddThingToThingGroupRequest$overrideDynamicGroups' => '

Override dynamic thing groups with static thing groups when 10-group limit is reached. If a thing belongs to 10 thing groups, and one or more of those groups are dynamic thing groups, adding a thing to a static group removes the thing from the last dynamic group.

', 'UpdateThingGroupsForThingRequest$overrideDynamicGroups' => '

Override dynamic thing groups with static thing groups when 10-group limit is reached. If a thing belongs to 10 thing groups, and one or more of those groups are dynamic thing groups, adding a thing to a static group removes the thing from the last dynamic group.

', ], ], 'PackageArn' => [ 'base' => NULL, 'refs' => [ 'CreatePackageResponse$packageArn' => '

The Amazon Resource Name (ARN) for the package.

', 'GetPackageResponse$packageArn' => '

The ARN for the package.

', ], ], 'PackageCatalogMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListPackageVersionsRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListPackagesRequest$maxResults' => '

The maximum number of results returned at one time.

', ], ], 'PackageName' => [ 'base' => NULL, 'refs' => [ 'CreatePackageRequest$packageName' => '

The name of the new software package.

', 'CreatePackageResponse$packageName' => '

The name of the software package.

', 'CreatePackageVersionRequest$packageName' => '

The name of the associated software package.

', 'CreatePackageVersionResponse$packageName' => '

The name of the associated software package.

', 'DeletePackageRequest$packageName' => '

The name of the target software package.

', 'DeletePackageVersionRequest$packageName' => '

The name of the associated software package.

', 'GetPackageRequest$packageName' => '

The name of the target software package.

', 'GetPackageResponse$packageName' => '

The name of the software package.

', 'GetPackageVersionRequest$packageName' => '

The name of the associated package.

', 'GetPackageVersionResponse$packageName' => '

The name of the software package.

', 'ListPackageVersionsRequest$packageName' => '

The name of the target software package.

', 'PackageSummary$packageName' => '

The name for the target software package.

', 'PackageVersionSummary$packageName' => '

The name of the associated software package.

', 'UpdatePackageRequest$packageName' => '

The name of the target software package.

', 'UpdatePackageVersionRequest$packageName' => '

The name of the associated software package.

', ], ], 'PackageSummary' => [ 'base' => '

A summary of information about a software package.

', 'refs' => [ 'PackageSummaryList$member' => NULL, ], ], 'PackageSummaryList' => [ 'base' => NULL, 'refs' => [ 'ListPackagesResponse$packageSummaries' => '

The software package summary.

', ], ], 'PackageVersionAction' => [ 'base' => NULL, 'refs' => [ 'UpdatePackageVersionRequest$action' => '

The status that the package version should be assigned. For more information, see Package version lifecycle.

', ], ], 'PackageVersionArn' => [ 'base' => NULL, 'refs' => [ 'CreatePackageVersionResponse$packageVersionArn' => '

The Amazon Resource Name (ARN) for the package.

', 'DestinationPackageVersions$member' => NULL, 'GetPackageVersionResponse$packageVersionArn' => '

The ARN for the package version.

', ], ], 'PackageVersionErrorReason' => [ 'base' => NULL, 'refs' => [ 'CreatePackageVersionResponse$errorReason' => '

Error reason for a package version failure during creation or update.

', 'GetPackageVersionResponse$errorReason' => '

Error reason for a package version failure during creation or update.

', ], ], 'PackageVersionStatus' => [ 'base' => NULL, 'refs' => [ 'CreatePackageVersionResponse$status' => '

The status of the package version. For more information, see Package version lifecycle.

', 'GetPackageVersionResponse$status' => '

The status associated to the package version. For more information, see Package version lifecycle.

', 'ListPackageVersionsRequest$status' => '

The status of the package version. For more information, see Package version lifecycle.

', 'PackageVersionSummary$status' => '

The status of the package version. For more information, see Package version lifecycle.

', ], ], 'PackageVersionSummary' => [ 'base' => '

A summary of information about a package version.

', 'refs' => [ 'PackageVersionSummaryList$member' => NULL, ], ], 'PackageVersionSummaryList' => [ 'base' => NULL, 'refs' => [ 'ListPackageVersionsResponse$packageVersionSummaries' => '

Lists the package versions associated to the package.

', ], ], 'PageSize' => [ 'base' => NULL, 'refs' => [ 'ListAttachedPoliciesRequest$pageSize' => '

The maximum number of results to be returned per request.

', 'ListAuthorizersRequest$pageSize' => '

The maximum number of results to return at one time.

', 'ListCACertificatesRequest$pageSize' => '

The result page size.

', 'ListCertificatesByCARequest$pageSize' => '

The result page size.

', 'ListCertificatesRequest$pageSize' => '

The result page size.

', 'ListDomainConfigurationsRequest$pageSize' => '

The result page size.

', 'ListOutgoingCertificatesRequest$pageSize' => '

The result page size.

', 'ListPoliciesRequest$pageSize' => '

The result page size.

', 'ListPolicyPrincipalsRequest$pageSize' => '

The result page size.

', 'ListPrincipalPoliciesRequest$pageSize' => '

The result page size.

', 'ListRoleAliasesRequest$pageSize' => '

The maximum number of results to return at one time.

', 'ListTargetsForPolicyRequest$pageSize' => '

The maximum number of results to return at one time.

', ], ], 'Parameter' => [ 'base' => NULL, 'refs' => [ 'Parameters$key' => NULL, ], ], 'ParameterKey' => [ 'base' => NULL, 'refs' => [ 'DocumentParameter$key' => '

Key of the map field containing the patterns that need to be replaced in a managed template job document schema.

', 'ParameterMap$key' => NULL, ], ], 'ParameterMap' => [ 'base' => NULL, 'refs' => [ 'CreateJobRequest$documentParameters' => '

Parameters of an Amazon Web Services managed template that you can specify to create the job document.

documentParameters can only be used when creating jobs from Amazon Web Services managed templates. This parameter can\'t be used with custom job templates or to create jobs from them.

', 'Job$documentParameters' => '

A key-value map that pairs the patterns that need to be replaced in a managed template job document schema. You can use the description of each key as a guidance to specify the inputs during runtime when creating a job.

documentParameters can only be used when creating jobs from Amazon Web Services managed templates. This parameter can\'t be used with custom job templates or to create jobs from them.

', ], ], 'ParameterValue' => [ 'base' => NULL, 'refs' => [ 'ParameterMap$value' => NULL, ], ], 'Parameters' => [ 'base' => NULL, 'refs' => [ 'RegisterThingRequest$parameters' => '

The parameters for provisioning a thing. See Provisioning Templates for more information.

', ], ], 'PartitionKey' => [ 'base' => NULL, 'refs' => [ 'KinesisAction$partitionKey' => '

The partition key.

', ], ], 'PayloadField' => [ 'base' => NULL, 'refs' => [ 'DynamoDBAction$payloadField' => '

The action payload. This name can be customized.

', ], ], 'PayloadFormatIndicator' => [ 'base' => NULL, 'refs' => [ 'MqttHeaders$payloadFormatIndicator' => '

An Enum string value that indicates whether the payload is formatted as UTF-8.

Valid values are UNSPECIFIED_BYTES and UTF8_DATA.

For more information, see Payload Format Indicator from the MQTT Version 5.0 specification.

Supports substitution templates.

', ], ], 'PayloadVersion' => [ 'base' => NULL, 'refs' => [ 'ProvisioningHook$payloadVersion' => '

The payload that was sent to the target function.

Note: Only Lambda functions are currently supported.

', ], ], 'Percent' => [ 'base' => NULL, 'refs' => [ 'PercentList$member' => NULL, 'PercentPair$percent' => '

The percentile.

', ], ], 'PercentList' => [ 'base' => NULL, 'refs' => [ 'GetPercentilesRequest$percents' => '

The percentile groups returned.

', ], ], 'PercentPair' => [ 'base' => '

Describes the percentile and percentile value.

', 'refs' => [ 'Percentiles$member' => NULL, ], ], 'PercentValue' => [ 'base' => NULL, 'refs' => [ 'PercentPair$value' => '

The value of the percentile.

', ], ], 'Percentage' => [ 'base' => NULL, 'refs' => [ 'DescribeThingRegistrationTaskResponse$percentageProgress' => '

The progress of the bulk provisioning task expressed as a percentage.

', ], ], 'Percentiles' => [ 'base' => NULL, 'refs' => [ 'GetPercentilesResponse$percentiles' => '

The percentile values of the aggregated fields.

', ], ], 'Platform' => [ 'base' => NULL, 'refs' => [ 'SigningProfileParameter$platform' => '

The hardware platform of your device.

', ], ], 'Policies' => [ 'base' => NULL, 'refs' => [ 'Allowed$policies' => '

A list of policies that allowed the authentication.

', 'ExplicitDeny$policies' => '

The policies that denied the authorization.

', 'ImplicitDeny$policies' => '

Policies that don\'t contain a matching allow or deny statement for the specified action on the specified resource.

', 'ListAttachedPoliciesResponse$policies' => '

The policies.

', 'ListPoliciesResponse$policies' => '

The descriptions of the policies.

', 'ListPrincipalPoliciesResponse$policies' => '

The policies.

', ], ], 'Policy' => [ 'base' => '

Describes an IoT policy.

', 'refs' => [ 'Policies$member' => NULL, ], ], 'PolicyArn' => [ 'base' => NULL, 'refs' => [ 'CreatePolicyResponse$policyArn' => '

The policy ARN.

', 'CreatePolicyVersionResponse$policyArn' => '

The policy ARN.

', 'EffectivePolicy$policyArn' => '

The policy ARN.

', 'GetPolicyResponse$policyArn' => '

The policy ARN.

', 'GetPolicyVersionResponse$policyArn' => '

The policy ARN.

', 'Policy$policyArn' => '

The policy ARN.

', ], ], 'PolicyDocument' => [ 'base' => NULL, 'refs' => [ 'CreatePolicyRequest$policyDocument' => '

The JSON document that describes the policy. policyDocument must have a minimum length of 1, with a maximum length of 2048, excluding whitespace.

', 'CreatePolicyResponse$policyDocument' => '

The JSON document that describes the policy.

', 'CreatePolicyVersionRequest$policyDocument' => '

The JSON document that describes the policy. Minimum length of 1. Maximum length of 2048, excluding whitespace.

', 'CreatePolicyVersionResponse$policyDocument' => '

The JSON document that describes the policy.

', 'EffectivePolicy$policyDocument' => '

The IAM policy document.

', 'GetPolicyResponse$policyDocument' => '

The JSON document that describes the policy.

', 'GetPolicyVersionResponse$policyDocument' => '

The JSON document that describes the policy.

', 'PolicyDocuments$member' => NULL, ], ], 'PolicyDocuments' => [ 'base' => NULL, 'refs' => [ 'TestInvokeAuthorizerResponse$policyDocuments' => '

IAM policy documents.

', ], ], 'PolicyName' => [ 'base' => NULL, 'refs' => [ 'AttachPolicyRequest$policyName' => '

The name of the policy to attach.

', 'AttachPrincipalPolicyRequest$policyName' => '

The policy name.

', 'CreatePolicyRequest$policyName' => '

The policy name.

', 'CreatePolicyResponse$policyName' => '

The policy name.

', 'CreatePolicyVersionRequest$policyName' => '

The policy name.

', 'DeletePolicyRequest$policyName' => '

The name of the policy to delete.

', 'DeletePolicyVersionRequest$policyName' => '

The name of the policy.

', 'DetachPolicyRequest$policyName' => '

The policy to detach.

', 'DetachPrincipalPolicyRequest$policyName' => '

The name of the policy to detach.

', 'EffectivePolicy$policyName' => '

The policy name.

', 'GetPolicyRequest$policyName' => '

The name of the policy.

', 'GetPolicyResponse$policyName' => '

The policy name.

', 'GetPolicyVersionRequest$policyName' => '

The name of the policy.

', 'GetPolicyVersionResponse$policyName' => '

The policy name.

', 'ListPolicyPrincipalsRequest$policyName' => '

The policy name.

', 'ListPolicyVersionsRequest$policyName' => '

The policy name.

', 'ListTargetsForPolicyRequest$policyName' => '

The policy name.

', 'Policy$policyName' => '

The policy name.

', 'PolicyNames$member' => NULL, 'PolicyVersionIdentifier$policyName' => '

The name of the policy.

', 'SetDefaultPolicyVersionRequest$policyName' => '

The policy name.

', ], ], 'PolicyNames' => [ 'base' => NULL, 'refs' => [ 'TestAuthorizationRequest$policyNamesToAdd' => '

When testing custom authorization, the policies specified here are treated as if they are attached to the principal being authorized.

', 'TestAuthorizationRequest$policyNamesToSkip' => '

When testing custom authorization, the policies specified here are treated as if they are not attached to the principal being authorized.

', ], ], 'PolicyTarget' => [ 'base' => NULL, 'refs' => [ 'AttachPolicyRequest$target' => '

The identity to which the policy is attached. For example, a thing group or a certificate.

', 'DetachPolicyRequest$target' => '

The target from which the policy will be detached.

', 'ListAttachedPoliciesRequest$target' => '

The group or principal for which the policies will be listed. Valid principals are CertificateArn (arn:aws:iot:region:accountId:cert/certificateId), thingGroupArn (arn:aws:iot:region:accountId:thinggroup/groupName) and CognitoId (region:id).

', 'PolicyTargets$member' => NULL, ], ], 'PolicyTargets' => [ 'base' => NULL, 'refs' => [ 'ListTargetsForPolicyResponse$targets' => '

The policy targets.

', ], ], 'PolicyTemplateName' => [ 'base' => NULL, 'refs' => [ 'ReplaceDefaultPolicyVersionParams$templateName' => '

The name of the template to be applied. The only supported value is BLANK_POLICY.

', ], ], 'PolicyVersion' => [ 'base' => '

Describes a policy version.

', 'refs' => [ 'PolicyVersions$member' => NULL, ], ], 'PolicyVersionId' => [ 'base' => NULL, 'refs' => [ 'CreatePolicyResponse$policyVersionId' => '

The policy version ID.

', 'CreatePolicyVersionResponse$policyVersionId' => '

The policy version ID.

', 'DeletePolicyVersionRequest$policyVersionId' => '

The policy version ID.

', 'GetPolicyResponse$defaultVersionId' => '

The default policy version ID.

', 'GetPolicyVersionRequest$policyVersionId' => '

The policy version ID.

', 'GetPolicyVersionResponse$policyVersionId' => '

The policy version ID.

', 'PolicyVersion$versionId' => '

The policy version ID.

', 'PolicyVersionIdentifier$policyVersionId' => '

The ID of the version of the policy associated with the resource.

', 'SetDefaultPolicyVersionRequest$policyVersionId' => '

The policy version ID.

', ], ], 'PolicyVersionIdentifier' => [ 'base' => '

Information about the version of the policy associated with the resource.

', 'refs' => [ 'ResourceIdentifier$policyVersionIdentifier' => '

The version of the policy associated with the resource.

', ], ], 'PolicyVersions' => [ 'base' => NULL, 'refs' => [ 'ListPolicyVersionsResponse$policyVersions' => '

The policy versions.

', ], ], 'Port' => [ 'base' => NULL, 'refs' => [ 'Ports$member' => NULL, ], ], 'Ports' => [ 'base' => NULL, 'refs' => [ 'MetricValue$ports' => '

If the comparisonOperator calls for a set of ports, use this to specify that set to be compared with the metric.

', ], ], 'Prefix' => [ 'base' => NULL, 'refs' => [ 'S3Destination$prefix' => '

The S3 prefix.

', ], ], 'PresignedUrlConfig' => [ 'base' => '

Configuration for pre-signed S3 URLs.

', 'refs' => [ 'CreateJobRequest$presignedUrlConfig' => '

Configuration information for pre-signed S3 URLs.

', 'CreateJobTemplateRequest$presignedUrlConfig' => NULL, 'DescribeJobTemplateResponse$presignedUrlConfig' => NULL, 'Job$presignedUrlConfig' => '

Configuration for pre-signed S3 URLs.

', 'UpdateJobRequest$presignedUrlConfig' => '

Configuration information for pre-signed S3 URLs.

', ], ], 'PrimitiveBoolean' => [ 'base' => NULL, 'refs' => [ 'DetectMitigationActionsTaskSummary$onlyActiveViolationsIncluded' => '

Includes only active violations.

', 'DetectMitigationActionsTaskSummary$suppressedAlertsIncluded' => '

Includes suppressed alerts.

', ], ], 'Principal' => [ 'base' => NULL, 'refs' => [ 'AttachPrincipalPolicyRequest$principal' => '

The principal, which can be a certificate ARN (as returned from the CreateCertificate operation) or an Amazon Cognito ID.

', 'AttachThingPrincipalRequest$principal' => '

The principal, which can be a certificate ARN (as returned from the CreateCertificate operation) or an Amazon Cognito ID.

', 'DetachPrincipalPolicyRequest$principal' => '

The principal.

Valid principals are CertificateArn (arn:aws:iot:region:accountId:cert/certificateId), thingGroupArn (arn:aws:iot:region:accountId:thinggroup/groupName) and CognitoId (region:id).

', 'DetachThingPrincipalRequest$principal' => '

If the principal is a certificate, this value must be ARN of the certificate. If the principal is an Amazon Cognito identity, this value must be the ID of the Amazon Cognito identity.

', 'GetEffectivePoliciesRequest$principal' => '

The principal. Valid principals are CertificateArn (arn:aws:iot:region:accountId:cert/certificateId), thingGroupArn (arn:aws:iot:region:accountId:thinggroup/groupName) and CognitoId (region:id).

', 'ListPrincipalPoliciesRequest$principal' => '

The principal. Valid principals are CertificateArn (arn:aws:iot:region:accountId:cert/certificateId), thingGroupArn (arn:aws:iot:region:accountId:thinggroup/groupName) and CognitoId (region:id).

', 'ListPrincipalThingsRequest$principal' => '

The principal.

', 'TestAuthorizationRequest$principal' => '

The principal. Valid principals are CertificateArn (arn:aws:iot:region:accountId:cert/certificateId), thingGroupArn (arn:aws:iot:region:accountId:thinggroup/groupName) and CognitoId (region:id).

', ], ], 'PrincipalArn' => [ 'base' => NULL, 'refs' => [ 'Principals$member' => NULL, ], ], 'PrincipalId' => [ 'base' => NULL, 'refs' => [ 'TestInvokeAuthorizerResponse$principalId' => '

The principal ID.

', ], ], 'Principals' => [ 'base' => NULL, 'refs' => [ 'ListPolicyPrincipalsResponse$principals' => '

The descriptions of the principals.

', 'ListThingPrincipalsResponse$principals' => '

The principals associated with the thing.

', ], ], 'PrivateKey' => [ 'base' => NULL, 'refs' => [ 'KeyPair$PrivateKey' => '

The private key.

', ], ], 'ProcessingTargetName' => [ 'base' => NULL, 'refs' => [ 'ProcessingTargetNameList$member' => NULL, ], ], 'ProcessingTargetNameList' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$processingTargets' => '

The target devices to which the job execution is being rolled out. This value will be null after the job execution has finished rolling out to all the target devices.

', ], ], 'Protocol' => [ 'base' => NULL, 'refs' => [ 'Protocols$member' => NULL, ], ], 'Protocols' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateRequest$protocols' => '

The protocol used to transfer the OTA update image. Valid values are [HTTP], [MQTT], [HTTP, MQTT]. When both HTTP and MQTT are specified, the target device can choose the protocol.

', 'OTAUpdateInfo$protocols' => '

The protocol used to transfer the OTA update image. Valid values are [HTTP], [MQTT], [HTTP, MQTT]. When both HTTP and MQTT are specified, the target device can choose the protocol.

', ], ], 'ProvisioningHook' => [ 'base' => '

Structure that contains payloadVersion and targetArn.

', 'refs' => [ 'CreateProvisioningTemplateRequest$preProvisioningHook' => '

Creates a pre-provisioning hook template. Only supports template of type FLEET_PROVISIONING. For more information about provisioning template types, see type.

', 'DescribeProvisioningTemplateResponse$preProvisioningHook' => '

Gets information about a pre-provisioned hook.

', 'UpdateProvisioningTemplateRequest$preProvisioningHook' => '

Updates the pre-provisioning hook template. Only supports template of type FLEET_PROVISIONING. For more information about provisioning template types, see type.

', ], ], 'ProvisioningTemplateListing' => [ 'base' => NULL, 'refs' => [ 'ListProvisioningTemplatesResponse$templates' => '

A list of provisioning templates

', ], ], 'ProvisioningTemplateSummary' => [ 'base' => '

A summary of information about a provisioning template.

', 'refs' => [ 'ProvisioningTemplateListing$member' => NULL, ], ], 'ProvisioningTemplateVersionListing' => [ 'base' => NULL, 'refs' => [ 'ListProvisioningTemplateVersionsResponse$versions' => '

The list of provisioning template versions.

', ], ], 'ProvisioningTemplateVersionSummary' => [ 'base' => '

A summary of information about a fleet provision template version.

', 'refs' => [ 'ProvisioningTemplateVersionListing$member' => NULL, ], ], 'PublicKey' => [ 'base' => NULL, 'refs' => [ 'KeyPair$PublicKey' => '

The public key.

', ], ], 'PublicKeyMap' => [ 'base' => NULL, 'refs' => [ 'AuthorizerDescription$tokenSigningPublicKeys' => '

The public keys used to validate the token signature returned by your custom authentication service.

', 'CreateAuthorizerRequest$tokenSigningPublicKeys' => '

The public keys used to verify the digital signature returned by your custom authentication service.

', 'UpdateAuthorizerRequest$tokenSigningPublicKeys' => '

The public keys used to verify the token signature.

', ], ], 'PublishFindingToSnsParams' => [ 'base' => '

Parameters to define a mitigation action that publishes findings to Amazon SNS. You can implement your own custom actions in response to the Amazon SNS messages.

', 'refs' => [ 'MitigationActionParams$publishFindingToSnsParams' => '

Parameters to define a mitigation action that publishes findings to Amazon Simple Notification Service (Amazon SNS. You can implement your own custom actions in response to the Amazon SNS messages.

', ], ], 'PutAssetPropertyValueEntry' => [ 'base' => '

An asset property value entry containing the following information.

', 'refs' => [ 'PutAssetPropertyValueEntryList$member' => NULL, ], ], 'PutAssetPropertyValueEntryList' => [ 'base' => NULL, 'refs' => [ 'IotSiteWiseAction$putAssetPropertyValueEntries' => '

A list of asset property value entries.

', ], ], 'PutItemInput' => [ 'base' => '

The input for the DynamoActionVS action that specifies the DynamoDB table to which the message data will be written.

', 'refs' => [ 'DynamoDBv2Action$putItem' => '

Specifies the DynamoDB table to which the message data will be written. For example:

{ "dynamoDBv2": { "roleArn": "aws:iam:12341251:my-role" "putItem": { "tableName": "my-table" } } }

Each attribute in the message payload will be written to a separate column in the DynamoDB database.

', ], ], 'PutVerificationStateOnViolationRequest' => [ 'base' => NULL, 'refs' => [], ], 'PutVerificationStateOnViolationResponse' => [ 'base' => NULL, 'refs' => [], ], 'Qos' => [ 'base' => NULL, 'refs' => [ 'RepublishAction$qos' => '

The Quality of Service (QoS) level to use when republishing messages. The default value is 0.

', ], ], 'QueryMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListIndicesRequest$maxResults' => '

The maximum number of results to return at one time.

', 'SearchIndexRequest$maxResults' => '

The maximum number of results to return per page at one time. The response might contain fewer results but will never contain more.

', ], ], 'QueryString' => [ 'base' => NULL, 'refs' => [ 'CreateDynamicThingGroupRequest$queryString' => '

The dynamic thing group search query string.

See Query Syntax for information about query string syntax.

', 'CreateDynamicThingGroupResponse$queryString' => '

The dynamic thing group search query string.

', 'CreateFleetMetricRequest$queryString' => '

The search query string.

', 'DescribeFleetMetricResponse$queryString' => '

The search query string.

', 'DescribeThingGroupResponse$queryString' => '

The dynamic thing group search query string.

', 'GetBucketsAggregationRequest$queryString' => '

The search query string.

', 'GetCardinalityRequest$queryString' => '

The search query string.

', 'GetPercentilesRequest$queryString' => '

The search query string.

', 'GetStatisticsRequest$queryString' => '

The query used to search. You can specify "*" for the query string to get the count of all indexed things in your Amazon Web Services account.

', 'SearchIndexRequest$queryString' => '

The search query string. For more information about the search query syntax, see Query syntax.

', 'UpdateDynamicThingGroupRequest$queryString' => '

The dynamic thing group search query string to update.

', 'UpdateFleetMetricRequest$queryString' => '

The search query string.

', ], ], 'QueryVersion' => [ 'base' => NULL, 'refs' => [ 'CreateDynamicThingGroupRequest$queryVersion' => '

The dynamic thing group query version.

Currently one query version is supported: "2017-09-30". If not specified, the query version defaults to this value.

', 'CreateDynamicThingGroupResponse$queryVersion' => '

The dynamic thing group query version.

', 'CreateFleetMetricRequest$queryVersion' => '

The query version.

', 'DescribeFleetMetricResponse$queryVersion' => '

The query version.

', 'DescribeThingGroupResponse$queryVersion' => '

The dynamic thing group query version.

', 'GetBucketsAggregationRequest$queryVersion' => '

The version of the query.

', 'GetCardinalityRequest$queryVersion' => '

The query version.

', 'GetPercentilesRequest$queryVersion' => '

The query version.

', 'GetStatisticsRequest$queryVersion' => '

The version of the query used to search.

', 'SearchIndexRequest$queryVersion' => '

The query version.

', 'UpdateDynamicThingGroupRequest$queryVersion' => '

The dynamic thing group query version to update.

Currently one query version is supported: "2017-09-30". If not specified, the query version defaults to this value.

', 'UpdateFleetMetricRequest$queryVersion' => '

The version of the query.

', ], ], 'QueueUrl' => [ 'base' => NULL, 'refs' => [ 'SqsAction$queueUrl' => '

The URL of the Amazon SQS queue.

', ], ], 'QueuedThings' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$numberOfQueuedThings' => '

The number of things that are awaiting execution of the job.

', ], ], 'RangeKeyField' => [ 'base' => NULL, 'refs' => [ 'DynamoDBAction$rangeKeyField' => '

The range key name.

', ], ], 'RangeKeyValue' => [ 'base' => NULL, 'refs' => [ 'DynamoDBAction$rangeKeyValue' => '

The range key value.

', ], ], 'RateIncreaseCriteria' => [ 'base' => '

Allows you to define a criteria to initiate the increase in rate of rollout for a job.

', 'refs' => [ 'ExponentialRolloutRate$rateIncreaseCriteria' => '

The criteria to initiate the increase in rate of rollout for a job.

', ], ], 'ReasonCode' => [ 'base' => NULL, 'refs' => [ 'CancelJobRequest$reasonCode' => '

(Optional)A reason code string that explains why the job was canceled.

', 'Job$reasonCode' => '

If the job was updated, provides the reason code for the update.

', ], ], 'ReasonForNonCompliance' => [ 'base' => NULL, 'refs' => [ 'AuditFinding$reasonForNonCompliance' => '

The reason the resource was noncompliant.

', ], ], 'ReasonForNonComplianceCode' => [ 'base' => NULL, 'refs' => [ 'AuditFinding$reasonForNonComplianceCode' => '

A code that indicates the reason that the resource was noncompliant.

', 'ReasonForNonComplianceCodes$member' => NULL, ], ], 'ReasonForNonComplianceCodes' => [ 'base' => NULL, 'refs' => [ 'AuditCheckToReasonCodeFilter$value' => NULL, ], ], 'Recursive' => [ 'base' => NULL, 'refs' => [ 'ListAttachedPoliciesRequest$recursive' => '

When true, recursively list attached policies.

', 'ListSecurityProfilesForTargetRequest$recursive' => '

If true, return child groups too.

', 'ListThingsInThingGroupRequest$recursive' => '

When true, list things in this thing group and in all child groups as well.

', ], ], 'RecursiveWithoutDefault' => [ 'base' => NULL, 'refs' => [ 'ListThingGroupsRequest$recursive' => '

If true, return child groups as well.

', ], ], 'Regex' => [ 'base' => NULL, 'refs' => [ 'DocumentParameter$regex' => '

A regular expression of the patterns that need to be replaced in a managed template job document schema.

', ], ], 'RegisterCACertificateRequest' => [ 'base' => '

The input to the RegisterCACertificate operation.

', 'refs' => [], ], 'RegisterCACertificateResponse' => [ 'base' => '

The output from the RegisterCACertificateResponse operation.

', 'refs' => [], ], 'RegisterCertificateRequest' => [ 'base' => '

The input to the RegisterCertificate operation.

', 'refs' => [], ], 'RegisterCertificateResponse' => [ 'base' => '

The output from the RegisterCertificate operation.

', 'refs' => [], ], 'RegisterCertificateWithoutCARequest' => [ 'base' => NULL, 'refs' => [], ], 'RegisterCertificateWithoutCAResponse' => [ 'base' => NULL, 'refs' => [], ], 'RegisterThingRequest' => [ 'base' => NULL, 'refs' => [], ], 'RegisterThingResponse' => [ 'base' => NULL, 'refs' => [], ], 'RegistrationCode' => [ 'base' => NULL, 'refs' => [ 'GetRegistrationCodeResponse$registrationCode' => '

The CA certificate registration code.

', ], ], 'RegistrationCodeValidationException' => [ 'base' => '

The registration code is invalid.

', 'refs' => [], ], 'RegistrationConfig' => [ 'base' => '

The registration configuration.

', 'refs' => [ 'DescribeCACertificateResponse$registrationConfig' => '

Information about the registration configuration.

', 'RegisterCACertificateRequest$registrationConfig' => '

Information about the registration configuration.

', 'UpdateCACertificateRequest$registrationConfig' => '

Information about the registration configuration.

', ], ], 'RegistryMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListBillingGroupsRequest$maxResults' => '

The maximum number of results to return per request.

', 'ListPrincipalThingsRequest$maxResults' => '

The maximum number of results to return in this operation.

', 'ListThingGroupsForThingRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListThingGroupsRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListThingPrincipalsRequest$maxResults' => '

The maximum number of results to return in this operation.

', 'ListThingRegistrationTaskReportsRequest$maxResults' => '

The maximum number of results to return per request.

', 'ListThingRegistrationTasksRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListThingTypesRequest$maxResults' => '

The maximum number of results to return in this operation.

', 'ListThingsInBillingGroupRequest$maxResults' => '

The maximum number of results to return per request.

', 'ListThingsInThingGroupRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListThingsRequest$maxResults' => '

The maximum number of results to return in this operation.

', ], ], 'RegistryS3BucketName' => [ 'base' => NULL, 'refs' => [ 'DescribeThingRegistrationTaskResponse$inputFileBucket' => '

The S3 bucket that contains the input file.

', 'StartThingRegistrationTaskRequest$inputFileBucket' => '

The S3 bucket that contains the input file.

', ], ], 'RegistryS3KeyName' => [ 'base' => NULL, 'refs' => [ 'DescribeThingRegistrationTaskResponse$inputFileKey' => '

The input file key.

', 'StartThingRegistrationTaskRequest$inputFileKey' => '

The name of input file within the S3 bucket. This file contains a newline delimited JSON file. Each line contains the parameter values to provision one device (thing).

', ], ], 'RejectCertificateTransferRequest' => [ 'base' => '

The input for the RejectCertificateTransfer operation.

', 'refs' => [], ], 'RejectedThings' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$numberOfRejectedThings' => '

The number of things that rejected the job.

', ], ], 'RelatedResource' => [ 'base' => '

Information about a related resource.

', 'refs' => [ 'RelatedResources$member' => NULL, ], ], 'RelatedResources' => [ 'base' => NULL, 'refs' => [ 'AuditFinding$relatedResources' => '

The list of related resources.

', 'ListRelatedResourcesForAuditFindingResponse$relatedResources' => '

The related resources.

', ], ], 'RemoveAuthorizerConfig' => [ 'base' => NULL, 'refs' => [ 'UpdateDomainConfigurationRequest$removeAuthorizerConfig' => '

Removes the authorization configuration from a domain.

', ], ], 'RemoveAutoRegistration' => [ 'base' => NULL, 'refs' => [ 'UpdateCACertificateRequest$removeAutoRegistration' => '

If true, removes auto registration.

', ], ], 'RemoveHook' => [ 'base' => NULL, 'refs' => [ 'UpdateProvisioningTemplateRequest$removePreProvisioningHook' => '

Removes pre-provisioning hook template.

', ], ], 'RemoveThingFromBillingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'RemoveThingFromBillingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'RemoveThingFromThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'RemoveThingFromThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'RemoveThingType' => [ 'base' => NULL, 'refs' => [ 'UpdateThingRequest$removeThingType' => '

Remove a thing type association. If true, the association is removed.

', ], ], 'RemovedThings' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$numberOfRemovedThings' => '

The number of things that are no longer scheduled to execute the job because they have been deleted or have been removed from the group that was a target of the job.

', ], ], 'ReplaceDefaultPolicyVersionParams' => [ 'base' => '

Parameters to define a mitigation action that adds a blank policy to restrict permissions.

', 'refs' => [ 'MitigationActionParams$replaceDefaultPolicyVersionParams' => '

Parameters to define a mitigation action that adds a blank policy to restrict permissions.

', ], ], 'ReplaceTopicRuleRequest' => [ 'base' => '

The input for the ReplaceTopicRule operation.

', 'refs' => [], ], 'ReportType' => [ 'base' => NULL, 'refs' => [ 'ListThingRegistrationTaskReportsRequest$reportType' => '

The type of task report.

', 'ListThingRegistrationTaskReportsResponse$reportType' => '

The type of task report.

', ], ], 'RepublishAction' => [ 'base' => '

Describes an action to republish to another topic.

', 'refs' => [ 'Action$republish' => '

Publish to another MQTT topic.

', ], ], 'ReservedDomainConfigurationName' => [ 'base' => NULL, 'refs' => [ 'DescribeDomainConfigurationRequest$domainConfigurationName' => '

The name of the domain configuration.

', 'DescribeDomainConfigurationResponse$domainConfigurationName' => '

The name of the domain configuration.

', 'DomainConfigurationSummary$domainConfigurationName' => '

The name of the domain configuration. This value must be unique to a region.

', 'UpdateDomainConfigurationRequest$domainConfigurationName' => '

The name of the domain configuration to be updated.

', 'UpdateDomainConfigurationResponse$domainConfigurationName' => '

The name of the domain configuration that was updated.

', ], ], 'Resource' => [ 'base' => NULL, 'refs' => [ 'Resources$member' => NULL, ], ], 'ResourceAlreadyExistsException' => [ 'base' => '

The resource already exists.

', 'refs' => [], ], 'ResourceArn' => [ 'base' => NULL, 'refs' => [ 'ListTagsForResourceRequest$resourceArn' => '

The ARN of the resource.

', 'ResourceArns$value' => NULL, 'TagResourceRequest$resourceArn' => '

The ARN of the resource.

', 'UntagResourceRequest$resourceArn' => '

The ARN of the resource.

', ], ], 'ResourceArns' => [ 'base' => NULL, 'refs' => [ 'RegisterThingResponse$resourceArns' => '

ARNs for the generated resources.

', ], ], 'ResourceAttributeKey' => [ 'base' => NULL, 'refs' => [ 'ResourceAttributes$key' => NULL, ], ], 'ResourceAttributeValue' => [ 'base' => NULL, 'refs' => [ 'ResourceAttributes$value' => NULL, ], ], 'ResourceAttributes' => [ 'base' => NULL, 'refs' => [ 'CreatePackageVersionRequest$attributes' => '

Metadata that can be used to define a package version’s configuration. For example, the S3 file location, configuration options that are being sent to the device or fleet.

The combined size of all the attributes on a package version is limited to 3KB.

', 'CreatePackageVersionResponse$attributes' => '

Metadata that were added to the package version that can be used to define a package version’s configuration.

', 'GetPackageVersionResponse$attributes' => '

Metadata that were added to the package version that can be used to define a package version’s configuration.

', 'UpdatePackageVersionRequest$attributes' => '

Metadata that can be used to define a package version’s configuration. For example, the Amazon S3 file location, configuration options that are being sent to the device or fleet.

Note: Attributes can be updated only when the package version is in a draft state.

The combined size of all the attributes on a package version is limited to 3KB.

', ], ], 'ResourceDescription' => [ 'base' => NULL, 'refs' => [ 'CreatePackageRequest$description' => '

A summary of the package being created. This can be used to outline the package\'s contents or purpose.

', 'CreatePackageResponse$description' => '

The package description.

', 'CreatePackageVersionRequest$description' => '

A summary of the package version being created. This can be used to outline the package\'s contents or purpose.

', 'CreatePackageVersionResponse$description' => '

The package version description.

', 'GetPackageResponse$description' => '

The package description.

', 'GetPackageVersionResponse$description' => '

The package version description.

', 'UpdatePackageRequest$description' => '

The package description.

', 'UpdatePackageVersionRequest$description' => '

The package version description.

', ], ], 'ResourceIdentifier' => [ 'base' => '

Information that identifies the noncompliant resource.

', 'refs' => [ 'AuditSuppression$resourceIdentifier' => NULL, 'CreateAuditSuppressionRequest$resourceIdentifier' => NULL, 'DeleteAuditSuppressionRequest$resourceIdentifier' => NULL, 'DescribeAuditSuppressionRequest$resourceIdentifier' => NULL, 'DescribeAuditSuppressionResponse$resourceIdentifier' => NULL, 'ListAuditFindingsRequest$resourceIdentifier' => '

Information identifying the noncompliant resource.

', 'ListAuditSuppressionsRequest$resourceIdentifier' => NULL, 'NonCompliantResource$resourceIdentifier' => '

Information that identifies the noncompliant resource.

', 'RelatedResource$resourceIdentifier' => '

Information that identifies the resource.

', 'UpdateAuditSuppressionRequest$resourceIdentifier' => NULL, ], ], 'ResourceLogicalId' => [ 'base' => NULL, 'refs' => [ 'ResourceArns$key' => NULL, ], ], 'ResourceNotFoundException' => [ 'base' => '

The specified resource does not exist.

', 'refs' => [], ], 'ResourceRegistrationFailureException' => [ 'base' => '

The resource registration failed.

', 'refs' => [], ], 'ResourceType' => [ 'base' => NULL, 'refs' => [ 'NonCompliantResource$resourceType' => '

The type of the noncompliant resource.

', 'RelatedResource$resourceType' => '

The type of resource.

', ], ], 'Resources' => [ 'base' => NULL, 'refs' => [ 'AuthInfo$resources' => '

The resources for which the principal is being authorized to perform the specified action.

', ], ], 'ResponseTopic' => [ 'base' => NULL, 'refs' => [ 'MqttHeaders$responseTopic' => '

A UTF-8 encoded string that\'s used as the topic name for a response message. The response topic is used to describe the topic which the receiver should publish to as part of the request-response flow. The topic must not contain wildcard characters.

For more information, see Response Topic from the MQTT Version 5.0 specification.

Supports substitution templates.

', ], ], 'RetryAttempt' => [ 'base' => NULL, 'refs' => [ 'JobExecutionSummary$retryAttempt' => '

The number that indicates how many retry attempts have been completed for this job on this device.

', ], ], 'RetryCriteria' => [ 'base' => '

The criteria that determines how many retries are allowed for each failure type for a job.

', 'refs' => [ 'RetryCriteriaList$member' => NULL, ], ], 'RetryCriteriaList' => [ 'base' => NULL, 'refs' => [ 'JobExecutionsRetryConfig$criteriaList' => '

The list of criteria that determines how many retries are allowed for each failure type for a job.

', ], ], 'RetryableFailureType' => [ 'base' => NULL, 'refs' => [ 'RetryCriteria$failureType' => '

The type of job execution failures that can initiate a job retry.

', ], ], 'RoleAlias' => [ 'base' => NULL, 'refs' => [ 'CreateRoleAliasRequest$roleAlias' => '

The role alias that points to a role ARN. This allows you to change the role without having to update the device.

', 'CreateRoleAliasResponse$roleAlias' => '

The role alias.

', 'DeleteRoleAliasRequest$roleAlias' => '

The role alias to delete.

', 'DescribeRoleAliasRequest$roleAlias' => '

The role alias to describe.

', 'RoleAliasDescription$roleAlias' => '

The role alias.

', 'RoleAliases$member' => NULL, 'UpdateRoleAliasRequest$roleAlias' => '

The role alias to update.

', 'UpdateRoleAliasResponse$roleAlias' => '

The role alias.

', ], ], 'RoleAliasArn' => [ 'base' => NULL, 'refs' => [ 'CreateRoleAliasResponse$roleAliasArn' => '

The role alias ARN.

', 'ResourceIdentifier$roleAliasArn' => '

The ARN of the role alias that has overly permissive actions.

', 'RoleAliasDescription$roleAliasArn' => '

The ARN of the role alias.

', 'UpdateRoleAliasResponse$roleAliasArn' => '

The role alias ARN.

', ], ], 'RoleAliasDescription' => [ 'base' => '

Role alias description.

', 'refs' => [ 'DescribeRoleAliasResponse$roleAliasDescription' => '

The role alias description.

', ], ], 'RoleAliases' => [ 'base' => NULL, 'refs' => [ 'ListRoleAliasesResponse$roleAliases' => '

The role aliases.

', ], ], 'RoleArn' => [ 'base' => NULL, 'refs' => [ 'AlertTarget$roleArn' => '

The ARN of the role that grants permission to send alerts to the notification target.

', 'AuditNotificationTarget$roleArn' => '

The ARN of the role that grants permission to send notifications to the target.

', 'CreateMitigationActionRequest$roleArn' => '

The ARN of the IAM role that is used to apply the mitigation action.

', 'CreateOTAUpdateRequest$roleArn' => '

The IAM role that grants Amazon Web Services IoT Core access to the Amazon S3, IoT jobs and Amazon Web Services Code Signing resources to create an OTA update job.

', 'CreateProvisioningTemplateRequest$provisioningRoleArn' => '

The role ARN for the role associated with the provisioning template. This IoT role grants permission to provision a device.

', 'CreateRoleAliasRequest$roleArn' => '

The role ARN.

', 'CreateStreamRequest$roleArn' => '

An IAM role that allows the IoT service principal to access your S3 files.

', 'DescribeAccountAuditConfigurationResponse$roleArn' => '

The ARN of the role that grants permission to IoT to access information about your devices, policies, certificates, and other items as required when performing an audit.

On the first call to UpdateAccountAuditConfiguration, this parameter is required.

', 'DescribeMitigationActionResponse$roleArn' => '

The ARN of the IAM role used to apply this action.

', 'DescribeProvisioningTemplateResponse$provisioningRoleArn' => '

The ARN of the role associated with the provisioning template. This IoT role grants permission to provision a device.

', 'DescribeThingRegistrationTaskResponse$roleArn' => '

The role ARN that grants access to the input file bucket.

', 'EnableIoTLoggingParams$roleArnForLogging' => '

The Amazon Resource Name (ARN) of the IAM role used for logging.

', 'MetricsExportConfig$roleArn' => '

This role ARN has permission to publish MQTT messages, after which Device Defender Detect can assume the role and publish messages on your behalf.

', 'MitigationAction$roleArn' => '

The IAM role ARN used to apply this mitigation action.

', 'PresignedUrlConfig$roleArn' => '

The ARN of an IAM role that grants permission to download files from the S3 bucket where the job data/updates are stored. The role must also grant permission for IoT to download the files.

For information about addressing the confused deputy problem, see cross-service confused deputy prevention in the Amazon Web Services IoT Core developer guide.

', 'RegistrationConfig$roleArn' => '

The ARN of the role.

', 'ResourceIdentifier$iamRoleArn' => '

The ARN of the IAM role that has overly permissive actions.

', 'RoleAliasDescription$roleArn' => '

The role ARN.

', 'StartThingRegistrationTaskRequest$roleArn' => '

The IAM role ARN that grants permission the input file.

', 'StreamInfo$roleArn' => '

An IAM role IoT assumes to access your S3 files.

', 'UpdateAccountAuditConfigurationRequest$roleArn' => '

The Amazon Resource Name (ARN) of the role that grants permission to IoT to access information about your devices, policies, certificates, and other items as required when performing an audit.

', 'UpdateMitigationActionRequest$roleArn' => '

The ARN of the IAM role that is used to apply the mitigation action.

', 'UpdateProvisioningTemplateRequest$provisioningRoleArn' => '

The ARN of the role associated with the provisioning template. This IoT role grants permission to provision a device.

', 'UpdateRoleAliasRequest$roleArn' => '

The role ARN.

', 'UpdateStreamRequest$roleArn' => '

An IAM role that allows the IoT service principal assumes to access your S3 files.

', 'VersionUpdateByJobsConfig$roleArn' => '

The Amazon Resource Name (ARN) of the role that grants permission to the IoT jobs service to update the reserved named shadow when the job successfully completes.

', ], ], 'RolloutRatePerMinute' => [ 'base' => NULL, 'refs' => [ 'ExponentialRolloutRate$baseRatePerMinute' => '

The minimum number of things that will be notified of a pending job, per minute at the start of job rollout. This parameter allows you to define the initial rate of rollout.

', ], ], 'RuleArn' => [ 'base' => NULL, 'refs' => [ 'GetTopicRuleResponse$ruleArn' => '

The rule ARN.

', 'TopicRuleListItem$ruleArn' => '

The rule ARN.

', ], ], 'RuleName' => [ 'base' => NULL, 'refs' => [ 'CreateTopicRuleRequest$ruleName' => '

The name of the rule.

', 'DeleteTopicRuleRequest$ruleName' => '

The name of the rule.

', 'DisableTopicRuleRequest$ruleName' => '

The name of the rule to disable.

', 'EnableTopicRuleRequest$ruleName' => '

The name of the topic rule to enable.

', 'GetTopicRuleRequest$ruleName' => '

The name of the rule.

', 'ReplaceTopicRuleRequest$ruleName' => '

The name of the rule.

', 'TopicRule$ruleName' => '

The name of the rule.

', 'TopicRuleListItem$ruleName' => '

The name of the rule.

', ], ], 'S3Action' => [ 'base' => '

Describes an action to write data to an Amazon S3 bucket.

', 'refs' => [ 'Action$s3' => '

Write to an Amazon S3 bucket.

', ], ], 'S3Bucket' => [ 'base' => NULL, 'refs' => [ 'S3Destination$bucket' => '

The S3 bucket that contains the updated firmware.

', 'S3Location$bucket' => '

The S3 bucket.

', ], ], 'S3Destination' => [ 'base' => '

Describes the location of updated firmware in S3.

', 'refs' => [ 'Destination$s3Destination' => '

Describes the location in S3 of the updated firmware.

', ], ], 'S3FileUrl' => [ 'base' => NULL, 'refs' => [ 'S3FileUrlList$member' => NULL, ], ], 'S3FileUrlList' => [ 'base' => NULL, 'refs' => [ 'ListThingRegistrationTaskReportsResponse$resourceLinks' => '

Links to the task resources.

', ], ], 'S3Key' => [ 'base' => NULL, 'refs' => [ 'S3Location$key' => '

The S3 key.

', ], ], 'S3Location' => [ 'base' => '

The S3 location.

', 'refs' => [ 'FileLocation$s3Location' => '

The location of the updated firmware in S3.

', 'StreamFile$s3Location' => '

The location of the file in S3.

', ], ], 'S3Version' => [ 'base' => NULL, 'refs' => [ 'S3Location$version' => '

The S3 bucket version.

', ], ], 'SQL' => [ 'base' => NULL, 'refs' => [ 'TopicRule$sql' => '

The SQL statement used to query the topic. When using a SQL query with multiple lines, be sure to escape the newline characters.

', 'TopicRulePayload$sql' => '

The SQL statement used to query the topic. For more information, see IoT SQL Reference in the IoT Developer Guide.

', ], ], 'SalesforceAction' => [ 'base' => '

Describes an action to write a message to a Salesforce IoT Cloud Input Stream.

', 'refs' => [ 'Action$salesforce' => '

Send a message to a Salesforce IoT Cloud Input Stream.

', ], ], 'SalesforceEndpoint' => [ 'base' => NULL, 'refs' => [ 'SalesforceAction$url' => '

The URL exposed by the Salesforce IoT Cloud Input Stream. The URL is available from the Salesforce IoT Cloud platform after creation of the Input Stream.

', ], ], 'SalesforceToken' => [ 'base' => NULL, 'refs' => [ 'SalesforceAction$token' => '

The token used to authenticate access to the Salesforce IoT Cloud Input Stream. The token is available from the Salesforce IoT Cloud platform after creation of the Input Stream.

', ], ], 'ScheduledAuditArn' => [ 'base' => NULL, 'refs' => [ 'CreateScheduledAuditResponse$scheduledAuditArn' => '

The ARN of the scheduled audit.

', 'DescribeScheduledAuditResponse$scheduledAuditArn' => '

The ARN of the scheduled audit.

', 'ScheduledAuditMetadata$scheduledAuditArn' => '

The ARN of the scheduled audit.

', 'UpdateScheduledAuditResponse$scheduledAuditArn' => '

The ARN of the scheduled audit.

', ], ], 'ScheduledAuditMetadata' => [ 'base' => '

Information about the scheduled audit.

', 'refs' => [ 'ScheduledAuditMetadataList$member' => NULL, ], ], 'ScheduledAuditMetadataList' => [ 'base' => NULL, 'refs' => [ 'ListScheduledAuditsResponse$scheduledAudits' => '

The list of scheduled audits.

', ], ], 'ScheduledAuditName' => [ 'base' => NULL, 'refs' => [ 'CreateScheduledAuditRequest$scheduledAuditName' => '

The name you want to give to the scheduled audit. (Max. 128 chars)

', 'DeleteScheduledAuditRequest$scheduledAuditName' => '

The name of the scheduled audit you want to delete.

', 'DescribeAuditTaskResponse$scheduledAuditName' => '

The name of the scheduled audit (only if the audit was a scheduled audit).

', 'DescribeScheduledAuditRequest$scheduledAuditName' => '

The name of the scheduled audit whose information you want to get.

', 'DescribeScheduledAuditResponse$scheduledAuditName' => '

The name of the scheduled audit.

', 'ScheduledAuditMetadata$scheduledAuditName' => '

The name of the scheduled audit.

', 'UpdateScheduledAuditRequest$scheduledAuditName' => '

The name of the scheduled audit. (Max. 128 chars)

', ], ], 'ScheduledJobRollout' => [ 'base' => '

Displays the next seven maintenance window occurrences and their start times.

', 'refs' => [ 'ScheduledJobRolloutList$member' => NULL, ], ], 'ScheduledJobRolloutList' => [ 'base' => NULL, 'refs' => [ 'Job$scheduledJobRollouts' => '

Displays the next seven maintenance window occurrences and their start times.

', ], ], 'SchedulingConfig' => [ 'base' => '

Specifies the date and time that a job will begin the rollout of the job document to all devices in the target group. Additionally, you can specify the end behavior for each job execution when it reaches the scheduled end time.

', 'refs' => [ 'CreateJobRequest$schedulingConfig' => '

The configuration that allows you to schedule a job for a future date and time in addition to specifying the end behavior for each job execution.

', 'Job$schedulingConfig' => '

The configuration that allows you to schedule a job for a future date and time in addition to specifying the end behavior for each job execution.

', ], ], 'SearchIndexRequest' => [ 'base' => NULL, 'refs' => [], ], 'SearchIndexResponse' => [ 'base' => NULL, 'refs' => [], ], 'SearchableAttributes' => [ 'base' => NULL, 'refs' => [ 'ThingTypeProperties$searchableAttributes' => '

A list of searchable thing attribute names.

', ], ], 'Seconds' => [ 'base' => NULL, 'refs' => [ 'TestInvokeAuthorizerResponse$refreshAfterInSeconds' => '

The number of seconds after which the temporary credentials are refreshed.

', 'TestInvokeAuthorizerResponse$disconnectAfterInSeconds' => '

The number of seconds after which the connection is terminated.

', ], ], 'SecurityGroupId' => [ 'base' => NULL, 'refs' => [ 'SecurityGroupList$member' => NULL, ], ], 'SecurityGroupList' => [ 'base' => NULL, 'refs' => [ 'VpcDestinationConfiguration$securityGroups' => '

The security groups of the VPC destination.

', 'VpcDestinationProperties$securityGroups' => '

The security groups of the VPC destination.

', 'VpcDestinationSummary$securityGroups' => '

The security groups of the VPC destination.

', ], ], 'SecurityPolicy' => [ 'base' => NULL, 'refs' => [ 'TlsConfig$securityPolicy' => '

The security policy for a domain configuration. For more information, see Security policies in the Amazon Web Services IoT Core developer guide.

', ], ], 'SecurityProfileArn' => [ 'base' => NULL, 'refs' => [ 'CreateSecurityProfileResponse$securityProfileArn' => '

The ARN of the security profile.

', 'DescribeSecurityProfileResponse$securityProfileArn' => '

The ARN of the security profile.

', 'SecurityProfileIdentifier$arn' => '

The ARN of the security profile.

', 'UpdateSecurityProfileResponse$securityProfileArn' => '

The ARN of the security profile that was updated.

', ], ], 'SecurityProfileDescription' => [ 'base' => NULL, 'refs' => [ 'CreateSecurityProfileRequest$securityProfileDescription' => '

A description of the security profile.

', 'DescribeSecurityProfileResponse$securityProfileDescription' => '

A description of the security profile (associated with the security profile when it was created or updated).

', 'UpdateSecurityProfileRequest$securityProfileDescription' => '

A description of the security profile.

', 'UpdateSecurityProfileResponse$securityProfileDescription' => '

The description of the security profile.

', ], ], 'SecurityProfileIdentifier' => [ 'base' => '

Identifying information for a Device Defender security profile.

', 'refs' => [ 'SecurityProfileIdentifiers$member' => NULL, 'SecurityProfileTargetMapping$securityProfileIdentifier' => '

Information that identifies the security profile.

', ], ], 'SecurityProfileIdentifiers' => [ 'base' => NULL, 'refs' => [ 'ListSecurityProfilesResponse$securityProfileIdentifiers' => '

A list of security profile identifiers (names and ARNs).

', ], ], 'SecurityProfileName' => [ 'base' => NULL, 'refs' => [ 'ActiveViolation$securityProfileName' => '

The security profile with the behavior is in violation.

', 'AttachSecurityProfileRequest$securityProfileName' => '

The security profile that is attached.

', 'BehaviorModelTrainingSummary$securityProfileName' => '

The name of the security profile.

', 'CreateSecurityProfileRequest$securityProfileName' => '

The name you are giving to the security profile.

', 'CreateSecurityProfileResponse$securityProfileName' => '

The name you gave to the security profile.

', 'DeleteSecurityProfileRequest$securityProfileName' => '

The name of the security profile to be deleted.

', 'DescribeSecurityProfileRequest$securityProfileName' => '

The name of the security profile whose information you want to get.

', 'DescribeSecurityProfileResponse$securityProfileName' => '

The name of the security profile.

', 'DetachSecurityProfileRequest$securityProfileName' => '

The security profile that is detached.

', 'DetectMitigationActionsTaskTarget$securityProfileName' => '

The name of the security profile.

', 'GetBehaviorModelTrainingSummariesRequest$securityProfileName' => '

The name of the security profile.

', 'ListActiveViolationsRequest$securityProfileName' => '

The name of the Device Defender security profile for which violations are listed.

', 'ListTargetsForSecurityProfileRequest$securityProfileName' => '

The security profile.

', 'ListViolationEventsRequest$securityProfileName' => '

A filter to limit results to those alerts generated by the specified security profile.

', 'SecurityProfileIdentifier$name' => '

The name you\'ve given to the security profile.

', 'UpdateSecurityProfileRequest$securityProfileName' => '

The name of the security profile you want to update.

', 'UpdateSecurityProfileResponse$securityProfileName' => '

The name of the security profile that was updated.

', 'ViolationEvent$securityProfileName' => '

The name of the security profile whose behavior was violated.

', ], ], 'SecurityProfileTarget' => [ 'base' => '

A target to which an alert is sent when a security profile behavior is violated.

', 'refs' => [ 'SecurityProfileTargetMapping$target' => '

Information about the target (thing group) associated with the security profile.

', 'SecurityProfileTargets$member' => NULL, ], ], 'SecurityProfileTargetArn' => [ 'base' => NULL, 'refs' => [ 'AttachSecurityProfileRequest$securityProfileTargetArn' => '

The ARN of the target (thing group) to which the security profile is attached.

', 'DetachSecurityProfileRequest$securityProfileTargetArn' => '

The ARN of the thing group from which the security profile is detached.

', 'ListSecurityProfilesForTargetRequest$securityProfileTargetArn' => '

The ARN of the target (thing group) whose attached security profiles you want to get.

', 'SecurityProfileTarget$arn' => '

The ARN of the security profile.

', ], ], 'SecurityProfileTargetMapping' => [ 'base' => '

Information about a security profile and the target associated with it.

', 'refs' => [ 'SecurityProfileTargetMappings$member' => NULL, ], ], 'SecurityProfileTargetMappings' => [ 'base' => NULL, 'refs' => [ 'ListSecurityProfilesForTargetResponse$securityProfileTargetMappings' => '

A list of security profiles and their associated targets.

', ], ], 'SecurityProfileTargets' => [ 'base' => NULL, 'refs' => [ 'ListTargetsForSecurityProfileResponse$securityProfileTargets' => '

The thing groups to which the security profile is attached.

', ], ], 'ServerCertificateArns' => [ 'base' => NULL, 'refs' => [ 'CreateDomainConfigurationRequest$serverCertificateArns' => '

The ARNs of the certificates that IoT passes to the device during the TLS handshake. Currently you can specify only one certificate ARN. This value is not required for Amazon Web Services-managed domains.

', ], ], 'ServerCertificateConfig' => [ 'base' => '

The server certificate configuration.

', 'refs' => [ 'CreateDomainConfigurationRequest$serverCertificateConfig' => '

The server certificate configuration.

', 'DescribeDomainConfigurationResponse$serverCertificateConfig' => '

The server certificate configuration.

', 'UpdateDomainConfigurationRequest$serverCertificateConfig' => '

The server certificate configuration.

', ], ], 'ServerCertificateStatus' => [ 'base' => NULL, 'refs' => [ 'ServerCertificateSummary$serverCertificateStatus' => '

The status of the server certificate.

', ], ], 'ServerCertificateStatusDetail' => [ 'base' => NULL, 'refs' => [ 'ServerCertificateSummary$serverCertificateStatusDetail' => '

Details that explain the status of the server certificate.

', ], ], 'ServerCertificateSummary' => [ 'base' => '

An object that contains information about a server certificate.

', 'refs' => [ 'ServerCertificates$member' => NULL, ], ], 'ServerCertificates' => [ 'base' => NULL, 'refs' => [ 'DescribeDomainConfigurationResponse$serverCertificates' => '

A list containing summary information about the server certificate included in the domain configuration.

', ], ], 'ServerName' => [ 'base' => NULL, 'refs' => [ 'TlsContext$serverName' => '

The value of the serverName key in a TLS authorization request.

', ], ], 'ServiceName' => [ 'base' => NULL, 'refs' => [ 'SigV4Authorization$serviceName' => '

The service name to use while signing with Sig V4.

', ], ], 'ServiceQuotaExceededException' => [ 'base' => '

A limit has been exceeded.

', 'refs' => [], ], 'ServiceType' => [ 'base' => NULL, 'refs' => [ 'CreateDomainConfigurationRequest$serviceType' => '

The type of service delivered by the endpoint.

Amazon Web Services IoT Core currently supports only the DATA service type.

', 'DescribeDomainConfigurationResponse$serviceType' => '

The type of service delivered by the endpoint.

', 'DomainConfigurationSummary$serviceType' => '

The type of service delivered by the endpoint.

', 'ListDomainConfigurationsRequest$serviceType' => '

The type of service delivered by the endpoint.

', ], ], 'ServiceUnavailableException' => [ 'base' => '

The service is temporarily unavailable.

', 'refs' => [], ], 'SetAsActive' => [ 'base' => NULL, 'refs' => [ 'AcceptCertificateTransferRequest$setAsActive' => '

Specifies whether the certificate is active.

', 'CreateCertificateFromCsrRequest$setAsActive' => '

Specifies whether the certificate is active.

', 'CreateKeysAndCertificateRequest$setAsActive' => '

Specifies whether the certificate is active.

', 'RegisterCACertificateRequest$setAsActive' => '

A boolean value that specifies if the CA certificate is set to active.

Valid values: ACTIVE | INACTIVE

', ], ], 'SetAsActiveFlag' => [ 'base' => NULL, 'refs' => [ 'RegisterCertificateRequest$setAsActive' => '

A boolean value that specifies if the certificate is set to active.

Valid values: ACTIVE | INACTIVE

', ], ], 'SetAsDefault' => [ 'base' => NULL, 'refs' => [ 'CreatePolicyVersionRequest$setAsDefault' => '

Specifies whether the policy version is set as the default. When this parameter is true, the new policy version becomes the operative version (that is, the version that is in effect for the certificates to which the policy is attached).

', 'CreateProvisioningTemplateVersionRequest$setAsDefault' => '

Sets a fleet provision template version as the default version.

', ], ], 'SetDefaultAuthorizerRequest' => [ 'base' => NULL, 'refs' => [], ], 'SetDefaultAuthorizerResponse' => [ 'base' => NULL, 'refs' => [], ], 'SetDefaultPolicyVersionRequest' => [ 'base' => '

The input for the SetDefaultPolicyVersion operation.

', 'refs' => [], ], 'SetLoggingOptionsRequest' => [ 'base' => '

The input for the SetLoggingOptions operation.

', 'refs' => [], ], 'SetV2LoggingLevelRequest' => [ 'base' => NULL, 'refs' => [], ], 'SetV2LoggingOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ShadowName' => [ 'base' => NULL, 'refs' => [ 'NamedShadowNamesFilter$member' => NULL, ], ], 'SigV4Authorization' => [ 'base' => '

For more information, see Signature Version 4 signing process.

', 'refs' => [ 'HttpAuthorization$sigv4' => '

Use Sig V4 authorization. For more information, see Signature Version 4 Signing Process.

', ], ], 'Signature' => [ 'base' => NULL, 'refs' => [ 'CodeSigningSignature$inlineDocument' => '

A base64 encoded binary representation of the code signing signature.

', ], ], 'SignatureAlgorithm' => [ 'base' => NULL, 'refs' => [ 'CustomCodeSigning$signatureAlgorithm' => '

The signature algorithm used to code sign the file. You can use a string as the algorithm name if the target over-the-air (OTA) update devices are able to verify the signature that was generated using the same signature algorithm. For example, FreeRTOS uses ECDSA or RSA, so you can pass either of them based on which was used for generating the signature.

', ], ], 'SigningJobId' => [ 'base' => NULL, 'refs' => [ 'CodeSigning$awsSignerJobId' => '

The ID of the AWSSignerJob which was created to sign the file.

', ], ], 'SigningProfileName' => [ 'base' => NULL, 'refs' => [ 'StartSigningJobParameter$signingProfileName' => '

The code-signing profile name.

', ], ], 'SigningProfileParameter' => [ 'base' => '

Describes the code-signing profile.

', 'refs' => [ 'StartSigningJobParameter$signingProfileParameter' => '

Describes the code-signing profile.

', ], ], 'SigningRegion' => [ 'base' => NULL, 'refs' => [ 'SigV4Authorization$signingRegion' => '

The signing region.

', ], ], 'SkippedFindingsCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatisticsForAuditCheck$skippedFindingsCount' => '

The number of findings skipped because of filter conditions provided in the parameters to the command.

', ], ], 'SkyfallMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListV2LoggingLevelsRequest$maxResults' => '

The maximum number of results to return at one time.

', ], ], 'SnsAction' => [ 'base' => '

Describes an action to publish to an Amazon SNS topic.

', 'refs' => [ 'Action$sns' => '

Publish to an Amazon SNS topic.

', ], ], 'SnsTopicArn' => [ 'base' => NULL, 'refs' => [ 'PublishFindingToSnsParams$topicArn' => '

The ARN of the topic to which you want to publish the findings.

', ], ], 'SqlParseException' => [ 'base' => '

The Rule-SQL expression can\'t be parsed correctly.

', 'refs' => [], ], 'SqsAction' => [ 'base' => '

Describes an action to publish data to an Amazon SQS queue.

', 'refs' => [ 'Action$sqs' => '

Publish to an Amazon SQS queue.

', ], ], 'StartAuditMitigationActionsTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartAuditMitigationActionsTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'StartDetectMitigationActionsTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartDetectMitigationActionsTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'StartOnDemandAuditTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartOnDemandAuditTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'StartSigningJobParameter' => [ 'base' => '

Information required to start a signing job.

', 'refs' => [ 'CodeSigning$startSigningJobParameter' => '

Describes the code-signing job.

', ], ], 'StartThingRegistrationTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartThingRegistrationTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'StateMachineName' => [ 'base' => NULL, 'refs' => [ 'StepFunctionsAction$stateMachineName' => '

The name of the Step Functions state machine whose execution will be started.

', ], ], 'StateReason' => [ 'base' => NULL, 'refs' => [ 'CloudwatchAlarmAction$stateReason' => '

The reason for the alarm change.

', ], ], 'StateValue' => [ 'base' => NULL, 'refs' => [ 'CloudwatchAlarmAction$stateValue' => '

The value of the alarm state. Acceptable values are: OK, ALARM, INSUFFICIENT_DATA.

', ], ], 'StatisticalThreshold' => [ 'base' => '

A statistical ranking (percentile) that indicates a threshold value by which a behavior is determined to be in compliance or in violation of the behavior.

', 'refs' => [ 'BehaviorCriteria$statisticalThreshold' => '

A statistical ranking (percentile)that indicates a threshold value by which a behavior is determined to be in compliance or in violation of the behavior.

', ], ], 'Statistics' => [ 'base' => '

A map of key-value pairs for all supported statistics. For issues with missing or unexpected values for this API, consult Fleet indexing troubleshooting guide.

', 'refs' => [ 'GetStatisticsResponse$statistics' => '

The statistics returned by the Fleet Indexing service based on the query and aggregation field.

', ], ], 'Status' => [ 'base' => NULL, 'refs' => [ 'DescribeThingRegistrationTaskResponse$status' => '

The status of the bulk thing provisioning task.

', 'ListThingRegistrationTasksRequest$status' => '

The status of the bulk thing provisioning task.

', ], ], 'StdDeviation' => [ 'base' => NULL, 'refs' => [ 'Statistics$stdDeviation' => '

The standard deviation of the aggregated field values.

', ], ], 'StepFunctionsAction' => [ 'base' => '

Starts execution of a Step Functions state machine.

', 'refs' => [ 'Action$stepFunctions' => '

Starts execution of a Step Functions state machine.

', ], ], 'StopThingRegistrationTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'StopThingRegistrationTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'Stream' => [ 'base' => '

Describes a group of files that can be streamed.

', 'refs' => [ 'FileLocation$stream' => '

The stream that contains the OTA update.

', ], ], 'StreamArn' => [ 'base' => NULL, 'refs' => [ 'CreateStreamResponse$streamArn' => '

The stream ARN.

', 'StreamInfo$streamArn' => '

The stream ARN.

', 'StreamSummary$streamArn' => '

The stream ARN.

', 'UpdateStreamResponse$streamArn' => '

The stream ARN.

', ], ], 'StreamDescription' => [ 'base' => NULL, 'refs' => [ 'CreateStreamRequest$description' => '

A description of the stream.

', 'CreateStreamResponse$description' => '

A description of the stream.

', 'StreamInfo$description' => '

The description of the stream.

', 'StreamSummary$description' => '

A description of the stream.

', 'UpdateStreamRequest$description' => '

The description of the stream.

', 'UpdateStreamResponse$description' => '

A description of the stream.

', ], ], 'StreamFile' => [ 'base' => '

Represents a file to stream.

', 'refs' => [ 'StreamFiles$member' => NULL, ], ], 'StreamFiles' => [ 'base' => NULL, 'refs' => [ 'CreateStreamRequest$files' => '

The files to stream.

', 'StreamInfo$files' => '

The files to stream.

', 'UpdateStreamRequest$files' => '

The files associated with the stream.

', ], ], 'StreamId' => [ 'base' => NULL, 'refs' => [ 'CreateStreamRequest$streamId' => '

The stream ID.

', 'CreateStreamResponse$streamId' => '

The stream ID.

', 'DeleteStreamRequest$streamId' => '

The stream ID.

', 'DescribeStreamRequest$streamId' => '

The stream ID.

', 'Stream$streamId' => '

The stream ID.

', 'StreamInfo$streamId' => '

The stream ID.

', 'StreamSummary$streamId' => '

The stream ID.

', 'UpdateStreamRequest$streamId' => '

The stream ID.

', 'UpdateStreamResponse$streamId' => '

The stream ID.

', ], ], 'StreamInfo' => [ 'base' => '

Information about a stream.

', 'refs' => [ 'DescribeStreamResponse$streamInfo' => '

Information about the stream.

', ], ], 'StreamName' => [ 'base' => NULL, 'refs' => [ 'KinesisAction$streamName' => '

The name of the Amazon Kinesis stream.

', ], ], 'StreamSummary' => [ 'base' => '

A summary of a stream.

', 'refs' => [ 'StreamsSummary$member' => NULL, ], ], 'StreamVersion' => [ 'base' => NULL, 'refs' => [ 'CreateStreamResponse$streamVersion' => '

The version of the stream.

', 'StreamInfo$streamVersion' => '

The stream version.

', 'StreamSummary$streamVersion' => '

The stream version.

', 'UpdateStreamResponse$streamVersion' => '

The stream version.

', ], ], 'StreamsSummary' => [ 'base' => NULL, 'refs' => [ 'ListStreamsResponse$streams' => '

A list of streams.

', ], ], 'String' => [ 'base' => NULL, 'refs' => [ 'ClientProperties$key' => NULL, 'ClientProperties$value' => NULL, 'CloudwatchMetricAction$metricNamespace' => '

The CloudWatch metric namespace name.

', 'CloudwatchMetricAction$metricName' => '

The CloudWatch metric name.

', 'CloudwatchMetricAction$metricValue' => '

The CloudWatch metric value.

', 'CloudwatchMetricAction$metricUnit' => '

The metric unit supported by CloudWatch.

', 'CloudwatchMetricAction$metricTimestamp' => '

An optional Unix timestamp.

', 'CreateTopicRuleRequest$tags' => '

Metadata which can be used to manage the topic rule.

For URI Request parameters use format: ...key1=value1&key2=value2...

For the CLI command-line parameter use format: --tags "key1=value1&key2=value2..."

For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."

', 'KafkaAction$topic' => '

The Kafka topic for messages to be sent to the Kafka broker.

', 'KafkaAction$key' => '

The Kafka message key.

', 'KafkaAction$partition' => '

The Kafka message partition.

', 'LocationAction$trackerName' => '

The name of the tracker resource in Amazon Location in which the location is updated.

', 'LocationAction$deviceId' => '

The unique ID of the device providing the location data.

', 'LocationAction$latitude' => '

A string that evaluates to a double value that represents the latitude of the device\'s location.

', 'LocationAction$longitude' => '

A string that evaluates to a double value that represents the longitude of the device\'s location.

', 'LocationTimestamp$value' => '

An expression that returns a long epoch time value.

', 'LocationTimestamp$unit' => '

The precision of the timestamp value that results from the expression described in value.

Valid values: SECONDS | MILLISECONDS | MICROSECONDS | NANOSECONDS. The default is MILLISECONDS.

', 'StringMap$key' => NULL, 'StringMap$value' => NULL, 'TopicRuleDestination$statusReason' => '

Additional details or reason why the topic rule destination is in the current status.

', 'TopicRuleDestinationSummary$statusReason' => '

The reason the topic rule destination is in the current status.

', ], ], 'StringDateTime' => [ 'base' => NULL, 'refs' => [ 'ScheduledJobRollout$startTime' => '

Displays the start times of the next seven maintenance window occurrences.

', 'SchedulingConfig$startTime' => '

The time a job will begin rollout of the job document to all devices in the target group for a job. The startTime can be scheduled up to a year in advance and must be scheduled a minimum of thirty minutes from the current time. The date and time format for the startTime is YYYY-MM-DD for the date and HH:MM for the time.

For more information on the syntax for startTime when using an API command or the Command Line Interface, see Timestamp.

', 'SchedulingConfig$endTime' => '

The time a job will stop rollout of the job document to all devices in the target group for a job. The endTime must take place no later than two years from the current time and be scheduled a minimum of thirty minutes from the current time. The minimum duration between startTime and endTime is thirty minutes. The maximum duration between startTime and endTime is two years. The date and time format for the endTime is YYYY-MM-DD for the date and HH:MM for the time.

For more information on the syntax for endTime when using an API command or the Command Line Interface, see Timestamp.

', ], ], 'StringList' => [ 'base' => NULL, 'refs' => [ 'MetricValue$strings' => '

The string values of a metric.

', ], ], 'StringMap' => [ 'base' => NULL, 'refs' => [ 'NonCompliantResource$additionalInfo' => '

Other information about the noncompliant resource.

', 'RelatedResource$additionalInfo' => '

Other information about the resource.

', ], ], 'SubnetId' => [ 'base' => NULL, 'refs' => [ 'SubnetIdList$member' => NULL, ], ], 'SubnetIdList' => [ 'base' => NULL, 'refs' => [ 'VpcDestinationConfiguration$subnetIds' => '

The subnet IDs of the VPC destination.

', 'VpcDestinationProperties$subnetIds' => '

The subnet IDs of the VPC destination.

', 'VpcDestinationSummary$subnetIds' => '

The subnet IDs of the VPC destination.

', ], ], 'SucceededFindingsCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatisticsForAuditCheck$succeededFindingsCount' => '

The number of findings for which all mitigation actions succeeded when applied.

', ], ], 'SucceededThings' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$numberOfSucceededThings' => '

The number of things which successfully completed the job.

', ], ], 'Sum' => [ 'base' => NULL, 'refs' => [ 'Statistics$sum' => '

The sum of the aggregated field values.

', ], ], 'SumOfSquares' => [ 'base' => NULL, 'refs' => [ 'Statistics$sumOfSquares' => '

The sum of the squares of the aggregated field values.

', ], ], 'SuppressAlerts' => [ 'base' => NULL, 'refs' => [ 'Behavior$suppressAlerts' => '

Suppresses alerts.

', ], ], 'SuppressIndefinitely' => [ 'base' => NULL, 'refs' => [ 'AuditSuppression$suppressIndefinitely' => '

Indicates whether a suppression should exist indefinitely or not.

', 'CreateAuditSuppressionRequest$suppressIndefinitely' => '

Indicates whether a suppression should exist indefinitely or not.

', 'DescribeAuditSuppressionResponse$suppressIndefinitely' => '

Indicates whether a suppression should exist indefinitely or not.

', 'UpdateAuditSuppressionRequest$suppressIndefinitely' => '

Indicates whether a suppression should exist indefinitely or not.

', ], ], 'SuppressedNonCompliantResourcesCount' => [ 'base' => NULL, 'refs' => [ 'AuditCheckDetails$suppressedNonCompliantResourcesCount' => '

Describes how many of the non-compliant resources created during the evaluation of an audit check were marked as suppressed.

', ], ], 'TableName' => [ 'base' => NULL, 'refs' => [ 'DynamoDBAction$tableName' => '

The name of the DynamoDB table.

', 'PutItemInput$tableName' => '

The table where the message data will be written.

', ], ], 'Tag' => [ 'base' => '

A set of key/value pairs that are used to manage the resource.

', 'refs' => [ 'TagList$member' => NULL, ], ], 'TagKey' => [ 'base' => NULL, 'refs' => [ 'Tag$Key' => '

The tag\'s key.

', 'TagKeyList$member' => NULL, 'TagMap$key' => NULL, ], ], 'TagKeyList' => [ 'base' => NULL, 'refs' => [ 'UntagResourceRequest$tagKeys' => '

A list of the keys of the tags to be removed from the resource.

', ], ], 'TagList' => [ 'base' => NULL, 'refs' => [ 'CreateAuthorizerRequest$tags' => '

Metadata which can be used to manage the custom authorizer.

For URI Request parameters use format: ...key1=value1&key2=value2...

For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..."

For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."

', 'CreateBillingGroupRequest$tags' => '

Metadata which can be used to manage the billing group.

', 'CreateCertificateProviderRequest$tags' => '

Metadata which can be used to manage the certificate provider.

', 'CreateCustomMetricRequest$tags' => '

Metadata that can be used to manage the custom metric.

', 'CreateDimensionRequest$tags' => '

Metadata that can be used to manage the dimension.

', 'CreateDomainConfigurationRequest$tags' => '

Metadata which can be used to manage the domain configuration.

For URI Request parameters use format: ...key1=value1&key2=value2...

For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..."

For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."

', 'CreateDynamicThingGroupRequest$tags' => '

Metadata which can be used to manage the dynamic thing group.

', 'CreateFleetMetricRequest$tags' => '

Metadata, which can be used to manage the fleet metric.

', 'CreateJobRequest$tags' => '

Metadata which can be used to manage the job.

', 'CreateJobTemplateRequest$tags' => '

Metadata that can be used to manage the job template.

', 'CreateMitigationActionRequest$tags' => '

Metadata that can be used to manage the mitigation action.

', 'CreateOTAUpdateRequest$tags' => '

Metadata which can be used to manage updates.

', 'CreatePolicyRequest$tags' => '

Metadata which can be used to manage the policy.

For URI Request parameters use format: ...key1=value1&key2=value2...

For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..."

For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."

', 'CreateProvisioningTemplateRequest$tags' => '

Metadata which can be used to manage the provisioning template.

For URI Request parameters use format: ...key1=value1&key2=value2...

For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..."

For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."

', 'CreateRoleAliasRequest$tags' => '

Metadata which can be used to manage the role alias.

For URI Request parameters use format: ...key1=value1&key2=value2...

For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..."

For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."

', 'CreateScheduledAuditRequest$tags' => '

Metadata that can be used to manage the scheduled audit.

', 'CreateSecurityProfileRequest$tags' => '

Metadata that can be used to manage the security profile.

', 'CreateStreamRequest$tags' => '

Metadata which can be used to manage streams.

', 'CreateThingGroupRequest$tags' => '

Metadata which can be used to manage the thing group.

', 'CreateThingTypeRequest$tags' => '

Metadata which can be used to manage the thing type.

', 'ListTagsForResourceResponse$tags' => '

The list of tags assigned to the resource.

', 'RegisterCACertificateRequest$tags' => '

Metadata which can be used to manage the CA certificate.

For URI Request parameters use format: ...key1=value1&key2=value2...

For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..."

For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."

', 'TagResourceRequest$tags' => '

The new or modified tags for the resource.

', ], ], 'TagMap' => [ 'base' => NULL, 'refs' => [ 'CreatePackageRequest$tags' => '

Metadata that can be used to manage the package.

', 'CreatePackageVersionRequest$tags' => '

Metadata that can be used to manage the package version.

', ], ], 'TagResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'TagResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'TagValue' => [ 'base' => NULL, 'refs' => [ 'Tag$Value' => '

The tag\'s value.

', 'TagMap$value' => NULL, ], ], 'Target' => [ 'base' => NULL, 'refs' => [ 'Targets$member' => NULL, ], ], 'TargetArn' => [ 'base' => NULL, 'refs' => [ 'AuditNotificationTarget$targetArn' => '

The ARN of the target (SNS topic) to which audit notifications are sent.

', 'JobTargets$member' => NULL, 'ProvisioningHook$targetArn' => '

The ARN of the target function.

Note: Only Lambda functions are currently supported.

', ], ], 'TargetAuditCheckNames' => [ 'base' => NULL, 'refs' => [ 'CreateScheduledAuditRequest$targetCheckNames' => '

Which checks are performed during the scheduled audit. Checks must be enabled for your account. (Use DescribeAccountAuditConfiguration to see the list of all checks, including those that are enabled or use UpdateAccountAuditConfiguration to select which checks are enabled.)

', 'DescribeScheduledAuditResponse$targetCheckNames' => '

Which checks are performed during the scheduled audit. Checks must be enabled for your account. (Use DescribeAccountAuditConfiguration to see the list of all checks, including those that are enabled or use UpdateAccountAuditConfiguration to select which checks are enabled.)

', 'StartOnDemandAuditTaskRequest$targetCheckNames' => '

Which checks are performed during the audit. The checks you specify must be enabled for your account or an exception occurs. Use DescribeAccountAuditConfiguration to see the list of all checks, including those that are enabled or UpdateAccountAuditConfiguration to select which checks are enabled.

', 'UpdateScheduledAuditRequest$targetCheckNames' => '

Which checks are performed during the scheduled audit. Checks must be enabled for your account. (Use DescribeAccountAuditConfiguration to see the list of all checks, including those that are enabled or use UpdateAccountAuditConfiguration to select which checks are enabled.)

', ], ], 'TargetFieldName' => [ 'base' => NULL, 'refs' => [ 'GeoLocationTarget$name' => '

The name of the geolocation target field. If the target field is part of a named shadow, you must select the named shadow using the namedShadow filter.

', ], ], 'TargetFieldOrder' => [ 'base' => NULL, 'refs' => [ 'GeoLocationTarget$order' => '

The order of the geolocation target field. This field is optional. The default value is LatLon.

', ], ], 'TargetSelection' => [ 'base' => NULL, 'refs' => [ 'CreateJobRequest$targetSelection' => '

Specifies whether the job will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the job (SNAPSHOT). If continuous, the job may also be run on a thing when a change is detected in a target. For example, a job will run on a thing when the thing is added to a target group, even after the job was completed by all things originally in the group.

We recommend that you use continuous jobs instead of snapshot jobs for dynamic thing group targets. By using continuous jobs, devices that join the group receive the job execution even after the job has been created.

', 'CreateOTAUpdateRequest$targetSelection' => '

Specifies whether the update will continue to run (CONTINUOUS), or will be complete after all the things specified as targets have completed the update (SNAPSHOT). If continuous, the update may also be run on a thing when a change is detected in a target. For example, an update will run on a thing when the thing is added to a target group, even after the update was completed by all things originally in the group. Valid values: CONTINUOUS | SNAPSHOT.

', 'Job$targetSelection' => '

Specifies whether the job will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the job (SNAPSHOT). If continuous, the job may also be run on a thing when a change is detected in a target. For example, a job will run on a device when the thing representing the device is added to a target group, even after the job was completed by all things originally in the group.

We recommend that you use continuous jobs instead of snapshot jobs for dynamic thing group targets. By using continuous jobs, devices that join the group receive the job execution even after the job has been created.

', 'JobSummary$targetSelection' => '

Specifies whether the job will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the job (SNAPSHOT). If continuous, the job may also be run on a thing when a change is detected in a target. For example, a job will run on a thing when the thing is added to a target group, even after the job was completed by all things originally in the group.

We recommend that you use continuous jobs instead of snapshot jobs for dynamic thing group targets. By using continuous jobs, devices that join the group receive the job execution even after the job has been created.

', 'ListJobsRequest$targetSelection' => '

Specifies whether the job will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the job (SNAPSHOT). If continuous, the job may also be run on a thing when a change is detected in a target. For example, a job will run on a thing when the thing is added to a target group, even after the job was completed by all things originally in the group.

We recommend that you use continuous jobs instead of snapshot jobs for dynamic thing group targets. By using continuous jobs, devices that join the group receive the job execution even after the job has been created.

', 'OTAUpdateInfo$targetSelection' => '

Specifies whether the OTA update will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the OTA update (SNAPSHOT). If continuous, the OTA update may also be run on a thing when a change is detected in a target. For example, an OTA update will run on a thing when the thing is added to a target group, even after the OTA update was completed by all things originally in the group.

', ], ], 'TargetViolationIdsForDetectMitigationActions' => [ 'base' => NULL, 'refs' => [ 'DetectMitigationActionsTaskTarget$violationIds' => '

The unique identifiers of the violations.

', ], ], 'Targets' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateRequest$targets' => '

The devices targeted to receive OTA updates.

', 'OTAUpdateInfo$targets' => '

The targets of the OTA update.

', ], ], 'TaskAlreadyExistsException' => [ 'base' => '

This exception occurs if you attempt to start a task with the same task-id as an existing task but with a different clientRequestToken.

', 'refs' => [], ], 'TaskId' => [ 'base' => NULL, 'refs' => [ 'DescribeThingRegistrationTaskRequest$taskId' => '

The task ID.

', 'DescribeThingRegistrationTaskResponse$taskId' => '

The task ID.

', 'ListThingRegistrationTaskReportsRequest$taskId' => '

The id of the task.

', 'StartThingRegistrationTaskResponse$taskId' => '

The bulk thing provisioning task ID.

', 'StopThingRegistrationTaskRequest$taskId' => '

The bulk thing provisioning task ID.

', 'TaskIdList$member' => NULL, ], ], 'TaskIdList' => [ 'base' => NULL, 'refs' => [ 'ListThingRegistrationTasksResponse$taskIds' => '

A list of bulk thing provisioning task IDs.

', ], ], 'TaskStatistics' => [ 'base' => '

Statistics for the checks performed during the audit.

', 'refs' => [ 'DescribeAuditTaskResponse$taskStatistics' => '

Statistical information about the audit.

', ], ], 'TaskStatisticsForAuditCheck' => [ 'base' => '

Provides summary counts of how many tasks for findings are in a particular state. This information is included in the response from DescribeAuditMitigationActionsTask.

', 'refs' => [ 'AuditMitigationActionsTaskStatistics$value' => NULL, ], ], 'TemplateArn' => [ 'base' => NULL, 'refs' => [ 'CreateProvisioningTemplateResponse$templateArn' => '

The ARN that identifies the provisioning template.

', 'CreateProvisioningTemplateVersionResponse$templateArn' => '

The ARN that identifies the provisioning template.

', 'DescribeProvisioningTemplateResponse$templateArn' => '

The ARN of the provisioning template.

', 'ProvisioningTemplateSummary$templateArn' => '

The ARN of the provisioning template.

', ], ], 'TemplateBody' => [ 'base' => NULL, 'refs' => [ 'CreateProvisioningTemplateRequest$templateBody' => '

The JSON formatted contents of the provisioning template.

', 'CreateProvisioningTemplateVersionRequest$templateBody' => '

The JSON formatted contents of the provisioning template.

', 'DescribeProvisioningTemplateResponse$templateBody' => '

The JSON formatted contents of the provisioning template.

', 'DescribeProvisioningTemplateVersionResponse$templateBody' => '

The JSON formatted contents of the provisioning template version.

', 'DescribeThingRegistrationTaskResponse$templateBody' => '

The task\'s template.

', 'RegisterThingRequest$templateBody' => '

The provisioning template. See Provisioning Devices That Have Device Certificates for more information.

', 'RegistrationConfig$templateBody' => '

The template body.

', 'StartThingRegistrationTaskRequest$templateBody' => '

The provisioning template.

', ], ], 'TemplateDescription' => [ 'base' => NULL, 'refs' => [ 'CreateProvisioningTemplateRequest$description' => '

The description of the provisioning template.

', 'DescribeProvisioningTemplateResponse$description' => '

The description of the provisioning template.

', 'ProvisioningTemplateSummary$description' => '

The description of the provisioning template.

', 'UpdateProvisioningTemplateRequest$description' => '

The description of the provisioning template.

', ], ], 'TemplateName' => [ 'base' => NULL, 'refs' => [ 'CreateProvisioningClaimRequest$templateName' => '

The name of the provisioning template to use.

', 'CreateProvisioningTemplateRequest$templateName' => '

The name of the provisioning template.

', 'CreateProvisioningTemplateResponse$templateName' => '

The name of the provisioning template.

', 'CreateProvisioningTemplateVersionRequest$templateName' => '

The name of the provisioning template.

', 'CreateProvisioningTemplateVersionResponse$templateName' => '

The name of the provisioning template.

', 'DeleteProvisioningTemplateRequest$templateName' => '

The name of the fleet provision template to delete.

', 'DeleteProvisioningTemplateVersionRequest$templateName' => '

The name of the provisioning template version to delete.

', 'DescribeProvisioningTemplateRequest$templateName' => '

The name of the provisioning template.

', 'DescribeProvisioningTemplateResponse$templateName' => '

The name of the provisioning template.

', 'DescribeProvisioningTemplateVersionRequest$templateName' => '

The template name.

', 'ListCACertificatesRequest$templateName' => '

The name of the provisioning template.

', 'ListProvisioningTemplateVersionsRequest$templateName' => '

The name of the provisioning template.

', 'ProvisioningTemplateSummary$templateName' => '

The name of the provisioning template.

', 'RegistrationConfig$templateName' => '

The name of the provisioning template.

', 'UpdateProvisioningTemplateRequest$templateName' => '

The name of the provisioning template.

', ], ], 'TemplateType' => [ 'base' => NULL, 'refs' => [ 'CreateProvisioningTemplateRequest$type' => '

The type you define in a provisioning template. You can create a template with only one type. You can\'t change the template type after its creation. The default value is FLEET_PROVISIONING. For more information about provisioning template, see: Provisioning template.

', 'DescribeProvisioningTemplateResponse$type' => '

The type you define in a provisioning template. You can create a template with only one type. You can\'t change the template type after its creation. The default value is FLEET_PROVISIONING. For more information about provisioning template, see: Provisioning template.

', 'ProvisioningTemplateSummary$type' => '

The type you define in a provisioning template. You can create a template with only one type. You can\'t change the template type after its creation. The default value is FLEET_PROVISIONING. For more information about provisioning template, see: Provisioning template.

', ], ], 'TemplateVersionId' => [ 'base' => NULL, 'refs' => [ 'CreateProvisioningTemplateResponse$defaultVersionId' => '

The default version of the provisioning template.

', 'CreateProvisioningTemplateVersionResponse$versionId' => '

The version of the provisioning template.

', 'DeleteProvisioningTemplateVersionRequest$versionId' => '

The provisioning template version ID to delete.

', 'DescribeProvisioningTemplateResponse$defaultVersionId' => '

The default fleet template version ID.

', 'DescribeProvisioningTemplateVersionRequest$versionId' => '

The provisioning template version ID.

', 'DescribeProvisioningTemplateVersionResponse$versionId' => '

The provisioning template version ID.

', 'ProvisioningTemplateVersionSummary$versionId' => '

The ID of the fleet provisioning template version.

', 'UpdateProvisioningTemplateRequest$defaultVersionId' => '

The ID of the default provisioning template version.

', ], ], 'TermsAggregation' => [ 'base' => '

Performs an aggregation that will return a list of buckets. The list of buckets is a ranked list of the number of occurrences of an aggregation field value.

', 'refs' => [ 'BucketsAggregationType$termsAggregation' => '

Performs an aggregation that will return a list of buckets. The list of buckets is a ranked list of the number of occurrences of an aggregation field value.

', ], ], 'TestAuthorizationRequest' => [ 'base' => NULL, 'refs' => [], ], 'TestAuthorizationResponse' => [ 'base' => NULL, 'refs' => [], ], 'TestInvokeAuthorizerRequest' => [ 'base' => NULL, 'refs' => [], ], 'TestInvokeAuthorizerResponse' => [ 'base' => NULL, 'refs' => [], ], 'ThingArn' => [ 'base' => NULL, 'refs' => [ 'AddThingToBillingGroupRequest$thingArn' => '

The ARN of the thing to be added to the billing group.

', 'AddThingToThingGroupRequest$thingArn' => '

The ARN of the thing to add to a group.

', 'CreateThingResponse$thingArn' => '

The ARN of the new thing.

', 'DescribeThingResponse$thingArn' => '

The ARN of the thing to describe.

', 'JobExecution$thingArn' => '

The ARN of the thing on which the job execution is running.

', 'JobExecutionSummaryForJob$thingArn' => '

The ARN of the thing on which the job execution is running.

', 'RemoveThingFromBillingGroupRequest$thingArn' => '

The ARN of the thing to be removed from the billing group.

', 'RemoveThingFromThingGroupRequest$thingArn' => '

The ARN of the thing to remove from the group.

', 'ThingAttribute$thingArn' => '

The thing ARN.

', ], ], 'ThingAttribute' => [ 'base' => '

The properties of the thing, including thing name, thing type name, and a list of thing attributes.

', 'refs' => [ 'ThingAttributeList$member' => NULL, ], ], 'ThingAttributeList' => [ 'base' => NULL, 'refs' => [ 'ListThingsResponse$things' => '

The things.

', ], ], 'ThingConnectivity' => [ 'base' => '

The connectivity status of the thing.

', 'refs' => [ 'ThingDocument$connectivity' => '

Indicates whether the thing is connected to the Amazon Web Services IoT Core service.

', ], ], 'ThingConnectivityIndexingMode' => [ 'base' => NULL, 'refs' => [ 'ThingIndexingConfiguration$thingConnectivityIndexingMode' => '

Thing connectivity indexing mode. Valid values are:

  • STATUS – Your thing index contains connectivity status. To enable thing connectivity indexing, thingIndexMode must not be set to OFF.

  • OFF - Thing connectivity status indexing is disabled.

', ], ], 'ThingDocument' => [ 'base' => '

The thing search index document.

', 'refs' => [ 'ThingDocumentList$member' => NULL, ], ], 'ThingDocumentList' => [ 'base' => NULL, 'refs' => [ 'SearchIndexResponse$things' => '

The things that match the search query.

', ], ], 'ThingGroupArn' => [ 'base' => NULL, 'refs' => [ 'AddThingToThingGroupRequest$thingGroupArn' => '

The ARN of the group to which you are adding a thing.

', 'CreateDynamicThingGroupResponse$thingGroupArn' => '

The dynamic thing group ARN.

', 'CreateThingGroupResponse$thingGroupArn' => '

The thing group ARN.

', 'DescribeThingGroupResponse$thingGroupArn' => '

The thing group ARN.

', 'GroupNameAndArn$groupArn' => '

The group ARN.

', 'RemoveThingFromThingGroupRequest$thingGroupArn' => '

The group ARN.

', ], ], 'ThingGroupDescription' => [ 'base' => NULL, 'refs' => [ 'ThingGroupDocument$thingGroupDescription' => '

The thing group description.

', 'ThingGroupProperties$thingGroupDescription' => '

The thing group description.

', ], ], 'ThingGroupDocument' => [ 'base' => '

The thing group search index document.

', 'refs' => [ 'ThingGroupDocumentList$member' => NULL, ], ], 'ThingGroupDocumentList' => [ 'base' => NULL, 'refs' => [ 'SearchIndexResponse$thingGroups' => '

The thing groups that match the search query.

', ], ], 'ThingGroupId' => [ 'base' => NULL, 'refs' => [ 'CreateDynamicThingGroupResponse$thingGroupId' => '

The dynamic thing group ID.

', 'CreateThingGroupResponse$thingGroupId' => '

The thing group ID.

', 'DescribeThingGroupResponse$thingGroupId' => '

The thing group ID.

', 'JobSummary$thingGroupId' => '

The ID of the thing group.

', 'ListJobsRequest$thingGroupId' => '

A filter that limits the returned jobs to those for the specified group.

', 'ThingGroupDocument$thingGroupId' => '

The thing group ID.

', ], ], 'ThingGroupIndexingConfiguration' => [ 'base' => '

Thing group indexing configuration.

', 'refs' => [ 'GetIndexingConfigurationResponse$thingGroupIndexingConfiguration' => '

The index configuration.

', 'UpdateIndexingConfigurationRequest$thingGroupIndexingConfiguration' => '

Thing group indexing configuration.

', ], ], 'ThingGroupIndexingMode' => [ 'base' => NULL, 'refs' => [ 'ThingGroupIndexingConfiguration$thingGroupIndexingMode' => '

Thing group indexing mode.

', ], ], 'ThingGroupList' => [ 'base' => NULL, 'refs' => [ 'UpdateThingGroupsForThingRequest$thingGroupsToAdd' => '

The groups to which the thing will be added.

', 'UpdateThingGroupsForThingRequest$thingGroupsToRemove' => '

The groups from which the thing will be removed.

', ], ], 'ThingGroupMetadata' => [ 'base' => '

Thing group metadata.

', 'refs' => [ 'DescribeThingGroupResponse$thingGroupMetadata' => '

Thing group metadata.

', ], ], 'ThingGroupName' => [ 'base' => NULL, 'refs' => [ 'AddThingToThingGroupRequest$thingGroupName' => '

The name of the group to which you are adding a thing.

', 'CreateDynamicThingGroupRequest$thingGroupName' => '

The dynamic thing group name to create.

', 'CreateDynamicThingGroupResponse$thingGroupName' => '

The dynamic thing group name.

', 'CreateThingGroupRequest$thingGroupName' => '

The thing group name to create.

', 'CreateThingGroupRequest$parentGroupName' => '

The name of the parent thing group.

', 'CreateThingGroupResponse$thingGroupName' => '

The thing group name.

', 'DeleteDynamicThingGroupRequest$thingGroupName' => '

The name of the dynamic thing group to delete.

', 'DeleteThingGroupRequest$thingGroupName' => '

The name of the thing group to delete.

', 'DescribeThingGroupRequest$thingGroupName' => '

The name of the thing group.

', 'DescribeThingGroupResponse$thingGroupName' => '

The name of the thing group.

', 'GroupNameAndArn$groupName' => '

The group name.

', 'ListJobsRequest$thingGroupName' => '

A filter that limits the returned jobs to those for the specified group.

', 'ListThingGroupsRequest$parentGroup' => '

A filter that limits the results to those with the specified parent group.

', 'ListThingGroupsRequest$namePrefixFilter' => '

A filter that limits the results to those with the specified name prefix.

', 'ListThingsInThingGroupRequest$thingGroupName' => '

The thing group name.

', 'RemoveThingFromThingGroupRequest$thingGroupName' => '

The group name.

', 'ThingGroupDocument$thingGroupName' => '

The thing group name.

', 'ThingGroupList$member' => NULL, 'ThingGroupMetadata$parentGroupName' => '

The parent thing group name.

', 'ThingGroupNameList$member' => NULL, 'ThingGroupNames$member' => NULL, 'UpdateDynamicThingGroupRequest$thingGroupName' => '

The name of the dynamic thing group to update.

', 'UpdateThingGroupRequest$thingGroupName' => '

The thing group to update.

', ], ], 'ThingGroupNameAndArnList' => [ 'base' => NULL, 'refs' => [ 'ListThingGroupsForThingResponse$thingGroups' => '

The thing groups.

', 'ListThingGroupsResponse$thingGroups' => '

The thing groups.

', 'ThingGroupMetadata$rootToParentThingGroups' => '

The root parent thing group.

', ], ], 'ThingGroupNameList' => [ 'base' => NULL, 'refs' => [ 'ThingDocument$thingGroupNames' => '

Thing group names.

', 'ThingGroupDocument$parentGroupNames' => '

Parent group names.

', ], ], 'ThingGroupNames' => [ 'base' => NULL, 'refs' => [ 'AddThingsToThingGroupParams$thingGroupNames' => '

The list of groups to which you want to add the things that triggered the mitigation action. You can add a thing to a maximum of 10 groups, but you can\'t add a thing to more than one group in the same hierarchy.

', ], ], 'ThingGroupProperties' => [ 'base' => '

Thing group properties.

', 'refs' => [ 'CreateDynamicThingGroupRequest$thingGroupProperties' => '

The dynamic thing group properties.

', 'CreateThingGroupRequest$thingGroupProperties' => '

The thing group properties.

', 'DescribeThingGroupResponse$thingGroupProperties' => '

The thing group properties.

', 'UpdateDynamicThingGroupRequest$thingGroupProperties' => '

The dynamic thing group properties to update.

', 'UpdateThingGroupRequest$thingGroupProperties' => '

The thing group properties.

', ], ], 'ThingId' => [ 'base' => NULL, 'refs' => [ 'CreateThingResponse$thingId' => '

The thing ID.

', 'DescribeThingResponse$thingId' => '

The ID of the thing to describe.

', 'ThingDocument$thingId' => '

The thing ID.

', ], ], 'ThingIndexingConfiguration' => [ 'base' => '

The thing indexing configuration. For more information, see Managing Thing Indexing.

', 'refs' => [ 'GetIndexingConfigurationResponse$thingIndexingConfiguration' => '

Thing indexing configuration.

', 'UpdateIndexingConfigurationRequest$thingIndexingConfiguration' => '

Thing indexing configuration.

', ], ], 'ThingIndexingMode' => [ 'base' => NULL, 'refs' => [ 'ThingIndexingConfiguration$thingIndexingMode' => '

Thing indexing mode. Valid values are:

  • REGISTRY – Your thing index contains registry data only.

  • REGISTRY_AND_SHADOW - Your thing index contains registry and shadow data.

  • OFF - Thing indexing is disabled.

', ], ], 'ThingName' => [ 'base' => NULL, 'refs' => [ 'AddThingToBillingGroupRequest$thingName' => '

The name of the thing to be added to the billing group.

', 'AddThingToThingGroupRequest$thingName' => '

The name of the thing to add to a group.

', 'AttachThingPrincipalRequest$thingName' => '

The name of the thing.

', 'CancelJobExecutionRequest$thingName' => '

The name of the thing whose execution of the job will be canceled.

', 'CreateThingRequest$thingName' => '

The name of the thing to create.

You can\'t change a thing\'s name after you create it. To change a thing\'s name, you must create a new thing, give it the new name, and then delete the old thing.

', 'CreateThingResponse$thingName' => '

The name of the new thing.

', 'DeleteJobExecutionRequest$thingName' => '

The name of the thing whose job execution will be deleted.

', 'DeleteThingRequest$thingName' => '

The name of the thing to delete.

', 'DescribeJobExecutionRequest$thingName' => '

The name of the thing on which the job execution is running.

', 'DescribeThingRequest$thingName' => '

The name of the thing.

', 'DescribeThingResponse$thingName' => '

The name of the thing.

', 'DetachThingPrincipalRequest$thingName' => '

The name of the thing.

', 'GetEffectivePoliciesRequest$thingName' => '

The thing name.

', 'ListJobExecutionsForThingRequest$thingName' => '

The thing name.

', 'ListThingGroupsForThingRequest$thingName' => '

The thing name.

', 'ListThingPrincipalsRequest$thingName' => '

The name of the thing.

', 'RemoveThingFromBillingGroupRequest$thingName' => '

The name of the thing to be removed from the billing group.

', 'RemoveThingFromThingGroupRequest$thingName' => '

The name of the thing to remove from the group.

', 'ThingAttribute$thingName' => '

The name of the thing.

', 'ThingDocument$thingName' => '

The thing name.

', 'ThingNameList$member' => NULL, 'UpdateThingGroupsForThingRequest$thingName' => '

The thing whose group memberships will be updated.

', 'UpdateThingRequest$thingName' => '

The name of the thing to update.

You can\'t change a thing\'s name. To change a thing\'s name, you must create a new thing, give it the new name, and then delete the old thing.

', ], ], 'ThingNameList' => [ 'base' => NULL, 'refs' => [ 'ListPrincipalThingsResponse$things' => '

The things.

', 'ListThingsInBillingGroupResponse$things' => '

A list of things in the billing group.

', 'ListThingsInThingGroupResponse$things' => '

The things in the specified thing group.

', ], ], 'ThingTypeArn' => [ 'base' => NULL, 'refs' => [ 'CreateThingTypeResponse$thingTypeArn' => '

The Amazon Resource Name (ARN) of the thing type.

', 'DescribeThingTypeResponse$thingTypeArn' => '

The thing type ARN.

', 'ThingTypeDefinition$thingTypeArn' => '

The thing type ARN.

', ], ], 'ThingTypeDefinition' => [ 'base' => '

The definition of the thing type, including thing type name and description.

', 'refs' => [ 'ThingTypeList$member' => NULL, ], ], 'ThingTypeDescription' => [ 'base' => NULL, 'refs' => [ 'ThingTypeProperties$thingTypeDescription' => '

The description of the thing type.

', ], ], 'ThingTypeId' => [ 'base' => NULL, 'refs' => [ 'CreateThingTypeResponse$thingTypeId' => '

The thing type ID.

', 'DescribeThingTypeResponse$thingTypeId' => '

The thing type ID.

', ], ], 'ThingTypeList' => [ 'base' => NULL, 'refs' => [ 'ListThingTypesResponse$thingTypes' => '

The thing types.

', ], ], 'ThingTypeMetadata' => [ 'base' => '

The ThingTypeMetadata contains additional information about the thing type including: creation date and time, a value indicating whether the thing type is deprecated, and a date and time when time was deprecated.

', 'refs' => [ 'DescribeThingTypeResponse$thingTypeMetadata' => '

The ThingTypeMetadata contains additional information about the thing type including: creation date and time, a value indicating whether the thing type is deprecated, and a date and time when it was deprecated.

', 'ThingTypeDefinition$thingTypeMetadata' => '

The ThingTypeMetadata contains additional information about the thing type including: creation date and time, a value indicating whether the thing type is deprecated, and a date and time when it was deprecated.

', ], ], 'ThingTypeName' => [ 'base' => NULL, 'refs' => [ 'CreateThingRequest$thingTypeName' => '

The name of the thing type associated with the new thing.

', 'CreateThingTypeRequest$thingTypeName' => '

The name of the thing type.

', 'CreateThingTypeResponse$thingTypeName' => '

The name of the thing type.

', 'DeleteThingTypeRequest$thingTypeName' => '

The name of the thing type.

', 'DeprecateThingTypeRequest$thingTypeName' => '

The name of the thing type to deprecate.

', 'DescribeThingResponse$thingTypeName' => '

The thing type name.

', 'DescribeThingTypeRequest$thingTypeName' => '

The name of the thing type.

', 'DescribeThingTypeResponse$thingTypeName' => '

The name of the thing type.

', 'ListThingTypesRequest$thingTypeName' => '

The name of the thing type.

', 'ListThingsRequest$thingTypeName' => '

The name of the thing type used to search for things.

', 'ThingAttribute$thingTypeName' => '

The name of the thing type, if the thing has been associated with a type.

', 'ThingDocument$thingTypeName' => '

The thing type name.

', 'ThingTypeDefinition$thingTypeName' => '

The name of the thing type.

', 'UpdateThingRequest$thingTypeName' => '

The name of the thing type.

', ], ], 'ThingTypeProperties' => [ 'base' => '

The ThingTypeProperties contains information about the thing type including: a thing type description, and a list of searchable thing attribute names.

', 'refs' => [ 'CreateThingTypeRequest$thingTypeProperties' => '

The ThingTypeProperties for the thing type to create. It contains information about the new thing type including a description, and a list of searchable thing attribute names.

', 'DescribeThingTypeResponse$thingTypeProperties' => '

The ThingTypeProperties contains information about the thing type including description, and a list of searchable thing attribute names.

', 'ThingTypeDefinition$thingTypeProperties' => '

The ThingTypeProperties for the thing type.

', ], ], 'ThrottlingException' => [ 'base' => '

The rate exceeds the limit.

', 'refs' => [], ], 'TimedOutThings' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$numberOfTimedOutThings' => '

The number of things whose job execution status is TIMED_OUT.

', ], ], 'TimeoutConfig' => [ 'base' => '

Specifies the amount of time each device has to finish its execution of the job. A timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the timer expires, it will be automatically set to TIMED_OUT.

', 'refs' => [ 'CreateJobRequest$timeoutConfig' => '

Specifies the amount of time each device has to finish its execution of the job. The timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the time expires, it will be automatically set to TIMED_OUT.

', 'CreateJobTemplateRequest$timeoutConfig' => NULL, 'DescribeJobTemplateResponse$timeoutConfig' => NULL, 'Job$timeoutConfig' => '

Specifies the amount of time each device has to finish its execution of the job. A timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the timer expires, it will be automatically set to TIMED_OUT.

', 'UpdateJobRequest$timeoutConfig' => '

Specifies the amount of time each device has to finish its execution of the job. The timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the time expires, it will be automatically set to TIMED_OUT.

', ], ], 'Timestamp' => [ 'base' => NULL, 'refs' => [ 'ActiveViolation$lastViolationTime' => '

The time the most recent violation occurred.

', 'ActiveViolation$violationStartTime' => '

The time the violation started.

', 'AuditFinding$taskStartTime' => '

The time the audit started.

', 'AuditFinding$findingTime' => '

The time the result (finding) was discovered.

', 'AuditMitigationActionExecutionMetadata$startTime' => '

The date and time when the task was started.

', 'AuditMitigationActionExecutionMetadata$endTime' => '

The date and time when the task was completed or canceled. Blank if the task is still running.

', 'AuditMitigationActionsTaskMetadata$startTime' => '

The time at which the audit mitigation actions task was started.

', 'AuditSuppression$expirationDate' => '

The expiration date (epoch timestamp in seconds) that you want the suppression to adhere to.

', 'BehaviorModelTrainingSummary$trainingDataCollectionStartDate' => '

The date a training model started collecting data.

', 'BehaviorModelTrainingSummary$lastModelRefreshDate' => '

The date the model was last refreshed.

', 'CreateAuditSuppressionRequest$expirationDate' => '

The epoch timestamp in seconds at which this suppression expires.

', 'DescribeAuditMitigationActionsTaskResponse$startTime' => '

The date and time when the task was started.

', 'DescribeAuditMitigationActionsTaskResponse$endTime' => '

The date and time when the task was completed or canceled.

', 'DescribeAuditSuppressionResponse$expirationDate' => '

The epoch timestamp in seconds at which this suppression expires.

', 'DescribeAuditTaskResponse$taskStartTime' => '

The time the audit started.

', 'DescribeCustomMetricResponse$creationDate' => '

The creation date of the custom metric in milliseconds since epoch.

', 'DescribeCustomMetricResponse$lastModifiedDate' => '

The time the custom metric was last modified in milliseconds since epoch.

', 'DescribeDimensionResponse$creationDate' => '

The date the dimension was created.

', 'DescribeDimensionResponse$lastModifiedDate' => '

The date the dimension was last modified.

', 'DescribeMitigationActionResponse$creationDate' => '

The date and time when the mitigation action was added to your Amazon Web Services accounts.

', 'DescribeMitigationActionResponse$lastModifiedDate' => '

The date and time when the mitigation action was last changed.

', 'DescribeSecurityProfileResponse$creationDate' => '

The time the security profile was created.

', 'DescribeSecurityProfileResponse$lastModifiedDate' => '

The time the security profile was last modified.

', 'DetectMitigationActionExecution$executionStartDate' => '

The date a mitigation action was started.

', 'DetectMitigationActionExecution$executionEndDate' => '

The date a mitigation action ended.

', 'DetectMitigationActionsTaskSummary$taskStartTime' => '

The date the task started.

', 'DetectMitigationActionsTaskSummary$taskEndTime' => '

The date the task ended.

', 'ListAuditFindingsRequest$startTime' => '

A filter to limit results to those found after the specified time. You must specify either the startTime and endTime or the taskId, but not both.

', 'ListAuditFindingsRequest$endTime' => '

A filter to limit results to those found before the specified time. You must specify either the startTime and endTime or the taskId, but not both.

', 'ListAuditMitigationActionsTasksRequest$startTime' => '

Specify this filter to limit results to tasks that began on or after a specific date and time.

', 'ListAuditMitigationActionsTasksRequest$endTime' => '

Specify this filter to limit results to tasks that were completed or canceled on or before a specific date and time.

', 'ListAuditTasksRequest$startTime' => '

The beginning of the time period. Audit information is retained for a limited time (90 days). Requesting a start time prior to what is retained results in an "InvalidRequestException".

', 'ListAuditTasksRequest$endTime' => '

The end of the time period.

', 'ListDetectMitigationActionsExecutionsRequest$startTime' => '

A filter to limit results to those found after the specified time. You must specify either the startTime and endTime or the taskId, but not both.

', 'ListDetectMitigationActionsExecutionsRequest$endTime' => '

The end of the time period for which ML Detect mitigation actions executions are returned.

', 'ListDetectMitigationActionsTasksRequest$startTime' => '

A filter to limit results to those found after the specified time. You must specify either the startTime and endTime or the taskId, but not both.

', 'ListDetectMitigationActionsTasksRequest$endTime' => '

The end of the time period for which ML Detect mitigation actions tasks are returned.

', 'ListMetricValuesRequest$startTime' => '

The start of the time period for which metric values are returned.

', 'ListMetricValuesRequest$endTime' => '

The end of the time period for which metric values are returned.

', 'ListViolationEventsRequest$startTime' => '

The start time for the alerts to be listed.

', 'ListViolationEventsRequest$endTime' => '

The end time for the alerts to be listed.

', 'MetricDatum$timestamp' => '

The time the metric value was reported.

', 'MitigationActionIdentifier$creationDate' => '

The date when this mitigation action was created.

', 'UpdateAuditSuppressionRequest$expirationDate' => '

The expiration date (epoch timestamp in seconds) that you want the suppression to adhere to.

', 'UpdateCustomMetricResponse$creationDate' => '

The creation date of the custom metric in milliseconds since epoch.

', 'UpdateCustomMetricResponse$lastModifiedDate' => '

The time the custom metric was last modified in milliseconds since epoch.

', 'UpdateDimensionResponse$creationDate' => '

The date and time, in milliseconds since epoch, when the dimension was initially created.

', 'UpdateDimensionResponse$lastModifiedDate' => '

The date and time, in milliseconds since epoch, when the dimension was most recently updated.

', 'UpdateSecurityProfileResponse$creationDate' => '

The time the security profile was created.

', 'UpdateSecurityProfileResponse$lastModifiedDate' => '

The time the security profile was last modified.

', 'ViolationEvent$violationEventTime' => '

The time the violation event occurred.

', 'ViolationEventOccurrenceRange$startTime' => '

The start date and time of a time period in which violation events occurred.

', 'ViolationEventOccurrenceRange$endTime' => '

The end date and time of a time period in which violation events occurred.

', ], ], 'TimestreamAction' => [ 'base' => '

The Timestream rule action writes attributes (measures) from an MQTT message into an Amazon Timestream table. For more information, see the Timestream topic rule action documentation.

', 'refs' => [ 'Action$timestream' => '

The Timestream rule action writes attributes (measures) from an MQTT message into an Amazon Timestream table. For more information, see the Timestream topic rule action documentation.

', ], ], 'TimestreamDatabaseName' => [ 'base' => NULL, 'refs' => [ 'TimestreamAction$databaseName' => '

The name of an Amazon Timestream database.

', ], ], 'TimestreamDimension' => [ 'base' => '

Metadata attributes of the time series that are written in each measure record.

', 'refs' => [ 'TimestreamDimensionList$member' => NULL, ], ], 'TimestreamDimensionList' => [ 'base' => NULL, 'refs' => [ 'TimestreamAction$dimensions' => '

Metadata attributes of the time series that are written in each measure record.

', ], ], 'TimestreamDimensionName' => [ 'base' => NULL, 'refs' => [ 'TimestreamDimension$name' => '

The metadata dimension name. This is the name of the column in the Amazon Timestream database table record.

Dimensions cannot be named: measure_name, measure_value, or time. These names are reserved. Dimension names cannot start with ts_ or measure_value and they cannot contain the colon (:) character.

', ], ], 'TimestreamDimensionValue' => [ 'base' => NULL, 'refs' => [ 'TimestreamDimension$value' => '

The value to write in this column of the database record.

', ], ], 'TimestreamTableName' => [ 'base' => NULL, 'refs' => [ 'TimestreamAction$tableName' => '

The name of the database table into which to write the measure records.

', ], ], 'TimestreamTimestamp' => [ 'base' => '

Describes how to interpret an application-defined timestamp value from an MQTT message payload and the precision of that value.

', 'refs' => [ 'TimestreamAction$timestamp' => '

Specifies an application-defined value to replace the default value assigned to the Timestream record\'s timestamp in the time column.

You can use this property to specify the value and the precision of the Timestream record\'s timestamp. You can specify a value from the message payload or a value computed by a substitution template.

If omitted, the topic rule action assigns the timestamp, in milliseconds, at the time it processed the rule.

', ], ], 'TimestreamTimestampUnit' => [ 'base' => NULL, 'refs' => [ 'TimestreamTimestamp$unit' => '

The precision of the timestamp value that results from the expression described in value.

Valid values: SECONDS | MILLISECONDS | MICROSECONDS | NANOSECONDS. The default is MILLISECONDS.

', ], ], 'TimestreamTimestampValue' => [ 'base' => NULL, 'refs' => [ 'TimestreamTimestamp$value' => '

An expression that returns a long epoch time value.

', ], ], 'TinyMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetBehaviorModelTrainingSummariesRequest$maxResults' => '

The maximum number of results to return at one time. The default is 10.

', ], ], 'TlsConfig' => [ 'base' => '

An object that specifies the TLS configuration for a domain.

', 'refs' => [ 'CreateDomainConfigurationRequest$tlsConfig' => '

An object that specifies the TLS configuration for a domain.

', 'DescribeDomainConfigurationResponse$tlsConfig' => '

An object that specifies the TLS configuration for a domain.

', 'UpdateDomainConfigurationRequest$tlsConfig' => '

An object that specifies the TLS configuration for a domain.

', ], ], 'TlsContext' => [ 'base' => '

Specifies the TLS context to use for the test authorizer request.

', 'refs' => [ 'TestInvokeAuthorizerRequest$tlsContext' => '

Specifies a test TLS authorization request.

', ], ], 'Token' => [ 'base' => NULL, 'refs' => [ 'TestInvokeAuthorizerRequest$token' => '

The token returned by your custom authentication service.

', ], ], 'TokenKeyName' => [ 'base' => NULL, 'refs' => [ 'AuthorizerDescription$tokenKeyName' => '

The key used to extract the token from the HTTP headers.

', 'CreateAuthorizerRequest$tokenKeyName' => '

The name of the token key used to extract the token from the HTTP headers.

', 'UpdateAuthorizerRequest$tokenKeyName' => '

The key used to extract the token from the HTTP headers.

', ], ], 'TokenSignature' => [ 'base' => NULL, 'refs' => [ 'TestInvokeAuthorizerRequest$tokenSignature' => '

The signature made with the token and your custom authentication service\'s private key. This value must be Base-64-encoded.

', ], ], 'Topic' => [ 'base' => NULL, 'refs' => [ 'ListTopicRulesRequest$topic' => '

The topic.

', ], ], 'TopicPattern' => [ 'base' => NULL, 'refs' => [ 'RepublishAction$topic' => '

The name of the MQTT topic.

', 'TopicRuleListItem$topicPattern' => '

The pattern for the topic names that apply.

', ], ], 'TopicRule' => [ 'base' => '

Describes a rule.

', 'refs' => [ 'GetTopicRuleResponse$rule' => '

The rule.

', ], ], 'TopicRuleDestination' => [ 'base' => '

A topic rule destination.

', 'refs' => [ 'CreateTopicRuleDestinationResponse$topicRuleDestination' => '

The topic rule destination.

', 'GetTopicRuleDestinationResponse$topicRuleDestination' => '

The topic rule destination.

', ], ], 'TopicRuleDestinationConfiguration' => [ 'base' => '

Configuration of the topic rule destination.

', 'refs' => [ 'CreateTopicRuleDestinationRequest$destinationConfiguration' => '

The topic rule destination configuration.

', ], ], 'TopicRuleDestinationMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListTopicRuleDestinationsRequest$maxResults' => '

The maximum number of results to return at one time.

', ], ], 'TopicRuleDestinationStatus' => [ 'base' => NULL, 'refs' => [ 'TopicRuleDestination$status' => '

The status of the topic rule destination. Valid values are:

IN_PROGRESS

A topic rule destination was created but has not been confirmed. You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination. Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint.

ENABLED

Confirmation was completed, and traffic to this destination is allowed. You can set status to DISABLED by calling UpdateTopicRuleDestination.

DISABLED

Confirmation was completed, and traffic to this destination is not allowed. You can set status to ENABLED by calling UpdateTopicRuleDestination.

ERROR

Confirmation could not be completed, for example if the confirmation timed out. You can call GetTopicRuleDestination for details about the error. You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination. Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint.

', 'TopicRuleDestinationSummary$status' => '

The status of the topic rule destination. Valid values are:

IN_PROGRESS

A topic rule destination was created but has not been confirmed. You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination. Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint.

ENABLED

Confirmation was completed, and traffic to this destination is allowed. You can set status to DISABLED by calling UpdateTopicRuleDestination.

DISABLED

Confirmation was completed, and traffic to this destination is not allowed. You can set status to ENABLED by calling UpdateTopicRuleDestination.

ERROR

Confirmation could not be completed, for example if the confirmation timed out. You can call GetTopicRuleDestination for details about the error. You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination. Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint.

', 'UpdateTopicRuleDestinationRequest$status' => '

The status of the topic rule destination. Valid values are:

IN_PROGRESS

A topic rule destination was created but has not been confirmed. You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination. Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint.

ENABLED

Confirmation was completed, and traffic to this destination is allowed. You can set status to DISABLED by calling UpdateTopicRuleDestination.

DISABLED

Confirmation was completed, and traffic to this destination is not allowed. You can set status to ENABLED by calling UpdateTopicRuleDestination.

ERROR

Confirmation could not be completed, for example if the confirmation timed out. You can call GetTopicRuleDestination for details about the error. You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination. Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint.

', ], ], 'TopicRuleDestinationSummaries' => [ 'base' => NULL, 'refs' => [ 'ListTopicRuleDestinationsResponse$destinationSummaries' => '

Information about a topic rule destination.

', ], ], 'TopicRuleDestinationSummary' => [ 'base' => '

Information about the topic rule destination.

', 'refs' => [ 'TopicRuleDestinationSummaries$member' => NULL, ], ], 'TopicRuleList' => [ 'base' => NULL, 'refs' => [ 'ListTopicRulesResponse$rules' => '

The rules.

', ], ], 'TopicRuleListItem' => [ 'base' => '

Describes a rule.

', 'refs' => [ 'TopicRuleList$member' => NULL, ], ], 'TopicRuleMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListTopicRulesRequest$maxResults' => '

The maximum number of results to return.

', ], ], 'TopicRulePayload' => [ 'base' => '

Describes a rule.

', 'refs' => [ 'CreateTopicRuleRequest$topicRulePayload' => '

The rule payload.

', 'ReplaceTopicRuleRequest$topicRulePayload' => '

The rule payload.

', ], ], 'TotalChecksCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatistics$totalChecks' => '

The number of checks in this audit.

', ], ], 'TotalFindingsCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatisticsForAuditCheck$totalFindingsCount' => '

The total number of findings to which a task is being applied.

', ], ], 'TotalResourcesCount' => [ 'base' => NULL, 'refs' => [ 'AuditCheckDetails$totalResourcesCount' => '

The number of resources on which the check was performed.

', ], ], 'TransferAlreadyCompletedException' => [ 'base' => '

You can\'t revert the certificate transfer because the transfer is already complete.

', 'refs' => [], ], 'TransferCertificateRequest' => [ 'base' => '

The input for the TransferCertificate operation.

', 'refs' => [], ], 'TransferCertificateResponse' => [ 'base' => '

The output from the TransferCertificate operation.

', 'refs' => [], ], 'TransferConflictException' => [ 'base' => '

You can\'t transfer the certificate because authorization policies are still attached.

', 'refs' => [], ], 'TransferData' => [ 'base' => '

Data used to transfer a certificate to an Amazon Web Services account.

', 'refs' => [ 'CertificateDescription$transferData' => '

The transfer data.

', ], ], 'UnauthorizedException' => [ 'base' => '

You are not authorized to perform this operation.

', 'refs' => [], ], 'UndoDeprecate' => [ 'base' => NULL, 'refs' => [ 'DeprecateThingTypeRequest$undoDeprecate' => '

Whether to undeprecate a deprecated thing type. If true, the thing type will not be deprecated anymore and you can associate it with things.

', ], ], 'UnsetDefaultVersion' => [ 'base' => NULL, 'refs' => [ 'UpdatePackageRequest$unsetDefaultVersion' => '

Indicates whether you want to remove the named default package version from the software package. Set as true to remove the default package version.

Note: You cannot name a defaultVersion and set unsetDefaultVersion equal to true at the same time.

', ], ], 'UnsignedLong' => [ 'base' => NULL, 'refs' => [ 'MetricValue$count' => '

If the comparisonOperator calls for a numeric value, use this to specify that numeric value to be compared with the metric.

', ], ], 'UntagResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'UntagResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAccountAuditConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAccountAuditConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAuditSuppressionRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAuditSuppressionResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAuthorizerRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAuthorizerResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateBillingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateBillingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateCACertificateParams' => [ 'base' => '

Parameters to define a mitigation action that changes the state of the CA certificate to inactive.

', 'refs' => [ 'MitigationActionParams$updateCACertificateParams' => '

Parameters to define a mitigation action that changes the state of the CA certificate to inactive.

', ], ], 'UpdateCACertificateRequest' => [ 'base' => '

The input to the UpdateCACertificate operation.

', 'refs' => [], ], 'UpdateCertificateProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateCertificateProviderResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateCertificateRequest' => [ 'base' => '

The input for the UpdateCertificate operation.

', 'refs' => [], ], 'UpdateCustomMetricRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateCustomMetricResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateDeviceCertificateParams' => [ 'base' => '

Parameters to define a mitigation action that changes the state of the device certificate to inactive.

', 'refs' => [ 'MitigationActionParams$updateDeviceCertificateParams' => '

Parameters to define a mitigation action that changes the state of the device certificate to inactive.

', ], ], 'UpdateDimensionRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateDimensionResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateDomainConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateDomainConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateDynamicThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateDynamicThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateEventConfigurationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateEventConfigurationsResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateFleetMetricRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateIndexingConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateIndexingConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateJobRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateMitigationActionRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateMitigationActionResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdatePackageConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdatePackageConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdatePackageRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdatePackageResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdatePackageVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdatePackageVersionResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateProvisioningTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateProvisioningTemplateResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateRoleAliasRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateRoleAliasResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateScheduledAuditRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateScheduledAuditResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateSecurityProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateSecurityProfileResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateStreamRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateStreamResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateThingGroupsForThingRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateThingGroupsForThingResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateThingRequest' => [ 'base' => '

The input for the UpdateThing operation.

', 'refs' => [], ], 'UpdateThingResponse' => [ 'base' => '

The output from the UpdateThing operation.

', 'refs' => [], ], 'UpdateTopicRuleDestinationRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateTopicRuleDestinationResponse' => [ 'base' => NULL, 'refs' => [], ], 'Url' => [ 'base' => NULL, 'refs' => [ 'HttpAction$url' => '

The endpoint URL. If substitution templates are used in the URL, you must also specify a confirmationUrl. If this is a new destination, a new TopicRuleDestination is created if possible.

', 'HttpAction$confirmationUrl' => '

The URL to which IoT sends a confirmation message. The value of the confirmation URL must be a prefix of the endpoint URL. If you do not specify a confirmation URL IoT uses the endpoint URL as the confirmation URL. If you use substitution templates in the confirmationUrl, you must create and enable topic rule destinations that match each possible value of the substitution template before traffic is allowed to your endpoint URL.

', 'HttpUrlDestinationConfiguration$confirmationUrl' => '

The URL IoT uses to confirm ownership of or access to the topic rule destination URL.

', 'HttpUrlDestinationProperties$confirmationUrl' => '

The URL used to confirm the HTTP topic rule destination URL.

', 'HttpUrlDestinationSummary$confirmationUrl' => '

The URL used to confirm ownership of or access to the HTTP topic rule destination URL.

', ], ], 'UseBase64' => [ 'base' => NULL, 'refs' => [ 'SqsAction$useBase64' => '

Specifies whether to use Base64 encoding.

', ], ], 'UserProperties' => [ 'base' => NULL, 'refs' => [ 'MqttHeaders$userProperties' => '

An array of key-value pairs that you define in the MQTT5 header.

', ], ], 'UserProperty' => [ 'base' => '

A key-value pair that you define in the header. Both the key and the value are either literal strings or valid substitution templates.

', 'refs' => [ 'UserProperties$member' => NULL, ], ], 'UserPropertyKey' => [ 'base' => NULL, 'refs' => [ 'UserProperty$key' => '

A key to be specified in UserProperty.

', ], ], 'UserPropertyValue' => [ 'base' => NULL, 'refs' => [ 'UserProperty$value' => '

A value to be specified in UserProperty.

', ], ], 'Valid' => [ 'base' => NULL, 'refs' => [ 'ValidateSecurityProfileBehaviorsResponse$valid' => '

True if the behaviors were valid.

', ], ], 'ValidateSecurityProfileBehaviorsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ValidateSecurityProfileBehaviorsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ValidationError' => [ 'base' => '

Information about an error found in a behavior specification.

', 'refs' => [ 'ValidationErrors$member' => NULL, ], ], 'ValidationErrors' => [ 'base' => NULL, 'refs' => [ 'ValidateSecurityProfileBehaviorsResponse$validationErrors' => '

The list of any errors found in the behaviors.

', ], ], 'ValidationException' => [ 'base' => '

The request is not valid.

', 'refs' => [], ], 'Value' => [ 'base' => NULL, 'refs' => [ 'AdditionalParameterMap$value' => NULL, 'AttributesMap$value' => NULL, 'Parameters$value' => NULL, ], ], 'Variance' => [ 'base' => NULL, 'refs' => [ 'Statistics$variance' => '

The variance of the aggregated field values.

', ], ], 'VerificationState' => [ 'base' => NULL, 'refs' => [ 'ActiveViolation$verificationState' => '

The verification state of the violation (detect alarm).

', 'ListActiveViolationsRequest$verificationState' => '

The verification state of the violation (detect alarm).

', 'ListViolationEventsRequest$verificationState' => '

The verification state of the violation (detect alarm).

', 'PutVerificationStateOnViolationRequest$verificationState' => '

The verification state of the violation.

', 'ViolationEvent$verificationState' => '

The verification state of the violation (detect alarm).

', ], ], 'VerificationStateDescription' => [ 'base' => NULL, 'refs' => [ 'ActiveViolation$verificationStateDescription' => '

The description of the verification state of the violation.

', 'PutVerificationStateOnViolationRequest$verificationStateDescription' => '

The description of the verification state of the violation (detect alarm).

', 'ViolationEvent$verificationStateDescription' => '

The description of the verification state of the violation.

', ], ], 'Version' => [ 'base' => NULL, 'refs' => [ 'DescribeBillingGroupResponse$version' => '

The version of the billing group.

', 'DescribeFleetMetricResponse$version' => '

The version of the fleet metric.

', 'DescribeSecurityProfileResponse$version' => '

The version of the security profile. A new version is generated whenever the security profile is updated.

', 'DescribeThingGroupResponse$version' => '

The version of the thing group.

', 'DescribeThingResponse$version' => '

The current version of the thing record in the registry.

To avoid unintentional changes to the information in the registry, you can pass the version information in the expectedVersion parameter of the UpdateThing and DeleteThing calls.

', 'ThingAttribute$version' => '

The version of the thing record in the registry.

', 'UpdateBillingGroupResponse$version' => '

The latest version of the billing group.

', 'UpdateDynamicThingGroupResponse$version' => '

The dynamic thing group version.

', 'UpdateSecurityProfileResponse$version' => '

The updated version of the security profile.

', 'UpdateThingGroupResponse$version' => '

The version of the updated thing group.

', ], ], 'VersionConflictException' => [ 'base' => '

An exception thrown when the version of an entity specified with the expectedVersion parameter does not match the latest version in the system.

', 'refs' => [], ], 'VersionName' => [ 'base' => NULL, 'refs' => [ 'CreatePackageVersionRequest$versionName' => '

The name of the new package version.

', 'CreatePackageVersionResponse$versionName' => '

The name of the new package version.

', 'DeletePackageVersionRequest$versionName' => '

The name of the target package version.

', 'GetPackageResponse$defaultVersionName' => '

The name of the default package version.

', 'GetPackageVersionRequest$versionName' => '

The name of the target package version.

', 'GetPackageVersionResponse$versionName' => '

The name of the package version.

', 'PackageSummary$defaultVersionName' => '

The name of the default package version.

', 'PackageVersionSummary$versionName' => '

The name of the target package version.

', 'UpdatePackageRequest$defaultVersionName' => '

The name of the default package version.

Note: You cannot name a defaultVersion and set unsetDefaultVersion equal to true at the same time.

', 'UpdatePackageVersionRequest$versionName' => '

The name of the target package version.

', ], ], 'VersionNumber' => [ 'base' => NULL, 'refs' => [ 'JobExecution$versionNumber' => '

The version of the job execution. Job execution versions are incremented each time they are updated by a device.

', ], ], 'VersionUpdateByJobsConfig' => [ 'base' => '

Configuration to manage IoT Job\'s package version reporting. If configured, Jobs updates the thing\'s reserved named shadow with the package version information up on successful job completion.

Note: For each job, the destinationPackageVersions attribute has to be set with the correct data for Jobs to report to the thing shadow.

', 'refs' => [ 'GetPackageConfigurationResponse$versionUpdateByJobsConfig' => '

The version that is associated to a specific job.

', 'UpdatePackageConfigurationRequest$versionUpdateByJobsConfig' => '

Configuration to manage job\'s package version reporting. This updates the thing\'s reserved named shadow that the job targets.

', ], ], 'VersionsLimitExceededException' => [ 'base' => '

The number of policy versions exceeds the limit.

', 'refs' => [], ], 'ViolationEvent' => [ 'base' => '

Information about a Device Defender security profile behavior violation.

', 'refs' => [ 'ViolationEvents$member' => NULL, ], ], 'ViolationEventAdditionalInfo' => [ 'base' => '

The details of a violation event.

', 'refs' => [ 'ActiveViolation$violationEventAdditionalInfo' => '

The details of a violation event.

', 'ViolationEvent$violationEventAdditionalInfo' => '

The details of a violation event.

', ], ], 'ViolationEventOccurrenceRange' => [ 'base' => '

Specifies the time period of which violation events occurred between.

', 'refs' => [ 'DetectMitigationActionsTaskSummary$violationEventOccurrenceRange' => '

Specifies the time period of which violation events occurred between.

', 'StartDetectMitigationActionsTaskRequest$violationEventOccurrenceRange' => '

Specifies the time period of which violation events occurred between.

', ], ], 'ViolationEventType' => [ 'base' => NULL, 'refs' => [ 'ViolationEvent$violationEventType' => '

The type of violation event.

', ], ], 'ViolationEvents' => [ 'base' => NULL, 'refs' => [ 'ListViolationEventsResponse$violationEvents' => '

The security profile violation alerts issued for this account during the given time period, potentially filtered by security profile, behavior violated, or thing (device) violating.

', ], ], 'ViolationId' => [ 'base' => NULL, 'refs' => [ 'ActiveViolation$violationId' => '

The ID of the active violation.

', 'DetectMitigationActionExecution$violationId' => '

The unique identifier of the violation.

', 'ListDetectMitigationActionsExecutionsRequest$violationId' => '

The unique identifier of the violation.

', 'PutVerificationStateOnViolationRequest$violationId' => '

The violation ID.

', 'TargetViolationIdsForDetectMitigationActions$member' => NULL, 'ViolationEvent$violationId' => '

The ID of the violation event.

', ], ], 'VpcDestinationConfiguration' => [ 'base' => '

The configuration information for a virtual private cloud (VPC) destination.

', 'refs' => [ 'TopicRuleDestinationConfiguration$vpcConfiguration' => '

Configuration of the virtual private cloud (VPC) connection.

', ], ], 'VpcDestinationProperties' => [ 'base' => '

The properties of a virtual private cloud (VPC) destination.

', 'refs' => [ 'TopicRuleDestination$vpcProperties' => '

Properties of the virtual private cloud (VPC) connection.

', ], ], 'VpcDestinationSummary' => [ 'base' => '

The summary of a virtual private cloud (VPC) destination.

', 'refs' => [ 'TopicRuleDestinationSummary$vpcDestinationSummary' => '

Information about the virtual private cloud (VPC) connection.

', ], ], 'VpcId' => [ 'base' => NULL, 'refs' => [ 'VpcDestinationConfiguration$vpcId' => '

The ID of the VPC.

', 'VpcDestinationProperties$vpcId' => '

The ID of the VPC.

', 'VpcDestinationSummary$vpcId' => '

The ID of the VPC.

', ], ], 'WaitingForDataCollectionChecksCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatistics$waitingForDataCollectionChecks' => '

The number of checks waiting for data collection.

', ], ], 'errorMessage' => [ 'base' => NULL, 'refs' => [ 'CertificateConflictException$message' => '

The message for the exception.

', 'CertificateStateException$message' => '

The message for the exception.

', 'CertificateValidationException$message' => '

Additional information about the exception.

', 'ConflictException$message' => NULL, 'ConflictingResourceUpdateException$message' => '

The message for the exception.

', 'DeleteConflictException$message' => '

The message for the exception.

', 'IndexNotReadyException$message' => '

The message for the exception.

', 'InternalException$message' => '

The message for the exception.

', 'InternalFailureException$message' => '

The message for the exception.

', 'InternalServerException$message' => NULL, 'InvalidAggregationException$message' => NULL, 'InvalidQueryException$message' => '

The message for the exception.

', 'InvalidRequestException$message' => '

The message for the exception.

', 'InvalidResponseException$message' => '

The message for the exception.

', 'InvalidStateTransitionException$message' => '

The message for the exception.

', 'LimitExceededException$message' => '

The message for the exception.

', 'MalformedPolicyException$message' => '

The message for the exception.

', 'NotConfiguredException$message' => '

The message for the exception.

', 'RegistrationCodeValidationException$message' => '

Additional information about the exception.

', 'ResourceAlreadyExistsException$message' => '

The message for the exception.

', 'ResourceNotFoundException$message' => '

The message for the exception.

', 'ResourceRegistrationFailureException$message' => '

The message for the exception.

', 'ServiceQuotaExceededException$message' => NULL, 'ServiceUnavailableException$message' => '

The message for the exception.

', 'SqlParseException$message' => '

The message for the exception.

', 'TaskAlreadyExistsException$message' => NULL, 'ThrottlingException$message' => '

The message for the exception.

', 'TransferAlreadyCompletedException$message' => '

The message for the exception.

', 'TransferConflictException$message' => '

The message for the exception.

', 'UnauthorizedException$message' => '

The message for the exception.

', 'ValidationException$message' => NULL, 'VersionConflictException$message' => '

The message for the exception.

', 'VersionsLimitExceededException$message' => '

The message for the exception.

', ], ], 'resourceArn' => [ 'base' => NULL, 'refs' => [ 'ResourceAlreadyExistsException$resourceArn' => '

The ARN of the resource that caused the exception.

', ], ], 'resourceId' => [ 'base' => NULL, 'refs' => [ 'ConflictException$resourceId' => '

A resource with the same name already exists.

', 'ResourceAlreadyExistsException$resourceId' => '

The ID of the resource that caused the exception.

', ], ], 'stringValue' => [ 'base' => NULL, 'refs' => [ 'StringList$member' => NULL, ], ], 'usePrefixAttributeValue' => [ 'base' => NULL, 'refs' => [ 'ListThingsRequest$usePrefixAttributeValue' => '

When true, the action returns the thing resources with attribute values that start with the attributeValue provided.

When false, or not present, the action returns only the thing resources with attribute values that match the entire attributeValue provided.

', ], ], ],]; +return [ 'version' => '2.0', 'service' => 'IoT

IoT provides secure, bi-directional communication between Internet-connected devices (such as sensors, actuators, embedded devices, or smart appliances) and the Amazon Web Services cloud. You can discover your custom IoT-Data endpoint to communicate with, configure rules for data processing and integration with other services, organize resources associated with each device (Registry), configure logging, and create and manage policies and credentials to authenticate devices.

The service endpoints that expose this API are listed in Amazon Web Services IoT Core Endpoints and Quotas. You must use the endpoint for the region that has the resources you want to access.

The service name used by Amazon Web Services Signature Version 4 to sign the request is: execute-api.

For more information about how IoT works, see the Developer Guide.

For information about how to use the credentials provider for IoT, see Authorizing Direct Calls to Amazon Web Services Services.

', 'operations' => [ 'AcceptCertificateTransfer' => '

Accepts a pending certificate transfer. The default state of the certificate is INACTIVE.

To check for pending certificate transfers, call ListCertificates to enumerate your certificates.

Requires permission to access the AcceptCertificateTransfer action.

', 'AddThingToBillingGroup' => '

Adds a thing to a billing group.

Requires permission to access the AddThingToBillingGroup action.

', 'AddThingToThingGroup' => '

Adds a thing to a thing group.

Requires permission to access the AddThingToThingGroup action.

', 'AssociateTargetsWithJob' => '

Associates a group with a continuous job. The following criteria must be met:

  • The job must have been created with the targetSelection field set to "CONTINUOUS".

  • The job status must currently be "IN_PROGRESS".

  • The total number of targets associated with a job must not exceed 100.

Requires permission to access the AssociateTargetsWithJob action.

', 'AttachPolicy' => '

Attaches the specified policy to the specified principal (certificate or other credential).

Requires permission to access the AttachPolicy action.

', 'AttachPrincipalPolicy' => '

Attaches the specified policy to the specified principal (certificate or other credential).

Note: This action is deprecated and works as expected for backward compatibility, but we won\'t add enhancements. Use AttachPolicy instead.

Requires permission to access the AttachPrincipalPolicy action.

', 'AttachSecurityProfile' => '

Associates a Device Defender security profile with a thing group or this account. Each thing group or account can have up to five security profiles associated with it.

Requires permission to access the AttachSecurityProfile action.

', 'AttachThingPrincipal' => '

Attaches the specified principal to the specified thing. A principal can be X.509 certificates, Amazon Cognito identities or federated identities.

Requires permission to access the AttachThingPrincipal action.

', 'CancelAuditMitigationActionsTask' => '

Cancels a mitigation action task that is in progress. If the task is not in progress, an InvalidRequestException occurs.

Requires permission to access the CancelAuditMitigationActionsTask action.

', 'CancelAuditTask' => '

Cancels an audit that is in progress. The audit can be either scheduled or on demand. If the audit isn\'t in progress, an "InvalidRequestException" occurs.

Requires permission to access the CancelAuditTask action.

', 'CancelCertificateTransfer' => '

Cancels a pending transfer for the specified certificate.

Note Only the transfer source account can use this operation to cancel a transfer. (Transfer destinations can use RejectCertificateTransfer instead.) After transfer, IoT returns the certificate to the source account in the INACTIVE state. After the destination account has accepted the transfer, the transfer cannot be cancelled.

After a certificate transfer is cancelled, the status of the certificate changes from PENDING_TRANSFER to INACTIVE.

Requires permission to access the CancelCertificateTransfer action.

', 'CancelDetectMitigationActionsTask' => '

Cancels a Device Defender ML Detect mitigation action.

Requires permission to access the CancelDetectMitigationActionsTask action.

', 'CancelJob' => '

Cancels a job.

Requires permission to access the CancelJob action.

', 'CancelJobExecution' => '

Cancels the execution of a job for a given thing.

Requires permission to access the CancelJobExecution action.

', 'ClearDefaultAuthorizer' => '

Clears the default authorizer.

Requires permission to access the ClearDefaultAuthorizer action.

', 'ConfirmTopicRuleDestination' => '

Confirms a topic rule destination. When you create a rule requiring a destination, IoT sends a confirmation message to the endpoint or base address you specify. The message includes a token which you pass back when calling ConfirmTopicRuleDestination to confirm that you own or have access to the endpoint.

Requires permission to access the ConfirmTopicRuleDestination action.

', 'CreateAuditSuppression' => '

Creates a Device Defender audit suppression.

Requires permission to access the CreateAuditSuppression action.

', 'CreateAuthorizer' => '

Creates an authorizer.

Requires permission to access the CreateAuthorizer action.

', 'CreateBillingGroup' => '

Creates a billing group.

Requires permission to access the CreateBillingGroup action.

', 'CreateCertificateFromCsr' => '

Creates an X.509 certificate using the specified certificate signing request.

Requires permission to access the CreateCertificateFromCsr action.

The CSR must include a public key that is either an RSA key with a length of at least 2048 bits or an ECC key from NIST P-256, NIST P-384, or NIST P-521 curves. For supported certificates, consult Certificate signing algorithms supported by IoT.

Reusing the same certificate signing request (CSR) results in a distinct certificate.

You can create multiple certificates in a batch by creating a directory, copying multiple .csr files into that directory, and then specifying that directory on the command line. The following commands show how to create a batch of certificates given a batch of CSRs. In the following commands, we assume that a set of CSRs are located inside of the directory my-csr-directory:

On Linux and OS X, the command is:

$ ls my-csr-directory/ | xargs -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{}

This command lists all of the CSRs in my-csr-directory and pipes each CSR file name to the aws iot create-certificate-from-csr Amazon Web Services CLI command to create a certificate for the corresponding CSR.

You can also run the aws iot create-certificate-from-csr part of the command in parallel to speed up the certificate creation process:

$ ls my-csr-directory/ | xargs -P 10 -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{}

On Windows PowerShell, the command to create certificates for all CSRs in my-csr-directory is:

> ls -Name my-csr-directory | %{aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/$_}

On a Windows command prompt, the command to create certificates for all CSRs in my-csr-directory is:

> forfiles /p my-csr-directory /c "cmd /c aws iot create-certificate-from-csr --certificate-signing-request file://@path"

', 'CreateCertificateProvider' => '

Creates an Amazon Web Services IoT Core certificate provider. You can use Amazon Web Services IoT Core certificate provider to customize how to sign a certificate signing request (CSR) in IoT fleet provisioning. For more information, see Customizing certificate signing using Amazon Web Services IoT Core certificate provider from Amazon Web Services IoT Core Developer Guide.

Requires permission to access the CreateCertificateProvider action.

After you create a certificate provider, the behavior of CreateCertificateFromCsr API for fleet provisioning will change and all API calls to CreateCertificateFromCsr will invoke the certificate provider to create the certificates. It can take up to a few minutes for this behavior to change after a certificate provider is created.

', 'CreateCustomMetric' => '

Use this API to define a Custom Metric published by your devices to Device Defender.

Requires permission to access the CreateCustomMetric action.

', 'CreateDimension' => '

Create a dimension that you can use to limit the scope of a metric used in a security profile for IoT Device Defender. For example, using a TOPIC_FILTER dimension, you can narrow down the scope of the metric only to MQTT topics whose name match the pattern specified in the dimension.

Requires permission to access the CreateDimension action.

', 'CreateDomainConfiguration' => '

Creates a domain configuration.

Requires permission to access the CreateDomainConfiguration action.

', 'CreateDynamicThingGroup' => '

Creates a dynamic thing group.

Requires permission to access the CreateDynamicThingGroup action.

', 'CreateFleetMetric' => '

Creates a fleet metric.

Requires permission to access the CreateFleetMetric action.

', 'CreateJob' => '

Creates a job.

Requires permission to access the CreateJob action.

', 'CreateJobTemplate' => '

Creates a job template.

Requires permission to access the CreateJobTemplate action.

', 'CreateKeysAndCertificate' => '

Creates a 2048-bit RSA key pair and issues an X.509 certificate using the issued public key. You can also call CreateKeysAndCertificate over MQTT from a device, for more information, see Provisioning MQTT API.

Note This is the only time IoT issues the private key for this certificate, so it is important to keep it in a secure location.

Requires permission to access the CreateKeysAndCertificate action.

', 'CreateMitigationAction' => '

Defines an action that can be applied to audit findings by using StartAuditMitigationActionsTask. Only certain types of mitigation actions can be applied to specific check names. For more information, see Mitigation actions. Each mitigation action can apply only one type of change.

Requires permission to access the CreateMitigationAction action.

', 'CreateOTAUpdate' => '

Creates an IoT OTA update on a target group of things or groups.

Requires permission to access the CreateOTAUpdate action.

', 'CreatePackage' => '

Creates an IoT software package that can be deployed to your fleet.

Requires permission to access the CreatePackage and GetIndexingConfiguration actions.

', 'CreatePackageVersion' => '

Creates a new version for an existing IoT software package.

Requires permission to access the CreatePackageVersion and GetIndexingConfiguration actions.

', 'CreatePolicy' => '

Creates an IoT policy.

The created policy is the default version for the policy. This operation creates a policy version with a version identifier of 1 and sets 1 as the policy\'s default version.

Requires permission to access the CreatePolicy action.

', 'CreatePolicyVersion' => '

Creates a new version of the specified IoT policy. To update a policy, create a new policy version. A managed policy can have up to five versions. If the policy has five versions, you must use DeletePolicyVersion to delete an existing version before you create a new one.

Optionally, you can set the new version as the policy\'s default version. The default version is the operative version (that is, the version that is in effect for the certificates to which the policy is attached).

Requires permission to access the CreatePolicyVersion action.

', 'CreateProvisioningClaim' => '

Creates a provisioning claim.

Requires permission to access the CreateProvisioningClaim action.

', 'CreateProvisioningTemplate' => '

Creates a provisioning template.

Requires permission to access the CreateProvisioningTemplate action.

', 'CreateProvisioningTemplateVersion' => '

Creates a new version of a provisioning template.

Requires permission to access the CreateProvisioningTemplateVersion action.

', 'CreateRoleAlias' => '

Creates a role alias.

Requires permission to access the CreateRoleAlias action.

', 'CreateScheduledAudit' => '

Creates a scheduled audit that is run at a specified time interval.

Requires permission to access the CreateScheduledAudit action.

', 'CreateSecurityProfile' => '

Creates a Device Defender security profile.

Requires permission to access the CreateSecurityProfile action.

', 'CreateStream' => '

Creates a stream for delivering one or more large files in chunks over MQTT. A stream transports data bytes in chunks or blocks packaged as MQTT messages from a source like S3. You can have one or more files associated with a stream.

Requires permission to access the CreateStream action.

', 'CreateThing' => '

Creates a thing record in the registry. If this call is made multiple times using the same thing name and configuration, the call will succeed. If this call is made with the same thing name but different configuration a ResourceAlreadyExistsException is thrown.

This is a control plane operation. See Authorization for information about authorizing control plane actions.

Requires permission to access the CreateThing action.

', 'CreateThingGroup' => '

Create a thing group.

This is a control plane operation. See Authorization for information about authorizing control plane actions.

If the ThingGroup that you create has the exact same attributes as an existing ThingGroup, you will get a 200 success response.

Requires permission to access the CreateThingGroup action.

', 'CreateThingType' => '

Creates a new thing type.

Requires permission to access the CreateThingType action.

', 'CreateTopicRule' => '

Creates a rule. Creating rules is an administrator-level action. Any user who has permission to create rules will be able to access data processed by the rule.

Requires permission to access the CreateTopicRule action.

', 'CreateTopicRuleDestination' => '

Creates a topic rule destination. The destination must be confirmed prior to use.

Requires permission to access the CreateTopicRuleDestination action.

', 'DeleteAccountAuditConfiguration' => '

Restores the default settings for Device Defender audits for this account. Any configuration data you entered is deleted and all audit checks are reset to disabled.

Requires permission to access the DeleteAccountAuditConfiguration action.

', 'DeleteAuditSuppression' => '

Deletes a Device Defender audit suppression.

Requires permission to access the DeleteAuditSuppression action.

', 'DeleteAuthorizer' => '

Deletes an authorizer.

Requires permission to access the DeleteAuthorizer action.

', 'DeleteBillingGroup' => '

Deletes the billing group.

Requires permission to access the DeleteBillingGroup action.

', 'DeleteCACertificate' => '

Deletes a registered CA certificate.

Requires permission to access the DeleteCACertificate action.

', 'DeleteCertificate' => '

Deletes the specified certificate.

A certificate cannot be deleted if it has a policy or IoT thing attached to it or if its status is set to ACTIVE. To delete a certificate, first use the DetachPolicy action to detach all policies. Next, use the UpdateCertificate action to set the certificate to the INACTIVE status.

Requires permission to access the DeleteCertificate action.

', 'DeleteCertificateProvider' => '

Deletes a certificate provider.

Requires permission to access the DeleteCertificateProvider action.

If you delete the certificate provider resource, the behavior of CreateCertificateFromCsr will resume, and IoT will create certificates signed by IoT from a certificate signing request (CSR).

', 'DeleteCustomMetric' => '

Deletes a Device Defender detect custom metric.

Requires permission to access the DeleteCustomMetric action.

Before you can delete a custom metric, you must first remove the custom metric from all security profiles it\'s a part of. The security profile associated with the custom metric can be found using the ListSecurityProfiles API with metricName set to your custom metric name.

', 'DeleteDimension' => '

Removes the specified dimension from your Amazon Web Services accounts.

Requires permission to access the DeleteDimension action.

', 'DeleteDomainConfiguration' => '

Deletes the specified domain configuration.

Requires permission to access the DeleteDomainConfiguration action.

', 'DeleteDynamicThingGroup' => '

Deletes a dynamic thing group.

Requires permission to access the DeleteDynamicThingGroup action.

', 'DeleteFleetMetric' => '

Deletes the specified fleet metric. Returns successfully with no error if the deletion is successful or you specify a fleet metric that doesn\'t exist.

Requires permission to access the DeleteFleetMetric action.

', 'DeleteJob' => '

Deletes a job and its related job executions.

Deleting a job may take time, depending on the number of job executions created for the job and various other factors. While the job is being deleted, the status of the job will be shown as "DELETION_IN_PROGRESS". Attempting to delete or cancel a job whose status is already "DELETION_IN_PROGRESS" will result in an error.

Only 10 jobs may have status "DELETION_IN_PROGRESS" at the same time, or a LimitExceededException will occur.

Requires permission to access the DeleteJob action.

', 'DeleteJobExecution' => '

Deletes a job execution.

Requires permission to access the DeleteJobExecution action.

', 'DeleteJobTemplate' => '

Deletes the specified job template.

', 'DeleteMitigationAction' => '

Deletes a defined mitigation action from your Amazon Web Services accounts.

Requires permission to access the DeleteMitigationAction action.

', 'DeleteOTAUpdate' => '

Delete an OTA update.

Requires permission to access the DeleteOTAUpdate action.

', 'DeletePackage' => '

Deletes a specific version from a software package.

Note: All package versions must be deleted before deleting the software package.

Requires permission to access the DeletePackageVersion action.

', 'DeletePackageVersion' => '

Deletes a specific version from a software package.

Note: If a package version is designated as default, you must remove the designation from the software package using the UpdatePackage action.

', 'DeletePolicy' => '

Deletes the specified policy.

A policy cannot be deleted if it has non-default versions or it is attached to any certificate.

To delete a policy, use the DeletePolicyVersion action to delete all non-default versions of the policy; use the DetachPolicy action to detach the policy from any certificate; and then use the DeletePolicy action to delete the policy.

When a policy is deleted using DeletePolicy, its default version is deleted with it.

Because of the distributed nature of Amazon Web Services, it can take up to five minutes after a policy is detached before it\'s ready to be deleted.

Requires permission to access the DeletePolicy action.

', 'DeletePolicyVersion' => '

Deletes the specified version of the specified policy. You cannot delete the default version of a policy using this action. To delete the default version of a policy, use DeletePolicy. To find out which version of a policy is marked as the default version, use ListPolicyVersions.

Requires permission to access the DeletePolicyVersion action.

', 'DeleteProvisioningTemplate' => '

Deletes a provisioning template.

Requires permission to access the DeleteProvisioningTemplate action.

', 'DeleteProvisioningTemplateVersion' => '

Deletes a provisioning template version.

Requires permission to access the DeleteProvisioningTemplateVersion action.

', 'DeleteRegistrationCode' => '

Deletes a CA certificate registration code.

Requires permission to access the DeleteRegistrationCode action.

', 'DeleteRoleAlias' => '

Deletes a role alias

Requires permission to access the DeleteRoleAlias action.

', 'DeleteScheduledAudit' => '

Deletes a scheduled audit.

Requires permission to access the DeleteScheduledAudit action.

', 'DeleteSecurityProfile' => '

Deletes a Device Defender security profile.

Requires permission to access the DeleteSecurityProfile action.

', 'DeleteStream' => '

Deletes a stream.

Requires permission to access the DeleteStream action.

', 'DeleteThing' => '

Deletes the specified thing. Returns successfully with no error if the deletion is successful or you specify a thing that doesn\'t exist.

Requires permission to access the DeleteThing action.

', 'DeleteThingGroup' => '

Deletes a thing group.

Requires permission to access the DeleteThingGroup action.

', 'DeleteThingType' => '

Deletes the specified thing type. You cannot delete a thing type if it has things associated with it. To delete a thing type, first mark it as deprecated by calling DeprecateThingType, then remove any associated things by calling UpdateThing to change the thing type on any associated thing, and finally use DeleteThingType to delete the thing type.

Requires permission to access the DeleteThingType action.

', 'DeleteTopicRule' => '

Deletes the rule.

Requires permission to access the DeleteTopicRule action.

', 'DeleteTopicRuleDestination' => '

Deletes a topic rule destination.

Requires permission to access the DeleteTopicRuleDestination action.

', 'DeleteV2LoggingLevel' => '

Deletes a logging level.

Requires permission to access the DeleteV2LoggingLevel action.

', 'DeprecateThingType' => '

Deprecates a thing type. You can not associate new things with deprecated thing type.

Requires permission to access the DeprecateThingType action.

', 'DescribeAccountAuditConfiguration' => '

Gets information about the Device Defender audit settings for this account. Settings include how audit notifications are sent and which audit checks are enabled or disabled.

Requires permission to access the DescribeAccountAuditConfiguration action.

', 'DescribeAuditFinding' => '

Gets information about a single audit finding. Properties include the reason for noncompliance, the severity of the issue, and the start time when the audit that returned the finding.

Requires permission to access the DescribeAuditFinding action.

', 'DescribeAuditMitigationActionsTask' => '

Gets information about an audit mitigation task that is used to apply mitigation actions to a set of audit findings. Properties include the actions being applied, the audit checks to which they\'re being applied, the task status, and aggregated task statistics.

', 'DescribeAuditSuppression' => '

Gets information about a Device Defender audit suppression.

', 'DescribeAuditTask' => '

Gets information about a Device Defender audit.

Requires permission to access the DescribeAuditTask action.

', 'DescribeAuthorizer' => '

Describes an authorizer.

Requires permission to access the DescribeAuthorizer action.

', 'DescribeBillingGroup' => '

Returns information about a billing group.

Requires permission to access the DescribeBillingGroup action.

', 'DescribeCACertificate' => '

Describes a registered CA certificate.

Requires permission to access the DescribeCACertificate action.

', 'DescribeCertificate' => '

Gets information about the specified certificate.

Requires permission to access the DescribeCertificate action.

', 'DescribeCertificateProvider' => '

Describes a certificate provider.

Requires permission to access the DescribeCertificateProvider action.

', 'DescribeCustomMetric' => '

Gets information about a Device Defender detect custom metric.

Requires permission to access the DescribeCustomMetric action.

', 'DescribeDefaultAuthorizer' => '

Describes the default authorizer.

Requires permission to access the DescribeDefaultAuthorizer action.

', 'DescribeDetectMitigationActionsTask' => '

Gets information about a Device Defender ML Detect mitigation action.

Requires permission to access the DescribeDetectMitigationActionsTask action.

', 'DescribeDimension' => '

Provides details about a dimension that is defined in your Amazon Web Services accounts.

Requires permission to access the DescribeDimension action.

', 'DescribeDomainConfiguration' => '

Gets summary information about a domain configuration.

Requires permission to access the DescribeDomainConfiguration action.

', 'DescribeEndpoint' => '

Returns or creates a unique endpoint specific to the Amazon Web Services account making the call.

The first time DescribeEndpoint is called, an endpoint is created. All subsequent calls to DescribeEndpoint return the same endpoint.

Requires permission to access the DescribeEndpoint action.

', 'DescribeEventConfigurations' => '

Describes event configurations.

Requires permission to access the DescribeEventConfigurations action.

', 'DescribeFleetMetric' => '

Gets information about the specified fleet metric.

Requires permission to access the DescribeFleetMetric action.

', 'DescribeIndex' => '

Describes a search index.

Requires permission to access the DescribeIndex action.

', 'DescribeJob' => '

Describes a job.

Requires permission to access the DescribeJob action.

', 'DescribeJobExecution' => '

Describes a job execution.

Requires permission to access the DescribeJobExecution action.

', 'DescribeJobTemplate' => '

Returns information about a job template.

', 'DescribeManagedJobTemplate' => '

View details of a managed job template.

', 'DescribeMitigationAction' => '

Gets information about a mitigation action.

Requires permission to access the DescribeMitigationAction action.

', 'DescribeProvisioningTemplate' => '

Returns information about a provisioning template.

Requires permission to access the DescribeProvisioningTemplate action.

', 'DescribeProvisioningTemplateVersion' => '

Returns information about a provisioning template version.

Requires permission to access the DescribeProvisioningTemplateVersion action.

', 'DescribeRoleAlias' => '

Describes a role alias.

Requires permission to access the DescribeRoleAlias action.

', 'DescribeScheduledAudit' => '

Gets information about a scheduled audit.

Requires permission to access the DescribeScheduledAudit action.

', 'DescribeSecurityProfile' => '

Gets information about a Device Defender security profile.

Requires permission to access the DescribeSecurityProfile action.

', 'DescribeStream' => '

Gets information about a stream.

Requires permission to access the DescribeStream action.

', 'DescribeThing' => '

Gets information about the specified thing.

Requires permission to access the DescribeThing action.

', 'DescribeThingGroup' => '

Describe a thing group.

Requires permission to access the DescribeThingGroup action.

', 'DescribeThingRegistrationTask' => '

Describes a bulk thing provisioning task.

Requires permission to access the DescribeThingRegistrationTask action.

', 'DescribeThingType' => '

Gets information about the specified thing type.

Requires permission to access the DescribeThingType action.

', 'DetachPolicy' => '

Detaches a policy from the specified target.

Because of the distributed nature of Amazon Web Services, it can take up to five minutes after a policy is detached before it\'s ready to be deleted.

Requires permission to access the DetachPolicy action.

', 'DetachPrincipalPolicy' => '

Removes the specified policy from the specified certificate.

Note: This action is deprecated and works as expected for backward compatibility, but we won\'t add enhancements. Use DetachPolicy instead.

Requires permission to access the DetachPrincipalPolicy action.

', 'DetachSecurityProfile' => '

Disassociates a Device Defender security profile from a thing group or from this account.

Requires permission to access the DetachSecurityProfile action.

', 'DetachThingPrincipal' => '

Detaches the specified principal from the specified thing. A principal can be X.509 certificates, IAM users, groups, and roles, Amazon Cognito identities or federated identities.

This call is asynchronous. It might take several seconds for the detachment to propagate.

Requires permission to access the DetachThingPrincipal action.

', 'DisableTopicRule' => '

Disables the rule.

Requires permission to access the DisableTopicRule action.

', 'EnableTopicRule' => '

Enables the rule.

Requires permission to access the EnableTopicRule action.

', 'GetBehaviorModelTrainingSummaries' => '

Returns a Device Defender\'s ML Detect Security Profile training model\'s status.

Requires permission to access the GetBehaviorModelTrainingSummaries action.

', 'GetBucketsAggregation' => '

Aggregates on indexed data with search queries pertaining to particular fields.

Requires permission to access the GetBucketsAggregation action.

', 'GetCardinality' => '

Returns the approximate count of unique values that match the query.

Requires permission to access the GetCardinality action.

', 'GetEffectivePolicies' => '

Gets a list of the policies that have an effect on the authorization behavior of the specified device when it connects to the IoT device gateway.

Requires permission to access the GetEffectivePolicies action.

', 'GetIndexingConfiguration' => '

Gets the indexing configuration.

Requires permission to access the GetIndexingConfiguration action.

', 'GetJobDocument' => '

Gets a job document.

Requires permission to access the GetJobDocument action.

', 'GetLoggingOptions' => '

Gets the logging options.

NOTE: use of this command is not recommended. Use GetV2LoggingOptions instead.

Requires permission to access the GetLoggingOptions action.

', 'GetOTAUpdate' => '

Gets an OTA update.

Requires permission to access the GetOTAUpdate action.

', 'GetPackage' => '

Gets information about the specified software package.

Requires permission to access the GetPackage action.

', 'GetPackageConfiguration' => '

Gets information about the specified software package\'s configuration.

Requires permission to access the GetPackageConfiguration action.

', 'GetPackageVersion' => '

Gets information about the specified package version.

Requires permission to access the GetPackageVersion action.

', 'GetPercentiles' => '

Groups the aggregated values that match the query into percentile groupings. The default percentile groupings are: 1,5,25,50,75,95,99, although you can specify your own when you call GetPercentiles. This function returns a value for each percentile group specified (or the default percentile groupings). The percentile group "1" contains the aggregated field value that occurs in approximately one percent of the values that match the query. The percentile group "5" contains the aggregated field value that occurs in approximately five percent of the values that match the query, and so on. The result is an approximation, the more values that match the query, the more accurate the percentile values.

Requires permission to access the GetPercentiles action.

', 'GetPolicy' => '

Gets information about the specified policy with the policy document of the default version.

Requires permission to access the GetPolicy action.

', 'GetPolicyVersion' => '

Gets information about the specified policy version.

Requires permission to access the GetPolicyVersion action.

', 'GetRegistrationCode' => '

Gets a registration code used to register a CA certificate with IoT.

IoT will create a registration code as part of this API call if the registration code doesn\'t exist or has been deleted. If you already have a registration code, this API call will return the same registration code.

Requires permission to access the GetRegistrationCode action.

', 'GetStatistics' => '

Returns the count, average, sum, minimum, maximum, sum of squares, variance, and standard deviation for the specified aggregated field. If the aggregation field is of type String, only the count statistic is returned.

Requires permission to access the GetStatistics action.

', 'GetTopicRule' => '

Gets information about the rule.

Requires permission to access the GetTopicRule action.

', 'GetTopicRuleDestination' => '

Gets information about a topic rule destination.

Requires permission to access the GetTopicRuleDestination action.

', 'GetV2LoggingOptions' => '

Gets the fine grained logging options.

Requires permission to access the GetV2LoggingOptions action.

', 'ListActiveViolations' => '

Lists the active violations for a given Device Defender security profile.

Requires permission to access the ListActiveViolations action.

', 'ListAttachedPolicies' => '

Lists the policies attached to the specified thing group.

Requires permission to access the ListAttachedPolicies action.

', 'ListAuditFindings' => '

Lists the findings (results) of a Device Defender audit or of the audits performed during a specified time period. (Findings are retained for 90 days.)

Requires permission to access the ListAuditFindings action.

', 'ListAuditMitigationActionsExecutions' => '

Gets the status of audit mitigation action tasks that were executed.

Requires permission to access the ListAuditMitigationActionsExecutions action.

', 'ListAuditMitigationActionsTasks' => '

Gets a list of audit mitigation action tasks that match the specified filters.

Requires permission to access the ListAuditMitigationActionsTasks action.

', 'ListAuditSuppressions' => '

Lists your Device Defender audit listings.

Requires permission to access the ListAuditSuppressions action.

', 'ListAuditTasks' => '

Lists the Device Defender audits that have been performed during a given time period.

Requires permission to access the ListAuditTasks action.

', 'ListAuthorizers' => '

Lists the authorizers registered in your account.

Requires permission to access the ListAuthorizers action.

', 'ListBillingGroups' => '

Lists the billing groups you have created.

Requires permission to access the ListBillingGroups action.

', 'ListCACertificates' => '

Lists the CA certificates registered for your Amazon Web Services account.

The results are paginated with a default page size of 25. You can use the returned marker to retrieve additional results.

Requires permission to access the ListCACertificates action.

', 'ListCertificateProviders' => '

Lists all your certificate providers in your Amazon Web Services account.

Requires permission to access the ListCertificateProviders action.

', 'ListCertificates' => '

Lists the certificates registered in your Amazon Web Services account.

The results are paginated with a default page size of 25. You can use the returned marker to retrieve additional results.

Requires permission to access the ListCertificates action.

', 'ListCertificatesByCA' => '

List the device certificates signed by the specified CA certificate.

Requires permission to access the ListCertificatesByCA action.

', 'ListCustomMetrics' => '

Lists your Device Defender detect custom metrics.

Requires permission to access the ListCustomMetrics action.

', 'ListDetectMitigationActionsExecutions' => '

Lists mitigation actions executions for a Device Defender ML Detect Security Profile.

Requires permission to access the ListDetectMitigationActionsExecutions action.

', 'ListDetectMitigationActionsTasks' => '

List of Device Defender ML Detect mitigation actions tasks.

Requires permission to access the ListDetectMitigationActionsTasks action.

', 'ListDimensions' => '

List the set of dimensions that are defined for your Amazon Web Services accounts.

Requires permission to access the ListDimensions action.

', 'ListDomainConfigurations' => '

Gets a list of domain configurations for the user. This list is sorted alphabetically by domain configuration name.

Requires permission to access the ListDomainConfigurations action.

', 'ListFleetMetrics' => '

Lists all your fleet metrics.

Requires permission to access the ListFleetMetrics action.

', 'ListIndices' => '

Lists the search indices.

Requires permission to access the ListIndices action.

', 'ListJobExecutionsForJob' => '

Lists the job executions for a job.

Requires permission to access the ListJobExecutionsForJob action.

', 'ListJobExecutionsForThing' => '

Lists the job executions for the specified thing.

Requires permission to access the ListJobExecutionsForThing action.

', 'ListJobTemplates' => '

Returns a list of job templates.

Requires permission to access the ListJobTemplates action.

', 'ListJobs' => '

Lists jobs.

Requires permission to access the ListJobs action.

', 'ListManagedJobTemplates' => '

Returns a list of managed job templates.

', 'ListMetricValues' => '

Lists the values reported for an IoT Device Defender metric (device-side metric, cloud-side metric, or custom metric) by the given thing during the specified time period.

', 'ListMitigationActions' => '

Gets a list of all mitigation actions that match the specified filter criteria.

Requires permission to access the ListMitigationActions action.

', 'ListOTAUpdates' => '

Lists OTA updates.

Requires permission to access the ListOTAUpdates action.

', 'ListOutgoingCertificates' => '

Lists certificates that are being transferred but not yet accepted.

Requires permission to access the ListOutgoingCertificates action.

', 'ListPackageVersions' => '

Lists the software package versions associated to the account.

Requires permission to access the ListPackageVersions action.

', 'ListPackages' => '

Lists the software packages associated to the account.

Requires permission to access the ListPackages action.

', 'ListPolicies' => '

Lists your policies.

Requires permission to access the ListPolicies action.

', 'ListPolicyPrincipals' => '

Lists the principals associated with the specified policy.

Note: This action is deprecated and works as expected for backward compatibility, but we won\'t add enhancements. Use ListTargetsForPolicy instead.

Requires permission to access the ListPolicyPrincipals action.

', 'ListPolicyVersions' => '

Lists the versions of the specified policy and identifies the default version.

Requires permission to access the ListPolicyVersions action.

', 'ListPrincipalPolicies' => '

Lists the policies attached to the specified principal. If you use an Cognito identity, the ID must be in AmazonCognito Identity format.

Note: This action is deprecated and works as expected for backward compatibility, but we won\'t add enhancements. Use ListAttachedPolicies instead.

Requires permission to access the ListPrincipalPolicies action.

', 'ListPrincipalThings' => '

Lists the things associated with the specified principal. A principal can be X.509 certificates, IAM users, groups, and roles, Amazon Cognito identities or federated identities.

Requires permission to access the ListPrincipalThings action.

', 'ListProvisioningTemplateVersions' => '

A list of provisioning template versions.

Requires permission to access the ListProvisioningTemplateVersions action.

', 'ListProvisioningTemplates' => '

Lists the provisioning templates in your Amazon Web Services account.

Requires permission to access the ListProvisioningTemplates action.

', 'ListRelatedResourcesForAuditFinding' => '

The related resources of an Audit finding. The following resources can be returned from calling this API:

  • DEVICE_CERTIFICATE

  • CA_CERTIFICATE

  • IOT_POLICY

  • COGNITO_IDENTITY_POOL

  • CLIENT_ID

  • ACCOUNT_SETTINGS

  • ROLE_ALIAS

  • IAM_ROLE

  • ISSUER_CERTIFICATE

This API is similar to DescribeAuditFinding\'s RelatedResources but provides pagination and is not limited to 10 resources. When calling DescribeAuditFinding for the intermediate CA revoked for active device certificates check, RelatedResources will not be populated. You must use this API, ListRelatedResourcesForAuditFinding, to list the certificates.

', 'ListRoleAliases' => '

Lists the role aliases registered in your account.

Requires permission to access the ListRoleAliases action.

', 'ListScheduledAudits' => '

Lists all of your scheduled audits.

Requires permission to access the ListScheduledAudits action.

', 'ListSecurityProfiles' => '

Lists the Device Defender security profiles you\'ve created. You can filter security profiles by dimension or custom metric.

Requires permission to access the ListSecurityProfiles action.

dimensionName and metricName cannot be used in the same request.

', 'ListSecurityProfilesForTarget' => '

Lists the Device Defender security profiles attached to a target (thing group).

Requires permission to access the ListSecurityProfilesForTarget action.

', 'ListStreams' => '

Lists all of the streams in your Amazon Web Services account.

Requires permission to access the ListStreams action.

', 'ListTagsForResource' => '

Lists the tags (metadata) you have assigned to the resource.

Requires permission to access the ListTagsForResource action.

', 'ListTargetsForPolicy' => '

List targets for the specified policy.

Requires permission to access the ListTargetsForPolicy action.

', 'ListTargetsForSecurityProfile' => '

Lists the targets (thing groups) associated with a given Device Defender security profile.

Requires permission to access the ListTargetsForSecurityProfile action.

', 'ListThingGroups' => '

List the thing groups in your account.

Requires permission to access the ListThingGroups action.

', 'ListThingGroupsForThing' => '

List the thing groups to which the specified thing belongs.

Requires permission to access the ListThingGroupsForThing action.

', 'ListThingPrincipals' => '

Lists the principals associated with the specified thing. A principal can be X.509 certificates, IAM users, groups, and roles, Amazon Cognito identities or federated identities.

Requires permission to access the ListThingPrincipals action.

', 'ListThingRegistrationTaskReports' => '

Information about the thing registration tasks.

', 'ListThingRegistrationTasks' => '

List bulk thing provisioning tasks.

Requires permission to access the ListThingRegistrationTasks action.

', 'ListThingTypes' => '

Lists the existing thing types.

Requires permission to access the ListThingTypes action.

', 'ListThings' => '

Lists your things. Use the attributeName and attributeValue parameters to filter your things. For example, calling ListThings with attributeName=Color and attributeValue=Red retrieves all things in the registry that contain an attribute Color with the value Red. For more information, see List Things from the Amazon Web Services IoT Core Developer Guide.

Requires permission to access the ListThings action.

You will not be charged for calling this API if an Access denied error is returned. You will also not be charged if no attributes or pagination token was provided in request and no pagination token and no results were returned.

', 'ListThingsInBillingGroup' => '

Lists the things you have added to the given billing group.

Requires permission to access the ListThingsInBillingGroup action.

', 'ListThingsInThingGroup' => '

Lists the things in the specified group.

Requires permission to access the ListThingsInThingGroup action.

', 'ListTopicRuleDestinations' => '

Lists all the topic rule destinations in your Amazon Web Services account.

Requires permission to access the ListTopicRuleDestinations action.

', 'ListTopicRules' => '

Lists the rules for the specific topic.

Requires permission to access the ListTopicRules action.

', 'ListV2LoggingLevels' => '

Lists logging levels.

Requires permission to access the ListV2LoggingLevels action.

', 'ListViolationEvents' => '

Lists the Device Defender security profile violations discovered during the given time period. You can use filters to limit the results to those alerts issued for a particular security profile, behavior, or thing (device).

Requires permission to access the ListViolationEvents action.

', 'PutVerificationStateOnViolation' => '

Set a verification state and provide a description of that verification state on a violation (detect alarm).

', 'RegisterCACertificate' => '

Registers a CA certificate with Amazon Web Services IoT Core. There is no limit to the number of CA certificates you can register in your Amazon Web Services account. You can register up to 10 CA certificates with the same CA subject field per Amazon Web Services account.

Requires permission to access the RegisterCACertificate action.

', 'RegisterCertificate' => '

Registers a device certificate with IoT in the same certificate mode as the signing CA. If you have more than one CA certificate that has the same subject field, you must specify the CA certificate that was used to sign the device certificate being registered.

Requires permission to access the RegisterCertificate action.

', 'RegisterCertificateWithoutCA' => '

Register a certificate that does not have a certificate authority (CA). For supported certificates, consult Certificate signing algorithms supported by IoT.

', 'RegisterThing' => '

Provisions a thing in the device registry. RegisterThing calls other IoT control plane APIs. These calls might exceed your account level IoT Throttling Limits and cause throttle errors. Please contact Amazon Web Services Customer Support to raise your throttling limits if necessary.

Requires permission to access the RegisterThing action.

', 'RejectCertificateTransfer' => '

Rejects a pending certificate transfer. After IoT rejects a certificate transfer, the certificate status changes from PENDING_TRANSFER to INACTIVE.

To check for pending certificate transfers, call ListCertificates to enumerate your certificates.

This operation can only be called by the transfer destination. After it is called, the certificate will be returned to the source\'s account in the INACTIVE state.

Requires permission to access the RejectCertificateTransfer action.

', 'RemoveThingFromBillingGroup' => '

Removes the given thing from the billing group.

Requires permission to access the RemoveThingFromBillingGroup action.

This call is asynchronous. It might take several seconds for the detachment to propagate.

', 'RemoveThingFromThingGroup' => '

Remove the specified thing from the specified group.

You must specify either a thingGroupArn or a thingGroupName to identify the thing group and either a thingArn or a thingName to identify the thing to remove from the thing group.

Requires permission to access the RemoveThingFromThingGroup action.

', 'ReplaceTopicRule' => '

Replaces the rule. You must specify all parameters for the new rule. Creating rules is an administrator-level action. Any user who has permission to create rules will be able to access data processed by the rule.

Requires permission to access the ReplaceTopicRule action.

', 'SearchIndex' => '

The query search index.

Requires permission to access the SearchIndex action.

', 'SetDefaultAuthorizer' => '

Sets the default authorizer. This will be used if a websocket connection is made without specifying an authorizer.

Requires permission to access the SetDefaultAuthorizer action.

', 'SetDefaultPolicyVersion' => '

Sets the specified version of the specified policy as the policy\'s default (operative) version. This action affects all certificates to which the policy is attached. To list the principals the policy is attached to, use the ListPrincipalPolicies action.

Requires permission to access the SetDefaultPolicyVersion action.

', 'SetLoggingOptions' => '

Sets the logging options.

NOTE: use of this command is not recommended. Use SetV2LoggingOptions instead.

Requires permission to access the SetLoggingOptions action.

', 'SetV2LoggingLevel' => '

Sets the logging level.

Requires permission to access the SetV2LoggingLevel action.

', 'SetV2LoggingOptions' => '

Sets the logging options for the V2 logging service.

Requires permission to access the SetV2LoggingOptions action.

', 'StartAuditMitigationActionsTask' => '

Starts a task that applies a set of mitigation actions to the specified target.

Requires permission to access the StartAuditMitigationActionsTask action.

', 'StartDetectMitigationActionsTask' => '

Starts a Device Defender ML Detect mitigation actions task.

Requires permission to access the StartDetectMitigationActionsTask action.

', 'StartOnDemandAuditTask' => '

Starts an on-demand Device Defender audit.

Requires permission to access the StartOnDemandAuditTask action.

', 'StartThingRegistrationTask' => '

Creates a bulk thing provisioning task.

Requires permission to access the StartThingRegistrationTask action.

', 'StopThingRegistrationTask' => '

Cancels a bulk thing provisioning task.

Requires permission to access the StopThingRegistrationTask action.

', 'TagResource' => '

Adds to or modifies the tags of the given resource. Tags are metadata which can be used to manage a resource.

Requires permission to access the TagResource action.

', 'TestAuthorization' => '

Tests if a specified principal is authorized to perform an IoT action on a specified resource. Use this to test and debug the authorization behavior of devices that connect to the IoT device gateway.

Requires permission to access the TestAuthorization action.

', 'TestInvokeAuthorizer' => '

Tests a custom authorization behavior by invoking a specified custom authorizer. Use this to test and debug the custom authorization behavior of devices that connect to the IoT device gateway.

Requires permission to access the TestInvokeAuthorizer action.

', 'TransferCertificate' => '

Transfers the specified certificate to the specified Amazon Web Services account.

Requires permission to access the TransferCertificate action.

You can cancel the transfer until it is acknowledged by the recipient.

No notification is sent to the transfer destination\'s account. It is up to the caller to notify the transfer target.

The certificate being transferred must not be in the ACTIVE state. You can use the UpdateCertificate action to deactivate it.

The certificate must not have any policies attached to it. You can use the DetachPolicy action to detach them.

', 'UntagResource' => '

Removes the given tags (metadata) from the resource.

Requires permission to access the UntagResource action.

', 'UpdateAccountAuditConfiguration' => '

Configures or reconfigures the Device Defender audit settings for this account. Settings include how audit notifications are sent and which audit checks are enabled or disabled.

Requires permission to access the UpdateAccountAuditConfiguration action.

', 'UpdateAuditSuppression' => '

Updates a Device Defender audit suppression.

', 'UpdateAuthorizer' => '

Updates an authorizer.

Requires permission to access the UpdateAuthorizer action.

', 'UpdateBillingGroup' => '

Updates information about the billing group.

Requires permission to access the UpdateBillingGroup action.

', 'UpdateCACertificate' => '

Updates a registered CA certificate.

Requires permission to access the UpdateCACertificate action.

', 'UpdateCertificate' => '

Updates the status of the specified certificate. This operation is idempotent.

Requires permission to access the UpdateCertificate action.

Certificates must be in the ACTIVE state to authenticate devices that use a certificate to connect to IoT.

Within a few minutes of updating a certificate from the ACTIVE state to any other state, IoT disconnects all devices that used that certificate to connect. Devices cannot use a certificate that is not in the ACTIVE state to reconnect.

', 'UpdateCertificateProvider' => '

Updates a certificate provider.

Requires permission to access the UpdateCertificateProvider action.

', 'UpdateCustomMetric' => '

Updates a Device Defender detect custom metric.

Requires permission to access the UpdateCustomMetric action.

', 'UpdateDimension' => '

Updates the definition for a dimension. You cannot change the type of a dimension after it is created (you can delete it and recreate it).

Requires permission to access the UpdateDimension action.

', 'UpdateDomainConfiguration' => '

Updates values stored in the domain configuration. Domain configurations for default endpoints can\'t be updated.

Requires permission to access the UpdateDomainConfiguration action.

', 'UpdateDynamicThingGroup' => '

Updates a dynamic thing group.

Requires permission to access the UpdateDynamicThingGroup action.

', 'UpdateEventConfigurations' => '

Updates the event configurations.

Requires permission to access the UpdateEventConfigurations action.

', 'UpdateFleetMetric' => '

Updates the data for a fleet metric.

Requires permission to access the UpdateFleetMetric action.

', 'UpdateIndexingConfiguration' => '

Updates the search configuration.

Requires permission to access the UpdateIndexingConfiguration action.

', 'UpdateJob' => '

Updates supported fields of the specified job.

Requires permission to access the UpdateJob action.

', 'UpdateMitigationAction' => '

Updates the definition for the specified mitigation action.

Requires permission to access the UpdateMitigationAction action.

', 'UpdatePackage' => '

Updates the supported fields for a specific software package.

Requires permission to access the UpdatePackage and GetIndexingConfiguration actions.

', 'UpdatePackageConfiguration' => '

Updates the software package configuration.

Requires permission to access the UpdatePackageConfiguration and iam:PassRole actions.

', 'UpdatePackageVersion' => '

Updates the supported fields for a specific package version.

Requires permission to access the UpdatePackageVersion and GetIndexingConfiguration actions.

', 'UpdateProvisioningTemplate' => '

Updates a provisioning template.

Requires permission to access the UpdateProvisioningTemplate action.

', 'UpdateRoleAlias' => '

Updates a role alias.

Requires permission to access the UpdateRoleAlias action.

', 'UpdateScheduledAudit' => '

Updates a scheduled audit, including which checks are performed and how often the audit takes place.

Requires permission to access the UpdateScheduledAudit action.

', 'UpdateSecurityProfile' => '

Updates a Device Defender security profile.

Requires permission to access the UpdateSecurityProfile action.

', 'UpdateStream' => '

Updates an existing stream. The stream version will be incremented by one.

Requires permission to access the UpdateStream action.

', 'UpdateThing' => '

Updates the data for a thing.

Requires permission to access the UpdateThing action.

', 'UpdateThingGroup' => '

Update a thing group.

Requires permission to access the UpdateThingGroup action.

', 'UpdateThingGroupsForThing' => '

Updates the groups to which the thing belongs.

Requires permission to access the UpdateThingGroupsForThing action.

', 'UpdateTopicRuleDestination' => '

Updates a topic rule destination. You use this to change the status, endpoint URL, or confirmation URL of the destination.

Requires permission to access the UpdateTopicRuleDestination action.

', 'ValidateSecurityProfileBehaviors' => '

Validates a Device Defender security profile behaviors specification.

Requires permission to access the ValidateSecurityProfileBehaviors action.

', ], 'shapes' => [ 'AbortAction' => [ 'base' => NULL, 'refs' => [ 'AbortCriteria$action' => '

The type of job action to take to initiate the job abort.

', ], ], 'AbortConfig' => [ 'base' => '

The criteria that determine when and how a job abort takes place.

', 'refs' => [ 'CreateJobRequest$abortConfig' => '

Allows you to create the criteria to abort a job.

', 'CreateJobTemplateRequest$abortConfig' => NULL, 'DescribeJobTemplateResponse$abortConfig' => NULL, 'Job$abortConfig' => '

Configuration for criteria to abort the job.

', 'UpdateJobRequest$abortConfig' => '

Allows you to create criteria to abort a job.

', ], ], 'AbortCriteria' => [ 'base' => '

The criteria that determine when and how a job abort takes place.

', 'refs' => [ 'AbortCriteriaList$member' => NULL, ], ], 'AbortCriteriaList' => [ 'base' => NULL, 'refs' => [ 'AbortConfig$criteriaList' => '

The list of criteria that determine when and how to abort the job.

', ], ], 'AbortThresholdPercentage' => [ 'base' => NULL, 'refs' => [ 'AbortCriteria$thresholdPercentage' => '

The minimum percentage of job execution failures that must occur to initiate the job abort.

Amazon Web Services IoT Core supports up to two digits after the decimal (for example, 10.9 and 10.99, but not 10.999).

', ], ], 'AcceptCertificateTransferRequest' => [ 'base' => '

The input for the AcceptCertificateTransfer operation.

', 'refs' => [], ], 'AcmCertificateArn' => [ 'base' => NULL, 'refs' => [ 'CreateDomainConfigurationRequest$validationCertificateArn' => '

The certificate used to validate the server certificate and prove domain name ownership. This certificate must be signed by a public certificate authority. This value is not required for Amazon Web Services-managed domains.

', 'ServerCertificateArns$member' => NULL, 'ServerCertificateSummary$serverCertificateArn' => '

The ARN of the server certificate.

', ], ], 'Action' => [ 'base' => '

Describes the actions associated with a rule.

', 'refs' => [ 'ActionList$member' => NULL, 'TopicRule$errorAction' => '

The action to perform when an error occurs.

', 'TopicRulePayload$errorAction' => '

The action to take when an error occurs.

', ], ], 'ActionList' => [ 'base' => NULL, 'refs' => [ 'TopicRule$actions' => '

The actions associated with the rule.

', 'TopicRulePayload$actions' => '

The actions associated with the rule.

', ], ], 'ActionType' => [ 'base' => NULL, 'refs' => [ 'AuthInfo$actionType' => '

The type of action for which the principal is being authorized.

', ], ], 'ActiveViolation' => [ 'base' => '

Information about an active Device Defender security profile behavior violation.

', 'refs' => [ 'ActiveViolations$member' => NULL, ], ], 'ActiveViolations' => [ 'base' => NULL, 'refs' => [ 'ListActiveViolationsResponse$activeViolations' => '

The list of active violations.

', ], ], 'AddThingToBillingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'AddThingToBillingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'AddThingToThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'AddThingToThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'AddThingsToThingGroupParams' => [ 'base' => '

Parameters used when defining a mitigation action that move a set of things to a thing group.

', 'refs' => [ 'MitigationActionParams$addThingsToThingGroupParams' => '

Parameters to define a mitigation action that moves devices associated with a certificate to one or more specified thing groups, typically for quarantine.

', ], ], 'AdditionalMetricsToRetainList' => [ 'base' => NULL, 'refs' => [ 'CreateSecurityProfileRequest$additionalMetricsToRetain' => '

Please use CreateSecurityProfileRequest$additionalMetricsToRetainV2 instead.

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile\'s behaviors, but it is also retained for any metric specified here. Can be used with custom metrics; cannot be used with dimensions.

', 'DescribeSecurityProfileResponse$additionalMetricsToRetain' => '

Please use DescribeSecurityProfileResponse$additionalMetricsToRetainV2 instead.

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile\'s behaviors, but it is also retained for any metric specified here.

', 'UpdateSecurityProfileRequest$additionalMetricsToRetain' => '

Please use UpdateSecurityProfileRequest$additionalMetricsToRetainV2 instead.

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile\'s behaviors, but it is also retained for any metric specified here. Can be used with custom metrics; cannot be used with dimensions.

', 'UpdateSecurityProfileResponse$additionalMetricsToRetain' => '

Please use UpdateSecurityProfileResponse$additionalMetricsToRetainV2 instead.

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the security profile\'s behaviors, but it is also retained for any metric specified here.

', ], ], 'AdditionalMetricsToRetainV2List' => [ 'base' => NULL, 'refs' => [ 'CreateSecurityProfileRequest$additionalMetricsToRetainV2' => '

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile\'s behaviors, but it is also retained for any metric specified here. Can be used with custom metrics; cannot be used with dimensions.

', 'DescribeSecurityProfileResponse$additionalMetricsToRetainV2' => '

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile\'s behaviors, but it is also retained for any metric specified here.

', 'UpdateSecurityProfileRequest$additionalMetricsToRetainV2' => '

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile\'s behaviors, but it is also retained for any metric specified here. Can be used with custom metrics; cannot be used with dimensions.

', 'UpdateSecurityProfileResponse$additionalMetricsToRetainV2' => '

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile\'s behaviors, but it is also retained for any metric specified here. Can be used with custom metrics; cannot be used with dimensions.

', ], ], 'AdditionalParameterMap' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateRequest$additionalParameters' => '

A list of additional OTA update parameters, which are name-value pairs. They won\'t be sent to devices as a part of the Job document.

', 'OTAUpdateInfo$additionalParameters' => '

A collection of name/value pairs

', ], ], 'AggregationField' => [ 'base' => NULL, 'refs' => [ 'CreateFleetMetricRequest$aggregationField' => '

The field to aggregate.

', 'DescribeFleetMetricResponse$aggregationField' => '

The field to aggregate.

', 'GetBucketsAggregationRequest$aggregationField' => '

The aggregation field.

', 'GetCardinalityRequest$aggregationField' => '

The field to aggregate.

', 'GetPercentilesRequest$aggregationField' => '

The field to aggregate.

', 'GetStatisticsRequest$aggregationField' => '

The aggregation field name.

', 'UpdateFleetMetricRequest$aggregationField' => '

The field to aggregate.

', ], ], 'AggregationType' => [ 'base' => '

The type of aggregation queries.

', 'refs' => [ 'CreateFleetMetricRequest$aggregationType' => '

The type of the aggregation query.

', 'DescribeFleetMetricResponse$aggregationType' => '

The type of the aggregation query.

', 'UpdateFleetMetricRequest$aggregationType' => '

The type of the aggregation query.

', ], ], 'AggregationTypeName' => [ 'base' => NULL, 'refs' => [ 'AggregationType$name' => '

The name of the aggregation type.

', ], ], 'AggregationTypeValue' => [ 'base' => NULL, 'refs' => [ 'AggregationTypeValues$member' => NULL, ], ], 'AggregationTypeValues' => [ 'base' => NULL, 'refs' => [ 'AggregationType$values' => '

A list of the values of aggregation types.

', ], ], 'AlarmName' => [ 'base' => NULL, 'refs' => [ 'CloudwatchAlarmAction$alarmName' => '

The CloudWatch alarm name.

', ], ], 'AlertTarget' => [ 'base' => '

A structure containing the alert target ARN and the role ARN.

', 'refs' => [ 'AlertTargets$value' => NULL, ], ], 'AlertTargetArn' => [ 'base' => NULL, 'refs' => [ 'AlertTarget$alertTargetArn' => '

The Amazon Resource Name (ARN) of the notification target to which alerts are sent.

', ], ], 'AlertTargetType' => [ 'base' => '

The type of alert target: one of "SNS".

', 'refs' => [ 'AlertTargets$key' => NULL, ], ], 'AlertTargets' => [ 'base' => NULL, 'refs' => [ 'CreateSecurityProfileRequest$alertTargets' => '

Specifies the destinations to which alerts are sent. (Alerts are always sent to the console.) Alerts are generated when a device (thing) violates a behavior.

', 'DescribeSecurityProfileResponse$alertTargets' => '

Where the alerts are sent. (Alerts are always sent to the console.)

', 'UpdateSecurityProfileRequest$alertTargets' => '

Where the alerts are sent. (Alerts are always sent to the console.)

', 'UpdateSecurityProfileResponse$alertTargets' => '

Where the alerts are sent. (Alerts are always sent to the console.)

', ], ], 'AllowAuthorizerOverride' => [ 'base' => NULL, 'refs' => [ 'AuthorizerConfig$allowAuthorizerOverride' => '

A Boolean that specifies whether the domain configuration\'s authorization service can be overridden.

', ], ], 'AllowAutoRegistration' => [ 'base' => NULL, 'refs' => [ 'RegisterCACertificateRequest$allowAutoRegistration' => '

Allows this CA certificate to be used for auto registration of device certificates.

', ], ], 'Allowed' => [ 'base' => '

Contains information that allowed the authorization.

', 'refs' => [ 'AuthResult$allowed' => '

The policies and statements that allowed the specified action.

', ], ], 'ApproximateSecondsBeforeTimedOut' => [ 'base' => NULL, 'refs' => [ 'JobExecution$approximateSecondsBeforeTimedOut' => '

The estimated number of seconds that remain before the job execution status will be changed to TIMED_OUT. The timeout interval can be anywhere between 1 minute and 7 days (1 to 10080 minutes). The actual job execution timeout can occur up to 60 seconds later than the estimated duration. This value will not be included if the job execution has reached a terminal status.

', ], ], 'AscendingOrder' => [ 'base' => NULL, 'refs' => [ 'ListAuditSuppressionsRequest$ascendingOrder' => '

Determines whether suppressions are listed in ascending order by expiration date or not. If parameter isn\'t provided, ascendingOrder=true.

', 'ListAuthorizersRequest$ascendingOrder' => '

Return the list of authorizers in ascending alphabetical order.

', 'ListCACertificatesRequest$ascendingOrder' => '

Determines the order of the results.

', 'ListCertificateProvidersRequest$ascendingOrder' => '

Returns the list of certificate providers in ascending alphabetical order.

', 'ListCertificatesByCARequest$ascendingOrder' => '

Specifies the order for results. If True, the results are returned in ascending order, based on the creation date.

', 'ListCertificatesRequest$ascendingOrder' => '

Specifies the order for results. If True, the results are returned in ascending order, based on the creation date.

', 'ListOutgoingCertificatesRequest$ascendingOrder' => '

Specifies the order for results. If True, the results are returned in ascending order, based on the creation date.

', 'ListPoliciesRequest$ascendingOrder' => '

Specifies the order for results. If true, the results are returned in ascending creation order.

', 'ListPolicyPrincipalsRequest$ascendingOrder' => '

Specifies the order for results. If true, the results are returned in ascending creation order.

', 'ListPrincipalPoliciesRequest$ascendingOrder' => '

Specifies the order for results. If true, results are returned in ascending creation order.

', 'ListRoleAliasesRequest$ascendingOrder' => '

Return the list of role aliases in ascending alphabetical order.

', 'ListStreamsRequest$ascendingOrder' => '

Set to true to return the list of streams in ascending order.

', ], ], 'AssetId' => [ 'base' => NULL, 'refs' => [ 'PutAssetPropertyValueEntry$assetId' => '

The ID of the IoT SiteWise asset. You must specify either a propertyAlias or both an aliasId and a propertyId. Accepts substitution templates.

', ], ], 'AssetPropertyAlias' => [ 'base' => NULL, 'refs' => [ 'PutAssetPropertyValueEntry$propertyAlias' => '

The name of the property alias associated with your asset property. You must specify either a propertyAlias or both an aliasId and a propertyId. Accepts substitution templates.

', ], ], 'AssetPropertyBooleanValue' => [ 'base' => NULL, 'refs' => [ 'AssetPropertyVariant$booleanValue' => '

Optional. A string that contains the boolean value (true or false) of the value entry. Accepts substitution templates.

', ], ], 'AssetPropertyDoubleValue' => [ 'base' => NULL, 'refs' => [ 'AssetPropertyVariant$doubleValue' => '

Optional. A string that contains the double value of the value entry. Accepts substitution templates.

', ], ], 'AssetPropertyEntryId' => [ 'base' => NULL, 'refs' => [ 'PutAssetPropertyValueEntry$entryId' => '

Optional. A unique identifier for this entry that you can define to better track which message caused an error in case of failure. Accepts substitution templates. Defaults to a new UUID.

', ], ], 'AssetPropertyId' => [ 'base' => NULL, 'refs' => [ 'PutAssetPropertyValueEntry$propertyId' => '

The ID of the asset\'s property. You must specify either a propertyAlias or both an aliasId and a propertyId. Accepts substitution templates.

', ], ], 'AssetPropertyIntegerValue' => [ 'base' => NULL, 'refs' => [ 'AssetPropertyVariant$integerValue' => '

Optional. A string that contains the integer value of the value entry. Accepts substitution templates.

', ], ], 'AssetPropertyOffsetInNanos' => [ 'base' => NULL, 'refs' => [ 'AssetPropertyTimestamp$offsetInNanos' => '

Optional. A string that contains the nanosecond time offset. Accepts substitution templates.

', ], ], 'AssetPropertyQuality' => [ 'base' => NULL, 'refs' => [ 'AssetPropertyValue$quality' => '

Optional. A string that describes the quality of the value. Accepts substitution templates. Must be GOOD, BAD, or UNCERTAIN.

', ], ], 'AssetPropertyStringValue' => [ 'base' => NULL, 'refs' => [ 'AssetPropertyVariant$stringValue' => '

Optional. The string value of the value entry. Accepts substitution templates.

', ], ], 'AssetPropertyTimeInSeconds' => [ 'base' => NULL, 'refs' => [ 'AssetPropertyTimestamp$timeInSeconds' => '

A string that contains the time in seconds since epoch. Accepts substitution templates.

', ], ], 'AssetPropertyTimestamp' => [ 'base' => '

An asset property timestamp entry containing the following information.

', 'refs' => [ 'AssetPropertyValue$timestamp' => '

The asset property value timestamp.

', ], ], 'AssetPropertyValue' => [ 'base' => '

An asset property value entry containing the following information.

', 'refs' => [ 'AssetPropertyValueList$member' => NULL, ], ], 'AssetPropertyValueList' => [ 'base' => NULL, 'refs' => [ 'PutAssetPropertyValueEntry$propertyValues' => '

A list of property values to insert that each contain timestamp, quality, and value (TQV) information.

', ], ], 'AssetPropertyVariant' => [ 'base' => '

Contains an asset property value (of a single type).

', 'refs' => [ 'AssetPropertyValue$value' => '

The value of the asset property.

', ], ], 'AssociateTargetsWithJobRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateTargetsWithJobResponse' => [ 'base' => NULL, 'refs' => [], ], 'AttachPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'AttachPrincipalPolicyRequest' => [ 'base' => '

The input for the AttachPrincipalPolicy operation.

', 'refs' => [], ], 'AttachSecurityProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'AttachSecurityProfileResponse' => [ 'base' => NULL, 'refs' => [], ], 'AttachThingPrincipalRequest' => [ 'base' => '

The input for the AttachThingPrincipal operation.

', 'refs' => [], ], 'AttachThingPrincipalResponse' => [ 'base' => '

The output from the AttachThingPrincipal operation.

', 'refs' => [], ], 'AttributeKey' => [ 'base' => NULL, 'refs' => [ 'AdditionalParameterMap$key' => NULL, 'AttributesMap$key' => NULL, ], ], 'AttributeName' => [ 'base' => NULL, 'refs' => [ 'Attributes$key' => NULL, 'ListThingsRequest$attributeName' => '

The attribute name used to search for things.

', 'SearchableAttributes$member' => NULL, ], ], 'AttributePayload' => [ 'base' => '

The attribute payload.

', 'refs' => [ 'CreateThingRequest$attributePayload' => '

The attribute payload, which consists of up to three name/value pairs in a JSON document. For example:

{\\"attributes\\":{\\"string1\\":\\"string2\\"}}

', 'ThingGroupProperties$attributePayload' => '

The thing group attributes in JSON format.

', 'UpdateThingRequest$attributePayload' => '

A list of thing attributes, a JSON string containing name-value pairs. For example:

{\\"attributes\\":{\\"name1\\":\\"value2\\"}}

This data is used to add new attributes or update existing attributes.

', ], ], 'AttributeValue' => [ 'base' => NULL, 'refs' => [ 'Attributes$value' => NULL, 'ListThingsRequest$attributeValue' => '

The attribute value used to search for things.

', ], ], 'Attributes' => [ 'base' => NULL, 'refs' => [ 'AttributePayload$attributes' => '

A JSON string containing up to three key-value pair in JSON format. For example:

{\\"attributes\\":{\\"string1\\":\\"string2\\"}}

', 'DescribeThingResponse$attributes' => '

The thing attributes.

', 'ThingAttribute$attributes' => '

A list of thing attributes which are name-value pairs.

', 'ThingDocument$attributes' => '

The attributes.

', 'ThingGroupDocument$attributes' => '

The thing group attributes.

', ], ], 'AttributesMap' => [ 'base' => NULL, 'refs' => [ 'OTAUpdateFile$attributes' => '

A list of name-attribute pairs. They won\'t be sent to devices as a part of the Job document.

', ], ], 'AuditCheckConfiguration' => [ 'base' => '

Which audit checks are enabled and disabled for this account.

', 'refs' => [ 'AuditCheckConfigurations$value' => NULL, ], ], 'AuditCheckConfigurations' => [ 'base' => NULL, 'refs' => [ 'DescribeAccountAuditConfigurationResponse$auditCheckConfigurations' => '

Which audit checks are enabled and disabled for this account.

', 'UpdateAccountAuditConfigurationRequest$auditCheckConfigurations' => '

Specifies which audit checks are enabled and disabled for this account. Use DescribeAccountAuditConfiguration to see the list of all checks, including those that are currently enabled.

Some data collection might start immediately when certain checks are enabled. When a check is disabled, any data collected so far in relation to the check is deleted.

You cannot disable a check if it\'s used by any scheduled audit. You must first delete the check from the scheduled audit or delete the scheduled audit itself.

On the first call to UpdateAccountAuditConfiguration, this parameter is required and must specify at least one enabled check.

', ], ], 'AuditCheckDetails' => [ 'base' => '

Information about the audit check.

', 'refs' => [ 'AuditDetails$value' => NULL, ], ], 'AuditCheckName' => [ 'base' => '

An audit check name. Checks must be enabled for your account. (Use DescribeAccountAuditConfiguration to see the list of all checks, including those that are enabled or use UpdateAccountAuditConfiguration to select which checks are enabled.)

', 'refs' => [ 'AuditCheckConfigurations$key' => NULL, 'AuditCheckToActionsMapping$key' => NULL, 'AuditCheckToReasonCodeFilter$key' => NULL, 'AuditDetails$key' => NULL, 'AuditFinding$checkName' => '

The audit check that generated this result.

', 'AuditMitigationActionsTaskStatistics$key' => NULL, 'AuditSuppression$checkName' => NULL, 'CreateAuditSuppressionRequest$checkName' => NULL, 'DeleteAuditSuppressionRequest$checkName' => NULL, 'DescribeAuditSuppressionRequest$checkName' => NULL, 'DescribeAuditSuppressionResponse$checkName' => NULL, 'ListAuditFindingsRequest$checkName' => '

A filter to limit results to the findings for the specified audit check.

', 'ListAuditSuppressionsRequest$checkName' => NULL, 'TargetAuditCheckNames$member' => NULL, 'UpdateAuditSuppressionRequest$checkName' => NULL, ], ], 'AuditCheckRunStatus' => [ 'base' => NULL, 'refs' => [ 'AuditCheckDetails$checkRunStatus' => '

The completion status of this check. One of "IN_PROGRESS", "WAITING_FOR_DATA_COLLECTION", "CANCELED", "COMPLETED_COMPLIANT", "COMPLETED_NON_COMPLIANT", or "FAILED".

', ], ], 'AuditCheckToActionsMapping' => [ 'base' => NULL, 'refs' => [ 'DescribeAuditMitigationActionsTaskResponse$auditCheckToActionsMapping' => '

Specifies the mitigation actions that should be applied to specific audit checks.

', 'StartAuditMitigationActionsTaskRequest$auditCheckToActionsMapping' => '

For an audit check, specifies which mitigation actions to apply. Those actions must be defined in your Amazon Web Services accounts.

', ], ], 'AuditCheckToReasonCodeFilter' => [ 'base' => NULL, 'refs' => [ 'AuditMitigationActionsTaskTarget$auditCheckToReasonCodeFilter' => '

Specifies a filter in the form of an audit check and set of reason codes that identify the findings from the audit to which the audit mitigation actions task apply.

', ], ], 'AuditDescription' => [ 'base' => NULL, 'refs' => [ 'AuditSuppression$description' => '

The description of the audit suppression.

', 'CreateAuditSuppressionRequest$description' => '

The description of the audit suppression.

', 'DescribeAuditSuppressionResponse$description' => '

The description of the audit suppression.

', 'UpdateAuditSuppressionRequest$description' => '

The description of the audit suppression.

', ], ], 'AuditDetails' => [ 'base' => NULL, 'refs' => [ 'DescribeAuditTaskResponse$auditDetails' => '

Detailed information about each check performed during this audit.

', ], ], 'AuditFinding' => [ 'base' => '

The findings (results) of the audit.

', 'refs' => [ 'AuditFindings$member' => NULL, 'DescribeAuditFindingResponse$finding' => NULL, ], ], 'AuditFindingSeverity' => [ 'base' => NULL, 'refs' => [ 'AuditFinding$severity' => '

The severity of the result (finding).

', ], ], 'AuditFindings' => [ 'base' => NULL, 'refs' => [ 'ListAuditFindingsResponse$findings' => '

The findings (results) of the audit.

', ], ], 'AuditFrequency' => [ 'base' => NULL, 'refs' => [ 'CreateScheduledAuditRequest$frequency' => '

How often the scheduled audit takes place, either DAILY, WEEKLY, BIWEEKLY or MONTHLY. The start time of each audit is determined by the system.

', 'DescribeScheduledAuditResponse$frequency' => '

How often the scheduled audit takes place, either one of DAILY, WEEKLY, BIWEEKLY, or MONTHLY. The start time of each audit is determined by the system.

', 'ScheduledAuditMetadata$frequency' => '

How often the scheduled audit occurs.

', 'UpdateScheduledAuditRequest$frequency' => '

How often the scheduled audit takes place, either DAILY, WEEKLY, BIWEEKLY, or MONTHLY. The start time of each audit is determined by the system.

', ], ], 'AuditMitigationActionExecutionMetadata' => [ 'base' => '

Returned by ListAuditMitigationActionsTask, this object contains information that describes a mitigation action that has been started.

', 'refs' => [ 'AuditMitigationActionExecutionMetadataList$member' => NULL, ], ], 'AuditMitigationActionExecutionMetadataList' => [ 'base' => NULL, 'refs' => [ 'ListAuditMitigationActionsExecutionsResponse$actionsExecutions' => '

A set of task execution results based on the input parameters. Details include the mitigation action applied, start time, and task status.

', ], ], 'AuditMitigationActionsExecutionStatus' => [ 'base' => NULL, 'refs' => [ 'AuditMitigationActionExecutionMetadata$status' => '

The current status of the task being executed.

', 'ListAuditMitigationActionsExecutionsRequest$actionStatus' => '

Specify this filter to limit results to those with a specific status.

', ], ], 'AuditMitigationActionsTaskMetadata' => [ 'base' => '

Information about an audit mitigation actions task that is returned by ListAuditMitigationActionsTasks.

', 'refs' => [ 'AuditMitigationActionsTaskMetadataList$member' => NULL, ], ], 'AuditMitigationActionsTaskMetadataList' => [ 'base' => NULL, 'refs' => [ 'ListAuditMitigationActionsTasksResponse$tasks' => '

The collection of audit mitigation tasks that matched the filter criteria.

', ], ], 'AuditMitigationActionsTaskStatistics' => [ 'base' => NULL, 'refs' => [ 'DescribeAuditMitigationActionsTaskResponse$taskStatistics' => '

Aggregate counts of the results when the mitigation tasks were applied to the findings for this audit mitigation actions task.

', ], ], 'AuditMitigationActionsTaskStatus' => [ 'base' => NULL, 'refs' => [ 'AuditMitigationActionsTaskMetadata$taskStatus' => '

The current state of the audit mitigation actions task.

', 'DescribeAuditMitigationActionsTaskResponse$taskStatus' => '

The current status of the task.

', 'ListAuditMitigationActionsTasksRequest$taskStatus' => '

Specify this filter to limit results to tasks that are in a specific state.

', ], ], 'AuditMitigationActionsTaskTarget' => [ 'base' => '

Used in MitigationActionParams, this information identifies the target findings to which the mitigation actions are applied. Only one entry appears.

', 'refs' => [ 'DescribeAuditMitigationActionsTaskResponse$target' => '

Identifies the findings to which the mitigation actions are applied. This can be by audit checks, by audit task, or a set of findings.

', 'StartAuditMitigationActionsTaskRequest$target' => '

Specifies the audit findings to which the mitigation actions are applied. You can apply them to a type of audit check, to all findings from an audit, or to a specific set of findings.

', ], ], 'AuditNotificationTarget' => [ 'base' => '

Information about the targets to which audit notifications are sent.

', 'refs' => [ 'AuditNotificationTargetConfigurations$value' => NULL, ], ], 'AuditNotificationTargetConfigurations' => [ 'base' => NULL, 'refs' => [ 'DescribeAccountAuditConfigurationResponse$auditNotificationTargetConfigurations' => '

Information about the targets to which audit notifications are sent for this account.

', 'UpdateAccountAuditConfigurationRequest$auditNotificationTargetConfigurations' => '

Information about the targets to which audit notifications are sent.

', ], ], 'AuditNotificationType' => [ 'base' => NULL, 'refs' => [ 'AuditNotificationTargetConfigurations$key' => NULL, ], ], 'AuditSuppression' => [ 'base' => '

Filters out specific findings of a Device Defender audit.

', 'refs' => [ 'AuditSuppressionList$member' => NULL, ], ], 'AuditSuppressionList' => [ 'base' => NULL, 'refs' => [ 'ListAuditSuppressionsResponse$suppressions' => '

List of audit suppressions.

', ], ], 'AuditTaskId' => [ 'base' => NULL, 'refs' => [ 'AuditFinding$taskId' => '

The ID of the audit that generated this result (finding).

', 'AuditMitigationActionsTaskTarget$auditTaskId' => '

If the task will apply a mitigation action to findings from a specific audit, this value uniquely identifies the audit.

', 'AuditTaskMetadata$taskId' => '

The ID of this audit.

', 'CancelAuditTaskRequest$taskId' => '

The ID of the audit you want to cancel. You can only cancel an audit that is "IN_PROGRESS".

', 'DescribeAuditTaskRequest$taskId' => '

The ID of the audit whose information you want to get.

', 'ListAuditFindingsRequest$taskId' => '

A filter to limit results to the audit with the specified ID. You must specify either the taskId or the startTime and endTime, but not both.

', 'ListAuditMitigationActionsTasksRequest$auditTaskId' => '

Specify this filter to limit results to tasks that were applied to results for a specific audit.

', 'StartOnDemandAuditTaskResponse$taskId' => '

The ID of the on-demand audit you started.

', ], ], 'AuditTaskMetadata' => [ 'base' => '

The audits that were performed.

', 'refs' => [ 'AuditTaskMetadataList$member' => NULL, ], ], 'AuditTaskMetadataList' => [ 'base' => NULL, 'refs' => [ 'ListAuditTasksResponse$tasks' => '

The audits that were performed during the specified time period.

', ], ], 'AuditTaskStatus' => [ 'base' => NULL, 'refs' => [ 'AuditTaskMetadata$taskStatus' => '

The status of this audit. One of "IN_PROGRESS", "COMPLETED", "FAILED", or "CANCELED".

', 'DescribeAuditTaskResponse$taskStatus' => '

The status of the audit: one of "IN_PROGRESS", "COMPLETED", "FAILED", or "CANCELED".

', 'ListAuditTasksRequest$taskStatus' => '

A filter to limit the output to audits with the specified completion status: can be one of "IN_PROGRESS", "COMPLETED", "FAILED", or "CANCELED".

', ], ], 'AuditTaskType' => [ 'base' => NULL, 'refs' => [ 'AuditTaskMetadata$taskType' => '

The type of this audit. One of "ON_DEMAND_AUDIT_TASK" or "SCHEDULED_AUDIT_TASK".

', 'DescribeAuditTaskResponse$taskType' => '

The type of audit: "ON_DEMAND_AUDIT_TASK" or "SCHEDULED_AUDIT_TASK".

', 'ListAuditTasksRequest$taskType' => '

A filter to limit the output to the specified type of audit: can be one of "ON_DEMAND_AUDIT_TASK" or "SCHEDULED__AUDIT_TASK".

', ], ], 'AuthDecision' => [ 'base' => NULL, 'refs' => [ 'AuthResult$authDecision' => '

The final authorization decision of this scenario. Multiple statements are taken into account when determining the authorization decision. An explicit deny statement can override multiple allow statements.

', ], ], 'AuthInfo' => [ 'base' => '

A collection of authorization information.

', 'refs' => [ 'AuthInfos$member' => NULL, 'AuthResult$authInfo' => '

Authorization information.

', ], ], 'AuthInfos' => [ 'base' => NULL, 'refs' => [ 'TestAuthorizationRequest$authInfos' => '

A list of authorization info objects. Simulating authorization will create a response for each authInfo object in the list.

', ], ], 'AuthResult' => [ 'base' => '

The authorizer result.

', 'refs' => [ 'AuthResults$member' => NULL, ], ], 'AuthResults' => [ 'base' => NULL, 'refs' => [ 'TestAuthorizationResponse$authResults' => '

The authentication results.

', ], ], 'AuthorizerArn' => [ 'base' => NULL, 'refs' => [ 'AuthorizerDescription$authorizerArn' => '

The authorizer ARN.

', 'AuthorizerSummary$authorizerArn' => '

The authorizer ARN.

', 'CreateAuthorizerResponse$authorizerArn' => '

The authorizer ARN.

', 'SetDefaultAuthorizerResponse$authorizerArn' => '

The authorizer ARN.

', 'UpdateAuthorizerResponse$authorizerArn' => '

The authorizer ARN.

', ], ], 'AuthorizerConfig' => [ 'base' => '

An object that specifies the authorization service for a domain.

', 'refs' => [ 'CreateDomainConfigurationRequest$authorizerConfig' => '

An object that specifies the authorization service for a domain.

', 'DescribeDomainConfigurationResponse$authorizerConfig' => '

An object that specifies the authorization service for a domain.

', 'UpdateDomainConfigurationRequest$authorizerConfig' => '

An object that specifies the authorization service for a domain.

', ], ], 'AuthorizerDescription' => [ 'base' => '

The authorizer description.

', 'refs' => [ 'DescribeAuthorizerResponse$authorizerDescription' => '

The authorizer description.

', 'DescribeDefaultAuthorizerResponse$authorizerDescription' => '

The default authorizer\'s description.

', ], ], 'AuthorizerFunctionArn' => [ 'base' => NULL, 'refs' => [ 'AuthorizerDescription$authorizerFunctionArn' => '

The authorizer\'s Lambda function ARN.

', 'CreateAuthorizerRequest$authorizerFunctionArn' => '

The ARN of the authorizer\'s Lambda function.

', 'UpdateAuthorizerRequest$authorizerFunctionArn' => '

The ARN of the authorizer\'s Lambda function.

', ], ], 'AuthorizerName' => [ 'base' => NULL, 'refs' => [ 'AuthorizerConfig$defaultAuthorizerName' => '

The name of the authorization service for a domain configuration.

', 'AuthorizerDescription$authorizerName' => '

The authorizer name.

', 'AuthorizerSummary$authorizerName' => '

The authorizer name.

', 'CreateAuthorizerRequest$authorizerName' => '

The authorizer name.

', 'CreateAuthorizerResponse$authorizerName' => '

The authorizer\'s name.

', 'DeleteAuthorizerRequest$authorizerName' => '

The name of the authorizer to delete.

', 'DescribeAuthorizerRequest$authorizerName' => '

The name of the authorizer to describe.

', 'SetDefaultAuthorizerRequest$authorizerName' => '

The authorizer name.

', 'SetDefaultAuthorizerResponse$authorizerName' => '

The authorizer name.

', 'TestInvokeAuthorizerRequest$authorizerName' => '

The custom authorizer name.

', 'UpdateAuthorizerRequest$authorizerName' => '

The authorizer name.

', 'UpdateAuthorizerResponse$authorizerName' => '

The authorizer name.

', ], ], 'AuthorizerStatus' => [ 'base' => NULL, 'refs' => [ 'AuthorizerDescription$status' => '

The status of the authorizer.

', 'CreateAuthorizerRequest$status' => '

The status of the create authorizer request.

', 'ListAuthorizersRequest$status' => '

The status of the list authorizers request.

', 'UpdateAuthorizerRequest$status' => '

The status of the update authorizer request.

', ], ], 'AuthorizerSummary' => [ 'base' => '

The authorizer summary.

', 'refs' => [ 'Authorizers$member' => NULL, ], ], 'Authorizers' => [ 'base' => NULL, 'refs' => [ 'ListAuthorizersResponse$authorizers' => '

The authorizers.

', ], ], 'AutoRegistrationStatus' => [ 'base' => NULL, 'refs' => [ 'CACertificateDescription$autoRegistrationStatus' => '

Whether the CA certificate configured for auto registration of device certificates. Valid values are "ENABLE" and "DISABLE"

', 'UpdateCACertificateRequest$newAutoRegistrationStatus' => '

The new value for the auto registration status. Valid values are: "ENABLE" or "DISABLE".

', ], ], 'Average' => [ 'base' => NULL, 'refs' => [ 'Statistics$average' => '

The average of the aggregated field values.

', ], ], 'AwsAccountId' => [ 'base' => NULL, 'refs' => [ 'CACertificateDescription$ownedBy' => '

The owner of the CA certificate.

', 'CertificateDescription$ownedBy' => '

The ID of the Amazon Web Services account that owns the certificate.

', 'CertificateDescription$previousOwnedBy' => '

The ID of the Amazon Web Services account of the previous owner of the certificate.

', 'OutgoingCertificate$transferredTo' => '

The Amazon Web Services account to which the transfer was made.

', 'ResourceIdentifier$account' => '

The account with which the resource is associated.

', 'RoleAliasDescription$owner' => '

The role alias owner.

', 'TransferCertificateRequest$targetAwsAccount' => '

The Amazon Web Services account.

', ], ], 'AwsArn' => [ 'base' => NULL, 'refs' => [ 'CloudwatchAlarmAction$roleArn' => '

The IAM role that allows access to the CloudWatch alarm.

', 'CloudwatchLogsAction$roleArn' => '

The IAM role that allows access to the CloudWatch log.

', 'CloudwatchMetricAction$roleArn' => '

The IAM role that allows access to the CloudWatch metric.

', 'DeleteTopicRuleDestinationRequest$arn' => '

The ARN of the topic rule destination to delete.

', 'DynamoDBAction$roleArn' => '

The ARN of the IAM role that grants access to the DynamoDB table.

', 'DynamoDBv2Action$roleArn' => '

The ARN of the IAM role that grants access to the DynamoDB table.

', 'ElasticsearchAction$roleArn' => '

The IAM role ARN that has access to OpenSearch.

', 'FirehoseAction$roleArn' => '

The IAM role that grants access to the Amazon Kinesis Firehose stream.

', 'GetLoggingOptionsResponse$roleArn' => '

The ARN of the IAM role that grants access.

', 'GetTopicRuleDestinationRequest$arn' => '

The ARN of the topic rule destination.

', 'GetV2LoggingOptionsResponse$roleArn' => '

The IAM role ARN IoT uses to write to your CloudWatch logs.

', 'IotAnalyticsAction$channelArn' => '

(deprecated) The ARN of the IoT Analytics channel to which message data will be sent.

', 'IotAnalyticsAction$roleArn' => '

The ARN of the role which has a policy that grants IoT Analytics permission to send message data via IoT Analytics (iotanalytics:BatchPutMessage).

', 'IotEventsAction$roleArn' => '

The ARN of the role that grants IoT permission to send an input to an IoT Events detector. ("Action":"iotevents:BatchPutMessage").

', 'IotSiteWiseAction$roleArn' => '

The ARN of the role that grants IoT permission to send an asset property value to IoT SiteWise. ("Action": "iotsitewise:BatchPutAssetPropertyValue"). The trust policy can restrict access to specific asset hierarchy paths.

', 'KafkaAction$destinationArn' => '

The ARN of Kafka action\'s VPC TopicRuleDestination.

', 'KinesisAction$roleArn' => '

The ARN of the IAM role that grants access to the Amazon Kinesis stream.

', 'LocationAction$roleArn' => '

The IAM role that grants permission to write to the Amazon Location resource.

', 'LoggingOptionsPayload$roleArn' => '

The ARN of the IAM role that grants access.

', 'OpenSearchAction$roleArn' => '

The IAM role ARN that has access to OpenSearch.

', 'RepublishAction$roleArn' => '

The ARN of the IAM role that grants access.

', 'S3Action$roleArn' => '

The ARN of the IAM role that grants access.

', 'SetV2LoggingOptionsRequest$roleArn' => '

The ARN of the role that allows IoT to write to Cloudwatch logs.

', 'SigV4Authorization$roleArn' => '

The ARN of the signing role.

', 'SnsAction$targetArn' => '

The ARN of the SNS topic.

', 'SnsAction$roleArn' => '

The ARN of the IAM role that grants access.

', 'SqsAction$roleArn' => '

The ARN of the IAM role that grants access.

', 'StepFunctionsAction$roleArn' => '

The ARN of the role that grants IoT permission to start execution of a state machine ("Action":"states:StartExecution").

', 'TimestreamAction$roleArn' => '

The ARN of the role that grants permission to write to the Amazon Timestream database table.

', 'TopicRuleDestination$arn' => '

The topic rule destination URL.

', 'TopicRuleDestinationSummary$arn' => '

The topic rule destination ARN.

', 'UpdateTopicRuleDestinationRequest$arn' => '

The ARN of the topic rule destination.

', 'VpcDestinationConfiguration$roleArn' => '

The ARN of a role that has permission to create and attach to elastic network interfaces (ENIs).

', 'VpcDestinationProperties$roleArn' => '

The ARN of a role that has permission to create and attach to elastic network interfaces (ENIs).

', 'VpcDestinationSummary$roleArn' => '

The ARN of a role that has permission to create and attach to elastic network interfaces (ENIs).

', ], ], 'AwsIotJobArn' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateResponse$awsIotJobArn' => '

The IoT job ARN associated with the OTA update.

', 'OTAUpdateInfo$awsIotJobArn' => '

The IoT job ARN associated with the OTA update.

', ], ], 'AwsIotJobId' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateResponse$awsIotJobId' => '

The IoT job ID associated with the OTA update.

', 'OTAUpdateInfo$awsIotJobId' => '

The IoT job ID associated with the OTA update.

', ], ], 'AwsIotSqlVersion' => [ 'base' => NULL, 'refs' => [ 'TopicRule$awsIotSqlVersion' => '

The version of the SQL rules engine to use when evaluating the rule.

', 'TopicRulePayload$awsIotSqlVersion' => '

The version of the SQL rules engine to use when evaluating the rule.

', ], ], 'AwsJobAbortConfig' => [ 'base' => '

The criteria that determine when and how a job abort takes place.

', 'refs' => [ 'CreateOTAUpdateRequest$awsJobAbortConfig' => '

The criteria that determine when and how a job abort takes place.

', ], ], 'AwsJobAbortCriteria' => [ 'base' => '

The criteria that determine when and how a job abort takes place.

', 'refs' => [ 'AwsJobAbortCriteriaList$member' => NULL, ], ], 'AwsJobAbortCriteriaAbortAction' => [ 'base' => NULL, 'refs' => [ 'AwsJobAbortCriteria$action' => '

The type of job action to take to initiate the job abort.

', ], ], 'AwsJobAbortCriteriaAbortThresholdPercentage' => [ 'base' => NULL, 'refs' => [ 'AwsJobAbortCriteria$thresholdPercentage' => '

The minimum percentage of job execution failures that must occur to initiate the job abort.

Amazon Web Services IoT Core supports up to two digits after the decimal (for example, 10.9 and 10.99, but not 10.999).

', ], ], 'AwsJobAbortCriteriaFailureType' => [ 'base' => NULL, 'refs' => [ 'AwsJobAbortCriteria$failureType' => '

The type of job execution failures that can initiate a job abort.

', ], ], 'AwsJobAbortCriteriaList' => [ 'base' => NULL, 'refs' => [ 'AwsJobAbortConfig$abortCriteriaList' => '

The list of criteria that determine when and how to abort the job.

', ], ], 'AwsJobAbortCriteriaMinimumNumberOfExecutedThings' => [ 'base' => NULL, 'refs' => [ 'AwsJobAbortCriteria$minNumberOfExecutedThings' => '

The minimum number of things which must receive job execution notifications before the job can be aborted.

', ], ], 'AwsJobExecutionsRolloutConfig' => [ 'base' => '

Configuration for the rollout of OTA updates.

', 'refs' => [ 'CreateOTAUpdateRequest$awsJobExecutionsRolloutConfig' => '

Configuration for the rollout of OTA updates.

', 'OTAUpdateInfo$awsJobExecutionsRolloutConfig' => '

Configuration for the rollout of OTA updates.

', ], ], 'AwsJobExponentialRolloutRate' => [ 'base' => '

The rate of increase for a job rollout. This parameter allows you to define an exponential rate increase for a job rollout.

', 'refs' => [ 'AwsJobExecutionsRolloutConfig$exponentialRate' => '

The rate of increase for a job rollout. This parameter allows you to define an exponential rate increase for a job rollout.

', ], ], 'AwsJobPresignedUrlConfig' => [ 'base' => '

Configuration information for pre-signed URLs. Valid when protocols contains HTTP.

', 'refs' => [ 'CreateOTAUpdateRequest$awsJobPresignedUrlConfig' => '

Configuration information for pre-signed URLs.

', 'OTAUpdateInfo$awsJobPresignedUrlConfig' => '

Configuration information for pre-signed URLs. Valid when protocols contains HTTP.

', ], ], 'AwsJobRateIncreaseCriteria' => [ 'base' => '

The criteria to initiate the increase in rate of rollout for a job.

', 'refs' => [ 'AwsJobExponentialRolloutRate$rateIncreaseCriteria' => '

The criteria to initiate the increase in rate of rollout for a job.

Amazon Web Services IoT Core supports up to one digit after the decimal (for example, 1.5, but not 1.55).

', ], ], 'AwsJobRateIncreaseCriteriaNumberOfThings' => [ 'base' => NULL, 'refs' => [ 'AwsJobRateIncreaseCriteria$numberOfNotifiedThings' => '

When this number of things have been notified, it will initiate an increase in the rollout rate.

', 'AwsJobRateIncreaseCriteria$numberOfSucceededThings' => '

When this number of things have succeeded in their job execution, it will initiate an increase in the rollout rate.

', ], ], 'AwsJobRolloutIncrementFactor' => [ 'base' => NULL, 'refs' => [ 'AwsJobExponentialRolloutRate$incrementFactor' => '

The rate of increase for a job rollout. The number of things notified is multiplied by this factor.

', ], ], 'AwsJobRolloutRatePerMinute' => [ 'base' => NULL, 'refs' => [ 'AwsJobExponentialRolloutRate$baseRatePerMinute' => '

The minimum number of things that will be notified of a pending job, per minute, at the start of the job rollout. This is the initial rate of the rollout.

', ], ], 'AwsJobTimeoutConfig' => [ 'base' => '

Specifies the amount of time each device has to finish its execution of the job. A timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the timer expires, it will be automatically set to TIMED_OUT.

', 'refs' => [ 'CreateOTAUpdateRequest$awsJobTimeoutConfig' => '

Specifies the amount of time each device has to finish its execution of the job. A timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the timer expires, it will be automatically set to TIMED_OUT.

', ], ], 'AwsJobTimeoutInProgressTimeoutInMinutes' => [ 'base' => NULL, 'refs' => [ 'AwsJobTimeoutConfig$inProgressTimeoutInMinutes' => '

Specifies the amount of time, in minutes, this device has to finish execution of this job. The timeout interval can be anywhere between 1 minute and 7 days (1 to 10080 minutes). The in progress timer can\'t be updated and will apply to all job executions for the job. Whenever a job execution remains in the IN_PROGRESS status for longer than this interval, the job execution will fail and switch to the terminal TIMED_OUT status.

', ], ], 'BatchMode' => [ 'base' => NULL, 'refs' => [ 'CloudwatchLogsAction$batchMode' => '

Indicates whether batches of log records will be extracted and uploaded into CloudWatch. Values include true or false (default).

', 'FirehoseAction$batchMode' => '

Whether to deliver the Kinesis Data Firehose stream as a batch by using PutRecordBatch . The default value is false.

When batchMode is true and the rule\'s SQL statement evaluates to an Array, each Array element forms one record in the PutRecordBatch request. The resulting array can\'t have more than 500 records.

', 'IotAnalyticsAction$batchMode' => '

Whether to process the action as a batch. The default value is false.

When batchMode is true and the rule SQL statement evaluates to an Array, each Array element is delivered as a separate message when passed by BatchPutMessage to the IoT Analytics channel. The resulting array can\'t have more than 100 messages.

', 'IotEventsAction$batchMode' => '

Whether to process the event actions as a batch. The default value is false.

When batchMode is true, you can\'t specify a messageId.

When batchMode is true and the rule SQL statement evaluates to an Array, each Array element is treated as a separate message when it\'s sent to IoT Events by calling BatchPutMessage . The resulting array can\'t have more than 10 messages.

', ], ], 'Behavior' => [ 'base' => '

A Device Defender security profile behavior.

', 'refs' => [ 'ActiveViolation$behavior' => '

The behavior that is being violated.

', 'Behaviors$member' => NULL, 'ViolationEvent$behavior' => '

The behavior that was violated.

', ], ], 'BehaviorCriteria' => [ 'base' => '

The criteria by which the behavior is determined to be normal.

', 'refs' => [ 'Behavior$criteria' => '

The criteria that determine if a device is behaving normally in regard to the metric.

In the IoT console, you can choose to be sent an alert through Amazon SNS when IoT Device Defender detects that a device is behaving anomalously.

', ], ], 'BehaviorCriteriaType' => [ 'base' => NULL, 'refs' => [ 'ListActiveViolationsRequest$behaviorCriteriaType' => '

The criteria for a behavior.

', 'ListViolationEventsRequest$behaviorCriteriaType' => '

The criteria for a behavior.

', ], ], 'BehaviorMetric' => [ 'base' => NULL, 'refs' => [ 'AdditionalMetricsToRetainList$member' => NULL, 'Behavior$metric' => '

What is measured by the behavior.

', 'ListMetricValuesRequest$metricName' => '

The name of the security profile metric for which values are returned.

', 'MetricToRetain$metric' => '

What is measured by the behavior.

', ], ], 'BehaviorModelTrainingSummaries' => [ 'base' => NULL, 'refs' => [ 'GetBehaviorModelTrainingSummariesResponse$summaries' => '

A list of all ML Detect behaviors and their model status for a given Security Profile.

', ], ], 'BehaviorModelTrainingSummary' => [ 'base' => '

The summary of an ML Detect behavior model.

', 'refs' => [ 'BehaviorModelTrainingSummaries$member' => NULL, ], ], 'BehaviorName' => [ 'base' => NULL, 'refs' => [ 'Behavior$name' => '

The name you\'ve given to the behavior.

', 'BehaviorModelTrainingSummary$behaviorName' => '

The name of the behavior.

', 'DetectMitigationActionsTaskTarget$behaviorName' => '

The name of the behavior.

', ], ], 'Behaviors' => [ 'base' => NULL, 'refs' => [ 'CreateSecurityProfileRequest$behaviors' => '

Specifies the behaviors that, when violated by a device (thing), cause an alert.

', 'DescribeSecurityProfileResponse$behaviors' => '

Specifies the behaviors that, when violated by a device (thing), cause an alert.

', 'UpdateSecurityProfileRequest$behaviors' => '

Specifies the behaviors that, when violated by a device (thing), cause an alert.

', 'UpdateSecurityProfileResponse$behaviors' => '

Specifies the behaviors that, when violated by a device (thing), cause an alert.

', 'ValidateSecurityProfileBehaviorsRequest$behaviors' => '

Specifies the behaviors that, when violated by a device (thing), cause an alert.

', ], ], 'BillingGroupArn' => [ 'base' => NULL, 'refs' => [ 'AddThingToBillingGroupRequest$billingGroupArn' => '

The ARN of the billing group.

', 'CreateBillingGroupResponse$billingGroupArn' => '

The ARN of the billing group.

', 'DescribeBillingGroupResponse$billingGroupArn' => '

The ARN of the billing group.

', 'RemoveThingFromBillingGroupRequest$billingGroupArn' => '

The ARN of the billing group.

', ], ], 'BillingGroupDescription' => [ 'base' => NULL, 'refs' => [ 'BillingGroupProperties$billingGroupDescription' => '

The description of the billing group.

', ], ], 'BillingGroupId' => [ 'base' => NULL, 'refs' => [ 'CreateBillingGroupResponse$billingGroupId' => '

The ID of the billing group.

', 'DescribeBillingGroupResponse$billingGroupId' => '

The ID of the billing group.

', ], ], 'BillingGroupMetadata' => [ 'base' => '

Additional information about the billing group.

', 'refs' => [ 'DescribeBillingGroupResponse$billingGroupMetadata' => '

Additional information about the billing group.

', ], ], 'BillingGroupName' => [ 'base' => NULL, 'refs' => [ 'AddThingToBillingGroupRequest$billingGroupName' => '

The name of the billing group.

This call is asynchronous. It might take several seconds for the detachment to propagate.

', 'CreateBillingGroupRequest$billingGroupName' => '

The name you wish to give to the billing group.

', 'CreateBillingGroupResponse$billingGroupName' => '

The name you gave to the billing group.

', 'CreateThingRequest$billingGroupName' => '

The name of the billing group the thing will be added to.

', 'DeleteBillingGroupRequest$billingGroupName' => '

The name of the billing group.

', 'DescribeBillingGroupRequest$billingGroupName' => '

The name of the billing group.

', 'DescribeBillingGroupResponse$billingGroupName' => '

The name of the billing group.

', 'DescribeThingResponse$billingGroupName' => '

The name of the billing group the thing belongs to.

', 'ListBillingGroupsRequest$namePrefixFilter' => '

Limit the results to billing groups whose names have the given prefix.

', 'ListThingsInBillingGroupRequest$billingGroupName' => '

The name of the billing group.

', 'RemoveThingFromBillingGroupRequest$billingGroupName' => '

The name of the billing group.

', 'UpdateBillingGroupRequest$billingGroupName' => '

The name of the billing group.

', ], ], 'BillingGroupNameAndArnList' => [ 'base' => NULL, 'refs' => [ 'ListBillingGroupsResponse$billingGroups' => '

The list of billing groups.

', ], ], 'BillingGroupProperties' => [ 'base' => '

The properties of a billing group.

', 'refs' => [ 'CreateBillingGroupRequest$billingGroupProperties' => '

The properties of the billing group.

', 'DescribeBillingGroupResponse$billingGroupProperties' => '

The properties of the billing group.

', 'UpdateBillingGroupRequest$billingGroupProperties' => '

The properties of the billing group.

', ], ], 'Boolean' => [ 'base' => NULL, 'refs' => [ 'ThingConnectivity$connected' => '

True if the thing is connected to the Amazon Web Services IoT Core service; false if it is not connected.

', 'ThingTypeMetadata$deprecated' => '

Whether the thing type is deprecated. If true, no new things could be associated with this type.

', ], ], 'BooleanKey' => [ 'base' => NULL, 'refs' => [ 'AuthorizerDescription$signingDisabled' => '

Specifies whether IoT validates the token signature in an authorization request.

', 'CreateAuthorizerRequest$signingDisabled' => '

Specifies whether IoT validates the token signature in an authorization request.

', ], ], 'BooleanWrapperObject' => [ 'base' => NULL, 'refs' => [ 'Job$isConcurrent' => '

Indicates whether a job is concurrent. Will be true when a job is rolling out new job executions or canceling previously created executions, otherwise false.

', 'JobSummary$isConcurrent' => '

Indicates whether a job is concurrent. Will be true when a job is rolling out new job executions or canceling previously created executions, otherwise false.

', ], ], 'Bucket' => [ 'base' => '

A count of documents that meets a specific aggregation criteria.

', 'refs' => [ 'Buckets$member' => NULL, ], ], 'BucketKeyValue' => [ 'base' => NULL, 'refs' => [ 'Bucket$keyValue' => '

The value counted for the particular bucket.

', ], ], 'BucketName' => [ 'base' => NULL, 'refs' => [ 'S3Action$bucketName' => '

The Amazon S3 bucket.

', ], ], 'Buckets' => [ 'base' => NULL, 'refs' => [ 'GetBucketsAggregationResponse$buckets' => '

The main part of the response with a list of buckets. Each bucket contains a keyValue and a count.

keyValue: The aggregation field value counted for the particular bucket.

count: The number of documents that have that value.

', ], ], 'BucketsAggregationType' => [ 'base' => '

The type of bucketed aggregation performed.

', 'refs' => [ 'GetBucketsAggregationRequest$bucketsAggregationType' => '

The basic control of the response shape and the bucket aggregation type to perform.

', ], ], 'CACertificate' => [ 'base' => '

A CA certificate.

', 'refs' => [ 'CACertificates$member' => NULL, ], ], 'CACertificateDescription' => [ 'base' => '

Describes a CA certificate.

', 'refs' => [ 'DescribeCACertificateResponse$certificateDescription' => '

The CA certificate description.

', ], ], 'CACertificateStatus' => [ 'base' => NULL, 'refs' => [ 'CACertificate$status' => '

The status of the CA certificate.

The status value REGISTER_INACTIVE is deprecated and should not be used.

', 'CACertificateDescription$status' => '

The status of a CA certificate.

', 'UpdateCACertificateRequest$newStatus' => '

The updated status of the CA certificate.

Note: The status value REGISTER_INACTIVE is deprecated and should not be used.

', ], ], 'CACertificateUpdateAction' => [ 'base' => NULL, 'refs' => [ 'UpdateCACertificateParams$action' => '

The action that you want to apply to the CA certificate. The only supported value is DEACTIVATE.

', ], ], 'CACertificates' => [ 'base' => NULL, 'refs' => [ 'ListCACertificatesResponse$certificates' => '

The CA certificates registered in your Amazon Web Services account.

', ], ], 'CancelAuditMitigationActionsTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelAuditMitigationActionsTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'CancelAuditTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelAuditTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'CancelCertificateTransferRequest' => [ 'base' => '

The input for the CancelCertificateTransfer operation.

', 'refs' => [], ], 'CancelDetectMitigationActionsTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelDetectMitigationActionsTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'CancelJobExecutionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelJobRequest' => [ 'base' => NULL, 'refs' => [], ], 'CancelJobResponse' => [ 'base' => NULL, 'refs' => [], ], 'CanceledChecksCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatistics$canceledChecks' => '

The number of checks that did not run because the audit was canceled.

', ], ], 'CanceledFindingsCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatisticsForAuditCheck$canceledFindingsCount' => '

The number of findings to which the mitigation action task was canceled when applied.

', ], ], 'CanceledThings' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$numberOfCanceledThings' => '

The number of things that cancelled the job.

', ], ], 'CannedAccessControlList' => [ 'base' => NULL, 'refs' => [ 'S3Action$cannedAcl' => '

The Amazon S3 canned ACL that controls access to the object identified by the object key. For more information, see S3 canned ACLs.

', ], ], 'Certificate' => [ 'base' => '

Information about a certificate.

', 'refs' => [ 'Certificates$member' => NULL, ], ], 'CertificateArn' => [ 'base' => NULL, 'refs' => [ 'CACertificate$certificateArn' => '

The ARN of the CA certificate.

', 'CACertificateDescription$certificateArn' => '

The CA certificate ARN.

', 'Certificate$certificateArn' => '

The ARN of the certificate.

', 'CertificateDescription$certificateArn' => '

The ARN of the certificate.

', 'CreateCertificateFromCsrResponse$certificateArn' => '

The Amazon Resource Name (ARN) of the certificate. You can use the ARN as a principal for policy operations.

', 'CreateKeysAndCertificateResponse$certificateArn' => '

The ARN of the certificate.

', 'OutgoingCertificate$certificateArn' => '

The certificate ARN.

', 'RegisterCACertificateResponse$certificateArn' => '

The CA certificate ARN.

', 'RegisterCertificateResponse$certificateArn' => '

The certificate ARN.

', 'RegisterCertificateWithoutCAResponse$certificateArn' => '

The Amazon Resource Name (ARN) of the registered certificate.

', 'ResourceIdentifier$deviceCertificateArn' => '

The ARN of the identified device certificate.

', 'SigningProfileParameter$certificateArn' => '

Certificate ARN.

', 'TransferCertificateResponse$transferredCertificateArn' => '

The ARN of the certificate.

', ], ], 'CertificateConflictException' => [ 'base' => '

Unable to verify the CA certificate used to sign the device certificate you are attempting to register. This is happens when you have registered more than one CA certificate that has the same subject field and public key.

', 'refs' => [], ], 'CertificateDescription' => [ 'base' => '

Describes a certificate.

', 'refs' => [ 'DescribeCertificateResponse$certificateDescription' => '

The description of the certificate.

', ], ], 'CertificateId' => [ 'base' => NULL, 'refs' => [ 'AcceptCertificateTransferRequest$certificateId' => '

The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)

', 'CACertificate$certificateId' => '

The ID of the CA certificate.

', 'CACertificateDescription$certificateId' => '

The CA certificate ID.

', 'CancelCertificateTransferRequest$certificateId' => '

The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)

', 'Certificate$certificateId' => '

The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)

', 'CertificateDescription$certificateId' => '

The ID of the certificate.

', 'CertificateDescription$caCertificateId' => '

The certificate ID of the CA certificate used to sign this certificate.

', 'CreateCertificateFromCsrResponse$certificateId' => '

The ID of the certificate. Certificate management operations only take a certificateId.

', 'CreateKeysAndCertificateResponse$certificateId' => '

The ID of the certificate. IoT issues a default subject name for the certificate (for example, IoT Certificate).

', 'CreateProvisioningClaimResponse$certificateId' => '

The ID of the certificate.

', 'DeleteCACertificateRequest$certificateId' => '

The ID of the certificate to delete. (The last part of the certificate ARN contains the certificate ID.)

', 'DeleteCertificateRequest$certificateId' => '

The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)

', 'DescribeCACertificateRequest$certificateId' => '

The CA certificate identifier.

', 'DescribeCertificateRequest$certificateId' => '

The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)

', 'ListCertificatesByCARequest$caCertificateId' => '

The ID of the CA certificate. This operation will list all registered device certificate that were signed by this CA certificate.

', 'OutgoingCertificate$certificateId' => '

The certificate ID.

', 'RegisterCACertificateResponse$certificateId' => '

The CA certificate identifier.

', 'RegisterCertificateResponse$certificateId' => '

The certificate identifier.

', 'RegisterCertificateWithoutCAResponse$certificateId' => '

The ID of the registered certificate. (The last part of the certificate ARN contains the certificate ID.

', 'RejectCertificateTransferRequest$certificateId' => '

The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)

', 'ResourceIdentifier$deviceCertificateId' => '

The ID of the certificate attached to the resource.

', 'ResourceIdentifier$caCertificateId' => '

The ID of the CA certificate used to authorize the certificate.

', 'TransferCertificateRequest$certificateId' => '

The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)

', 'UpdateCACertificateRequest$certificateId' => '

The CA certificate identifier.

', 'UpdateCertificateRequest$certificateId' => '

The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)

', ], ], 'CertificateMode' => [ 'base' => NULL, 'refs' => [ 'CACertificateDescription$certificateMode' => '

The mode of the CA.

All the device certificates that are registered using this CA will be registered in the same mode as the CA. For more information about certificate mode for device certificates, see certificate mode.

', 'Certificate$certificateMode' => '

The mode of the certificate.

DEFAULT: A certificate in DEFAULT mode is either generated by Amazon Web Services IoT Core or registered with an issuer certificate authority (CA) in DEFAULT mode. Devices with certificates in DEFAULT mode aren\'t required to send the Server Name Indication (SNI) extension when connecting to Amazon Web Services IoT Core. However, to use features such as custom domains and VPC endpoints, we recommend that you use the SNI extension when connecting to Amazon Web Services IoT Core.

SNI_ONLY: A certificate in SNI_ONLY mode is registered without an issuer CA. Devices with certificates in SNI_ONLY mode must send the SNI extension when connecting to Amazon Web Services IoT Core.

', 'CertificateDescription$certificateMode' => '

The mode of the certificate.

DEFAULT: A certificate in DEFAULT mode is either generated by Amazon Web Services IoT Core or registered with an issuer certificate authority (CA) in DEFAULT mode. Devices with certificates in DEFAULT mode aren\'t required to send the Server Name Indication (SNI) extension when connecting to Amazon Web Services IoT Core. However, to use features such as custom domains and VPC endpoints, we recommend that you use the SNI extension when connecting to Amazon Web Services IoT Core.

SNI_ONLY: A certificate in SNI_ONLY mode is registered without an issuer CA. Devices with certificates in SNI_ONLY mode must send the SNI extension when connecting to Amazon Web Services IoT Core.

For more information about the value for SNI extension, see Transport security in IoT.

', 'RegisterCACertificateRequest$certificateMode' => '

Describes the certificate mode in which the Certificate Authority (CA) will be registered. If the verificationCertificate field is not provided, set certificateMode to be SNI_ONLY. If the verificationCertificate field is provided, set certificateMode to be DEFAULT. When certificateMode is not provided, it defaults to DEFAULT. All the device certificates that are registered using this CA will be registered in the same certificate mode as the CA. For more information about certificate mode for device certificates, see certificate mode.

', ], ], 'CertificateName' => [ 'base' => NULL, 'refs' => [ 'CodeSigningCertificateChain$certificateName' => '

The name of the certificate.

', ], ], 'CertificatePathOnDevice' => [ 'base' => NULL, 'refs' => [ 'SigningProfileParameter$certificatePathOnDevice' => '

The location of the code-signing certificate on your device.

', ], ], 'CertificatePem' => [ 'base' => '

The PEM of a certificate.

', 'refs' => [ 'CACertificateDescription$certificatePem' => '

The CA certificate data, in PEM format.

', 'CertificateDescription$certificatePem' => '

The certificate data, in PEM format.

', 'CreateCertificateFromCsrResponse$certificatePem' => '

The certificate data, in PEM format.

', 'CreateKeysAndCertificateResponse$certificatePem' => '

The certificate data, in PEM format.

', 'CreateProvisioningClaimResponse$certificatePem' => '

The provisioning claim certificate.

', 'RegisterCACertificateRequest$caCertificate' => '

The CA certificate.

', 'RegisterCACertificateRequest$verificationCertificate' => '

The private key verification certificate. If certificateMode is SNI_ONLY, the verificationCertificate field must be empty. If certificateMode is DEFAULT or not provided, the verificationCertificate field must not be empty.

', 'RegisterCertificateRequest$certificatePem' => '

The certificate data, in PEM format.

', 'RegisterCertificateRequest$caCertificatePem' => '

The CA certificate used to sign the device certificate being registered.

', 'RegisterCertificateWithoutCARequest$certificatePem' => '

The certificate data, in PEM format.

', 'RegisterThingResponse$certificatePem' => '

The certificate data, in PEM format.

', ], ], 'CertificateProviderAccountDefaultForOperations' => [ 'base' => NULL, 'refs' => [ 'CreateCertificateProviderRequest$accountDefaultForOperations' => '

A list of the operations that the certificate provider will use to generate certificates. Valid value: CreateCertificateFromCsr.

', 'DescribeCertificateProviderResponse$accountDefaultForOperations' => '

A list of the operations that the certificate provider will use to generate certificates. Valid value: CreateCertificateFromCsr.

', 'UpdateCertificateProviderRequest$accountDefaultForOperations' => '

A list of the operations that the certificate provider will use to generate certificates. Valid value: CreateCertificateFromCsr.

', ], ], 'CertificateProviderArn' => [ 'base' => NULL, 'refs' => [ 'CertificateProviderSummary$certificateProviderArn' => '

The ARN of the certificate provider.

', 'CreateCertificateProviderResponse$certificateProviderArn' => '

The ARN of the certificate provider.

', 'DescribeCertificateProviderResponse$certificateProviderArn' => '

The ARN of the certificate provider.

', 'UpdateCertificateProviderResponse$certificateProviderArn' => '

The ARN of the certificate provider.

', ], ], 'CertificateProviderFunctionArn' => [ 'base' => NULL, 'refs' => [ 'CreateCertificateProviderRequest$lambdaFunctionArn' => '

The ARN of the Lambda function that defines the authentication logic.

', 'DescribeCertificateProviderResponse$lambdaFunctionArn' => '

The Lambda function ARN that\'s associated with the certificate provider.

', 'UpdateCertificateProviderRequest$lambdaFunctionArn' => '

The Lambda function ARN that\'s associated with the certificate provider.

', ], ], 'CertificateProviderName' => [ 'base' => NULL, 'refs' => [ 'CertificateProviderSummary$certificateProviderName' => '

The name of the certificate provider.

', 'CreateCertificateProviderRequest$certificateProviderName' => '

The name of the certificate provider.

', 'CreateCertificateProviderResponse$certificateProviderName' => '

The name of the certificate provider.

', 'DeleteCertificateProviderRequest$certificateProviderName' => '

The name of the certificate provider.

', 'DescribeCertificateProviderRequest$certificateProviderName' => '

The name of the certificate provider.

', 'DescribeCertificateProviderResponse$certificateProviderName' => '

The name of the certificate provider.

', 'UpdateCertificateProviderRequest$certificateProviderName' => '

The name of the certificate provider.

', 'UpdateCertificateProviderResponse$certificateProviderName' => '

The name of the certificate provider.

', ], ], 'CertificateProviderOperation' => [ 'base' => NULL, 'refs' => [ 'CertificateProviderAccountDefaultForOperations$member' => NULL, ], ], 'CertificateProviderSummary' => [ 'base' => '

The certificate provider summary.

', 'refs' => [ 'CertificateProviders$member' => NULL, ], ], 'CertificateProviders' => [ 'base' => NULL, 'refs' => [ 'ListCertificateProvidersResponse$certificateProviders' => '

The list of certificate providers in your Amazon Web Services account.

', ], ], 'CertificateSigningRequest' => [ 'base' => NULL, 'refs' => [ 'CreateCertificateFromCsrRequest$certificateSigningRequest' => '

The certificate signing request (CSR).

', ], ], 'CertificateStateException' => [ 'base' => '

The certificate operation is not allowed.

', 'refs' => [], ], 'CertificateStatus' => [ 'base' => NULL, 'refs' => [ 'Certificate$status' => '

The status of the certificate.

The status value REGISTER_INACTIVE is deprecated and should not be used.

', 'CertificateDescription$status' => '

The status of the certificate.

', 'RegisterCertificateRequest$status' => '

The status of the register certificate request. Valid values that you can use include ACTIVE, INACTIVE, and REVOKED.

', 'RegisterCertificateWithoutCARequest$status' => '

The status of the register certificate request.

', 'UpdateCertificateRequest$newStatus' => '

The new status.

Note: Setting the status to PENDING_TRANSFER or PENDING_ACTIVATION will result in an exception being thrown. PENDING_TRANSFER and PENDING_ACTIVATION are statuses used internally by IoT. They are not intended for developer use.

Note: The status value REGISTER_INACTIVE is deprecated and should not be used.

', ], ], 'CertificateValidationException' => [ 'base' => '

The certificate is invalid.

', 'refs' => [], ], 'CertificateValidity' => [ 'base' => '

When the certificate is valid.

', 'refs' => [ 'CACertificateDescription$validity' => '

When the CA certificate is valid.

', 'CertificateDescription$validity' => '

When the certificate is valid.

', ], ], 'Certificates' => [ 'base' => NULL, 'refs' => [ 'ListCertificatesByCAResponse$certificates' => '

The device certificates signed by the specified CA certificate.

', 'ListCertificatesResponse$certificates' => '

The descriptions of the certificates.

', ], ], 'ChannelName' => [ 'base' => NULL, 'refs' => [ 'IotAnalyticsAction$channelName' => '

The name of the IoT Analytics channel to which message data will be sent.

', ], ], 'CheckCompliant' => [ 'base' => NULL, 'refs' => [ 'AuditCheckDetails$checkCompliant' => '

True if the check is complete and found all resources compliant.

', ], ], 'Cidr' => [ 'base' => NULL, 'refs' => [ 'Cidrs$member' => NULL, ], ], 'Cidrs' => [ 'base' => NULL, 'refs' => [ 'MetricValue$cidrs' => '

If the comparisonOperator calls for a set of CIDRs, use this to specify that set to be compared with the metric.

', ], ], 'ClearDefaultAuthorizerRequest' => [ 'base' => NULL, 'refs' => [], ], 'ClearDefaultAuthorizerResponse' => [ 'base' => NULL, 'refs' => [], ], 'ClientId' => [ 'base' => NULL, 'refs' => [ 'DescribeThingResponse$defaultClientId' => '

The default MQTT client ID. For a typical device, the thing name is also used as the default MQTT client ID. Although we don’t require a mapping between a thing\'s registry name and its use of MQTT client IDs, certificates, or shadow state, we recommend that you choose a thing name and use it as the MQTT client ID for the registry and the Device Shadow service.

This lets you better organize your IoT fleet without removing the flexibility of the underlying device certificate model or shadows.

', 'ResourceIdentifier$clientId' => '

The client ID.

', 'TestAuthorizationRequest$clientId' => '

The MQTT client ID.

', ], ], 'ClientProperties' => [ 'base' => NULL, 'refs' => [ 'KafkaAction$clientProperties' => '

Properties of the Apache Kafka producer client.

', ], ], 'ClientRequestToken' => [ 'base' => NULL, 'refs' => [ 'CreateAuditSuppressionRequest$clientRequestToken' => '

Each audit supression must have a unique client request token. If you try to create a new audit suppression with the same token as one that already exists, an exception occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.

', 'CreateCustomMetricRequest$clientRequestToken' => '

Each custom metric must have a unique client request token. If you try to create a new custom metric that already exists with a different token, an exception occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.

', 'CreateDimensionRequest$clientRequestToken' => '

Each dimension must have a unique client request token. If you try to create a new dimension with the same token as a dimension that already exists, an exception occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.

', 'StartAuditMitigationActionsTaskRequest$clientRequestToken' => '

Each audit mitigation task must have a unique client request token. If you try to start a new task with the same token as a task that already exists, an exception occurs. If you omit this value, a unique client request token is generated automatically.

', 'StartDetectMitigationActionsTaskRequest$clientRequestToken' => '

Each mitigation action task must have a unique client request token. If you try to create a new task with the same token as a task that already exists, an exception occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.

', ], ], 'ClientToken' => [ 'base' => NULL, 'refs' => [ 'CreateCertificateProviderRequest$clientToken' => '

A string that you can optionally pass in the CreateCertificateProvider request to make sure the request is idempotent.

', 'CreatePackageRequest$clientToken' => '

A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don\'t reuse this client token if a new idempotent request is required.

', 'CreatePackageVersionRequest$clientToken' => '

A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don\'t reuse this client token if a new idempotent request is required.

', 'DeletePackageRequest$clientToken' => '

A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don\'t reuse this client token if a new idempotent request is required.

', 'DeletePackageVersionRequest$clientToken' => '

A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don\'t reuse this client token if a new idempotent request is required.

', 'UpdatePackageConfigurationRequest$clientToken' => '

A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don\'t reuse this client token if a new idempotent request is required.

', 'UpdatePackageRequest$clientToken' => '

A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don\'t reuse this client token if a new idempotent request is required.

', 'UpdatePackageVersionRequest$clientToken' => '

A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don\'t reuse this client token if a new idempotent request is required.

', ], ], 'CloudwatchAlarmAction' => [ 'base' => '

Describes an action that updates a CloudWatch alarm.

', 'refs' => [ 'Action$cloudwatchAlarm' => '

Change the state of a CloudWatch alarm.

', ], ], 'CloudwatchLogsAction' => [ 'base' => '

Describes an action that sends data to CloudWatch Logs.

', 'refs' => [ 'Action$cloudwatchLogs' => '

Send data to CloudWatch Logs.

', ], ], 'CloudwatchMetricAction' => [ 'base' => '

Describes an action that captures a CloudWatch metric.

', 'refs' => [ 'Action$cloudwatchMetric' => '

Capture a CloudWatch metric.

', ], ], 'Code' => [ 'base' => NULL, 'refs' => [ 'ErrorInfo$code' => '

The error code.

', ], ], 'CodeSigning' => [ 'base' => '

Describes the method to use when code signing a file.

', 'refs' => [ 'OTAUpdateFile$codeSigning' => '

The code signing method of the file.

', ], ], 'CodeSigningCertificateChain' => [ 'base' => '

Describes the certificate chain being used when code signing a file.

', 'refs' => [ 'CustomCodeSigning$certificateChain' => '

The certificate chain.

', ], ], 'CodeSigningSignature' => [ 'base' => '

Describes the signature for a file.

', 'refs' => [ 'CustomCodeSigning$signature' => '

The signature for the file.

', ], ], 'CognitoIdentityPoolId' => [ 'base' => NULL, 'refs' => [ 'GetEffectivePoliciesRequest$cognitoIdentityPoolId' => '

The Cognito identity pool ID.

', 'ResourceIdentifier$cognitoIdentityPoolId' => '

The ID of the Amazon Cognito identity pool.

', 'TestAuthorizationRequest$cognitoIdentityPoolId' => '

The Cognito identity pool ID.

', ], ], 'Comment' => [ 'base' => NULL, 'refs' => [ 'AssociateTargetsWithJobRequest$comment' => '

An optional comment string describing why the job was associated with the targets.

', 'CancelJobRequest$comment' => '

An optional comment string describing why the job was canceled.

', 'Job$comment' => '

If the job was updated, describes the reason for the update.

', ], ], 'ComparisonOperator' => [ 'base' => NULL, 'refs' => [ 'BehaviorCriteria$comparisonOperator' => '

The operator that relates the thing measured (metric) to the criteria (containing a value or statisticalThreshold). Valid operators include:

  • string-list: in-set and not-in-set

  • number-list: in-set and not-in-set

  • ip-address-list: in-cidr-set and not-in-cidr-set

  • number: less-than, less-than-equals, greater-than, and greater-than-equals

', ], ], 'CompliantChecksCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatistics$compliantChecks' => '

The number of checks that found compliant resources.

', ], ], 'ConfidenceLevel' => [ 'base' => NULL, 'refs' => [ 'MachineLearningDetectionConfig$confidenceLevel' => '

The sensitivity of anomalous behavior evaluation. Can be Low, Medium, or High.

', 'ViolationEventAdditionalInfo$confidenceLevel' => '

The sensitivity of anomalous behavior evaluation. Can be Low, Medium, or High.

', ], ], 'Configuration' => [ 'base' => '

Configuration.

', 'refs' => [ 'EventConfigurations$value' => NULL, ], ], 'ConfirmTopicRuleDestinationRequest' => [ 'base' => NULL, 'refs' => [], ], 'ConfirmTopicRuleDestinationResponse' => [ 'base' => NULL, 'refs' => [], ], 'ConfirmationToken' => [ 'base' => NULL, 'refs' => [ 'ConfirmTopicRuleDestinationRequest$confirmationToken' => '

The token used to confirm ownership or access to the topic rule confirmation URL.

', ], ], 'ConflictException' => [ 'base' => '

A resource with the same name already exists.

', 'refs' => [], ], 'ConflictingResourceUpdateException' => [ 'base' => '

A conflicting resource update exception. This exception is thrown when two pending updates cause a conflict.

', 'refs' => [], ], 'ConnectivityTimestamp' => [ 'base' => NULL, 'refs' => [ 'ThingConnectivity$timestamp' => '

The epoch time (in milliseconds) when the thing last connected or disconnected. If the thing has been disconnected for approximately an hour, the time value might be missing.

', ], ], 'ConsecutiveDatapointsToAlarm' => [ 'base' => NULL, 'refs' => [ 'BehaviorCriteria$consecutiveDatapointsToAlarm' => '

If a device is in violation of the behavior for the specified number of consecutive datapoints, an alarm occurs. If not specified, the default is 1.

', ], ], 'ConsecutiveDatapointsToClear' => [ 'base' => NULL, 'refs' => [ 'BehaviorCriteria$consecutiveDatapointsToClear' => '

If an alarm has occurred and the offending device is no longer in violation of the behavior for the specified number of consecutive datapoints, the alarm is cleared. If not specified, the default is 1.

', ], ], 'ContentType' => [ 'base' => NULL, 'refs' => [ 'MqttHeaders$contentType' => '

A UTF-8 encoded string that describes the content of the publishing message.

For more information, see Content Type from the MQTT Version 5.0 specification.

Supports substitution templates.

', ], ], 'CorrelationData' => [ 'base' => NULL, 'refs' => [ 'MqttHeaders$correlationData' => '

The base64-encoded binary data used by the sender of the request message to identify which request the response message is for when it\'s received.

For more information, see Correlation Data from the MQTT Version 5.0 specification.

This binary data must be based64-encoded.

Supports substitution templates.

', ], ], 'Count' => [ 'base' => NULL, 'refs' => [ 'Bucket$count' => '

The number of documents that have the value counted for the particular bucket.

', 'DescribeThingRegistrationTaskResponse$successCount' => '

The number of things successfully provisioned.

', 'DescribeThingRegistrationTaskResponse$failureCount' => '

The number of things that failed to be provisioned.

', 'GetBucketsAggregationResponse$totalCount' => '

The total number of things that fit the query string criteria.

', 'GetCardinalityResponse$cardinality' => '

The approximate count of unique values that match the query.

', 'Statistics$count' => '

The count of things that match the query string criteria and contain a valid aggregation field value.

', ], ], 'CreateAuditSuppressionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateAuditSuppressionResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateAuthorizerRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateAuthorizerResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateBillingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateBillingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateCertificateFromCsrRequest' => [ 'base' => '

The input for the CreateCertificateFromCsr operation.

', 'refs' => [], ], 'CreateCertificateFromCsrResponse' => [ 'base' => '

The output from the CreateCertificateFromCsr operation.

', 'refs' => [], ], 'CreateCertificateProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateCertificateProviderResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateCustomMetricRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateCustomMetricResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateDimensionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateDimensionResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateDomainConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateDomainConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateDynamicThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateDynamicThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateFleetMetricRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateFleetMetricResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateJobRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateJobResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateJobTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateJobTemplateResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateKeysAndCertificateRequest' => [ 'base' => '

The input for the CreateKeysAndCertificate operation.

Requires permission to access the CreateKeysAndCertificateRequest action.

', 'refs' => [], ], 'CreateKeysAndCertificateResponse' => [ 'base' => '

The output of the CreateKeysAndCertificate operation.

', 'refs' => [], ], 'CreateMitigationActionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateMitigationActionResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateOTAUpdateRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateOTAUpdateResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreatePackageRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreatePackageResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreatePackageVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreatePackageVersionResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreatePolicyRequest' => [ 'base' => '

The input for the CreatePolicy operation.

', 'refs' => [], ], 'CreatePolicyResponse' => [ 'base' => '

The output from the CreatePolicy operation.

', 'refs' => [], ], 'CreatePolicyVersionRequest' => [ 'base' => '

The input for the CreatePolicyVersion operation.

', 'refs' => [], ], 'CreatePolicyVersionResponse' => [ 'base' => '

The output of the CreatePolicyVersion operation.

', 'refs' => [], ], 'CreateProvisioningClaimRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateProvisioningClaimResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateProvisioningTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateProvisioningTemplateResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateProvisioningTemplateVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateProvisioningTemplateVersionResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateRoleAliasRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateRoleAliasResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateScheduledAuditRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateScheduledAuditResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateSecurityProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateSecurityProfileResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateStreamRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateStreamResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateThingRequest' => [ 'base' => '

The input for the CreateThing operation.

', 'refs' => [], ], 'CreateThingResponse' => [ 'base' => '

The output of the CreateThing operation.

', 'refs' => [], ], 'CreateThingTypeRequest' => [ 'base' => '

The input for the CreateThingType operation.

', 'refs' => [], ], 'CreateThingTypeResponse' => [ 'base' => '

The output of the CreateThingType operation.

', 'refs' => [], ], 'CreateTopicRuleDestinationRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTopicRuleDestinationResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateTopicRuleRequest' => [ 'base' => '

The input for the CreateTopicRule operation.

', 'refs' => [], ], 'CreatedAtDate' => [ 'base' => NULL, 'refs' => [ 'TopicRule$createdAt' => '

The date and time the rule was created.

', 'TopicRuleDestination$createdAt' => '

The date and time when the topic rule destination was created.

', 'TopicRuleDestinationSummary$createdAt' => '

The date and time when the topic rule destination was created.

', 'TopicRuleListItem$createdAt' => '

The date and time the rule was created.

', ], ], 'CreationDate' => [ 'base' => NULL, 'refs' => [ 'BillingGroupMetadata$creationDate' => '

The date the billing group was created.

', 'DescribeEventConfigurationsResponse$creationDate' => '

The creation date of the event configuration.

', 'DescribeFleetMetricResponse$creationDate' => '

The date when the fleet metric is created.

', 'DescribeThingRegistrationTaskResponse$creationDate' => '

The task creation date.

', 'GetPackageResponse$creationDate' => '

The date the package was created.

', 'GetPackageVersionResponse$creationDate' => '

The date when the package version was created.

', 'PackageSummary$creationDate' => '

The date that the package was created.

', 'PackageVersionSummary$creationDate' => '

The date that the package version was created.

', 'ThingGroupMetadata$creationDate' => '

The UNIX timestamp of when the thing group was created.

', 'ThingTypeMetadata$creationDate' => '

The date and time when the thing type was created.

', ], ], 'CredentialDurationSeconds' => [ 'base' => NULL, 'refs' => [ 'CreateRoleAliasRequest$credentialDurationSeconds' => '

How long (in seconds) the credentials will be valid. The default value is 3,600 seconds.

This value must be less than or equal to the maximum session duration of the IAM role that the role alias references.

', 'RoleAliasDescription$credentialDurationSeconds' => '

The number of seconds for which the credential is valid.

', 'UpdateRoleAliasRequest$credentialDurationSeconds' => '

The number of seconds the credential will be valid.

This value must be less than or equal to the maximum session duration of the IAM role that the role alias references.

', ], ], 'CronExpression' => [ 'base' => NULL, 'refs' => [ 'MaintenanceWindow$startTime' => '

Displays the start time of the next maintenance window.

', ], ], 'CustomCodeSigning' => [ 'base' => '

Describes a custom method used to code sign a file.

', 'refs' => [ 'CodeSigning$customCodeSigning' => '

A custom method for code signing a file.

', ], ], 'CustomMetricArn' => [ 'base' => NULL, 'refs' => [ 'CreateCustomMetricResponse$metricArn' => '

The Amazon Resource Number (ARN) of the custom metric. For example, arn:aws-partition:iot:region:accountId:custommetric/metricName

', 'DescribeCustomMetricResponse$metricArn' => '

The Amazon Resource Number (ARN) of the custom metric.

', 'UpdateCustomMetricResponse$metricArn' => '

The Amazon Resource Number (ARN) of the custom metric.

', ], ], 'CustomMetricDisplayName' => [ 'base' => NULL, 'refs' => [ 'CreateCustomMetricRequest$displayName' => '

The friendly name in the console for the custom metric. This name doesn\'t have to be unique. Don\'t use this name as the metric identifier in the device metric report. You can update the friendly name after you define it.

', 'DescribeCustomMetricResponse$displayName' => '

Field represents a friendly name in the console for the custom metric; doesn\'t have to be unique. Don\'t use this name as the metric identifier in the device metric report. Can be updated.

', 'UpdateCustomMetricRequest$displayName' => '

Field represents a friendly name in the console for the custom metric, it doesn\'t have to be unique. Don\'t use this name as the metric identifier in the device metric report. Can be updated.

', 'UpdateCustomMetricResponse$displayName' => '

A friendly name in the console for the custom metric

', ], ], 'CustomMetricType' => [ 'base' => NULL, 'refs' => [ 'CreateCustomMetricRequest$metricType' => '

The type of the custom metric.

The type number only takes a single metric value as an input, but when you submit the metrics value in the DeviceMetrics report, you must pass it as an array with a single value.

', 'DescribeCustomMetricResponse$metricType' => '

The type of the custom metric.

The type number only takes a single metric value as an input, but while submitting the metrics value in the DeviceMetrics report, it must be passed as an array with a single value.

', 'UpdateCustomMetricResponse$metricType' => '

The type of the custom metric.

The type number only takes a single metric value as an input, but while submitting the metrics value in the DeviceMetrics report, it must be passed as an array with a single value.

', ], ], 'CustomerVersion' => [ 'base' => NULL, 'refs' => [ 'CACertificateDescription$customerVersion' => '

The customer version of the CA certificate.

', 'CertificateDescription$customerVersion' => '

The customer version of the certificate.

', ], ], 'DataCollectionPercentage' => [ 'base' => NULL, 'refs' => [ 'BehaviorModelTrainingSummary$datapointsCollectionPercentage' => '

The percentage of datapoints collected.

', ], ], 'DateType' => [ 'base' => NULL, 'refs' => [ 'AuthorizerDescription$creationDate' => '

The UNIX timestamp of when the authorizer was created.

', 'AuthorizerDescription$lastModifiedDate' => '

The UNIX timestamp of when the authorizer was last updated.

', 'CACertificate$creationDate' => '

The date the CA certificate was created.

', 'CACertificateDescription$creationDate' => '

The date the CA certificate was created.

', 'CACertificateDescription$lastModifiedDate' => '

The date the CA certificate was last modified.

', 'Certificate$creationDate' => '

The date and time the certificate was created.

', 'CertificateDescription$creationDate' => '

The date and time the certificate was created.

', 'CertificateDescription$lastModifiedDate' => '

The date and time the certificate was last modified.

', 'CertificateValidity$notBefore' => '

The certificate is not valid before this date.

', 'CertificateValidity$notAfter' => '

The certificate is not valid after this date.

', 'CreateProvisioningClaimResponse$expiration' => '

The provisioning claim expiration time.

', 'DescribeCertificateProviderResponse$creationDate' => '

The date-time string that indicates when the certificate provider was created.

', 'DescribeCertificateProviderResponse$lastModifiedDate' => '

The date-time string that indicates when the certificate provider was last updated.

', 'DescribeDomainConfigurationResponse$lastStatusChangeDate' => '

The date and time the domain configuration\'s status was last changed.

', 'DescribeJobTemplateResponse$createdAt' => '

The time, in seconds since the epoch, when the job template was created.

', 'DescribeProvisioningTemplateResponse$creationDate' => '

The date when the provisioning template was created.

', 'DescribeProvisioningTemplateResponse$lastModifiedDate' => '

The date when the provisioning template was last modified.

', 'DescribeProvisioningTemplateVersionResponse$creationDate' => '

The date when the provisioning template version was created.

', 'GetPolicyResponse$creationDate' => '

The date the policy was created.

', 'GetPolicyResponse$lastModifiedDate' => '

The date the policy was last modified.

', 'GetPolicyVersionResponse$creationDate' => '

The date the policy was created.

', 'GetPolicyVersionResponse$lastModifiedDate' => '

The date the policy was last modified.

', 'Job$createdAt' => '

The time, in seconds since the epoch, when the job was created.

', 'Job$lastUpdatedAt' => '

The time, in seconds since the epoch, when the job was last updated.

', 'Job$completedAt' => '

The time, in seconds since the epoch, when the job was completed.

', 'JobExecution$queuedAt' => '

The time, in seconds since the epoch, when the job execution was queued.

', 'JobExecution$startedAt' => '

The time, in seconds since the epoch, when the job execution started.

', 'JobExecution$lastUpdatedAt' => '

The time, in seconds since the epoch, when the job execution was last updated.

', 'JobExecutionSummary$queuedAt' => '

The time, in seconds since the epoch, when the job execution was queued.

', 'JobExecutionSummary$startedAt' => '

The time, in seconds since the epoch, when the job execution started.

', 'JobExecutionSummary$lastUpdatedAt' => '

The time, in seconds since the epoch, when the job execution was last updated.

', 'JobSummary$createdAt' => '

The time, in seconds since the epoch, when the job was created.

', 'JobSummary$lastUpdatedAt' => '

The time, in seconds since the epoch, when the job was last updated.

', 'JobSummary$completedAt' => '

The time, in seconds since the epoch, when the job completed.

', 'JobTemplateSummary$createdAt' => '

The time, in seconds since the epoch, when the job template was created.

', 'OTAUpdateInfo$creationDate' => '

The date when the OTA update was created.

', 'OTAUpdateInfo$lastModifiedDate' => '

The date when the OTA update was last updated.

', 'OTAUpdateSummary$creationDate' => '

The date when the OTA update was created.

', 'OutgoingCertificate$transferDate' => '

The date the transfer was initiated.

', 'OutgoingCertificate$creationDate' => '

The certificate creation date.

', 'PolicyVersion$createDate' => '

The date and time the policy was created.

', 'ProvisioningTemplateSummary$creationDate' => '

The date when the provisioning template summary was created.

', 'ProvisioningTemplateSummary$lastModifiedDate' => '

The date when the provisioning template summary was last modified.

', 'ProvisioningTemplateVersionSummary$creationDate' => '

The date when the provisioning template version was created

', 'RoleAliasDescription$creationDate' => '

The UNIX timestamp of when the role alias was created.

', 'RoleAliasDescription$lastModifiedDate' => '

The UNIX timestamp of when the role alias was last modified.

', 'StreamInfo$createdAt' => '

The date when the stream was created.

', 'StreamInfo$lastUpdatedAt' => '

The date when the stream was last updated.

', 'TransferData$transferDate' => '

The date the transfer took place.

', 'TransferData$acceptDate' => '

The date the transfer was accepted.

', 'TransferData$rejectDate' => '

The date the transfer was rejected.

', ], ], 'DayOfMonth' => [ 'base' => NULL, 'refs' => [ 'CreateScheduledAuditRequest$dayOfMonth' => '

The day of the month on which the scheduled audit takes place. This can be "1" through "31" or "LAST". This field is required if the "frequency" parameter is set to MONTHLY. If days 29 to 31 are specified, and the month doesn\'t have that many days, the audit takes place on the LAST day of the month.

', 'DescribeScheduledAuditResponse$dayOfMonth' => '

The day of the month on which the scheduled audit takes place. This is will be 1 through 31 or LAST. If days 29-31 are specified, and the month does not have that many days, the audit takes place on the LAST day of the month.

', 'ScheduledAuditMetadata$dayOfMonth' => '

The day of the month on which the scheduled audit is run (if the frequency is "MONTHLY"). If days 29-31 are specified, and the month does not have that many days, the audit takes place on the "LAST" day of the month.

', 'UpdateScheduledAuditRequest$dayOfMonth' => '

The day of the month on which the scheduled audit takes place. This can be 1 through 31 or LAST. This field is required if the frequency parameter is set to MONTHLY. If days 29-31 are specified, and the month does not have that many days, the audit takes place on the "LAST" day of the month.

', ], ], 'DayOfWeek' => [ 'base' => NULL, 'refs' => [ 'CreateScheduledAuditRequest$dayOfWeek' => '

The day of the week on which the scheduled audit takes place, either SUN, MON, TUE, WED, THU, FRI, or SAT. This field is required if the frequency parameter is set to WEEKLY or BIWEEKLY.

', 'DescribeScheduledAuditResponse$dayOfWeek' => '

The day of the week on which the scheduled audit takes place, either one of SUN, MON, TUE, WED, THU, FRI, or SAT.

', 'ScheduledAuditMetadata$dayOfWeek' => '

The day of the week on which the scheduled audit is run (if the frequency is "WEEKLY" or "BIWEEKLY").

', 'UpdateScheduledAuditRequest$dayOfWeek' => '

The day of the week on which the scheduled audit takes place. This can be one of SUN, MON, TUE, WED, THU, FRI, or SAT. This field is required if the "frequency" parameter is set to WEEKLY or BIWEEKLY.

', ], ], 'DeleteAccountAuditConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAccountAuditConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAdditionalMetricsToRetain' => [ 'base' => NULL, 'refs' => [ 'UpdateSecurityProfileRequest$deleteAdditionalMetricsToRetain' => '

If true, delete all additionalMetricsToRetain defined for this security profile. If any additionalMetricsToRetain are defined in the current invocation, an exception occurs.

', ], ], 'DeleteAlertTargets' => [ 'base' => NULL, 'refs' => [ 'UpdateSecurityProfileRequest$deleteAlertTargets' => '

If true, delete all alertTargets defined for this security profile. If any alertTargets are defined in the current invocation, an exception occurs.

', ], ], 'DeleteAuditSuppressionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAuditSuppressionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAuthorizerRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAuthorizerResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteBehaviors' => [ 'base' => NULL, 'refs' => [ 'UpdateSecurityProfileRequest$deleteBehaviors' => '

If true, delete all behaviors defined for this security profile. If any behaviors are defined in the current invocation, an exception occurs.

', ], ], 'DeleteBillingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteBillingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCACertificateRequest' => [ 'base' => '

Input for the DeleteCACertificate operation.

', 'refs' => [], ], 'DeleteCACertificateResponse' => [ 'base' => '

The output for the DeleteCACertificate operation.

', 'refs' => [], ], 'DeleteCertificateProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCertificateProviderResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCertificateRequest' => [ 'base' => '

The input for the DeleteCertificate operation.

', 'refs' => [], ], 'DeleteConflictException' => [ 'base' => '

You can\'t delete the resource because it is attached to one or more resources.

', 'refs' => [], ], 'DeleteCustomMetricRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCustomMetricResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDimensionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDimensionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDomainConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDomainConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDynamicThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDynamicThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFleetMetricRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteJobExecutionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteJobRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteJobTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteMetricsExportConfig' => [ 'base' => NULL, 'refs' => [ 'UpdateSecurityProfileRequest$deleteMetricsExportConfig' => '

Set the value as true to delete metrics export related configurations.

', ], ], 'DeleteMitigationActionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteMitigationActionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteOTAUpdateRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteOTAUpdateResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeletePackageRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeletePackageResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeletePackageVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeletePackageVersionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeletePolicyRequest' => [ 'base' => '

The input for the DeletePolicy operation.

', 'refs' => [], ], 'DeletePolicyVersionRequest' => [ 'base' => '

The input for the DeletePolicyVersion operation.

', 'refs' => [], ], 'DeleteProvisioningTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteProvisioningTemplateResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteProvisioningTemplateVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteProvisioningTemplateVersionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteRegistrationCodeRequest' => [ 'base' => '

The input for the DeleteRegistrationCode operation.

', 'refs' => [], ], 'DeleteRegistrationCodeResponse' => [ 'base' => '

The output for the DeleteRegistrationCode operation.

', 'refs' => [], ], 'DeleteRoleAliasRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteRoleAliasResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteScheduledAuditRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteScheduledAuditResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteScheduledAudits' => [ 'base' => NULL, 'refs' => [ 'DeleteAccountAuditConfigurationRequest$deleteScheduledAudits' => '

If true, all scheduled audits are deleted.

', ], ], 'DeleteSecurityProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteSecurityProfileResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteStream' => [ 'base' => NULL, 'refs' => [ 'DeleteOTAUpdateRequest$deleteStream' => '

When true, the stream created by the OTAUpdate process is deleted when the OTA update is deleted. Ignored if the stream specified in the OTAUpdate is supplied by the user.

', ], ], 'DeleteStreamRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteStreamResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteThingRequest' => [ 'base' => '

The input for the DeleteThing operation.

', 'refs' => [], ], 'DeleteThingResponse' => [ 'base' => '

The output of the DeleteThing operation.

', 'refs' => [], ], 'DeleteThingTypeRequest' => [ 'base' => '

The input for the DeleteThingType operation.

', 'refs' => [], ], 'DeleteThingTypeResponse' => [ 'base' => '

The output for the DeleteThingType operation.

', 'refs' => [], ], 'DeleteTopicRuleDestinationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTopicRuleDestinationResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTopicRuleRequest' => [ 'base' => '

The input for the DeleteTopicRule operation.

', 'refs' => [], ], 'DeleteV2LoggingLevelRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeliveryStreamName' => [ 'base' => NULL, 'refs' => [ 'FirehoseAction$deliveryStreamName' => '

The delivery stream name.

', ], ], 'Denied' => [ 'base' => '

Contains information that denied the authorization.

', 'refs' => [ 'AuthResult$denied' => '

The policies and statements that denied the specified action.

', ], ], 'DeprecateThingTypeRequest' => [ 'base' => '

The input for the DeprecateThingType operation.

', 'refs' => [], ], 'DeprecateThingTypeResponse' => [ 'base' => '

The output for the DeprecateThingType operation.

', 'refs' => [], ], 'DeprecationDate' => [ 'base' => NULL, 'refs' => [ 'ThingTypeMetadata$deprecationDate' => '

The date and time when the thing type was deprecated.

', ], ], 'DescribeAccountAuditConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAccountAuditConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuditFindingRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuditFindingResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuditMitigationActionsTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuditMitigationActionsTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuditSuppressionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuditSuppressionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuditTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuditTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuthorizerRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAuthorizerResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeBillingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeBillingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCACertificateRequest' => [ 'base' => '

The input for the DescribeCACertificate operation.

', 'refs' => [], ], 'DescribeCACertificateResponse' => [ 'base' => '

The output from the DescribeCACertificate operation.

', 'refs' => [], ], 'DescribeCertificateProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCertificateProviderResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCertificateRequest' => [ 'base' => '

The input for the DescribeCertificate operation.

', 'refs' => [], ], 'DescribeCertificateResponse' => [ 'base' => '

The output of the DescribeCertificate operation.

', 'refs' => [], ], 'DescribeCustomMetricRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCustomMetricResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDefaultAuthorizerRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDefaultAuthorizerResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDetectMitigationActionsTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDetectMitigationActionsTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDimensionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDimensionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDomainConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDomainConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeEndpointRequest' => [ 'base' => '

The input for the DescribeEndpoint operation.

', 'refs' => [], ], 'DescribeEndpointResponse' => [ 'base' => '

The output from the DescribeEndpoint operation.

', 'refs' => [], ], 'DescribeEventConfigurationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeEventConfigurationsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFleetMetricRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeFleetMetricResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIndexRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIndexResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobExecutionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobExecutionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeJobTemplateResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeManagedJobTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeManagedJobTemplateResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeMitigationActionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeMitigationActionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeProvisioningTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeProvisioningTemplateResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeProvisioningTemplateVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeProvisioningTemplateVersionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeRoleAliasRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeRoleAliasResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeScheduledAuditRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeScheduledAuditResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSecurityProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeSecurityProfileResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeStreamRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeStreamResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeThingRegistrationTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeThingRegistrationTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeThingRequest' => [ 'base' => '

The input for the DescribeThing operation.

', 'refs' => [], ], 'DescribeThingResponse' => [ 'base' => '

The output from the DescribeThing operation.

', 'refs' => [], ], 'DescribeThingTypeRequest' => [ 'base' => '

The input for the DescribeThingType operation.

', 'refs' => [], ], 'DescribeThingTypeResponse' => [ 'base' => '

The output for the DescribeThingType operation.

', 'refs' => [], ], 'Description' => [ 'base' => NULL, 'refs' => [ 'TopicRule$description' => '

The description of the rule.

', 'TopicRulePayload$description' => '

The description of the rule.

', ], ], 'Destination' => [ 'base' => '

Describes the location of the updated firmware.

', 'refs' => [ 'StartSigningJobParameter$destination' => '

The location to write the code-signed file.

', ], ], 'DestinationPackageVersions' => [ 'base' => NULL, 'refs' => [ 'CreateJobRequest$destinationPackageVersions' => '

The package version Amazon Resource Names (ARNs) that are installed on the device when the job successfully completes. The package version must be in either the Published or Deprecated state when the job deploys. For more information, see Package version lifecycle.

Note:The following Length Constraints relates to a single ARN. Up to 25 package version ARNs are allowed.

', 'CreateJobTemplateRequest$destinationPackageVersions' => '

The package version Amazon Resource Names (ARNs) that are installed on the device when the job successfully completes. The package version must be in either the Published or Deprecated state when the job deploys. For more information, see Package version lifecycle.

Note:The following Length Constraints relates to a single ARN. Up to 25 package version ARNs are allowed.

', 'DescribeJobTemplateResponse$destinationPackageVersions' => '

The package version Amazon Resource Names (ARNs) that are installed on the device when the job successfully completes. The package version must be in either the Published or Deprecated state when the job deploys. For more information, see Package version lifecycle.

Note:The following Length Constraints relates to a single ARN. Up to 25 package version ARNs are allowed.

', 'Job$destinationPackageVersions' => '

The package version Amazon Resource Names (ARNs) that are installed on the device when the job successfully completes. The package version must be in either the Published or Deprecated state when the job deploys. For more information, see Package version lifecycle.The package version must be in either the Published or Deprecated state when the job deploys. For more information, see Package version lifecycle.

Note:The following Length Constraints relates to a single ARN. Up to 25 package version ARNs are allowed.

', ], ], 'DetachPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'DetachPrincipalPolicyRequest' => [ 'base' => '

The input for the DetachPrincipalPolicy operation.

', 'refs' => [], ], 'DetachSecurityProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'DetachSecurityProfileResponse' => [ 'base' => NULL, 'refs' => [], ], 'DetachThingPrincipalRequest' => [ 'base' => '

The input for the DetachThingPrincipal operation.

', 'refs' => [], ], 'DetachThingPrincipalResponse' => [ 'base' => '

The output from the DetachThingPrincipal operation.

', 'refs' => [], ], 'DetailsKey' => [ 'base' => NULL, 'refs' => [ 'DetailsMap$key' => NULL, ], ], 'DetailsMap' => [ 'base' => NULL, 'refs' => [ 'CancelJobExecutionRequest$statusDetails' => '

A collection of name/value pairs that describe the status of the job execution. If not specified, the statusDetails are unchanged. You can specify at most 10 name/value pairs.

', 'JobExecutionStatusDetails$detailsMap' => '

The job execution status.

', ], ], 'DetailsValue' => [ 'base' => NULL, 'refs' => [ 'DetailsMap$value' => NULL, ], ], 'DetectMitigationActionExecution' => [ 'base' => '

Describes which mitigation actions should be executed.

', 'refs' => [ 'DetectMitigationActionExecutionList$member' => NULL, ], ], 'DetectMitigationActionExecutionErrorCode' => [ 'base' => NULL, 'refs' => [ 'DetectMitigationActionExecution$errorCode' => '

The error code of a mitigation action.

', ], ], 'DetectMitigationActionExecutionList' => [ 'base' => NULL, 'refs' => [ 'ListDetectMitigationActionsExecutionsResponse$actionsExecutions' => '

List of actions executions.

', ], ], 'DetectMitigationActionExecutionStatus' => [ 'base' => NULL, 'refs' => [ 'DetectMitigationActionExecution$status' => '

The status of a mitigation action.

', ], ], 'DetectMitigationActionsTaskStatistics' => [ 'base' => '

The statistics of a mitigation action task.

', 'refs' => [ 'DetectMitigationActionsTaskSummary$taskStatistics' => '

The statistics of a mitigation action task.

', ], ], 'DetectMitigationActionsTaskStatus' => [ 'base' => NULL, 'refs' => [ 'DetectMitigationActionsTaskSummary$taskStatus' => '

The status of the task.

', ], ], 'DetectMitigationActionsTaskSummary' => [ 'base' => '

The summary of the mitigation action tasks.

', 'refs' => [ 'DescribeDetectMitigationActionsTaskResponse$taskSummary' => '

The description of a task.

', 'DetectMitigationActionsTaskSummaryList$member' => NULL, ], ], 'DetectMitigationActionsTaskSummaryList' => [ 'base' => NULL, 'refs' => [ 'ListDetectMitigationActionsTasksResponse$tasks' => '

The collection of ML Detect mitigation tasks that matched the filter criteria.

', ], ], 'DetectMitigationActionsTaskTarget' => [ 'base' => '

The target of a mitigation action task.

', 'refs' => [ 'DetectMitigationActionsTaskSummary$target' => '

Specifies the ML Detect findings to which the mitigation actions are applied.

', 'StartDetectMitigationActionsTaskRequest$target' => '

Specifies the ML Detect findings to which the mitigation actions are applied.

', ], ], 'DetectMitigationActionsToExecuteList' => [ 'base' => NULL, 'refs' => [ 'StartDetectMitigationActionsTaskRequest$actions' => '

The actions to be performed when a device has unexpected behavior.

', ], ], 'DeviceCertificateUpdateAction' => [ 'base' => NULL, 'refs' => [ 'UpdateDeviceCertificateParams$action' => '

The action that you want to apply to the device certificate. The only supported value is DEACTIVATE.

', ], ], 'DeviceDefenderIndexingMode' => [ 'base' => NULL, 'refs' => [ 'ThingIndexingConfiguration$deviceDefenderIndexingMode' => '

Device Defender indexing mode. Valid values are:

  • VIOLATIONS – Your thing index contains Device Defender violations. To enable Device Defender indexing, deviceDefenderIndexingMode must not be set to OFF.

  • OFF - Device Defender indexing is disabled.

For more information about Device Defender violations, see Device Defender Detect.

', ], ], 'DeviceDefenderThingName' => [ 'base' => NULL, 'refs' => [ 'ActiveViolation$thingName' => '

The name of the thing responsible for the active violation.

', 'DetectMitigationActionExecution$thingName' => '

The name of the thing.

', 'ListActiveViolationsRequest$thingName' => '

The name of the thing whose active violations are listed.

', 'ListDetectMitigationActionsExecutionsRequest$thingName' => '

The name of the thing whose mitigation actions are listed.

', 'ListMetricValuesRequest$thingName' => '

The name of the thing for which security profile metric values are returned.

', 'ListViolationEventsRequest$thingName' => '

A filter to limit results to those alerts caused by the specified thing.

', 'ViolationEvent$thingName' => '

The name of the thing responsible for the violation event.

', ], ], 'DimensionArn' => [ 'base' => NULL, 'refs' => [ 'CreateDimensionResponse$arn' => '

The Amazon Resource Name (ARN) of the created dimension.

', 'DescribeDimensionResponse$arn' => '

The Amazon Resource Name (ARN) for the dimension.

', 'UpdateDimensionResponse$arn' => '

The Amazon Resource Name (ARN)of the created dimension.

', ], ], 'DimensionName' => [ 'base' => NULL, 'refs' => [ 'CreateDimensionRequest$name' => '

A unique identifier for the dimension. Choose something that describes the type and value to make it easy to remember what it does.

', 'CreateDimensionResponse$name' => '

A unique identifier for the dimension.

', 'DeleteDimensionRequest$name' => '

The unique identifier for the dimension that you want to delete.

', 'DescribeDimensionRequest$name' => '

The unique identifier for the dimension.

', 'DescribeDimensionResponse$name' => '

The unique identifier for the dimension.

', 'DimensionNames$member' => NULL, 'ListMetricValuesRequest$dimensionName' => '

The dimension name.

', 'ListSecurityProfilesRequest$dimensionName' => '

A filter to limit results to the security profiles that use the defined dimension. Cannot be used with metricName

', 'MetricDimension$dimensionName' => '

A unique identifier for the dimension.

', 'UpdateDimensionRequest$name' => '

A unique identifier for the dimension. Choose something that describes the type and value to make it easy to remember what it does.

', 'UpdateDimensionResponse$name' => '

A unique identifier for the dimension.

', ], ], 'DimensionNames' => [ 'base' => NULL, 'refs' => [ 'ListDimensionsResponse$dimensionNames' => '

A list of the names of the defined dimensions. Use DescribeDimension to get details for a dimension.

', ], ], 'DimensionStringValue' => [ 'base' => NULL, 'refs' => [ 'DimensionStringValues$member' => NULL, ], ], 'DimensionStringValues' => [ 'base' => NULL, 'refs' => [ 'CreateDimensionRequest$stringValues' => '

Specifies the value or list of values for the dimension. For TOPIC_FILTER dimensions, this is a pattern used to match the MQTT topic (for example, "admin/#").

', 'DescribeDimensionResponse$stringValues' => '

The value or list of values used to scope the dimension. For example, for topic filters, this is the pattern used to match the MQTT topic name.

', 'UpdateDimensionRequest$stringValues' => '

Specifies the value or list of values for the dimension. For TOPIC_FILTER dimensions, this is a pattern used to match the MQTT topic (for example, "admin/#").

', 'UpdateDimensionResponse$stringValues' => '

The value or list of values used to scope the dimension. For example, for topic filters, this is the pattern used to match the MQTT topic name.

', ], ], 'DimensionType' => [ 'base' => NULL, 'refs' => [ 'CreateDimensionRequest$type' => '

Specifies the type of dimension. Supported types: TOPIC_FILTER.

', 'DescribeDimensionResponse$type' => '

The type of the dimension.

', 'UpdateDimensionResponse$type' => '

The type of the dimension.

', ], ], 'DimensionValueOperator' => [ 'base' => NULL, 'refs' => [ 'ListMetricValuesRequest$dimensionValueOperator' => '

The dimension value operator.

', 'MetricDimension$operator' => '

Defines how the dimensionValues of a dimension are interpreted. For example, for dimension type TOPIC_FILTER, the IN operator, a message will be counted only if its topic matches one of the topic filters. With NOT_IN operator, a message will be counted only if it doesn\'t match any of the topic filters. The operator is optional: if it\'s not provided (is null), it will be interpreted as IN.

', ], ], 'DisableAllLogs' => [ 'base' => NULL, 'refs' => [ 'GetV2LoggingOptionsResponse$disableAllLogs' => '

Disables all logs.

', 'SetV2LoggingOptionsRequest$disableAllLogs' => '

If true all logs are disabled. The default is false.

', ], ], 'DisableTopicRuleRequest' => [ 'base' => '

The input for the DisableTopicRuleRequest operation.

', 'refs' => [], ], 'DisconnectReason' => [ 'base' => NULL, 'refs' => [ 'ThingConnectivity$disconnectReason' => '

The reason why the client is disconnected. If the thing has been disconnected for approximately an hour, the disconnectReason value might be missing.

', ], ], 'DocumentParameter' => [ 'base' => '

A map of key-value pairs containing the patterns that need to be replaced in a managed template job document schema. You can use the description of each key as a guidance to specify the inputs during runtime when creating a job.

documentParameters can only be used when creating jobs from Amazon Web Services managed templates. This parameter can\'t be used with custom job templates or to create jobs from them.

', 'refs' => [ 'DocumentParameters$member' => NULL, ], ], 'DocumentParameters' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedJobTemplateResponse$documentParameters' => '

A map of key-value pairs that you can use as guidance to specify the inputs for creating a job from a managed template.

documentParameters can only be used when creating jobs from Amazon Web Services managed templates. This parameter can\'t be used with custom job templates or to create jobs from them.

', ], ], 'DomainConfigurationArn' => [ 'base' => NULL, 'refs' => [ 'CreateDomainConfigurationResponse$domainConfigurationArn' => '

The ARN of the domain configuration.

', 'DescribeDomainConfigurationResponse$domainConfigurationArn' => '

The ARN of the domain configuration.

', 'DomainConfigurationSummary$domainConfigurationArn' => '

The ARN of the domain configuration.

', 'UpdateDomainConfigurationResponse$domainConfigurationArn' => '

The ARN of the domain configuration that was updated.

', ], ], 'DomainConfigurationName' => [ 'base' => NULL, 'refs' => [ 'CreateDomainConfigurationRequest$domainConfigurationName' => '

The name of the domain configuration. This value must be unique to a region.

', 'CreateDomainConfigurationResponse$domainConfigurationName' => '

The name of the domain configuration.

', 'DeleteDomainConfigurationRequest$domainConfigurationName' => '

The name of the domain configuration to be deleted.

', ], ], 'DomainConfigurationStatus' => [ 'base' => NULL, 'refs' => [ 'DescribeDomainConfigurationResponse$domainConfigurationStatus' => '

A Boolean value that specifies the current state of the domain configuration.

', 'UpdateDomainConfigurationRequest$domainConfigurationStatus' => '

The status to which the domain configuration should be updated.

', ], ], 'DomainConfigurationSummary' => [ 'base' => '

The summary of a domain configuration. A domain configuration specifies custom IoT-specific information about a domain. A domain configuration can be associated with an Amazon Web Services-managed domain (for example, dbc123defghijk.iot.us-west-2.amazonaws.com), a customer managed domain, or a default endpoint.

  • Data

  • Jobs

  • CredentialProvider

', 'refs' => [ 'DomainConfigurations$member' => NULL, ], ], 'DomainConfigurations' => [ 'base' => NULL, 'refs' => [ 'ListDomainConfigurationsResponse$domainConfigurations' => '

A list of objects that contain summary information about the user\'s domain configurations.

', ], ], 'DomainName' => [ 'base' => NULL, 'refs' => [ 'CreateDomainConfigurationRequest$domainName' => '

The name of the domain.

', 'DescribeDomainConfigurationResponse$domainName' => '

The name of the domain.

', ], ], 'DomainType' => [ 'base' => NULL, 'refs' => [ 'DescribeDomainConfigurationResponse$domainType' => '

The type of the domain.

', ], ], 'DurationInMinutes' => [ 'base' => NULL, 'refs' => [ 'MaintenanceWindow$durationInMinutes' => '

Displays the duration of the next maintenance window.

', ], ], 'DurationSeconds' => [ 'base' => NULL, 'refs' => [ 'BehaviorCriteria$durationSeconds' => '

Use this to specify the time duration over which the behavior is evaluated, for those criteria that have a time dimension (for example, NUM_MESSAGES_SENT). For a statisticalThreshhold metric comparison, measurements from all devices are accumulated over this time duration before being used to calculate percentiles, and later, measurements from an individual device are also accumulated over this time duration before being given a percentile rank. Cannot be used with list-based metric datatypes.

', ], ], 'DynamicGroupStatus' => [ 'base' => NULL, 'refs' => [ 'DescribeThingGroupResponse$status' => '

The dynamic thing group status.

', ], ], 'DynamoDBAction' => [ 'base' => '

Describes an action to write to a DynamoDB table.

The tableName, hashKeyField, and rangeKeyField values must match the values used when you created the table.

The hashKeyValue and rangeKeyvalue fields use a substitution template syntax. These templates provide data at runtime. The syntax is as follows: ${sql-expression}.

You can specify any valid expression in a WHERE or SELECT clause, including JSON properties, comparisons, calculations, and functions. For example, the following field uses the third level of the topic:

"hashKeyValue": "${topic(3)}"

The following field uses the timestamp:

"rangeKeyValue": "${timestamp()}"

', 'refs' => [ 'Action$dynamoDB' => '

Write to a DynamoDB table.

', ], ], 'DynamoDBv2Action' => [ 'base' => '

Describes an action to write to a DynamoDB table.

This DynamoDB action writes each attribute in the message payload into it\'s own column in the DynamoDB table.

', 'refs' => [ 'Action$dynamoDBv2' => '

Write to a DynamoDB table. This is a new version of the DynamoDB action. It allows you to write each attribute in an MQTT message payload into a separate DynamoDB column.

', ], ], 'DynamoKeyType' => [ 'base' => NULL, 'refs' => [ 'DynamoDBAction$hashKeyType' => '

The hash key type. Valid values are "STRING" or "NUMBER"

', 'DynamoDBAction$rangeKeyType' => '

The range key type. Valid values are "STRING" or "NUMBER"

', ], ], 'DynamoOperation' => [ 'base' => NULL, 'refs' => [ 'DynamoDBAction$operation' => '

The type of operation to be performed. This follows the substitution template, so it can be ${operation}, but the substitution must result in one of the following: INSERT, UPDATE, or DELETE.

', ], ], 'EffectivePolicies' => [ 'base' => NULL, 'refs' => [ 'GetEffectivePoliciesResponse$effectivePolicies' => '

The effective policies.

', ], ], 'EffectivePolicy' => [ 'base' => '

The policy that has the effect on the authorization results.

', 'refs' => [ 'EffectivePolicies$member' => NULL, ], ], 'ElasticsearchAction' => [ 'base' => '

Describes an action that writes data to an Amazon OpenSearch Service domain.

The Elasticsearch action can only be used by existing rule actions. To create a new rule action or to update an existing rule action, use the OpenSearch rule action instead. For more information, see OpenSearchAction.

', 'refs' => [ 'Action$elasticsearch' => '

Write data to an Amazon OpenSearch Service domain.

The Elasticsearch action can only be used by existing rule actions. To create a new rule action or to update an existing rule action, use the OpenSearch rule action instead. For more information, see OpenSearchAction.

', ], ], 'ElasticsearchEndpoint' => [ 'base' => NULL, 'refs' => [ 'ElasticsearchAction$endpoint' => '

The endpoint of your OpenSearch domain.

', 'OpenSearchAction$endpoint' => '

The endpoint of your OpenSearch domain.

', ], ], 'ElasticsearchId' => [ 'base' => NULL, 'refs' => [ 'ElasticsearchAction$id' => '

The unique identifier for the document you are storing.

', 'OpenSearchAction$id' => '

The unique identifier for the document you are storing.

', ], ], 'ElasticsearchIndex' => [ 'base' => NULL, 'refs' => [ 'ElasticsearchAction$index' => '

The index where you want to store your data.

', 'OpenSearchAction$index' => '

The OpenSearch index where you want to store your data.

', ], ], 'ElasticsearchType' => [ 'base' => NULL, 'refs' => [ 'ElasticsearchAction$type' => '

The type of document you are storing.

', 'OpenSearchAction$type' => '

The type of document you are storing.

', ], ], 'EnableCachingForHttp' => [ 'base' => NULL, 'refs' => [ 'AuthorizerDescription$enableCachingForHttp' => '

When true, the result from the authorizer’s Lambda function is cached for the time specified in refreshAfterInSeconds. The cached result is used while the device reuses the same HTTP connection.

', 'CreateAuthorizerRequest$enableCachingForHttp' => '

When true, the result from the authorizer’s Lambda function is cached for clients that use persistent HTTP connections. The results are cached for the time specified by the Lambda function in refreshAfterInSeconds. This value does not affect authorization of clients that use MQTT connections.

The default value is false.

', 'UpdateAuthorizerRequest$enableCachingForHttp' => '

When true, the result from the authorizer’s Lambda function is cached for the time specified in refreshAfterInSeconds. The cached result is used while the device reuses the same HTTP connection.

', ], ], 'EnableIoTLoggingParams' => [ 'base' => '

Parameters used when defining a mitigation action that enable Amazon Web Services IoT Core logging.

', 'refs' => [ 'MitigationActionParams$enableIoTLoggingParams' => '

Parameters to define a mitigation action that enables Amazon Web Services IoT Core logging at a specified level of detail.

', ], ], 'EnableOCSPCheck' => [ 'base' => NULL, 'refs' => [ 'ServerCertificateConfig$enableOCSPCheck' => '

A Boolean value that indicates whether Online Certificate Status Protocol (OCSP) server certificate check is enabled or not.

For more information, see Configuring OCSP server-certificate stapling in domain configuration from Amazon Web Services IoT Core Developer Guide.

', ], ], 'EnableTopicRuleRequest' => [ 'base' => '

The input for the EnableTopicRuleRequest operation.

', 'refs' => [], ], 'Enabled' => [ 'base' => NULL, 'refs' => [ 'AuditCheckConfiguration$enabled' => '

True if this audit check is enabled for this account.

', 'AuditNotificationTarget$enabled' => '

True if notifications to the target are enabled.

', 'Configuration$Enabled' => '

True to enable the configuration.

', 'CreateProvisioningTemplateRequest$enabled' => '

True to enable the provisioning template, otherwise false.

', 'DescribeProvisioningTemplateResponse$enabled' => '

True if the provisioning template is enabled, otherwise false.

', 'ProvisioningTemplateSummary$enabled' => '

True if the fleet provision template is enabled, otherwise false.

', 'UpdateProvisioningTemplateRequest$enabled' => '

True to enable the provisioning template, otherwise false.

', ], ], 'EnabledBoolean' => [ 'base' => NULL, 'refs' => [ 'VersionUpdateByJobsConfig$enabled' => '

Indicates whether the Job is enabled or not.

', ], ], 'EndpointAddress' => [ 'base' => NULL, 'refs' => [ 'DescribeEndpointResponse$endpointAddress' => '

The endpoint. The format of the endpoint is as follows: identifier.iot.region.amazonaws.com.

', ], ], 'EndpointType' => [ 'base' => NULL, 'refs' => [ 'DescribeEndpointRequest$endpointType' => '

The endpoint type. Valid endpoint types include:

  • iot:Data - Returns a VeriSign signed data endpoint.

  • iot:Data-ATS - Returns an ATS signed data endpoint.

  • iot:CredentialProvider - Returns an IoT credentials provider API endpoint.

  • iot:Jobs - Returns an IoT device management Jobs API endpoint.

We strongly recommend that customers use the newer iot:Data-ATS endpoint type to avoid issues related to the widespread distrust of Symantec certificate authorities. ATS Signed Certificates are more secure and are trusted by most popular browsers.

', ], ], 'Environment' => [ 'base' => NULL, 'refs' => [ 'Environments$member' => NULL, ], ], 'Environments' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedJobTemplateResponse$environments' => '

A list of environments that are supported with the managed job template.

', 'ManagedJobTemplateSummary$environments' => '

A list of environments that are supported with the managed job template.

', ], ], 'ErrorCode' => [ 'base' => NULL, 'refs' => [ 'AuditCheckDetails$errorCode' => '

The code of any error encountered when this check is performed during this audit. One of "INSUFFICIENT_PERMISSIONS" or "AUDIT_CHECK_DISABLED".

', 'AuditMitigationActionExecutionMetadata$errorCode' => '

If an error occurred, the code that indicates which type of error occurred.

', ], ], 'ErrorInfo' => [ 'base' => '

Error information.

', 'refs' => [ 'OTAUpdateInfo$errorInfo' => '

Error information associated with the OTA update.

', ], ], 'ErrorMessage' => [ 'base' => NULL, 'refs' => [ 'AuditCheckDetails$message' => '

The message associated with any error encountered when this check is performed during this audit.

', 'AuditMitigationActionExecutionMetadata$message' => '

If an error occurred, a message that describes the error.

', 'DescribeThingRegistrationTaskResponse$message' => '

The message.

', 'DetectMitigationActionExecution$message' => '

The message of a mitigation action.

', 'ValidationError$errorMessage' => '

The description of an error found in the behaviors.

', ], ], 'EvaluationStatistic' => [ 'base' => NULL, 'refs' => [ 'StatisticalThreshold$statistic' => '

The percentile that resolves to a threshold value by which compliance with a behavior is determined. Metrics are collected over the specified period (durationSeconds) from all reporting devices in your account and statistical ranks are calculated. Then, the measurements from a device are collected over the same period. If the accumulated measurements from the device fall above or below (comparisonOperator) the value associated with the percentile specified, then the device is considered to be in compliance with the behavior, otherwise a violation occurs.

', ], ], 'EventConfigurations' => [ 'base' => NULL, 'refs' => [ 'DescribeEventConfigurationsResponse$eventConfigurations' => '

The event configurations.

', 'UpdateEventConfigurationsRequest$eventConfigurations' => '

The new event configuration values.

', ], ], 'EventType' => [ 'base' => NULL, 'refs' => [ 'EventConfigurations$key' => NULL, ], ], 'Example' => [ 'base' => NULL, 'refs' => [ 'DocumentParameter$example' => '

An example illustrating a pattern that need to be replaced in a managed template job document schema.

', ], ], 'ExecutionNamePrefix' => [ 'base' => NULL, 'refs' => [ 'StepFunctionsAction$executionNamePrefix' => '

(Optional) A name will be given to the state machine execution consisting of this prefix followed by a UUID. Step Functions automatically creates a unique name for each state machine execution if one is not provided.

', ], ], 'ExecutionNumber' => [ 'base' => NULL, 'refs' => [ 'DeleteJobExecutionRequest$executionNumber' => '

The ID of the job execution to be deleted. The executionNumber refers to the execution of a particular job on a particular device.

Note that once a job execution is deleted, the executionNumber may be reused by IoT, so be sure you get and use the correct value here.

', 'DescribeJobExecutionRequest$executionNumber' => '

A string (consisting of the digits "0" through "9" which is used to specify a particular job execution on a particular device.

', 'JobExecution$executionNumber' => '

A string (consisting of the digits "0" through "9") which identifies this particular job execution on this particular device. It can be used in commands which return or update job execution information.

', 'JobExecutionSummary$executionNumber' => '

A string (consisting of the digits "0" through "9") which identifies this particular job execution on this particular device. It can be used later in commands which return or update job execution information.

', ], ], 'ExpectedVersion' => [ 'base' => NULL, 'refs' => [ 'CancelJobExecutionRequest$expectedVersion' => '

(Optional) The expected current version of the job execution. Each time you update the job execution, its version is incremented. If the version of the job execution stored in Jobs does not match, the update is rejected with a VersionMismatch error, and an ErrorResponse that contains the current job execution status data is returned. (This makes it unnecessary to perform a separate DescribeJobExecution request in order to obtain the job execution status data.)

', ], ], 'ExpiresInSec' => [ 'base' => NULL, 'refs' => [ 'PresignedUrlConfig$expiresInSec' => '

How long (in seconds) pre-signed URLs are valid. Valid values are 60 - 3600, the default value is 3600 seconds. Pre-signed URLs are generated when Jobs receives an MQTT request for the job document.

', ], ], 'ExpiresInSeconds' => [ 'base' => NULL, 'refs' => [ 'AwsJobPresignedUrlConfig$expiresInSec' => '

How long (in seconds) pre-signed URLs are valid. Valid values are 60 - 3600, the default value is 1800 seconds. Pre-signed URLs are generated when a request for the job document is received.

', ], ], 'ExplicitDeny' => [ 'base' => '

Information that explicitly denies authorization.

', 'refs' => [ 'Denied$explicitDeny' => '

Information that explicitly denies the authorization.

', ], ], 'ExponentialRolloutRate' => [ 'base' => '

Allows you to create an exponential rate of rollout for a job.

', 'refs' => [ 'JobExecutionsRolloutConfig$exponentialRate' => '

The rate of increase for a job rollout. This parameter allows you to define an exponential rate for a job rollout.

', ], ], 'ExportMetric' => [ 'base' => NULL, 'refs' => [ 'Behavior$exportMetric' => '

Value indicates exporting metrics related to the behavior when it is true.

', 'MetricToRetain$exportMetric' => '

The value indicates exporting metrics related to the MetricToRetain when it\'s true.

', ], ], 'FailedChecksCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatistics$failedChecks' => '

The number of checks.

', ], ], 'FailedFindingsCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatisticsForAuditCheck$failedFindingsCount' => '

The number of findings for which at least one of the actions failed when applied.

', ], ], 'FailedThings' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$numberOfFailedThings' => '

The number of things that failed executing the job.

', ], ], 'Field' => [ 'base' => '

Describes the name and data type at a field.

', 'refs' => [ 'Fields$member' => NULL, ], ], 'FieldName' => [ 'base' => NULL, 'refs' => [ 'Field$name' => '

The name of the field.

', ], ], 'FieldType' => [ 'base' => NULL, 'refs' => [ 'Field$type' => '

The data type of the field.

', ], ], 'Fields' => [ 'base' => NULL, 'refs' => [ 'ThingGroupIndexingConfiguration$managedFields' => '

Contains fields that are indexed and whose types are already known by the Fleet Indexing service. This is an optional field. For more information, see Managed fields in the Amazon Web Services IoT Core Developer Guide.

You can\'t modify managed fields by updating fleet indexing configuration.

', 'ThingGroupIndexingConfiguration$customFields' => '

A list of thing group fields to index. This list cannot contain any managed fields. Use the GetIndexingConfiguration API to get a list of managed fields.

Contains custom field names and their data type.

', 'ThingIndexingConfiguration$managedFields' => '

Contains fields that are indexed and whose types are already known by the Fleet Indexing service. This is an optional field. For more information, see Managed fields in the Amazon Web Services IoT Core Developer Guide.

You can\'t modify managed fields by updating fleet indexing configuration.

', 'ThingIndexingConfiguration$customFields' => '

Contains custom field names and their data type.

', ], ], 'FileId' => [ 'base' => NULL, 'refs' => [ 'Stream$fileId' => '

The ID of a file associated with a stream.

', 'StreamFile$fileId' => '

The file ID.

', ], ], 'FileLocation' => [ 'base' => '

The location of the OTA update.

', 'refs' => [ 'OTAUpdateFile$fileLocation' => '

The location of the updated firmware.

', ], ], 'FileName' => [ 'base' => NULL, 'refs' => [ 'OTAUpdateFile$fileName' => '

The name of the file.

', ], ], 'FileType' => [ 'base' => NULL, 'refs' => [ 'OTAUpdateFile$fileType' => '

An integer value you can include in the job document to allow your devices to identify the type of file received from the cloud.

', ], ], 'FindingId' => [ 'base' => NULL, 'refs' => [ 'AuditFinding$findingId' => '

A unique identifier for this set of audit findings. This identifier is used to apply mitigation tasks to one or more sets of findings.

', 'AuditMitigationActionExecutionMetadata$findingId' => '

The unique identifier for the findings to which the task and associated mitigation action are applied.

', 'DescribeAuditFindingRequest$findingId' => '

A unique identifier for a single audit finding. You can use this identifier to apply mitigation actions to the finding.

', 'FindingIds$member' => NULL, 'ListAuditMitigationActionsExecutionsRequest$findingId' => '

Specify this filter to limit results to those that were applied to a specific audit finding.

', 'ListAuditMitigationActionsTasksRequest$findingId' => '

Specify this filter to limit results to tasks that were applied to a specific audit finding.

', 'ListRelatedResourcesForAuditFindingRequest$findingId' => '

The finding Id.

', ], ], 'FindingIds' => [ 'base' => NULL, 'refs' => [ 'AuditMitigationActionsTaskTarget$findingIds' => '

If the task will apply a mitigation action to one or more listed findings, this value uniquely identifies those findings.

', ], ], 'FirehoseAction' => [ 'base' => '

Describes an action that writes data to an Amazon Kinesis Firehose stream.

', 'refs' => [ 'Action$firehose' => '

Write to an Amazon Kinesis Firehose stream.

', ], ], 'FirehoseSeparator' => [ 'base' => NULL, 'refs' => [ 'FirehoseAction$separator' => '

A character separator that will be used to separate records written to the Firehose stream. Valid values are: \'\\n\' (newline), \'\\t\' (tab), \'\\r\\n\' (Windows newline), \',\' (comma).

', ], ], 'Flag' => [ 'base' => NULL, 'refs' => [ 'AttributePayload$merge' => '

Specifies whether the list of attributes provided in the AttributePayload is merged with the attributes stored in the registry, instead of overwriting them.

To remove an attribute, call UpdateThing with an empty attribute value.

The merge attribute is only valid when calling UpdateThing or UpdateThingGroup.

', ], ], 'FleetMetricArn' => [ 'base' => NULL, 'refs' => [ 'CreateFleetMetricResponse$metricArn' => '

The Amazon Resource Name (ARN) of the new fleet metric.

', 'DescribeFleetMetricResponse$metricArn' => '

The ARN of the fleet metric to describe.

', 'FleetMetricNameAndArn$metricArn' => '

The fleet metric ARN.

', ], ], 'FleetMetricDescription' => [ 'base' => NULL, 'refs' => [ 'CreateFleetMetricRequest$description' => '

The fleet metric description.

', 'DescribeFleetMetricResponse$description' => '

The fleet metric description.

', 'UpdateFleetMetricRequest$description' => '

The description of the fleet metric.

', ], ], 'FleetMetricName' => [ 'base' => NULL, 'refs' => [ 'CreateFleetMetricRequest$metricName' => '

The name of the fleet metric to create.

', 'CreateFleetMetricResponse$metricName' => '

The name of the fleet metric to create.

', 'DeleteFleetMetricRequest$metricName' => '

The name of the fleet metric to delete.

', 'DescribeFleetMetricRequest$metricName' => '

The name of the fleet metric to describe.

', 'DescribeFleetMetricResponse$metricName' => '

The name of the fleet metric to describe.

', 'FleetMetricNameAndArn$metricName' => '

The fleet metric name.

', 'UpdateFleetMetricRequest$metricName' => '

The name of the fleet metric to update.

', ], ], 'FleetMetricNameAndArn' => [ 'base' => '

The name and ARN of a fleet metric.

', 'refs' => [ 'FleetMetricNameAndArnList$member' => NULL, ], ], 'FleetMetricNameAndArnList' => [ 'base' => NULL, 'refs' => [ 'ListFleetMetricsResponse$fleetMetrics' => '

The list of fleet metrics objects.

', ], ], 'FleetMetricPeriod' => [ 'base' => NULL, 'refs' => [ 'CreateFleetMetricRequest$period' => '

The time in seconds between fleet metric emissions. Range [60(1 min), 86400(1 day)] and must be multiple of 60.

', 'DescribeFleetMetricResponse$period' => '

The time in seconds between fleet metric emissions. Range [60(1 min), 86400(1 day)] and must be multiple of 60.

', 'UpdateFleetMetricRequest$period' => '

The time in seconds between fleet metric emissions. Range [60(1 min), 86400(1 day)] and must be multiple of 60.

', ], ], 'FleetMetricUnit' => [ 'base' => NULL, 'refs' => [ 'CreateFleetMetricRequest$unit' => '

Used to support unit transformation such as milliseconds to seconds. The unit must be supported by CW metric. Default to null.

', 'DescribeFleetMetricResponse$unit' => '

Used to support unit transformation such as milliseconds to seconds. The unit must be supported by CW metric.

', 'UpdateFleetMetricRequest$unit' => '

Used to support unit transformation such as milliseconds to seconds. The unit must be supported by CW metric.

', ], ], 'ForceDelete' => [ 'base' => NULL, 'refs' => [ 'DeleteCertificateRequest$forceDelete' => '

Forces the deletion of a certificate if it is inactive and is not attached to an IoT thing.

', ], ], 'ForceDeleteAWSJob' => [ 'base' => NULL, 'refs' => [ 'DeleteOTAUpdateRequest$forceDeleteAWSJob' => '

When true, deletes the IoT job created by the OTAUpdate process even if it is "IN_PROGRESS". Otherwise, if the job is not in a terminal state ("COMPLETED" or "CANCELED") an exception will occur. The default is false.

', ], ], 'ForceFlag' => [ 'base' => NULL, 'refs' => [ 'CancelJobExecutionRequest$force' => '

(Optional) If true the job execution will be canceled if it has status IN_PROGRESS or QUEUED, otherwise the job execution will be canceled only if it has status QUEUED. If you attempt to cancel a job execution that is IN_PROGRESS, and you do not set force to true, then an InvalidStateTransitionException will be thrown. The default is false.

Canceling a job execution which is "IN_PROGRESS", will cause the device to be unable to update the job execution status. Use caution and ensure that the device is able to recover to a valid state.

', 'CancelJobRequest$force' => '

(Optional) If true job executions with status "IN_PROGRESS" and "QUEUED" are canceled, otherwise only job executions with status "QUEUED" are canceled. The default is false.

Canceling a job which is "IN_PROGRESS", will cause a device which is executing the job to be unable to update the job execution status. Use caution and ensure that each device executing a job which is canceled is able to recover to a valid state.

', 'DeleteJobExecutionRequest$force' => '

(Optional) When true, you can delete a job execution which is "IN_PROGRESS". Otherwise, you can only delete a job execution which is in a terminal state ("SUCCEEDED", "FAILED", "REJECTED", "REMOVED" or "CANCELED") or an exception will occur. The default is false.

Deleting a job execution which is "IN_PROGRESS", will cause the device to be unable to access job information or update the job execution status. Use caution and ensure that the device is able to recover to a valid state.

', 'DeleteJobRequest$force' => '

(Optional) When true, you can delete a job which is "IN_PROGRESS". Otherwise, you can only delete a job which is in a terminal state ("COMPLETED" or "CANCELED") or an exception will occur. The default is false.

Deleting a job which is "IN_PROGRESS", will cause a device which is executing the job to be unable to access job information or update the job execution status. Use caution and ensure that each device executing a job which is deleted is able to recover to a valid state.

', ], ], 'Forced' => [ 'base' => NULL, 'refs' => [ 'Job$forceCanceled' => '

Will be true if the job was canceled with the optional force parameter set to true.

', 'JobExecution$forceCanceled' => '

Will be true if the job execution was canceled with the optional force parameter set to true.

', ], ], 'FunctionArn' => [ 'base' => NULL, 'refs' => [ 'LambdaAction$functionArn' => '

The ARN of the Lambda function.

', ], ], 'GenerationId' => [ 'base' => NULL, 'refs' => [ 'CACertificateDescription$generationId' => '

The generation ID of the CA certificate.

', 'CertificateDescription$generationId' => '

The generation ID of the certificate.

', 'GetPolicyResponse$generationId' => '

The generation ID of the policy.

', 'GetPolicyVersionResponse$generationId' => '

The generation ID of the policy version.

', ], ], 'GenericLongValue' => [ 'base' => NULL, 'refs' => [ 'DetectMitigationActionsTaskStatistics$actionsExecuted' => '

The actions that were performed.

', 'DetectMitigationActionsTaskStatistics$actionsSkipped' => '

The actions that were skipped.

', 'DetectMitigationActionsTaskStatistics$actionsFailed' => '

The actions that failed.

', ], ], 'GeoLocationTarget' => [ 'base' => '

A geolocation target that you select to index. Each geolocation target contains a name and order key-value pair that specifies the geolocation target fields.

', 'refs' => [ 'GeoLocationsFilter$member' => NULL, ], ], 'GeoLocationsFilter' => [ 'base' => NULL, 'refs' => [ 'IndexingFilter$geoLocations' => '

The list of geolocation targets that you select to index. The default maximum number of geolocation targets for indexing is 1. To increase the limit, see Amazon Web Services IoT Device Management Quotas in the Amazon Web Services General Reference.

', ], ], 'GetBehaviorModelTrainingSummariesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetBehaviorModelTrainingSummariesResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetBucketsAggregationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetBucketsAggregationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetCardinalityRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetCardinalityResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetEffectivePoliciesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetEffectivePoliciesResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetIndexingConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIndexingConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetJobDocumentRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetJobDocumentResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetLoggingOptionsRequest' => [ 'base' => '

The input for the GetLoggingOptions operation.

', 'refs' => [], ], 'GetLoggingOptionsResponse' => [ 'base' => '

The output from the GetLoggingOptions operation.

', 'refs' => [], ], 'GetOTAUpdateRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetOTAUpdateResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetPackageConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetPackageConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetPackageRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetPackageResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetPackageVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetPackageVersionResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetPercentilesRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetPercentilesResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetPolicyRequest' => [ 'base' => '

The input for the GetPolicy operation.

', 'refs' => [], ], 'GetPolicyResponse' => [ 'base' => '

The output from the GetPolicy operation.

', 'refs' => [], ], 'GetPolicyVersionRequest' => [ 'base' => '

The input for the GetPolicyVersion operation.

', 'refs' => [], ], 'GetPolicyVersionResponse' => [ 'base' => '

The output from the GetPolicyVersion operation.

', 'refs' => [], ], 'GetRegistrationCodeRequest' => [ 'base' => '

The input to the GetRegistrationCode operation.

', 'refs' => [], ], 'GetRegistrationCodeResponse' => [ 'base' => '

The output from the GetRegistrationCode operation.

', 'refs' => [], ], 'GetStatisticsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetStatisticsResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetTopicRuleDestinationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetTopicRuleDestinationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetTopicRuleRequest' => [ 'base' => '

The input for the GetTopicRule operation.

', 'refs' => [], ], 'GetTopicRuleResponse' => [ 'base' => '

The output from the GetTopicRule operation.

', 'refs' => [], ], 'GetV2LoggingOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetV2LoggingOptionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'GroupNameAndArn' => [ 'base' => '

The name and ARN of a group.

', 'refs' => [ 'BillingGroupNameAndArnList$member' => NULL, 'ThingGroupNameAndArnList$member' => NULL, ], ], 'HashAlgorithm' => [ 'base' => NULL, 'refs' => [ 'CustomCodeSigning$hashAlgorithm' => '

The hash algorithm used to code sign the file. You can use a string as the algorithm name if the target over-the-air (OTA) update devices are able to verify the signature that was generated using the same signature algorithm. For example, FreeRTOS uses SHA256 or SHA1, so you can pass either of them based on which was used for generating the signature.

', ], ], 'HashKeyField' => [ 'base' => NULL, 'refs' => [ 'DynamoDBAction$hashKeyField' => '

The hash key name.

', ], ], 'HashKeyValue' => [ 'base' => NULL, 'refs' => [ 'DynamoDBAction$hashKeyValue' => '

The hash key value.

', ], ], 'HeaderKey' => [ 'base' => NULL, 'refs' => [ 'HttpActionHeader$key' => '

The HTTP header key.

', ], ], 'HeaderList' => [ 'base' => NULL, 'refs' => [ 'HttpAction$headers' => '

The HTTP headers to send with the message data.

', ], ], 'HeaderValue' => [ 'base' => NULL, 'refs' => [ 'HttpActionHeader$value' => '

The HTTP header value. Substitution templates are supported.

', ], ], 'HttpAction' => [ 'base' => '

Send data to an HTTPS endpoint.

', 'refs' => [ 'Action$http' => '

Send data to an HTTPS endpoint.

', ], ], 'HttpActionHeader' => [ 'base' => '

The HTTP action header.

', 'refs' => [ 'HeaderList$member' => NULL, ], ], 'HttpAuthorization' => [ 'base' => '

The authorization method used to send messages.

', 'refs' => [ 'HttpAction$auth' => '

The authentication method to use when sending data to an HTTPS endpoint.

', ], ], 'HttpContext' => [ 'base' => '

Specifies the HTTP context to use for the test authorizer request.

', 'refs' => [ 'TestInvokeAuthorizerRequest$httpContext' => '

Specifies a test HTTP authorization request.

', ], ], 'HttpHeaderName' => [ 'base' => NULL, 'refs' => [ 'HttpHeaders$key' => NULL, ], ], 'HttpHeaderValue' => [ 'base' => NULL, 'refs' => [ 'HttpHeaders$value' => NULL, ], ], 'HttpHeaders' => [ 'base' => NULL, 'refs' => [ 'HttpContext$headers' => '

The header keys and values in an HTTP authorization request.

', ], ], 'HttpQueryString' => [ 'base' => NULL, 'refs' => [ 'HttpContext$queryString' => '

The query string keys and values in an HTTP authorization request.

', ], ], 'HttpUrlDestinationConfiguration' => [ 'base' => '

HTTP URL destination configuration used by the topic rule\'s HTTP action.

', 'refs' => [ 'TopicRuleDestinationConfiguration$httpUrlConfiguration' => '

Configuration of the HTTP URL.

', ], ], 'HttpUrlDestinationProperties' => [ 'base' => '

HTTP URL destination properties.

', 'refs' => [ 'TopicRuleDestination$httpUrlProperties' => '

Properties of the HTTP URL.

', ], ], 'HttpUrlDestinationSummary' => [ 'base' => '

Information about an HTTP URL destination.

', 'refs' => [ 'TopicRuleDestinationSummary$httpUrlSummary' => '

Information about the HTTP URL.

', ], ], 'ImplicitDeny' => [ 'base' => '

Information that implicitly denies authorization. When policy doesn\'t explicitly deny or allow an action on a resource it is considered an implicit deny.

', 'refs' => [ 'Denied$implicitDeny' => '

Information that implicitly denies the authorization. When a policy doesn\'t explicitly deny or allow an action on a resource it is considered an implicit deny.

', ], ], 'InProgressChecksCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatistics$inProgressChecks' => '

The number of checks in progress.

', ], ], 'InProgressThings' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$numberOfInProgressThings' => '

The number of things currently executing the job.

', ], ], 'InProgressTimeoutInMinutes' => [ 'base' => NULL, 'refs' => [ 'TimeoutConfig$inProgressTimeoutInMinutes' => '

Specifies the amount of time, in minutes, this device has to finish execution of this job. The timeout interval can be anywhere between 1 minute and 7 days (1 to 10080 minutes). The in progress timer can\'t be updated and will apply to all job executions for the job. Whenever a job execution remains in the IN_PROGRESS status for longer than this interval, the job execution will fail and switch to the terminal TIMED_OUT status.

', ], ], 'IncrementFactor' => [ 'base' => NULL, 'refs' => [ 'ExponentialRolloutRate$incrementFactor' => '

The exponential factor to increase the rate of rollout for a job.

Amazon Web Services IoT Core supports up to one digit after the decimal (for example, 1.5, but not 1.55).

', ], ], 'IndexName' => [ 'base' => NULL, 'refs' => [ 'CreateDynamicThingGroupRequest$indexName' => '

The dynamic thing group index name.

Currently one index is supported: AWS_Things.

', 'CreateDynamicThingGroupResponse$indexName' => '

The dynamic thing group index name.

', 'CreateFleetMetricRequest$indexName' => '

The name of the index to search.

', 'DescribeFleetMetricResponse$indexName' => '

The name of the index to search.

', 'DescribeIndexRequest$indexName' => '

The index name.

', 'DescribeIndexResponse$indexName' => '

The index name.

', 'DescribeThingGroupResponse$indexName' => '

The dynamic thing group index name.

', 'GetBucketsAggregationRequest$indexName' => '

The name of the index to search.

', 'GetCardinalityRequest$indexName' => '

The name of the index to search.

', 'GetPercentilesRequest$indexName' => '

The name of the index to search.

', 'GetStatisticsRequest$indexName' => '

The name of the index to search. The default value is AWS_Things.

', 'IndexNamesList$member' => NULL, 'SearchIndexRequest$indexName' => '

The search index name.

', 'UpdateDynamicThingGroupRequest$indexName' => '

The dynamic thing group index to update.

Currently one index is supported: AWS_Things.

', 'UpdateFleetMetricRequest$indexName' => '

The name of the index to search.

', ], ], 'IndexNamesList' => [ 'base' => NULL, 'refs' => [ 'ListIndicesResponse$indexNames' => '

The index names.

', ], ], 'IndexNotReadyException' => [ 'base' => '

The index is not ready.

', 'refs' => [], ], 'IndexSchema' => [ 'base' => NULL, 'refs' => [ 'DescribeIndexResponse$schema' => '

Contains a value that specifies the type of indexing performed. Valid values are:

  • REGISTRY – Your thing index contains only registry data.

  • REGISTRY_AND_SHADOW - Your thing index contains registry data and shadow data.

  • REGISTRY_AND_CONNECTIVITY_STATUS - Your thing index contains registry data and thing connectivity status data.

  • REGISTRY_AND_SHADOW_AND_CONNECTIVITY_STATUS - Your thing index contains registry data, shadow data, and thing connectivity status data.

  • MULTI_INDEXING_MODE - Your thing index contains multiple data sources. For more information, see GetIndexingConfiguration.

', ], ], 'IndexStatus' => [ 'base' => NULL, 'refs' => [ 'DescribeIndexResponse$indexStatus' => '

The index status.

', ], ], 'IndexingFilter' => [ 'base' => '

Provides additional selections for named shadows and geolocation data.

To add named shadows to your fleet indexing configuration, set namedShadowIndexingMode to be ON and specify your shadow names in namedShadowNames filter.

To add geolocation data to your fleet indexing configuration:

  • If you store geolocation data in a class/unnamed shadow, set thingIndexingMode to be REGISTRY_AND_SHADOW and specify your geolocation data in geoLocations filter.

  • If you store geolocation data in a named shadow, set namedShadowIndexingMode to be ON, add the shadow name in namedShadowNames filter, and specify your geolocation data in geoLocations filter. For more information, see Managing fleet indexing.

', 'refs' => [ 'ThingIndexingConfiguration$filter' => '

Provides additional selections for named shadows and geolocation data.

To add named shadows to your fleet indexing configuration, set namedShadowIndexingMode to be ON and specify your shadow names in namedShadowNames filter.

To add geolocation data to your fleet indexing configuration:

  • If you store geolocation data in a class/unnamed shadow, set thingIndexingMode to be REGISTRY_AND_SHADOW and specify your geolocation data in geoLocations filter.

  • If you store geolocation data in a named shadow, set namedShadowIndexingMode to be ON, add the shadow name in namedShadowNames filter, and specify your geolocation data in geoLocations filter. For more information, see Managing fleet indexing.

', ], ], 'InlineDocument' => [ 'base' => NULL, 'refs' => [ 'CodeSigningCertificateChain$inlineDocument' => '

A base64 encoded binary representation of the code signing certificate chain.

', ], ], 'InputName' => [ 'base' => NULL, 'refs' => [ 'IotEventsAction$inputName' => '

The name of the IoT Events input.

', ], ], 'InternalException' => [ 'base' => '

An unexpected error has occurred.

', 'refs' => [], ], 'InternalFailureException' => [ 'base' => '

An unexpected error has occurred.

', 'refs' => [], ], 'InternalServerException' => [ 'base' => '

Internal error from the service that indicates an unexpected error or that the service is unavailable.

', 'refs' => [], ], 'InvalidAggregationException' => [ 'base' => '

The aggregation is invalid.

', 'refs' => [], ], 'InvalidQueryException' => [ 'base' => '

The query is invalid.

', 'refs' => [], ], 'InvalidRequestException' => [ 'base' => '

The request is not valid.

', 'refs' => [], ], 'InvalidResponseException' => [ 'base' => '

The response is invalid.

', 'refs' => [], ], 'InvalidStateTransitionException' => [ 'base' => '

An attempt was made to change to an invalid state, for example by deleting a job or a job execution which is "IN_PROGRESS" without setting the force parameter.

', 'refs' => [], ], 'IotAnalyticsAction' => [ 'base' => '

Sends message data to an IoT Analytics channel.

', 'refs' => [ 'Action$iotAnalytics' => '

Sends message data to an IoT Analytics channel.

', ], ], 'IotEventsAction' => [ 'base' => '

Sends an input to an IoT Events detector.

', 'refs' => [ 'Action$iotEvents' => '

Sends an input to an IoT Events detector.

', ], ], 'IotSiteWiseAction' => [ 'base' => '

Describes an action to send data from an MQTT message that triggered the rule to IoT SiteWise asset properties.

', 'refs' => [ 'Action$iotSiteWise' => '

Sends data from the MQTT message that triggered the rule to IoT SiteWise asset properties.

', ], ], 'IsAuthenticated' => [ 'base' => NULL, 'refs' => [ 'TestInvokeAuthorizerResponse$isAuthenticated' => '

True if the token is authenticated, otherwise false.

', ], ], 'IsDefaultVersion' => [ 'base' => NULL, 'refs' => [ 'CreatePolicyVersionResponse$isDefaultVersion' => '

Specifies whether the policy version is the default.

', 'CreateProvisioningTemplateVersionResponse$isDefaultVersion' => '

True if the provisioning template version is the default version, otherwise false.

', 'DescribeProvisioningTemplateVersionResponse$isDefaultVersion' => '

True if the provisioning template version is the default version.

', 'GetPolicyVersionResponse$isDefaultVersion' => '

Specifies whether the policy version is the default.

', 'PolicyVersion$isDefaultVersion' => '

Specifies whether the policy version is the default.

', 'ProvisioningTemplateVersionSummary$isDefaultVersion' => '

True if the provisioning template version is the default version, otherwise false.

', ], ], 'IsDisabled' => [ 'base' => NULL, 'refs' => [ 'ListTopicRulesRequest$ruleDisabled' => '

Specifies whether the rule is disabled.

', 'TopicRule$ruleDisabled' => '

Specifies whether the rule is disabled.

', 'TopicRuleListItem$ruleDisabled' => '

Specifies whether the rule is disabled.

', 'TopicRulePayload$ruleDisabled' => '

Specifies whether the rule is disabled.

', ], ], 'IsSuppressed' => [ 'base' => NULL, 'refs' => [ 'AuditFinding$isSuppressed' => '

Indicates whether the audit finding was suppressed or not during reporting.

', ], ], 'IssuerCertificateIdentifier' => [ 'base' => '

The certificate issuer indentifier.

', 'refs' => [ 'ResourceIdentifier$issuerCertificateIdentifier' => '

The issuer certificate identifier.

', ], ], 'IssuerCertificateSerialNumber' => [ 'base' => NULL, 'refs' => [ 'IssuerCertificateIdentifier$issuerCertificateSerialNumber' => '

The issuer certificate serial number.

', ], ], 'IssuerCertificateSubject' => [ 'base' => NULL, 'refs' => [ 'IssuerCertificateIdentifier$issuerCertificateSubject' => '

The subject of the issuer certificate.

', ], ], 'IssuerId' => [ 'base' => NULL, 'refs' => [ 'IssuerCertificateIdentifier$issuerId' => '

The issuer ID.

', ], ], 'Job' => [ 'base' => '

The Job object contains details about a job.

', 'refs' => [ 'DescribeJobResponse$job' => '

Information about the job.

', ], ], 'JobArn' => [ 'base' => NULL, 'refs' => [ 'AssociateTargetsWithJobResponse$jobArn' => '

An ARN identifying the job.

', 'CancelJobResponse$jobArn' => '

The job ARN.

', 'CreateJobResponse$jobArn' => '

The job ARN.

', 'CreateJobTemplateRequest$jobArn' => '

The ARN of the job to use as the basis for the job template.

', 'Job$jobArn' => '

An ARN identifying the job with format "arn:aws:iot:region:account:job/jobId".

', 'JobSummary$jobArn' => '

The job ARN.

', ], ], 'JobDescription' => [ 'base' => NULL, 'refs' => [ 'AssociateTargetsWithJobResponse$description' => '

A short text description of the job.

', 'CancelJobResponse$description' => '

A short text description of the job.

', 'CreateJobRequest$description' => '

A short text description of the job.

', 'CreateJobResponse$description' => '

The job description.

', 'CreateJobTemplateRequest$description' => '

A description of the job document.

', 'DescribeJobTemplateResponse$description' => '

A description of the job template.

', 'DescribeManagedJobTemplateResponse$description' => '

The unique description of a managed template.

', 'DocumentParameter$description' => '

Description of the map field containing the patterns that need to be replaced in a managed template job document schema.

', 'Job$description' => '

A short text description of the job.

', 'JobTemplateSummary$description' => '

A description of the job template.

', 'ManagedJobTemplateSummary$description' => '

The description for a managed template.

', 'UpdateJobRequest$description' => '

A short text description of the job.

', ], ], 'JobDocument' => [ 'base' => NULL, 'refs' => [ 'CreateJobRequest$document' => '

The job document. Required if you don\'t specify a value for documentSource.

', 'CreateJobTemplateRequest$document' => '

The job document. Required if you don\'t specify a value for documentSource.

', 'DescribeJobTemplateResponse$document' => '

The job document.

', 'DescribeManagedJobTemplateResponse$document' => '

The document schema for a managed job template.

', 'GetJobDocumentResponse$document' => '

The job document content.

', ], ], 'JobDocumentSource' => [ 'base' => NULL, 'refs' => [ 'CreateJobRequest$documentSource' => '

An S3 link, or S3 object URL, to the job document. The link is an Amazon S3 object URL and is required if you don\'t specify a value for document.

For example, --document-source https://s3.region-code.amazonaws.com/example-firmware/device-firmware.1.0

For more information, see Methods for accessing a bucket.

', 'CreateJobTemplateRequest$documentSource' => '

An S3 link, or S3 object URL, to the job document. The link is an Amazon S3 object URL and is required if you don\'t specify a value for document.

For example, --document-source https://s3.region-code.amazonaws.com/example-firmware/device-firmware.1.0

For more information, see Methods for accessing a bucket.

', 'DescribeJobResponse$documentSource' => '

An S3 link to the job document.

', 'DescribeJobTemplateResponse$documentSource' => '

An S3 link to the job document.

', ], ], 'JobEndBehavior' => [ 'base' => NULL, 'refs' => [ 'SchedulingConfig$endBehavior' => '

Specifies the end behavior for all job executions after a job reaches the selected endTime. If endTime is not selected when creating the job, then endBehavior does not apply.

', ], ], 'JobExecution' => [ 'base' => '

The job execution object represents the execution of a job on a particular device.

', 'refs' => [ 'DescribeJobExecutionResponse$execution' => '

Information about the job execution.

', ], ], 'JobExecutionFailureType' => [ 'base' => NULL, 'refs' => [ 'AbortCriteria$failureType' => '

The type of job execution failures that can initiate a job abort.

', ], ], 'JobExecutionStatus' => [ 'base' => NULL, 'refs' => [ 'JobExecution$status' => '

The status of the job execution (IN_PROGRESS, QUEUED, FAILED, SUCCEEDED, TIMED_OUT, CANCELED, or REJECTED).

', 'JobExecutionSummary$status' => '

The status of the job execution.

', 'ListJobExecutionsForJobRequest$status' => '

The status of the job.

', 'ListJobExecutionsForThingRequest$status' => '

An optional filter that lets you search for jobs that have the specified status.

', ], ], 'JobExecutionStatusDetails' => [ 'base' => '

Details of the job execution status.

', 'refs' => [ 'JobExecution$statusDetails' => '

A collection of name/value pairs that describe the status of the job execution.

', ], ], 'JobExecutionSummary' => [ 'base' => '

The job execution summary.

', 'refs' => [ 'JobExecutionSummaryForJob$jobExecutionSummary' => '

Contains a subset of information about a job execution.

', 'JobExecutionSummaryForThing$jobExecutionSummary' => '

Contains a subset of information about a job execution.

', ], ], 'JobExecutionSummaryForJob' => [ 'base' => '

Contains a summary of information about job executions for a specific job.

', 'refs' => [ 'JobExecutionSummaryForJobList$member' => NULL, ], ], 'JobExecutionSummaryForJobList' => [ 'base' => NULL, 'refs' => [ 'ListJobExecutionsForJobResponse$executionSummaries' => '

A list of job execution summaries.

', ], ], 'JobExecutionSummaryForThing' => [ 'base' => '

The job execution summary for a thing.

', 'refs' => [ 'JobExecutionSummaryForThingList$member' => NULL, ], ], 'JobExecutionSummaryForThingList' => [ 'base' => NULL, 'refs' => [ 'ListJobExecutionsForThingResponse$executionSummaries' => '

A list of job execution summaries.

', ], ], 'JobExecutionsRetryConfig' => [ 'base' => '

The configuration that determines how many retries are allowed for each failure type for a job.

', 'refs' => [ 'CreateJobRequest$jobExecutionsRetryConfig' => '

Allows you to create the criteria to retry a job.

', 'CreateJobTemplateRequest$jobExecutionsRetryConfig' => '

Allows you to create the criteria to retry a job.

', 'DescribeJobTemplateResponse$jobExecutionsRetryConfig' => '

The configuration that determines how many retries are allowed for each failure type for a job.

', 'Job$jobExecutionsRetryConfig' => '

The configuration for the criteria to retry the job.

', 'UpdateJobRequest$jobExecutionsRetryConfig' => '

Allows you to create the criteria to retry a job.

', ], ], 'JobExecutionsRolloutConfig' => [ 'base' => '

Allows you to create a staged rollout of a job.

', 'refs' => [ 'CreateJobRequest$jobExecutionsRolloutConfig' => '

Allows you to create a staged rollout of the job.

', 'CreateJobTemplateRequest$jobExecutionsRolloutConfig' => NULL, 'DescribeJobTemplateResponse$jobExecutionsRolloutConfig' => NULL, 'Job$jobExecutionsRolloutConfig' => '

Allows you to create a staged rollout of a job.

', 'UpdateJobRequest$jobExecutionsRolloutConfig' => '

Allows you to create a staged rollout of the job.

', ], ], 'JobId' => [ 'base' => NULL, 'refs' => [ 'AssociateTargetsWithJobRequest$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'AssociateTargetsWithJobResponse$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'CancelJobExecutionRequest$jobId' => '

The ID of the job to be canceled.

', 'CancelJobRequest$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'CancelJobResponse$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'CreateJobRequest$jobId' => '

A job identifier which must be unique for your Amazon Web Services account. We recommend using a UUID. Alpha-numeric characters, "-" and "_" are valid for use here.

', 'CreateJobResponse$jobId' => '

The unique identifier you assigned to this job.

', 'DeleteJobExecutionRequest$jobId' => '

The ID of the job whose execution on a particular device will be deleted.

', 'DeleteJobRequest$jobId' => '

The ID of the job to be deleted.

After a job deletion is completed, you may reuse this jobId when you create a new job. However, this is not recommended, and you must ensure that your devices are not using the jobId to refer to the deleted job.

', 'DescribeJobExecutionRequest$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'DescribeJobRequest$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'GetJobDocumentRequest$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'Job$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'JobExecution$jobId' => '

The unique identifier you assigned to the job when it was created.

', 'JobExecutionSummaryForThing$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'JobSummary$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'ListJobExecutionsForJobRequest$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'ListJobExecutionsForThingRequest$jobId' => '

The unique identifier you assigned to this job when it was created.

', 'UpdateJobRequest$jobId' => '

The ID of the job to be updated.

', ], ], 'JobProcessDetails' => [ 'base' => '

The job process details.

', 'refs' => [ 'Job$jobProcessDetails' => '

Details about the job process.

', ], ], 'JobStatus' => [ 'base' => NULL, 'refs' => [ 'Job$status' => '

The status of the job, one of IN_PROGRESS, CANCELED, DELETION_IN_PROGRESS or COMPLETED.

', 'JobSummary$status' => '

The job summary status.

', 'ListJobsRequest$status' => '

An optional filter that lets you search for jobs that have the specified status.

', ], ], 'JobSummary' => [ 'base' => '

The job summary.

', 'refs' => [ 'JobSummaryList$member' => NULL, ], ], 'JobSummaryList' => [ 'base' => NULL, 'refs' => [ 'ListJobsResponse$jobs' => '

A list of jobs.

', ], ], 'JobTargets' => [ 'base' => NULL, 'refs' => [ 'AssociateTargetsWithJobRequest$targets' => '

A list of thing group ARNs that define the targets of the job.

', 'CreateJobRequest$targets' => '

A list of things and thing groups to which the job should be sent.

', 'Job$targets' => '

A list of IoT things and thing groups to which the job should be sent.

', ], ], 'JobTemplateArn' => [ 'base' => NULL, 'refs' => [ 'CreateJobRequest$jobTemplateArn' => '

The ARN of the job template used to create the job.

', 'CreateJobTemplateResponse$jobTemplateArn' => '

The ARN of the job template.

', 'DescribeJobTemplateResponse$jobTemplateArn' => '

The ARN of the job template.

', 'DescribeManagedJobTemplateResponse$templateArn' => '

The unique Amazon Resource Name (ARN) of the managed template.

', 'Job$jobTemplateArn' => '

The ARN of the job template used to create the job.

', 'JobTemplateSummary$jobTemplateArn' => '

The ARN of the job template.

', 'ManagedJobTemplateSummary$templateArn' => '

The Amazon Resource Name (ARN) for a managed template.

', ], ], 'JobTemplateId' => [ 'base' => NULL, 'refs' => [ 'CreateJobTemplateRequest$jobTemplateId' => '

A unique identifier for the job template. We recommend using a UUID. Alpha-numeric characters, "-", and "_" are valid for use here.

', 'CreateJobTemplateResponse$jobTemplateId' => '

The unique identifier of the job template.

', 'DeleteJobTemplateRequest$jobTemplateId' => '

The unique identifier of the job template to delete.

', 'DescribeJobTemplateRequest$jobTemplateId' => '

The unique identifier of the job template.

', 'DescribeJobTemplateResponse$jobTemplateId' => '

The unique identifier of the job template.

', 'JobTemplateSummary$jobTemplateId' => '

The unique identifier of the job template.

', ], ], 'JobTemplateSummary' => [ 'base' => '

An object that contains information about the job template.

', 'refs' => [ 'JobTemplateSummaryList$member' => NULL, ], ], 'JobTemplateSummaryList' => [ 'base' => NULL, 'refs' => [ 'ListJobTemplatesResponse$jobTemplates' => '

A list of objects that contain information about the job templates.

', ], ], 'JsonDocument' => [ 'base' => NULL, 'refs' => [ 'ThingDocument$shadow' => '

The unnamed shadow and named shadow.

For more information about shadows, see IoT Device Shadow service.

', 'ThingDocument$deviceDefender' => '

Contains Device Defender data.

For more information about Device Defender, see Device Defender.

', ], ], 'KafkaAction' => [ 'base' => '

Send messages to an Amazon Managed Streaming for Apache Kafka (Amazon MSK) or self-managed Apache Kafka cluster.

', 'refs' => [ 'Action$kafka' => '

Send messages to an Amazon Managed Streaming for Apache Kafka (Amazon MSK) or self-managed Apache Kafka cluster.

', ], ], 'KafkaActionHeader' => [ 'base' => '

Specifies a Kafka header using key-value pairs when you create a Rule’s Kafka Action. You can use these headers to route data from IoT clients to downstream Kafka clusters without modifying your message payload.

For more information about Rule\'s Kafka action, see Apache Kafka.

', 'refs' => [ 'KafkaHeaders$member' => NULL, ], ], 'KafkaHeaderKey' => [ 'base' => NULL, 'refs' => [ 'KafkaActionHeader$key' => '

The key of the Kafka header.

', ], ], 'KafkaHeaderValue' => [ 'base' => NULL, 'refs' => [ 'KafkaActionHeader$value' => '

The value of the Kafka header.

', ], ], 'KafkaHeaders' => [ 'base' => NULL, 'refs' => [ 'KafkaAction$headers' => '

The list of Kafka headers that you specify.

', ], ], 'Key' => [ 'base' => NULL, 'refs' => [ 'S3Action$key' => '

The object key. For more information, see Actions, resources, and condition keys for Amazon S3.

', ], ], 'KeyName' => [ 'base' => NULL, 'refs' => [ 'PublicKeyMap$key' => NULL, ], ], 'KeyPair' => [ 'base' => '

Describes a key pair.

', 'refs' => [ 'CreateKeysAndCertificateResponse$keyPair' => '

The generated key pair.

', 'CreateProvisioningClaimResponse$keyPair' => '

The provisioning claim key pair.

', ], ], 'KeyValue' => [ 'base' => NULL, 'refs' => [ 'PublicKeyMap$value' => NULL, ], ], 'KinesisAction' => [ 'base' => '

Describes an action to write data to an Amazon Kinesis stream.

', 'refs' => [ 'Action$kinesis' => '

Write data to an Amazon Kinesis stream.

', ], ], 'LambdaAction' => [ 'base' => '

Describes an action to invoke a Lambda function.

', 'refs' => [ 'Action$lambda' => '

Invoke a Lambda function.

', ], ], 'LaserMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListJobExecutionsForJobRequest$maxResults' => '

The maximum number of results to be returned per request.

', 'ListJobExecutionsForThingRequest$maxResults' => '

The maximum number of results to be returned per request.

', 'ListJobTemplatesRequest$maxResults' => '

The maximum number of results to return in the list.

', 'ListJobsRequest$maxResults' => '

The maximum number of results to return per request.

', 'ListManagedJobTemplatesRequest$maxResults' => '

Maximum number of entries that can be returned.

', ], ], 'LastModifiedDate' => [ 'base' => NULL, 'refs' => [ 'DescribeEventConfigurationsResponse$lastModifiedDate' => '

The date the event configurations were last modified.

', 'DescribeFleetMetricResponse$lastModifiedDate' => '

The date when the fleet metric is last modified.

', 'DescribeThingRegistrationTaskResponse$lastModifiedDate' => '

The date when the task was last modified.

', 'GetPackageResponse$lastModifiedDate' => '

The date when the package was last updated.

', 'GetPackageVersionResponse$lastModifiedDate' => '

The date when the package version was last updated.

', 'PackageSummary$lastModifiedDate' => '

The date that the package was last updated.

', 'PackageVersionSummary$lastModifiedDate' => '

The date that the package version was last updated.

', ], ], 'LastUpdatedAtDate' => [ 'base' => NULL, 'refs' => [ 'TopicRuleDestination$lastUpdatedAt' => '

The date and time when the topic rule destination was last updated.

', 'TopicRuleDestinationSummary$lastUpdatedAt' => '

The date and time when the topic rule destination was last updated.

', ], ], 'LimitExceededException' => [ 'base' => '

A limit has been exceeded.

', 'refs' => [], ], 'ListActiveViolationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListActiveViolationsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAttachedPoliciesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAttachedPoliciesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditFindingsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditFindingsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditMitigationActionsExecutionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditMitigationActionsExecutionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditMitigationActionsTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditMitigationActionsTasksResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditSuppressionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditSuppressionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAuditTasksResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAuthorizersRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAuthorizersResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListBillingGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListBillingGroupsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListCACertificatesRequest' => [ 'base' => '

Input for the ListCACertificates operation.

', 'refs' => [], ], 'ListCACertificatesResponse' => [ 'base' => '

The output from the ListCACertificates operation.

', 'refs' => [], ], 'ListCertificateProvidersRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListCertificateProvidersResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListCertificatesByCARequest' => [ 'base' => '

The input to the ListCertificatesByCA operation.

', 'refs' => [], ], 'ListCertificatesByCAResponse' => [ 'base' => '

The output of the ListCertificatesByCA operation.

', 'refs' => [], ], 'ListCertificatesRequest' => [ 'base' => '

The input for the ListCertificates operation.

', 'refs' => [], ], 'ListCertificatesResponse' => [ 'base' => '

The output of the ListCertificates operation.

', 'refs' => [], ], 'ListCustomMetricsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListCustomMetricsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListDetectMitigationActionsExecutionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListDetectMitigationActionsExecutionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListDetectMitigationActionsTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListDetectMitigationActionsTasksResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListDimensionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListDimensionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListDomainConfigurationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListDomainConfigurationsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListFleetMetricsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListFleetMetricsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListIndicesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListIndicesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListJobExecutionsForJobRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListJobExecutionsForJobResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListJobExecutionsForThingRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListJobExecutionsForThingResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListJobTemplatesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListJobTemplatesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListJobsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListJobsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListManagedJobTemplatesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListManagedJobTemplatesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListMetricValuesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListMetricValuesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListMitigationActionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListMitigationActionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListOTAUpdatesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListOTAUpdatesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListOutgoingCertificatesRequest' => [ 'base' => '

The input to the ListOutgoingCertificates operation.

', 'refs' => [], ], 'ListOutgoingCertificatesResponse' => [ 'base' => '

The output from the ListOutgoingCertificates operation.

', 'refs' => [], ], 'ListPackageVersionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListPackageVersionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListPackagesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListPackagesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListPoliciesRequest' => [ 'base' => '

The input for the ListPolicies operation.

', 'refs' => [], ], 'ListPoliciesResponse' => [ 'base' => '

The output from the ListPolicies operation.

', 'refs' => [], ], 'ListPolicyPrincipalsRequest' => [ 'base' => '

The input for the ListPolicyPrincipals operation.

', 'refs' => [], ], 'ListPolicyPrincipalsResponse' => [ 'base' => '

The output from the ListPolicyPrincipals operation.

', 'refs' => [], ], 'ListPolicyVersionsRequest' => [ 'base' => '

The input for the ListPolicyVersions operation.

', 'refs' => [], ], 'ListPolicyVersionsResponse' => [ 'base' => '

The output from the ListPolicyVersions operation.

', 'refs' => [], ], 'ListPrincipalPoliciesRequest' => [ 'base' => '

The input for the ListPrincipalPolicies operation.

', 'refs' => [], ], 'ListPrincipalPoliciesResponse' => [ 'base' => '

The output from the ListPrincipalPolicies operation.

', 'refs' => [], ], 'ListPrincipalThingsRequest' => [ 'base' => '

The input for the ListPrincipalThings operation.

', 'refs' => [], ], 'ListPrincipalThingsResponse' => [ 'base' => '

The output from the ListPrincipalThings operation.

', 'refs' => [], ], 'ListProvisioningTemplateVersionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListProvisioningTemplateVersionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListProvisioningTemplatesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListProvisioningTemplatesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListRelatedResourcesForAuditFindingRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListRelatedResourcesForAuditFindingResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListRoleAliasesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListRoleAliasesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListScheduledAuditsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListScheduledAuditsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListSecurityProfilesForTargetRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListSecurityProfilesForTargetResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListSecurityProfilesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListSecurityProfilesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListStreamsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListStreamsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListSuppressedAlerts' => [ 'base' => NULL, 'refs' => [ 'ListActiveViolationsRequest$listSuppressedAlerts' => '

A list of all suppressed alerts.

', 'ListViolationEventsRequest$listSuppressedAlerts' => '

A list of all suppressed alerts.

', ], ], 'ListSuppressedFindings' => [ 'base' => NULL, 'refs' => [ 'ListAuditFindingsRequest$listSuppressedFindings' => '

Boolean flag indicating whether only the suppressed findings or the unsuppressed findings should be listed. If this parameter isn\'t provided, the response will list both suppressed and unsuppressed findings.

', ], ], 'ListTagsForResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListTagsForResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListTargetsForPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListTargetsForPolicyResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListTargetsForSecurityProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListTargetsForSecurityProfileResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListThingGroupsForThingRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListThingGroupsForThingResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListThingGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListThingGroupsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListThingPrincipalsRequest' => [ 'base' => '

The input for the ListThingPrincipal operation.

', 'refs' => [], ], 'ListThingPrincipalsResponse' => [ 'base' => '

The output from the ListThingPrincipals operation.

', 'refs' => [], ], 'ListThingRegistrationTaskReportsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListThingRegistrationTaskReportsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListThingRegistrationTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListThingRegistrationTasksResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListThingTypesRequest' => [ 'base' => '

The input for the ListThingTypes operation.

', 'refs' => [], ], 'ListThingTypesResponse' => [ 'base' => '

The output for the ListThingTypes operation.

', 'refs' => [], ], 'ListThingsInBillingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListThingsInBillingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListThingsInThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListThingsInThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListThingsRequest' => [ 'base' => '

The input for the ListThings operation.

', 'refs' => [], ], 'ListThingsResponse' => [ 'base' => '

The output from the ListThings operation.

', 'refs' => [], ], 'ListTopicRuleDestinationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListTopicRuleDestinationsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListTopicRulesRequest' => [ 'base' => '

The input for the ListTopicRules operation.

', 'refs' => [], ], 'ListTopicRulesResponse' => [ 'base' => '

The output from the ListTopicRules operation.

', 'refs' => [], ], 'ListV2LoggingLevelsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListV2LoggingLevelsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListViolationEventsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListViolationEventsResponse' => [ 'base' => NULL, 'refs' => [], ], 'LocationAction' => [ 'base' => '

The Amazon Location rule action sends device location updates from an MQTT message to an Amazon Location tracker resource.

', 'refs' => [ 'Action$location' => '

The Amazon Location Service rule action sends device location updates from an MQTT message to an Amazon Location tracker resource.

', ], ], 'LocationTimestamp' => [ 'base' => '

Describes how to interpret an application-defined timestamp value from an MQTT message payload and the precision of that value.

', 'refs' => [ 'LocationAction$timestamp' => '

The time that the location data was sampled. The default value is the time the MQTT message was processed.

', ], ], 'LogGroupName' => [ 'base' => NULL, 'refs' => [ 'CloudwatchLogsAction$logGroupName' => '

The CloudWatch log group to which the action sends data.

', ], ], 'LogLevel' => [ 'base' => NULL, 'refs' => [ 'EnableIoTLoggingParams$logLevel' => '

Specifies the type of information to be logged.

', 'GetLoggingOptionsResponse$logLevel' => '

The logging level.

', 'GetV2LoggingOptionsResponse$defaultLogLevel' => '

The default log level.

', 'LogTargetConfiguration$logLevel' => '

The logging level.

', 'LoggingOptionsPayload$logLevel' => '

The log level.

', 'SetV2LoggingLevelRequest$logLevel' => '

The log level.

', 'SetV2LoggingOptionsRequest$defaultLogLevel' => '

The default logging level.

', ], ], 'LogTarget' => [ 'base' => '

A log target.

', 'refs' => [ 'LogTargetConfiguration$logTarget' => '

A log target

', 'SetV2LoggingLevelRequest$logTarget' => '

The log target.

', ], ], 'LogTargetConfiguration' => [ 'base' => '

The target configuration.

', 'refs' => [ 'LogTargetConfigurations$member' => NULL, ], ], 'LogTargetConfigurations' => [ 'base' => NULL, 'refs' => [ 'ListV2LoggingLevelsResponse$logTargetConfigurations' => '

The logging configuration for a target.

', ], ], 'LogTargetName' => [ 'base' => NULL, 'refs' => [ 'DeleteV2LoggingLevelRequest$targetName' => '

The name of the resource for which you are configuring logging.

', 'LogTarget$targetName' => '

The target name.

', ], ], 'LogTargetType' => [ 'base' => NULL, 'refs' => [ 'DeleteV2LoggingLevelRequest$targetType' => '

The type of resource for which you are configuring logging. Must be THING_Group.

', 'ListV2LoggingLevelsRequest$targetType' => '

The type of resource for which you are configuring logging. Must be THING_Group.

', 'LogTarget$targetType' => '

The target type.

', ], ], 'LoggingOptionsPayload' => [ 'base' => '

Describes the logging options payload.

', 'refs' => [ 'SetLoggingOptionsRequest$loggingOptionsPayload' => '

The logging options payload.

', ], ], 'MachineLearningDetectionConfig' => [ 'base' => '

The configuration of an ML Detect Security Profile.

', 'refs' => [ 'BehaviorCriteria$mlDetectionConfig' => '

The configuration of an ML Detect

', ], ], 'MaintenanceWindow' => [ 'base' => '

An optional configuration within the SchedulingConfig to setup a recurring maintenance window with a predetermined start time and duration for the rollout of a job document to all devices in a target group for a job.

', 'refs' => [ 'MaintenanceWindows$member' => NULL, ], ], 'MaintenanceWindows' => [ 'base' => NULL, 'refs' => [ 'CreateJobTemplateRequest$maintenanceWindows' => '

Allows you to configure an optional maintenance window for the rollout of a job document to all devices in the target group for a job.

', 'DescribeJobTemplateResponse$maintenanceWindows' => '

Allows you to configure an optional maintenance window for the rollout of a job document to all devices in the target group for a job.

', 'SchedulingConfig$maintenanceWindows' => '

An optional configuration within the SchedulingConfig to setup a recurring maintenance window with a predetermined start time and duration for the rollout of a job document to all devices in a target group for a job.

', ], ], 'MalformedPolicyException' => [ 'base' => '

The policy documentation is not valid.

', 'refs' => [], ], 'ManagedJobTemplateName' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedJobTemplateRequest$templateName' => '

The unique name of a managed job template, which is required.

', 'DescribeManagedJobTemplateResponse$templateName' => '

The unique name of a managed template, such as AWS-Reboot.

', 'ListManagedJobTemplatesRequest$templateName' => '

An optional parameter for template name. If specified, only the versions of the managed job templates that have the specified template name will be returned.

', 'ManagedJobTemplateSummary$templateName' => '

The unique Name for a managed template.

', ], ], 'ManagedJobTemplateSummary' => [ 'base' => '

An object that contains information about the managed template.

', 'refs' => [ 'ManagedJobTemplatesSummaryList$member' => NULL, ], ], 'ManagedJobTemplatesSummaryList' => [ 'base' => NULL, 'refs' => [ 'ListManagedJobTemplatesResponse$managedJobTemplates' => '

A list of managed job templates that are returned.

', ], ], 'ManagedTemplateVersion' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedJobTemplateRequest$templateVersion' => '

An optional parameter to specify version of a managed template. If not specified, the pre-defined default version is returned.

', 'DescribeManagedJobTemplateResponse$templateVersion' => '

The version for a managed template.

', 'ManagedJobTemplateSummary$templateVersion' => '

The version for a managed template.

', ], ], 'Marker' => [ 'base' => NULL, 'refs' => [ 'ListAttachedPoliciesRequest$marker' => '

The token to retrieve the next set of results.

', 'ListAttachedPoliciesResponse$nextMarker' => '

The token to retrieve the next set of results, or ``null`` if there are no more results.

', 'ListAuthorizersRequest$marker' => '

A marker used to get the next set of results.

', 'ListAuthorizersResponse$nextMarker' => '

A marker used to get the next set of results.

', 'ListCACertificatesRequest$marker' => '

The marker for the next set of results.

', 'ListCACertificatesResponse$nextMarker' => '

The current position within the list of CA certificates.

', 'ListCertificateProvidersRequest$nextToken' => '

The token for the next set of results, or null if there are no more results.

', 'ListCertificateProvidersResponse$nextToken' => '

The token for the next set of results, or null if there are no more results.

', 'ListCertificatesByCARequest$marker' => '

The marker for the next set of results.

', 'ListCertificatesByCAResponse$nextMarker' => '

The marker for the next set of results, or null if there are no additional results.

', 'ListCertificatesRequest$marker' => '

The marker for the next set of results.

', 'ListCertificatesResponse$nextMarker' => '

The marker for the next set of results, or null if there are no additional results.

', 'ListDomainConfigurationsRequest$marker' => '

The marker for the next set of results.

', 'ListDomainConfigurationsResponse$nextMarker' => '

The marker for the next set of results.

', 'ListOutgoingCertificatesRequest$marker' => '

The marker for the next set of results.

', 'ListOutgoingCertificatesResponse$nextMarker' => '

The marker for the next set of results.

', 'ListPoliciesRequest$marker' => '

The marker for the next set of results.

', 'ListPoliciesResponse$nextMarker' => '

The marker for the next set of results, or null if there are no additional results.

', 'ListPolicyPrincipalsRequest$marker' => '

The marker for the next set of results.

', 'ListPolicyPrincipalsResponse$nextMarker' => '

The marker for the next set of results, or null if there are no additional results.

', 'ListPrincipalPoliciesRequest$marker' => '

The marker for the next set of results.

', 'ListPrincipalPoliciesResponse$nextMarker' => '

The marker for the next set of results, or null if there are no additional results.

', 'ListRoleAliasesRequest$marker' => '

A marker used to get the next set of results.

', 'ListRoleAliasesResponse$nextMarker' => '

A marker used to get the next set of results.

', 'ListTargetsForPolicyRequest$marker' => '

A marker used to get the next set of results.

', 'ListTargetsForPolicyResponse$nextMarker' => '

A marker used to get the next set of results.

', ], ], 'MaxBuckets' => [ 'base' => NULL, 'refs' => [ 'TermsAggregation$maxBuckets' => '

The number of buckets to return in the response. Default to 10.

', ], ], 'MaxJobExecutionsPerMin' => [ 'base' => NULL, 'refs' => [ 'JobExecutionsRolloutConfig$maximumPerMinute' => '

The maximum number of things that will be notified of a pending job, per minute. This parameter allows you to create a staged rollout.

', ], ], 'MaxResults' => [ 'base' => NULL, 'refs' => [ 'ListActiveViolationsRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListAuditFindingsRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListAuditMitigationActionsExecutionsRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListAuditMitigationActionsTasksRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListAuditSuppressionsRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListAuditTasksRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListCustomMetricsRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListDetectMitigationActionsExecutionsRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListDetectMitigationActionsTasksRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListDimensionsRequest$maxResults' => '

The maximum number of results to retrieve at one time.

', 'ListFleetMetricsRequest$maxResults' => '

The maximum number of results to return in this operation.

', 'ListMetricValuesRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListMitigationActionsRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListOTAUpdatesRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListProvisioningTemplateVersionsRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListProvisioningTemplatesRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListRelatedResourcesForAuditFindingRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListScheduledAuditsRequest$maxResults' => '

The maximum number of results to return at one time. The default is 25.

', 'ListSecurityProfilesForTargetRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListSecurityProfilesRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListStreamsRequest$maxResults' => '

The maximum number of results to return at a time.

', 'ListTargetsForSecurityProfileRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListViolationEventsRequest$maxResults' => '

The maximum number of results to return at one time.

', ], ], 'Maximum' => [ 'base' => NULL, 'refs' => [ 'Statistics$maximum' => '

The maximum aggregated field value.

', ], ], 'MaximumPerMinute' => [ 'base' => NULL, 'refs' => [ 'AwsJobExecutionsRolloutConfig$maximumPerMinute' => '

The maximum number of OTA update job executions started per minute.

', ], ], 'Message' => [ 'base' => NULL, 'refs' => [ 'OutgoingCertificate$transferMessage' => '

The transfer message.

', 'RejectCertificateTransferRequest$rejectReason' => '

The reason the certificate transfer was rejected.

', 'TransferCertificateRequest$transferMessage' => '

The transfer message.

', 'TransferData$transferMessage' => '

The transfer message.

', 'TransferData$rejectReason' => '

The reason why the transfer was rejected.

', ], ], 'MessageExpiry' => [ 'base' => NULL, 'refs' => [ 'MqttHeaders$messageExpiry' => '

A user-defined integer value that will persist a message at the message broker for a specified amount of time to ensure that the message will expire if it\'s no longer relevant to the subscriber. The value of messageExpiry represents the number of seconds before it expires. For more information about the limits of messageExpiry, see Amazon Web Services IoT Core message broker and protocol limits and quotas from the Amazon Web Services Reference Guide.

Supports substitution templates.

', ], ], 'MessageFormat' => [ 'base' => NULL, 'refs' => [ 'SnsAction$messageFormat' => '

(Optional) The message format of the message to publish. Accepted values are "JSON" and "RAW". The default value of the attribute is "RAW". SNS uses this setting to determine if the payload should be parsed and relevant platform-specific bits of the payload should be extracted. To read more about SNS message formats, see https://docs.aws.amazon.com/sns/latest/dg/json-formats.html refer to their official documentation.

', ], ], 'MessageId' => [ 'base' => NULL, 'refs' => [ 'IotEventsAction$messageId' => '

The ID of the message. The default messageId is a new UUID value.

When batchMode is true, you can\'t specify a messageId--a new UUID value will be assigned.

Assign a value to this property to ensure that only one input (message) with a given messageId will be processed by an IoT Events detector.

', ], ], 'MetricDatum' => [ 'base' => '

A metric.

', 'refs' => [ 'MetricDatumList$member' => NULL, ], ], 'MetricDatumList' => [ 'base' => NULL, 'refs' => [ 'ListMetricValuesResponse$metricDatumList' => '

The data the thing reports for the metric during the specified time period.

', ], ], 'MetricDimension' => [ 'base' => '

The dimension of a metric.

', 'refs' => [ 'Behavior$metricDimension' => '

The dimension for a metric in your behavior. For example, using a TOPIC_FILTER dimension, you can narrow down the scope of the metric to only MQTT topics where the name matches the pattern specified in the dimension. This can\'t be used with custom metrics.

', 'MetricToRetain$metricDimension' => '

The dimension of a metric. This can\'t be used with custom metrics.

', ], ], 'MetricName' => [ 'base' => NULL, 'refs' => [ 'CreateCustomMetricRequest$metricName' => '

The name of the custom metric. This will be used in the metric report submitted from the device/thing. The name can\'t begin with aws:. You can\'t change the name after you define it.

', 'CreateCustomMetricResponse$metricName' => '

The name of the custom metric to be used in the metric report.

', 'DeleteCustomMetricRequest$metricName' => '

The name of the custom metric.

', 'DescribeCustomMetricRequest$metricName' => '

The name of the custom metric.

', 'DescribeCustomMetricResponse$metricName' => '

The name of the custom metric.

', 'ListSecurityProfilesRequest$metricName' => '

The name of the custom metric. Cannot be used with dimensionName.

', 'MetricNames$member' => NULL, 'UpdateCustomMetricRequest$metricName' => '

The name of the custom metric. Cannot be updated.

', 'UpdateCustomMetricResponse$metricName' => '

The name of the custom metric.

', ], ], 'MetricNames' => [ 'base' => NULL, 'refs' => [ 'ListCustomMetricsResponse$metricNames' => '

The name of the custom metric.

', ], ], 'MetricToRetain' => [ 'base' => '

The metric you want to retain. Dimensions are optional.

', 'refs' => [ 'AdditionalMetricsToRetainV2List$member' => NULL, ], ], 'MetricValue' => [ 'base' => '

The value to be compared with the metric.

', 'refs' => [ 'ActiveViolation$lastViolationValue' => '

The value of the metric (the measurement) that caused the most recent violation.

', 'BehaviorCriteria$value' => '

The value to be compared with the metric.

', 'MetricDatum$value' => '

The value reported for the metric.

', 'ViolationEvent$metricValue' => '

The value of the metric (the measurement).

', ], ], 'MetricsExportConfig' => [ 'base' => '

Set configurations for metrics export.

', 'refs' => [ 'CreateSecurityProfileRequest$metricsExportConfig' => '

Specifies the MQTT topic and role ARN required for metric export.

', 'DescribeSecurityProfileResponse$metricsExportConfig' => '

Specifies the MQTT topic and role ARN required for metric export.

', 'UpdateSecurityProfileRequest$metricsExportConfig' => '

Specifies the MQTT topic and role ARN required for metric export.

', 'UpdateSecurityProfileResponse$metricsExportConfig' => '

Specifies the MQTT topic and role ARN required for metric export.

', ], ], 'Minimum' => [ 'base' => NULL, 'refs' => [ 'Statistics$minimum' => '

The minimum aggregated field value.

', ], ], 'MinimumNumberOfExecutedThings' => [ 'base' => NULL, 'refs' => [ 'AbortCriteria$minNumberOfExecutedThings' => '

The minimum number of things which must receive job execution notifications before the job can be aborted.

', ], ], 'MissingContextValue' => [ 'base' => NULL, 'refs' => [ 'MissingContextValues$member' => NULL, ], ], 'MissingContextValues' => [ 'base' => NULL, 'refs' => [ 'AuthResult$missingContextValues' => '

Contains any missing context values found while evaluating policy.

', ], ], 'MitigationAction' => [ 'base' => '

Describes which changes should be applied as part of a mitigation action.

', 'refs' => [ 'MitigationActionList$member' => NULL, ], ], 'MitigationActionArn' => [ 'base' => NULL, 'refs' => [ 'CreateMitigationActionResponse$actionArn' => '

The ARN for the new mitigation action.

', 'DescribeMitigationActionResponse$actionArn' => '

The ARN that identifies this migration action.

', 'MitigationActionIdentifier$actionArn' => '

The IAM role ARN used to apply this mitigation action.

', 'UpdateMitigationActionResponse$actionArn' => '

The ARN for the new mitigation action.

', ], ], 'MitigationActionId' => [ 'base' => NULL, 'refs' => [ 'AuditMitigationActionExecutionMetadata$actionId' => '

The unique identifier for the mitigation action being applied by the task.

', 'CreateMitigationActionResponse$actionId' => '

A unique identifier for the new mitigation action.

', 'DescribeMitigationActionResponse$actionId' => '

A unique identifier for this action.

', 'MitigationAction$id' => '

A unique identifier for the mitigation action.

', 'UpdateMitigationActionResponse$actionId' => '

A unique identifier for the mitigation action.

', ], ], 'MitigationActionIdentifier' => [ 'base' => '

Information that identifies a mitigation action. This information is returned by ListMitigationActions.

', 'refs' => [ 'MitigationActionIdentifierList$member' => NULL, ], ], 'MitigationActionIdentifierList' => [ 'base' => NULL, 'refs' => [ 'ListMitigationActionsResponse$actionIdentifiers' => '

A set of actions that matched the specified filter criteria.

', ], ], 'MitigationActionList' => [ 'base' => NULL, 'refs' => [ 'DescribeAuditMitigationActionsTaskResponse$actionsDefinition' => '

Specifies the mitigation actions and their parameters that are applied as part of this task.

', 'DetectMitigationActionsTaskSummary$actionsDefinition' => '

The definition of the actions.

', ], ], 'MitigationActionName' => [ 'base' => NULL, 'refs' => [ 'AuditMitigationActionExecutionMetadata$actionName' => '

The friendly name of the mitigation action being applied by the task.

', 'CreateMitigationActionRequest$actionName' => '

A friendly name for the action. Choose a friendly name that accurately describes the action (for example, EnableLoggingAction).

', 'DeleteMitigationActionRequest$actionName' => '

The name of the mitigation action that you want to delete.

', 'DescribeMitigationActionRequest$actionName' => '

The friendly name that uniquely identifies the mitigation action.

', 'DescribeMitigationActionResponse$actionName' => '

The friendly name that uniquely identifies the mitigation action.

', 'DetectMitigationActionExecution$actionName' => '

The friendly name that uniquely identifies the mitigation action.

', 'DetectMitigationActionsToExecuteList$member' => NULL, 'MitigationAction$name' => '

A user-friendly name for the mitigation action.

', 'MitigationActionIdentifier$actionName' => '

The friendly name of the mitigation action.

', 'MitigationActionNameList$member' => NULL, 'UpdateMitigationActionRequest$actionName' => '

The friendly name for the mitigation action. You cannot change the name by using UpdateMitigationAction. Instead, you must delete and recreate the mitigation action with the new name.

', ], ], 'MitigationActionNameList' => [ 'base' => NULL, 'refs' => [ 'AuditCheckToActionsMapping$value' => NULL, ], ], 'MitigationActionParams' => [ 'base' => '

The set of parameters for this mitigation action. You can specify only one type of parameter (in other words, you can apply only one action for each defined mitigation action).

', 'refs' => [ 'CreateMitigationActionRequest$actionParams' => '

Defines the type of action and the parameters for that action.

', 'DescribeMitigationActionResponse$actionParams' => '

Parameters that control how the mitigation action is applied, specific to the type of mitigation action.

', 'MitigationAction$actionParams' => '

The set of parameters for this mitigation action. The parameters vary, depending on the kind of action you apply.

', 'UpdateMitigationActionRequest$actionParams' => '

Defines the type of action and the parameters for that action.

', ], ], 'MitigationActionType' => [ 'base' => NULL, 'refs' => [ 'DescribeMitigationActionResponse$actionType' => '

The type of mitigation action.

', 'ListMitigationActionsRequest$actionType' => '

Specify a value to limit the result to mitigation actions with a specific action type.

', ], ], 'MitigationActionsTaskId' => [ 'base' => NULL, 'refs' => [ 'AuditMitigationActionExecutionMetadata$taskId' => '

The unique identifier for the task that applies the mitigation action.

', 'AuditMitigationActionsTaskMetadata$taskId' => '

The unique identifier for the task.

', 'CancelAuditMitigationActionsTaskRequest$taskId' => '

The unique identifier for the task that you want to cancel.

', 'CancelDetectMitigationActionsTaskRequest$taskId' => '

The unique identifier of the task.

', 'DescribeAuditMitigationActionsTaskRequest$taskId' => '

The unique identifier for the audit mitigation task.

', 'DescribeDetectMitigationActionsTaskRequest$taskId' => '

The unique identifier of the task.

', 'DetectMitigationActionExecution$taskId' => '

The unique identifier of the task.

', 'DetectMitigationActionsTaskSummary$taskId' => '

The unique identifier of the task.

', 'ListAuditMitigationActionsExecutionsRequest$taskId' => '

Specify this filter to limit results to actions for a specific audit mitigation actions task.

', 'ListDetectMitigationActionsExecutionsRequest$taskId' => '

The unique identifier of the task.

', 'StartAuditMitigationActionsTaskRequest$taskId' => '

A unique identifier for the task. You can use this identifier to check the status of the task or to cancel it.

', 'StartAuditMitigationActionsTaskResponse$taskId' => '

The unique identifier for the audit mitigation task. This matches the taskId that you specified in the request.

', 'StartDetectMitigationActionsTaskRequest$taskId' => '

The unique identifier of the task.

', 'StartDetectMitigationActionsTaskResponse$taskId' => '

The unique identifier of the task.

', ], ], 'ModelStatus' => [ 'base' => NULL, 'refs' => [ 'BehaviorModelTrainingSummary$modelStatus' => '

The status of the behavior model.

', ], ], 'MqttClientId' => [ 'base' => NULL, 'refs' => [ 'MqttContext$clientId' => '

The value of the clientId key in an MQTT authorization request.

', ], ], 'MqttContext' => [ 'base' => '

Specifies the MQTT context to use for the test authorizer request

', 'refs' => [ 'TestInvokeAuthorizerRequest$mqttContext' => '

Specifies a test MQTT authorization request.

', ], ], 'MqttHeaders' => [ 'base' => '

Specifies MQTT Version 5.0 headers information. For more information, see MQTT from Amazon Web Services IoT Core Developer Guide.

', 'refs' => [ 'RepublishAction$headers' => '

MQTT Version 5.0 headers information. For more information, see MQTT from the Amazon Web Services IoT Core Developer Guide.

', ], ], 'MqttPassword' => [ 'base' => NULL, 'refs' => [ 'MqttContext$password' => '

The value of the password key in an MQTT authorization request.

', ], ], 'MqttTopic' => [ 'base' => NULL, 'refs' => [ 'MetricsExportConfig$mqttTopic' => '

The MQTT topic that Device Defender Detect should publish messages to for metrics export.

', ], ], 'MqttUsername' => [ 'base' => NULL, 'refs' => [ 'MqttContext$username' => '

The value of the username key in an MQTT authorization request.

', ], ], 'NamedShadowIndexingMode' => [ 'base' => NULL, 'refs' => [ 'ThingIndexingConfiguration$namedShadowIndexingMode' => '

Named shadow indexing mode. Valid values are:

  • ON – Your thing index contains named shadow. To enable thing named shadow indexing, namedShadowIndexingMode must not be set to OFF.

  • OFF - Named shadow indexing is disabled.

For more information about Shadows, see IoT Device Shadow service.

', ], ], 'NamedShadowNamesFilter' => [ 'base' => NULL, 'refs' => [ 'IndexingFilter$namedShadowNames' => '

The shadow names that you select to index. The default maximum number of shadow names for indexing is 10. To increase the limit, see Amazon Web Services IoT Device Management Quotas in the Amazon Web Services General Reference.

', ], ], 'NamespaceId' => [ 'base' => NULL, 'refs' => [ 'AssociateTargetsWithJobRequest$namespaceId' => '

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.

', 'CreateJobRequest$namespaceId' => '

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.

', 'DeleteJobExecutionRequest$namespaceId' => '

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.

', 'DeleteJobRequest$namespaceId' => '

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.

', 'Job$namespaceId' => '

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.

', 'ListJobExecutionsForThingRequest$namespaceId' => '

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.

', 'ListJobsRequest$namespaceId' => '

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.

', 'UpdateJobRequest$namespaceId' => '

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.

', ], ], 'NextToken' => [ 'base' => NULL, 'refs' => [ 'GetBehaviorModelTrainingSummariesRequest$nextToken' => '

The token for the next set of results.

', 'GetBehaviorModelTrainingSummariesResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListActiveViolationsRequest$nextToken' => '

The token for the next set of results.

', 'ListActiveViolationsResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListAuditFindingsRequest$nextToken' => '

The token for the next set of results.

', 'ListAuditFindingsResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListAuditMitigationActionsExecutionsRequest$nextToken' => '

The token for the next set of results.

', 'ListAuditMitigationActionsExecutionsResponse$nextToken' => '

The token for the next set of results.

', 'ListAuditMitigationActionsTasksRequest$nextToken' => '

The token for the next set of results.

', 'ListAuditMitigationActionsTasksResponse$nextToken' => '

The token for the next set of results.

', 'ListAuditSuppressionsRequest$nextToken' => '

The token for the next set of results.

', 'ListAuditSuppressionsResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListAuditTasksRequest$nextToken' => '

The token for the next set of results.

', 'ListAuditTasksResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListBillingGroupsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListBillingGroupsResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListCustomMetricsRequest$nextToken' => '

The token for the next set of results.

', 'ListCustomMetricsResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListDetectMitigationActionsExecutionsRequest$nextToken' => '

The token for the next set of results.

', 'ListDetectMitigationActionsExecutionsResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListDetectMitigationActionsTasksRequest$nextToken' => '

The token for the next set of results.

', 'ListDetectMitigationActionsTasksResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListDimensionsRequest$nextToken' => '

The token for the next set of results.

', 'ListDimensionsResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListFleetMetricsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListFleetMetricsResponse$nextToken' => '

The token for the next set of results. Will not be returned if the operation has returned all results.

', 'ListIndicesRequest$nextToken' => '

The token used to get the next set of results, or null if there are no additional results.

', 'ListIndicesResponse$nextToken' => '

The token used to get the next set of results, or null if there are no additional results.

', 'ListJobExecutionsForJobRequest$nextToken' => '

The token to retrieve the next set of results.

', 'ListJobExecutionsForJobResponse$nextToken' => '

The token for the next set of results, or null if there are no additional results.

', 'ListJobExecutionsForThingRequest$nextToken' => '

The token to retrieve the next set of results.

', 'ListJobExecutionsForThingResponse$nextToken' => '

The token for the next set of results, or null if there are no additional results.

', 'ListJobTemplatesRequest$nextToken' => '

The token to use to return the next set of results in the list.

', 'ListJobTemplatesResponse$nextToken' => '

The token for the next set of results, or null if there are no additional results.

', 'ListJobsRequest$nextToken' => '

The token to retrieve the next set of results.

', 'ListJobsResponse$nextToken' => '

The token for the next set of results, or null if there are no additional results.

', 'ListManagedJobTemplatesRequest$nextToken' => '

The token to retrieve the next set of results.

', 'ListManagedJobTemplatesResponse$nextToken' => '

The token to retrieve the next set of results.

', 'ListMetricValuesRequest$nextToken' => '

The token for the next set of results.

', 'ListMetricValuesResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListMitigationActionsRequest$nextToken' => '

The token for the next set of results.

', 'ListMitigationActionsResponse$nextToken' => '

The token for the next set of results.

', 'ListOTAUpdatesRequest$nextToken' => '

A token used to retrieve the next set of results.

', 'ListOTAUpdatesResponse$nextToken' => '

A token to use to get the next set of results.

', 'ListPackageVersionsRequest$nextToken' => '

The token for the next set of results.

', 'ListPackageVersionsResponse$nextToken' => '

The token for the next set of results.

', 'ListPackagesRequest$nextToken' => '

The token for the next set of results.

', 'ListPackagesResponse$nextToken' => '

The token for the next set of results.

', 'ListPrincipalThingsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListPrincipalThingsResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListProvisioningTemplateVersionsRequest$nextToken' => '

A token to retrieve the next set of results.

', 'ListProvisioningTemplateVersionsResponse$nextToken' => '

A token to retrieve the next set of results.

', 'ListProvisioningTemplatesRequest$nextToken' => '

A token to retrieve the next set of results.

', 'ListProvisioningTemplatesResponse$nextToken' => '

A token to retrieve the next set of results.

', 'ListRelatedResourcesForAuditFindingRequest$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListRelatedResourcesForAuditFindingResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null for the first API call.

', 'ListScheduledAuditsRequest$nextToken' => '

The token for the next set of results.

', 'ListScheduledAuditsResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListSecurityProfilesForTargetRequest$nextToken' => '

The token for the next set of results.

', 'ListSecurityProfilesForTargetResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListSecurityProfilesRequest$nextToken' => '

The token for the next set of results.

', 'ListSecurityProfilesResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListStreamsRequest$nextToken' => '

A token used to get the next set of results.

', 'ListStreamsResponse$nextToken' => '

A token used to get the next set of results.

', 'ListTagsForResourceRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListTagsForResourceResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListTargetsForSecurityProfileRequest$nextToken' => '

The token for the next set of results.

', 'ListTargetsForSecurityProfileResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'ListThingGroupsForThingRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingGroupsForThingResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListThingGroupsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingGroupsResponse$nextToken' => '

The token to use to get the next set of results. Will not be returned if operation has returned all results.

', 'ListThingPrincipalsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingPrincipalsResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListThingRegistrationTaskReportsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingRegistrationTaskReportsResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListThingRegistrationTasksRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingRegistrationTasksResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListThingTypesRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingTypesResponse$nextToken' => '

The token for the next set of results. Will not be returned if operation has returned all results.

', 'ListThingsInBillingGroupRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingsInBillingGroupResponse$nextToken' => '

The token to use to get the next set of results. Will not be returned if operation has returned all results.

', 'ListThingsInThingGroupRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingsInThingGroupResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListThingsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListThingsResponse$nextToken' => '

The token to use to get the next set of results. Will not be returned if operation has returned all results.

', 'ListTopicRuleDestinationsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListTopicRuleDestinationsResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListTopicRulesRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListTopicRulesResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListV2LoggingLevelsRequest$nextToken' => '

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

', 'ListV2LoggingLevelsResponse$nextToken' => '

The token to use to get the next set of results, or null if there are no additional results.

', 'ListViolationEventsRequest$nextToken' => '

The token for the next set of results.

', 'ListViolationEventsResponse$nextToken' => '

A token that can be used to retrieve the next set of results, or null if there are no additional results.

', 'SearchIndexRequest$nextToken' => '

The token used to get the next set of results, or null if there are no additional results.

', 'SearchIndexResponse$nextToken' => '

The token used to get the next set of results, or null if there are no additional results.

', ], ], 'NonCompliantChecksCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatistics$nonCompliantChecks' => '

The number of checks that found noncompliant resources.

', ], ], 'NonCompliantResource' => [ 'base' => '

Information about the resource that was noncompliant with the audit check.

', 'refs' => [ 'AuditFinding$nonCompliantResource' => '

The resource that was found to be noncompliant with the audit check.

', ], ], 'NonCompliantResourcesCount' => [ 'base' => NULL, 'refs' => [ 'AuditCheckDetails$nonCompliantResourcesCount' => '

The number of resources that were found noncompliant during the check.

', ], ], 'NotConfiguredException' => [ 'base' => '

The resource is not configured.

', 'refs' => [], ], 'NullableBoolean' => [ 'base' => NULL, 'refs' => [ 'AddThingsToThingGroupParams$overrideDynamicGroups' => '

Specifies if this mitigation action can move the things that triggered the mitigation action even if they are part of one or more dynamic thing groups.

', 'StartDetectMitigationActionsTaskRequest$includeOnlyActiveViolations' => '

Specifies to list only active violations.

', 'StartDetectMitigationActionsTaskRequest$includeSuppressedAlerts' => '

Specifies to include suppressed alerts.

', ], ], 'Number' => [ 'base' => NULL, 'refs' => [ 'MetricValue$number' => '

The numeral value of a metric.

', 'NumberList$member' => NULL, ], ], 'NumberList' => [ 'base' => NULL, 'refs' => [ 'MetricValue$numbers' => '

The numeral values of a metric.

', ], ], 'NumberOfRetries' => [ 'base' => NULL, 'refs' => [ 'RetryCriteria$numberOfRetries' => '

The number of retries allowed for a failure type for the job.

', ], ], 'NumberOfThings' => [ 'base' => NULL, 'refs' => [ 'RateIncreaseCriteria$numberOfNotifiedThings' => '

The threshold for number of notified things that will initiate the increase in rate of rollout.

', 'RateIncreaseCriteria$numberOfSucceededThings' => '

The threshold for number of succeeded things that will initiate the increase in rate of rollout.

', ], ], 'OTAUpdateArn' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateResponse$otaUpdateArn' => '

The OTA update ARN.

', 'OTAUpdateInfo$otaUpdateArn' => '

The OTA update ARN.

', 'OTAUpdateSummary$otaUpdateArn' => '

The OTA update ARN.

', ], ], 'OTAUpdateDescription' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateRequest$description' => '

The description of the OTA update.

', 'OTAUpdateInfo$description' => '

A description of the OTA update.

', ], ], 'OTAUpdateErrorMessage' => [ 'base' => NULL, 'refs' => [ 'ErrorInfo$message' => '

The error message.

', ], ], 'OTAUpdateFile' => [ 'base' => '

Describes a file to be associated with an OTA update.

', 'refs' => [ 'OTAUpdateFiles$member' => NULL, ], ], 'OTAUpdateFileVersion' => [ 'base' => NULL, 'refs' => [ 'OTAUpdateFile$fileVersion' => '

The file version.

', ], ], 'OTAUpdateFiles' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateRequest$files' => '

The files to be streamed by the OTA update.

', 'OTAUpdateInfo$otaUpdateFiles' => '

A list of files associated with the OTA update.

', ], ], 'OTAUpdateId' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateRequest$otaUpdateId' => '

The ID of the OTA update to be created.

', 'CreateOTAUpdateResponse$otaUpdateId' => '

The OTA update ID.

', 'DeleteOTAUpdateRequest$otaUpdateId' => '

The ID of the OTA update to delete.

', 'GetOTAUpdateRequest$otaUpdateId' => '

The OTA update ID.

', 'OTAUpdateInfo$otaUpdateId' => '

The OTA update ID.

', 'OTAUpdateSummary$otaUpdateId' => '

The OTA update ID.

', ], ], 'OTAUpdateInfo' => [ 'base' => '

Information about an OTA update.

', 'refs' => [ 'GetOTAUpdateResponse$otaUpdateInfo' => '

The OTA update info.

', ], ], 'OTAUpdateStatus' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateResponse$otaUpdateStatus' => '

The OTA update status.

', 'ListOTAUpdatesRequest$otaUpdateStatus' => '

The OTA update job status.

', 'OTAUpdateInfo$otaUpdateStatus' => '

The status of the OTA update.

', ], ], 'OTAUpdateSummary' => [ 'base' => '

An OTA update summary.

', 'refs' => [ 'OTAUpdatesSummary$member' => NULL, ], ], 'OTAUpdatesSummary' => [ 'base' => NULL, 'refs' => [ 'ListOTAUpdatesResponse$otaUpdates' => '

A list of OTA update jobs.

', ], ], 'OpenSearchAction' => [ 'base' => '

Describes an action that writes data to an Amazon OpenSearch Service domain.

', 'refs' => [ 'Action$openSearch' => '

Write data to an Amazon OpenSearch Service domain.

', ], ], 'Optional' => [ 'base' => NULL, 'refs' => [ 'DocumentParameter$optional' => '

Specifies whether a pattern that needs to be replaced in a managed template job document schema is optional or required.

', ], ], 'OptionalVersion' => [ 'base' => NULL, 'refs' => [ 'DeleteBillingGroupRequest$expectedVersion' => '

The expected version of the billing group. If the version of the billing group does not match the expected version specified in the request, the DeleteBillingGroup request is rejected with a VersionConflictException.

', 'DeleteDynamicThingGroupRequest$expectedVersion' => '

The expected version of the dynamic thing group to delete.

', 'DeleteFleetMetricRequest$expectedVersion' => '

The expected version of the fleet metric to delete.

', 'DeleteSecurityProfileRequest$expectedVersion' => '

The expected version of the security profile. A new version is generated whenever the security profile is updated. If you specify a value that is different from the actual version, a VersionConflictException is thrown.

', 'DeleteThingGroupRequest$expectedVersion' => '

The expected version of the thing group to delete.

', 'DeleteThingRequest$expectedVersion' => '

The expected version of the thing record in the registry. If the version of the record in the registry does not match the expected version specified in the request, the DeleteThing request is rejected with a VersionConflictException.

', 'UpdateBillingGroupRequest$expectedVersion' => '

The expected version of the billing group. If the version of the billing group does not match the expected version specified in the request, the UpdateBillingGroup request is rejected with a VersionConflictException.

', 'UpdateDynamicThingGroupRequest$expectedVersion' => '

The expected version of the dynamic thing group to update.

', 'UpdateFleetMetricRequest$expectedVersion' => '

The expected version of the fleet metric record in the registry.

', 'UpdateSecurityProfileRequest$expectedVersion' => '

The expected version of the security profile. A new version is generated whenever the security profile is updated. If you specify a value that is different from the actual version, a VersionConflictException is thrown.

', 'UpdateThingGroupRequest$expectedVersion' => '

The expected version of the thing group. If this does not match the version of the thing group being updated, the update will fail.

', 'UpdateThingRequest$expectedVersion' => '

The expected version of the thing record in the registry. If the version of the record in the registry does not match the expected version specified in the request, the UpdateThing request is rejected with a VersionConflictException.

', ], ], 'OutgoingCertificate' => [ 'base' => '

A certificate that has been transferred but not yet accepted.

', 'refs' => [ 'OutgoingCertificates$member' => NULL, ], ], 'OutgoingCertificates' => [ 'base' => NULL, 'refs' => [ 'ListOutgoingCertificatesResponse$outgoingCertificates' => '

The certificates that are being transferred but not yet accepted.

', ], ], 'OverrideDynamicGroups' => [ 'base' => NULL, 'refs' => [ 'AddThingToThingGroupRequest$overrideDynamicGroups' => '

Override dynamic thing groups with static thing groups when 10-group limit is reached. If a thing belongs to 10 thing groups, and one or more of those groups are dynamic thing groups, adding a thing to a static group removes the thing from the last dynamic group.

', 'UpdateThingGroupsForThingRequest$overrideDynamicGroups' => '

Override dynamic thing groups with static thing groups when 10-group limit is reached. If a thing belongs to 10 thing groups, and one or more of those groups are dynamic thing groups, adding a thing to a static group removes the thing from the last dynamic group.

', ], ], 'PackageArn' => [ 'base' => NULL, 'refs' => [ 'CreatePackageResponse$packageArn' => '

The Amazon Resource Name (ARN) for the package.

', 'GetPackageResponse$packageArn' => '

The ARN for the package.

', ], ], 'PackageCatalogMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListPackageVersionsRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListPackagesRequest$maxResults' => '

The maximum number of results returned at one time.

', ], ], 'PackageName' => [ 'base' => NULL, 'refs' => [ 'CreatePackageRequest$packageName' => '

The name of the new software package.

', 'CreatePackageResponse$packageName' => '

The name of the software package.

', 'CreatePackageVersionRequest$packageName' => '

The name of the associated software package.

', 'CreatePackageVersionResponse$packageName' => '

The name of the associated software package.

', 'DeletePackageRequest$packageName' => '

The name of the target software package.

', 'DeletePackageVersionRequest$packageName' => '

The name of the associated software package.

', 'GetPackageRequest$packageName' => '

The name of the target software package.

', 'GetPackageResponse$packageName' => '

The name of the software package.

', 'GetPackageVersionRequest$packageName' => '

The name of the associated package.

', 'GetPackageVersionResponse$packageName' => '

The name of the software package.

', 'ListPackageVersionsRequest$packageName' => '

The name of the target software package.

', 'PackageSummary$packageName' => '

The name for the target software package.

', 'PackageVersionSummary$packageName' => '

The name of the associated software package.

', 'UpdatePackageRequest$packageName' => '

The name of the target software package.

', 'UpdatePackageVersionRequest$packageName' => '

The name of the associated software package.

', ], ], 'PackageSummary' => [ 'base' => '

A summary of information about a software package.

', 'refs' => [ 'PackageSummaryList$member' => NULL, ], ], 'PackageSummaryList' => [ 'base' => NULL, 'refs' => [ 'ListPackagesResponse$packageSummaries' => '

The software package summary.

', ], ], 'PackageVersionAction' => [ 'base' => NULL, 'refs' => [ 'UpdatePackageVersionRequest$action' => '

The status that the package version should be assigned. For more information, see Package version lifecycle.

', ], ], 'PackageVersionArn' => [ 'base' => NULL, 'refs' => [ 'CreatePackageVersionResponse$packageVersionArn' => '

The Amazon Resource Name (ARN) for the package.

', 'DestinationPackageVersions$member' => NULL, 'GetPackageVersionResponse$packageVersionArn' => '

The ARN for the package version.

', ], ], 'PackageVersionErrorReason' => [ 'base' => NULL, 'refs' => [ 'CreatePackageVersionResponse$errorReason' => '

Error reason for a package version failure during creation or update.

', 'GetPackageVersionResponse$errorReason' => '

Error reason for a package version failure during creation or update.

', ], ], 'PackageVersionStatus' => [ 'base' => NULL, 'refs' => [ 'CreatePackageVersionResponse$status' => '

The status of the package version. For more information, see Package version lifecycle.

', 'GetPackageVersionResponse$status' => '

The status associated to the package version. For more information, see Package version lifecycle.

', 'ListPackageVersionsRequest$status' => '

The status of the package version. For more information, see Package version lifecycle.

', 'PackageVersionSummary$status' => '

The status of the package version. For more information, see Package version lifecycle.

', ], ], 'PackageVersionSummary' => [ 'base' => '

A summary of information about a package version.

', 'refs' => [ 'PackageVersionSummaryList$member' => NULL, ], ], 'PackageVersionSummaryList' => [ 'base' => NULL, 'refs' => [ 'ListPackageVersionsResponse$packageVersionSummaries' => '

Lists the package versions associated to the package.

', ], ], 'PageSize' => [ 'base' => NULL, 'refs' => [ 'ListAttachedPoliciesRequest$pageSize' => '

The maximum number of results to be returned per request.

', 'ListAuthorizersRequest$pageSize' => '

The maximum number of results to return at one time.

', 'ListCACertificatesRequest$pageSize' => '

The result page size.

', 'ListCertificatesByCARequest$pageSize' => '

The result page size.

', 'ListCertificatesRequest$pageSize' => '

The result page size.

', 'ListDomainConfigurationsRequest$pageSize' => '

The result page size.

', 'ListOutgoingCertificatesRequest$pageSize' => '

The result page size.

', 'ListPoliciesRequest$pageSize' => '

The result page size.

', 'ListPolicyPrincipalsRequest$pageSize' => '

The result page size.

', 'ListPrincipalPoliciesRequest$pageSize' => '

The result page size.

', 'ListRoleAliasesRequest$pageSize' => '

The maximum number of results to return at one time.

', 'ListTargetsForPolicyRequest$pageSize' => '

The maximum number of results to return at one time.

', ], ], 'Parameter' => [ 'base' => NULL, 'refs' => [ 'Parameters$key' => NULL, ], ], 'ParameterKey' => [ 'base' => NULL, 'refs' => [ 'DocumentParameter$key' => '

Key of the map field containing the patterns that need to be replaced in a managed template job document schema.

', 'ParameterMap$key' => NULL, ], ], 'ParameterMap' => [ 'base' => NULL, 'refs' => [ 'CreateJobRequest$documentParameters' => '

Parameters of an Amazon Web Services managed template that you can specify to create the job document.

documentParameters can only be used when creating jobs from Amazon Web Services managed templates. This parameter can\'t be used with custom job templates or to create jobs from them.

', 'Job$documentParameters' => '

A key-value map that pairs the patterns that need to be replaced in a managed template job document schema. You can use the description of each key as a guidance to specify the inputs during runtime when creating a job.

documentParameters can only be used when creating jobs from Amazon Web Services managed templates. This parameter can\'t be used with custom job templates or to create jobs from them.

', ], ], 'ParameterValue' => [ 'base' => NULL, 'refs' => [ 'ParameterMap$value' => NULL, ], ], 'Parameters' => [ 'base' => NULL, 'refs' => [ 'RegisterThingRequest$parameters' => '

The parameters for provisioning a thing. See Provisioning Templates for more information.

', ], ], 'PartitionKey' => [ 'base' => NULL, 'refs' => [ 'KinesisAction$partitionKey' => '

The partition key.

', ], ], 'PayloadField' => [ 'base' => NULL, 'refs' => [ 'DynamoDBAction$payloadField' => '

The action payload. This name can be customized.

', ], ], 'PayloadFormatIndicator' => [ 'base' => NULL, 'refs' => [ 'MqttHeaders$payloadFormatIndicator' => '

An Enum string value that indicates whether the payload is formatted as UTF-8.

Valid values are UNSPECIFIED_BYTES and UTF8_DATA.

For more information, see Payload Format Indicator from the MQTT Version 5.0 specification.

Supports substitution templates.

', ], ], 'PayloadVersion' => [ 'base' => NULL, 'refs' => [ 'ProvisioningHook$payloadVersion' => '

The payload that was sent to the target function.

Note: Only Lambda functions are currently supported.

', ], ], 'Percent' => [ 'base' => NULL, 'refs' => [ 'PercentList$member' => NULL, 'PercentPair$percent' => '

The percentile.

', ], ], 'PercentList' => [ 'base' => NULL, 'refs' => [ 'GetPercentilesRequest$percents' => '

The percentile groups returned.

', ], ], 'PercentPair' => [ 'base' => '

Describes the percentile and percentile value.

', 'refs' => [ 'Percentiles$member' => NULL, ], ], 'PercentValue' => [ 'base' => NULL, 'refs' => [ 'PercentPair$value' => '

The value of the percentile.

', ], ], 'Percentage' => [ 'base' => NULL, 'refs' => [ 'DescribeThingRegistrationTaskResponse$percentageProgress' => '

The progress of the bulk provisioning task expressed as a percentage.

', ], ], 'Percentiles' => [ 'base' => NULL, 'refs' => [ 'GetPercentilesResponse$percentiles' => '

The percentile values of the aggregated fields.

', ], ], 'Platform' => [ 'base' => NULL, 'refs' => [ 'SigningProfileParameter$platform' => '

The hardware platform of your device.

', ], ], 'Policies' => [ 'base' => NULL, 'refs' => [ 'Allowed$policies' => '

A list of policies that allowed the authentication.

', 'ExplicitDeny$policies' => '

The policies that denied the authorization.

', 'ImplicitDeny$policies' => '

Policies that don\'t contain a matching allow or deny statement for the specified action on the specified resource.

', 'ListAttachedPoliciesResponse$policies' => '

The policies.

', 'ListPoliciesResponse$policies' => '

The descriptions of the policies.

', 'ListPrincipalPoliciesResponse$policies' => '

The policies.

', ], ], 'Policy' => [ 'base' => '

Describes an IoT policy.

', 'refs' => [ 'Policies$member' => NULL, ], ], 'PolicyArn' => [ 'base' => NULL, 'refs' => [ 'CreatePolicyResponse$policyArn' => '

The policy ARN.

', 'CreatePolicyVersionResponse$policyArn' => '

The policy ARN.

', 'EffectivePolicy$policyArn' => '

The policy ARN.

', 'GetPolicyResponse$policyArn' => '

The policy ARN.

', 'GetPolicyVersionResponse$policyArn' => '

The policy ARN.

', 'Policy$policyArn' => '

The policy ARN.

', ], ], 'PolicyDocument' => [ 'base' => NULL, 'refs' => [ 'CreatePolicyRequest$policyDocument' => '

The JSON document that describes the policy. policyDocument must have a minimum length of 1, with a maximum length of 2048, excluding whitespace.

', 'CreatePolicyResponse$policyDocument' => '

The JSON document that describes the policy.

', 'CreatePolicyVersionRequest$policyDocument' => '

The JSON document that describes the policy. Minimum length of 1. Maximum length of 2048, excluding whitespace.

', 'CreatePolicyVersionResponse$policyDocument' => '

The JSON document that describes the policy.

', 'EffectivePolicy$policyDocument' => '

The IAM policy document.

', 'GetPolicyResponse$policyDocument' => '

The JSON document that describes the policy.

', 'GetPolicyVersionResponse$policyDocument' => '

The JSON document that describes the policy.

', 'PolicyDocuments$member' => NULL, ], ], 'PolicyDocuments' => [ 'base' => NULL, 'refs' => [ 'TestInvokeAuthorizerResponse$policyDocuments' => '

IAM policy documents.

', ], ], 'PolicyName' => [ 'base' => NULL, 'refs' => [ 'AttachPolicyRequest$policyName' => '

The name of the policy to attach.

', 'AttachPrincipalPolicyRequest$policyName' => '

The policy name.

', 'CreatePolicyRequest$policyName' => '

The policy name.

', 'CreatePolicyResponse$policyName' => '

The policy name.

', 'CreatePolicyVersionRequest$policyName' => '

The policy name.

', 'DeletePolicyRequest$policyName' => '

The name of the policy to delete.

', 'DeletePolicyVersionRequest$policyName' => '

The name of the policy.

', 'DetachPolicyRequest$policyName' => '

The policy to detach.

', 'DetachPrincipalPolicyRequest$policyName' => '

The name of the policy to detach.

', 'EffectivePolicy$policyName' => '

The policy name.

', 'GetPolicyRequest$policyName' => '

The name of the policy.

', 'GetPolicyResponse$policyName' => '

The policy name.

', 'GetPolicyVersionRequest$policyName' => '

The name of the policy.

', 'GetPolicyVersionResponse$policyName' => '

The policy name.

', 'ListPolicyPrincipalsRequest$policyName' => '

The policy name.

', 'ListPolicyVersionsRequest$policyName' => '

The policy name.

', 'ListTargetsForPolicyRequest$policyName' => '

The policy name.

', 'Policy$policyName' => '

The policy name.

', 'PolicyNames$member' => NULL, 'PolicyVersionIdentifier$policyName' => '

The name of the policy.

', 'SetDefaultPolicyVersionRequest$policyName' => '

The policy name.

', ], ], 'PolicyNames' => [ 'base' => NULL, 'refs' => [ 'TestAuthorizationRequest$policyNamesToAdd' => '

When testing custom authorization, the policies specified here are treated as if they are attached to the principal being authorized.

', 'TestAuthorizationRequest$policyNamesToSkip' => '

When testing custom authorization, the policies specified here are treated as if they are not attached to the principal being authorized.

', ], ], 'PolicyTarget' => [ 'base' => NULL, 'refs' => [ 'AttachPolicyRequest$target' => '

The identity to which the policy is attached. For example, a thing group or a certificate.

', 'DetachPolicyRequest$target' => '

The target from which the policy will be detached.

', 'ListAttachedPoliciesRequest$target' => '

The group or principal for which the policies will be listed. Valid principals are CertificateArn (arn:aws:iot:region:accountId:cert/certificateId), thingGroupArn (arn:aws:iot:region:accountId:thinggroup/groupName) and CognitoId (region:id).

', 'PolicyTargets$member' => NULL, ], ], 'PolicyTargets' => [ 'base' => NULL, 'refs' => [ 'ListTargetsForPolicyResponse$targets' => '

The policy targets.

', ], ], 'PolicyTemplateName' => [ 'base' => NULL, 'refs' => [ 'ReplaceDefaultPolicyVersionParams$templateName' => '

The name of the template to be applied. The only supported value is BLANK_POLICY.

', ], ], 'PolicyVersion' => [ 'base' => '

Describes a policy version.

', 'refs' => [ 'PolicyVersions$member' => NULL, ], ], 'PolicyVersionId' => [ 'base' => NULL, 'refs' => [ 'CreatePolicyResponse$policyVersionId' => '

The policy version ID.

', 'CreatePolicyVersionResponse$policyVersionId' => '

The policy version ID.

', 'DeletePolicyVersionRequest$policyVersionId' => '

The policy version ID.

', 'GetPolicyResponse$defaultVersionId' => '

The default policy version ID.

', 'GetPolicyVersionRequest$policyVersionId' => '

The policy version ID.

', 'GetPolicyVersionResponse$policyVersionId' => '

The policy version ID.

', 'PolicyVersion$versionId' => '

The policy version ID.

', 'PolicyVersionIdentifier$policyVersionId' => '

The ID of the version of the policy associated with the resource.

', 'SetDefaultPolicyVersionRequest$policyVersionId' => '

The policy version ID.

', ], ], 'PolicyVersionIdentifier' => [ 'base' => '

Information about the version of the policy associated with the resource.

', 'refs' => [ 'ResourceIdentifier$policyVersionIdentifier' => '

The version of the policy associated with the resource.

', ], ], 'PolicyVersions' => [ 'base' => NULL, 'refs' => [ 'ListPolicyVersionsResponse$policyVersions' => '

The policy versions.

', ], ], 'Port' => [ 'base' => NULL, 'refs' => [ 'Ports$member' => NULL, ], ], 'Ports' => [ 'base' => NULL, 'refs' => [ 'MetricValue$ports' => '

If the comparisonOperator calls for a set of ports, use this to specify that set to be compared with the metric.

', ], ], 'Prefix' => [ 'base' => NULL, 'refs' => [ 'S3Destination$prefix' => '

The S3 prefix.

', ], ], 'PresignedUrlConfig' => [ 'base' => '

Configuration for pre-signed S3 URLs.

', 'refs' => [ 'CreateJobRequest$presignedUrlConfig' => '

Configuration information for pre-signed S3 URLs.

', 'CreateJobTemplateRequest$presignedUrlConfig' => NULL, 'DescribeJobTemplateResponse$presignedUrlConfig' => NULL, 'Job$presignedUrlConfig' => '

Configuration for pre-signed S3 URLs.

', 'UpdateJobRequest$presignedUrlConfig' => '

Configuration information for pre-signed S3 URLs.

', ], ], 'PrimitiveBoolean' => [ 'base' => NULL, 'refs' => [ 'DetectMitigationActionsTaskSummary$onlyActiveViolationsIncluded' => '

Includes only active violations.

', 'DetectMitigationActionsTaskSummary$suppressedAlertsIncluded' => '

Includes suppressed alerts.

', ], ], 'Principal' => [ 'base' => NULL, 'refs' => [ 'AttachPrincipalPolicyRequest$principal' => '

The principal, which can be a certificate ARN (as returned from the CreateCertificate operation) or an Amazon Cognito ID.

', 'AttachThingPrincipalRequest$principal' => '

The principal, which can be a certificate ARN (as returned from the CreateCertificate operation) or an Amazon Cognito ID.

', 'DetachPrincipalPolicyRequest$principal' => '

The principal.

Valid principals are CertificateArn (arn:aws:iot:region:accountId:cert/certificateId), thingGroupArn (arn:aws:iot:region:accountId:thinggroup/groupName) and CognitoId (region:id).

', 'DetachThingPrincipalRequest$principal' => '

If the principal is a certificate, this value must be ARN of the certificate. If the principal is an Amazon Cognito identity, this value must be the ID of the Amazon Cognito identity.

', 'GetEffectivePoliciesRequest$principal' => '

The principal. Valid principals are CertificateArn (arn:aws:iot:region:accountId:cert/certificateId), thingGroupArn (arn:aws:iot:region:accountId:thinggroup/groupName) and CognitoId (region:id).

', 'ListPrincipalPoliciesRequest$principal' => '

The principal. Valid principals are CertificateArn (arn:aws:iot:region:accountId:cert/certificateId), thingGroupArn (arn:aws:iot:region:accountId:thinggroup/groupName) and CognitoId (region:id).

', 'ListPrincipalThingsRequest$principal' => '

The principal.

', 'TestAuthorizationRequest$principal' => '

The principal. Valid principals are CertificateArn (arn:aws:iot:region:accountId:cert/certificateId), thingGroupArn (arn:aws:iot:region:accountId:thinggroup/groupName) and CognitoId (region:id).

', ], ], 'PrincipalArn' => [ 'base' => NULL, 'refs' => [ 'Principals$member' => NULL, ], ], 'PrincipalId' => [ 'base' => NULL, 'refs' => [ 'TestInvokeAuthorizerResponse$principalId' => '

The principal ID.

', ], ], 'Principals' => [ 'base' => NULL, 'refs' => [ 'ListPolicyPrincipalsResponse$principals' => '

The descriptions of the principals.

', 'ListThingPrincipalsResponse$principals' => '

The principals associated with the thing.

', ], ], 'PrivateKey' => [ 'base' => NULL, 'refs' => [ 'KeyPair$PrivateKey' => '

The private key.

', ], ], 'ProcessingTargetName' => [ 'base' => NULL, 'refs' => [ 'ProcessingTargetNameList$member' => NULL, ], ], 'ProcessingTargetNameList' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$processingTargets' => '

The target devices to which the job execution is being rolled out. This value will be null after the job execution has finished rolling out to all the target devices.

', ], ], 'Protocol' => [ 'base' => NULL, 'refs' => [ 'Protocols$member' => NULL, ], ], 'Protocols' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateRequest$protocols' => '

The protocol used to transfer the OTA update image. Valid values are [HTTP], [MQTT], [HTTP, MQTT]. When both HTTP and MQTT are specified, the target device can choose the protocol.

', 'OTAUpdateInfo$protocols' => '

The protocol used to transfer the OTA update image. Valid values are [HTTP], [MQTT], [HTTP, MQTT]. When both HTTP and MQTT are specified, the target device can choose the protocol.

', ], ], 'ProvisioningHook' => [ 'base' => '

Structure that contains payloadVersion and targetArn.

', 'refs' => [ 'CreateProvisioningTemplateRequest$preProvisioningHook' => '

Creates a pre-provisioning hook template. Only supports template of type FLEET_PROVISIONING. For more information about provisioning template types, see type.

', 'DescribeProvisioningTemplateResponse$preProvisioningHook' => '

Gets information about a pre-provisioned hook.

', 'UpdateProvisioningTemplateRequest$preProvisioningHook' => '

Updates the pre-provisioning hook template. Only supports template of type FLEET_PROVISIONING. For more information about provisioning template types, see type.

', ], ], 'ProvisioningTemplateListing' => [ 'base' => NULL, 'refs' => [ 'ListProvisioningTemplatesResponse$templates' => '

A list of provisioning templates

', ], ], 'ProvisioningTemplateSummary' => [ 'base' => '

A summary of information about a provisioning template.

', 'refs' => [ 'ProvisioningTemplateListing$member' => NULL, ], ], 'ProvisioningTemplateVersionListing' => [ 'base' => NULL, 'refs' => [ 'ListProvisioningTemplateVersionsResponse$versions' => '

The list of provisioning template versions.

', ], ], 'ProvisioningTemplateVersionSummary' => [ 'base' => '

A summary of information about a fleet provision template version.

', 'refs' => [ 'ProvisioningTemplateVersionListing$member' => NULL, ], ], 'PublicKey' => [ 'base' => NULL, 'refs' => [ 'KeyPair$PublicKey' => '

The public key.

', ], ], 'PublicKeyMap' => [ 'base' => NULL, 'refs' => [ 'AuthorizerDescription$tokenSigningPublicKeys' => '

The public keys used to validate the token signature returned by your custom authentication service.

', 'CreateAuthorizerRequest$tokenSigningPublicKeys' => '

The public keys used to verify the digital signature returned by your custom authentication service.

', 'UpdateAuthorizerRequest$tokenSigningPublicKeys' => '

The public keys used to verify the token signature.

', ], ], 'PublishFindingToSnsParams' => [ 'base' => '

Parameters to define a mitigation action that publishes findings to Amazon SNS. You can implement your own custom actions in response to the Amazon SNS messages.

', 'refs' => [ 'MitigationActionParams$publishFindingToSnsParams' => '

Parameters to define a mitigation action that publishes findings to Amazon Simple Notification Service (Amazon SNS. You can implement your own custom actions in response to the Amazon SNS messages.

', ], ], 'PutAssetPropertyValueEntry' => [ 'base' => '

An asset property value entry containing the following information.

', 'refs' => [ 'PutAssetPropertyValueEntryList$member' => NULL, ], ], 'PutAssetPropertyValueEntryList' => [ 'base' => NULL, 'refs' => [ 'IotSiteWiseAction$putAssetPropertyValueEntries' => '

A list of asset property value entries.

', ], ], 'PutItemInput' => [ 'base' => '

The input for the DynamoActionVS action that specifies the DynamoDB table to which the message data will be written.

', 'refs' => [ 'DynamoDBv2Action$putItem' => '

Specifies the DynamoDB table to which the message data will be written. For example:

{ "dynamoDBv2": { "roleArn": "aws:iam:12341251:my-role" "putItem": { "tableName": "my-table" } } }

Each attribute in the message payload will be written to a separate column in the DynamoDB database.

', ], ], 'PutVerificationStateOnViolationRequest' => [ 'base' => NULL, 'refs' => [], ], 'PutVerificationStateOnViolationResponse' => [ 'base' => NULL, 'refs' => [], ], 'Qos' => [ 'base' => NULL, 'refs' => [ 'RepublishAction$qos' => '

The Quality of Service (QoS) level to use when republishing messages. The default value is 0.

', ], ], 'QueryMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListIndicesRequest$maxResults' => '

The maximum number of results to return at one time.

', ], ], 'QueryString' => [ 'base' => NULL, 'refs' => [ 'CreateDynamicThingGroupRequest$queryString' => '

The dynamic thing group search query string.

See Query Syntax for information about query string syntax.

', 'CreateDynamicThingGroupResponse$queryString' => '

The dynamic thing group search query string.

', 'CreateFleetMetricRequest$queryString' => '

The search query string.

', 'DescribeFleetMetricResponse$queryString' => '

The search query string.

', 'DescribeThingGroupResponse$queryString' => '

The dynamic thing group search query string.

', 'GetBucketsAggregationRequest$queryString' => '

The search query string.

', 'GetCardinalityRequest$queryString' => '

The search query string.

', 'GetPercentilesRequest$queryString' => '

The search query string.

', 'GetStatisticsRequest$queryString' => '

The query used to search. You can specify "*" for the query string to get the count of all indexed things in your Amazon Web Services account.

', 'SearchIndexRequest$queryString' => '

The search query string. For more information about the search query syntax, see Query syntax.

', 'UpdateDynamicThingGroupRequest$queryString' => '

The dynamic thing group search query string to update.

', 'UpdateFleetMetricRequest$queryString' => '

The search query string.

', ], ], 'QueryVersion' => [ 'base' => NULL, 'refs' => [ 'CreateDynamicThingGroupRequest$queryVersion' => '

The dynamic thing group query version.

Currently one query version is supported: "2017-09-30". If not specified, the query version defaults to this value.

', 'CreateDynamicThingGroupResponse$queryVersion' => '

The dynamic thing group query version.

', 'CreateFleetMetricRequest$queryVersion' => '

The query version.

', 'DescribeFleetMetricResponse$queryVersion' => '

The query version.

', 'DescribeThingGroupResponse$queryVersion' => '

The dynamic thing group query version.

', 'GetBucketsAggregationRequest$queryVersion' => '

The version of the query.

', 'GetCardinalityRequest$queryVersion' => '

The query version.

', 'GetPercentilesRequest$queryVersion' => '

The query version.

', 'GetStatisticsRequest$queryVersion' => '

The version of the query used to search.

', 'SearchIndexRequest$queryVersion' => '

The query version.

', 'UpdateDynamicThingGroupRequest$queryVersion' => '

The dynamic thing group query version to update.

Currently one query version is supported: "2017-09-30". If not specified, the query version defaults to this value.

', 'UpdateFleetMetricRequest$queryVersion' => '

The version of the query.

', ], ], 'QueueUrl' => [ 'base' => NULL, 'refs' => [ 'SqsAction$queueUrl' => '

The URL of the Amazon SQS queue.

', ], ], 'QueuedThings' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$numberOfQueuedThings' => '

The number of things that are awaiting execution of the job.

', ], ], 'RangeKeyField' => [ 'base' => NULL, 'refs' => [ 'DynamoDBAction$rangeKeyField' => '

The range key name.

', ], ], 'RangeKeyValue' => [ 'base' => NULL, 'refs' => [ 'DynamoDBAction$rangeKeyValue' => '

The range key value.

', ], ], 'RateIncreaseCriteria' => [ 'base' => '

Allows you to define a criteria to initiate the increase in rate of rollout for a job.

', 'refs' => [ 'ExponentialRolloutRate$rateIncreaseCriteria' => '

The criteria to initiate the increase in rate of rollout for a job.

', ], ], 'ReasonCode' => [ 'base' => NULL, 'refs' => [ 'CancelJobRequest$reasonCode' => '

(Optional)A reason code string that explains why the job was canceled.

', 'Job$reasonCode' => '

If the job was updated, provides the reason code for the update.

', ], ], 'ReasonForNonCompliance' => [ 'base' => NULL, 'refs' => [ 'AuditFinding$reasonForNonCompliance' => '

The reason the resource was noncompliant.

', ], ], 'ReasonForNonComplianceCode' => [ 'base' => NULL, 'refs' => [ 'AuditFinding$reasonForNonComplianceCode' => '

A code that indicates the reason that the resource was noncompliant.

', 'ReasonForNonComplianceCodes$member' => NULL, ], ], 'ReasonForNonComplianceCodes' => [ 'base' => NULL, 'refs' => [ 'AuditCheckToReasonCodeFilter$value' => NULL, ], ], 'Recursive' => [ 'base' => NULL, 'refs' => [ 'ListAttachedPoliciesRequest$recursive' => '

When true, recursively list attached policies.

', 'ListSecurityProfilesForTargetRequest$recursive' => '

If true, return child groups too.

', 'ListThingsInThingGroupRequest$recursive' => '

When true, list things in this thing group and in all child groups as well.

', ], ], 'RecursiveWithoutDefault' => [ 'base' => NULL, 'refs' => [ 'ListThingGroupsRequest$recursive' => '

If true, return child groups as well.

', ], ], 'Regex' => [ 'base' => NULL, 'refs' => [ 'DocumentParameter$regex' => '

A regular expression of the patterns that need to be replaced in a managed template job document schema.

', ], ], 'RegisterCACertificateRequest' => [ 'base' => '

The input to the RegisterCACertificate operation.

', 'refs' => [], ], 'RegisterCACertificateResponse' => [ 'base' => '

The output from the RegisterCACertificateResponse operation.

', 'refs' => [], ], 'RegisterCertificateRequest' => [ 'base' => '

The input to the RegisterCertificate operation.

', 'refs' => [], ], 'RegisterCertificateResponse' => [ 'base' => '

The output from the RegisterCertificate operation.

', 'refs' => [], ], 'RegisterCertificateWithoutCARequest' => [ 'base' => NULL, 'refs' => [], ], 'RegisterCertificateWithoutCAResponse' => [ 'base' => NULL, 'refs' => [], ], 'RegisterThingRequest' => [ 'base' => NULL, 'refs' => [], ], 'RegisterThingResponse' => [ 'base' => NULL, 'refs' => [], ], 'RegistrationCode' => [ 'base' => NULL, 'refs' => [ 'GetRegistrationCodeResponse$registrationCode' => '

The CA certificate registration code.

', ], ], 'RegistrationCodeValidationException' => [ 'base' => '

The registration code is invalid.

', 'refs' => [], ], 'RegistrationConfig' => [ 'base' => '

The registration configuration.

', 'refs' => [ 'DescribeCACertificateResponse$registrationConfig' => '

Information about the registration configuration.

', 'RegisterCACertificateRequest$registrationConfig' => '

Information about the registration configuration.

', 'UpdateCACertificateRequest$registrationConfig' => '

Information about the registration configuration.

', ], ], 'RegistryMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListBillingGroupsRequest$maxResults' => '

The maximum number of results to return per request.

', 'ListPrincipalThingsRequest$maxResults' => '

The maximum number of results to return in this operation.

', 'ListThingGroupsForThingRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListThingGroupsRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListThingPrincipalsRequest$maxResults' => '

The maximum number of results to return in this operation.

', 'ListThingRegistrationTaskReportsRequest$maxResults' => '

The maximum number of results to return per request.

', 'ListThingRegistrationTasksRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListThingTypesRequest$maxResults' => '

The maximum number of results to return in this operation.

', 'ListThingsInBillingGroupRequest$maxResults' => '

The maximum number of results to return per request.

', 'ListThingsInThingGroupRequest$maxResults' => '

The maximum number of results to return at one time.

', 'ListThingsRequest$maxResults' => '

The maximum number of results to return in this operation.

', ], ], 'RegistryS3BucketName' => [ 'base' => NULL, 'refs' => [ 'DescribeThingRegistrationTaskResponse$inputFileBucket' => '

The S3 bucket that contains the input file.

', 'StartThingRegistrationTaskRequest$inputFileBucket' => '

The S3 bucket that contains the input file.

', ], ], 'RegistryS3KeyName' => [ 'base' => NULL, 'refs' => [ 'DescribeThingRegistrationTaskResponse$inputFileKey' => '

The input file key.

', 'StartThingRegistrationTaskRequest$inputFileKey' => '

The name of input file within the S3 bucket. This file contains a newline delimited JSON file. Each line contains the parameter values to provision one device (thing).

', ], ], 'RejectCertificateTransferRequest' => [ 'base' => '

The input for the RejectCertificateTransfer operation.

', 'refs' => [], ], 'RejectedThings' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$numberOfRejectedThings' => '

The number of things that rejected the job.

', ], ], 'RelatedResource' => [ 'base' => '

Information about a related resource.

', 'refs' => [ 'RelatedResources$member' => NULL, ], ], 'RelatedResources' => [ 'base' => NULL, 'refs' => [ 'AuditFinding$relatedResources' => '

The list of related resources.

', 'ListRelatedResourcesForAuditFindingResponse$relatedResources' => '

The related resources.

', ], ], 'RemoveAuthorizerConfig' => [ 'base' => NULL, 'refs' => [ 'UpdateDomainConfigurationRequest$removeAuthorizerConfig' => '

Removes the authorization configuration from a domain.

', ], ], 'RemoveAutoRegistration' => [ 'base' => NULL, 'refs' => [ 'UpdateCACertificateRequest$removeAutoRegistration' => '

If true, removes auto registration.

', ], ], 'RemoveHook' => [ 'base' => NULL, 'refs' => [ 'UpdateProvisioningTemplateRequest$removePreProvisioningHook' => '

Removes pre-provisioning hook template.

', ], ], 'RemoveThingFromBillingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'RemoveThingFromBillingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'RemoveThingFromThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'RemoveThingFromThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'RemoveThingType' => [ 'base' => NULL, 'refs' => [ 'UpdateThingRequest$removeThingType' => '

Remove a thing type association. If true, the association is removed.

', ], ], 'RemovedThings' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$numberOfRemovedThings' => '

The number of things that are no longer scheduled to execute the job because they have been deleted or have been removed from the group that was a target of the job.

', ], ], 'ReplaceDefaultPolicyVersionParams' => [ 'base' => '

Parameters to define a mitigation action that adds a blank policy to restrict permissions.

', 'refs' => [ 'MitigationActionParams$replaceDefaultPolicyVersionParams' => '

Parameters to define a mitigation action that adds a blank policy to restrict permissions.

', ], ], 'ReplaceTopicRuleRequest' => [ 'base' => '

The input for the ReplaceTopicRule operation.

', 'refs' => [], ], 'ReportType' => [ 'base' => NULL, 'refs' => [ 'ListThingRegistrationTaskReportsRequest$reportType' => '

The type of task report.

', 'ListThingRegistrationTaskReportsResponse$reportType' => '

The type of task report.

', ], ], 'RepublishAction' => [ 'base' => '

Describes an action to republish to another topic.

', 'refs' => [ 'Action$republish' => '

Publish to another MQTT topic.

', ], ], 'ReservedDomainConfigurationName' => [ 'base' => NULL, 'refs' => [ 'DescribeDomainConfigurationRequest$domainConfigurationName' => '

The name of the domain configuration.

', 'DescribeDomainConfigurationResponse$domainConfigurationName' => '

The name of the domain configuration.

', 'DomainConfigurationSummary$domainConfigurationName' => '

The name of the domain configuration. This value must be unique to a region.

', 'UpdateDomainConfigurationRequest$domainConfigurationName' => '

The name of the domain configuration to be updated.

', 'UpdateDomainConfigurationResponse$domainConfigurationName' => '

The name of the domain configuration that was updated.

', ], ], 'Resource' => [ 'base' => NULL, 'refs' => [ 'Resources$member' => NULL, ], ], 'ResourceAlreadyExistsException' => [ 'base' => '

The resource already exists.

', 'refs' => [], ], 'ResourceArn' => [ 'base' => NULL, 'refs' => [ 'ListTagsForResourceRequest$resourceArn' => '

The ARN of the resource.

', 'ResourceArns$value' => NULL, 'TagResourceRequest$resourceArn' => '

The ARN of the resource.

', 'UntagResourceRequest$resourceArn' => '

The ARN of the resource.

', ], ], 'ResourceArns' => [ 'base' => NULL, 'refs' => [ 'RegisterThingResponse$resourceArns' => '

ARNs for the generated resources.

', ], ], 'ResourceAttributeKey' => [ 'base' => NULL, 'refs' => [ 'ResourceAttributes$key' => NULL, ], ], 'ResourceAttributeValue' => [ 'base' => NULL, 'refs' => [ 'ResourceAttributes$value' => NULL, ], ], 'ResourceAttributes' => [ 'base' => NULL, 'refs' => [ 'CreatePackageVersionRequest$attributes' => '

Metadata that can be used to define a package version’s configuration. For example, the S3 file location, configuration options that are being sent to the device or fleet.

The combined size of all the attributes on a package version is limited to 3KB.

', 'CreatePackageVersionResponse$attributes' => '

Metadata that were added to the package version that can be used to define a package version’s configuration.

', 'GetPackageVersionResponse$attributes' => '

Metadata that were added to the package version that can be used to define a package version’s configuration.

', 'UpdatePackageVersionRequest$attributes' => '

Metadata that can be used to define a package version’s configuration. For example, the Amazon S3 file location, configuration options that are being sent to the device or fleet.

Note: Attributes can be updated only when the package version is in a draft state.

The combined size of all the attributes on a package version is limited to 3KB.

', ], ], 'ResourceDescription' => [ 'base' => NULL, 'refs' => [ 'CreatePackageRequest$description' => '

A summary of the package being created. This can be used to outline the package\'s contents or purpose.

', 'CreatePackageResponse$description' => '

The package description.

', 'CreatePackageVersionRequest$description' => '

A summary of the package version being created. This can be used to outline the package\'s contents or purpose.

', 'CreatePackageVersionResponse$description' => '

The package version description.

', 'GetPackageResponse$description' => '

The package description.

', 'GetPackageVersionResponse$description' => '

The package version description.

', 'UpdatePackageRequest$description' => '

The package description.

', 'UpdatePackageVersionRequest$description' => '

The package version description.

', ], ], 'ResourceIdentifier' => [ 'base' => '

Information that identifies the noncompliant resource.

', 'refs' => [ 'AuditSuppression$resourceIdentifier' => NULL, 'CreateAuditSuppressionRequest$resourceIdentifier' => NULL, 'DeleteAuditSuppressionRequest$resourceIdentifier' => NULL, 'DescribeAuditSuppressionRequest$resourceIdentifier' => NULL, 'DescribeAuditSuppressionResponse$resourceIdentifier' => NULL, 'ListAuditFindingsRequest$resourceIdentifier' => '

Information identifying the noncompliant resource.

', 'ListAuditSuppressionsRequest$resourceIdentifier' => NULL, 'NonCompliantResource$resourceIdentifier' => '

Information that identifies the noncompliant resource.

', 'RelatedResource$resourceIdentifier' => '

Information that identifies the resource.

', 'UpdateAuditSuppressionRequest$resourceIdentifier' => NULL, ], ], 'ResourceLogicalId' => [ 'base' => NULL, 'refs' => [ 'ResourceArns$key' => NULL, ], ], 'ResourceNotFoundException' => [ 'base' => '

The specified resource does not exist.

', 'refs' => [], ], 'ResourceRegistrationFailureException' => [ 'base' => '

The resource registration failed.

', 'refs' => [], ], 'ResourceType' => [ 'base' => NULL, 'refs' => [ 'NonCompliantResource$resourceType' => '

The type of the noncompliant resource.

', 'RelatedResource$resourceType' => '

The type of resource.

', ], ], 'Resources' => [ 'base' => NULL, 'refs' => [ 'AuthInfo$resources' => '

The resources for which the principal is being authorized to perform the specified action.

', ], ], 'ResponseTopic' => [ 'base' => NULL, 'refs' => [ 'MqttHeaders$responseTopic' => '

A UTF-8 encoded string that\'s used as the topic name for a response message. The response topic is used to describe the topic which the receiver should publish to as part of the request-response flow. The topic must not contain wildcard characters.

For more information, see Response Topic from the MQTT Version 5.0 specification.

Supports substitution templates.

', ], ], 'RetryAttempt' => [ 'base' => NULL, 'refs' => [ 'JobExecutionSummary$retryAttempt' => '

The number that indicates how many retry attempts have been completed for this job on this device.

', ], ], 'RetryCriteria' => [ 'base' => '

The criteria that determines how many retries are allowed for each failure type for a job.

', 'refs' => [ 'RetryCriteriaList$member' => NULL, ], ], 'RetryCriteriaList' => [ 'base' => NULL, 'refs' => [ 'JobExecutionsRetryConfig$criteriaList' => '

The list of criteria that determines how many retries are allowed for each failure type for a job.

', ], ], 'RetryableFailureType' => [ 'base' => NULL, 'refs' => [ 'RetryCriteria$failureType' => '

The type of job execution failures that can initiate a job retry.

', ], ], 'RoleAlias' => [ 'base' => NULL, 'refs' => [ 'CreateRoleAliasRequest$roleAlias' => '

The role alias that points to a role ARN. This allows you to change the role without having to update the device.

', 'CreateRoleAliasResponse$roleAlias' => '

The role alias.

', 'DeleteRoleAliasRequest$roleAlias' => '

The role alias to delete.

', 'DescribeRoleAliasRequest$roleAlias' => '

The role alias to describe.

', 'RoleAliasDescription$roleAlias' => '

The role alias.

', 'RoleAliases$member' => NULL, 'UpdateRoleAliasRequest$roleAlias' => '

The role alias to update.

', 'UpdateRoleAliasResponse$roleAlias' => '

The role alias.

', ], ], 'RoleAliasArn' => [ 'base' => NULL, 'refs' => [ 'CreateRoleAliasResponse$roleAliasArn' => '

The role alias ARN.

', 'ResourceIdentifier$roleAliasArn' => '

The ARN of the role alias that has overly permissive actions.

', 'RoleAliasDescription$roleAliasArn' => '

The ARN of the role alias.

', 'UpdateRoleAliasResponse$roleAliasArn' => '

The role alias ARN.

', ], ], 'RoleAliasDescription' => [ 'base' => '

Role alias description.

', 'refs' => [ 'DescribeRoleAliasResponse$roleAliasDescription' => '

The role alias description.

', ], ], 'RoleAliases' => [ 'base' => NULL, 'refs' => [ 'ListRoleAliasesResponse$roleAliases' => '

The role aliases.

', ], ], 'RoleArn' => [ 'base' => NULL, 'refs' => [ 'AlertTarget$roleArn' => '

The ARN of the role that grants permission to send alerts to the notification target.

', 'AuditNotificationTarget$roleArn' => '

The ARN of the role that grants permission to send notifications to the target.

', 'CreateMitigationActionRequest$roleArn' => '

The ARN of the IAM role that is used to apply the mitigation action.

', 'CreateOTAUpdateRequest$roleArn' => '

The IAM role that grants Amazon Web Services IoT Core access to the Amazon S3, IoT jobs and Amazon Web Services Code Signing resources to create an OTA update job.

', 'CreateProvisioningTemplateRequest$provisioningRoleArn' => '

The role ARN for the role associated with the provisioning template. This IoT role grants permission to provision a device.

', 'CreateRoleAliasRequest$roleArn' => '

The role ARN.

', 'CreateStreamRequest$roleArn' => '

An IAM role that allows the IoT service principal to access your S3 files.

', 'DescribeAccountAuditConfigurationResponse$roleArn' => '

The ARN of the role that grants permission to IoT to access information about your devices, policies, certificates, and other items as required when performing an audit.

On the first call to UpdateAccountAuditConfiguration, this parameter is required.

', 'DescribeMitigationActionResponse$roleArn' => '

The ARN of the IAM role used to apply this action.

', 'DescribeProvisioningTemplateResponse$provisioningRoleArn' => '

The ARN of the role associated with the provisioning template. This IoT role grants permission to provision a device.

', 'DescribeThingRegistrationTaskResponse$roleArn' => '

The role ARN that grants access to the input file bucket.

', 'EnableIoTLoggingParams$roleArnForLogging' => '

The Amazon Resource Name (ARN) of the IAM role used for logging.

', 'MetricsExportConfig$roleArn' => '

This role ARN has permission to publish MQTT messages, after which Device Defender Detect can assume the role and publish messages on your behalf.

', 'MitigationAction$roleArn' => '

The IAM role ARN used to apply this mitigation action.

', 'PresignedUrlConfig$roleArn' => '

The ARN of an IAM role that grants permission to download files from the S3 bucket where the job data/updates are stored. The role must also grant permission for IoT to download the files.

For information about addressing the confused deputy problem, see cross-service confused deputy prevention in the Amazon Web Services IoT Core developer guide.

', 'RegistrationConfig$roleArn' => '

The ARN of the role.

', 'ResourceIdentifier$iamRoleArn' => '

The ARN of the IAM role that has overly permissive actions.

', 'RoleAliasDescription$roleArn' => '

The role ARN.

', 'StartThingRegistrationTaskRequest$roleArn' => '

The IAM role ARN that grants permission the input file.

', 'StreamInfo$roleArn' => '

An IAM role IoT assumes to access your S3 files.

', 'UpdateAccountAuditConfigurationRequest$roleArn' => '

The Amazon Resource Name (ARN) of the role that grants permission to IoT to access information about your devices, policies, certificates, and other items as required when performing an audit.

', 'UpdateMitigationActionRequest$roleArn' => '

The ARN of the IAM role that is used to apply the mitigation action.

', 'UpdateProvisioningTemplateRequest$provisioningRoleArn' => '

The ARN of the role associated with the provisioning template. This IoT role grants permission to provision a device.

', 'UpdateRoleAliasRequest$roleArn' => '

The role ARN.

', 'UpdateStreamRequest$roleArn' => '

An IAM role that allows the IoT service principal assumes to access your S3 files.

', 'VersionUpdateByJobsConfig$roleArn' => '

The Amazon Resource Name (ARN) of the role that grants permission to the IoT jobs service to update the reserved named shadow when the job successfully completes.

', ], ], 'RolloutRatePerMinute' => [ 'base' => NULL, 'refs' => [ 'ExponentialRolloutRate$baseRatePerMinute' => '

The minimum number of things that will be notified of a pending job, per minute at the start of job rollout. This parameter allows you to define the initial rate of rollout.

', ], ], 'RuleArn' => [ 'base' => NULL, 'refs' => [ 'GetTopicRuleResponse$ruleArn' => '

The rule ARN.

', 'TopicRuleListItem$ruleArn' => '

The rule ARN.

', ], ], 'RuleName' => [ 'base' => NULL, 'refs' => [ 'CreateTopicRuleRequest$ruleName' => '

The name of the rule.

', 'DeleteTopicRuleRequest$ruleName' => '

The name of the rule.

', 'DisableTopicRuleRequest$ruleName' => '

The name of the rule to disable.

', 'EnableTopicRuleRequest$ruleName' => '

The name of the topic rule to enable.

', 'GetTopicRuleRequest$ruleName' => '

The name of the rule.

', 'ReplaceTopicRuleRequest$ruleName' => '

The name of the rule.

', 'TopicRule$ruleName' => '

The name of the rule.

', 'TopicRuleListItem$ruleName' => '

The name of the rule.

', ], ], 'S3Action' => [ 'base' => '

Describes an action to write data to an Amazon S3 bucket.

', 'refs' => [ 'Action$s3' => '

Write to an Amazon S3 bucket.

', ], ], 'S3Bucket' => [ 'base' => NULL, 'refs' => [ 'S3Destination$bucket' => '

The S3 bucket that contains the updated firmware.

', 'S3Location$bucket' => '

The S3 bucket.

', ], ], 'S3Destination' => [ 'base' => '

Describes the location of updated firmware in S3.

', 'refs' => [ 'Destination$s3Destination' => '

Describes the location in S3 of the updated firmware.

', ], ], 'S3FileUrl' => [ 'base' => NULL, 'refs' => [ 'S3FileUrlList$member' => NULL, ], ], 'S3FileUrlList' => [ 'base' => NULL, 'refs' => [ 'ListThingRegistrationTaskReportsResponse$resourceLinks' => '

Links to the task resources.

', ], ], 'S3Key' => [ 'base' => NULL, 'refs' => [ 'S3Location$key' => '

The S3 key.

', ], ], 'S3Location' => [ 'base' => '

The S3 location.

', 'refs' => [ 'FileLocation$s3Location' => '

The location of the updated firmware in S3.

', 'StreamFile$s3Location' => '

The location of the file in S3.

', ], ], 'S3Version' => [ 'base' => NULL, 'refs' => [ 'S3Location$version' => '

The S3 bucket version.

', ], ], 'SQL' => [ 'base' => NULL, 'refs' => [ 'TopicRule$sql' => '

The SQL statement used to query the topic. When using a SQL query with multiple lines, be sure to escape the newline characters.

', 'TopicRulePayload$sql' => '

The SQL statement used to query the topic. For more information, see IoT SQL Reference in the IoT Developer Guide.

', ], ], 'SalesforceAction' => [ 'base' => '

Describes an action to write a message to a Salesforce IoT Cloud Input Stream.

', 'refs' => [ 'Action$salesforce' => '

Send a message to a Salesforce IoT Cloud Input Stream.

', ], ], 'SalesforceEndpoint' => [ 'base' => NULL, 'refs' => [ 'SalesforceAction$url' => '

The URL exposed by the Salesforce IoT Cloud Input Stream. The URL is available from the Salesforce IoT Cloud platform after creation of the Input Stream.

', ], ], 'SalesforceToken' => [ 'base' => NULL, 'refs' => [ 'SalesforceAction$token' => '

The token used to authenticate access to the Salesforce IoT Cloud Input Stream. The token is available from the Salesforce IoT Cloud platform after creation of the Input Stream.

', ], ], 'ScheduledAuditArn' => [ 'base' => NULL, 'refs' => [ 'CreateScheduledAuditResponse$scheduledAuditArn' => '

The ARN of the scheduled audit.

', 'DescribeScheduledAuditResponse$scheduledAuditArn' => '

The ARN of the scheduled audit.

', 'ScheduledAuditMetadata$scheduledAuditArn' => '

The ARN of the scheduled audit.

', 'UpdateScheduledAuditResponse$scheduledAuditArn' => '

The ARN of the scheduled audit.

', ], ], 'ScheduledAuditMetadata' => [ 'base' => '

Information about the scheduled audit.

', 'refs' => [ 'ScheduledAuditMetadataList$member' => NULL, ], ], 'ScheduledAuditMetadataList' => [ 'base' => NULL, 'refs' => [ 'ListScheduledAuditsResponse$scheduledAudits' => '

The list of scheduled audits.

', ], ], 'ScheduledAuditName' => [ 'base' => NULL, 'refs' => [ 'CreateScheduledAuditRequest$scheduledAuditName' => '

The name you want to give to the scheduled audit. (Max. 128 chars)

', 'DeleteScheduledAuditRequest$scheduledAuditName' => '

The name of the scheduled audit you want to delete.

', 'DescribeAuditTaskResponse$scheduledAuditName' => '

The name of the scheduled audit (only if the audit was a scheduled audit).

', 'DescribeScheduledAuditRequest$scheduledAuditName' => '

The name of the scheduled audit whose information you want to get.

', 'DescribeScheduledAuditResponse$scheduledAuditName' => '

The name of the scheduled audit.

', 'ScheduledAuditMetadata$scheduledAuditName' => '

The name of the scheduled audit.

', 'UpdateScheduledAuditRequest$scheduledAuditName' => '

The name of the scheduled audit. (Max. 128 chars)

', ], ], 'ScheduledJobRollout' => [ 'base' => '

Displays the next seven maintenance window occurrences and their start times.

', 'refs' => [ 'ScheduledJobRolloutList$member' => NULL, ], ], 'ScheduledJobRolloutList' => [ 'base' => NULL, 'refs' => [ 'Job$scheduledJobRollouts' => '

Displays the next seven maintenance window occurrences and their start times.

', ], ], 'SchedulingConfig' => [ 'base' => '

Specifies the date and time that a job will begin the rollout of the job document to all devices in the target group. Additionally, you can specify the end behavior for each job execution when it reaches the scheduled end time.

', 'refs' => [ 'CreateJobRequest$schedulingConfig' => '

The configuration that allows you to schedule a job for a future date and time in addition to specifying the end behavior for each job execution.

', 'Job$schedulingConfig' => '

The configuration that allows you to schedule a job for a future date and time in addition to specifying the end behavior for each job execution.

', ], ], 'SearchIndexRequest' => [ 'base' => NULL, 'refs' => [], ], 'SearchIndexResponse' => [ 'base' => NULL, 'refs' => [], ], 'SearchQueryMaxResults' => [ 'base' => NULL, 'refs' => [ 'SearchIndexRequest$maxResults' => '

The maximum number of results to return per page at one time. This maximum number cannot exceed 100. The response might contain fewer results but will never contain more. You can use nextToken to retrieve the next set of results until nextToken returns NULL.

', ], ], 'SearchableAttributes' => [ 'base' => NULL, 'refs' => [ 'ThingTypeProperties$searchableAttributes' => '

A list of searchable thing attribute names.

', ], ], 'Seconds' => [ 'base' => NULL, 'refs' => [ 'TestInvokeAuthorizerResponse$refreshAfterInSeconds' => '

The number of seconds after which the temporary credentials are refreshed.

', 'TestInvokeAuthorizerResponse$disconnectAfterInSeconds' => '

The number of seconds after which the connection is terminated.

', ], ], 'SecurityGroupId' => [ 'base' => NULL, 'refs' => [ 'SecurityGroupList$member' => NULL, ], ], 'SecurityGroupList' => [ 'base' => NULL, 'refs' => [ 'VpcDestinationConfiguration$securityGroups' => '

The security groups of the VPC destination.

', 'VpcDestinationProperties$securityGroups' => '

The security groups of the VPC destination.

', 'VpcDestinationSummary$securityGroups' => '

The security groups of the VPC destination.

', ], ], 'SecurityPolicy' => [ 'base' => NULL, 'refs' => [ 'TlsConfig$securityPolicy' => '

The security policy for a domain configuration. For more information, see Security policies in the Amazon Web Services IoT Core developer guide.

', ], ], 'SecurityProfileArn' => [ 'base' => NULL, 'refs' => [ 'CreateSecurityProfileResponse$securityProfileArn' => '

The ARN of the security profile.

', 'DescribeSecurityProfileResponse$securityProfileArn' => '

The ARN of the security profile.

', 'SecurityProfileIdentifier$arn' => '

The ARN of the security profile.

', 'UpdateSecurityProfileResponse$securityProfileArn' => '

The ARN of the security profile that was updated.

', ], ], 'SecurityProfileDescription' => [ 'base' => NULL, 'refs' => [ 'CreateSecurityProfileRequest$securityProfileDescription' => '

A description of the security profile.

', 'DescribeSecurityProfileResponse$securityProfileDescription' => '

A description of the security profile (associated with the security profile when it was created or updated).

', 'UpdateSecurityProfileRequest$securityProfileDescription' => '

A description of the security profile.

', 'UpdateSecurityProfileResponse$securityProfileDescription' => '

The description of the security profile.

', ], ], 'SecurityProfileIdentifier' => [ 'base' => '

Identifying information for a Device Defender security profile.

', 'refs' => [ 'SecurityProfileIdentifiers$member' => NULL, 'SecurityProfileTargetMapping$securityProfileIdentifier' => '

Information that identifies the security profile.

', ], ], 'SecurityProfileIdentifiers' => [ 'base' => NULL, 'refs' => [ 'ListSecurityProfilesResponse$securityProfileIdentifiers' => '

A list of security profile identifiers (names and ARNs).

', ], ], 'SecurityProfileName' => [ 'base' => NULL, 'refs' => [ 'ActiveViolation$securityProfileName' => '

The security profile with the behavior is in violation.

', 'AttachSecurityProfileRequest$securityProfileName' => '

The security profile that is attached.

', 'BehaviorModelTrainingSummary$securityProfileName' => '

The name of the security profile.

', 'CreateSecurityProfileRequest$securityProfileName' => '

The name you are giving to the security profile.

', 'CreateSecurityProfileResponse$securityProfileName' => '

The name you gave to the security profile.

', 'DeleteSecurityProfileRequest$securityProfileName' => '

The name of the security profile to be deleted.

', 'DescribeSecurityProfileRequest$securityProfileName' => '

The name of the security profile whose information you want to get.

', 'DescribeSecurityProfileResponse$securityProfileName' => '

The name of the security profile.

', 'DetachSecurityProfileRequest$securityProfileName' => '

The security profile that is detached.

', 'DetectMitigationActionsTaskTarget$securityProfileName' => '

The name of the security profile.

', 'GetBehaviorModelTrainingSummariesRequest$securityProfileName' => '

The name of the security profile.

', 'ListActiveViolationsRequest$securityProfileName' => '

The name of the Device Defender security profile for which violations are listed.

', 'ListTargetsForSecurityProfileRequest$securityProfileName' => '

The security profile.

', 'ListViolationEventsRequest$securityProfileName' => '

A filter to limit results to those alerts generated by the specified security profile.

', 'SecurityProfileIdentifier$name' => '

The name you\'ve given to the security profile.

', 'UpdateSecurityProfileRequest$securityProfileName' => '

The name of the security profile you want to update.

', 'UpdateSecurityProfileResponse$securityProfileName' => '

The name of the security profile that was updated.

', 'ViolationEvent$securityProfileName' => '

The name of the security profile whose behavior was violated.

', ], ], 'SecurityProfileTarget' => [ 'base' => '

A target to which an alert is sent when a security profile behavior is violated.

', 'refs' => [ 'SecurityProfileTargetMapping$target' => '

Information about the target (thing group) associated with the security profile.

', 'SecurityProfileTargets$member' => NULL, ], ], 'SecurityProfileTargetArn' => [ 'base' => NULL, 'refs' => [ 'AttachSecurityProfileRequest$securityProfileTargetArn' => '

The ARN of the target (thing group) to which the security profile is attached.

', 'DetachSecurityProfileRequest$securityProfileTargetArn' => '

The ARN of the thing group from which the security profile is detached.

', 'ListSecurityProfilesForTargetRequest$securityProfileTargetArn' => '

The ARN of the target (thing group) whose attached security profiles you want to get.

', 'SecurityProfileTarget$arn' => '

The ARN of the security profile.

', ], ], 'SecurityProfileTargetMapping' => [ 'base' => '

Information about a security profile and the target associated with it.

', 'refs' => [ 'SecurityProfileTargetMappings$member' => NULL, ], ], 'SecurityProfileTargetMappings' => [ 'base' => NULL, 'refs' => [ 'ListSecurityProfilesForTargetResponse$securityProfileTargetMappings' => '

A list of security profiles and their associated targets.

', ], ], 'SecurityProfileTargets' => [ 'base' => NULL, 'refs' => [ 'ListTargetsForSecurityProfileResponse$securityProfileTargets' => '

The thing groups to which the security profile is attached.

', ], ], 'ServerCertificateArns' => [ 'base' => NULL, 'refs' => [ 'CreateDomainConfigurationRequest$serverCertificateArns' => '

The ARNs of the certificates that IoT passes to the device during the TLS handshake. Currently you can specify only one certificate ARN. This value is not required for Amazon Web Services-managed domains.

', ], ], 'ServerCertificateConfig' => [ 'base' => '

The server certificate configuration.

', 'refs' => [ 'CreateDomainConfigurationRequest$serverCertificateConfig' => '

The server certificate configuration.

', 'DescribeDomainConfigurationResponse$serverCertificateConfig' => '

The server certificate configuration.

', 'UpdateDomainConfigurationRequest$serverCertificateConfig' => '

The server certificate configuration.

', ], ], 'ServerCertificateStatus' => [ 'base' => NULL, 'refs' => [ 'ServerCertificateSummary$serverCertificateStatus' => '

The status of the server certificate.

', ], ], 'ServerCertificateStatusDetail' => [ 'base' => NULL, 'refs' => [ 'ServerCertificateSummary$serverCertificateStatusDetail' => '

Details that explain the status of the server certificate.

', ], ], 'ServerCertificateSummary' => [ 'base' => '

An object that contains information about a server certificate.

', 'refs' => [ 'ServerCertificates$member' => NULL, ], ], 'ServerCertificates' => [ 'base' => NULL, 'refs' => [ 'DescribeDomainConfigurationResponse$serverCertificates' => '

A list containing summary information about the server certificate included in the domain configuration.

', ], ], 'ServerName' => [ 'base' => NULL, 'refs' => [ 'TlsContext$serverName' => '

The value of the serverName key in a TLS authorization request.

', ], ], 'ServiceName' => [ 'base' => NULL, 'refs' => [ 'SigV4Authorization$serviceName' => '

The service name to use while signing with Sig V4.

', ], ], 'ServiceQuotaExceededException' => [ 'base' => '

A limit has been exceeded.

', 'refs' => [], ], 'ServiceType' => [ 'base' => NULL, 'refs' => [ 'CreateDomainConfigurationRequest$serviceType' => '

The type of service delivered by the endpoint.

Amazon Web Services IoT Core currently supports only the DATA service type.

', 'DescribeDomainConfigurationResponse$serviceType' => '

The type of service delivered by the endpoint.

', 'DomainConfigurationSummary$serviceType' => '

The type of service delivered by the endpoint.

', 'ListDomainConfigurationsRequest$serviceType' => '

The type of service delivered by the endpoint.

', ], ], 'ServiceUnavailableException' => [ 'base' => '

The service is temporarily unavailable.

', 'refs' => [], ], 'SetAsActive' => [ 'base' => NULL, 'refs' => [ 'AcceptCertificateTransferRequest$setAsActive' => '

Specifies whether the certificate is active.

', 'CreateCertificateFromCsrRequest$setAsActive' => '

Specifies whether the certificate is active.

', 'CreateKeysAndCertificateRequest$setAsActive' => '

Specifies whether the certificate is active.

', 'RegisterCACertificateRequest$setAsActive' => '

A boolean value that specifies if the CA certificate is set to active.

Valid values: ACTIVE | INACTIVE

', ], ], 'SetAsActiveFlag' => [ 'base' => NULL, 'refs' => [ 'RegisterCertificateRequest$setAsActive' => '

A boolean value that specifies if the certificate is set to active.

Valid values: ACTIVE | INACTIVE

', ], ], 'SetAsDefault' => [ 'base' => NULL, 'refs' => [ 'CreatePolicyVersionRequest$setAsDefault' => '

Specifies whether the policy version is set as the default. When this parameter is true, the new policy version becomes the operative version (that is, the version that is in effect for the certificates to which the policy is attached).

', 'CreateProvisioningTemplateVersionRequest$setAsDefault' => '

Sets a fleet provision template version as the default version.

', ], ], 'SetDefaultAuthorizerRequest' => [ 'base' => NULL, 'refs' => [], ], 'SetDefaultAuthorizerResponse' => [ 'base' => NULL, 'refs' => [], ], 'SetDefaultPolicyVersionRequest' => [ 'base' => '

The input for the SetDefaultPolicyVersion operation.

', 'refs' => [], ], 'SetLoggingOptionsRequest' => [ 'base' => '

The input for the SetLoggingOptions operation.

', 'refs' => [], ], 'SetV2LoggingLevelRequest' => [ 'base' => NULL, 'refs' => [], ], 'SetV2LoggingOptionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ShadowName' => [ 'base' => NULL, 'refs' => [ 'NamedShadowNamesFilter$member' => NULL, ], ], 'SigV4Authorization' => [ 'base' => '

For more information, see Signature Version 4 signing process.

', 'refs' => [ 'HttpAuthorization$sigv4' => '

Use Sig V4 authorization. For more information, see Signature Version 4 Signing Process.

', ], ], 'Signature' => [ 'base' => NULL, 'refs' => [ 'CodeSigningSignature$inlineDocument' => '

A base64 encoded binary representation of the code signing signature.

', ], ], 'SignatureAlgorithm' => [ 'base' => NULL, 'refs' => [ 'CustomCodeSigning$signatureAlgorithm' => '

The signature algorithm used to code sign the file. You can use a string as the algorithm name if the target over-the-air (OTA) update devices are able to verify the signature that was generated using the same signature algorithm. For example, FreeRTOS uses ECDSA or RSA, so you can pass either of them based on which was used for generating the signature.

', ], ], 'SigningJobId' => [ 'base' => NULL, 'refs' => [ 'CodeSigning$awsSignerJobId' => '

The ID of the AWSSignerJob which was created to sign the file.

', ], ], 'SigningProfileName' => [ 'base' => NULL, 'refs' => [ 'StartSigningJobParameter$signingProfileName' => '

The code-signing profile name.

', ], ], 'SigningProfileParameter' => [ 'base' => '

Describes the code-signing profile.

', 'refs' => [ 'StartSigningJobParameter$signingProfileParameter' => '

Describes the code-signing profile.

', ], ], 'SigningRegion' => [ 'base' => NULL, 'refs' => [ 'SigV4Authorization$signingRegion' => '

The signing region.

', ], ], 'SkippedFindingsCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatisticsForAuditCheck$skippedFindingsCount' => '

The number of findings skipped because of filter conditions provided in the parameters to the command.

', ], ], 'SkyfallMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListV2LoggingLevelsRequest$maxResults' => '

The maximum number of results to return at one time.

', ], ], 'SnsAction' => [ 'base' => '

Describes an action to publish to an Amazon SNS topic.

', 'refs' => [ 'Action$sns' => '

Publish to an Amazon SNS topic.

', ], ], 'SnsTopicArn' => [ 'base' => NULL, 'refs' => [ 'PublishFindingToSnsParams$topicArn' => '

The ARN of the topic to which you want to publish the findings.

', ], ], 'SqlParseException' => [ 'base' => '

The Rule-SQL expression can\'t be parsed correctly.

', 'refs' => [], ], 'SqsAction' => [ 'base' => '

Describes an action to publish data to an Amazon SQS queue.

', 'refs' => [ 'Action$sqs' => '

Publish to an Amazon SQS queue.

', ], ], 'StartAuditMitigationActionsTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartAuditMitigationActionsTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'StartDetectMitigationActionsTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartDetectMitigationActionsTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'StartOnDemandAuditTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartOnDemandAuditTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'StartSigningJobParameter' => [ 'base' => '

Information required to start a signing job.

', 'refs' => [ 'CodeSigning$startSigningJobParameter' => '

Describes the code-signing job.

', ], ], 'StartThingRegistrationTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartThingRegistrationTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'StateMachineName' => [ 'base' => NULL, 'refs' => [ 'StepFunctionsAction$stateMachineName' => '

The name of the Step Functions state machine whose execution will be started.

', ], ], 'StateReason' => [ 'base' => NULL, 'refs' => [ 'CloudwatchAlarmAction$stateReason' => '

The reason for the alarm change.

', ], ], 'StateValue' => [ 'base' => NULL, 'refs' => [ 'CloudwatchAlarmAction$stateValue' => '

The value of the alarm state. Acceptable values are: OK, ALARM, INSUFFICIENT_DATA.

', ], ], 'StatisticalThreshold' => [ 'base' => '

A statistical ranking (percentile) that indicates a threshold value by which a behavior is determined to be in compliance or in violation of the behavior.

', 'refs' => [ 'BehaviorCriteria$statisticalThreshold' => '

A statistical ranking (percentile)that indicates a threshold value by which a behavior is determined to be in compliance or in violation of the behavior.

', ], ], 'Statistics' => [ 'base' => '

A map of key-value pairs for all supported statistics. For issues with missing or unexpected values for this API, consult Fleet indexing troubleshooting guide.

', 'refs' => [ 'GetStatisticsResponse$statistics' => '

The statistics returned by the Fleet Indexing service based on the query and aggregation field.

', ], ], 'Status' => [ 'base' => NULL, 'refs' => [ 'DescribeThingRegistrationTaskResponse$status' => '

The status of the bulk thing provisioning task.

', 'ListThingRegistrationTasksRequest$status' => '

The status of the bulk thing provisioning task.

', ], ], 'StdDeviation' => [ 'base' => NULL, 'refs' => [ 'Statistics$stdDeviation' => '

The standard deviation of the aggregated field values.

', ], ], 'StepFunctionsAction' => [ 'base' => '

Starts execution of a Step Functions state machine.

', 'refs' => [ 'Action$stepFunctions' => '

Starts execution of a Step Functions state machine.

', ], ], 'StopThingRegistrationTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'StopThingRegistrationTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'Stream' => [ 'base' => '

Describes a group of files that can be streamed.

', 'refs' => [ 'FileLocation$stream' => '

The stream that contains the OTA update.

', ], ], 'StreamArn' => [ 'base' => NULL, 'refs' => [ 'CreateStreamResponse$streamArn' => '

The stream ARN.

', 'StreamInfo$streamArn' => '

The stream ARN.

', 'StreamSummary$streamArn' => '

The stream ARN.

', 'UpdateStreamResponse$streamArn' => '

The stream ARN.

', ], ], 'StreamDescription' => [ 'base' => NULL, 'refs' => [ 'CreateStreamRequest$description' => '

A description of the stream.

', 'CreateStreamResponse$description' => '

A description of the stream.

', 'StreamInfo$description' => '

The description of the stream.

', 'StreamSummary$description' => '

A description of the stream.

', 'UpdateStreamRequest$description' => '

The description of the stream.

', 'UpdateStreamResponse$description' => '

A description of the stream.

', ], ], 'StreamFile' => [ 'base' => '

Represents a file to stream.

', 'refs' => [ 'StreamFiles$member' => NULL, ], ], 'StreamFiles' => [ 'base' => NULL, 'refs' => [ 'CreateStreamRequest$files' => '

The files to stream.

', 'StreamInfo$files' => '

The files to stream.

', 'UpdateStreamRequest$files' => '

The files associated with the stream.

', ], ], 'StreamId' => [ 'base' => NULL, 'refs' => [ 'CreateStreamRequest$streamId' => '

The stream ID.

', 'CreateStreamResponse$streamId' => '

The stream ID.

', 'DeleteStreamRequest$streamId' => '

The stream ID.

', 'DescribeStreamRequest$streamId' => '

The stream ID.

', 'Stream$streamId' => '

The stream ID.

', 'StreamInfo$streamId' => '

The stream ID.

', 'StreamSummary$streamId' => '

The stream ID.

', 'UpdateStreamRequest$streamId' => '

The stream ID.

', 'UpdateStreamResponse$streamId' => '

The stream ID.

', ], ], 'StreamInfo' => [ 'base' => '

Information about a stream.

', 'refs' => [ 'DescribeStreamResponse$streamInfo' => '

Information about the stream.

', ], ], 'StreamName' => [ 'base' => NULL, 'refs' => [ 'KinesisAction$streamName' => '

The name of the Amazon Kinesis stream.

', ], ], 'StreamSummary' => [ 'base' => '

A summary of a stream.

', 'refs' => [ 'StreamsSummary$member' => NULL, ], ], 'StreamVersion' => [ 'base' => NULL, 'refs' => [ 'CreateStreamResponse$streamVersion' => '

The version of the stream.

', 'StreamInfo$streamVersion' => '

The stream version.

', 'StreamSummary$streamVersion' => '

The stream version.

', 'UpdateStreamResponse$streamVersion' => '

The stream version.

', ], ], 'StreamsSummary' => [ 'base' => NULL, 'refs' => [ 'ListStreamsResponse$streams' => '

A list of streams.

', ], ], 'String' => [ 'base' => NULL, 'refs' => [ 'ClientProperties$key' => NULL, 'ClientProperties$value' => NULL, 'CloudwatchMetricAction$metricNamespace' => '

The CloudWatch metric namespace name.

', 'CloudwatchMetricAction$metricName' => '

The CloudWatch metric name.

', 'CloudwatchMetricAction$metricValue' => '

The CloudWatch metric value.

', 'CloudwatchMetricAction$metricUnit' => '

The metric unit supported by CloudWatch.

', 'CloudwatchMetricAction$metricTimestamp' => '

An optional Unix timestamp.

', 'CreateTopicRuleRequest$tags' => '

Metadata which can be used to manage the topic rule.

For URI Request parameters use format: ...key1=value1&key2=value2...

For the CLI command-line parameter use format: --tags "key1=value1&key2=value2..."

For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."

', 'KafkaAction$topic' => '

The Kafka topic for messages to be sent to the Kafka broker.

', 'KafkaAction$key' => '

The Kafka message key.

', 'KafkaAction$partition' => '

The Kafka message partition.

', 'LocationAction$trackerName' => '

The name of the tracker resource in Amazon Location in which the location is updated.

', 'LocationAction$deviceId' => '

The unique ID of the device providing the location data.

', 'LocationAction$latitude' => '

A string that evaluates to a double value that represents the latitude of the device\'s location.

', 'LocationAction$longitude' => '

A string that evaluates to a double value that represents the longitude of the device\'s location.

', 'LocationTimestamp$value' => '

An expression that returns a long epoch time value.

', 'LocationTimestamp$unit' => '

The precision of the timestamp value that results from the expression described in value.

Valid values: SECONDS | MILLISECONDS | MICROSECONDS | NANOSECONDS. The default is MILLISECONDS.

', 'StringMap$key' => NULL, 'StringMap$value' => NULL, 'TopicRuleDestination$statusReason' => '

Additional details or reason why the topic rule destination is in the current status.

', 'TopicRuleDestinationSummary$statusReason' => '

The reason the topic rule destination is in the current status.

', ], ], 'StringDateTime' => [ 'base' => NULL, 'refs' => [ 'ScheduledJobRollout$startTime' => '

Displays the start times of the next seven maintenance window occurrences.

', 'SchedulingConfig$startTime' => '

The time a job will begin rollout of the job document to all devices in the target group for a job. The startTime can be scheduled up to a year in advance and must be scheduled a minimum of thirty minutes from the current time. The date and time format for the startTime is YYYY-MM-DD for the date and HH:MM for the time.

For more information on the syntax for startTime when using an API command or the Command Line Interface, see Timestamp.

', 'SchedulingConfig$endTime' => '

The time a job will stop rollout of the job document to all devices in the target group for a job. The endTime must take place no later than two years from the current time and be scheduled a minimum of thirty minutes from the current time. The minimum duration between startTime and endTime is thirty minutes. The maximum duration between startTime and endTime is two years. The date and time format for the endTime is YYYY-MM-DD for the date and HH:MM for the time.

For more information on the syntax for endTime when using an API command or the Command Line Interface, see Timestamp.

', ], ], 'StringList' => [ 'base' => NULL, 'refs' => [ 'MetricValue$strings' => '

The string values of a metric.

', ], ], 'StringMap' => [ 'base' => NULL, 'refs' => [ 'NonCompliantResource$additionalInfo' => '

Other information about the noncompliant resource.

', 'RelatedResource$additionalInfo' => '

Other information about the resource.

', ], ], 'SubnetId' => [ 'base' => NULL, 'refs' => [ 'SubnetIdList$member' => NULL, ], ], 'SubnetIdList' => [ 'base' => NULL, 'refs' => [ 'VpcDestinationConfiguration$subnetIds' => '

The subnet IDs of the VPC destination.

', 'VpcDestinationProperties$subnetIds' => '

The subnet IDs of the VPC destination.

', 'VpcDestinationSummary$subnetIds' => '

The subnet IDs of the VPC destination.

', ], ], 'SucceededFindingsCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatisticsForAuditCheck$succeededFindingsCount' => '

The number of findings for which all mitigation actions succeeded when applied.

', ], ], 'SucceededThings' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$numberOfSucceededThings' => '

The number of things which successfully completed the job.

', ], ], 'Sum' => [ 'base' => NULL, 'refs' => [ 'Statistics$sum' => '

The sum of the aggregated field values.

', ], ], 'SumOfSquares' => [ 'base' => NULL, 'refs' => [ 'Statistics$sumOfSquares' => '

The sum of the squares of the aggregated field values.

', ], ], 'SuppressAlerts' => [ 'base' => NULL, 'refs' => [ 'Behavior$suppressAlerts' => '

Suppresses alerts.

', ], ], 'SuppressIndefinitely' => [ 'base' => NULL, 'refs' => [ 'AuditSuppression$suppressIndefinitely' => '

Indicates whether a suppression should exist indefinitely or not.

', 'CreateAuditSuppressionRequest$suppressIndefinitely' => '

Indicates whether a suppression should exist indefinitely or not.

', 'DescribeAuditSuppressionResponse$suppressIndefinitely' => '

Indicates whether a suppression should exist indefinitely or not.

', 'UpdateAuditSuppressionRequest$suppressIndefinitely' => '

Indicates whether a suppression should exist indefinitely or not.

', ], ], 'SuppressedNonCompliantResourcesCount' => [ 'base' => NULL, 'refs' => [ 'AuditCheckDetails$suppressedNonCompliantResourcesCount' => '

Describes how many of the non-compliant resources created during the evaluation of an audit check were marked as suppressed.

', ], ], 'TableName' => [ 'base' => NULL, 'refs' => [ 'DynamoDBAction$tableName' => '

The name of the DynamoDB table.

', 'PutItemInput$tableName' => '

The table where the message data will be written.

', ], ], 'Tag' => [ 'base' => '

A set of key/value pairs that are used to manage the resource.

', 'refs' => [ 'TagList$member' => NULL, ], ], 'TagKey' => [ 'base' => NULL, 'refs' => [ 'Tag$Key' => '

The tag\'s key.

', 'TagKeyList$member' => NULL, 'TagMap$key' => NULL, ], ], 'TagKeyList' => [ 'base' => NULL, 'refs' => [ 'UntagResourceRequest$tagKeys' => '

A list of the keys of the tags to be removed from the resource.

', ], ], 'TagList' => [ 'base' => NULL, 'refs' => [ 'CreateAuthorizerRequest$tags' => '

Metadata which can be used to manage the custom authorizer.

For URI Request parameters use format: ...key1=value1&key2=value2...

For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..."

For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."

', 'CreateBillingGroupRequest$tags' => '

Metadata which can be used to manage the billing group.

', 'CreateCertificateProviderRequest$tags' => '

Metadata which can be used to manage the certificate provider.

', 'CreateCustomMetricRequest$tags' => '

Metadata that can be used to manage the custom metric.

', 'CreateDimensionRequest$tags' => '

Metadata that can be used to manage the dimension.

', 'CreateDomainConfigurationRequest$tags' => '

Metadata which can be used to manage the domain configuration.

For URI Request parameters use format: ...key1=value1&key2=value2...

For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..."

For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."

', 'CreateDynamicThingGroupRequest$tags' => '

Metadata which can be used to manage the dynamic thing group.

', 'CreateFleetMetricRequest$tags' => '

Metadata, which can be used to manage the fleet metric.

', 'CreateJobRequest$tags' => '

Metadata which can be used to manage the job.

', 'CreateJobTemplateRequest$tags' => '

Metadata that can be used to manage the job template.

', 'CreateMitigationActionRequest$tags' => '

Metadata that can be used to manage the mitigation action.

', 'CreateOTAUpdateRequest$tags' => '

Metadata which can be used to manage updates.

', 'CreatePolicyRequest$tags' => '

Metadata which can be used to manage the policy.

For URI Request parameters use format: ...key1=value1&key2=value2...

For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..."

For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."

', 'CreateProvisioningTemplateRequest$tags' => '

Metadata which can be used to manage the provisioning template.

For URI Request parameters use format: ...key1=value1&key2=value2...

For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..."

For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."

', 'CreateRoleAliasRequest$tags' => '

Metadata which can be used to manage the role alias.

For URI Request parameters use format: ...key1=value1&key2=value2...

For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..."

For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."

', 'CreateScheduledAuditRequest$tags' => '

Metadata that can be used to manage the scheduled audit.

', 'CreateSecurityProfileRequest$tags' => '

Metadata that can be used to manage the security profile.

', 'CreateStreamRequest$tags' => '

Metadata which can be used to manage streams.

', 'CreateThingGroupRequest$tags' => '

Metadata which can be used to manage the thing group.

', 'CreateThingTypeRequest$tags' => '

Metadata which can be used to manage the thing type.

', 'ListTagsForResourceResponse$tags' => '

The list of tags assigned to the resource.

', 'RegisterCACertificateRequest$tags' => '

Metadata which can be used to manage the CA certificate.

For URI Request parameters use format: ...key1=value1&key2=value2...

For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..."

For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."

', 'TagResourceRequest$tags' => '

The new or modified tags for the resource.

', ], ], 'TagMap' => [ 'base' => NULL, 'refs' => [ 'CreatePackageRequest$tags' => '

Metadata that can be used to manage the package.

', 'CreatePackageVersionRequest$tags' => '

Metadata that can be used to manage the package version.

', ], ], 'TagResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'TagResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'TagValue' => [ 'base' => NULL, 'refs' => [ 'Tag$Value' => '

The tag\'s value.

', 'TagMap$value' => NULL, ], ], 'Target' => [ 'base' => NULL, 'refs' => [ 'Targets$member' => NULL, ], ], 'TargetArn' => [ 'base' => NULL, 'refs' => [ 'AuditNotificationTarget$targetArn' => '

The ARN of the target (SNS topic) to which audit notifications are sent.

', 'JobTargets$member' => NULL, 'ProvisioningHook$targetArn' => '

The ARN of the target function.

Note: Only Lambda functions are currently supported.

', ], ], 'TargetAuditCheckNames' => [ 'base' => NULL, 'refs' => [ 'CreateScheduledAuditRequest$targetCheckNames' => '

Which checks are performed during the scheduled audit. Checks must be enabled for your account. (Use DescribeAccountAuditConfiguration to see the list of all checks, including those that are enabled or use UpdateAccountAuditConfiguration to select which checks are enabled.)

', 'DescribeScheduledAuditResponse$targetCheckNames' => '

Which checks are performed during the scheduled audit. Checks must be enabled for your account. (Use DescribeAccountAuditConfiguration to see the list of all checks, including those that are enabled or use UpdateAccountAuditConfiguration to select which checks are enabled.)

', 'StartOnDemandAuditTaskRequest$targetCheckNames' => '

Which checks are performed during the audit. The checks you specify must be enabled for your account or an exception occurs. Use DescribeAccountAuditConfiguration to see the list of all checks, including those that are enabled or UpdateAccountAuditConfiguration to select which checks are enabled.

', 'UpdateScheduledAuditRequest$targetCheckNames' => '

Which checks are performed during the scheduled audit. Checks must be enabled for your account. (Use DescribeAccountAuditConfiguration to see the list of all checks, including those that are enabled or use UpdateAccountAuditConfiguration to select which checks are enabled.)

', ], ], 'TargetFieldName' => [ 'base' => NULL, 'refs' => [ 'GeoLocationTarget$name' => '

The name of the geolocation target field. If the target field is part of a named shadow, you must select the named shadow using the namedShadow filter.

', ], ], 'TargetFieldOrder' => [ 'base' => NULL, 'refs' => [ 'GeoLocationTarget$order' => '

The order of the geolocation target field. This field is optional. The default value is LatLon.

', ], ], 'TargetSelection' => [ 'base' => NULL, 'refs' => [ 'CreateJobRequest$targetSelection' => '

Specifies whether the job will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the job (SNAPSHOT). If continuous, the job may also be run on a thing when a change is detected in a target. For example, a job will run on a thing when the thing is added to a target group, even after the job was completed by all things originally in the group.

We recommend that you use continuous jobs instead of snapshot jobs for dynamic thing group targets. By using continuous jobs, devices that join the group receive the job execution even after the job has been created.

', 'CreateOTAUpdateRequest$targetSelection' => '

Specifies whether the update will continue to run (CONTINUOUS), or will be complete after all the things specified as targets have completed the update (SNAPSHOT). If continuous, the update may also be run on a thing when a change is detected in a target. For example, an update will run on a thing when the thing is added to a target group, even after the update was completed by all things originally in the group. Valid values: CONTINUOUS | SNAPSHOT.

', 'Job$targetSelection' => '

Specifies whether the job will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the job (SNAPSHOT). If continuous, the job may also be run on a thing when a change is detected in a target. For example, a job will run on a device when the thing representing the device is added to a target group, even after the job was completed by all things originally in the group.

We recommend that you use continuous jobs instead of snapshot jobs for dynamic thing group targets. By using continuous jobs, devices that join the group receive the job execution even after the job has been created.

', 'JobSummary$targetSelection' => '

Specifies whether the job will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the job (SNAPSHOT). If continuous, the job may also be run on a thing when a change is detected in a target. For example, a job will run on a thing when the thing is added to a target group, even after the job was completed by all things originally in the group.

We recommend that you use continuous jobs instead of snapshot jobs for dynamic thing group targets. By using continuous jobs, devices that join the group receive the job execution even after the job has been created.

', 'ListJobsRequest$targetSelection' => '

Specifies whether the job will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the job (SNAPSHOT). If continuous, the job may also be run on a thing when a change is detected in a target. For example, a job will run on a thing when the thing is added to a target group, even after the job was completed by all things originally in the group.

We recommend that you use continuous jobs instead of snapshot jobs for dynamic thing group targets. By using continuous jobs, devices that join the group receive the job execution even after the job has been created.

', 'OTAUpdateInfo$targetSelection' => '

Specifies whether the OTA update will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the OTA update (SNAPSHOT). If continuous, the OTA update may also be run on a thing when a change is detected in a target. For example, an OTA update will run on a thing when the thing is added to a target group, even after the OTA update was completed by all things originally in the group.

', ], ], 'TargetViolationIdsForDetectMitigationActions' => [ 'base' => NULL, 'refs' => [ 'DetectMitigationActionsTaskTarget$violationIds' => '

The unique identifiers of the violations.

', ], ], 'Targets' => [ 'base' => NULL, 'refs' => [ 'CreateOTAUpdateRequest$targets' => '

The devices targeted to receive OTA updates.

', 'OTAUpdateInfo$targets' => '

The targets of the OTA update.

', ], ], 'TaskAlreadyExistsException' => [ 'base' => '

This exception occurs if you attempt to start a task with the same task-id as an existing task but with a different clientRequestToken.

', 'refs' => [], ], 'TaskId' => [ 'base' => NULL, 'refs' => [ 'DescribeThingRegistrationTaskRequest$taskId' => '

The task ID.

', 'DescribeThingRegistrationTaskResponse$taskId' => '

The task ID.

', 'ListThingRegistrationTaskReportsRequest$taskId' => '

The id of the task.

', 'StartThingRegistrationTaskResponse$taskId' => '

The bulk thing provisioning task ID.

', 'StopThingRegistrationTaskRequest$taskId' => '

The bulk thing provisioning task ID.

', 'TaskIdList$member' => NULL, ], ], 'TaskIdList' => [ 'base' => NULL, 'refs' => [ 'ListThingRegistrationTasksResponse$taskIds' => '

A list of bulk thing provisioning task IDs.

', ], ], 'TaskStatistics' => [ 'base' => '

Statistics for the checks performed during the audit.

', 'refs' => [ 'DescribeAuditTaskResponse$taskStatistics' => '

Statistical information about the audit.

', ], ], 'TaskStatisticsForAuditCheck' => [ 'base' => '

Provides summary counts of how many tasks for findings are in a particular state. This information is included in the response from DescribeAuditMitigationActionsTask.

', 'refs' => [ 'AuditMitigationActionsTaskStatistics$value' => NULL, ], ], 'TemplateArn' => [ 'base' => NULL, 'refs' => [ 'CreateProvisioningTemplateResponse$templateArn' => '

The ARN that identifies the provisioning template.

', 'CreateProvisioningTemplateVersionResponse$templateArn' => '

The ARN that identifies the provisioning template.

', 'DescribeProvisioningTemplateResponse$templateArn' => '

The ARN of the provisioning template.

', 'ProvisioningTemplateSummary$templateArn' => '

The ARN of the provisioning template.

', ], ], 'TemplateBody' => [ 'base' => NULL, 'refs' => [ 'CreateProvisioningTemplateRequest$templateBody' => '

The JSON formatted contents of the provisioning template.

', 'CreateProvisioningTemplateVersionRequest$templateBody' => '

The JSON formatted contents of the provisioning template.

', 'DescribeProvisioningTemplateResponse$templateBody' => '

The JSON formatted contents of the provisioning template.

', 'DescribeProvisioningTemplateVersionResponse$templateBody' => '

The JSON formatted contents of the provisioning template version.

', 'DescribeThingRegistrationTaskResponse$templateBody' => '

The task\'s template.

', 'RegisterThingRequest$templateBody' => '

The provisioning template. See Provisioning Devices That Have Device Certificates for more information.

', 'RegistrationConfig$templateBody' => '

The template body.

', 'StartThingRegistrationTaskRequest$templateBody' => '

The provisioning template.

', ], ], 'TemplateDescription' => [ 'base' => NULL, 'refs' => [ 'CreateProvisioningTemplateRequest$description' => '

The description of the provisioning template.

', 'DescribeProvisioningTemplateResponse$description' => '

The description of the provisioning template.

', 'ProvisioningTemplateSummary$description' => '

The description of the provisioning template.

', 'UpdateProvisioningTemplateRequest$description' => '

The description of the provisioning template.

', ], ], 'TemplateName' => [ 'base' => NULL, 'refs' => [ 'CreateProvisioningClaimRequest$templateName' => '

The name of the provisioning template to use.

', 'CreateProvisioningTemplateRequest$templateName' => '

The name of the provisioning template.

', 'CreateProvisioningTemplateResponse$templateName' => '

The name of the provisioning template.

', 'CreateProvisioningTemplateVersionRequest$templateName' => '

The name of the provisioning template.

', 'CreateProvisioningTemplateVersionResponse$templateName' => '

The name of the provisioning template.

', 'DeleteProvisioningTemplateRequest$templateName' => '

The name of the fleet provision template to delete.

', 'DeleteProvisioningTemplateVersionRequest$templateName' => '

The name of the provisioning template version to delete.

', 'DescribeProvisioningTemplateRequest$templateName' => '

The name of the provisioning template.

', 'DescribeProvisioningTemplateResponse$templateName' => '

The name of the provisioning template.

', 'DescribeProvisioningTemplateVersionRequest$templateName' => '

The template name.

', 'ListCACertificatesRequest$templateName' => '

The name of the provisioning template.

', 'ListProvisioningTemplateVersionsRequest$templateName' => '

The name of the provisioning template.

', 'ProvisioningTemplateSummary$templateName' => '

The name of the provisioning template.

', 'RegistrationConfig$templateName' => '

The name of the provisioning template.

', 'UpdateProvisioningTemplateRequest$templateName' => '

The name of the provisioning template.

', ], ], 'TemplateType' => [ 'base' => NULL, 'refs' => [ 'CreateProvisioningTemplateRequest$type' => '

The type you define in a provisioning template. You can create a template with only one type. You can\'t change the template type after its creation. The default value is FLEET_PROVISIONING. For more information about provisioning template, see: Provisioning template.

', 'DescribeProvisioningTemplateResponse$type' => '

The type you define in a provisioning template. You can create a template with only one type. You can\'t change the template type after its creation. The default value is FLEET_PROVISIONING. For more information about provisioning template, see: Provisioning template.

', 'ProvisioningTemplateSummary$type' => '

The type you define in a provisioning template. You can create a template with only one type. You can\'t change the template type after its creation. The default value is FLEET_PROVISIONING. For more information about provisioning template, see: Provisioning template.

', ], ], 'TemplateVersionId' => [ 'base' => NULL, 'refs' => [ 'CreateProvisioningTemplateResponse$defaultVersionId' => '

The default version of the provisioning template.

', 'CreateProvisioningTemplateVersionResponse$versionId' => '

The version of the provisioning template.

', 'DeleteProvisioningTemplateVersionRequest$versionId' => '

The provisioning template version ID to delete.

', 'DescribeProvisioningTemplateResponse$defaultVersionId' => '

The default fleet template version ID.

', 'DescribeProvisioningTemplateVersionRequest$versionId' => '

The provisioning template version ID.

', 'DescribeProvisioningTemplateVersionResponse$versionId' => '

The provisioning template version ID.

', 'ProvisioningTemplateVersionSummary$versionId' => '

The ID of the fleet provisioning template version.

', 'UpdateProvisioningTemplateRequest$defaultVersionId' => '

The ID of the default provisioning template version.

', ], ], 'TermsAggregation' => [ 'base' => '

Performs an aggregation that will return a list of buckets. The list of buckets is a ranked list of the number of occurrences of an aggregation field value.

', 'refs' => [ 'BucketsAggregationType$termsAggregation' => '

Performs an aggregation that will return a list of buckets. The list of buckets is a ranked list of the number of occurrences of an aggregation field value.

', ], ], 'TestAuthorizationRequest' => [ 'base' => NULL, 'refs' => [], ], 'TestAuthorizationResponse' => [ 'base' => NULL, 'refs' => [], ], 'TestInvokeAuthorizerRequest' => [ 'base' => NULL, 'refs' => [], ], 'TestInvokeAuthorizerResponse' => [ 'base' => NULL, 'refs' => [], ], 'ThingArn' => [ 'base' => NULL, 'refs' => [ 'AddThingToBillingGroupRequest$thingArn' => '

The ARN of the thing to be added to the billing group.

', 'AddThingToThingGroupRequest$thingArn' => '

The ARN of the thing to add to a group.

', 'CreateThingResponse$thingArn' => '

The ARN of the new thing.

', 'DescribeThingResponse$thingArn' => '

The ARN of the thing to describe.

', 'JobExecution$thingArn' => '

The ARN of the thing on which the job execution is running.

', 'JobExecutionSummaryForJob$thingArn' => '

The ARN of the thing on which the job execution is running.

', 'RemoveThingFromBillingGroupRequest$thingArn' => '

The ARN of the thing to be removed from the billing group.

', 'RemoveThingFromThingGroupRequest$thingArn' => '

The ARN of the thing to remove from the group.

', 'ThingAttribute$thingArn' => '

The thing ARN.

', ], ], 'ThingAttribute' => [ 'base' => '

The properties of the thing, including thing name, thing type name, and a list of thing attributes.

', 'refs' => [ 'ThingAttributeList$member' => NULL, ], ], 'ThingAttributeList' => [ 'base' => NULL, 'refs' => [ 'ListThingsResponse$things' => '

The things.

', ], ], 'ThingConnectivity' => [ 'base' => '

The connectivity status of the thing.

', 'refs' => [ 'ThingDocument$connectivity' => '

Indicates whether the thing is connected to the Amazon Web Services IoT Core service.

', ], ], 'ThingConnectivityIndexingMode' => [ 'base' => NULL, 'refs' => [ 'ThingIndexingConfiguration$thingConnectivityIndexingMode' => '

Thing connectivity indexing mode. Valid values are:

  • STATUS – Your thing index contains connectivity status. To enable thing connectivity indexing, thingIndexMode must not be set to OFF.

  • OFF - Thing connectivity status indexing is disabled.

', ], ], 'ThingDocument' => [ 'base' => '

The thing search index document.

', 'refs' => [ 'ThingDocumentList$member' => NULL, ], ], 'ThingDocumentList' => [ 'base' => NULL, 'refs' => [ 'SearchIndexResponse$things' => '

The things that match the search query.

', ], ], 'ThingGroupArn' => [ 'base' => NULL, 'refs' => [ 'AddThingToThingGroupRequest$thingGroupArn' => '

The ARN of the group to which you are adding a thing.

', 'CreateDynamicThingGroupResponse$thingGroupArn' => '

The dynamic thing group ARN.

', 'CreateThingGroupResponse$thingGroupArn' => '

The thing group ARN.

', 'DescribeThingGroupResponse$thingGroupArn' => '

The thing group ARN.

', 'GroupNameAndArn$groupArn' => '

The group ARN.

', 'RemoveThingFromThingGroupRequest$thingGroupArn' => '

The group ARN.

', ], ], 'ThingGroupDescription' => [ 'base' => NULL, 'refs' => [ 'ThingGroupDocument$thingGroupDescription' => '

The thing group description.

', 'ThingGroupProperties$thingGroupDescription' => '

The thing group description.

', ], ], 'ThingGroupDocument' => [ 'base' => '

The thing group search index document.

', 'refs' => [ 'ThingGroupDocumentList$member' => NULL, ], ], 'ThingGroupDocumentList' => [ 'base' => NULL, 'refs' => [ 'SearchIndexResponse$thingGroups' => '

The thing groups that match the search query.

', ], ], 'ThingGroupId' => [ 'base' => NULL, 'refs' => [ 'CreateDynamicThingGroupResponse$thingGroupId' => '

The dynamic thing group ID.

', 'CreateThingGroupResponse$thingGroupId' => '

The thing group ID.

', 'DescribeThingGroupResponse$thingGroupId' => '

The thing group ID.

', 'JobSummary$thingGroupId' => '

The ID of the thing group.

', 'ListJobsRequest$thingGroupId' => '

A filter that limits the returned jobs to those for the specified group.

', 'ThingGroupDocument$thingGroupId' => '

The thing group ID.

', ], ], 'ThingGroupIndexingConfiguration' => [ 'base' => '

Thing group indexing configuration.

', 'refs' => [ 'GetIndexingConfigurationResponse$thingGroupIndexingConfiguration' => '

The index configuration.

', 'UpdateIndexingConfigurationRequest$thingGroupIndexingConfiguration' => '

Thing group indexing configuration.

', ], ], 'ThingGroupIndexingMode' => [ 'base' => NULL, 'refs' => [ 'ThingGroupIndexingConfiguration$thingGroupIndexingMode' => '

Thing group indexing mode.

', ], ], 'ThingGroupList' => [ 'base' => NULL, 'refs' => [ 'UpdateThingGroupsForThingRequest$thingGroupsToAdd' => '

The groups to which the thing will be added.

', 'UpdateThingGroupsForThingRequest$thingGroupsToRemove' => '

The groups from which the thing will be removed.

', ], ], 'ThingGroupMetadata' => [ 'base' => '

Thing group metadata.

', 'refs' => [ 'DescribeThingGroupResponse$thingGroupMetadata' => '

Thing group metadata.

', ], ], 'ThingGroupName' => [ 'base' => NULL, 'refs' => [ 'AddThingToThingGroupRequest$thingGroupName' => '

The name of the group to which you are adding a thing.

', 'CreateDynamicThingGroupRequest$thingGroupName' => '

The dynamic thing group name to create.

', 'CreateDynamicThingGroupResponse$thingGroupName' => '

The dynamic thing group name.

', 'CreateThingGroupRequest$thingGroupName' => '

The thing group name to create.

', 'CreateThingGroupRequest$parentGroupName' => '

The name of the parent thing group.

', 'CreateThingGroupResponse$thingGroupName' => '

The thing group name.

', 'DeleteDynamicThingGroupRequest$thingGroupName' => '

The name of the dynamic thing group to delete.

', 'DeleteThingGroupRequest$thingGroupName' => '

The name of the thing group to delete.

', 'DescribeThingGroupRequest$thingGroupName' => '

The name of the thing group.

', 'DescribeThingGroupResponse$thingGroupName' => '

The name of the thing group.

', 'GroupNameAndArn$groupName' => '

The group name.

', 'ListJobsRequest$thingGroupName' => '

A filter that limits the returned jobs to those for the specified group.

', 'ListThingGroupsRequest$parentGroup' => '

A filter that limits the results to those with the specified parent group.

', 'ListThingGroupsRequest$namePrefixFilter' => '

A filter that limits the results to those with the specified name prefix.

', 'ListThingsInThingGroupRequest$thingGroupName' => '

The thing group name.

', 'RemoveThingFromThingGroupRequest$thingGroupName' => '

The group name.

', 'ThingGroupDocument$thingGroupName' => '

The thing group name.

', 'ThingGroupList$member' => NULL, 'ThingGroupMetadata$parentGroupName' => '

The parent thing group name.

', 'ThingGroupNameList$member' => NULL, 'ThingGroupNames$member' => NULL, 'UpdateDynamicThingGroupRequest$thingGroupName' => '

The name of the dynamic thing group to update.

', 'UpdateThingGroupRequest$thingGroupName' => '

The thing group to update.

', ], ], 'ThingGroupNameAndArnList' => [ 'base' => NULL, 'refs' => [ 'ListThingGroupsForThingResponse$thingGroups' => '

The thing groups.

', 'ListThingGroupsResponse$thingGroups' => '

The thing groups.

', 'ThingGroupMetadata$rootToParentThingGroups' => '

The root parent thing group.

', ], ], 'ThingGroupNameList' => [ 'base' => NULL, 'refs' => [ 'ThingDocument$thingGroupNames' => '

Thing group names.

', 'ThingGroupDocument$parentGroupNames' => '

Parent group names.

', ], ], 'ThingGroupNames' => [ 'base' => NULL, 'refs' => [ 'AddThingsToThingGroupParams$thingGroupNames' => '

The list of groups to which you want to add the things that triggered the mitigation action. You can add a thing to a maximum of 10 groups, but you can\'t add a thing to more than one group in the same hierarchy.

', ], ], 'ThingGroupProperties' => [ 'base' => '

Thing group properties.

', 'refs' => [ 'CreateDynamicThingGroupRequest$thingGroupProperties' => '

The dynamic thing group properties.

', 'CreateThingGroupRequest$thingGroupProperties' => '

The thing group properties.

', 'DescribeThingGroupResponse$thingGroupProperties' => '

The thing group properties.

', 'UpdateDynamicThingGroupRequest$thingGroupProperties' => '

The dynamic thing group properties to update.

', 'UpdateThingGroupRequest$thingGroupProperties' => '

The thing group properties.

', ], ], 'ThingId' => [ 'base' => NULL, 'refs' => [ 'CreateThingResponse$thingId' => '

The thing ID.

', 'DescribeThingResponse$thingId' => '

The ID of the thing to describe.

', 'ThingDocument$thingId' => '

The thing ID.

', ], ], 'ThingIndexingConfiguration' => [ 'base' => '

The thing indexing configuration. For more information, see Managing Thing Indexing.

', 'refs' => [ 'GetIndexingConfigurationResponse$thingIndexingConfiguration' => '

Thing indexing configuration.

', 'UpdateIndexingConfigurationRequest$thingIndexingConfiguration' => '

Thing indexing configuration.

', ], ], 'ThingIndexingMode' => [ 'base' => NULL, 'refs' => [ 'ThingIndexingConfiguration$thingIndexingMode' => '

Thing indexing mode. Valid values are:

  • REGISTRY – Your thing index contains registry data only.

  • REGISTRY_AND_SHADOW - Your thing index contains registry and shadow data.

  • OFF - Thing indexing is disabled.

', ], ], 'ThingName' => [ 'base' => NULL, 'refs' => [ 'AddThingToBillingGroupRequest$thingName' => '

The name of the thing to be added to the billing group.

', 'AddThingToThingGroupRequest$thingName' => '

The name of the thing to add to a group.

', 'AttachThingPrincipalRequest$thingName' => '

The name of the thing.

', 'CancelJobExecutionRequest$thingName' => '

The name of the thing whose execution of the job will be canceled.

', 'CreateThingRequest$thingName' => '

The name of the thing to create.

You can\'t change a thing\'s name after you create it. To change a thing\'s name, you must create a new thing, give it the new name, and then delete the old thing.

', 'CreateThingResponse$thingName' => '

The name of the new thing.

', 'DeleteJobExecutionRequest$thingName' => '

The name of the thing whose job execution will be deleted.

', 'DeleteThingRequest$thingName' => '

The name of the thing to delete.

', 'DescribeJobExecutionRequest$thingName' => '

The name of the thing on which the job execution is running.

', 'DescribeThingRequest$thingName' => '

The name of the thing.

', 'DescribeThingResponse$thingName' => '

The name of the thing.

', 'DetachThingPrincipalRequest$thingName' => '

The name of the thing.

', 'GetEffectivePoliciesRequest$thingName' => '

The thing name.

', 'ListJobExecutionsForThingRequest$thingName' => '

The thing name.

', 'ListThingGroupsForThingRequest$thingName' => '

The thing name.

', 'ListThingPrincipalsRequest$thingName' => '

The name of the thing.

', 'RemoveThingFromBillingGroupRequest$thingName' => '

The name of the thing to be removed from the billing group.

', 'RemoveThingFromThingGroupRequest$thingName' => '

The name of the thing to remove from the group.

', 'ThingAttribute$thingName' => '

The name of the thing.

', 'ThingDocument$thingName' => '

The thing name.

', 'ThingNameList$member' => NULL, 'UpdateThingGroupsForThingRequest$thingName' => '

The thing whose group memberships will be updated.

', 'UpdateThingRequest$thingName' => '

The name of the thing to update.

You can\'t change a thing\'s name. To change a thing\'s name, you must create a new thing, give it the new name, and then delete the old thing.

', ], ], 'ThingNameList' => [ 'base' => NULL, 'refs' => [ 'ListPrincipalThingsResponse$things' => '

The things.

', 'ListThingsInBillingGroupResponse$things' => '

A list of things in the billing group.

', 'ListThingsInThingGroupResponse$things' => '

The things in the specified thing group.

', ], ], 'ThingTypeArn' => [ 'base' => NULL, 'refs' => [ 'CreateThingTypeResponse$thingTypeArn' => '

The Amazon Resource Name (ARN) of the thing type.

', 'DescribeThingTypeResponse$thingTypeArn' => '

The thing type ARN.

', 'ThingTypeDefinition$thingTypeArn' => '

The thing type ARN.

', ], ], 'ThingTypeDefinition' => [ 'base' => '

The definition of the thing type, including thing type name and description.

', 'refs' => [ 'ThingTypeList$member' => NULL, ], ], 'ThingTypeDescription' => [ 'base' => NULL, 'refs' => [ 'ThingTypeProperties$thingTypeDescription' => '

The description of the thing type.

', ], ], 'ThingTypeId' => [ 'base' => NULL, 'refs' => [ 'CreateThingTypeResponse$thingTypeId' => '

The thing type ID.

', 'DescribeThingTypeResponse$thingTypeId' => '

The thing type ID.

', ], ], 'ThingTypeList' => [ 'base' => NULL, 'refs' => [ 'ListThingTypesResponse$thingTypes' => '

The thing types.

', ], ], 'ThingTypeMetadata' => [ 'base' => '

The ThingTypeMetadata contains additional information about the thing type including: creation date and time, a value indicating whether the thing type is deprecated, and a date and time when time was deprecated.

', 'refs' => [ 'DescribeThingTypeResponse$thingTypeMetadata' => '

The ThingTypeMetadata contains additional information about the thing type including: creation date and time, a value indicating whether the thing type is deprecated, and a date and time when it was deprecated.

', 'ThingTypeDefinition$thingTypeMetadata' => '

The ThingTypeMetadata contains additional information about the thing type including: creation date and time, a value indicating whether the thing type is deprecated, and a date and time when it was deprecated.

', ], ], 'ThingTypeName' => [ 'base' => NULL, 'refs' => [ 'CreateThingRequest$thingTypeName' => '

The name of the thing type associated with the new thing.

', 'CreateThingTypeRequest$thingTypeName' => '

The name of the thing type.

', 'CreateThingTypeResponse$thingTypeName' => '

The name of the thing type.

', 'DeleteThingTypeRequest$thingTypeName' => '

The name of the thing type.

', 'DeprecateThingTypeRequest$thingTypeName' => '

The name of the thing type to deprecate.

', 'DescribeThingResponse$thingTypeName' => '

The thing type name.

', 'DescribeThingTypeRequest$thingTypeName' => '

The name of the thing type.

', 'DescribeThingTypeResponse$thingTypeName' => '

The name of the thing type.

', 'ListThingTypesRequest$thingTypeName' => '

The name of the thing type.

', 'ListThingsRequest$thingTypeName' => '

The name of the thing type used to search for things.

', 'ThingAttribute$thingTypeName' => '

The name of the thing type, if the thing has been associated with a type.

', 'ThingDocument$thingTypeName' => '

The thing type name.

', 'ThingTypeDefinition$thingTypeName' => '

The name of the thing type.

', 'UpdateThingRequest$thingTypeName' => '

The name of the thing type.

', ], ], 'ThingTypeProperties' => [ 'base' => '

The ThingTypeProperties contains information about the thing type including: a thing type description, and a list of searchable thing attribute names.

', 'refs' => [ 'CreateThingTypeRequest$thingTypeProperties' => '

The ThingTypeProperties for the thing type to create. It contains information about the new thing type including a description, and a list of searchable thing attribute names.

', 'DescribeThingTypeResponse$thingTypeProperties' => '

The ThingTypeProperties contains information about the thing type including description, and a list of searchable thing attribute names.

', 'ThingTypeDefinition$thingTypeProperties' => '

The ThingTypeProperties for the thing type.

', ], ], 'ThrottlingException' => [ 'base' => '

The rate exceeds the limit.

', 'refs' => [], ], 'TimedOutThings' => [ 'base' => NULL, 'refs' => [ 'JobProcessDetails$numberOfTimedOutThings' => '

The number of things whose job execution status is TIMED_OUT.

', ], ], 'TimeoutConfig' => [ 'base' => '

Specifies the amount of time each device has to finish its execution of the job. A timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the timer expires, it will be automatically set to TIMED_OUT.

', 'refs' => [ 'CreateJobRequest$timeoutConfig' => '

Specifies the amount of time each device has to finish its execution of the job. The timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the time expires, it will be automatically set to TIMED_OUT.

', 'CreateJobTemplateRequest$timeoutConfig' => NULL, 'DescribeJobTemplateResponse$timeoutConfig' => NULL, 'Job$timeoutConfig' => '

Specifies the amount of time each device has to finish its execution of the job. A timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the timer expires, it will be automatically set to TIMED_OUT.

', 'UpdateJobRequest$timeoutConfig' => '

Specifies the amount of time each device has to finish its execution of the job. The timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the time expires, it will be automatically set to TIMED_OUT.

', ], ], 'Timestamp' => [ 'base' => NULL, 'refs' => [ 'ActiveViolation$lastViolationTime' => '

The time the most recent violation occurred.

', 'ActiveViolation$violationStartTime' => '

The time the violation started.

', 'AuditFinding$taskStartTime' => '

The time the audit started.

', 'AuditFinding$findingTime' => '

The time the result (finding) was discovered.

', 'AuditMitigationActionExecutionMetadata$startTime' => '

The date and time when the task was started.

', 'AuditMitigationActionExecutionMetadata$endTime' => '

The date and time when the task was completed or canceled. Blank if the task is still running.

', 'AuditMitigationActionsTaskMetadata$startTime' => '

The time at which the audit mitigation actions task was started.

', 'AuditSuppression$expirationDate' => '

The expiration date (epoch timestamp in seconds) that you want the suppression to adhere to.

', 'BehaviorModelTrainingSummary$trainingDataCollectionStartDate' => '

The date a training model started collecting data.

', 'BehaviorModelTrainingSummary$lastModelRefreshDate' => '

The date the model was last refreshed.

', 'CreateAuditSuppressionRequest$expirationDate' => '

The epoch timestamp in seconds at which this suppression expires.

', 'DescribeAuditMitigationActionsTaskResponse$startTime' => '

The date and time when the task was started.

', 'DescribeAuditMitigationActionsTaskResponse$endTime' => '

The date and time when the task was completed or canceled.

', 'DescribeAuditSuppressionResponse$expirationDate' => '

The epoch timestamp in seconds at which this suppression expires.

', 'DescribeAuditTaskResponse$taskStartTime' => '

The time the audit started.

', 'DescribeCustomMetricResponse$creationDate' => '

The creation date of the custom metric in milliseconds since epoch.

', 'DescribeCustomMetricResponse$lastModifiedDate' => '

The time the custom metric was last modified in milliseconds since epoch.

', 'DescribeDimensionResponse$creationDate' => '

The date the dimension was created.

', 'DescribeDimensionResponse$lastModifiedDate' => '

The date the dimension was last modified.

', 'DescribeMitigationActionResponse$creationDate' => '

The date and time when the mitigation action was added to your Amazon Web Services accounts.

', 'DescribeMitigationActionResponse$lastModifiedDate' => '

The date and time when the mitigation action was last changed.

', 'DescribeSecurityProfileResponse$creationDate' => '

The time the security profile was created.

', 'DescribeSecurityProfileResponse$lastModifiedDate' => '

The time the security profile was last modified.

', 'DetectMitigationActionExecution$executionStartDate' => '

The date a mitigation action was started.

', 'DetectMitigationActionExecution$executionEndDate' => '

The date a mitigation action ended.

', 'DetectMitigationActionsTaskSummary$taskStartTime' => '

The date the task started.

', 'DetectMitigationActionsTaskSummary$taskEndTime' => '

The date the task ended.

', 'ListAuditFindingsRequest$startTime' => '

A filter to limit results to those found after the specified time. You must specify either the startTime and endTime or the taskId, but not both.

', 'ListAuditFindingsRequest$endTime' => '

A filter to limit results to those found before the specified time. You must specify either the startTime and endTime or the taskId, but not both.

', 'ListAuditMitigationActionsTasksRequest$startTime' => '

Specify this filter to limit results to tasks that began on or after a specific date and time.

', 'ListAuditMitigationActionsTasksRequest$endTime' => '

Specify this filter to limit results to tasks that were completed or canceled on or before a specific date and time.

', 'ListAuditTasksRequest$startTime' => '

The beginning of the time period. Audit information is retained for a limited time (90 days). Requesting a start time prior to what is retained results in an "InvalidRequestException".

', 'ListAuditTasksRequest$endTime' => '

The end of the time period.

', 'ListDetectMitigationActionsExecutionsRequest$startTime' => '

A filter to limit results to those found after the specified time. You must specify either the startTime and endTime or the taskId, but not both.

', 'ListDetectMitigationActionsExecutionsRequest$endTime' => '

The end of the time period for which ML Detect mitigation actions executions are returned.

', 'ListDetectMitigationActionsTasksRequest$startTime' => '

A filter to limit results to those found after the specified time. You must specify either the startTime and endTime or the taskId, but not both.

', 'ListDetectMitigationActionsTasksRequest$endTime' => '

The end of the time period for which ML Detect mitigation actions tasks are returned.

', 'ListMetricValuesRequest$startTime' => '

The start of the time period for which metric values are returned.

', 'ListMetricValuesRequest$endTime' => '

The end of the time period for which metric values are returned.

', 'ListViolationEventsRequest$startTime' => '

The start time for the alerts to be listed.

', 'ListViolationEventsRequest$endTime' => '

The end time for the alerts to be listed.

', 'MetricDatum$timestamp' => '

The time the metric value was reported.

', 'MitigationActionIdentifier$creationDate' => '

The date when this mitigation action was created.

', 'UpdateAuditSuppressionRequest$expirationDate' => '

The expiration date (epoch timestamp in seconds) that you want the suppression to adhere to.

', 'UpdateCustomMetricResponse$creationDate' => '

The creation date of the custom metric in milliseconds since epoch.

', 'UpdateCustomMetricResponse$lastModifiedDate' => '

The time the custom metric was last modified in milliseconds since epoch.

', 'UpdateDimensionResponse$creationDate' => '

The date and time, in milliseconds since epoch, when the dimension was initially created.

', 'UpdateDimensionResponse$lastModifiedDate' => '

The date and time, in milliseconds since epoch, when the dimension was most recently updated.

', 'UpdateSecurityProfileResponse$creationDate' => '

The time the security profile was created.

', 'UpdateSecurityProfileResponse$lastModifiedDate' => '

The time the security profile was last modified.

', 'ViolationEvent$violationEventTime' => '

The time the violation event occurred.

', 'ViolationEventOccurrenceRange$startTime' => '

The start date and time of a time period in which violation events occurred.

', 'ViolationEventOccurrenceRange$endTime' => '

The end date and time of a time period in which violation events occurred.

', ], ], 'TimestreamAction' => [ 'base' => '

The Timestream rule action writes attributes (measures) from an MQTT message into an Amazon Timestream table. For more information, see the Timestream topic rule action documentation.

', 'refs' => [ 'Action$timestream' => '

The Timestream rule action writes attributes (measures) from an MQTT message into an Amazon Timestream table. For more information, see the Timestream topic rule action documentation.

', ], ], 'TimestreamDatabaseName' => [ 'base' => NULL, 'refs' => [ 'TimestreamAction$databaseName' => '

The name of an Amazon Timestream database.

', ], ], 'TimestreamDimension' => [ 'base' => '

Metadata attributes of the time series that are written in each measure record.

', 'refs' => [ 'TimestreamDimensionList$member' => NULL, ], ], 'TimestreamDimensionList' => [ 'base' => NULL, 'refs' => [ 'TimestreamAction$dimensions' => '

Metadata attributes of the time series that are written in each measure record.

', ], ], 'TimestreamDimensionName' => [ 'base' => NULL, 'refs' => [ 'TimestreamDimension$name' => '

The metadata dimension name. This is the name of the column in the Amazon Timestream database table record.

Dimensions cannot be named: measure_name, measure_value, or time. These names are reserved. Dimension names cannot start with ts_ or measure_value and they cannot contain the colon (:) character.

', ], ], 'TimestreamDimensionValue' => [ 'base' => NULL, 'refs' => [ 'TimestreamDimension$value' => '

The value to write in this column of the database record.

', ], ], 'TimestreamTableName' => [ 'base' => NULL, 'refs' => [ 'TimestreamAction$tableName' => '

The name of the database table into which to write the measure records.

', ], ], 'TimestreamTimestamp' => [ 'base' => '

Describes how to interpret an application-defined timestamp value from an MQTT message payload and the precision of that value.

', 'refs' => [ 'TimestreamAction$timestamp' => '

Specifies an application-defined value to replace the default value assigned to the Timestream record\'s timestamp in the time column.

You can use this property to specify the value and the precision of the Timestream record\'s timestamp. You can specify a value from the message payload or a value computed by a substitution template.

If omitted, the topic rule action assigns the timestamp, in milliseconds, at the time it processed the rule.

', ], ], 'TimestreamTimestampUnit' => [ 'base' => NULL, 'refs' => [ 'TimestreamTimestamp$unit' => '

The precision of the timestamp value that results from the expression described in value.

Valid values: SECONDS | MILLISECONDS | MICROSECONDS | NANOSECONDS. The default is MILLISECONDS.

', ], ], 'TimestreamTimestampValue' => [ 'base' => NULL, 'refs' => [ 'TimestreamTimestamp$value' => '

An expression that returns a long epoch time value.

', ], ], 'TinyMaxResults' => [ 'base' => NULL, 'refs' => [ 'GetBehaviorModelTrainingSummariesRequest$maxResults' => '

The maximum number of results to return at one time. The default is 10.

', ], ], 'TlsConfig' => [ 'base' => '

An object that specifies the TLS configuration for a domain.

', 'refs' => [ 'CreateDomainConfigurationRequest$tlsConfig' => '

An object that specifies the TLS configuration for a domain.

', 'DescribeDomainConfigurationResponse$tlsConfig' => '

An object that specifies the TLS configuration for a domain.

', 'UpdateDomainConfigurationRequest$tlsConfig' => '

An object that specifies the TLS configuration for a domain.

', ], ], 'TlsContext' => [ 'base' => '

Specifies the TLS context to use for the test authorizer request.

', 'refs' => [ 'TestInvokeAuthorizerRequest$tlsContext' => '

Specifies a test TLS authorization request.

', ], ], 'Token' => [ 'base' => NULL, 'refs' => [ 'TestInvokeAuthorizerRequest$token' => '

The token returned by your custom authentication service.

', ], ], 'TokenKeyName' => [ 'base' => NULL, 'refs' => [ 'AuthorizerDescription$tokenKeyName' => '

The key used to extract the token from the HTTP headers.

', 'CreateAuthorizerRequest$tokenKeyName' => '

The name of the token key used to extract the token from the HTTP headers.

', 'UpdateAuthorizerRequest$tokenKeyName' => '

The key used to extract the token from the HTTP headers.

', ], ], 'TokenSignature' => [ 'base' => NULL, 'refs' => [ 'TestInvokeAuthorizerRequest$tokenSignature' => '

The signature made with the token and your custom authentication service\'s private key. This value must be Base-64-encoded.

', ], ], 'Topic' => [ 'base' => NULL, 'refs' => [ 'ListTopicRulesRequest$topic' => '

The topic.

', ], ], 'TopicPattern' => [ 'base' => NULL, 'refs' => [ 'RepublishAction$topic' => '

The name of the MQTT topic.

', 'TopicRuleListItem$topicPattern' => '

The pattern for the topic names that apply.

', ], ], 'TopicRule' => [ 'base' => '

Describes a rule.

', 'refs' => [ 'GetTopicRuleResponse$rule' => '

The rule.

', ], ], 'TopicRuleDestination' => [ 'base' => '

A topic rule destination.

', 'refs' => [ 'CreateTopicRuleDestinationResponse$topicRuleDestination' => '

The topic rule destination.

', 'GetTopicRuleDestinationResponse$topicRuleDestination' => '

The topic rule destination.

', ], ], 'TopicRuleDestinationConfiguration' => [ 'base' => '

Configuration of the topic rule destination.

', 'refs' => [ 'CreateTopicRuleDestinationRequest$destinationConfiguration' => '

The topic rule destination configuration.

', ], ], 'TopicRuleDestinationMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListTopicRuleDestinationsRequest$maxResults' => '

The maximum number of results to return at one time.

', ], ], 'TopicRuleDestinationStatus' => [ 'base' => NULL, 'refs' => [ 'TopicRuleDestination$status' => '

The status of the topic rule destination. Valid values are:

IN_PROGRESS

A topic rule destination was created but has not been confirmed. You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination. Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint.

ENABLED

Confirmation was completed, and traffic to this destination is allowed. You can set status to DISABLED by calling UpdateTopicRuleDestination.

DISABLED

Confirmation was completed, and traffic to this destination is not allowed. You can set status to ENABLED by calling UpdateTopicRuleDestination.

ERROR

Confirmation could not be completed, for example if the confirmation timed out. You can call GetTopicRuleDestination for details about the error. You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination. Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint.

', 'TopicRuleDestinationSummary$status' => '

The status of the topic rule destination. Valid values are:

IN_PROGRESS

A topic rule destination was created but has not been confirmed. You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination. Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint.

ENABLED

Confirmation was completed, and traffic to this destination is allowed. You can set status to DISABLED by calling UpdateTopicRuleDestination.

DISABLED

Confirmation was completed, and traffic to this destination is not allowed. You can set status to ENABLED by calling UpdateTopicRuleDestination.

ERROR

Confirmation could not be completed, for example if the confirmation timed out. You can call GetTopicRuleDestination for details about the error. You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination. Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint.

', 'UpdateTopicRuleDestinationRequest$status' => '

The status of the topic rule destination. Valid values are:

IN_PROGRESS

A topic rule destination was created but has not been confirmed. You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination. Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint.

ENABLED

Confirmation was completed, and traffic to this destination is allowed. You can set status to DISABLED by calling UpdateTopicRuleDestination.

DISABLED

Confirmation was completed, and traffic to this destination is not allowed. You can set status to ENABLED by calling UpdateTopicRuleDestination.

ERROR

Confirmation could not be completed, for example if the confirmation timed out. You can call GetTopicRuleDestination for details about the error. You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination. Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint.

', ], ], 'TopicRuleDestinationSummaries' => [ 'base' => NULL, 'refs' => [ 'ListTopicRuleDestinationsResponse$destinationSummaries' => '

Information about a topic rule destination.

', ], ], 'TopicRuleDestinationSummary' => [ 'base' => '

Information about the topic rule destination.

', 'refs' => [ 'TopicRuleDestinationSummaries$member' => NULL, ], ], 'TopicRuleList' => [ 'base' => NULL, 'refs' => [ 'ListTopicRulesResponse$rules' => '

The rules.

', ], ], 'TopicRuleListItem' => [ 'base' => '

Describes a rule.

', 'refs' => [ 'TopicRuleList$member' => NULL, ], ], 'TopicRuleMaxResults' => [ 'base' => NULL, 'refs' => [ 'ListTopicRulesRequest$maxResults' => '

The maximum number of results to return.

', ], ], 'TopicRulePayload' => [ 'base' => '

Describes a rule.

', 'refs' => [ 'CreateTopicRuleRequest$topicRulePayload' => '

The rule payload.

', 'ReplaceTopicRuleRequest$topicRulePayload' => '

The rule payload.

', ], ], 'TotalChecksCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatistics$totalChecks' => '

The number of checks in this audit.

', ], ], 'TotalFindingsCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatisticsForAuditCheck$totalFindingsCount' => '

The total number of findings to which a task is being applied.

', ], ], 'TotalResourcesCount' => [ 'base' => NULL, 'refs' => [ 'AuditCheckDetails$totalResourcesCount' => '

The number of resources on which the check was performed.

', ], ], 'TransferAlreadyCompletedException' => [ 'base' => '

You can\'t revert the certificate transfer because the transfer is already complete.

', 'refs' => [], ], 'TransferCertificateRequest' => [ 'base' => '

The input for the TransferCertificate operation.

', 'refs' => [], ], 'TransferCertificateResponse' => [ 'base' => '

The output from the TransferCertificate operation.

', 'refs' => [], ], 'TransferConflictException' => [ 'base' => '

You can\'t transfer the certificate because authorization policies are still attached.

', 'refs' => [], ], 'TransferData' => [ 'base' => '

Data used to transfer a certificate to an Amazon Web Services account.

', 'refs' => [ 'CertificateDescription$transferData' => '

The transfer data.

', ], ], 'UnauthorizedException' => [ 'base' => '

You are not authorized to perform this operation.

', 'refs' => [], ], 'UndoDeprecate' => [ 'base' => NULL, 'refs' => [ 'DeprecateThingTypeRequest$undoDeprecate' => '

Whether to undeprecate a deprecated thing type. If true, the thing type will not be deprecated anymore and you can associate it with things.

', ], ], 'UnsetDefaultVersion' => [ 'base' => NULL, 'refs' => [ 'UpdatePackageRequest$unsetDefaultVersion' => '

Indicates whether you want to remove the named default package version from the software package. Set as true to remove the default package version.

Note: You cannot name a defaultVersion and set unsetDefaultVersion equal to true at the same time.

', ], ], 'UnsignedLong' => [ 'base' => NULL, 'refs' => [ 'MetricValue$count' => '

If the comparisonOperator calls for a numeric value, use this to specify that numeric value to be compared with the metric.

', ], ], 'UntagResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'UntagResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAccountAuditConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAccountAuditConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAuditSuppressionRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAuditSuppressionResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAuthorizerRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateAuthorizerResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateBillingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateBillingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateCACertificateParams' => [ 'base' => '

Parameters to define a mitigation action that changes the state of the CA certificate to inactive.

', 'refs' => [ 'MitigationActionParams$updateCACertificateParams' => '

Parameters to define a mitigation action that changes the state of the CA certificate to inactive.

', ], ], 'UpdateCACertificateRequest' => [ 'base' => '

The input to the UpdateCACertificate operation.

', 'refs' => [], ], 'UpdateCertificateProviderRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateCertificateProviderResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateCertificateRequest' => [ 'base' => '

The input for the UpdateCertificate operation.

', 'refs' => [], ], 'UpdateCustomMetricRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateCustomMetricResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateDeviceCertificateParams' => [ 'base' => '

Parameters to define a mitigation action that changes the state of the device certificate to inactive.

', 'refs' => [ 'MitigationActionParams$updateDeviceCertificateParams' => '

Parameters to define a mitigation action that changes the state of the device certificate to inactive.

', ], ], 'UpdateDimensionRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateDimensionResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateDomainConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateDomainConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateDynamicThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateDynamicThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateEventConfigurationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateEventConfigurationsResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateFleetMetricRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateIndexingConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateIndexingConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateJobRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateMitigationActionRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateMitigationActionResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdatePackageConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdatePackageConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdatePackageRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdatePackageResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdatePackageVersionRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdatePackageVersionResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateProvisioningTemplateRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateProvisioningTemplateResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateRoleAliasRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateRoleAliasResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateScheduledAuditRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateScheduledAuditResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateSecurityProfileRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateSecurityProfileResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateStreamRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateStreamResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateThingGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateThingGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateThingGroupsForThingRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateThingGroupsForThingResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateThingRequest' => [ 'base' => '

The input for the UpdateThing operation.

', 'refs' => [], ], 'UpdateThingResponse' => [ 'base' => '

The output from the UpdateThing operation.

', 'refs' => [], ], 'UpdateTopicRuleDestinationRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateTopicRuleDestinationResponse' => [ 'base' => NULL, 'refs' => [], ], 'Url' => [ 'base' => NULL, 'refs' => [ 'HttpAction$url' => '

The endpoint URL. If substitution templates are used in the URL, you must also specify a confirmationUrl. If this is a new destination, a new TopicRuleDestination is created if possible.

', 'HttpAction$confirmationUrl' => '

The URL to which IoT sends a confirmation message. The value of the confirmation URL must be a prefix of the endpoint URL. If you do not specify a confirmation URL IoT uses the endpoint URL as the confirmation URL. If you use substitution templates in the confirmationUrl, you must create and enable topic rule destinations that match each possible value of the substitution template before traffic is allowed to your endpoint URL.

', 'HttpUrlDestinationConfiguration$confirmationUrl' => '

The URL IoT uses to confirm ownership of or access to the topic rule destination URL.

', 'HttpUrlDestinationProperties$confirmationUrl' => '

The URL used to confirm the HTTP topic rule destination URL.

', 'HttpUrlDestinationSummary$confirmationUrl' => '

The URL used to confirm ownership of or access to the HTTP topic rule destination URL.

', ], ], 'UseBase64' => [ 'base' => NULL, 'refs' => [ 'SqsAction$useBase64' => '

Specifies whether to use Base64 encoding.

', ], ], 'UserProperties' => [ 'base' => NULL, 'refs' => [ 'MqttHeaders$userProperties' => '

An array of key-value pairs that you define in the MQTT5 header.

', ], ], 'UserProperty' => [ 'base' => '

A key-value pair that you define in the header. Both the key and the value are either literal strings or valid substitution templates.

', 'refs' => [ 'UserProperties$member' => NULL, ], ], 'UserPropertyKey' => [ 'base' => NULL, 'refs' => [ 'UserProperty$key' => '

A key to be specified in UserProperty.

', ], ], 'UserPropertyValue' => [ 'base' => NULL, 'refs' => [ 'UserProperty$value' => '

A value to be specified in UserProperty.

', ], ], 'Valid' => [ 'base' => NULL, 'refs' => [ 'ValidateSecurityProfileBehaviorsResponse$valid' => '

True if the behaviors were valid.

', ], ], 'ValidateSecurityProfileBehaviorsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ValidateSecurityProfileBehaviorsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ValidationError' => [ 'base' => '

Information about an error found in a behavior specification.

', 'refs' => [ 'ValidationErrors$member' => NULL, ], ], 'ValidationErrors' => [ 'base' => NULL, 'refs' => [ 'ValidateSecurityProfileBehaviorsResponse$validationErrors' => '

The list of any errors found in the behaviors.

', ], ], 'ValidationException' => [ 'base' => '

The request is not valid.

', 'refs' => [], ], 'Value' => [ 'base' => NULL, 'refs' => [ 'AdditionalParameterMap$value' => NULL, 'AttributesMap$value' => NULL, 'Parameters$value' => NULL, ], ], 'Variance' => [ 'base' => NULL, 'refs' => [ 'Statistics$variance' => '

The variance of the aggregated field values.

', ], ], 'VerificationState' => [ 'base' => NULL, 'refs' => [ 'ActiveViolation$verificationState' => '

The verification state of the violation (detect alarm).

', 'ListActiveViolationsRequest$verificationState' => '

The verification state of the violation (detect alarm).

', 'ListViolationEventsRequest$verificationState' => '

The verification state of the violation (detect alarm).

', 'PutVerificationStateOnViolationRequest$verificationState' => '

The verification state of the violation.

', 'ViolationEvent$verificationState' => '

The verification state of the violation (detect alarm).

', ], ], 'VerificationStateDescription' => [ 'base' => NULL, 'refs' => [ 'ActiveViolation$verificationStateDescription' => '

The description of the verification state of the violation.

', 'PutVerificationStateOnViolationRequest$verificationStateDescription' => '

The description of the verification state of the violation (detect alarm).

', 'ViolationEvent$verificationStateDescription' => '

The description of the verification state of the violation.

', ], ], 'Version' => [ 'base' => NULL, 'refs' => [ 'DescribeBillingGroupResponse$version' => '

The version of the billing group.

', 'DescribeFleetMetricResponse$version' => '

The version of the fleet metric.

', 'DescribeSecurityProfileResponse$version' => '

The version of the security profile. A new version is generated whenever the security profile is updated.

', 'DescribeThingGroupResponse$version' => '

The version of the thing group.

', 'DescribeThingResponse$version' => '

The current version of the thing record in the registry.

To avoid unintentional changes to the information in the registry, you can pass the version information in the expectedVersion parameter of the UpdateThing and DeleteThing calls.

', 'ThingAttribute$version' => '

The version of the thing record in the registry.

', 'UpdateBillingGroupResponse$version' => '

The latest version of the billing group.

', 'UpdateDynamicThingGroupResponse$version' => '

The dynamic thing group version.

', 'UpdateSecurityProfileResponse$version' => '

The updated version of the security profile.

', 'UpdateThingGroupResponse$version' => '

The version of the updated thing group.

', ], ], 'VersionConflictException' => [ 'base' => '

An exception thrown when the version of an entity specified with the expectedVersion parameter does not match the latest version in the system.

', 'refs' => [], ], 'VersionName' => [ 'base' => NULL, 'refs' => [ 'CreatePackageVersionRequest$versionName' => '

The name of the new package version.

', 'CreatePackageVersionResponse$versionName' => '

The name of the new package version.

', 'DeletePackageVersionRequest$versionName' => '

The name of the target package version.

', 'GetPackageResponse$defaultVersionName' => '

The name of the default package version.

', 'GetPackageVersionRequest$versionName' => '

The name of the target package version.

', 'GetPackageVersionResponse$versionName' => '

The name of the package version.

', 'PackageSummary$defaultVersionName' => '

The name of the default package version.

', 'PackageVersionSummary$versionName' => '

The name of the target package version.

', 'UpdatePackageRequest$defaultVersionName' => '

The name of the default package version.

Note: You cannot name a defaultVersion and set unsetDefaultVersion equal to true at the same time.

', 'UpdatePackageVersionRequest$versionName' => '

The name of the target package version.

', ], ], 'VersionNumber' => [ 'base' => NULL, 'refs' => [ 'JobExecution$versionNumber' => '

The version of the job execution. Job execution versions are incremented each time they are updated by a device.

', ], ], 'VersionUpdateByJobsConfig' => [ 'base' => '

Configuration to manage IoT Job\'s package version reporting. If configured, Jobs updates the thing\'s reserved named shadow with the package version information up on successful job completion.

Note: For each job, the destinationPackageVersions attribute has to be set with the correct data for Jobs to report to the thing shadow.

', 'refs' => [ 'GetPackageConfigurationResponse$versionUpdateByJobsConfig' => '

The version that is associated to a specific job.

', 'UpdatePackageConfigurationRequest$versionUpdateByJobsConfig' => '

Configuration to manage job\'s package version reporting. This updates the thing\'s reserved named shadow that the job targets.

', ], ], 'VersionsLimitExceededException' => [ 'base' => '

The number of policy versions exceeds the limit.

', 'refs' => [], ], 'ViolationEvent' => [ 'base' => '

Information about a Device Defender security profile behavior violation.

', 'refs' => [ 'ViolationEvents$member' => NULL, ], ], 'ViolationEventAdditionalInfo' => [ 'base' => '

The details of a violation event.

', 'refs' => [ 'ActiveViolation$violationEventAdditionalInfo' => '

The details of a violation event.

', 'ViolationEvent$violationEventAdditionalInfo' => '

The details of a violation event.

', ], ], 'ViolationEventOccurrenceRange' => [ 'base' => '

Specifies the time period of which violation events occurred between.

', 'refs' => [ 'DetectMitigationActionsTaskSummary$violationEventOccurrenceRange' => '

Specifies the time period of which violation events occurred between.

', 'StartDetectMitigationActionsTaskRequest$violationEventOccurrenceRange' => '

Specifies the time period of which violation events occurred between.

', ], ], 'ViolationEventType' => [ 'base' => NULL, 'refs' => [ 'ViolationEvent$violationEventType' => '

The type of violation event.

', ], ], 'ViolationEvents' => [ 'base' => NULL, 'refs' => [ 'ListViolationEventsResponse$violationEvents' => '

The security profile violation alerts issued for this account during the given time period, potentially filtered by security profile, behavior violated, or thing (device) violating.

', ], ], 'ViolationId' => [ 'base' => NULL, 'refs' => [ 'ActiveViolation$violationId' => '

The ID of the active violation.

', 'DetectMitigationActionExecution$violationId' => '

The unique identifier of the violation.

', 'ListDetectMitigationActionsExecutionsRequest$violationId' => '

The unique identifier of the violation.

', 'PutVerificationStateOnViolationRequest$violationId' => '

The violation ID.

', 'TargetViolationIdsForDetectMitigationActions$member' => NULL, 'ViolationEvent$violationId' => '

The ID of the violation event.

', ], ], 'VpcDestinationConfiguration' => [ 'base' => '

The configuration information for a virtual private cloud (VPC) destination.

', 'refs' => [ 'TopicRuleDestinationConfiguration$vpcConfiguration' => '

Configuration of the virtual private cloud (VPC) connection.

', ], ], 'VpcDestinationProperties' => [ 'base' => '

The properties of a virtual private cloud (VPC) destination.

', 'refs' => [ 'TopicRuleDestination$vpcProperties' => '

Properties of the virtual private cloud (VPC) connection.

', ], ], 'VpcDestinationSummary' => [ 'base' => '

The summary of a virtual private cloud (VPC) destination.

', 'refs' => [ 'TopicRuleDestinationSummary$vpcDestinationSummary' => '

Information about the virtual private cloud (VPC) connection.

', ], ], 'VpcId' => [ 'base' => NULL, 'refs' => [ 'VpcDestinationConfiguration$vpcId' => '

The ID of the VPC.

', 'VpcDestinationProperties$vpcId' => '

The ID of the VPC.

', 'VpcDestinationSummary$vpcId' => '

The ID of the VPC.

', ], ], 'WaitingForDataCollectionChecksCount' => [ 'base' => NULL, 'refs' => [ 'TaskStatistics$waitingForDataCollectionChecks' => '

The number of checks waiting for data collection.

', ], ], 'errorMessage' => [ 'base' => NULL, 'refs' => [ 'CertificateConflictException$message' => '

The message for the exception.

', 'CertificateStateException$message' => '

The message for the exception.

', 'CertificateValidationException$message' => '

Additional information about the exception.

', 'ConflictException$message' => NULL, 'ConflictingResourceUpdateException$message' => '

The message for the exception.

', 'DeleteConflictException$message' => '

The message for the exception.

', 'IndexNotReadyException$message' => '

The message for the exception.

', 'InternalException$message' => '

The message for the exception.

', 'InternalFailureException$message' => '

The message for the exception.

', 'InternalServerException$message' => NULL, 'InvalidAggregationException$message' => NULL, 'InvalidQueryException$message' => '

The message for the exception.

', 'InvalidRequestException$message' => '

The message for the exception.

', 'InvalidResponseException$message' => '

The message for the exception.

', 'InvalidStateTransitionException$message' => '

The message for the exception.

', 'LimitExceededException$message' => '

The message for the exception.

', 'MalformedPolicyException$message' => '

The message for the exception.

', 'NotConfiguredException$message' => '

The message for the exception.

', 'RegistrationCodeValidationException$message' => '

Additional information about the exception.

', 'ResourceAlreadyExistsException$message' => '

The message for the exception.

', 'ResourceNotFoundException$message' => '

The message for the exception.

', 'ResourceRegistrationFailureException$message' => '

The message for the exception.

', 'ServiceQuotaExceededException$message' => NULL, 'ServiceUnavailableException$message' => '

The message for the exception.

', 'SqlParseException$message' => '

The message for the exception.

', 'TaskAlreadyExistsException$message' => NULL, 'ThrottlingException$message' => '

The message for the exception.

', 'TransferAlreadyCompletedException$message' => '

The message for the exception.

', 'TransferConflictException$message' => '

The message for the exception.

', 'UnauthorizedException$message' => '

The message for the exception.

', 'ValidationException$message' => NULL, 'VersionConflictException$message' => '

The message for the exception.

', 'VersionsLimitExceededException$message' => '

The message for the exception.

', ], ], 'resourceArn' => [ 'base' => NULL, 'refs' => [ 'ResourceAlreadyExistsException$resourceArn' => '

The ARN of the resource that caused the exception.

', ], ], 'resourceId' => [ 'base' => NULL, 'refs' => [ 'ConflictException$resourceId' => '

A resource with the same name already exists.

', 'ResourceAlreadyExistsException$resourceId' => '

The ID of the resource that caused the exception.

', ], ], 'stringValue' => [ 'base' => NULL, 'refs' => [ 'StringList$member' => NULL, ], ], 'usePrefixAttributeValue' => [ 'base' => NULL, 'refs' => [ 'ListThingsRequest$usePrefixAttributeValue' => '

When true, the action returns the thing resources with attribute values that start with the attributeValue provided.

When false, or not present, the action returns only the thing resources with attribute values that match the entire attributeValue provided.

', ], ], ],]; diff --git a/src/data/wafv2/2019-07-29/api-2.json b/src/data/wafv2/2019-07-29/api-2.json index d3df4db13c..82db69a946 100644 --- a/src/data/wafv2/2019-07-29/api-2.json +++ b/src/data/wafv2/2019-07-29/api-2.json @@ -1878,6 +1878,7 @@ }, "ErrorMessage":{"type":"string"}, "ErrorReason":{"type":"string"}, + "EvaluationWindowSec":{"type":"long"}, "ExcludedRule":{ "type":"structure", "required":["Name"], @@ -3206,6 +3207,7 @@ ], "members":{ "Limit":{"shape":"RateLimit"}, + "EvaluationWindowSec":{"shape":"EvaluationWindowSec"}, "AggregateKeyType":{"shape":"RateBasedStatementAggregateKeyType"}, "ScopeDownStatement":{"shape":"Statement"}, "ForwardedIPConfig":{"shape":"ForwardedIPConfig"}, diff --git a/src/data/wafv2/2019-07-29/api-2.json.php b/src/data/wafv2/2019-07-29/api-2.json.php index 11f27e39f7..ee604b4ecf 100644 --- a/src/data/wafv2/2019-07-29/api-2.json.php +++ b/src/data/wafv2/2019-07-29/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2019-07-29', 'endpointPrefix' => 'wafv2', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'WAFV2', 'serviceFullName' => 'AWS WAFV2', 'serviceId' => 'WAFV2', 'signatureVersion' => 'v4', 'targetPrefix' => 'AWSWAF_20190729', 'uid' => 'wafv2-2019-07-29', ], 'operations' => [ 'AssociateWebACL' => [ 'name' => 'AssociateWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateWebACLRequest', ], 'output' => [ 'shape' => 'AssociateWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFUnavailableEntityException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'CheckCapacity' => [ 'name' => 'CheckCapacity', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CheckCapacityRequest', ], 'output' => [ 'shape' => 'CheckCapacityResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFInvalidResourceException', ], [ 'shape' => 'WAFUnavailableEntityException', ], [ 'shape' => 'WAFSubscriptionNotFoundException', ], [ 'shape' => 'WAFExpiredManagedRuleGroupVersionException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'CreateAPIKey' => [ 'name' => 'CreateAPIKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateAPIKeyRequest', ], 'output' => [ 'shape' => 'CreateAPIKeyResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'CreateIPSet' => [ 'name' => 'CreateIPSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateIPSetRequest', ], 'output' => [ 'shape' => 'CreateIPSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFDuplicateItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'CreateRegexPatternSet' => [ 'name' => 'CreateRegexPatternSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateRegexPatternSetRequest', ], 'output' => [ 'shape' => 'CreateRegexPatternSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFDuplicateItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'CreateRuleGroup' => [ 'name' => 'CreateRuleGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateRuleGroupRequest', ], 'output' => [ 'shape' => 'CreateRuleGroupResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFDuplicateItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFUnavailableEntityException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFSubscriptionNotFoundException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'CreateWebACL' => [ 'name' => 'CreateWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateWebACLRequest', ], 'output' => [ 'shape' => 'CreateWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFDuplicateItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFInvalidResourceException', ], [ 'shape' => 'WAFUnavailableEntityException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFSubscriptionNotFoundException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFConfigurationWarningException', ], [ 'shape' => 'WAFExpiredManagedRuleGroupVersionException', ], ], ], 'DeleteAPIKey' => [ 'name' => 'DeleteAPIKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteAPIKeyRequest', ], 'output' => [ 'shape' => 'DeleteAPIKeyResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'DeleteFirewallManagerRuleGroups' => [ 'name' => 'DeleteFirewallManagerRuleGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteFirewallManagerRuleGroupsRequest', ], 'output' => [ 'shape' => 'DeleteFirewallManagerRuleGroupsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'DeleteIPSet' => [ 'name' => 'DeleteIPSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteIPSetRequest', ], 'output' => [ 'shape' => 'DeleteIPSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFAssociatedItemException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'DeleteLoggingConfiguration' => [ 'name' => 'DeleteLoggingConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteLoggingConfigurationRequest', ], 'output' => [ 'shape' => 'DeleteLoggingConfigurationResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'DeletePermissionPolicy' => [ 'name' => 'DeletePermissionPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeletePermissionPolicyRequest', ], 'output' => [ 'shape' => 'DeletePermissionPolicyResponse', ], 'errors' => [ [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], ], ], 'DeleteRegexPatternSet' => [ 'name' => 'DeleteRegexPatternSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteRegexPatternSetRequest', ], 'output' => [ 'shape' => 'DeleteRegexPatternSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFAssociatedItemException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'DeleteRuleGroup' => [ 'name' => 'DeleteRuleGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteRuleGroupRequest', ], 'output' => [ 'shape' => 'DeleteRuleGroupResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFAssociatedItemException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'DeleteWebACL' => [ 'name' => 'DeleteWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteWebACLRequest', ], 'output' => [ 'shape' => 'DeleteWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFAssociatedItemException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'DescribeAllManagedProducts' => [ 'name' => 'DescribeAllManagedProducts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAllManagedProductsRequest', ], 'output' => [ 'shape' => 'DescribeAllManagedProductsResponse', ], 'errors' => [ [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInternalErrorException', ], ], ], 'DescribeManagedProductsByVendor' => [ 'name' => 'DescribeManagedProductsByVendor', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeManagedProductsByVendorRequest', ], 'output' => [ 'shape' => 'DescribeManagedProductsByVendorResponse', ], 'errors' => [ [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], ], ], 'DescribeManagedRuleGroup' => [ 'name' => 'DescribeManagedRuleGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeManagedRuleGroupRequest', ], 'output' => [ 'shape' => 'DescribeManagedRuleGroupResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidResourceException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFExpiredManagedRuleGroupVersionException', ], ], ], 'DisassociateWebACL' => [ 'name' => 'DisassociateWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateWebACLRequest', ], 'output' => [ 'shape' => 'DisassociateWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GenerateMobileSdkReleaseUrl' => [ 'name' => 'GenerateMobileSdkReleaseUrl', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GenerateMobileSdkReleaseUrlRequest', ], 'output' => [ 'shape' => 'GenerateMobileSdkReleaseUrlResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GetDecryptedAPIKey' => [ 'name' => 'GetDecryptedAPIKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDecryptedAPIKeyRequest', ], 'output' => [ 'shape' => 'GetDecryptedAPIKeyResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidResourceException', ], ], ], 'GetIPSet' => [ 'name' => 'GetIPSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIPSetRequest', ], 'output' => [ 'shape' => 'GetIPSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GetLoggingConfiguration' => [ 'name' => 'GetLoggingConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetLoggingConfigurationRequest', ], 'output' => [ 'shape' => 'GetLoggingConfigurationResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GetManagedRuleSet' => [ 'name' => 'GetManagedRuleSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetManagedRuleSetRequest', ], 'output' => [ 'shape' => 'GetManagedRuleSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GetMobileSdkRelease' => [ 'name' => 'GetMobileSdkRelease', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetMobileSdkReleaseRequest', ], 'output' => [ 'shape' => 'GetMobileSdkReleaseResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GetPermissionPolicy' => [ 'name' => 'GetPermissionPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetPermissionPolicyRequest', ], 'output' => [ 'shape' => 'GetPermissionPolicyResponse', ], 'errors' => [ [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], ], ], 'GetRateBasedStatementManagedKeys' => [ 'name' => 'GetRateBasedStatementManagedKeys', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetRateBasedStatementManagedKeysRequest', ], 'output' => [ 'shape' => 'GetRateBasedStatementManagedKeysResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFUnsupportedAggregateKeyTypeException', ], ], ], 'GetRegexPatternSet' => [ 'name' => 'GetRegexPatternSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetRegexPatternSetRequest', ], 'output' => [ 'shape' => 'GetRegexPatternSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GetRuleGroup' => [ 'name' => 'GetRuleGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetRuleGroupRequest', ], 'output' => [ 'shape' => 'GetRuleGroupResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GetSampledRequests' => [ 'name' => 'GetSampledRequests', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSampledRequestsRequest', ], 'output' => [ 'shape' => 'GetSampledRequestsResponse', ], 'errors' => [ [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], ], ], 'GetWebACL' => [ 'name' => 'GetWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetWebACLRequest', ], 'output' => [ 'shape' => 'GetWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GetWebACLForResource' => [ 'name' => 'GetWebACLForResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetWebACLForResourceRequest', ], 'output' => [ 'shape' => 'GetWebACLForResourceResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFUnavailableEntityException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListAPIKeys' => [ 'name' => 'ListAPIKeys', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListAPIKeysRequest', ], 'output' => [ 'shape' => 'ListAPIKeysResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidResourceException', ], ], ], 'ListAvailableManagedRuleGroupVersions' => [ 'name' => 'ListAvailableManagedRuleGroupVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListAvailableManagedRuleGroupVersionsRequest', ], 'output' => [ 'shape' => 'ListAvailableManagedRuleGroupVersionsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListAvailableManagedRuleGroups' => [ 'name' => 'ListAvailableManagedRuleGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListAvailableManagedRuleGroupsRequest', ], 'output' => [ 'shape' => 'ListAvailableManagedRuleGroupsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListIPSets' => [ 'name' => 'ListIPSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListIPSetsRequest', ], 'output' => [ 'shape' => 'ListIPSetsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListLoggingConfigurations' => [ 'name' => 'ListLoggingConfigurations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListLoggingConfigurationsRequest', ], 'output' => [ 'shape' => 'ListLoggingConfigurationsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListManagedRuleSets' => [ 'name' => 'ListManagedRuleSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListManagedRuleSetsRequest', ], 'output' => [ 'shape' => 'ListManagedRuleSetsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListMobileSdkReleases' => [ 'name' => 'ListMobileSdkReleases', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListMobileSdkReleasesRequest', ], 'output' => [ 'shape' => 'ListMobileSdkReleasesResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListRegexPatternSets' => [ 'name' => 'ListRegexPatternSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListRegexPatternSetsRequest', ], 'output' => [ 'shape' => 'ListRegexPatternSetsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListResourcesForWebACL' => [ 'name' => 'ListResourcesForWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListResourcesForWebACLRequest', ], 'output' => [ 'shape' => 'ListResourcesForWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListRuleGroups' => [ 'name' => 'ListRuleGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListRuleGroupsRequest', ], 'output' => [ 'shape' => 'ListRuleGroupsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListTagsForResourceRequest', ], 'output' => [ 'shape' => 'ListTagsForResourceResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListWebACLs' => [ 'name' => 'ListWebACLs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListWebACLsRequest', ], 'output' => [ 'shape' => 'ListWebACLsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'PutLoggingConfiguration' => [ 'name' => 'PutLoggingConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutLoggingConfigurationRequest', ], 'output' => [ 'shape' => 'PutLoggingConfigurationResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFServiceLinkedRoleErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFLogDestinationPermissionIssueException', ], ], ], 'PutManagedRuleSetVersions' => [ 'name' => 'PutManagedRuleSetVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutManagedRuleSetVersionsRequest', ], 'output' => [ 'shape' => 'PutManagedRuleSetVersionsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'PutPermissionPolicy' => [ 'name' => 'PutPermissionPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutPermissionPolicyRequest', ], 'output' => [ 'shape' => 'PutPermissionPolicyResponse', ], 'errors' => [ [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidPermissionPolicyException', ], ], ], 'TagResource' => [ 'name' => 'TagResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'TagResourceRequest', ], 'output' => [ 'shape' => 'TagResourceResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'UntagResource' => [ 'name' => 'UntagResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UntagResourceRequest', ], 'output' => [ 'shape' => 'UntagResourceResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'UpdateIPSet' => [ 'name' => 'UpdateIPSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateIPSetRequest', ], 'output' => [ 'shape' => 'UpdateIPSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFDuplicateItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'UpdateManagedRuleSetVersionExpiryDate' => [ 'name' => 'UpdateManagedRuleSetVersionExpiryDate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateManagedRuleSetVersionExpiryDateRequest', ], 'output' => [ 'shape' => 'UpdateManagedRuleSetVersionExpiryDateResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'UpdateRegexPatternSet' => [ 'name' => 'UpdateRegexPatternSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateRegexPatternSetRequest', ], 'output' => [ 'shape' => 'UpdateRegexPatternSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFDuplicateItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'UpdateRuleGroup' => [ 'name' => 'UpdateRuleGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateRuleGroupRequest', ], 'output' => [ 'shape' => 'UpdateRuleGroupResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFDuplicateItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFUnavailableEntityException', ], [ 'shape' => 'WAFSubscriptionNotFoundException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFConfigurationWarningException', ], ], ], 'UpdateWebACL' => [ 'name' => 'UpdateWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateWebACLRequest', ], 'output' => [ 'shape' => 'UpdateWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFDuplicateItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFInvalidResourceException', ], [ 'shape' => 'WAFUnavailableEntityException', ], [ 'shape' => 'WAFSubscriptionNotFoundException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFExpiredManagedRuleGroupVersionException', ], [ 'shape' => 'WAFConfigurationWarningException', ], ], ], ], 'shapes' => [ 'APIKey' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => '.*\\S.*', ], 'APIKeySummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'APIKeySummary', ], ], 'APIKeySummary' => [ 'type' => 'structure', 'members' => [ 'TokenDomains' => [ 'shape' => 'TokenDomains', ], 'APIKey' => [ 'shape' => 'APIKey', ], 'CreationTimestamp' => [ 'shape' => 'Timestamp', ], 'Version' => [ 'shape' => 'APIKeyVersion', ], ], ], 'APIKeyTokenDomains' => [ 'type' => 'list', 'member' => [ 'shape' => 'TokenDomain', ], 'min' => 1, ], 'APIKeyVersion' => [ 'type' => 'integer', 'min' => 0, ], 'AWSManagedRulesACFPRuleSet' => [ 'type' => 'structure', 'required' => [ 'CreationPath', 'RegistrationPagePath', 'RequestInspection', ], 'members' => [ 'CreationPath' => [ 'shape' => 'CreationPathString', ], 'RegistrationPagePath' => [ 'shape' => 'RegistrationPagePathString', ], 'RequestInspection' => [ 'shape' => 'RequestInspectionACFP', ], 'ResponseInspection' => [ 'shape' => 'ResponseInspection', ], 'EnableRegexInPath' => [ 'shape' => 'Boolean', ], ], ], 'AWSManagedRulesATPRuleSet' => [ 'type' => 'structure', 'required' => [ 'LoginPath', ], 'members' => [ 'LoginPath' => [ 'shape' => 'String', ], 'RequestInspection' => [ 'shape' => 'RequestInspection', ], 'ResponseInspection' => [ 'shape' => 'ResponseInspection', ], 'EnableRegexInPath' => [ 'shape' => 'Boolean', ], ], ], 'AWSManagedRulesBotControlRuleSet' => [ 'type' => 'structure', 'required' => [ 'InspectionLevel', ], 'members' => [ 'InspectionLevel' => [ 'shape' => 'InspectionLevel', ], 'EnableMachineLearning' => [ 'shape' => 'Boolean', ], ], ], 'Action' => [ 'type' => 'string', ], 'ActionCondition' => [ 'type' => 'structure', 'required' => [ 'Action', ], 'members' => [ 'Action' => [ 'shape' => 'ActionValue', ], ], ], 'ActionValue' => [ 'type' => 'string', 'enum' => [ 'ALLOW', 'BLOCK', 'COUNT', 'CAPTCHA', 'CHALLENGE', 'EXCLUDED_AS_COUNT', ], ], 'AddressField' => [ 'type' => 'structure', 'required' => [ 'Identifier', ], 'members' => [ 'Identifier' => [ 'shape' => 'FieldIdentifier', ], ], ], 'AddressFields' => [ 'type' => 'list', 'member' => [ 'shape' => 'AddressField', ], ], 'All' => [ 'type' => 'structure', 'members' => [], ], 'AllQueryArguments' => [ 'type' => 'structure', 'members' => [], ], 'AllowAction' => [ 'type' => 'structure', 'members' => [ 'CustomRequestHandling' => [ 'shape' => 'CustomRequestHandling', ], ], ], 'AndStatement' => [ 'type' => 'structure', 'required' => [ 'Statements', ], 'members' => [ 'Statements' => [ 'shape' => 'Statements', ], ], ], 'AssociateWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'WebACLArn', 'ResourceArn', ], 'members' => [ 'WebACLArn' => [ 'shape' => 'ResourceArn', ], 'ResourceArn' => [ 'shape' => 'ResourceArn', ], ], ], 'AssociateWebACLResponse' => [ 'type' => 'structure', 'members' => [], ], 'AssociatedResourceType' => [ 'type' => 'string', 'enum' => [ 'CLOUDFRONT', ], ], 'AssociationConfig' => [ 'type' => 'structure', 'members' => [ 'RequestBody' => [ 'shape' => 'RequestBody', ], ], ], 'BlockAction' => [ 'type' => 'structure', 'members' => [ 'CustomResponse' => [ 'shape' => 'CustomResponse', ], ], ], 'Body' => [ 'type' => 'structure', 'members' => [ 'OversizeHandling' => [ 'shape' => 'OversizeHandling', ], ], ], 'BodyParsingFallbackBehavior' => [ 'type' => 'string', 'enum' => [ 'MATCH', 'NO_MATCH', 'EVALUATE_AS_STRING', ], ], 'Boolean' => [ 'type' => 'boolean', ], 'ByteMatchStatement' => [ 'type' => 'structure', 'required' => [ 'SearchString', 'FieldToMatch', 'TextTransformations', 'PositionalConstraint', ], 'members' => [ 'SearchString' => [ 'shape' => 'SearchString', ], 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], 'PositionalConstraint' => [ 'shape' => 'PositionalConstraint', ], ], ], 'CapacityUnit' => [ 'type' => 'long', 'min' => 1, ], 'CaptchaAction' => [ 'type' => 'structure', 'members' => [ 'CustomRequestHandling' => [ 'shape' => 'CustomRequestHandling', ], ], ], 'CaptchaConfig' => [ 'type' => 'structure', 'members' => [ 'ImmunityTimeProperty' => [ 'shape' => 'ImmunityTimeProperty', ], ], ], 'CaptchaResponse' => [ 'type' => 'structure', 'members' => [ 'ResponseCode' => [ 'shape' => 'ResponseCode', ], 'SolveTimestamp' => [ 'shape' => 'SolveTimestamp', ], 'FailureReason' => [ 'shape' => 'FailureReason', ], ], ], 'ChallengeAction' => [ 'type' => 'structure', 'members' => [ 'CustomRequestHandling' => [ 'shape' => 'CustomRequestHandling', ], ], ], 'ChallengeConfig' => [ 'type' => 'structure', 'members' => [ 'ImmunityTimeProperty' => [ 'shape' => 'ImmunityTimeProperty', ], ], ], 'ChallengeResponse' => [ 'type' => 'structure', 'members' => [ 'ResponseCode' => [ 'shape' => 'ResponseCode', ], 'SolveTimestamp' => [ 'shape' => 'SolveTimestamp', ], 'FailureReason' => [ 'shape' => 'FailureReason', ], ], ], 'CheckCapacityRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', 'Rules', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'Rules' => [ 'shape' => 'Rules', ], ], ], 'CheckCapacityResponse' => [ 'type' => 'structure', 'members' => [ 'Capacity' => [ 'shape' => 'ConsumedCapacity', ], ], ], 'ComparisonOperator' => [ 'type' => 'string', 'enum' => [ 'EQ', 'NE', 'LE', 'LT', 'GE', 'GT', ], ], 'Condition' => [ 'type' => 'structure', 'members' => [ 'ActionCondition' => [ 'shape' => 'ActionCondition', ], 'LabelNameCondition' => [ 'shape' => 'LabelNameCondition', ], ], ], 'Conditions' => [ 'type' => 'list', 'member' => [ 'shape' => 'Condition', ], 'min' => 1, ], 'ConsumedCapacity' => [ 'type' => 'long', 'min' => 0, ], 'CookieMatchPattern' => [ 'type' => 'structure', 'members' => [ 'All' => [ 'shape' => 'All', ], 'IncludedCookies' => [ 'shape' => 'CookieNames', ], 'ExcludedCookies' => [ 'shape' => 'CookieNames', ], ], ], 'CookieNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'SingleCookieName', ], 'max' => 199, 'min' => 1, ], 'Cookies' => [ 'type' => 'structure', 'required' => [ 'MatchPattern', 'MatchScope', 'OversizeHandling', ], 'members' => [ 'MatchPattern' => [ 'shape' => 'CookieMatchPattern', ], 'MatchScope' => [ 'shape' => 'MapMatchScope', ], 'OversizeHandling' => [ 'shape' => 'OversizeHandling', ], ], ], 'CountAction' => [ 'type' => 'structure', 'members' => [ 'CustomRequestHandling' => [ 'shape' => 'CustomRequestHandling', ], ], ], 'Country' => [ 'type' => 'string', ], 'CountryCode' => [ 'type' => 'string', 'enum' => [ 'AF', 'AX', 'AL', 'DZ', 'AS', 'AD', 'AO', 'AI', 'AQ', 'AG', 'AR', 'AM', 'AW', 'AU', 'AT', 'AZ', 'BS', 'BH', 'BD', 'BB', 'BY', 'BE', 'BZ', 'BJ', 'BM', 'BT', 'BO', 'BQ', 'BA', 'BW', 'BV', 'BR', 'IO', 'BN', 'BG', 'BF', 'BI', 'KH', 'CM', 'CA', 'CV', 'KY', 'CF', 'TD', 'CL', 'CN', 'CX', 'CC', 'CO', 'KM', 'CG', 'CD', 'CK', 'CR', 'CI', 'HR', 'CU', 'CW', 'CY', 'CZ', 'DK', 'DJ', 'DM', 'DO', 'EC', 'EG', 'SV', 'GQ', 'ER', 'EE', 'ET', 'FK', 'FO', 'FJ', 'FI', 'FR', 'GF', 'PF', 'TF', 'GA', 'GM', 'GE', 'DE', 'GH', 'GI', 'GR', 'GL', 'GD', 'GP', 'GU', 'GT', 'GG', 'GN', 'GW', 'GY', 'HT', 'HM', 'VA', 'HN', 'HK', 'HU', 'IS', 'IN', 'ID', 'IR', 'IQ', 'IE', 'IM', 'IL', 'IT', 'JM', 'JP', 'JE', 'JO', 'KZ', 'KE', 'KI', 'KP', 'KR', 'KW', 'KG', 'LA', 'LV', 'LB', 'LS', 'LR', 'LY', 'LI', 'LT', 'LU', 'MO', 'MK', 'MG', 'MW', 'MY', 'MV', 'ML', 'MT', 'MH', 'MQ', 'MR', 'MU', 'YT', 'MX', 'FM', 'MD', 'MC', 'MN', 'ME', 'MS', 'MA', 'MZ', 'MM', 'NA', 'NR', 'NP', 'NL', 'NC', 'NZ', 'NI', 'NE', 'NG', 'NU', 'NF', 'MP', 'NO', 'OM', 'PK', 'PW', 'PS', 'PA', 'PG', 'PY', 'PE', 'PH', 'PN', 'PL', 'PT', 'PR', 'QA', 'RE', 'RO', 'RU', 'RW', 'BL', 'SH', 'KN', 'LC', 'MF', 'PM', 'VC', 'WS', 'SM', 'ST', 'SA', 'SN', 'RS', 'SC', 'SL', 'SG', 'SX', 'SK', 'SI', 'SB', 'SO', 'ZA', 'GS', 'SS', 'ES', 'LK', 'SD', 'SR', 'SJ', 'SZ', 'SE', 'CH', 'SY', 'TW', 'TJ', 'TZ', 'TH', 'TL', 'TG', 'TK', 'TO', 'TT', 'TN', 'TR', 'TM', 'TC', 'TV', 'UG', 'UA', 'AE', 'GB', 'US', 'UM', 'UY', 'UZ', 'VU', 'VE', 'VN', 'VG', 'VI', 'WF', 'EH', 'YE', 'ZM', 'ZW', 'XK', ], ], 'CountryCodes' => [ 'type' => 'list', 'member' => [ 'shape' => 'CountryCode', ], 'min' => 1, ], 'CreateAPIKeyRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', 'TokenDomains', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'TokenDomains' => [ 'shape' => 'APIKeyTokenDomains', ], ], ], 'CreateAPIKeyResponse' => [ 'type' => 'structure', 'members' => [ 'APIKey' => [ 'shape' => 'APIKey', ], ], ], 'CreateIPSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'IPAddressVersion', 'Addresses', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'IPAddressVersion' => [ 'shape' => 'IPAddressVersion', ], 'Addresses' => [ 'shape' => 'IPAddresses', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateIPSetResponse' => [ 'type' => 'structure', 'members' => [ 'Summary' => [ 'shape' => 'IPSetSummary', ], ], ], 'CreateRegexPatternSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'RegularExpressionList', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'RegularExpressionList' => [ 'shape' => 'RegularExpressionList', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateRegexPatternSetResponse' => [ 'type' => 'structure', 'members' => [ 'Summary' => [ 'shape' => 'RegexPatternSetSummary', ], ], ], 'CreateRuleGroupRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Capacity', 'VisibilityConfig', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Capacity' => [ 'shape' => 'CapacityUnit', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'Rules' => [ 'shape' => 'Rules', ], 'VisibilityConfig' => [ 'shape' => 'VisibilityConfig', ], 'Tags' => [ 'shape' => 'TagList', ], 'CustomResponseBodies' => [ 'shape' => 'CustomResponseBodies', ], ], ], 'CreateRuleGroupResponse' => [ 'type' => 'structure', 'members' => [ 'Summary' => [ 'shape' => 'RuleGroupSummary', ], ], ], 'CreateWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'DefaultAction', 'VisibilityConfig', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'DefaultAction' => [ 'shape' => 'DefaultAction', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'Rules' => [ 'shape' => 'Rules', ], 'VisibilityConfig' => [ 'shape' => 'VisibilityConfig', ], 'Tags' => [ 'shape' => 'TagList', ], 'CustomResponseBodies' => [ 'shape' => 'CustomResponseBodies', ], 'CaptchaConfig' => [ 'shape' => 'CaptchaConfig', ], 'ChallengeConfig' => [ 'shape' => 'ChallengeConfig', ], 'TokenDomains' => [ 'shape' => 'TokenDomains', ], 'AssociationConfig' => [ 'shape' => 'AssociationConfig', ], ], ], 'CreateWebACLResponse' => [ 'type' => 'structure', 'members' => [ 'Summary' => [ 'shape' => 'WebACLSummary', ], ], ], 'CreationPathString' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '.*\\S.*', ], 'CustomHTTPHeader' => [ 'type' => 'structure', 'required' => [ 'Name', 'Value', ], 'members' => [ 'Name' => [ 'shape' => 'CustomHTTPHeaderName', ], 'Value' => [ 'shape' => 'CustomHTTPHeaderValue', ], ], ], 'CustomHTTPHeaderName' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '^[a-zA-Z0-9._$-]+$', ], 'CustomHTTPHeaderValue' => [ 'type' => 'string', 'max' => 255, 'min' => 1, 'pattern' => '.*', ], 'CustomHTTPHeaders' => [ 'type' => 'list', 'member' => [ 'shape' => 'CustomHTTPHeader', ], 'min' => 1, ], 'CustomRequestHandling' => [ 'type' => 'structure', 'required' => [ 'InsertHeaders', ], 'members' => [ 'InsertHeaders' => [ 'shape' => 'CustomHTTPHeaders', ], ], ], 'CustomResponse' => [ 'type' => 'structure', 'required' => [ 'ResponseCode', ], 'members' => [ 'ResponseCode' => [ 'shape' => 'ResponseStatusCode', ], 'CustomResponseBodyKey' => [ 'shape' => 'EntityName', ], 'ResponseHeaders' => [ 'shape' => 'CustomHTTPHeaders', ], ], ], 'CustomResponseBodies' => [ 'type' => 'map', 'key' => [ 'shape' => 'EntityName', ], 'value' => [ 'shape' => 'CustomResponseBody', ], 'min' => 1, ], 'CustomResponseBody' => [ 'type' => 'structure', 'required' => [ 'ContentType', 'Content', ], 'members' => [ 'ContentType' => [ 'shape' => 'ResponseContentType', ], 'Content' => [ 'shape' => 'ResponseContent', ], ], ], 'DefaultAction' => [ 'type' => 'structure', 'members' => [ 'Block' => [ 'shape' => 'BlockAction', ], 'Allow' => [ 'shape' => 'AllowAction', ], ], ], 'DeleteAPIKeyRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', 'APIKey', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'APIKey' => [ 'shape' => 'APIKey', ], ], ], 'DeleteAPIKeyResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteFirewallManagerRuleGroupsRequest' => [ 'type' => 'structure', 'required' => [ 'WebACLArn', 'WebACLLockToken', ], 'members' => [ 'WebACLArn' => [ 'shape' => 'ResourceArn', ], 'WebACLLockToken' => [ 'shape' => 'LockToken', ], ], ], 'DeleteFirewallManagerRuleGroupsResponse' => [ 'type' => 'structure', 'members' => [ 'NextWebACLLockToken' => [ 'shape' => 'LockToken', ], ], ], 'DeleteIPSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'DeleteIPSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteLoggingConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'ResourceArn', ], ], ], 'DeleteLoggingConfigurationResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeletePermissionPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'ResourceArn', ], ], ], 'DeletePermissionPolicyResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteRegexPatternSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'DeleteRegexPatternSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteRuleGroupRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'DeleteRuleGroupResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'DeleteWebACLResponse' => [ 'type' => 'structure', 'members' => [], ], 'DescribeAllManagedProductsRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], ], ], 'DescribeAllManagedProductsResponse' => [ 'type' => 'structure', 'members' => [ 'ManagedProducts' => [ 'shape' => 'ManagedProductDescriptors', ], ], ], 'DescribeManagedProductsByVendorRequest' => [ 'type' => 'structure', 'required' => [ 'VendorName', 'Scope', ], 'members' => [ 'VendorName' => [ 'shape' => 'VendorName', ], 'Scope' => [ 'shape' => 'Scope', ], ], ], 'DescribeManagedProductsByVendorResponse' => [ 'type' => 'structure', 'members' => [ 'ManagedProducts' => [ 'shape' => 'ManagedProductDescriptors', ], ], ], 'DescribeManagedRuleGroupRequest' => [ 'type' => 'structure', 'required' => [ 'VendorName', 'Name', 'Scope', ], 'members' => [ 'VendorName' => [ 'shape' => 'VendorName', ], 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'VersionName' => [ 'shape' => 'VersionKeyString', ], ], ], 'DescribeManagedRuleGroupResponse' => [ 'type' => 'structure', 'members' => [ 'VersionName' => [ 'shape' => 'VersionKeyString', ], 'SnsTopicArn' => [ 'shape' => 'ResourceArn', ], 'Capacity' => [ 'shape' => 'CapacityUnit', ], 'Rules' => [ 'shape' => 'RuleSummaries', ], 'LabelNamespace' => [ 'shape' => 'LabelName', ], 'AvailableLabels' => [ 'shape' => 'LabelSummaries', ], 'ConsumedLabels' => [ 'shape' => 'LabelSummaries', ], ], ], 'DisassociateWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'ResourceArn', ], ], ], 'DisassociateWebACLResponse' => [ 'type' => 'structure', 'members' => [], ], 'DownloadUrl' => [ 'type' => 'string', ], 'EmailField' => [ 'type' => 'structure', 'required' => [ 'Identifier', ], 'members' => [ 'Identifier' => [ 'shape' => 'FieldIdentifier', ], ], ], 'EntityDescription' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '^[\\w+=:#@/\\-,\\.][\\w+=:#@/\\-,\\.\\s]+[\\w+=:#@/\\-,\\.]$', ], 'EntityId' => [ 'type' => 'string', 'max' => 36, 'min' => 1, 'pattern' => '^[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$', ], 'EntityName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '^[\\w\\-]+$', ], 'ErrorMessage' => [ 'type' => 'string', ], 'ErrorReason' => [ 'type' => 'string', ], 'ExcludedRule' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], ], ], 'ExcludedRules' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExcludedRule', ], 'max' => 100, ], 'FailureCode' => [ 'type' => 'integer', 'max' => 999, 'min' => 0, ], 'FailureReason' => [ 'type' => 'string', 'enum' => [ 'TOKEN_MISSING', 'TOKEN_EXPIRED', 'TOKEN_INVALID', 'TOKEN_DOMAIN_MISMATCH', ], ], 'FailureValue' => [ 'type' => 'string', 'max' => 100, 'min' => 1, 'pattern' => '.*\\S.*', ], 'FallbackBehavior' => [ 'type' => 'string', 'enum' => [ 'MATCH', 'NO_MATCH', ], ], 'FieldIdentifier' => [ 'type' => 'string', 'max' => 512, 'min' => 1, 'pattern' => '.*\\S.*', ], 'FieldToMatch' => [ 'type' => 'structure', 'members' => [ 'SingleHeader' => [ 'shape' => 'SingleHeader', ], 'SingleQueryArgument' => [ 'shape' => 'SingleQueryArgument', ], 'AllQueryArguments' => [ 'shape' => 'AllQueryArguments', ], 'UriPath' => [ 'shape' => 'UriPath', ], 'QueryString' => [ 'shape' => 'QueryString', ], 'Body' => [ 'shape' => 'Body', ], 'Method' => [ 'shape' => 'Method', ], 'JsonBody' => [ 'shape' => 'JsonBody', ], 'Headers' => [ 'shape' => 'Headers', ], 'Cookies' => [ 'shape' => 'Cookies', ], 'HeaderOrder' => [ 'shape' => 'HeaderOrder', ], 'JA3Fingerprint' => [ 'shape' => 'JA3Fingerprint', ], ], ], 'FieldToMatchData' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '.*\\S.*', ], 'Filter' => [ 'type' => 'structure', 'required' => [ 'Behavior', 'Requirement', 'Conditions', ], 'members' => [ 'Behavior' => [ 'shape' => 'FilterBehavior', ], 'Requirement' => [ 'shape' => 'FilterRequirement', ], 'Conditions' => [ 'shape' => 'Conditions', ], ], ], 'FilterBehavior' => [ 'type' => 'string', 'enum' => [ 'KEEP', 'DROP', ], ], 'FilterRequirement' => [ 'type' => 'string', 'enum' => [ 'MEETS_ALL', 'MEETS_ANY', ], ], 'Filters' => [ 'type' => 'list', 'member' => [ 'shape' => 'Filter', ], 'min' => 1, ], 'FirewallManagerRuleGroup' => [ 'type' => 'structure', 'required' => [ 'Name', 'Priority', 'FirewallManagerStatement', 'OverrideAction', 'VisibilityConfig', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Priority' => [ 'shape' => 'RulePriority', ], 'FirewallManagerStatement' => [ 'shape' => 'FirewallManagerStatement', ], 'OverrideAction' => [ 'shape' => 'OverrideAction', ], 'VisibilityConfig' => [ 'shape' => 'VisibilityConfig', ], ], ], 'FirewallManagerRuleGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'FirewallManagerRuleGroup', ], ], 'FirewallManagerStatement' => [ 'type' => 'structure', 'members' => [ 'ManagedRuleGroupStatement' => [ 'shape' => 'ManagedRuleGroupStatement', ], 'RuleGroupReferenceStatement' => [ 'shape' => 'RuleGroupReferenceStatement', ], ], ], 'ForwardedIPConfig' => [ 'type' => 'structure', 'required' => [ 'HeaderName', 'FallbackBehavior', ], 'members' => [ 'HeaderName' => [ 'shape' => 'ForwardedIPHeaderName', ], 'FallbackBehavior' => [ 'shape' => 'FallbackBehavior', ], ], ], 'ForwardedIPHeaderName' => [ 'type' => 'string', 'max' => 255, 'min' => 1, 'pattern' => '^[a-zA-Z0-9-]+$', ], 'ForwardedIPPosition' => [ 'type' => 'string', 'enum' => [ 'FIRST', 'LAST', 'ANY', ], ], 'GenerateMobileSdkReleaseUrlRequest' => [ 'type' => 'structure', 'required' => [ 'Platform', 'ReleaseVersion', ], 'members' => [ 'Platform' => [ 'shape' => 'Platform', ], 'ReleaseVersion' => [ 'shape' => 'VersionKeyString', ], ], ], 'GenerateMobileSdkReleaseUrlResponse' => [ 'type' => 'structure', 'members' => [ 'Url' => [ 'shape' => 'DownloadUrl', ], ], ], 'GeoMatchStatement' => [ 'type' => 'structure', 'members' => [ 'CountryCodes' => [ 'shape' => 'CountryCodes', ], 'ForwardedIPConfig' => [ 'shape' => 'ForwardedIPConfig', ], ], ], 'GetDecryptedAPIKeyRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', 'APIKey', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'APIKey' => [ 'shape' => 'APIKey', ], ], ], 'GetDecryptedAPIKeyResponse' => [ 'type' => 'structure', 'members' => [ 'TokenDomains' => [ 'shape' => 'TokenDomains', ], 'CreationTimestamp' => [ 'shape' => 'Timestamp', ], ], ], 'GetIPSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], ], ], 'GetIPSetResponse' => [ 'type' => 'structure', 'members' => [ 'IPSet' => [ 'shape' => 'IPSet', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'GetLoggingConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'ResourceArn', ], ], ], 'GetLoggingConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'LoggingConfiguration' => [ 'shape' => 'LoggingConfiguration', ], ], ], 'GetManagedRuleSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], ], ], 'GetManagedRuleSetResponse' => [ 'type' => 'structure', 'members' => [ 'ManagedRuleSet' => [ 'shape' => 'ManagedRuleSet', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'GetMobileSdkReleaseRequest' => [ 'type' => 'structure', 'required' => [ 'Platform', 'ReleaseVersion', ], 'members' => [ 'Platform' => [ 'shape' => 'Platform', ], 'ReleaseVersion' => [ 'shape' => 'VersionKeyString', ], ], ], 'GetMobileSdkReleaseResponse' => [ 'type' => 'structure', 'members' => [ 'MobileSdkRelease' => [ 'shape' => 'MobileSdkRelease', ], ], ], 'GetPermissionPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'ResourceArn', ], ], ], 'GetPermissionPolicyResponse' => [ 'type' => 'structure', 'members' => [ 'Policy' => [ 'shape' => 'PolicyString', ], ], ], 'GetRateBasedStatementManagedKeysRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', 'WebACLName', 'WebACLId', 'RuleName', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'WebACLName' => [ 'shape' => 'EntityName', ], 'WebACLId' => [ 'shape' => 'EntityId', ], 'RuleGroupRuleName' => [ 'shape' => 'EntityName', ], 'RuleName' => [ 'shape' => 'EntityName', ], ], ], 'GetRateBasedStatementManagedKeysResponse' => [ 'type' => 'structure', 'members' => [ 'ManagedKeysIPV4' => [ 'shape' => 'RateBasedStatementManagedKeysIPSet', ], 'ManagedKeysIPV6' => [ 'shape' => 'RateBasedStatementManagedKeysIPSet', ], ], ], 'GetRegexPatternSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], ], ], 'GetRegexPatternSetResponse' => [ 'type' => 'structure', 'members' => [ 'RegexPatternSet' => [ 'shape' => 'RegexPatternSet', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'GetRuleGroupRequest' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'ARN' => [ 'shape' => 'ResourceArn', ], ], ], 'GetRuleGroupResponse' => [ 'type' => 'structure', 'members' => [ 'RuleGroup' => [ 'shape' => 'RuleGroup', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'GetSampledRequestsRequest' => [ 'type' => 'structure', 'required' => [ 'WebAclArn', 'RuleMetricName', 'Scope', 'TimeWindow', 'MaxItems', ], 'members' => [ 'WebAclArn' => [ 'shape' => 'ResourceArn', ], 'RuleMetricName' => [ 'shape' => 'MetricName', ], 'Scope' => [ 'shape' => 'Scope', ], 'TimeWindow' => [ 'shape' => 'TimeWindow', ], 'MaxItems' => [ 'shape' => 'ListMaxItems', ], ], ], 'GetSampledRequestsResponse' => [ 'type' => 'structure', 'members' => [ 'SampledRequests' => [ 'shape' => 'SampledHTTPRequests', ], 'PopulationSize' => [ 'shape' => 'PopulationSize', ], 'TimeWindow' => [ 'shape' => 'TimeWindow', ], ], ], 'GetWebACLForResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'ResourceArn', ], ], ], 'GetWebACLForResourceResponse' => [ 'type' => 'structure', 'members' => [ 'WebACL' => [ 'shape' => 'WebACL', ], ], ], 'GetWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], ], ], 'GetWebACLResponse' => [ 'type' => 'structure', 'members' => [ 'WebACL' => [ 'shape' => 'WebACL', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'ApplicationIntegrationURL' => [ 'shape' => 'OutputUrl', ], ], ], 'HTTPHeader' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'HeaderName', ], 'Value' => [ 'shape' => 'HeaderValue', ], ], ], 'HTTPHeaders' => [ 'type' => 'list', 'member' => [ 'shape' => 'HTTPHeader', ], ], 'HTTPMethod' => [ 'type' => 'string', ], 'HTTPRequest' => [ 'type' => 'structure', 'members' => [ 'ClientIP' => [ 'shape' => 'IPString', ], 'Country' => [ 'shape' => 'Country', ], 'URI' => [ 'shape' => 'URIString', ], 'Method' => [ 'shape' => 'HTTPMethod', ], 'HTTPVersion' => [ 'shape' => 'HTTPVersion', ], 'Headers' => [ 'shape' => 'HTTPHeaders', ], ], ], 'HTTPVersion' => [ 'type' => 'string', ], 'HeaderMatchPattern' => [ 'type' => 'structure', 'members' => [ 'All' => [ 'shape' => 'All', ], 'IncludedHeaders' => [ 'shape' => 'HeaderNames', ], 'ExcludedHeaders' => [ 'shape' => 'HeaderNames', ], ], ], 'HeaderName' => [ 'type' => 'string', ], 'HeaderNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'FieldToMatchData', ], 'max' => 199, 'min' => 1, ], 'HeaderOrder' => [ 'type' => 'structure', 'required' => [ 'OversizeHandling', ], 'members' => [ 'OversizeHandling' => [ 'shape' => 'OversizeHandling', ], ], ], 'HeaderValue' => [ 'type' => 'string', ], 'Headers' => [ 'type' => 'structure', 'required' => [ 'MatchPattern', 'MatchScope', 'OversizeHandling', ], 'members' => [ 'MatchPattern' => [ 'shape' => 'HeaderMatchPattern', ], 'MatchScope' => [ 'shape' => 'MapMatchScope', ], 'OversizeHandling' => [ 'shape' => 'OversizeHandling', ], ], ], 'IPAddress' => [ 'type' => 'string', 'max' => 50, 'min' => 1, 'pattern' => '.*\\S.*', ], 'IPAddressVersion' => [ 'type' => 'string', 'enum' => [ 'IPV4', 'IPV6', ], ], 'IPAddresses' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPAddress', ], ], 'IPSet' => [ 'type' => 'structure', 'required' => [ 'Name', 'Id', 'ARN', 'IPAddressVersion', 'Addresses', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'ARN' => [ 'shape' => 'ResourceArn', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'IPAddressVersion' => [ 'shape' => 'IPAddressVersion', ], 'Addresses' => [ 'shape' => 'IPAddresses', ], ], ], 'IPSetForwardedIPConfig' => [ 'type' => 'structure', 'required' => [ 'HeaderName', 'FallbackBehavior', 'Position', ], 'members' => [ 'HeaderName' => [ 'shape' => 'ForwardedIPHeaderName', ], 'FallbackBehavior' => [ 'shape' => 'FallbackBehavior', ], 'Position' => [ 'shape' => 'ForwardedIPPosition', ], ], ], 'IPSetReferenceStatement' => [ 'type' => 'structure', 'required' => [ 'ARN', ], 'members' => [ 'ARN' => [ 'shape' => 'ResourceArn', ], 'IPSetForwardedIPConfig' => [ 'shape' => 'IPSetForwardedIPConfig', ], ], ], 'IPSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPSetSummary', ], ], 'IPSetSummary' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'ARN' => [ 'shape' => 'ResourceArn', ], ], ], 'IPString' => [ 'type' => 'string', ], 'ImmunityTimeProperty' => [ 'type' => 'structure', 'required' => [ 'ImmunityTime', ], 'members' => [ 'ImmunityTime' => [ 'shape' => 'TimeWindowSecond', ], ], ], 'InspectionLevel' => [ 'type' => 'string', 'enum' => [ 'COMMON', 'TARGETED', ], ], 'JA3Fingerprint' => [ 'type' => 'structure', 'required' => [ 'FallbackBehavior', ], 'members' => [ 'FallbackBehavior' => [ 'shape' => 'FallbackBehavior', ], ], ], 'JsonBody' => [ 'type' => 'structure', 'required' => [ 'MatchPattern', 'MatchScope', ], 'members' => [ 'MatchPattern' => [ 'shape' => 'JsonMatchPattern', ], 'MatchScope' => [ 'shape' => 'JsonMatchScope', ], 'InvalidFallbackBehavior' => [ 'shape' => 'BodyParsingFallbackBehavior', ], 'OversizeHandling' => [ 'shape' => 'OversizeHandling', ], ], ], 'JsonMatchPattern' => [ 'type' => 'structure', 'members' => [ 'All' => [ 'shape' => 'All', ], 'IncludedPaths' => [ 'shape' => 'JsonPointerPaths', ], ], ], 'JsonMatchScope' => [ 'type' => 'string', 'enum' => [ 'ALL', 'KEY', 'VALUE', ], ], 'JsonPointerPath' => [ 'type' => 'string', 'max' => 512, 'min' => 1, 'pattern' => '([/])|([/](([^~])|(~[01]))+)', ], 'JsonPointerPaths' => [ 'type' => 'list', 'member' => [ 'shape' => 'JsonPointerPath', ], 'min' => 1, ], 'Label' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'Name' => [ 'shape' => 'LabelName', ], ], ], 'LabelMatchKey' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, 'pattern' => '^[0-9A-Za-z_\\-:]+$', ], 'LabelMatchScope' => [ 'type' => 'string', 'enum' => [ 'LABEL', 'NAMESPACE', ], ], 'LabelMatchStatement' => [ 'type' => 'structure', 'required' => [ 'Scope', 'Key', ], 'members' => [ 'Scope' => [ 'shape' => 'LabelMatchScope', ], 'Key' => [ 'shape' => 'LabelMatchKey', ], ], ], 'LabelName' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, 'pattern' => '^[0-9A-Za-z_\\-:]+$', ], 'LabelNameCondition' => [ 'type' => 'structure', 'required' => [ 'LabelName', ], 'members' => [ 'LabelName' => [ 'shape' => 'LabelName', ], ], ], 'LabelNamespace' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, 'pattern' => '^[0-9A-Za-z_\\-:]+:$', ], 'LabelSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'LabelSummary', ], ], 'LabelSummary' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'LabelName', ], ], ], 'Labels' => [ 'type' => 'list', 'member' => [ 'shape' => 'Label', ], ], 'ListAPIKeysRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListAPIKeysResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'APIKeySummaries' => [ 'shape' => 'APIKeySummaries', ], 'ApplicationIntegrationURL' => [ 'shape' => 'OutputUrl', ], ], ], 'ListAvailableManagedRuleGroupVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'VendorName', 'Name', 'Scope', ], 'members' => [ 'VendorName' => [ 'shape' => 'VendorName', ], 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListAvailableManagedRuleGroupVersionsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Versions' => [ 'shape' => 'ManagedRuleGroupVersions', ], 'CurrentDefaultVersion' => [ 'shape' => 'VersionKeyString', ], ], ], 'ListAvailableManagedRuleGroupsRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListAvailableManagedRuleGroupsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'ManagedRuleGroups' => [ 'shape' => 'ManagedRuleGroupSummaries', ], ], ], 'ListIPSetsRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListIPSetsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'IPSets' => [ 'shape' => 'IPSetSummaries', ], ], ], 'ListLoggingConfigurationsRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListLoggingConfigurationsResponse' => [ 'type' => 'structure', 'members' => [ 'LoggingConfigurations' => [ 'shape' => 'LoggingConfigurations', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], ], ], 'ListManagedRuleSetsRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListManagedRuleSetsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'ManagedRuleSets' => [ 'shape' => 'ManagedRuleSetSummaries', ], ], ], 'ListMaxItems' => [ 'type' => 'long', 'max' => 500, 'min' => 1, ], 'ListMobileSdkReleasesRequest' => [ 'type' => 'structure', 'required' => [ 'Platform', ], 'members' => [ 'Platform' => [ 'shape' => 'Platform', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListMobileSdkReleasesResponse' => [ 'type' => 'structure', 'members' => [ 'ReleaseSummaries' => [ 'shape' => 'ReleaseSummaries', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], ], ], 'ListRegexPatternSetsRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListRegexPatternSetsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'RegexPatternSets' => [ 'shape' => 'RegexPatternSetSummaries', ], ], ], 'ListResourcesForWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'WebACLArn', ], 'members' => [ 'WebACLArn' => [ 'shape' => 'ResourceArn', ], 'ResourceType' => [ 'shape' => 'ResourceType', ], ], ], 'ListResourcesForWebACLResponse' => [ 'type' => 'structure', 'members' => [ 'ResourceArns' => [ 'shape' => 'ResourceArns', ], ], ], 'ListRuleGroupsRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListRuleGroupsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'RuleGroups' => [ 'shape' => 'RuleGroupSummaries', ], ], ], 'ListTagsForResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceARN', ], 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], 'ResourceARN' => [ 'shape' => 'ResourceArn', ], ], ], 'ListTagsForResourceResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'TagInfoForResource' => [ 'shape' => 'TagInfoForResource', ], ], ], 'ListWebACLsRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListWebACLsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'WebACLs' => [ 'shape' => 'WebACLSummaries', ], ], ], 'LockToken' => [ 'type' => 'string', 'max' => 36, 'min' => 1, 'pattern' => '^[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$', ], 'LogDestinationConfigs' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceArn', ], 'max' => 100, 'min' => 1, ], 'LoggingConfiguration' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', 'LogDestinationConfigs', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'ResourceArn', ], 'LogDestinationConfigs' => [ 'shape' => 'LogDestinationConfigs', ], 'RedactedFields' => [ 'shape' => 'RedactedFields', ], 'ManagedByFirewallManager' => [ 'shape' => 'Boolean', ], 'LoggingFilter' => [ 'shape' => 'LoggingFilter', ], ], ], 'LoggingConfigurations' => [ 'type' => 'list', 'member' => [ 'shape' => 'LoggingConfiguration', ], ], 'LoggingFilter' => [ 'type' => 'structure', 'required' => [ 'Filters', 'DefaultBehavior', ], 'members' => [ 'Filters' => [ 'shape' => 'Filters', ], 'DefaultBehavior' => [ 'shape' => 'FilterBehavior', ], ], ], 'LoginPathString' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '.*\\S.*', ], 'ManagedProductDescriptor' => [ 'type' => 'structure', 'members' => [ 'VendorName' => [ 'shape' => 'VendorName', ], 'ManagedRuleSetName' => [ 'shape' => 'EntityName', ], 'ProductId' => [ 'shape' => 'ProductId', ], 'ProductLink' => [ 'shape' => 'ProductLink', ], 'ProductTitle' => [ 'shape' => 'ProductTitle', ], 'ProductDescription' => [ 'shape' => 'ProductDescription', ], 'SnsTopicArn' => [ 'shape' => 'ResourceArn', ], 'IsVersioningSupported' => [ 'shape' => 'Boolean', ], 'IsAdvancedManagedRuleSet' => [ 'shape' => 'Boolean', ], ], ], 'ManagedProductDescriptors' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedProductDescriptor', ], ], 'ManagedRuleGroupConfig' => [ 'type' => 'structure', 'members' => [ 'LoginPath' => [ 'shape' => 'LoginPathString', 'deprecated' => true, 'deprecatedMessage' => 'Deprecated. Use AWSManagedRulesATPRuleSet LoginPath', ], 'PayloadType' => [ 'shape' => 'PayloadType', 'deprecated' => true, 'deprecatedMessage' => 'Deprecated. Use AWSManagedRulesATPRuleSet RequestInspection PayloadType', ], 'UsernameField' => [ 'shape' => 'UsernameField', 'deprecated' => true, 'deprecatedMessage' => 'Deprecated. Use AWSManagedRulesATPRuleSet RequestInspection UsernameField', ], 'PasswordField' => [ 'shape' => 'PasswordField', 'deprecated' => true, 'deprecatedMessage' => 'Deprecated. Use AWSManagedRulesATPRuleSet RequestInspection PasswordField', ], 'AWSManagedRulesBotControlRuleSet' => [ 'shape' => 'AWSManagedRulesBotControlRuleSet', ], 'AWSManagedRulesATPRuleSet' => [ 'shape' => 'AWSManagedRulesATPRuleSet', ], 'AWSManagedRulesACFPRuleSet' => [ 'shape' => 'AWSManagedRulesACFPRuleSet', ], ], ], 'ManagedRuleGroupConfigs' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedRuleGroupConfig', ], ], 'ManagedRuleGroupStatement' => [ 'type' => 'structure', 'required' => [ 'VendorName', 'Name', ], 'members' => [ 'VendorName' => [ 'shape' => 'VendorName', ], 'Name' => [ 'shape' => 'EntityName', ], 'Version' => [ 'shape' => 'VersionKeyString', ], 'ExcludedRules' => [ 'shape' => 'ExcludedRules', ], 'ScopeDownStatement' => [ 'shape' => 'Statement', ], 'ManagedRuleGroupConfigs' => [ 'shape' => 'ManagedRuleGroupConfigs', ], 'RuleActionOverrides' => [ 'shape' => 'RuleActionOverrides', ], ], ], 'ManagedRuleGroupSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedRuleGroupSummary', ], ], 'ManagedRuleGroupSummary' => [ 'type' => 'structure', 'members' => [ 'VendorName' => [ 'shape' => 'VendorName', ], 'Name' => [ 'shape' => 'EntityName', ], 'VersioningSupported' => [ 'shape' => 'Boolean', ], 'Description' => [ 'shape' => 'EntityDescription', ], ], ], 'ManagedRuleGroupVersion' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'VersionKeyString', ], 'LastUpdateTimestamp' => [ 'shape' => 'Timestamp', ], ], ], 'ManagedRuleGroupVersions' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedRuleGroupVersion', ], ], 'ManagedRuleSet' => [ 'type' => 'structure', 'required' => [ 'Name', 'Id', 'ARN', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'ARN' => [ 'shape' => 'ResourceArn', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'PublishedVersions' => [ 'shape' => 'PublishedVersions', ], 'RecommendedVersion' => [ 'shape' => 'VersionKeyString', ], 'LabelNamespace' => [ 'shape' => 'LabelName', ], ], ], 'ManagedRuleSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedRuleSetSummary', ], ], 'ManagedRuleSetSummary' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'ARN' => [ 'shape' => 'ResourceArn', ], 'LabelNamespace' => [ 'shape' => 'LabelName', ], ], ], 'ManagedRuleSetVersion' => [ 'type' => 'structure', 'members' => [ 'AssociatedRuleGroupArn' => [ 'shape' => 'ResourceArn', ], 'Capacity' => [ 'shape' => 'CapacityUnit', ], 'ForecastedLifetime' => [ 'shape' => 'TimeWindowDay', ], 'PublishTimestamp' => [ 'shape' => 'Timestamp', ], 'LastUpdateTimestamp' => [ 'shape' => 'Timestamp', ], 'ExpiryTimestamp' => [ 'shape' => 'Timestamp', ], ], ], 'MapMatchScope' => [ 'type' => 'string', 'enum' => [ 'ALL', 'KEY', 'VALUE', ], ], 'Method' => [ 'type' => 'structure', 'members' => [], ], 'MetricName' => [ 'type' => 'string', 'max' => 255, 'min' => 1, 'pattern' => '^[\\w#:\\.\\-/]+$', ], 'MobileSdkRelease' => [ 'type' => 'structure', 'members' => [ 'ReleaseVersion' => [ 'shape' => 'VersionKeyString', ], 'Timestamp' => [ 'shape' => 'Timestamp', ], 'ReleaseNotes' => [ 'shape' => 'ReleaseNotes', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'NextMarker' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '.*\\S.*', ], 'NoneAction' => [ 'type' => 'structure', 'members' => [], ], 'NotStatement' => [ 'type' => 'structure', 'required' => [ 'Statement', ], 'members' => [ 'Statement' => [ 'shape' => 'Statement', ], ], ], 'OrStatement' => [ 'type' => 'structure', 'required' => [ 'Statements', ], 'members' => [ 'Statements' => [ 'shape' => 'Statements', ], ], ], 'OutputUrl' => [ 'type' => 'string', ], 'OverrideAction' => [ 'type' => 'structure', 'members' => [ 'Count' => [ 'shape' => 'CountAction', ], 'None' => [ 'shape' => 'NoneAction', ], ], ], 'OversizeHandling' => [ 'type' => 'string', 'enum' => [ 'CONTINUE', 'MATCH', 'NO_MATCH', ], ], 'PaginationLimit' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'ParameterExceptionField' => [ 'type' => 'string', 'enum' => [ 'WEB_ACL', 'RULE_GROUP', 'REGEX_PATTERN_SET', 'IP_SET', 'MANAGED_RULE_SET', 'RULE', 'EXCLUDED_RULE', 'STATEMENT', 'BYTE_MATCH_STATEMENT', 'SQLI_MATCH_STATEMENT', 'XSS_MATCH_STATEMENT', 'SIZE_CONSTRAINT_STATEMENT', 'GEO_MATCH_STATEMENT', 'RATE_BASED_STATEMENT', 'RULE_GROUP_REFERENCE_STATEMENT', 'REGEX_PATTERN_REFERENCE_STATEMENT', 'IP_SET_REFERENCE_STATEMENT', 'MANAGED_RULE_SET_STATEMENT', 'LABEL_MATCH_STATEMENT', 'AND_STATEMENT', 'OR_STATEMENT', 'NOT_STATEMENT', 'IP_ADDRESS', 'IP_ADDRESS_VERSION', 'FIELD_TO_MATCH', 'TEXT_TRANSFORMATION', 'SINGLE_QUERY_ARGUMENT', 'SINGLE_HEADER', 'DEFAULT_ACTION', 'RULE_ACTION', 'ENTITY_LIMIT', 'OVERRIDE_ACTION', 'SCOPE_VALUE', 'RESOURCE_ARN', 'RESOURCE_TYPE', 'TAGS', 'TAG_KEYS', 'METRIC_NAME', 'FIREWALL_MANAGER_STATEMENT', 'FALLBACK_BEHAVIOR', 'POSITION', 'FORWARDED_IP_CONFIG', 'IP_SET_FORWARDED_IP_CONFIG', 'HEADER_NAME', 'CUSTOM_REQUEST_HANDLING', 'RESPONSE_CONTENT_TYPE', 'CUSTOM_RESPONSE', 'CUSTOM_RESPONSE_BODY', 'JSON_MATCH_PATTERN', 'JSON_MATCH_SCOPE', 'BODY_PARSING_FALLBACK_BEHAVIOR', 'LOGGING_FILTER', 'FILTER_CONDITION', 'EXPIRE_TIMESTAMP', 'CHANGE_PROPAGATION_STATUS', 'ASSOCIABLE_RESOURCE', 'LOG_DESTINATION', 'MANAGED_RULE_GROUP_CONFIG', 'PAYLOAD_TYPE', 'HEADER_MATCH_PATTERN', 'COOKIE_MATCH_PATTERN', 'MAP_MATCH_SCOPE', 'OVERSIZE_HANDLING', 'CHALLENGE_CONFIG', 'TOKEN_DOMAIN', 'ATP_RULE_SET_RESPONSE_INSPECTION', 'ASSOCIATED_RESOURCE_TYPE', 'SCOPE_DOWN', 'CUSTOM_KEYS', 'ACP_RULE_SET_RESPONSE_INSPECTION', ], ], 'ParameterExceptionParameter' => [ 'type' => 'string', 'min' => 1, ], 'PasswordField' => [ 'type' => 'structure', 'required' => [ 'Identifier', ], 'members' => [ 'Identifier' => [ 'shape' => 'FieldIdentifier', ], ], ], 'PayloadType' => [ 'type' => 'string', 'enum' => [ 'JSON', 'FORM_ENCODED', ], ], 'PhoneNumberField' => [ 'type' => 'structure', 'required' => [ 'Identifier', ], 'members' => [ 'Identifier' => [ 'shape' => 'FieldIdentifier', ], ], ], 'PhoneNumberFields' => [ 'type' => 'list', 'member' => [ 'shape' => 'PhoneNumberField', ], ], 'Platform' => [ 'type' => 'string', 'enum' => [ 'IOS', 'ANDROID', ], ], 'PolicyString' => [ 'type' => 'string', 'max' => 395000, 'min' => 1, 'pattern' => '.*\\S.*', ], 'PopulationSize' => [ 'type' => 'long', ], 'PositionalConstraint' => [ 'type' => 'string', 'enum' => [ 'EXACTLY', 'STARTS_WITH', 'ENDS_WITH', 'CONTAINS', 'CONTAINS_WORD', ], ], 'ProductDescription' => [ 'type' => 'string', 'min' => 1, 'pattern' => '.*\\S.*', ], 'ProductId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '.*\\S.*', ], 'ProductLink' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => '.*\\S.*', ], 'ProductTitle' => [ 'type' => 'string', 'min' => 1, 'pattern' => '.*\\S.*', ], 'PublishedVersions' => [ 'type' => 'map', 'key' => [ 'shape' => 'VersionKeyString', ], 'value' => [ 'shape' => 'ManagedRuleSetVersion', ], ], 'PutLoggingConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'LoggingConfiguration', ], 'members' => [ 'LoggingConfiguration' => [ 'shape' => 'LoggingConfiguration', ], ], ], 'PutLoggingConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'LoggingConfiguration' => [ 'shape' => 'LoggingConfiguration', ], ], ], 'PutManagedRuleSetVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'RecommendedVersion' => [ 'shape' => 'VersionKeyString', ], 'VersionsToPublish' => [ 'shape' => 'VersionsToPublish', ], ], ], 'PutManagedRuleSetVersionsResponse' => [ 'type' => 'structure', 'members' => [ 'NextLockToken' => [ 'shape' => 'LockToken', ], ], ], 'PutPermissionPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', 'Policy', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'ResourceArn', ], 'Policy' => [ 'shape' => 'PolicyString', ], ], ], 'PutPermissionPolicyResponse' => [ 'type' => 'structure', 'members' => [], ], 'QueryString' => [ 'type' => 'structure', 'members' => [], ], 'RateBasedStatement' => [ 'type' => 'structure', 'required' => [ 'Limit', 'AggregateKeyType', ], 'members' => [ 'Limit' => [ 'shape' => 'RateLimit', ], 'AggregateKeyType' => [ 'shape' => 'RateBasedStatementAggregateKeyType', ], 'ScopeDownStatement' => [ 'shape' => 'Statement', ], 'ForwardedIPConfig' => [ 'shape' => 'ForwardedIPConfig', ], 'CustomKeys' => [ 'shape' => 'RateBasedStatementCustomKeys', ], ], ], 'RateBasedStatementAggregateKeyType' => [ 'type' => 'string', 'enum' => [ 'IP', 'FORWARDED_IP', 'CUSTOM_KEYS', 'CONSTANT', ], ], 'RateBasedStatementCustomKey' => [ 'type' => 'structure', 'members' => [ 'Header' => [ 'shape' => 'RateLimitHeader', ], 'Cookie' => [ 'shape' => 'RateLimitCookie', ], 'QueryArgument' => [ 'shape' => 'RateLimitQueryArgument', ], 'QueryString' => [ 'shape' => 'RateLimitQueryString', ], 'HTTPMethod' => [ 'shape' => 'RateLimitHTTPMethod', ], 'ForwardedIP' => [ 'shape' => 'RateLimitForwardedIP', ], 'IP' => [ 'shape' => 'RateLimitIP', ], 'LabelNamespace' => [ 'shape' => 'RateLimitLabelNamespace', ], 'UriPath' => [ 'shape' => 'RateLimitUriPath', ], ], ], 'RateBasedStatementCustomKeys' => [ 'type' => 'list', 'member' => [ 'shape' => 'RateBasedStatementCustomKey', ], 'max' => 5, 'min' => 1, ], 'RateBasedStatementManagedKeysIPSet' => [ 'type' => 'structure', 'members' => [ 'IPAddressVersion' => [ 'shape' => 'IPAddressVersion', ], 'Addresses' => [ 'shape' => 'IPAddresses', ], ], ], 'RateLimit' => [ 'type' => 'long', 'max' => 2000000000, 'min' => 100, ], 'RateLimitCookie' => [ 'type' => 'structure', 'required' => [ 'Name', 'TextTransformations', ], 'members' => [ 'Name' => [ 'shape' => 'FieldToMatchData', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], 'RateLimitForwardedIP' => [ 'type' => 'structure', 'members' => [], ], 'RateLimitHTTPMethod' => [ 'type' => 'structure', 'members' => [], ], 'RateLimitHeader' => [ 'type' => 'structure', 'required' => [ 'Name', 'TextTransformations', ], 'members' => [ 'Name' => [ 'shape' => 'FieldToMatchData', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], 'RateLimitIP' => [ 'type' => 'structure', 'members' => [], ], 'RateLimitLabelNamespace' => [ 'type' => 'structure', 'required' => [ 'Namespace', ], 'members' => [ 'Namespace' => [ 'shape' => 'LabelNamespace', ], ], ], 'RateLimitQueryArgument' => [ 'type' => 'structure', 'required' => [ 'Name', 'TextTransformations', ], 'members' => [ 'Name' => [ 'shape' => 'FieldToMatchData', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], 'RateLimitQueryString' => [ 'type' => 'structure', 'required' => [ 'TextTransformations', ], 'members' => [ 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], 'RateLimitUriPath' => [ 'type' => 'structure', 'required' => [ 'TextTransformations', ], 'members' => [ 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], 'RedactedFields' => [ 'type' => 'list', 'member' => [ 'shape' => 'FieldToMatch', ], 'max' => 100, ], 'Regex' => [ 'type' => 'structure', 'members' => [ 'RegexString' => [ 'shape' => 'RegexPatternString', ], ], ], 'RegexMatchStatement' => [ 'type' => 'structure', 'required' => [ 'RegexString', 'FieldToMatch', 'TextTransformations', ], 'members' => [ 'RegexString' => [ 'shape' => 'RegexPatternString', ], 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], 'RegexPatternSet' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'ARN' => [ 'shape' => 'ResourceArn', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'RegularExpressionList' => [ 'shape' => 'RegularExpressionList', ], ], ], 'RegexPatternSetReferenceStatement' => [ 'type' => 'structure', 'required' => [ 'ARN', 'FieldToMatch', 'TextTransformations', ], 'members' => [ 'ARN' => [ 'shape' => 'ResourceArn', ], 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], 'RegexPatternSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'RegexPatternSetSummary', ], ], 'RegexPatternSetSummary' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'ARN' => [ 'shape' => 'ResourceArn', ], ], ], 'RegexPatternString' => [ 'type' => 'string', 'max' => 512, 'min' => 1, 'pattern' => '.*', ], 'RegistrationPagePathString' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '.*\\S.*', ], 'RegularExpressionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Regex', ], ], 'ReleaseNotes' => [ 'type' => 'string', ], 'ReleaseSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReleaseSummary', ], ], 'ReleaseSummary' => [ 'type' => 'structure', 'members' => [ 'ReleaseVersion' => [ 'shape' => 'VersionKeyString', ], 'Timestamp' => [ 'shape' => 'Timestamp', ], ], ], 'RequestBody' => [ 'type' => 'map', 'key' => [ 'shape' => 'AssociatedResourceType', ], 'value' => [ 'shape' => 'RequestBodyAssociatedResourceTypeConfig', ], ], 'RequestBodyAssociatedResourceTypeConfig' => [ 'type' => 'structure', 'required' => [ 'DefaultSizeInspectionLimit', ], 'members' => [ 'DefaultSizeInspectionLimit' => [ 'shape' => 'SizeInspectionLimit', ], ], ], 'RequestInspection' => [ 'type' => 'structure', 'required' => [ 'PayloadType', 'UsernameField', 'PasswordField', ], 'members' => [ 'PayloadType' => [ 'shape' => 'PayloadType', ], 'UsernameField' => [ 'shape' => 'UsernameField', ], 'PasswordField' => [ 'shape' => 'PasswordField', ], ], ], 'RequestInspectionACFP' => [ 'type' => 'structure', 'required' => [ 'PayloadType', ], 'members' => [ 'PayloadType' => [ 'shape' => 'PayloadType', ], 'UsernameField' => [ 'shape' => 'UsernameField', ], 'PasswordField' => [ 'shape' => 'PasswordField', ], 'EmailField' => [ 'shape' => 'EmailField', ], 'PhoneNumberFields' => [ 'shape' => 'PhoneNumberFields', ], 'AddressFields' => [ 'shape' => 'AddressFields', ], ], ], 'ResourceArn' => [ 'type' => 'string', 'max' => 2048, 'min' => 20, 'pattern' => '.*\\S.*', ], 'ResourceArns' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceArn', ], ], 'ResourceType' => [ 'type' => 'string', 'enum' => [ 'APPLICATION_LOAD_BALANCER', 'API_GATEWAY', 'APPSYNC', 'COGNITO_USER_POOL', 'APP_RUNNER_SERVICE', 'VERIFIED_ACCESS_INSTANCE', ], ], 'ResponseCode' => [ 'type' => 'integer', ], 'ResponseContent' => [ 'type' => 'string', 'max' => 10240, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'ResponseContentType' => [ 'type' => 'string', 'enum' => [ 'TEXT_PLAIN', 'TEXT_HTML', 'APPLICATION_JSON', ], ], 'ResponseInspection' => [ 'type' => 'structure', 'members' => [ 'StatusCode' => [ 'shape' => 'ResponseInspectionStatusCode', ], 'Header' => [ 'shape' => 'ResponseInspectionHeader', ], 'BodyContains' => [ 'shape' => 'ResponseInspectionBodyContains', ], 'Json' => [ 'shape' => 'ResponseInspectionJson', ], ], ], 'ResponseInspectionBodyContains' => [ 'type' => 'structure', 'required' => [ 'SuccessStrings', 'FailureStrings', ], 'members' => [ 'SuccessStrings' => [ 'shape' => 'ResponseInspectionBodyContainsSuccessStrings', ], 'FailureStrings' => [ 'shape' => 'ResponseInspectionBodyContainsFailureStrings', ], ], ], 'ResponseInspectionBodyContainsFailureStrings' => [ 'type' => 'list', 'member' => [ 'shape' => 'FailureValue', ], 'max' => 5, 'min' => 1, ], 'ResponseInspectionBodyContainsSuccessStrings' => [ 'type' => 'list', 'member' => [ 'shape' => 'SuccessValue', ], 'max' => 5, 'min' => 1, ], 'ResponseInspectionHeader' => [ 'type' => 'structure', 'required' => [ 'Name', 'SuccessValues', 'FailureValues', ], 'members' => [ 'Name' => [ 'shape' => 'ResponseInspectionHeaderName', ], 'SuccessValues' => [ 'shape' => 'ResponseInspectionHeaderSuccessValues', ], 'FailureValues' => [ 'shape' => 'ResponseInspectionHeaderFailureValues', ], ], ], 'ResponseInspectionHeaderFailureValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'FailureValue', ], 'max' => 3, 'min' => 1, ], 'ResponseInspectionHeaderName' => [ 'type' => 'string', 'max' => 200, 'min' => 1, 'pattern' => '.*\\S.*', ], 'ResponseInspectionHeaderSuccessValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'SuccessValue', ], 'max' => 3, 'min' => 1, ], 'ResponseInspectionJson' => [ 'type' => 'structure', 'required' => [ 'Identifier', 'SuccessValues', 'FailureValues', ], 'members' => [ 'Identifier' => [ 'shape' => 'FieldIdentifier', ], 'SuccessValues' => [ 'shape' => 'ResponseInspectionJsonSuccessValues', ], 'FailureValues' => [ 'shape' => 'ResponseInspectionJsonFailureValues', ], ], ], 'ResponseInspectionJsonFailureValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'FailureValue', ], 'max' => 5, 'min' => 1, ], 'ResponseInspectionJsonSuccessValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'SuccessValue', ], 'max' => 5, 'min' => 1, ], 'ResponseInspectionStatusCode' => [ 'type' => 'structure', 'required' => [ 'SuccessCodes', 'FailureCodes', ], 'members' => [ 'SuccessCodes' => [ 'shape' => 'ResponseInspectionStatusCodeSuccessCodes', ], 'FailureCodes' => [ 'shape' => 'ResponseInspectionStatusCodeFailureCodes', ], ], ], 'ResponseInspectionStatusCodeFailureCodes' => [ 'type' => 'list', 'member' => [ 'shape' => 'FailureCode', ], 'max' => 10, 'min' => 1, ], 'ResponseInspectionStatusCodeSuccessCodes' => [ 'type' => 'list', 'member' => [ 'shape' => 'SuccessCode', ], 'max' => 10, 'min' => 1, ], 'ResponseStatusCode' => [ 'type' => 'integer', 'max' => 599, 'min' => 200, ], 'Rule' => [ 'type' => 'structure', 'required' => [ 'Name', 'Priority', 'Statement', 'VisibilityConfig', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Priority' => [ 'shape' => 'RulePriority', ], 'Statement' => [ 'shape' => 'Statement', ], 'Action' => [ 'shape' => 'RuleAction', ], 'OverrideAction' => [ 'shape' => 'OverrideAction', ], 'RuleLabels' => [ 'shape' => 'Labels', ], 'VisibilityConfig' => [ 'shape' => 'VisibilityConfig', ], 'CaptchaConfig' => [ 'shape' => 'CaptchaConfig', ], 'ChallengeConfig' => [ 'shape' => 'ChallengeConfig', ], ], ], 'RuleAction' => [ 'type' => 'structure', 'members' => [ 'Block' => [ 'shape' => 'BlockAction', ], 'Allow' => [ 'shape' => 'AllowAction', ], 'Count' => [ 'shape' => 'CountAction', ], 'Captcha' => [ 'shape' => 'CaptchaAction', ], 'Challenge' => [ 'shape' => 'ChallengeAction', ], ], ], 'RuleActionOverride' => [ 'type' => 'structure', 'required' => [ 'Name', 'ActionToUse', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'ActionToUse' => [ 'shape' => 'RuleAction', ], ], ], 'RuleActionOverrides' => [ 'type' => 'list', 'member' => [ 'shape' => 'RuleActionOverride', ], 'max' => 100, 'min' => 1, ], 'RuleGroup' => [ 'type' => 'structure', 'required' => [ 'Name', 'Id', 'Capacity', 'ARN', 'VisibilityConfig', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'Capacity' => [ 'shape' => 'CapacityUnit', ], 'ARN' => [ 'shape' => 'ResourceArn', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'Rules' => [ 'shape' => 'Rules', ], 'VisibilityConfig' => [ 'shape' => 'VisibilityConfig', ], 'LabelNamespace' => [ 'shape' => 'LabelName', ], 'CustomResponseBodies' => [ 'shape' => 'CustomResponseBodies', ], 'AvailableLabels' => [ 'shape' => 'LabelSummaries', ], 'ConsumedLabels' => [ 'shape' => 'LabelSummaries', ], ], ], 'RuleGroupReferenceStatement' => [ 'type' => 'structure', 'required' => [ 'ARN', ], 'members' => [ 'ARN' => [ 'shape' => 'ResourceArn', ], 'ExcludedRules' => [ 'shape' => 'ExcludedRules', ], 'RuleActionOverrides' => [ 'shape' => 'RuleActionOverrides', ], ], ], 'RuleGroupSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'RuleGroupSummary', ], ], 'RuleGroupSummary' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'ARN' => [ 'shape' => 'ResourceArn', ], ], ], 'RulePriority' => [ 'type' => 'integer', 'min' => 0, ], 'RuleSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'RuleSummary', ], ], 'RuleSummary' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Action' => [ 'shape' => 'RuleAction', ], ], ], 'Rules' => [ 'type' => 'list', 'member' => [ 'shape' => 'Rule', ], ], 'SampleWeight' => [ 'type' => 'long', 'min' => 0, ], 'SampledHTTPRequest' => [ 'type' => 'structure', 'required' => [ 'Request', 'Weight', ], 'members' => [ 'Request' => [ 'shape' => 'HTTPRequest', ], 'Weight' => [ 'shape' => 'SampleWeight', ], 'Timestamp' => [ 'shape' => 'Timestamp', ], 'Action' => [ 'shape' => 'Action', ], 'RuleNameWithinRuleGroup' => [ 'shape' => 'EntityName', ], 'RequestHeadersInserted' => [ 'shape' => 'HTTPHeaders', ], 'ResponseCodeSent' => [ 'shape' => 'ResponseStatusCode', ], 'Labels' => [ 'shape' => 'Labels', ], 'CaptchaResponse' => [ 'shape' => 'CaptchaResponse', ], 'ChallengeResponse' => [ 'shape' => 'ChallengeResponse', ], 'OverriddenAction' => [ 'shape' => 'Action', ], ], ], 'SampledHTTPRequests' => [ 'type' => 'list', 'member' => [ 'shape' => 'SampledHTTPRequest', ], ], 'Scope' => [ 'type' => 'string', 'enum' => [ 'CLOUDFRONT', 'REGIONAL', ], ], 'SearchString' => [ 'type' => 'blob', ], 'SensitivityLevel' => [ 'type' => 'string', 'enum' => [ 'LOW', 'HIGH', ], ], 'SingleCookieName' => [ 'type' => 'string', 'max' => 60, 'min' => 1, 'pattern' => '.*\\S.*', ], 'SingleHeader' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'Name' => [ 'shape' => 'FieldToMatchData', ], ], ], 'SingleQueryArgument' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'Name' => [ 'shape' => 'FieldToMatchData', ], ], ], 'Size' => [ 'type' => 'long', 'max' => 21474836480, 'min' => 0, ], 'SizeConstraintStatement' => [ 'type' => 'structure', 'required' => [ 'FieldToMatch', 'ComparisonOperator', 'Size', 'TextTransformations', ], 'members' => [ 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'ComparisonOperator' => [ 'shape' => 'ComparisonOperator', ], 'Size' => [ 'shape' => 'Size', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], 'SizeInspectionLimit' => [ 'type' => 'string', 'enum' => [ 'KB_16', 'KB_32', 'KB_48', 'KB_64', ], ], 'SolveTimestamp' => [ 'type' => 'long', ], 'SqliMatchStatement' => [ 'type' => 'structure', 'required' => [ 'FieldToMatch', 'TextTransformations', ], 'members' => [ 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], 'SensitivityLevel' => [ 'shape' => 'SensitivityLevel', ], ], ], 'Statement' => [ 'type' => 'structure', 'members' => [ 'ByteMatchStatement' => [ 'shape' => 'ByteMatchStatement', ], 'SqliMatchStatement' => [ 'shape' => 'SqliMatchStatement', ], 'XssMatchStatement' => [ 'shape' => 'XssMatchStatement', ], 'SizeConstraintStatement' => [ 'shape' => 'SizeConstraintStatement', ], 'GeoMatchStatement' => [ 'shape' => 'GeoMatchStatement', ], 'RuleGroupReferenceStatement' => [ 'shape' => 'RuleGroupReferenceStatement', ], 'IPSetReferenceStatement' => [ 'shape' => 'IPSetReferenceStatement', ], 'RegexPatternSetReferenceStatement' => [ 'shape' => 'RegexPatternSetReferenceStatement', ], 'RateBasedStatement' => [ 'shape' => 'RateBasedStatement', ], 'AndStatement' => [ 'shape' => 'AndStatement', ], 'OrStatement' => [ 'shape' => 'OrStatement', ], 'NotStatement' => [ 'shape' => 'NotStatement', ], 'ManagedRuleGroupStatement' => [ 'shape' => 'ManagedRuleGroupStatement', ], 'LabelMatchStatement' => [ 'shape' => 'LabelMatchStatement', ], 'RegexMatchStatement' => [ 'shape' => 'RegexMatchStatement', ], ], ], 'Statements' => [ 'type' => 'list', 'member' => [ 'shape' => 'Statement', ], ], 'String' => [ 'type' => 'string', ], 'SuccessCode' => [ 'type' => 'integer', 'max' => 999, 'min' => 0, ], 'SuccessValue' => [ 'type' => 'string', 'max' => 100, 'min' => 1, 'pattern' => '.*\\S.*', ], 'Tag' => [ 'type' => 'structure', 'required' => [ 'Key', 'Value', ], 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Value' => [ 'shape' => 'TagValue', ], ], ], 'TagInfoForResource' => [ 'type' => 'structure', 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceArn', ], 'TagList' => [ 'shape' => 'TagList', ], ], ], 'TagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$', ], 'TagKeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagKey', ], 'min' => 1, ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', ], 'min' => 1, ], 'TagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceARN', 'Tags', ], 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceArn', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'TagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'TagValue' => [ 'type' => 'string', 'max' => 256, 'min' => 0, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$', ], 'TextTransformation' => [ 'type' => 'structure', 'required' => [ 'Priority', 'Type', ], 'members' => [ 'Priority' => [ 'shape' => 'TextTransformationPriority', ], 'Type' => [ 'shape' => 'TextTransformationType', ], ], ], 'TextTransformationPriority' => [ 'type' => 'integer', 'min' => 0, ], 'TextTransformationType' => [ 'type' => 'string', 'enum' => [ 'NONE', 'COMPRESS_WHITE_SPACE', 'HTML_ENTITY_DECODE', 'LOWERCASE', 'CMD_LINE', 'URL_DECODE', 'BASE64_DECODE', 'HEX_DECODE', 'MD5', 'REPLACE_COMMENTS', 'ESCAPE_SEQ_DECODE', 'SQL_HEX_DECODE', 'CSS_DECODE', 'JS_DECODE', 'NORMALIZE_PATH', 'NORMALIZE_PATH_WIN', 'REMOVE_NULLS', 'REPLACE_NULLS', 'BASE64_DECODE_EXT', 'URL_DECODE_UNI', 'UTF8_TO_UNICODE', ], ], 'TextTransformations' => [ 'type' => 'list', 'member' => [ 'shape' => 'TextTransformation', ], 'min' => 1, ], 'TimeWindow' => [ 'type' => 'structure', 'required' => [ 'StartTime', 'EndTime', ], 'members' => [ 'StartTime' => [ 'shape' => 'Timestamp', ], 'EndTime' => [ 'shape' => 'Timestamp', ], ], ], 'TimeWindowDay' => [ 'type' => 'integer', 'min' => 1, ], 'TimeWindowSecond' => [ 'type' => 'long', 'max' => 259200, 'min' => 60, ], 'Timestamp' => [ 'type' => 'timestamp', ], 'TokenDomain' => [ 'type' => 'string', 'max' => 253, 'min' => 1, 'pattern' => '^[\\w\\.\\-/]+$', ], 'TokenDomains' => [ 'type' => 'list', 'member' => [ 'shape' => 'TokenDomain', ], ], 'URIString' => [ 'type' => 'string', ], 'UntagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceARN', 'TagKeys', ], 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceArn', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], ], ], 'UntagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateIPSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'Addresses', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'Addresses' => [ 'shape' => 'IPAddresses', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'UpdateIPSetResponse' => [ 'type' => 'structure', 'members' => [ 'NextLockToken' => [ 'shape' => 'LockToken', ], ], ], 'UpdateManagedRuleSetVersionExpiryDateRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'LockToken', 'VersionToExpire', 'ExpiryTimestamp', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'VersionToExpire' => [ 'shape' => 'VersionKeyString', ], 'ExpiryTimestamp' => [ 'shape' => 'Timestamp', ], ], ], 'UpdateManagedRuleSetVersionExpiryDateResponse' => [ 'type' => 'structure', 'members' => [ 'ExpiringVersion' => [ 'shape' => 'VersionKeyString', ], 'ExpiryTimestamp' => [ 'shape' => 'Timestamp', ], 'NextLockToken' => [ 'shape' => 'LockToken', ], ], ], 'UpdateRegexPatternSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'RegularExpressionList', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'RegularExpressionList' => [ 'shape' => 'RegularExpressionList', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'UpdateRegexPatternSetResponse' => [ 'type' => 'structure', 'members' => [ 'NextLockToken' => [ 'shape' => 'LockToken', ], ], ], 'UpdateRuleGroupRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'VisibilityConfig', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'Rules' => [ 'shape' => 'Rules', ], 'VisibilityConfig' => [ 'shape' => 'VisibilityConfig', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'CustomResponseBodies' => [ 'shape' => 'CustomResponseBodies', ], ], ], 'UpdateRuleGroupResponse' => [ 'type' => 'structure', 'members' => [ 'NextLockToken' => [ 'shape' => 'LockToken', ], ], ], 'UpdateWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'DefaultAction', 'VisibilityConfig', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'DefaultAction' => [ 'shape' => 'DefaultAction', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'Rules' => [ 'shape' => 'Rules', ], 'VisibilityConfig' => [ 'shape' => 'VisibilityConfig', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'CustomResponseBodies' => [ 'shape' => 'CustomResponseBodies', ], 'CaptchaConfig' => [ 'shape' => 'CaptchaConfig', ], 'ChallengeConfig' => [ 'shape' => 'ChallengeConfig', ], 'TokenDomains' => [ 'shape' => 'TokenDomains', ], 'AssociationConfig' => [ 'shape' => 'AssociationConfig', ], ], ], 'UpdateWebACLResponse' => [ 'type' => 'structure', 'members' => [ 'NextLockToken' => [ 'shape' => 'LockToken', ], ], ], 'UriPath' => [ 'type' => 'structure', 'members' => [], ], 'UsernameField' => [ 'type' => 'structure', 'required' => [ 'Identifier', ], 'members' => [ 'Identifier' => [ 'shape' => 'FieldIdentifier', ], ], ], 'VendorName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '.*\\S.*', ], 'VersionKeyString' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '^[\\w#:\\.\\-/]+$', ], 'VersionToPublish' => [ 'type' => 'structure', 'members' => [ 'AssociatedRuleGroupArn' => [ 'shape' => 'ResourceArn', ], 'ForecastedLifetime' => [ 'shape' => 'TimeWindowDay', ], ], ], 'VersionsToPublish' => [ 'type' => 'map', 'key' => [ 'shape' => 'VersionKeyString', ], 'value' => [ 'shape' => 'VersionToPublish', ], ], 'VisibilityConfig' => [ 'type' => 'structure', 'required' => [ 'SampledRequestsEnabled', 'CloudWatchMetricsEnabled', 'MetricName', ], 'members' => [ 'SampledRequestsEnabled' => [ 'shape' => 'Boolean', ], 'CloudWatchMetricsEnabled' => [ 'shape' => 'Boolean', ], 'MetricName' => [ 'shape' => 'MetricName', ], ], ], 'WAFAssociatedItemException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFConfigurationWarningException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFDuplicateItemException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFExpiredManagedRuleGroupVersionException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFInternalErrorException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, 'fault' => true, ], 'WAFInvalidOperationException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFInvalidParameterException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], 'Field' => [ 'shape' => 'ParameterExceptionField', ], 'Parameter' => [ 'shape' => 'ParameterExceptionParameter', ], 'Reason' => [ 'shape' => 'ErrorReason', ], ], 'exception' => true, ], 'WAFInvalidPermissionPolicyException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFInvalidResourceException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFLimitsExceededException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFLogDestinationPermissionIssueException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFNonexistentItemException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFOptimisticLockException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFServiceLinkedRoleErrorException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFSubscriptionNotFoundException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFTagOperationException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFTagOperationInternalErrorException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, 'fault' => true, ], 'WAFUnavailableEntityException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFUnsupportedAggregateKeyTypeException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WebACL' => [ 'type' => 'structure', 'required' => [ 'Name', 'Id', 'ARN', 'DefaultAction', 'VisibilityConfig', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'ARN' => [ 'shape' => 'ResourceArn', ], 'DefaultAction' => [ 'shape' => 'DefaultAction', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'Rules' => [ 'shape' => 'Rules', ], 'VisibilityConfig' => [ 'shape' => 'VisibilityConfig', ], 'Capacity' => [ 'shape' => 'ConsumedCapacity', ], 'PreProcessFirewallManagerRuleGroups' => [ 'shape' => 'FirewallManagerRuleGroups', ], 'PostProcessFirewallManagerRuleGroups' => [ 'shape' => 'FirewallManagerRuleGroups', ], 'ManagedByFirewallManager' => [ 'shape' => 'Boolean', ], 'LabelNamespace' => [ 'shape' => 'LabelName', ], 'CustomResponseBodies' => [ 'shape' => 'CustomResponseBodies', ], 'CaptchaConfig' => [ 'shape' => 'CaptchaConfig', ], 'ChallengeConfig' => [ 'shape' => 'ChallengeConfig', ], 'TokenDomains' => [ 'shape' => 'TokenDomains', ], 'AssociationConfig' => [ 'shape' => 'AssociationConfig', ], ], ], 'WebACLSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'WebACLSummary', ], ], 'WebACLSummary' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'ARN' => [ 'shape' => 'ResourceArn', ], ], ], 'XssMatchStatement' => [ 'type' => 'structure', 'required' => [ 'FieldToMatch', 'TextTransformations', ], 'members' => [ 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2019-07-29', 'endpointPrefix' => 'wafv2', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'WAFV2', 'serviceFullName' => 'AWS WAFV2', 'serviceId' => 'WAFV2', 'signatureVersion' => 'v4', 'targetPrefix' => 'AWSWAF_20190729', 'uid' => 'wafv2-2019-07-29', ], 'operations' => [ 'AssociateWebACL' => [ 'name' => 'AssociateWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateWebACLRequest', ], 'output' => [ 'shape' => 'AssociateWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFUnavailableEntityException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'CheckCapacity' => [ 'name' => 'CheckCapacity', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CheckCapacityRequest', ], 'output' => [ 'shape' => 'CheckCapacityResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFInvalidResourceException', ], [ 'shape' => 'WAFUnavailableEntityException', ], [ 'shape' => 'WAFSubscriptionNotFoundException', ], [ 'shape' => 'WAFExpiredManagedRuleGroupVersionException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'CreateAPIKey' => [ 'name' => 'CreateAPIKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateAPIKeyRequest', ], 'output' => [ 'shape' => 'CreateAPIKeyResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'CreateIPSet' => [ 'name' => 'CreateIPSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateIPSetRequest', ], 'output' => [ 'shape' => 'CreateIPSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFDuplicateItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'CreateRegexPatternSet' => [ 'name' => 'CreateRegexPatternSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateRegexPatternSetRequest', ], 'output' => [ 'shape' => 'CreateRegexPatternSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFDuplicateItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'CreateRuleGroup' => [ 'name' => 'CreateRuleGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateRuleGroupRequest', ], 'output' => [ 'shape' => 'CreateRuleGroupResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFDuplicateItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFUnavailableEntityException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFSubscriptionNotFoundException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'CreateWebACL' => [ 'name' => 'CreateWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateWebACLRequest', ], 'output' => [ 'shape' => 'CreateWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFDuplicateItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFInvalidResourceException', ], [ 'shape' => 'WAFUnavailableEntityException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFSubscriptionNotFoundException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFConfigurationWarningException', ], [ 'shape' => 'WAFExpiredManagedRuleGroupVersionException', ], ], ], 'DeleteAPIKey' => [ 'name' => 'DeleteAPIKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteAPIKeyRequest', ], 'output' => [ 'shape' => 'DeleteAPIKeyResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'DeleteFirewallManagerRuleGroups' => [ 'name' => 'DeleteFirewallManagerRuleGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteFirewallManagerRuleGroupsRequest', ], 'output' => [ 'shape' => 'DeleteFirewallManagerRuleGroupsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'DeleteIPSet' => [ 'name' => 'DeleteIPSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteIPSetRequest', ], 'output' => [ 'shape' => 'DeleteIPSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFAssociatedItemException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'DeleteLoggingConfiguration' => [ 'name' => 'DeleteLoggingConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteLoggingConfigurationRequest', ], 'output' => [ 'shape' => 'DeleteLoggingConfigurationResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'DeletePermissionPolicy' => [ 'name' => 'DeletePermissionPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeletePermissionPolicyRequest', ], 'output' => [ 'shape' => 'DeletePermissionPolicyResponse', ], 'errors' => [ [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], ], ], 'DeleteRegexPatternSet' => [ 'name' => 'DeleteRegexPatternSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteRegexPatternSetRequest', ], 'output' => [ 'shape' => 'DeleteRegexPatternSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFAssociatedItemException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'DeleteRuleGroup' => [ 'name' => 'DeleteRuleGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteRuleGroupRequest', ], 'output' => [ 'shape' => 'DeleteRuleGroupResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFAssociatedItemException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'DeleteWebACL' => [ 'name' => 'DeleteWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteWebACLRequest', ], 'output' => [ 'shape' => 'DeleteWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFAssociatedItemException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'DescribeAllManagedProducts' => [ 'name' => 'DescribeAllManagedProducts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAllManagedProductsRequest', ], 'output' => [ 'shape' => 'DescribeAllManagedProductsResponse', ], 'errors' => [ [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInternalErrorException', ], ], ], 'DescribeManagedProductsByVendor' => [ 'name' => 'DescribeManagedProductsByVendor', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeManagedProductsByVendorRequest', ], 'output' => [ 'shape' => 'DescribeManagedProductsByVendorResponse', ], 'errors' => [ [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], ], ], 'DescribeManagedRuleGroup' => [ 'name' => 'DescribeManagedRuleGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeManagedRuleGroupRequest', ], 'output' => [ 'shape' => 'DescribeManagedRuleGroupResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidResourceException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFExpiredManagedRuleGroupVersionException', ], ], ], 'DisassociateWebACL' => [ 'name' => 'DisassociateWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateWebACLRequest', ], 'output' => [ 'shape' => 'DisassociateWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GenerateMobileSdkReleaseUrl' => [ 'name' => 'GenerateMobileSdkReleaseUrl', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GenerateMobileSdkReleaseUrlRequest', ], 'output' => [ 'shape' => 'GenerateMobileSdkReleaseUrlResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GetDecryptedAPIKey' => [ 'name' => 'GetDecryptedAPIKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDecryptedAPIKeyRequest', ], 'output' => [ 'shape' => 'GetDecryptedAPIKeyResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidResourceException', ], ], ], 'GetIPSet' => [ 'name' => 'GetIPSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIPSetRequest', ], 'output' => [ 'shape' => 'GetIPSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GetLoggingConfiguration' => [ 'name' => 'GetLoggingConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetLoggingConfigurationRequest', ], 'output' => [ 'shape' => 'GetLoggingConfigurationResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GetManagedRuleSet' => [ 'name' => 'GetManagedRuleSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetManagedRuleSetRequest', ], 'output' => [ 'shape' => 'GetManagedRuleSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GetMobileSdkRelease' => [ 'name' => 'GetMobileSdkRelease', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetMobileSdkReleaseRequest', ], 'output' => [ 'shape' => 'GetMobileSdkReleaseResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GetPermissionPolicy' => [ 'name' => 'GetPermissionPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetPermissionPolicyRequest', ], 'output' => [ 'shape' => 'GetPermissionPolicyResponse', ], 'errors' => [ [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], ], ], 'GetRateBasedStatementManagedKeys' => [ 'name' => 'GetRateBasedStatementManagedKeys', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetRateBasedStatementManagedKeysRequest', ], 'output' => [ 'shape' => 'GetRateBasedStatementManagedKeysResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFUnsupportedAggregateKeyTypeException', ], ], ], 'GetRegexPatternSet' => [ 'name' => 'GetRegexPatternSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetRegexPatternSetRequest', ], 'output' => [ 'shape' => 'GetRegexPatternSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GetRuleGroup' => [ 'name' => 'GetRuleGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetRuleGroupRequest', ], 'output' => [ 'shape' => 'GetRuleGroupResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GetSampledRequests' => [ 'name' => 'GetSampledRequests', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSampledRequestsRequest', ], 'output' => [ 'shape' => 'GetSampledRequestsResponse', ], 'errors' => [ [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], ], ], 'GetWebACL' => [ 'name' => 'GetWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetWebACLRequest', ], 'output' => [ 'shape' => 'GetWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'GetWebACLForResource' => [ 'name' => 'GetWebACLForResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetWebACLForResourceRequest', ], 'output' => [ 'shape' => 'GetWebACLForResourceResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFUnavailableEntityException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListAPIKeys' => [ 'name' => 'ListAPIKeys', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListAPIKeysRequest', ], 'output' => [ 'shape' => 'ListAPIKeysResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidResourceException', ], ], ], 'ListAvailableManagedRuleGroupVersions' => [ 'name' => 'ListAvailableManagedRuleGroupVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListAvailableManagedRuleGroupVersionsRequest', ], 'output' => [ 'shape' => 'ListAvailableManagedRuleGroupVersionsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListAvailableManagedRuleGroups' => [ 'name' => 'ListAvailableManagedRuleGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListAvailableManagedRuleGroupsRequest', ], 'output' => [ 'shape' => 'ListAvailableManagedRuleGroupsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListIPSets' => [ 'name' => 'ListIPSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListIPSetsRequest', ], 'output' => [ 'shape' => 'ListIPSetsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListLoggingConfigurations' => [ 'name' => 'ListLoggingConfigurations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListLoggingConfigurationsRequest', ], 'output' => [ 'shape' => 'ListLoggingConfigurationsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListManagedRuleSets' => [ 'name' => 'ListManagedRuleSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListManagedRuleSetsRequest', ], 'output' => [ 'shape' => 'ListManagedRuleSetsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListMobileSdkReleases' => [ 'name' => 'ListMobileSdkReleases', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListMobileSdkReleasesRequest', ], 'output' => [ 'shape' => 'ListMobileSdkReleasesResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListRegexPatternSets' => [ 'name' => 'ListRegexPatternSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListRegexPatternSetsRequest', ], 'output' => [ 'shape' => 'ListRegexPatternSetsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListResourcesForWebACL' => [ 'name' => 'ListResourcesForWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListResourcesForWebACLRequest', ], 'output' => [ 'shape' => 'ListResourcesForWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListRuleGroups' => [ 'name' => 'ListRuleGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListRuleGroupsRequest', ], 'output' => [ 'shape' => 'ListRuleGroupsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListTagsForResourceRequest', ], 'output' => [ 'shape' => 'ListTagsForResourceResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'ListWebACLs' => [ 'name' => 'ListWebACLs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListWebACLsRequest', ], 'output' => [ 'shape' => 'ListWebACLsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'PutLoggingConfiguration' => [ 'name' => 'PutLoggingConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutLoggingConfigurationRequest', ], 'output' => [ 'shape' => 'PutLoggingConfigurationResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFServiceLinkedRoleErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFLogDestinationPermissionIssueException', ], ], ], 'PutManagedRuleSetVersions' => [ 'name' => 'PutManagedRuleSetVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutManagedRuleSetVersionsRequest', ], 'output' => [ 'shape' => 'PutManagedRuleSetVersionsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'PutPermissionPolicy' => [ 'name' => 'PutPermissionPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutPermissionPolicyRequest', ], 'output' => [ 'shape' => 'PutPermissionPolicyResponse', ], 'errors' => [ [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFInvalidPermissionPolicyException', ], ], ], 'TagResource' => [ 'name' => 'TagResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'TagResourceRequest', ], 'output' => [ 'shape' => 'TagResourceResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'UntagResource' => [ 'name' => 'UntagResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UntagResourceRequest', ], 'output' => [ 'shape' => 'UntagResourceResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFTagOperationException', ], [ 'shape' => 'WAFTagOperationInternalErrorException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'UpdateIPSet' => [ 'name' => 'UpdateIPSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateIPSetRequest', ], 'output' => [ 'shape' => 'UpdateIPSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFDuplicateItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'UpdateManagedRuleSetVersionExpiryDate' => [ 'name' => 'UpdateManagedRuleSetVersionExpiryDate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateManagedRuleSetVersionExpiryDateRequest', ], 'output' => [ 'shape' => 'UpdateManagedRuleSetVersionExpiryDateResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'UpdateRegexPatternSet' => [ 'name' => 'UpdateRegexPatternSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateRegexPatternSetRequest', ], 'output' => [ 'shape' => 'UpdateRegexPatternSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFDuplicateItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFInvalidOperationException', ], ], ], 'UpdateRuleGroup' => [ 'name' => 'UpdateRuleGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateRuleGroupRequest', ], 'output' => [ 'shape' => 'UpdateRuleGroupResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFDuplicateItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFUnavailableEntityException', ], [ 'shape' => 'WAFSubscriptionNotFoundException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFConfigurationWarningException', ], ], ], 'UpdateWebACL' => [ 'name' => 'UpdateWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateWebACLRequest', ], 'output' => [ 'shape' => 'UpdateWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFDuplicateItemException', ], [ 'shape' => 'WAFOptimisticLockException', ], [ 'shape' => 'WAFLimitsExceededException', ], [ 'shape' => 'WAFInvalidResourceException', ], [ 'shape' => 'WAFUnavailableEntityException', ], [ 'shape' => 'WAFSubscriptionNotFoundException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFExpiredManagedRuleGroupVersionException', ], [ 'shape' => 'WAFConfigurationWarningException', ], ], ], ], 'shapes' => [ 'APIKey' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => '.*\\S.*', ], 'APIKeySummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'APIKeySummary', ], ], 'APIKeySummary' => [ 'type' => 'structure', 'members' => [ 'TokenDomains' => [ 'shape' => 'TokenDomains', ], 'APIKey' => [ 'shape' => 'APIKey', ], 'CreationTimestamp' => [ 'shape' => 'Timestamp', ], 'Version' => [ 'shape' => 'APIKeyVersion', ], ], ], 'APIKeyTokenDomains' => [ 'type' => 'list', 'member' => [ 'shape' => 'TokenDomain', ], 'min' => 1, ], 'APIKeyVersion' => [ 'type' => 'integer', 'min' => 0, ], 'AWSManagedRulesACFPRuleSet' => [ 'type' => 'structure', 'required' => [ 'CreationPath', 'RegistrationPagePath', 'RequestInspection', ], 'members' => [ 'CreationPath' => [ 'shape' => 'CreationPathString', ], 'RegistrationPagePath' => [ 'shape' => 'RegistrationPagePathString', ], 'RequestInspection' => [ 'shape' => 'RequestInspectionACFP', ], 'ResponseInspection' => [ 'shape' => 'ResponseInspection', ], 'EnableRegexInPath' => [ 'shape' => 'Boolean', ], ], ], 'AWSManagedRulesATPRuleSet' => [ 'type' => 'structure', 'required' => [ 'LoginPath', ], 'members' => [ 'LoginPath' => [ 'shape' => 'String', ], 'RequestInspection' => [ 'shape' => 'RequestInspection', ], 'ResponseInspection' => [ 'shape' => 'ResponseInspection', ], 'EnableRegexInPath' => [ 'shape' => 'Boolean', ], ], ], 'AWSManagedRulesBotControlRuleSet' => [ 'type' => 'structure', 'required' => [ 'InspectionLevel', ], 'members' => [ 'InspectionLevel' => [ 'shape' => 'InspectionLevel', ], 'EnableMachineLearning' => [ 'shape' => 'Boolean', ], ], ], 'Action' => [ 'type' => 'string', ], 'ActionCondition' => [ 'type' => 'structure', 'required' => [ 'Action', ], 'members' => [ 'Action' => [ 'shape' => 'ActionValue', ], ], ], 'ActionValue' => [ 'type' => 'string', 'enum' => [ 'ALLOW', 'BLOCK', 'COUNT', 'CAPTCHA', 'CHALLENGE', 'EXCLUDED_AS_COUNT', ], ], 'AddressField' => [ 'type' => 'structure', 'required' => [ 'Identifier', ], 'members' => [ 'Identifier' => [ 'shape' => 'FieldIdentifier', ], ], ], 'AddressFields' => [ 'type' => 'list', 'member' => [ 'shape' => 'AddressField', ], ], 'All' => [ 'type' => 'structure', 'members' => [], ], 'AllQueryArguments' => [ 'type' => 'structure', 'members' => [], ], 'AllowAction' => [ 'type' => 'structure', 'members' => [ 'CustomRequestHandling' => [ 'shape' => 'CustomRequestHandling', ], ], ], 'AndStatement' => [ 'type' => 'structure', 'required' => [ 'Statements', ], 'members' => [ 'Statements' => [ 'shape' => 'Statements', ], ], ], 'AssociateWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'WebACLArn', 'ResourceArn', ], 'members' => [ 'WebACLArn' => [ 'shape' => 'ResourceArn', ], 'ResourceArn' => [ 'shape' => 'ResourceArn', ], ], ], 'AssociateWebACLResponse' => [ 'type' => 'structure', 'members' => [], ], 'AssociatedResourceType' => [ 'type' => 'string', 'enum' => [ 'CLOUDFRONT', ], ], 'AssociationConfig' => [ 'type' => 'structure', 'members' => [ 'RequestBody' => [ 'shape' => 'RequestBody', ], ], ], 'BlockAction' => [ 'type' => 'structure', 'members' => [ 'CustomResponse' => [ 'shape' => 'CustomResponse', ], ], ], 'Body' => [ 'type' => 'structure', 'members' => [ 'OversizeHandling' => [ 'shape' => 'OversizeHandling', ], ], ], 'BodyParsingFallbackBehavior' => [ 'type' => 'string', 'enum' => [ 'MATCH', 'NO_MATCH', 'EVALUATE_AS_STRING', ], ], 'Boolean' => [ 'type' => 'boolean', ], 'ByteMatchStatement' => [ 'type' => 'structure', 'required' => [ 'SearchString', 'FieldToMatch', 'TextTransformations', 'PositionalConstraint', ], 'members' => [ 'SearchString' => [ 'shape' => 'SearchString', ], 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], 'PositionalConstraint' => [ 'shape' => 'PositionalConstraint', ], ], ], 'CapacityUnit' => [ 'type' => 'long', 'min' => 1, ], 'CaptchaAction' => [ 'type' => 'structure', 'members' => [ 'CustomRequestHandling' => [ 'shape' => 'CustomRequestHandling', ], ], ], 'CaptchaConfig' => [ 'type' => 'structure', 'members' => [ 'ImmunityTimeProperty' => [ 'shape' => 'ImmunityTimeProperty', ], ], ], 'CaptchaResponse' => [ 'type' => 'structure', 'members' => [ 'ResponseCode' => [ 'shape' => 'ResponseCode', ], 'SolveTimestamp' => [ 'shape' => 'SolveTimestamp', ], 'FailureReason' => [ 'shape' => 'FailureReason', ], ], ], 'ChallengeAction' => [ 'type' => 'structure', 'members' => [ 'CustomRequestHandling' => [ 'shape' => 'CustomRequestHandling', ], ], ], 'ChallengeConfig' => [ 'type' => 'structure', 'members' => [ 'ImmunityTimeProperty' => [ 'shape' => 'ImmunityTimeProperty', ], ], ], 'ChallengeResponse' => [ 'type' => 'structure', 'members' => [ 'ResponseCode' => [ 'shape' => 'ResponseCode', ], 'SolveTimestamp' => [ 'shape' => 'SolveTimestamp', ], 'FailureReason' => [ 'shape' => 'FailureReason', ], ], ], 'CheckCapacityRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', 'Rules', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'Rules' => [ 'shape' => 'Rules', ], ], ], 'CheckCapacityResponse' => [ 'type' => 'structure', 'members' => [ 'Capacity' => [ 'shape' => 'ConsumedCapacity', ], ], ], 'ComparisonOperator' => [ 'type' => 'string', 'enum' => [ 'EQ', 'NE', 'LE', 'LT', 'GE', 'GT', ], ], 'Condition' => [ 'type' => 'structure', 'members' => [ 'ActionCondition' => [ 'shape' => 'ActionCondition', ], 'LabelNameCondition' => [ 'shape' => 'LabelNameCondition', ], ], ], 'Conditions' => [ 'type' => 'list', 'member' => [ 'shape' => 'Condition', ], 'min' => 1, ], 'ConsumedCapacity' => [ 'type' => 'long', 'min' => 0, ], 'CookieMatchPattern' => [ 'type' => 'structure', 'members' => [ 'All' => [ 'shape' => 'All', ], 'IncludedCookies' => [ 'shape' => 'CookieNames', ], 'ExcludedCookies' => [ 'shape' => 'CookieNames', ], ], ], 'CookieNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'SingleCookieName', ], 'max' => 199, 'min' => 1, ], 'Cookies' => [ 'type' => 'structure', 'required' => [ 'MatchPattern', 'MatchScope', 'OversizeHandling', ], 'members' => [ 'MatchPattern' => [ 'shape' => 'CookieMatchPattern', ], 'MatchScope' => [ 'shape' => 'MapMatchScope', ], 'OversizeHandling' => [ 'shape' => 'OversizeHandling', ], ], ], 'CountAction' => [ 'type' => 'structure', 'members' => [ 'CustomRequestHandling' => [ 'shape' => 'CustomRequestHandling', ], ], ], 'Country' => [ 'type' => 'string', ], 'CountryCode' => [ 'type' => 'string', 'enum' => [ 'AF', 'AX', 'AL', 'DZ', 'AS', 'AD', 'AO', 'AI', 'AQ', 'AG', 'AR', 'AM', 'AW', 'AU', 'AT', 'AZ', 'BS', 'BH', 'BD', 'BB', 'BY', 'BE', 'BZ', 'BJ', 'BM', 'BT', 'BO', 'BQ', 'BA', 'BW', 'BV', 'BR', 'IO', 'BN', 'BG', 'BF', 'BI', 'KH', 'CM', 'CA', 'CV', 'KY', 'CF', 'TD', 'CL', 'CN', 'CX', 'CC', 'CO', 'KM', 'CG', 'CD', 'CK', 'CR', 'CI', 'HR', 'CU', 'CW', 'CY', 'CZ', 'DK', 'DJ', 'DM', 'DO', 'EC', 'EG', 'SV', 'GQ', 'ER', 'EE', 'ET', 'FK', 'FO', 'FJ', 'FI', 'FR', 'GF', 'PF', 'TF', 'GA', 'GM', 'GE', 'DE', 'GH', 'GI', 'GR', 'GL', 'GD', 'GP', 'GU', 'GT', 'GG', 'GN', 'GW', 'GY', 'HT', 'HM', 'VA', 'HN', 'HK', 'HU', 'IS', 'IN', 'ID', 'IR', 'IQ', 'IE', 'IM', 'IL', 'IT', 'JM', 'JP', 'JE', 'JO', 'KZ', 'KE', 'KI', 'KP', 'KR', 'KW', 'KG', 'LA', 'LV', 'LB', 'LS', 'LR', 'LY', 'LI', 'LT', 'LU', 'MO', 'MK', 'MG', 'MW', 'MY', 'MV', 'ML', 'MT', 'MH', 'MQ', 'MR', 'MU', 'YT', 'MX', 'FM', 'MD', 'MC', 'MN', 'ME', 'MS', 'MA', 'MZ', 'MM', 'NA', 'NR', 'NP', 'NL', 'NC', 'NZ', 'NI', 'NE', 'NG', 'NU', 'NF', 'MP', 'NO', 'OM', 'PK', 'PW', 'PS', 'PA', 'PG', 'PY', 'PE', 'PH', 'PN', 'PL', 'PT', 'PR', 'QA', 'RE', 'RO', 'RU', 'RW', 'BL', 'SH', 'KN', 'LC', 'MF', 'PM', 'VC', 'WS', 'SM', 'ST', 'SA', 'SN', 'RS', 'SC', 'SL', 'SG', 'SX', 'SK', 'SI', 'SB', 'SO', 'ZA', 'GS', 'SS', 'ES', 'LK', 'SD', 'SR', 'SJ', 'SZ', 'SE', 'CH', 'SY', 'TW', 'TJ', 'TZ', 'TH', 'TL', 'TG', 'TK', 'TO', 'TT', 'TN', 'TR', 'TM', 'TC', 'TV', 'UG', 'UA', 'AE', 'GB', 'US', 'UM', 'UY', 'UZ', 'VU', 'VE', 'VN', 'VG', 'VI', 'WF', 'EH', 'YE', 'ZM', 'ZW', 'XK', ], ], 'CountryCodes' => [ 'type' => 'list', 'member' => [ 'shape' => 'CountryCode', ], 'min' => 1, ], 'CreateAPIKeyRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', 'TokenDomains', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'TokenDomains' => [ 'shape' => 'APIKeyTokenDomains', ], ], ], 'CreateAPIKeyResponse' => [ 'type' => 'structure', 'members' => [ 'APIKey' => [ 'shape' => 'APIKey', ], ], ], 'CreateIPSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'IPAddressVersion', 'Addresses', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'IPAddressVersion' => [ 'shape' => 'IPAddressVersion', ], 'Addresses' => [ 'shape' => 'IPAddresses', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateIPSetResponse' => [ 'type' => 'structure', 'members' => [ 'Summary' => [ 'shape' => 'IPSetSummary', ], ], ], 'CreateRegexPatternSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'RegularExpressionList', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'RegularExpressionList' => [ 'shape' => 'RegularExpressionList', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateRegexPatternSetResponse' => [ 'type' => 'structure', 'members' => [ 'Summary' => [ 'shape' => 'RegexPatternSetSummary', ], ], ], 'CreateRuleGroupRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Capacity', 'VisibilityConfig', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Capacity' => [ 'shape' => 'CapacityUnit', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'Rules' => [ 'shape' => 'Rules', ], 'VisibilityConfig' => [ 'shape' => 'VisibilityConfig', ], 'Tags' => [ 'shape' => 'TagList', ], 'CustomResponseBodies' => [ 'shape' => 'CustomResponseBodies', ], ], ], 'CreateRuleGroupResponse' => [ 'type' => 'structure', 'members' => [ 'Summary' => [ 'shape' => 'RuleGroupSummary', ], ], ], 'CreateWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'DefaultAction', 'VisibilityConfig', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'DefaultAction' => [ 'shape' => 'DefaultAction', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'Rules' => [ 'shape' => 'Rules', ], 'VisibilityConfig' => [ 'shape' => 'VisibilityConfig', ], 'Tags' => [ 'shape' => 'TagList', ], 'CustomResponseBodies' => [ 'shape' => 'CustomResponseBodies', ], 'CaptchaConfig' => [ 'shape' => 'CaptchaConfig', ], 'ChallengeConfig' => [ 'shape' => 'ChallengeConfig', ], 'TokenDomains' => [ 'shape' => 'TokenDomains', ], 'AssociationConfig' => [ 'shape' => 'AssociationConfig', ], ], ], 'CreateWebACLResponse' => [ 'type' => 'structure', 'members' => [ 'Summary' => [ 'shape' => 'WebACLSummary', ], ], ], 'CreationPathString' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '.*\\S.*', ], 'CustomHTTPHeader' => [ 'type' => 'structure', 'required' => [ 'Name', 'Value', ], 'members' => [ 'Name' => [ 'shape' => 'CustomHTTPHeaderName', ], 'Value' => [ 'shape' => 'CustomHTTPHeaderValue', ], ], ], 'CustomHTTPHeaderName' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '^[a-zA-Z0-9._$-]+$', ], 'CustomHTTPHeaderValue' => [ 'type' => 'string', 'max' => 255, 'min' => 1, 'pattern' => '.*', ], 'CustomHTTPHeaders' => [ 'type' => 'list', 'member' => [ 'shape' => 'CustomHTTPHeader', ], 'min' => 1, ], 'CustomRequestHandling' => [ 'type' => 'structure', 'required' => [ 'InsertHeaders', ], 'members' => [ 'InsertHeaders' => [ 'shape' => 'CustomHTTPHeaders', ], ], ], 'CustomResponse' => [ 'type' => 'structure', 'required' => [ 'ResponseCode', ], 'members' => [ 'ResponseCode' => [ 'shape' => 'ResponseStatusCode', ], 'CustomResponseBodyKey' => [ 'shape' => 'EntityName', ], 'ResponseHeaders' => [ 'shape' => 'CustomHTTPHeaders', ], ], ], 'CustomResponseBodies' => [ 'type' => 'map', 'key' => [ 'shape' => 'EntityName', ], 'value' => [ 'shape' => 'CustomResponseBody', ], 'min' => 1, ], 'CustomResponseBody' => [ 'type' => 'structure', 'required' => [ 'ContentType', 'Content', ], 'members' => [ 'ContentType' => [ 'shape' => 'ResponseContentType', ], 'Content' => [ 'shape' => 'ResponseContent', ], ], ], 'DefaultAction' => [ 'type' => 'structure', 'members' => [ 'Block' => [ 'shape' => 'BlockAction', ], 'Allow' => [ 'shape' => 'AllowAction', ], ], ], 'DeleteAPIKeyRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', 'APIKey', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'APIKey' => [ 'shape' => 'APIKey', ], ], ], 'DeleteAPIKeyResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteFirewallManagerRuleGroupsRequest' => [ 'type' => 'structure', 'required' => [ 'WebACLArn', 'WebACLLockToken', ], 'members' => [ 'WebACLArn' => [ 'shape' => 'ResourceArn', ], 'WebACLLockToken' => [ 'shape' => 'LockToken', ], ], ], 'DeleteFirewallManagerRuleGroupsResponse' => [ 'type' => 'structure', 'members' => [ 'NextWebACLLockToken' => [ 'shape' => 'LockToken', ], ], ], 'DeleteIPSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'DeleteIPSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteLoggingConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'ResourceArn', ], ], ], 'DeleteLoggingConfigurationResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeletePermissionPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'ResourceArn', ], ], ], 'DeletePermissionPolicyResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteRegexPatternSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'DeleteRegexPatternSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteRuleGroupRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'DeleteRuleGroupResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'DeleteWebACLResponse' => [ 'type' => 'structure', 'members' => [], ], 'DescribeAllManagedProductsRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], ], ], 'DescribeAllManagedProductsResponse' => [ 'type' => 'structure', 'members' => [ 'ManagedProducts' => [ 'shape' => 'ManagedProductDescriptors', ], ], ], 'DescribeManagedProductsByVendorRequest' => [ 'type' => 'structure', 'required' => [ 'VendorName', 'Scope', ], 'members' => [ 'VendorName' => [ 'shape' => 'VendorName', ], 'Scope' => [ 'shape' => 'Scope', ], ], ], 'DescribeManagedProductsByVendorResponse' => [ 'type' => 'structure', 'members' => [ 'ManagedProducts' => [ 'shape' => 'ManagedProductDescriptors', ], ], ], 'DescribeManagedRuleGroupRequest' => [ 'type' => 'structure', 'required' => [ 'VendorName', 'Name', 'Scope', ], 'members' => [ 'VendorName' => [ 'shape' => 'VendorName', ], 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'VersionName' => [ 'shape' => 'VersionKeyString', ], ], ], 'DescribeManagedRuleGroupResponse' => [ 'type' => 'structure', 'members' => [ 'VersionName' => [ 'shape' => 'VersionKeyString', ], 'SnsTopicArn' => [ 'shape' => 'ResourceArn', ], 'Capacity' => [ 'shape' => 'CapacityUnit', ], 'Rules' => [ 'shape' => 'RuleSummaries', ], 'LabelNamespace' => [ 'shape' => 'LabelName', ], 'AvailableLabels' => [ 'shape' => 'LabelSummaries', ], 'ConsumedLabels' => [ 'shape' => 'LabelSummaries', ], ], ], 'DisassociateWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'ResourceArn', ], ], ], 'DisassociateWebACLResponse' => [ 'type' => 'structure', 'members' => [], ], 'DownloadUrl' => [ 'type' => 'string', ], 'EmailField' => [ 'type' => 'structure', 'required' => [ 'Identifier', ], 'members' => [ 'Identifier' => [ 'shape' => 'FieldIdentifier', ], ], ], 'EntityDescription' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '^[\\w+=:#@/\\-,\\.][\\w+=:#@/\\-,\\.\\s]+[\\w+=:#@/\\-,\\.]$', ], 'EntityId' => [ 'type' => 'string', 'max' => 36, 'min' => 1, 'pattern' => '^[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$', ], 'EntityName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '^[\\w\\-]+$', ], 'ErrorMessage' => [ 'type' => 'string', ], 'ErrorReason' => [ 'type' => 'string', ], 'EvaluationWindowSec' => [ 'type' => 'long', ], 'ExcludedRule' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], ], ], 'ExcludedRules' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExcludedRule', ], 'max' => 100, ], 'FailureCode' => [ 'type' => 'integer', 'max' => 999, 'min' => 0, ], 'FailureReason' => [ 'type' => 'string', 'enum' => [ 'TOKEN_MISSING', 'TOKEN_EXPIRED', 'TOKEN_INVALID', 'TOKEN_DOMAIN_MISMATCH', ], ], 'FailureValue' => [ 'type' => 'string', 'max' => 100, 'min' => 1, 'pattern' => '.*\\S.*', ], 'FallbackBehavior' => [ 'type' => 'string', 'enum' => [ 'MATCH', 'NO_MATCH', ], ], 'FieldIdentifier' => [ 'type' => 'string', 'max' => 512, 'min' => 1, 'pattern' => '.*\\S.*', ], 'FieldToMatch' => [ 'type' => 'structure', 'members' => [ 'SingleHeader' => [ 'shape' => 'SingleHeader', ], 'SingleQueryArgument' => [ 'shape' => 'SingleQueryArgument', ], 'AllQueryArguments' => [ 'shape' => 'AllQueryArguments', ], 'UriPath' => [ 'shape' => 'UriPath', ], 'QueryString' => [ 'shape' => 'QueryString', ], 'Body' => [ 'shape' => 'Body', ], 'Method' => [ 'shape' => 'Method', ], 'JsonBody' => [ 'shape' => 'JsonBody', ], 'Headers' => [ 'shape' => 'Headers', ], 'Cookies' => [ 'shape' => 'Cookies', ], 'HeaderOrder' => [ 'shape' => 'HeaderOrder', ], 'JA3Fingerprint' => [ 'shape' => 'JA3Fingerprint', ], ], ], 'FieldToMatchData' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '.*\\S.*', ], 'Filter' => [ 'type' => 'structure', 'required' => [ 'Behavior', 'Requirement', 'Conditions', ], 'members' => [ 'Behavior' => [ 'shape' => 'FilterBehavior', ], 'Requirement' => [ 'shape' => 'FilterRequirement', ], 'Conditions' => [ 'shape' => 'Conditions', ], ], ], 'FilterBehavior' => [ 'type' => 'string', 'enum' => [ 'KEEP', 'DROP', ], ], 'FilterRequirement' => [ 'type' => 'string', 'enum' => [ 'MEETS_ALL', 'MEETS_ANY', ], ], 'Filters' => [ 'type' => 'list', 'member' => [ 'shape' => 'Filter', ], 'min' => 1, ], 'FirewallManagerRuleGroup' => [ 'type' => 'structure', 'required' => [ 'Name', 'Priority', 'FirewallManagerStatement', 'OverrideAction', 'VisibilityConfig', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Priority' => [ 'shape' => 'RulePriority', ], 'FirewallManagerStatement' => [ 'shape' => 'FirewallManagerStatement', ], 'OverrideAction' => [ 'shape' => 'OverrideAction', ], 'VisibilityConfig' => [ 'shape' => 'VisibilityConfig', ], ], ], 'FirewallManagerRuleGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'FirewallManagerRuleGroup', ], ], 'FirewallManagerStatement' => [ 'type' => 'structure', 'members' => [ 'ManagedRuleGroupStatement' => [ 'shape' => 'ManagedRuleGroupStatement', ], 'RuleGroupReferenceStatement' => [ 'shape' => 'RuleGroupReferenceStatement', ], ], ], 'ForwardedIPConfig' => [ 'type' => 'structure', 'required' => [ 'HeaderName', 'FallbackBehavior', ], 'members' => [ 'HeaderName' => [ 'shape' => 'ForwardedIPHeaderName', ], 'FallbackBehavior' => [ 'shape' => 'FallbackBehavior', ], ], ], 'ForwardedIPHeaderName' => [ 'type' => 'string', 'max' => 255, 'min' => 1, 'pattern' => '^[a-zA-Z0-9-]+$', ], 'ForwardedIPPosition' => [ 'type' => 'string', 'enum' => [ 'FIRST', 'LAST', 'ANY', ], ], 'GenerateMobileSdkReleaseUrlRequest' => [ 'type' => 'structure', 'required' => [ 'Platform', 'ReleaseVersion', ], 'members' => [ 'Platform' => [ 'shape' => 'Platform', ], 'ReleaseVersion' => [ 'shape' => 'VersionKeyString', ], ], ], 'GenerateMobileSdkReleaseUrlResponse' => [ 'type' => 'structure', 'members' => [ 'Url' => [ 'shape' => 'DownloadUrl', ], ], ], 'GeoMatchStatement' => [ 'type' => 'structure', 'members' => [ 'CountryCodes' => [ 'shape' => 'CountryCodes', ], 'ForwardedIPConfig' => [ 'shape' => 'ForwardedIPConfig', ], ], ], 'GetDecryptedAPIKeyRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', 'APIKey', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'APIKey' => [ 'shape' => 'APIKey', ], ], ], 'GetDecryptedAPIKeyResponse' => [ 'type' => 'structure', 'members' => [ 'TokenDomains' => [ 'shape' => 'TokenDomains', ], 'CreationTimestamp' => [ 'shape' => 'Timestamp', ], ], ], 'GetIPSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], ], ], 'GetIPSetResponse' => [ 'type' => 'structure', 'members' => [ 'IPSet' => [ 'shape' => 'IPSet', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'GetLoggingConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'ResourceArn', ], ], ], 'GetLoggingConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'LoggingConfiguration' => [ 'shape' => 'LoggingConfiguration', ], ], ], 'GetManagedRuleSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], ], ], 'GetManagedRuleSetResponse' => [ 'type' => 'structure', 'members' => [ 'ManagedRuleSet' => [ 'shape' => 'ManagedRuleSet', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'GetMobileSdkReleaseRequest' => [ 'type' => 'structure', 'required' => [ 'Platform', 'ReleaseVersion', ], 'members' => [ 'Platform' => [ 'shape' => 'Platform', ], 'ReleaseVersion' => [ 'shape' => 'VersionKeyString', ], ], ], 'GetMobileSdkReleaseResponse' => [ 'type' => 'structure', 'members' => [ 'MobileSdkRelease' => [ 'shape' => 'MobileSdkRelease', ], ], ], 'GetPermissionPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'ResourceArn', ], ], ], 'GetPermissionPolicyResponse' => [ 'type' => 'structure', 'members' => [ 'Policy' => [ 'shape' => 'PolicyString', ], ], ], 'GetRateBasedStatementManagedKeysRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', 'WebACLName', 'WebACLId', 'RuleName', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'WebACLName' => [ 'shape' => 'EntityName', ], 'WebACLId' => [ 'shape' => 'EntityId', ], 'RuleGroupRuleName' => [ 'shape' => 'EntityName', ], 'RuleName' => [ 'shape' => 'EntityName', ], ], ], 'GetRateBasedStatementManagedKeysResponse' => [ 'type' => 'structure', 'members' => [ 'ManagedKeysIPV4' => [ 'shape' => 'RateBasedStatementManagedKeysIPSet', ], 'ManagedKeysIPV6' => [ 'shape' => 'RateBasedStatementManagedKeysIPSet', ], ], ], 'GetRegexPatternSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], ], ], 'GetRegexPatternSetResponse' => [ 'type' => 'structure', 'members' => [ 'RegexPatternSet' => [ 'shape' => 'RegexPatternSet', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'GetRuleGroupRequest' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'ARN' => [ 'shape' => 'ResourceArn', ], ], ], 'GetRuleGroupResponse' => [ 'type' => 'structure', 'members' => [ 'RuleGroup' => [ 'shape' => 'RuleGroup', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'GetSampledRequestsRequest' => [ 'type' => 'structure', 'required' => [ 'WebAclArn', 'RuleMetricName', 'Scope', 'TimeWindow', 'MaxItems', ], 'members' => [ 'WebAclArn' => [ 'shape' => 'ResourceArn', ], 'RuleMetricName' => [ 'shape' => 'MetricName', ], 'Scope' => [ 'shape' => 'Scope', ], 'TimeWindow' => [ 'shape' => 'TimeWindow', ], 'MaxItems' => [ 'shape' => 'ListMaxItems', ], ], ], 'GetSampledRequestsResponse' => [ 'type' => 'structure', 'members' => [ 'SampledRequests' => [ 'shape' => 'SampledHTTPRequests', ], 'PopulationSize' => [ 'shape' => 'PopulationSize', ], 'TimeWindow' => [ 'shape' => 'TimeWindow', ], ], ], 'GetWebACLForResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'ResourceArn', ], ], ], 'GetWebACLForResourceResponse' => [ 'type' => 'structure', 'members' => [ 'WebACL' => [ 'shape' => 'WebACL', ], ], ], 'GetWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], ], ], 'GetWebACLResponse' => [ 'type' => 'structure', 'members' => [ 'WebACL' => [ 'shape' => 'WebACL', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'ApplicationIntegrationURL' => [ 'shape' => 'OutputUrl', ], ], ], 'HTTPHeader' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'HeaderName', ], 'Value' => [ 'shape' => 'HeaderValue', ], ], ], 'HTTPHeaders' => [ 'type' => 'list', 'member' => [ 'shape' => 'HTTPHeader', ], ], 'HTTPMethod' => [ 'type' => 'string', ], 'HTTPRequest' => [ 'type' => 'structure', 'members' => [ 'ClientIP' => [ 'shape' => 'IPString', ], 'Country' => [ 'shape' => 'Country', ], 'URI' => [ 'shape' => 'URIString', ], 'Method' => [ 'shape' => 'HTTPMethod', ], 'HTTPVersion' => [ 'shape' => 'HTTPVersion', ], 'Headers' => [ 'shape' => 'HTTPHeaders', ], ], ], 'HTTPVersion' => [ 'type' => 'string', ], 'HeaderMatchPattern' => [ 'type' => 'structure', 'members' => [ 'All' => [ 'shape' => 'All', ], 'IncludedHeaders' => [ 'shape' => 'HeaderNames', ], 'ExcludedHeaders' => [ 'shape' => 'HeaderNames', ], ], ], 'HeaderName' => [ 'type' => 'string', ], 'HeaderNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'FieldToMatchData', ], 'max' => 199, 'min' => 1, ], 'HeaderOrder' => [ 'type' => 'structure', 'required' => [ 'OversizeHandling', ], 'members' => [ 'OversizeHandling' => [ 'shape' => 'OversizeHandling', ], ], ], 'HeaderValue' => [ 'type' => 'string', ], 'Headers' => [ 'type' => 'structure', 'required' => [ 'MatchPattern', 'MatchScope', 'OversizeHandling', ], 'members' => [ 'MatchPattern' => [ 'shape' => 'HeaderMatchPattern', ], 'MatchScope' => [ 'shape' => 'MapMatchScope', ], 'OversizeHandling' => [ 'shape' => 'OversizeHandling', ], ], ], 'IPAddress' => [ 'type' => 'string', 'max' => 50, 'min' => 1, 'pattern' => '.*\\S.*', ], 'IPAddressVersion' => [ 'type' => 'string', 'enum' => [ 'IPV4', 'IPV6', ], ], 'IPAddresses' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPAddress', ], ], 'IPSet' => [ 'type' => 'structure', 'required' => [ 'Name', 'Id', 'ARN', 'IPAddressVersion', 'Addresses', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'ARN' => [ 'shape' => 'ResourceArn', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'IPAddressVersion' => [ 'shape' => 'IPAddressVersion', ], 'Addresses' => [ 'shape' => 'IPAddresses', ], ], ], 'IPSetForwardedIPConfig' => [ 'type' => 'structure', 'required' => [ 'HeaderName', 'FallbackBehavior', 'Position', ], 'members' => [ 'HeaderName' => [ 'shape' => 'ForwardedIPHeaderName', ], 'FallbackBehavior' => [ 'shape' => 'FallbackBehavior', ], 'Position' => [ 'shape' => 'ForwardedIPPosition', ], ], ], 'IPSetReferenceStatement' => [ 'type' => 'structure', 'required' => [ 'ARN', ], 'members' => [ 'ARN' => [ 'shape' => 'ResourceArn', ], 'IPSetForwardedIPConfig' => [ 'shape' => 'IPSetForwardedIPConfig', ], ], ], 'IPSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPSetSummary', ], ], 'IPSetSummary' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'ARN' => [ 'shape' => 'ResourceArn', ], ], ], 'IPString' => [ 'type' => 'string', ], 'ImmunityTimeProperty' => [ 'type' => 'structure', 'required' => [ 'ImmunityTime', ], 'members' => [ 'ImmunityTime' => [ 'shape' => 'TimeWindowSecond', ], ], ], 'InspectionLevel' => [ 'type' => 'string', 'enum' => [ 'COMMON', 'TARGETED', ], ], 'JA3Fingerprint' => [ 'type' => 'structure', 'required' => [ 'FallbackBehavior', ], 'members' => [ 'FallbackBehavior' => [ 'shape' => 'FallbackBehavior', ], ], ], 'JsonBody' => [ 'type' => 'structure', 'required' => [ 'MatchPattern', 'MatchScope', ], 'members' => [ 'MatchPattern' => [ 'shape' => 'JsonMatchPattern', ], 'MatchScope' => [ 'shape' => 'JsonMatchScope', ], 'InvalidFallbackBehavior' => [ 'shape' => 'BodyParsingFallbackBehavior', ], 'OversizeHandling' => [ 'shape' => 'OversizeHandling', ], ], ], 'JsonMatchPattern' => [ 'type' => 'structure', 'members' => [ 'All' => [ 'shape' => 'All', ], 'IncludedPaths' => [ 'shape' => 'JsonPointerPaths', ], ], ], 'JsonMatchScope' => [ 'type' => 'string', 'enum' => [ 'ALL', 'KEY', 'VALUE', ], ], 'JsonPointerPath' => [ 'type' => 'string', 'max' => 512, 'min' => 1, 'pattern' => '([/])|([/](([^~])|(~[01]))+)', ], 'JsonPointerPaths' => [ 'type' => 'list', 'member' => [ 'shape' => 'JsonPointerPath', ], 'min' => 1, ], 'Label' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'Name' => [ 'shape' => 'LabelName', ], ], ], 'LabelMatchKey' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, 'pattern' => '^[0-9A-Za-z_\\-:]+$', ], 'LabelMatchScope' => [ 'type' => 'string', 'enum' => [ 'LABEL', 'NAMESPACE', ], ], 'LabelMatchStatement' => [ 'type' => 'structure', 'required' => [ 'Scope', 'Key', ], 'members' => [ 'Scope' => [ 'shape' => 'LabelMatchScope', ], 'Key' => [ 'shape' => 'LabelMatchKey', ], ], ], 'LabelName' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, 'pattern' => '^[0-9A-Za-z_\\-:]+$', ], 'LabelNameCondition' => [ 'type' => 'structure', 'required' => [ 'LabelName', ], 'members' => [ 'LabelName' => [ 'shape' => 'LabelName', ], ], ], 'LabelNamespace' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, 'pattern' => '^[0-9A-Za-z_\\-:]+:$', ], 'LabelSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'LabelSummary', ], ], 'LabelSummary' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'LabelName', ], ], ], 'Labels' => [ 'type' => 'list', 'member' => [ 'shape' => 'Label', ], ], 'ListAPIKeysRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListAPIKeysResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'APIKeySummaries' => [ 'shape' => 'APIKeySummaries', ], 'ApplicationIntegrationURL' => [ 'shape' => 'OutputUrl', ], ], ], 'ListAvailableManagedRuleGroupVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'VendorName', 'Name', 'Scope', ], 'members' => [ 'VendorName' => [ 'shape' => 'VendorName', ], 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListAvailableManagedRuleGroupVersionsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Versions' => [ 'shape' => 'ManagedRuleGroupVersions', ], 'CurrentDefaultVersion' => [ 'shape' => 'VersionKeyString', ], ], ], 'ListAvailableManagedRuleGroupsRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListAvailableManagedRuleGroupsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'ManagedRuleGroups' => [ 'shape' => 'ManagedRuleGroupSummaries', ], ], ], 'ListIPSetsRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListIPSetsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'IPSets' => [ 'shape' => 'IPSetSummaries', ], ], ], 'ListLoggingConfigurationsRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListLoggingConfigurationsResponse' => [ 'type' => 'structure', 'members' => [ 'LoggingConfigurations' => [ 'shape' => 'LoggingConfigurations', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], ], ], 'ListManagedRuleSetsRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListManagedRuleSetsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'ManagedRuleSets' => [ 'shape' => 'ManagedRuleSetSummaries', ], ], ], 'ListMaxItems' => [ 'type' => 'long', 'max' => 500, 'min' => 1, ], 'ListMobileSdkReleasesRequest' => [ 'type' => 'structure', 'required' => [ 'Platform', ], 'members' => [ 'Platform' => [ 'shape' => 'Platform', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListMobileSdkReleasesResponse' => [ 'type' => 'structure', 'members' => [ 'ReleaseSummaries' => [ 'shape' => 'ReleaseSummaries', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], ], ], 'ListRegexPatternSetsRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListRegexPatternSetsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'RegexPatternSets' => [ 'shape' => 'RegexPatternSetSummaries', ], ], ], 'ListResourcesForWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'WebACLArn', ], 'members' => [ 'WebACLArn' => [ 'shape' => 'ResourceArn', ], 'ResourceType' => [ 'shape' => 'ResourceType', ], ], ], 'ListResourcesForWebACLResponse' => [ 'type' => 'structure', 'members' => [ 'ResourceArns' => [ 'shape' => 'ResourceArns', ], ], ], 'ListRuleGroupsRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListRuleGroupsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'RuleGroups' => [ 'shape' => 'RuleGroupSummaries', ], ], ], 'ListTagsForResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceARN', ], 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], 'ResourceARN' => [ 'shape' => 'ResourceArn', ], ], ], 'ListTagsForResourceResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'TagInfoForResource' => [ 'shape' => 'TagInfoForResource', ], ], ], 'ListWebACLsRequest' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'Scope', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListWebACLsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'WebACLs' => [ 'shape' => 'WebACLSummaries', ], ], ], 'LockToken' => [ 'type' => 'string', 'max' => 36, 'min' => 1, 'pattern' => '^[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$', ], 'LogDestinationConfigs' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceArn', ], 'max' => 100, 'min' => 1, ], 'LoggingConfiguration' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', 'LogDestinationConfigs', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'ResourceArn', ], 'LogDestinationConfigs' => [ 'shape' => 'LogDestinationConfigs', ], 'RedactedFields' => [ 'shape' => 'RedactedFields', ], 'ManagedByFirewallManager' => [ 'shape' => 'Boolean', ], 'LoggingFilter' => [ 'shape' => 'LoggingFilter', ], ], ], 'LoggingConfigurations' => [ 'type' => 'list', 'member' => [ 'shape' => 'LoggingConfiguration', ], ], 'LoggingFilter' => [ 'type' => 'structure', 'required' => [ 'Filters', 'DefaultBehavior', ], 'members' => [ 'Filters' => [ 'shape' => 'Filters', ], 'DefaultBehavior' => [ 'shape' => 'FilterBehavior', ], ], ], 'LoginPathString' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '.*\\S.*', ], 'ManagedProductDescriptor' => [ 'type' => 'structure', 'members' => [ 'VendorName' => [ 'shape' => 'VendorName', ], 'ManagedRuleSetName' => [ 'shape' => 'EntityName', ], 'ProductId' => [ 'shape' => 'ProductId', ], 'ProductLink' => [ 'shape' => 'ProductLink', ], 'ProductTitle' => [ 'shape' => 'ProductTitle', ], 'ProductDescription' => [ 'shape' => 'ProductDescription', ], 'SnsTopicArn' => [ 'shape' => 'ResourceArn', ], 'IsVersioningSupported' => [ 'shape' => 'Boolean', ], 'IsAdvancedManagedRuleSet' => [ 'shape' => 'Boolean', ], ], ], 'ManagedProductDescriptors' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedProductDescriptor', ], ], 'ManagedRuleGroupConfig' => [ 'type' => 'structure', 'members' => [ 'LoginPath' => [ 'shape' => 'LoginPathString', 'deprecated' => true, 'deprecatedMessage' => 'Deprecated. Use AWSManagedRulesATPRuleSet LoginPath', ], 'PayloadType' => [ 'shape' => 'PayloadType', 'deprecated' => true, 'deprecatedMessage' => 'Deprecated. Use AWSManagedRulesATPRuleSet RequestInspection PayloadType', ], 'UsernameField' => [ 'shape' => 'UsernameField', 'deprecated' => true, 'deprecatedMessage' => 'Deprecated. Use AWSManagedRulesATPRuleSet RequestInspection UsernameField', ], 'PasswordField' => [ 'shape' => 'PasswordField', 'deprecated' => true, 'deprecatedMessage' => 'Deprecated. Use AWSManagedRulesATPRuleSet RequestInspection PasswordField', ], 'AWSManagedRulesBotControlRuleSet' => [ 'shape' => 'AWSManagedRulesBotControlRuleSet', ], 'AWSManagedRulesATPRuleSet' => [ 'shape' => 'AWSManagedRulesATPRuleSet', ], 'AWSManagedRulesACFPRuleSet' => [ 'shape' => 'AWSManagedRulesACFPRuleSet', ], ], ], 'ManagedRuleGroupConfigs' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedRuleGroupConfig', ], ], 'ManagedRuleGroupStatement' => [ 'type' => 'structure', 'required' => [ 'VendorName', 'Name', ], 'members' => [ 'VendorName' => [ 'shape' => 'VendorName', ], 'Name' => [ 'shape' => 'EntityName', ], 'Version' => [ 'shape' => 'VersionKeyString', ], 'ExcludedRules' => [ 'shape' => 'ExcludedRules', ], 'ScopeDownStatement' => [ 'shape' => 'Statement', ], 'ManagedRuleGroupConfigs' => [ 'shape' => 'ManagedRuleGroupConfigs', ], 'RuleActionOverrides' => [ 'shape' => 'RuleActionOverrides', ], ], ], 'ManagedRuleGroupSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedRuleGroupSummary', ], ], 'ManagedRuleGroupSummary' => [ 'type' => 'structure', 'members' => [ 'VendorName' => [ 'shape' => 'VendorName', ], 'Name' => [ 'shape' => 'EntityName', ], 'VersioningSupported' => [ 'shape' => 'Boolean', ], 'Description' => [ 'shape' => 'EntityDescription', ], ], ], 'ManagedRuleGroupVersion' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'VersionKeyString', ], 'LastUpdateTimestamp' => [ 'shape' => 'Timestamp', ], ], ], 'ManagedRuleGroupVersions' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedRuleGroupVersion', ], ], 'ManagedRuleSet' => [ 'type' => 'structure', 'required' => [ 'Name', 'Id', 'ARN', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'ARN' => [ 'shape' => 'ResourceArn', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'PublishedVersions' => [ 'shape' => 'PublishedVersions', ], 'RecommendedVersion' => [ 'shape' => 'VersionKeyString', ], 'LabelNamespace' => [ 'shape' => 'LabelName', ], ], ], 'ManagedRuleSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedRuleSetSummary', ], ], 'ManagedRuleSetSummary' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'ARN' => [ 'shape' => 'ResourceArn', ], 'LabelNamespace' => [ 'shape' => 'LabelName', ], ], ], 'ManagedRuleSetVersion' => [ 'type' => 'structure', 'members' => [ 'AssociatedRuleGroupArn' => [ 'shape' => 'ResourceArn', ], 'Capacity' => [ 'shape' => 'CapacityUnit', ], 'ForecastedLifetime' => [ 'shape' => 'TimeWindowDay', ], 'PublishTimestamp' => [ 'shape' => 'Timestamp', ], 'LastUpdateTimestamp' => [ 'shape' => 'Timestamp', ], 'ExpiryTimestamp' => [ 'shape' => 'Timestamp', ], ], ], 'MapMatchScope' => [ 'type' => 'string', 'enum' => [ 'ALL', 'KEY', 'VALUE', ], ], 'Method' => [ 'type' => 'structure', 'members' => [], ], 'MetricName' => [ 'type' => 'string', 'max' => 255, 'min' => 1, 'pattern' => '^[\\w#:\\.\\-/]+$', ], 'MobileSdkRelease' => [ 'type' => 'structure', 'members' => [ 'ReleaseVersion' => [ 'shape' => 'VersionKeyString', ], 'Timestamp' => [ 'shape' => 'Timestamp', ], 'ReleaseNotes' => [ 'shape' => 'ReleaseNotes', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'NextMarker' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '.*\\S.*', ], 'NoneAction' => [ 'type' => 'structure', 'members' => [], ], 'NotStatement' => [ 'type' => 'structure', 'required' => [ 'Statement', ], 'members' => [ 'Statement' => [ 'shape' => 'Statement', ], ], ], 'OrStatement' => [ 'type' => 'structure', 'required' => [ 'Statements', ], 'members' => [ 'Statements' => [ 'shape' => 'Statements', ], ], ], 'OutputUrl' => [ 'type' => 'string', ], 'OverrideAction' => [ 'type' => 'structure', 'members' => [ 'Count' => [ 'shape' => 'CountAction', ], 'None' => [ 'shape' => 'NoneAction', ], ], ], 'OversizeHandling' => [ 'type' => 'string', 'enum' => [ 'CONTINUE', 'MATCH', 'NO_MATCH', ], ], 'PaginationLimit' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'ParameterExceptionField' => [ 'type' => 'string', 'enum' => [ 'WEB_ACL', 'RULE_GROUP', 'REGEX_PATTERN_SET', 'IP_SET', 'MANAGED_RULE_SET', 'RULE', 'EXCLUDED_RULE', 'STATEMENT', 'BYTE_MATCH_STATEMENT', 'SQLI_MATCH_STATEMENT', 'XSS_MATCH_STATEMENT', 'SIZE_CONSTRAINT_STATEMENT', 'GEO_MATCH_STATEMENT', 'RATE_BASED_STATEMENT', 'RULE_GROUP_REFERENCE_STATEMENT', 'REGEX_PATTERN_REFERENCE_STATEMENT', 'IP_SET_REFERENCE_STATEMENT', 'MANAGED_RULE_SET_STATEMENT', 'LABEL_MATCH_STATEMENT', 'AND_STATEMENT', 'OR_STATEMENT', 'NOT_STATEMENT', 'IP_ADDRESS', 'IP_ADDRESS_VERSION', 'FIELD_TO_MATCH', 'TEXT_TRANSFORMATION', 'SINGLE_QUERY_ARGUMENT', 'SINGLE_HEADER', 'DEFAULT_ACTION', 'RULE_ACTION', 'ENTITY_LIMIT', 'OVERRIDE_ACTION', 'SCOPE_VALUE', 'RESOURCE_ARN', 'RESOURCE_TYPE', 'TAGS', 'TAG_KEYS', 'METRIC_NAME', 'FIREWALL_MANAGER_STATEMENT', 'FALLBACK_BEHAVIOR', 'POSITION', 'FORWARDED_IP_CONFIG', 'IP_SET_FORWARDED_IP_CONFIG', 'HEADER_NAME', 'CUSTOM_REQUEST_HANDLING', 'RESPONSE_CONTENT_TYPE', 'CUSTOM_RESPONSE', 'CUSTOM_RESPONSE_BODY', 'JSON_MATCH_PATTERN', 'JSON_MATCH_SCOPE', 'BODY_PARSING_FALLBACK_BEHAVIOR', 'LOGGING_FILTER', 'FILTER_CONDITION', 'EXPIRE_TIMESTAMP', 'CHANGE_PROPAGATION_STATUS', 'ASSOCIABLE_RESOURCE', 'LOG_DESTINATION', 'MANAGED_RULE_GROUP_CONFIG', 'PAYLOAD_TYPE', 'HEADER_MATCH_PATTERN', 'COOKIE_MATCH_PATTERN', 'MAP_MATCH_SCOPE', 'OVERSIZE_HANDLING', 'CHALLENGE_CONFIG', 'TOKEN_DOMAIN', 'ATP_RULE_SET_RESPONSE_INSPECTION', 'ASSOCIATED_RESOURCE_TYPE', 'SCOPE_DOWN', 'CUSTOM_KEYS', 'ACP_RULE_SET_RESPONSE_INSPECTION', ], ], 'ParameterExceptionParameter' => [ 'type' => 'string', 'min' => 1, ], 'PasswordField' => [ 'type' => 'structure', 'required' => [ 'Identifier', ], 'members' => [ 'Identifier' => [ 'shape' => 'FieldIdentifier', ], ], ], 'PayloadType' => [ 'type' => 'string', 'enum' => [ 'JSON', 'FORM_ENCODED', ], ], 'PhoneNumberField' => [ 'type' => 'structure', 'required' => [ 'Identifier', ], 'members' => [ 'Identifier' => [ 'shape' => 'FieldIdentifier', ], ], ], 'PhoneNumberFields' => [ 'type' => 'list', 'member' => [ 'shape' => 'PhoneNumberField', ], ], 'Platform' => [ 'type' => 'string', 'enum' => [ 'IOS', 'ANDROID', ], ], 'PolicyString' => [ 'type' => 'string', 'max' => 395000, 'min' => 1, 'pattern' => '.*\\S.*', ], 'PopulationSize' => [ 'type' => 'long', ], 'PositionalConstraint' => [ 'type' => 'string', 'enum' => [ 'EXACTLY', 'STARTS_WITH', 'ENDS_WITH', 'CONTAINS', 'CONTAINS_WORD', ], ], 'ProductDescription' => [ 'type' => 'string', 'min' => 1, 'pattern' => '.*\\S.*', ], 'ProductId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '.*\\S.*', ], 'ProductLink' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => '.*\\S.*', ], 'ProductTitle' => [ 'type' => 'string', 'min' => 1, 'pattern' => '.*\\S.*', ], 'PublishedVersions' => [ 'type' => 'map', 'key' => [ 'shape' => 'VersionKeyString', ], 'value' => [ 'shape' => 'ManagedRuleSetVersion', ], ], 'PutLoggingConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'LoggingConfiguration', ], 'members' => [ 'LoggingConfiguration' => [ 'shape' => 'LoggingConfiguration', ], ], ], 'PutLoggingConfigurationResponse' => [ 'type' => 'structure', 'members' => [ 'LoggingConfiguration' => [ 'shape' => 'LoggingConfiguration', ], ], ], 'PutManagedRuleSetVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'RecommendedVersion' => [ 'shape' => 'VersionKeyString', ], 'VersionsToPublish' => [ 'shape' => 'VersionsToPublish', ], ], ], 'PutManagedRuleSetVersionsResponse' => [ 'type' => 'structure', 'members' => [ 'NextLockToken' => [ 'shape' => 'LockToken', ], ], ], 'PutPermissionPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', 'Policy', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'ResourceArn', ], 'Policy' => [ 'shape' => 'PolicyString', ], ], ], 'PutPermissionPolicyResponse' => [ 'type' => 'structure', 'members' => [], ], 'QueryString' => [ 'type' => 'structure', 'members' => [], ], 'RateBasedStatement' => [ 'type' => 'structure', 'required' => [ 'Limit', 'AggregateKeyType', ], 'members' => [ 'Limit' => [ 'shape' => 'RateLimit', ], 'EvaluationWindowSec' => [ 'shape' => 'EvaluationWindowSec', ], 'AggregateKeyType' => [ 'shape' => 'RateBasedStatementAggregateKeyType', ], 'ScopeDownStatement' => [ 'shape' => 'Statement', ], 'ForwardedIPConfig' => [ 'shape' => 'ForwardedIPConfig', ], 'CustomKeys' => [ 'shape' => 'RateBasedStatementCustomKeys', ], ], ], 'RateBasedStatementAggregateKeyType' => [ 'type' => 'string', 'enum' => [ 'IP', 'FORWARDED_IP', 'CUSTOM_KEYS', 'CONSTANT', ], ], 'RateBasedStatementCustomKey' => [ 'type' => 'structure', 'members' => [ 'Header' => [ 'shape' => 'RateLimitHeader', ], 'Cookie' => [ 'shape' => 'RateLimitCookie', ], 'QueryArgument' => [ 'shape' => 'RateLimitQueryArgument', ], 'QueryString' => [ 'shape' => 'RateLimitQueryString', ], 'HTTPMethod' => [ 'shape' => 'RateLimitHTTPMethod', ], 'ForwardedIP' => [ 'shape' => 'RateLimitForwardedIP', ], 'IP' => [ 'shape' => 'RateLimitIP', ], 'LabelNamespace' => [ 'shape' => 'RateLimitLabelNamespace', ], 'UriPath' => [ 'shape' => 'RateLimitUriPath', ], ], ], 'RateBasedStatementCustomKeys' => [ 'type' => 'list', 'member' => [ 'shape' => 'RateBasedStatementCustomKey', ], 'max' => 5, 'min' => 1, ], 'RateBasedStatementManagedKeysIPSet' => [ 'type' => 'structure', 'members' => [ 'IPAddressVersion' => [ 'shape' => 'IPAddressVersion', ], 'Addresses' => [ 'shape' => 'IPAddresses', ], ], ], 'RateLimit' => [ 'type' => 'long', 'max' => 2000000000, 'min' => 100, ], 'RateLimitCookie' => [ 'type' => 'structure', 'required' => [ 'Name', 'TextTransformations', ], 'members' => [ 'Name' => [ 'shape' => 'FieldToMatchData', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], 'RateLimitForwardedIP' => [ 'type' => 'structure', 'members' => [], ], 'RateLimitHTTPMethod' => [ 'type' => 'structure', 'members' => [], ], 'RateLimitHeader' => [ 'type' => 'structure', 'required' => [ 'Name', 'TextTransformations', ], 'members' => [ 'Name' => [ 'shape' => 'FieldToMatchData', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], 'RateLimitIP' => [ 'type' => 'structure', 'members' => [], ], 'RateLimitLabelNamespace' => [ 'type' => 'structure', 'required' => [ 'Namespace', ], 'members' => [ 'Namespace' => [ 'shape' => 'LabelNamespace', ], ], ], 'RateLimitQueryArgument' => [ 'type' => 'structure', 'required' => [ 'Name', 'TextTransformations', ], 'members' => [ 'Name' => [ 'shape' => 'FieldToMatchData', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], 'RateLimitQueryString' => [ 'type' => 'structure', 'required' => [ 'TextTransformations', ], 'members' => [ 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], 'RateLimitUriPath' => [ 'type' => 'structure', 'required' => [ 'TextTransformations', ], 'members' => [ 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], 'RedactedFields' => [ 'type' => 'list', 'member' => [ 'shape' => 'FieldToMatch', ], 'max' => 100, ], 'Regex' => [ 'type' => 'structure', 'members' => [ 'RegexString' => [ 'shape' => 'RegexPatternString', ], ], ], 'RegexMatchStatement' => [ 'type' => 'structure', 'required' => [ 'RegexString', 'FieldToMatch', 'TextTransformations', ], 'members' => [ 'RegexString' => [ 'shape' => 'RegexPatternString', ], 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], 'RegexPatternSet' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'ARN' => [ 'shape' => 'ResourceArn', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'RegularExpressionList' => [ 'shape' => 'RegularExpressionList', ], ], ], 'RegexPatternSetReferenceStatement' => [ 'type' => 'structure', 'required' => [ 'ARN', 'FieldToMatch', 'TextTransformations', ], 'members' => [ 'ARN' => [ 'shape' => 'ResourceArn', ], 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], 'RegexPatternSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'RegexPatternSetSummary', ], ], 'RegexPatternSetSummary' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'ARN' => [ 'shape' => 'ResourceArn', ], ], ], 'RegexPatternString' => [ 'type' => 'string', 'max' => 512, 'min' => 1, 'pattern' => '.*', ], 'RegistrationPagePathString' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '.*\\S.*', ], 'RegularExpressionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Regex', ], ], 'ReleaseNotes' => [ 'type' => 'string', ], 'ReleaseSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReleaseSummary', ], ], 'ReleaseSummary' => [ 'type' => 'structure', 'members' => [ 'ReleaseVersion' => [ 'shape' => 'VersionKeyString', ], 'Timestamp' => [ 'shape' => 'Timestamp', ], ], ], 'RequestBody' => [ 'type' => 'map', 'key' => [ 'shape' => 'AssociatedResourceType', ], 'value' => [ 'shape' => 'RequestBodyAssociatedResourceTypeConfig', ], ], 'RequestBodyAssociatedResourceTypeConfig' => [ 'type' => 'structure', 'required' => [ 'DefaultSizeInspectionLimit', ], 'members' => [ 'DefaultSizeInspectionLimit' => [ 'shape' => 'SizeInspectionLimit', ], ], ], 'RequestInspection' => [ 'type' => 'structure', 'required' => [ 'PayloadType', 'UsernameField', 'PasswordField', ], 'members' => [ 'PayloadType' => [ 'shape' => 'PayloadType', ], 'UsernameField' => [ 'shape' => 'UsernameField', ], 'PasswordField' => [ 'shape' => 'PasswordField', ], ], ], 'RequestInspectionACFP' => [ 'type' => 'structure', 'required' => [ 'PayloadType', ], 'members' => [ 'PayloadType' => [ 'shape' => 'PayloadType', ], 'UsernameField' => [ 'shape' => 'UsernameField', ], 'PasswordField' => [ 'shape' => 'PasswordField', ], 'EmailField' => [ 'shape' => 'EmailField', ], 'PhoneNumberFields' => [ 'shape' => 'PhoneNumberFields', ], 'AddressFields' => [ 'shape' => 'AddressFields', ], ], ], 'ResourceArn' => [ 'type' => 'string', 'max' => 2048, 'min' => 20, 'pattern' => '.*\\S.*', ], 'ResourceArns' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceArn', ], ], 'ResourceType' => [ 'type' => 'string', 'enum' => [ 'APPLICATION_LOAD_BALANCER', 'API_GATEWAY', 'APPSYNC', 'COGNITO_USER_POOL', 'APP_RUNNER_SERVICE', 'VERIFIED_ACCESS_INSTANCE', ], ], 'ResponseCode' => [ 'type' => 'integer', ], 'ResponseContent' => [ 'type' => 'string', 'max' => 10240, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'ResponseContentType' => [ 'type' => 'string', 'enum' => [ 'TEXT_PLAIN', 'TEXT_HTML', 'APPLICATION_JSON', ], ], 'ResponseInspection' => [ 'type' => 'structure', 'members' => [ 'StatusCode' => [ 'shape' => 'ResponseInspectionStatusCode', ], 'Header' => [ 'shape' => 'ResponseInspectionHeader', ], 'BodyContains' => [ 'shape' => 'ResponseInspectionBodyContains', ], 'Json' => [ 'shape' => 'ResponseInspectionJson', ], ], ], 'ResponseInspectionBodyContains' => [ 'type' => 'structure', 'required' => [ 'SuccessStrings', 'FailureStrings', ], 'members' => [ 'SuccessStrings' => [ 'shape' => 'ResponseInspectionBodyContainsSuccessStrings', ], 'FailureStrings' => [ 'shape' => 'ResponseInspectionBodyContainsFailureStrings', ], ], ], 'ResponseInspectionBodyContainsFailureStrings' => [ 'type' => 'list', 'member' => [ 'shape' => 'FailureValue', ], 'max' => 5, 'min' => 1, ], 'ResponseInspectionBodyContainsSuccessStrings' => [ 'type' => 'list', 'member' => [ 'shape' => 'SuccessValue', ], 'max' => 5, 'min' => 1, ], 'ResponseInspectionHeader' => [ 'type' => 'structure', 'required' => [ 'Name', 'SuccessValues', 'FailureValues', ], 'members' => [ 'Name' => [ 'shape' => 'ResponseInspectionHeaderName', ], 'SuccessValues' => [ 'shape' => 'ResponseInspectionHeaderSuccessValues', ], 'FailureValues' => [ 'shape' => 'ResponseInspectionHeaderFailureValues', ], ], ], 'ResponseInspectionHeaderFailureValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'FailureValue', ], 'max' => 3, 'min' => 1, ], 'ResponseInspectionHeaderName' => [ 'type' => 'string', 'max' => 200, 'min' => 1, 'pattern' => '.*\\S.*', ], 'ResponseInspectionHeaderSuccessValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'SuccessValue', ], 'max' => 3, 'min' => 1, ], 'ResponseInspectionJson' => [ 'type' => 'structure', 'required' => [ 'Identifier', 'SuccessValues', 'FailureValues', ], 'members' => [ 'Identifier' => [ 'shape' => 'FieldIdentifier', ], 'SuccessValues' => [ 'shape' => 'ResponseInspectionJsonSuccessValues', ], 'FailureValues' => [ 'shape' => 'ResponseInspectionJsonFailureValues', ], ], ], 'ResponseInspectionJsonFailureValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'FailureValue', ], 'max' => 5, 'min' => 1, ], 'ResponseInspectionJsonSuccessValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'SuccessValue', ], 'max' => 5, 'min' => 1, ], 'ResponseInspectionStatusCode' => [ 'type' => 'structure', 'required' => [ 'SuccessCodes', 'FailureCodes', ], 'members' => [ 'SuccessCodes' => [ 'shape' => 'ResponseInspectionStatusCodeSuccessCodes', ], 'FailureCodes' => [ 'shape' => 'ResponseInspectionStatusCodeFailureCodes', ], ], ], 'ResponseInspectionStatusCodeFailureCodes' => [ 'type' => 'list', 'member' => [ 'shape' => 'FailureCode', ], 'max' => 10, 'min' => 1, ], 'ResponseInspectionStatusCodeSuccessCodes' => [ 'type' => 'list', 'member' => [ 'shape' => 'SuccessCode', ], 'max' => 10, 'min' => 1, ], 'ResponseStatusCode' => [ 'type' => 'integer', 'max' => 599, 'min' => 200, ], 'Rule' => [ 'type' => 'structure', 'required' => [ 'Name', 'Priority', 'Statement', 'VisibilityConfig', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Priority' => [ 'shape' => 'RulePriority', ], 'Statement' => [ 'shape' => 'Statement', ], 'Action' => [ 'shape' => 'RuleAction', ], 'OverrideAction' => [ 'shape' => 'OverrideAction', ], 'RuleLabels' => [ 'shape' => 'Labels', ], 'VisibilityConfig' => [ 'shape' => 'VisibilityConfig', ], 'CaptchaConfig' => [ 'shape' => 'CaptchaConfig', ], 'ChallengeConfig' => [ 'shape' => 'ChallengeConfig', ], ], ], 'RuleAction' => [ 'type' => 'structure', 'members' => [ 'Block' => [ 'shape' => 'BlockAction', ], 'Allow' => [ 'shape' => 'AllowAction', ], 'Count' => [ 'shape' => 'CountAction', ], 'Captcha' => [ 'shape' => 'CaptchaAction', ], 'Challenge' => [ 'shape' => 'ChallengeAction', ], ], ], 'RuleActionOverride' => [ 'type' => 'structure', 'required' => [ 'Name', 'ActionToUse', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'ActionToUse' => [ 'shape' => 'RuleAction', ], ], ], 'RuleActionOverrides' => [ 'type' => 'list', 'member' => [ 'shape' => 'RuleActionOverride', ], 'max' => 100, 'min' => 1, ], 'RuleGroup' => [ 'type' => 'structure', 'required' => [ 'Name', 'Id', 'Capacity', 'ARN', 'VisibilityConfig', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'Capacity' => [ 'shape' => 'CapacityUnit', ], 'ARN' => [ 'shape' => 'ResourceArn', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'Rules' => [ 'shape' => 'Rules', ], 'VisibilityConfig' => [ 'shape' => 'VisibilityConfig', ], 'LabelNamespace' => [ 'shape' => 'LabelName', ], 'CustomResponseBodies' => [ 'shape' => 'CustomResponseBodies', ], 'AvailableLabels' => [ 'shape' => 'LabelSummaries', ], 'ConsumedLabels' => [ 'shape' => 'LabelSummaries', ], ], ], 'RuleGroupReferenceStatement' => [ 'type' => 'structure', 'required' => [ 'ARN', ], 'members' => [ 'ARN' => [ 'shape' => 'ResourceArn', ], 'ExcludedRules' => [ 'shape' => 'ExcludedRules', ], 'RuleActionOverrides' => [ 'shape' => 'RuleActionOverrides', ], ], ], 'RuleGroupSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'RuleGroupSummary', ], ], 'RuleGroupSummary' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'ARN' => [ 'shape' => 'ResourceArn', ], ], ], 'RulePriority' => [ 'type' => 'integer', 'min' => 0, ], 'RuleSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'RuleSummary', ], ], 'RuleSummary' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Action' => [ 'shape' => 'RuleAction', ], ], ], 'Rules' => [ 'type' => 'list', 'member' => [ 'shape' => 'Rule', ], ], 'SampleWeight' => [ 'type' => 'long', 'min' => 0, ], 'SampledHTTPRequest' => [ 'type' => 'structure', 'required' => [ 'Request', 'Weight', ], 'members' => [ 'Request' => [ 'shape' => 'HTTPRequest', ], 'Weight' => [ 'shape' => 'SampleWeight', ], 'Timestamp' => [ 'shape' => 'Timestamp', ], 'Action' => [ 'shape' => 'Action', ], 'RuleNameWithinRuleGroup' => [ 'shape' => 'EntityName', ], 'RequestHeadersInserted' => [ 'shape' => 'HTTPHeaders', ], 'ResponseCodeSent' => [ 'shape' => 'ResponseStatusCode', ], 'Labels' => [ 'shape' => 'Labels', ], 'CaptchaResponse' => [ 'shape' => 'CaptchaResponse', ], 'ChallengeResponse' => [ 'shape' => 'ChallengeResponse', ], 'OverriddenAction' => [ 'shape' => 'Action', ], ], ], 'SampledHTTPRequests' => [ 'type' => 'list', 'member' => [ 'shape' => 'SampledHTTPRequest', ], ], 'Scope' => [ 'type' => 'string', 'enum' => [ 'CLOUDFRONT', 'REGIONAL', ], ], 'SearchString' => [ 'type' => 'blob', ], 'SensitivityLevel' => [ 'type' => 'string', 'enum' => [ 'LOW', 'HIGH', ], ], 'SingleCookieName' => [ 'type' => 'string', 'max' => 60, 'min' => 1, 'pattern' => '.*\\S.*', ], 'SingleHeader' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'Name' => [ 'shape' => 'FieldToMatchData', ], ], ], 'SingleQueryArgument' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'Name' => [ 'shape' => 'FieldToMatchData', ], ], ], 'Size' => [ 'type' => 'long', 'max' => 21474836480, 'min' => 0, ], 'SizeConstraintStatement' => [ 'type' => 'structure', 'required' => [ 'FieldToMatch', 'ComparisonOperator', 'Size', 'TextTransformations', ], 'members' => [ 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'ComparisonOperator' => [ 'shape' => 'ComparisonOperator', ], 'Size' => [ 'shape' => 'Size', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], 'SizeInspectionLimit' => [ 'type' => 'string', 'enum' => [ 'KB_16', 'KB_32', 'KB_48', 'KB_64', ], ], 'SolveTimestamp' => [ 'type' => 'long', ], 'SqliMatchStatement' => [ 'type' => 'structure', 'required' => [ 'FieldToMatch', 'TextTransformations', ], 'members' => [ 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], 'SensitivityLevel' => [ 'shape' => 'SensitivityLevel', ], ], ], 'Statement' => [ 'type' => 'structure', 'members' => [ 'ByteMatchStatement' => [ 'shape' => 'ByteMatchStatement', ], 'SqliMatchStatement' => [ 'shape' => 'SqliMatchStatement', ], 'XssMatchStatement' => [ 'shape' => 'XssMatchStatement', ], 'SizeConstraintStatement' => [ 'shape' => 'SizeConstraintStatement', ], 'GeoMatchStatement' => [ 'shape' => 'GeoMatchStatement', ], 'RuleGroupReferenceStatement' => [ 'shape' => 'RuleGroupReferenceStatement', ], 'IPSetReferenceStatement' => [ 'shape' => 'IPSetReferenceStatement', ], 'RegexPatternSetReferenceStatement' => [ 'shape' => 'RegexPatternSetReferenceStatement', ], 'RateBasedStatement' => [ 'shape' => 'RateBasedStatement', ], 'AndStatement' => [ 'shape' => 'AndStatement', ], 'OrStatement' => [ 'shape' => 'OrStatement', ], 'NotStatement' => [ 'shape' => 'NotStatement', ], 'ManagedRuleGroupStatement' => [ 'shape' => 'ManagedRuleGroupStatement', ], 'LabelMatchStatement' => [ 'shape' => 'LabelMatchStatement', ], 'RegexMatchStatement' => [ 'shape' => 'RegexMatchStatement', ], ], ], 'Statements' => [ 'type' => 'list', 'member' => [ 'shape' => 'Statement', ], ], 'String' => [ 'type' => 'string', ], 'SuccessCode' => [ 'type' => 'integer', 'max' => 999, 'min' => 0, ], 'SuccessValue' => [ 'type' => 'string', 'max' => 100, 'min' => 1, 'pattern' => '.*\\S.*', ], 'Tag' => [ 'type' => 'structure', 'required' => [ 'Key', 'Value', ], 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Value' => [ 'shape' => 'TagValue', ], ], ], 'TagInfoForResource' => [ 'type' => 'structure', 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceArn', ], 'TagList' => [ 'shape' => 'TagList', ], ], ], 'TagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$', ], 'TagKeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagKey', ], 'min' => 1, ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', ], 'min' => 1, ], 'TagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceARN', 'Tags', ], 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceArn', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'TagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'TagValue' => [ 'type' => 'string', 'max' => 256, 'min' => 0, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$', ], 'TextTransformation' => [ 'type' => 'structure', 'required' => [ 'Priority', 'Type', ], 'members' => [ 'Priority' => [ 'shape' => 'TextTransformationPriority', ], 'Type' => [ 'shape' => 'TextTransformationType', ], ], ], 'TextTransformationPriority' => [ 'type' => 'integer', 'min' => 0, ], 'TextTransformationType' => [ 'type' => 'string', 'enum' => [ 'NONE', 'COMPRESS_WHITE_SPACE', 'HTML_ENTITY_DECODE', 'LOWERCASE', 'CMD_LINE', 'URL_DECODE', 'BASE64_DECODE', 'HEX_DECODE', 'MD5', 'REPLACE_COMMENTS', 'ESCAPE_SEQ_DECODE', 'SQL_HEX_DECODE', 'CSS_DECODE', 'JS_DECODE', 'NORMALIZE_PATH', 'NORMALIZE_PATH_WIN', 'REMOVE_NULLS', 'REPLACE_NULLS', 'BASE64_DECODE_EXT', 'URL_DECODE_UNI', 'UTF8_TO_UNICODE', ], ], 'TextTransformations' => [ 'type' => 'list', 'member' => [ 'shape' => 'TextTransformation', ], 'min' => 1, ], 'TimeWindow' => [ 'type' => 'structure', 'required' => [ 'StartTime', 'EndTime', ], 'members' => [ 'StartTime' => [ 'shape' => 'Timestamp', ], 'EndTime' => [ 'shape' => 'Timestamp', ], ], ], 'TimeWindowDay' => [ 'type' => 'integer', 'min' => 1, ], 'TimeWindowSecond' => [ 'type' => 'long', 'max' => 259200, 'min' => 60, ], 'Timestamp' => [ 'type' => 'timestamp', ], 'TokenDomain' => [ 'type' => 'string', 'max' => 253, 'min' => 1, 'pattern' => '^[\\w\\.\\-/]+$', ], 'TokenDomains' => [ 'type' => 'list', 'member' => [ 'shape' => 'TokenDomain', ], ], 'URIString' => [ 'type' => 'string', ], 'UntagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceARN', 'TagKeys', ], 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceArn', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], ], ], 'UntagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateIPSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'Addresses', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'Addresses' => [ 'shape' => 'IPAddresses', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'UpdateIPSetResponse' => [ 'type' => 'structure', 'members' => [ 'NextLockToken' => [ 'shape' => 'LockToken', ], ], ], 'UpdateManagedRuleSetVersionExpiryDateRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'LockToken', 'VersionToExpire', 'ExpiryTimestamp', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'VersionToExpire' => [ 'shape' => 'VersionKeyString', ], 'ExpiryTimestamp' => [ 'shape' => 'Timestamp', ], ], ], 'UpdateManagedRuleSetVersionExpiryDateResponse' => [ 'type' => 'structure', 'members' => [ 'ExpiringVersion' => [ 'shape' => 'VersionKeyString', ], 'ExpiryTimestamp' => [ 'shape' => 'Timestamp', ], 'NextLockToken' => [ 'shape' => 'LockToken', ], ], ], 'UpdateRegexPatternSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'RegularExpressionList', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'RegularExpressionList' => [ 'shape' => 'RegularExpressionList', ], 'LockToken' => [ 'shape' => 'LockToken', ], ], ], 'UpdateRegexPatternSetResponse' => [ 'type' => 'structure', 'members' => [ 'NextLockToken' => [ 'shape' => 'LockToken', ], ], ], 'UpdateRuleGroupRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'VisibilityConfig', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'Rules' => [ 'shape' => 'Rules', ], 'VisibilityConfig' => [ 'shape' => 'VisibilityConfig', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'CustomResponseBodies' => [ 'shape' => 'CustomResponseBodies', ], ], ], 'UpdateRuleGroupResponse' => [ 'type' => 'structure', 'members' => [ 'NextLockToken' => [ 'shape' => 'LockToken', ], ], ], 'UpdateWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Scope', 'Id', 'DefaultAction', 'VisibilityConfig', 'LockToken', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Scope' => [ 'shape' => 'Scope', ], 'Id' => [ 'shape' => 'EntityId', ], 'DefaultAction' => [ 'shape' => 'DefaultAction', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'Rules' => [ 'shape' => 'Rules', ], 'VisibilityConfig' => [ 'shape' => 'VisibilityConfig', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'CustomResponseBodies' => [ 'shape' => 'CustomResponseBodies', ], 'CaptchaConfig' => [ 'shape' => 'CaptchaConfig', ], 'ChallengeConfig' => [ 'shape' => 'ChallengeConfig', ], 'TokenDomains' => [ 'shape' => 'TokenDomains', ], 'AssociationConfig' => [ 'shape' => 'AssociationConfig', ], ], ], 'UpdateWebACLResponse' => [ 'type' => 'structure', 'members' => [ 'NextLockToken' => [ 'shape' => 'LockToken', ], ], ], 'UriPath' => [ 'type' => 'structure', 'members' => [], ], 'UsernameField' => [ 'type' => 'structure', 'required' => [ 'Identifier', ], 'members' => [ 'Identifier' => [ 'shape' => 'FieldIdentifier', ], ], ], 'VendorName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '.*\\S.*', ], 'VersionKeyString' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '^[\\w#:\\.\\-/]+$', ], 'VersionToPublish' => [ 'type' => 'structure', 'members' => [ 'AssociatedRuleGroupArn' => [ 'shape' => 'ResourceArn', ], 'ForecastedLifetime' => [ 'shape' => 'TimeWindowDay', ], ], ], 'VersionsToPublish' => [ 'type' => 'map', 'key' => [ 'shape' => 'VersionKeyString', ], 'value' => [ 'shape' => 'VersionToPublish', ], ], 'VisibilityConfig' => [ 'type' => 'structure', 'required' => [ 'SampledRequestsEnabled', 'CloudWatchMetricsEnabled', 'MetricName', ], 'members' => [ 'SampledRequestsEnabled' => [ 'shape' => 'Boolean', ], 'CloudWatchMetricsEnabled' => [ 'shape' => 'Boolean', ], 'MetricName' => [ 'shape' => 'MetricName', ], ], ], 'WAFAssociatedItemException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFConfigurationWarningException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFDuplicateItemException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFExpiredManagedRuleGroupVersionException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFInternalErrorException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, 'fault' => true, ], 'WAFInvalidOperationException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFInvalidParameterException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], 'Field' => [ 'shape' => 'ParameterExceptionField', ], 'Parameter' => [ 'shape' => 'ParameterExceptionParameter', ], 'Reason' => [ 'shape' => 'ErrorReason', ], ], 'exception' => true, ], 'WAFInvalidPermissionPolicyException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFInvalidResourceException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFLimitsExceededException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFLogDestinationPermissionIssueException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFNonexistentItemException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFOptimisticLockException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFServiceLinkedRoleErrorException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFSubscriptionNotFoundException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFTagOperationException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFTagOperationInternalErrorException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, 'fault' => true, ], 'WAFUnavailableEntityException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WAFUnsupportedAggregateKeyTypeException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'WebACL' => [ 'type' => 'structure', 'required' => [ 'Name', 'Id', 'ARN', 'DefaultAction', 'VisibilityConfig', ], 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'ARN' => [ 'shape' => 'ResourceArn', ], 'DefaultAction' => [ 'shape' => 'DefaultAction', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'Rules' => [ 'shape' => 'Rules', ], 'VisibilityConfig' => [ 'shape' => 'VisibilityConfig', ], 'Capacity' => [ 'shape' => 'ConsumedCapacity', ], 'PreProcessFirewallManagerRuleGroups' => [ 'shape' => 'FirewallManagerRuleGroups', ], 'PostProcessFirewallManagerRuleGroups' => [ 'shape' => 'FirewallManagerRuleGroups', ], 'ManagedByFirewallManager' => [ 'shape' => 'Boolean', ], 'LabelNamespace' => [ 'shape' => 'LabelName', ], 'CustomResponseBodies' => [ 'shape' => 'CustomResponseBodies', ], 'CaptchaConfig' => [ 'shape' => 'CaptchaConfig', ], 'ChallengeConfig' => [ 'shape' => 'ChallengeConfig', ], 'TokenDomains' => [ 'shape' => 'TokenDomains', ], 'AssociationConfig' => [ 'shape' => 'AssociationConfig', ], ], ], 'WebACLSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'WebACLSummary', ], ], 'WebACLSummary' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'EntityName', ], 'Id' => [ 'shape' => 'EntityId', ], 'Description' => [ 'shape' => 'EntityDescription', ], 'LockToken' => [ 'shape' => 'LockToken', ], 'ARN' => [ 'shape' => 'ResourceArn', ], ], ], 'XssMatchStatement' => [ 'type' => 'structure', 'required' => [ 'FieldToMatch', 'TextTransformations', ], 'members' => [ 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TextTransformations' => [ 'shape' => 'TextTransformations', ], ], ], ],]; diff --git a/src/data/wafv2/2019-07-29/docs-2.json b/src/data/wafv2/2019-07-29/docs-2.json index 2cddc76b23..172d07db60 100644 --- a/src/data/wafv2/2019-07-29/docs-2.json +++ b/src/data/wafv2/2019-07-29/docs-2.json @@ -749,6 +749,12 @@ "WAFInvalidParameterException$Reason": "

Additional information about the exception.

" } }, + "EvaluationWindowSec": { + "base": null, + "refs": { + "RateBasedStatement$EvaluationWindowSec": "

The amount of time, in seconds, that WAF should include in its request counts, looking back from the current time. For example, for a setting of 120, when WAF checks the rate, it counts the requests for the 2 minutes immediately preceding the current time. Valid settings are 60, 120, 300, and 600.

This setting doesn't determine how often WAF checks the rate, but how far back it looks each time it checks. WAF checks the rate about every 10 seconds.

Default: 300 (5 minutes)

" + } + }, "ExcludedRule": { "base": "

Specifies a single rule in a rule group whose action you want to override to Count.

Instead of this option, use RuleActionOverrides. It accepts any valid action setting, including Count.

", "refs": { diff --git a/src/data/wafv2/2019-07-29/docs-2.json.php b/src/data/wafv2/2019-07-29/docs-2.json.php index 18b1bb8c7d..8443dd7155 100644 --- a/src/data/wafv2/2019-07-29/docs-2.json.php +++ b/src/data/wafv2/2019-07-29/docs-2.json.php @@ -1,3 +1,3 @@ '2.0', 'service' => 'WAF

This is the latest version of the WAF API, released in November, 2019. The names of the entities that you use to access this API, like endpoints and namespaces, all have the versioning information added, like "V2" or "v2", to distinguish from the prior version. We recommend migrating your resources to this version, because it has a number of significant improvements.

If you used WAF prior to this release, you can\'t use this WAFV2 API to access any WAF resources that you created before. You can access your old rules, web ACLs, and other WAF resources only through the WAF Classic APIs. The WAF Classic APIs have retained the prior names, endpoints, and namespaces.

For information, including how to migrate your WAF resources to this version, see the WAF Developer Guide.

WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to an Amazon CloudFront distribution, Amazon API Gateway REST API, Application Load Balancer, AppSync GraphQL API, Amazon Cognito user pool, App Runner service, or Amazon Web Services Verified Access instance. WAF also lets you control access to your content, to protect the Amazon Web Services resource that WAF is monitoring. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, the protected resource responds to requests with either the requested content, an HTTP 403 status code (Forbidden), or with a custom response.

This API guide is for developers who need detailed information about WAF API actions, data types, and errors. For detailed information about WAF features and guidance for configuring and using WAF, see the WAF Developer Guide.

You can make calls using the endpoints listed in WAF endpoints and quotas.

  • For regional applications, you can use any of the endpoints in the list. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

  • For Amazon CloudFront applications, you must use the API endpoint listed for US East (N. Virginia): us-east-1.

Alternatively, you can use one of the Amazon Web Services SDKs to access an API that\'s tailored to the programming language or platform that you\'re using. For more information, see Amazon Web Services SDKs.

We currently provide two versions of the WAF API: this API and the prior versions, the classic WAF APIs. This new API provides the same functionality as the older versions, with the following major improvements:

  • You use one API for both global and regional applications. Where you need to distinguish the scope, you specify a Scope parameter and set it to CLOUDFRONT or REGIONAL.

  • You can define a web ACL or rule group with a single call, and update it with a single call. You define all rule specifications in JSON format, and pass them to your rule group or web ACL calls.

  • The limits WAF places on the use of rules more closely reflects the cost of running each type of rule. Rule groups include capacity settings, so you know the maximum cost of a rule group when you use it.

', 'operations' => [ 'AssociateWebACL' => '

Associates a web ACL with a regional application resource, to protect the resource. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

For Amazon CloudFront, don\'t use this call. Instead, use your CloudFront distribution configuration. To associate a web ACL, in the CloudFront call UpdateDistribution, set the web ACL ID to the Amazon Resource Name (ARN) of the web ACL. For information, see UpdateDistribution in the Amazon CloudFront Developer Guide.

Required permissions for customer-managed IAM policies

This call requires permissions that are specific to the protected resource type. For details, see Permissions for AssociateWebACL in the WAF Developer Guide.

Temporary inconsistencies during updates

When you create or change a web ACL or other WAF resources, the changes take a small amount of time to propagate to all areas where the resources are stored. The propagation time can be from a few seconds to a number of minutes.

The following are examples of the temporary inconsistencies that you might notice during change propagation:

  • After you create a web ACL, if you try to associate it with a resource, you might get an exception indicating that the web ACL is unavailable.

  • After you add a rule group to a web ACL, the new rule group rules might be in effect in one area where the web ACL is used and not in another.

  • After you change a rule action setting, you might see the old action in some places and the new action in others.

  • After you add an IP address to an IP set that is in use in a blocking rule, the new address might be blocked in one area while still allowed in another.

', 'CheckCapacity' => '

Returns the web ACL capacity unit (WCU) requirements for a specified scope and set of rules. You can use this to check the capacity requirements for the rules you want to use in a RuleGroup or WebACL.

WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.

', 'CreateAPIKey' => '

Creates an API key that contains a set of token domains.

API keys are required for the integration of the CAPTCHA API in your JavaScript client applications. The API lets you customize the placement and characteristics of the CAPTCHA puzzle for your end users. For more information about the CAPTCHA JavaScript integration, see WAF client application integration in the WAF Developer Guide.

You can use a single key for up to 5 domains. After you generate a key, you can copy it for use in your JavaScript integration.

', 'CreateIPSet' => '

Creates an IPSet, which you use to identify web requests that originate from specific IP addresses or ranges of IP addresses. For example, if you\'re receiving a lot of requests from a ranges of IP addresses, you can configure WAF to block them using an IPSet that lists those IP addresses.

', 'CreateRegexPatternSet' => '

Creates a RegexPatternSet, which you reference in a RegexPatternSetReferenceStatement, to have WAF inspect a web request component for the specified patterns.

', 'CreateRuleGroup' => '

Creates a RuleGroup per the specifications provided.

A rule group defines a collection of rules to inspect and control web requests that you can use in a WebACL. When you create a rule group, you define an immutable capacity limit. If you update a rule group, you must stay within the capacity. This allows others to reuse the rule group with confidence in its capacity requirements.

', 'CreateWebACL' => '

Creates a WebACL per the specifications provided.

A web ACL defines a collection of rules to use to inspect and control web requests. Each rule has a statement that defines what to look for in web requests and an action that WAF applies to requests that match the statement. In the web ACL, you assign a default action to take (allow, block) for any request that does not match any of the rules. The rules in a web ACL can be a combination of the types Rule, RuleGroup, and managed rule group. You can associate a web ACL with one or more Amazon Web Services resources to protect. The resources can be an Amazon CloudFront distribution, an Amazon API Gateway REST API, an Application Load Balancer, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

', 'DeleteAPIKey' => '

Deletes the specified API key.

After you delete a key, it can take up to 24 hours for WAF to disallow use of the key in all regions.

', 'DeleteFirewallManagerRuleGroups' => '

Deletes all rule groups that are managed by Firewall Manager for the specified web ACL.

You can only use this if ManagedByFirewallManager is false in the specified WebACL.

', 'DeleteIPSet' => '

Deletes the specified IPSet.

', 'DeleteLoggingConfiguration' => '

Deletes the LoggingConfiguration from the specified web ACL.

', 'DeletePermissionPolicy' => '

Permanently deletes an IAM policy from the specified rule group.

You must be the owner of the rule group to perform this operation.

', 'DeleteRegexPatternSet' => '

Deletes the specified RegexPatternSet.

', 'DeleteRuleGroup' => '

Deletes the specified RuleGroup.

', 'DeleteWebACL' => '

Deletes the specified WebACL.

You can only use this if ManagedByFirewallManager is false in the specified WebACL.

Before deleting any web ACL, first disassociate it from all resources.

  • To retrieve a list of the resources that are associated with a web ACL, use the following calls:

  • To disassociate a resource from a web ACL, use the following calls:

    • For regional resources, call DisassociateWebACL.

    • For Amazon CloudFront distributions, provide an empty web ACL ID in the CloudFront call UpdateDistribution. For information, see UpdateDistribution in the Amazon CloudFront API Reference.

', 'DescribeAllManagedProducts' => '

Provides high-level information for the Amazon Web Services Managed Rules rule groups and Amazon Web Services Marketplace managed rule groups.

', 'DescribeManagedProductsByVendor' => '

Provides high-level information for the managed rule groups owned by a specific vendor.

', 'DescribeManagedRuleGroup' => '

Provides high-level information for a managed rule group, including descriptions of the rules.

', 'DisassociateWebACL' => '

Disassociates the specified regional application resource from any existing web ACL association. A resource can have at most one web ACL association. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

For Amazon CloudFront, don\'t use this call. Instead, use your CloudFront distribution configuration. To disassociate a web ACL, provide an empty web ACL ID in the CloudFront call UpdateDistribution. For information, see UpdateDistribution in the Amazon CloudFront API Reference.

Required permissions for customer-managed IAM policies

This call requires permissions that are specific to the protected resource type. For details, see Permissions for DisassociateWebACL in the WAF Developer Guide.

', 'GenerateMobileSdkReleaseUrl' => '

Generates a presigned download URL for the specified release of the mobile SDK.

The mobile SDK is not generally available. Customers who have access to the mobile SDK can use it to establish and manage WAF tokens for use in HTTP(S) requests from a mobile device to WAF. For more information, see WAF client application integration in the WAF Developer Guide.

', 'GetDecryptedAPIKey' => '

Returns your API key in decrypted form. Use this to check the token domains that you have defined for the key.

API keys are required for the integration of the CAPTCHA API in your JavaScript client applications. The API lets you customize the placement and characteristics of the CAPTCHA puzzle for your end users. For more information about the CAPTCHA JavaScript integration, see WAF client application integration in the WAF Developer Guide.

', 'GetIPSet' => '

Retrieves the specified IPSet.

', 'GetLoggingConfiguration' => '

Returns the LoggingConfiguration for the specified web ACL.

', 'GetManagedRuleSet' => '

Retrieves the specified managed rule set.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

', 'GetMobileSdkRelease' => '

Retrieves information for the specified mobile SDK release, including release notes and tags.

The mobile SDK is not generally available. Customers who have access to the mobile SDK can use it to establish and manage WAF tokens for use in HTTP(S) requests from a mobile device to WAF. For more information, see WAF client application integration in the WAF Developer Guide.

', 'GetPermissionPolicy' => '

Returns the IAM policy that is attached to the specified rule group.

You must be the owner of the rule group to perform this operation.

', 'GetRateBasedStatementManagedKeys' => '

Retrieves the IP addresses that are currently blocked by a rate-based rule instance. This is only available for rate-based rules that aggregate solely on the IP address or on the forwarded IP address.

The maximum number of addresses that can be blocked for a single rate-based rule instance is 10,000. If more than 10,000 addresses exceed the rate limit, those with the highest rates are blocked.

For a rate-based rule that you\'ve defined inside a rule group, provide the name of the rule group reference statement in your request, in addition to the rate-based rule name and the web ACL name.

WAF monitors web requests and manages keys independently for each unique combination of web ACL, optional rule group, and rate-based rule. For example, if you define a rate-based rule inside a rule group, and then use the rule group in a web ACL, WAF monitors web requests and manages keys for that web ACL, rule group reference statement, and rate-based rule instance. If you use the same rule group in a second web ACL, WAF monitors web requests and manages keys for this second usage completely independent of your first.

', 'GetRegexPatternSet' => '

Retrieves the specified RegexPatternSet.

', 'GetRuleGroup' => '

Retrieves the specified RuleGroup.

', 'GetSampledRequests' => '

Gets detailed information about a specified number of requests--a sample--that WAF randomly selects from among the first 5,000 requests that your Amazon Web Services resource received during a time range that you choose. You can specify a sample size of up to 500 requests, and you can specify any time range in the previous three hours.

GetSampledRequests returns a time range, which is usually the time range that you specified. However, if your resource (such as a CloudFront distribution) received 5,000 requests before the specified time range elapsed, GetSampledRequests returns an updated time range. This new time range indicates the actual period during which WAF selected the requests in the sample.

', 'GetWebACL' => '

Retrieves the specified WebACL.

', 'GetWebACLForResource' => '

Retrieves the WebACL for the specified resource.

This call uses GetWebACL, to verify that your account has permission to access the retrieved web ACL. If you get an error that indicates that your account isn\'t authorized to perform wafv2:GetWebACL on the resource, that error won\'t be included in your CloudTrail event history.

For Amazon CloudFront, don\'t use this call. Instead, call the CloudFront action GetDistributionConfig. For information, see GetDistributionConfig in the Amazon CloudFront API Reference.

Required permissions for customer-managed IAM policies

This call requires permissions that are specific to the protected resource type. For details, see Permissions for GetWebACLForResource in the WAF Developer Guide.

', 'ListAPIKeys' => '

Retrieves a list of the API keys that you\'ve defined for the specified scope.

API keys are required for the integration of the CAPTCHA API in your JavaScript client applications. The API lets you customize the placement and characteristics of the CAPTCHA puzzle for your end users. For more information about the CAPTCHA JavaScript integration, see WAF client application integration in the WAF Developer Guide.

', 'ListAvailableManagedRuleGroupVersions' => '

Returns a list of the available versions for the specified managed rule group.

', 'ListAvailableManagedRuleGroups' => '

Retrieves an array of managed rule groups that are available for you to use. This list includes all Amazon Web Services Managed Rules rule groups and all of the Amazon Web Services Marketplace managed rule groups that you\'re subscribed to.

', 'ListIPSets' => '

Retrieves an array of IPSetSummary objects for the IP sets that you manage.

', 'ListLoggingConfigurations' => '

Retrieves an array of your LoggingConfiguration objects.

', 'ListManagedRuleSets' => '

Retrieves the managed rule sets that you own.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

', 'ListMobileSdkReleases' => '

Retrieves a list of the available releases for the mobile SDK and the specified device platform.

The mobile SDK is not generally available. Customers who have access to the mobile SDK can use it to establish and manage WAF tokens for use in HTTP(S) requests from a mobile device to WAF. For more information, see WAF client application integration in the WAF Developer Guide.

', 'ListRegexPatternSets' => '

Retrieves an array of RegexPatternSetSummary objects for the regex pattern sets that you manage.

', 'ListResourcesForWebACL' => '

Retrieves an array of the Amazon Resource Names (ARNs) for the regional resources that are associated with the specified web ACL.

For Amazon CloudFront, don\'t use this call. Instead, use the CloudFront call ListDistributionsByWebACLId. For information, see ListDistributionsByWebACLId in the Amazon CloudFront API Reference.

Required permissions for customer-managed IAM policies

This call requires permissions that are specific to the protected resource type. For details, see Permissions for ListResourcesForWebACL in the WAF Developer Guide.

', 'ListRuleGroups' => '

Retrieves an array of RuleGroupSummary objects for the rule groups that you manage.

', 'ListTagsForResource' => '

Retrieves the TagInfoForResource for the specified resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.

You can tag the Amazon Web Services resources that you manage through WAF: web ACLs, rule groups, IP sets, and regex pattern sets. You can\'t manage or view tags through the WAF console.

', 'ListWebACLs' => '

Retrieves an array of WebACLSummary objects for the web ACLs that you manage.

', 'PutLoggingConfiguration' => '

Enables the specified LoggingConfiguration, to start logging from a web ACL, according to the configuration provided.

This operation completely replaces any mutable specifications that you already have for a logging configuration with the ones that you provide to this call.

To modify an existing logging configuration, do the following:

  1. Retrieve it by calling GetLoggingConfiguration

  2. Update its settings as needed

  3. Provide the complete logging configuration specification to this call

You can define one logging destination per web ACL.

You can access information about the traffic that WAF inspects using the following steps:

  1. Create your logging destination. You can use an Amazon CloudWatch Logs log group, an Amazon Simple Storage Service (Amazon S3) bucket, or an Amazon Kinesis Data Firehose.

    The name that you give the destination must start with aws-waf-logs-. Depending on the type of destination, you might need to configure additional settings or permissions.

    For configuration requirements and pricing information for each destination type, see Logging web ACL traffic in the WAF Developer Guide.

  2. Associate your logging destination to your web ACL using a PutLoggingConfiguration request.

When you successfully enable logging using a PutLoggingConfiguration request, WAF creates an additional role or policy that is required to write logs to the logging destination. For an Amazon CloudWatch Logs log group, WAF creates a resource policy on the log group. For an Amazon S3 bucket, WAF creates a bucket policy. For an Amazon Kinesis Data Firehose, WAF creates a service-linked role.

For additional information about web ACL logging, see Logging web ACL traffic information in the WAF Developer Guide.

', 'PutManagedRuleSetVersions' => '

Defines the versions of your managed rule set that you are offering to the customers. Customers see your offerings as managed rule groups with versioning.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

Customers retrieve their managed rule group list by calling ListAvailableManagedRuleGroups. The name that you provide here for your managed rule set is the name the customer sees for the corresponding managed rule group. Customers can retrieve the available versions for a managed rule group by calling ListAvailableManagedRuleGroupVersions. You provide a rule group specification for each version. For each managed rule set, you must specify a version that you recommend using.

To initiate the expiration of a managed rule group version, use UpdateManagedRuleSetVersionExpiryDate.

', 'PutPermissionPolicy' => '

Attaches an IAM policy to the specified resource. Use this to share a rule group across accounts.

You must be the owner of the rule group to perform this operation.

This action is subject to the following restrictions:

  • You can attach only one policy with each PutPermissionPolicy request.

  • The ARN in the request must be a valid WAF RuleGroup ARN and the rule group must exist in the same Region.

  • The user making the request must be the owner of the rule group.

', 'TagResource' => '

Associates tags with the specified Amazon Web Services resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.

You can tag the Amazon Web Services resources that you manage through WAF: web ACLs, rule groups, IP sets, and regex pattern sets. You can\'t manage or view tags through the WAF console.

', 'UntagResource' => '

Disassociates tags from an Amazon Web Services resource. Tags are key:value pairs that you can associate with Amazon Web Services resources. For example, the tag key might be "customer" and the tag value might be "companyA." You can specify one or more tags to add to each container. You can add up to 50 tags to each Amazon Web Services resource.

', 'UpdateIPSet' => '

Updates the specified IPSet.

This operation completely replaces the mutable specifications that you already have for the IP set with the ones that you provide to this call.

To modify an IP set, do the following:

  1. Retrieve it by calling GetIPSet

  2. Update its settings as needed

  3. Provide the complete IP set specification to this call

Temporary inconsistencies during updates

When you create or change a web ACL or other WAF resources, the changes take a small amount of time to propagate to all areas where the resources are stored. The propagation time can be from a few seconds to a number of minutes.

The following are examples of the temporary inconsistencies that you might notice during change propagation:

  • After you create a web ACL, if you try to associate it with a resource, you might get an exception indicating that the web ACL is unavailable.

  • After you add a rule group to a web ACL, the new rule group rules might be in effect in one area where the web ACL is used and not in another.

  • After you change a rule action setting, you might see the old action in some places and the new action in others.

  • After you add an IP address to an IP set that is in use in a blocking rule, the new address might be blocked in one area while still allowed in another.

', 'UpdateManagedRuleSetVersionExpiryDate' => '

Updates the expiration information for your managed rule set. Use this to initiate the expiration of a managed rule group version. After you initiate expiration for a version, WAF excludes it from the response to ListAvailableManagedRuleGroupVersions for the managed rule group.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

', 'UpdateRegexPatternSet' => '

Updates the specified RegexPatternSet.

This operation completely replaces the mutable specifications that you already have for the regex pattern set with the ones that you provide to this call.

To modify a regex pattern set, do the following:

  1. Retrieve it by calling GetRegexPatternSet

  2. Update its settings as needed

  3. Provide the complete regex pattern set specification to this call

Temporary inconsistencies during updates

When you create or change a web ACL or other WAF resources, the changes take a small amount of time to propagate to all areas where the resources are stored. The propagation time can be from a few seconds to a number of minutes.

The following are examples of the temporary inconsistencies that you might notice during change propagation:

  • After you create a web ACL, if you try to associate it with a resource, you might get an exception indicating that the web ACL is unavailable.

  • After you add a rule group to a web ACL, the new rule group rules might be in effect in one area where the web ACL is used and not in another.

  • After you change a rule action setting, you might see the old action in some places and the new action in others.

  • After you add an IP address to an IP set that is in use in a blocking rule, the new address might be blocked in one area while still allowed in another.

', 'UpdateRuleGroup' => '

Updates the specified RuleGroup.

This operation completely replaces the mutable specifications that you already have for the rule group with the ones that you provide to this call.

To modify a rule group, do the following:

  1. Retrieve it by calling GetRuleGroup

  2. Update its settings as needed

  3. Provide the complete rule group specification to this call

A rule group defines a collection of rules to inspect and control web requests that you can use in a WebACL. When you create a rule group, you define an immutable capacity limit. If you update a rule group, you must stay within the capacity. This allows others to reuse the rule group with confidence in its capacity requirements.

Temporary inconsistencies during updates

When you create or change a web ACL or other WAF resources, the changes take a small amount of time to propagate to all areas where the resources are stored. The propagation time can be from a few seconds to a number of minutes.

The following are examples of the temporary inconsistencies that you might notice during change propagation:

  • After you create a web ACL, if you try to associate it with a resource, you might get an exception indicating that the web ACL is unavailable.

  • After you add a rule group to a web ACL, the new rule group rules might be in effect in one area where the web ACL is used and not in another.

  • After you change a rule action setting, you might see the old action in some places and the new action in others.

  • After you add an IP address to an IP set that is in use in a blocking rule, the new address might be blocked in one area while still allowed in another.

', 'UpdateWebACL' => '

Updates the specified WebACL. While updating a web ACL, WAF provides continuous coverage to the resources that you have associated with the web ACL.

This operation completely replaces the mutable specifications that you already have for the web ACL with the ones that you provide to this call.

To modify a web ACL, do the following:

  1. Retrieve it by calling GetWebACL

  2. Update its settings as needed

  3. Provide the complete web ACL specification to this call

A web ACL defines a collection of rules to use to inspect and control web requests. Each rule has a statement that defines what to look for in web requests and an action that WAF applies to requests that match the statement. In the web ACL, you assign a default action to take (allow, block) for any request that does not match any of the rules. The rules in a web ACL can be a combination of the types Rule, RuleGroup, and managed rule group. You can associate a web ACL with one or more Amazon Web Services resources to protect. The resources can be an Amazon CloudFront distribution, an Amazon API Gateway REST API, an Application Load Balancer, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

Temporary inconsistencies during updates

When you create or change a web ACL or other WAF resources, the changes take a small amount of time to propagate to all areas where the resources are stored. The propagation time can be from a few seconds to a number of minutes.

The following are examples of the temporary inconsistencies that you might notice during change propagation:

  • After you create a web ACL, if you try to associate it with a resource, you might get an exception indicating that the web ACL is unavailable.

  • After you add a rule group to a web ACL, the new rule group rules might be in effect in one area where the web ACL is used and not in another.

  • After you change a rule action setting, you might see the old action in some places and the new action in others.

  • After you add an IP address to an IP set that is in use in a blocking rule, the new address might be blocked in one area while still allowed in another.

', ], 'shapes' => [ 'APIKey' => [ 'base' => NULL, 'refs' => [ 'APIKeySummary$APIKey' => '

The generated, encrypted API key. You can copy this for use in your JavaScript CAPTCHA integration.

', 'CreateAPIKeyResponse$APIKey' => '

The generated, encrypted API key. You can copy this for use in your JavaScript CAPTCHA integration.

', 'DeleteAPIKeyRequest$APIKey' => '

The encrypted API key that you want to delete.

', 'GetDecryptedAPIKeyRequest$APIKey' => '

The encrypted API key.

', ], ], 'APIKeySummaries' => [ 'base' => NULL, 'refs' => [ 'ListAPIKeysResponse$APIKeySummaries' => '

The array of key summaries. If you specified a Limit in your request, this might not be the full list.

', ], ], 'APIKeySummary' => [ 'base' => '

Information for a single API key.

API keys are required for the integration of the CAPTCHA API in your JavaScript client applications. The API lets you customize the placement and characteristics of the CAPTCHA puzzle for your end users. For more information about the CAPTCHA JavaScript integration, see WAF client application integration in the WAF Developer Guide.

', 'refs' => [ 'APIKeySummaries$member' => NULL, ], ], 'APIKeyTokenDomains' => [ 'base' => NULL, 'refs' => [ 'CreateAPIKeyRequest$TokenDomains' => '

The client application domains that you want to use this API key for.

Example JSON: "TokenDomains": ["abc.com", "store.abc.com"]

Public suffixes aren\'t allowed. For example, you can\'t use gov.au or co.uk as token domains.

', ], ], 'APIKeyVersion' => [ 'base' => NULL, 'refs' => [ 'APIKeySummary$Version' => '

Internal value used by WAF to manage the key.

', ], ], 'AWSManagedRulesACFPRuleSet' => [ 'base' => '

Details for your use of the account creation fraud prevention managed rule group, AWSManagedRulesACFPRuleSet. This configuration is used in ManagedRuleGroupConfig.

', 'refs' => [ 'ManagedRuleGroupConfig$AWSManagedRulesACFPRuleSet' => '

Additional configuration for using the account creation fraud prevention (ACFP) managed rule group, AWSManagedRulesACFPRuleSet. Use this to provide account creation request information to the rule group. For web ACLs that protect CloudFront distributions, use this to also provide the information about how your distribution responds to account creation requests.

For information about using the ACFP managed rule group, see WAF Fraud Control account creation fraud prevention (ACFP) rule group and WAF Fraud Control account creation fraud prevention (ACFP) in the WAF Developer Guide.

', ], ], 'AWSManagedRulesATPRuleSet' => [ 'base' => '

Details for your use of the account takeover prevention managed rule group, AWSManagedRulesATPRuleSet. This configuration is used in ManagedRuleGroupConfig.

', 'refs' => [ 'ManagedRuleGroupConfig$AWSManagedRulesATPRuleSet' => '

Additional configuration for using the account takeover prevention (ATP) managed rule group, AWSManagedRulesATPRuleSet. Use this to provide login request information to the rule group. For web ACLs that protect CloudFront distributions, use this to also provide the information about how your distribution responds to login requests.

This configuration replaces the individual configuration fields in ManagedRuleGroupConfig and provides additional feature configuration.

For information about using the ATP managed rule group, see WAF Fraud Control account takeover prevention (ATP) rule group and WAF Fraud Control account takeover prevention (ATP) in the WAF Developer Guide.

', ], ], 'AWSManagedRulesBotControlRuleSet' => [ 'base' => '

Details for your use of the Bot Control managed rule group, AWSManagedRulesBotControlRuleSet. This configuration is used in ManagedRuleGroupConfig.

', 'refs' => [ 'ManagedRuleGroupConfig$AWSManagedRulesBotControlRuleSet' => '

Additional configuration for using the Bot Control managed rule group. Use this to specify the inspection level that you want to use. For information about using the Bot Control managed rule group, see WAF Bot Control rule group and WAF Bot Control in the WAF Developer Guide.

', ], ], 'Action' => [ 'base' => NULL, 'refs' => [ 'SampledHTTPRequest$Action' => '

The action that WAF applied to the request.

', 'SampledHTTPRequest$OverriddenAction' => '

Used only for rule group rules that have a rule action override in place in the web ACL. This is the action that the rule group rule is configured for, and not the action that was applied to the request. The action that WAF applied is the Action value.

', ], ], 'ActionCondition' => [ 'base' => '

A single action condition for a Condition in a logging filter.

', 'refs' => [ 'Condition$ActionCondition' => '

A single action condition. This is the action setting that a log record must contain in order to meet the condition.

', ], ], 'ActionValue' => [ 'base' => NULL, 'refs' => [ 'ActionCondition$Action' => '

The action setting that a log record must contain in order to meet the condition. This is the action that WAF applied to the web request.

For rule groups, this is either the configured rule action setting, or if you\'ve applied a rule action override to the rule, it\'s the override action. The value EXCLUDED_AS_COUNT matches on excluded rules and also on rules that have a rule action override of Count.

', ], ], 'AddressField' => [ 'base' => '

The name of a field in the request payload that contains part or all of your customer\'s primary physical address.

This data type is used in the RequestInspectionACFP data type.

', 'refs' => [ 'AddressFields$member' => NULL, ], ], 'AddressFields' => [ 'base' => NULL, 'refs' => [ 'RequestInspectionACFP$AddressFields' => '

The names of the fields in the request payload that contain your customer\'s primary physical address.

Order the address fields in the array exactly as they are ordered in the request payload.

How you specify the address fields depends on the request inspection payload type.

  • For JSON payloads, specify the field identifiers in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "primaryaddressline1": "THE_ADDRESS1", "primaryaddressline2": "THE_ADDRESS2", "primaryaddressline3": "THE_ADDRESS3" } }, the address field idenfiers are /form/primaryaddressline1, /form/primaryaddressline2, and /form/primaryaddressline3.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with input elements named primaryaddressline1, primaryaddressline2, and primaryaddressline3, the address fields identifiers are primaryaddressline1, primaryaddressline2, and primaryaddressline3.

', ], ], 'All' => [ 'base' => '

Inspect all of the elements that WAF has parsed and extracted from the web request component that you\'ve identified in your FieldToMatch specifications.

This is used in the FieldToMatch specification for some web request component types.

JSON specification: "All": {}

', 'refs' => [ 'CookieMatchPattern$All' => '

Inspect all cookies.

', 'HeaderMatchPattern$All' => '

Inspect all headers.

', 'JsonMatchPattern$All' => '

Match all of the elements. See also MatchScope in JsonBody.

You must specify either this setting or the IncludedPaths setting, but not both.

', ], ], 'AllQueryArguments' => [ 'base' => '

Inspect all query arguments of the web request.

This is used in the FieldToMatch specification for some web request component types.

JSON specification: "AllQueryArguments": {}

', 'refs' => [ 'FieldToMatch$AllQueryArguments' => '

Inspect all query arguments.

', ], ], 'AllowAction' => [ 'base' => '

Specifies that WAF should allow the request and optionally defines additional custom handling for the request.

This is used in the context of other settings, for example to specify values for RuleAction and web ACL DefaultAction.

', 'refs' => [ 'DefaultAction$Allow' => '

Specifies that WAF should allow requests by default.

', 'RuleAction$Allow' => '

Instructs WAF to allow the web request.

', ], ], 'AndStatement' => [ 'base' => '

A logical rule statement used to combine other rule statements with AND logic. You provide more than one Statement within the AndStatement.

', 'refs' => [ 'Statement$AndStatement' => '

A logical rule statement used to combine other rule statements with AND logic. You provide more than one Statement within the AndStatement.

', ], ], 'AssociateWebACLRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateWebACLResponse' => [ 'base' => NULL, 'refs' => [], ], 'AssociatedResourceType' => [ 'base' => NULL, 'refs' => [ 'RequestBody$key' => NULL, ], ], 'AssociationConfig' => [ 'base' => '

Specifies custom configurations for the associations between the web ACL and protected resources.

Use this to customize the maximum size of the request body that your protected CloudFront distributions forward to WAF for inspection. The default is 16 KB (16,384 bytes).

You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

', 'refs' => [ 'CreateWebACLRequest$AssociationConfig' => '

Specifies custom configurations for the associations between the web ACL and protected resources.

Use this to customize the maximum size of the request body that your protected CloudFront distributions forward to WAF for inspection. The default is 16 KB (16,384 bytes).

You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

', 'UpdateWebACLRequest$AssociationConfig' => '

Specifies custom configurations for the associations between the web ACL and protected resources.

Use this to customize the maximum size of the request body that your protected CloudFront distributions forward to WAF for inspection. The default is 16 KB (16,384 bytes).

You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

', 'WebACL$AssociationConfig' => '

Specifies custom configurations for the associations between the web ACL and protected resources.

Use this to customize the maximum size of the request body that your protected CloudFront distributions forward to WAF for inspection. The default is 16 KB (16,384 bytes).

You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

', ], ], 'BlockAction' => [ 'base' => '

Specifies that WAF should block the request and optionally defines additional custom handling for the response to the web request.

This is used in the context of other settings, for example to specify values for RuleAction and web ACL DefaultAction.

', 'refs' => [ 'DefaultAction$Block' => '

Specifies that WAF should block requests by default.

', 'RuleAction$Block' => '

Instructs WAF to block the web request.

', ], ], 'Body' => [ 'base' => '

Inspect the body of the web request. The body immediately follows the request headers.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

', 'refs' => [ 'FieldToMatch$Body' => '

Inspect the request body as plain text. The request body immediately follows the request headers. This is the part of a request that contains any additional data that you want to send to your web server as the HTTP request body, such as data from a form.

A limited amount of the request body is forwarded to WAF for inspection by the underlying host service. For regional resources, the limit is 8 KB (8,192 bytes) and for CloudFront distributions, the limit is 16 KB (16,384 bytes). For CloudFront distributions, you can increase the limit in the web ACL\'s AssociationConfig, for additional processing fees.

For information about how to handle oversized request bodies, see the Body object configuration.

', ], ], 'BodyParsingFallbackBehavior' => [ 'base' => NULL, 'refs' => [ 'JsonBody$InvalidFallbackBehavior' => '

What WAF should do if it fails to completely parse the JSON body. The options are the following:

  • EVALUATE_AS_STRING - Inspect the body as plain text. WAF applies the text transformations and inspection criteria that you defined for the JSON inspection to the body text string.

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

If you don\'t provide this setting, WAF parses and evaluates the content only up to the first parsing failure that it encounters.

WAF does its best to parse the entire JSON body, but might be forced to stop for reasons such as invalid characters, duplicate keys, truncation, and any content whose root node isn\'t an object or an array.

WAF parses the JSON in the following examples as two valid key, value pairs:

  • Missing comma: {"key1":"value1""key2":"value2"}

  • Missing colon: {"key1":"value1","key2""value2"}

  • Extra colons: {"key1"::"value1","key2""value2"}

', ], ], 'Boolean' => [ 'base' => NULL, 'refs' => [ 'AWSManagedRulesACFPRuleSet$EnableRegexInPath' => '

Allow the use of regular expressions in the registration page path and the account creation path.

', 'AWSManagedRulesATPRuleSet$EnableRegexInPath' => '

Allow the use of regular expressions in the login page path.

', 'AWSManagedRulesBotControlRuleSet$EnableMachineLearning' => '

Applies only to the targeted inspection level.

Determines whether to use machine learning (ML) to analyze your web traffic for bot-related activity. Machine learning is required for the Bot Control rules TGT_ML_CoordinatedActivityLow and TGT_ML_CoordinatedActivityMedium, which inspect for anomalous behavior that might indicate distributed, coordinated bot activity.

For more information about this choice, see the listing for these rules in the table at Bot Control rules listing in the WAF Developer Guide.

Default: TRUE

', 'LoggingConfiguration$ManagedByFirewallManager' => '

Indicates whether the logging configuration was created by Firewall Manager, as part of an WAF policy configuration. If true, only Firewall Manager can modify or delete the configuration.

', 'ManagedProductDescriptor$IsVersioningSupported' => '

Indicates whether the rule group is versioned.

', 'ManagedProductDescriptor$IsAdvancedManagedRuleSet' => '

Indicates whether the rule group provides an advanced set of protections, such as the the Amazon Web Services Managed Rules rule groups that are used for WAF intelligent threat mitigation.

', 'ManagedRuleGroupSummary$VersioningSupported' => '

Indicates whether the managed rule group is versioned. If it is, you can retrieve the versions list by calling ListAvailableManagedRuleGroupVersions.

', 'VisibilityConfig$SampledRequestsEnabled' => '

Indicates whether WAF should store a sampling of the web requests that match the rules. You can view the sampled requests through the WAF console.

', 'VisibilityConfig$CloudWatchMetricsEnabled' => '

Indicates whether the associated resource sends metrics to Amazon CloudWatch. For the list of available metrics, see WAF Metrics in the WAF Developer Guide.

For web ACLs, the metrics are for web requests that have the web ACL default action applied. WAF applies the default action to web requests that pass the inspection of all rules in the web ACL without being either allowed or blocked. For more information, see The web ACL default action in the WAF Developer Guide.

', 'WebACL$ManagedByFirewallManager' => '

Indicates whether this web ACL is managed by Firewall Manager. If true, then only Firewall Manager can delete the web ACL or any Firewall Manager rule groups in the web ACL.

', ], ], 'ByteMatchStatement' => [ 'base' => '

A rule statement that defines a string match search for WAF to apply to web requests. The byte match statement provides the bytes to search for, the location in requests that you want WAF to search, and other settings. The bytes to search for are typically a string that corresponds with ASCII characters. In the WAF console and the developer guide, this is called a string match statement.

', 'refs' => [ 'Statement$ByteMatchStatement' => '

A rule statement that defines a string match search for WAF to apply to web requests. The byte match statement provides the bytes to search for, the location in requests that you want WAF to search, and other settings. The bytes to search for are typically a string that corresponds with ASCII characters. In the WAF console and the developer guide, this is called a string match statement.

', ], ], 'CapacityUnit' => [ 'base' => NULL, 'refs' => [ 'CreateRuleGroupRequest$Capacity' => '

The web ACL capacity units (WCUs) required for this rule group.

When you create your own rule group, you define this, and you cannot change it after creation. When you add or modify the rules in a rule group, WAF enforces this limit. You can check the capacity for a set of rules using CheckCapacity.

WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.

', 'DescribeManagedRuleGroupResponse$Capacity' => '

The web ACL capacity units (WCUs) required for this rule group.

WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.

', 'ManagedRuleSetVersion$Capacity' => '

The web ACL capacity units (WCUs) required for this rule group.

WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.

', 'RuleGroup$Capacity' => '

The web ACL capacity units (WCUs) required for this rule group.

When you create your own rule group, you define this, and you cannot change it after creation. When you add or modify the rules in a rule group, WAF enforces this limit. You can check the capacity for a set of rules using CheckCapacity.

WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.

', ], ], 'CaptchaAction' => [ 'base' => '

Specifies that WAF should run a CAPTCHA check against the request:

  • If the request includes a valid, unexpired CAPTCHA token, WAF applies any custom request handling and labels that you\'ve configured and then allows the web request inspection to proceed to the next rule, similar to a CountAction.

  • If the request doesn\'t include a valid, unexpired token, WAF discontinues the web ACL evaluation of the request and blocks it from going to its intended destination.

    WAF generates a response that it sends back to the client, which includes the following:

    • The header x-amzn-waf-action with a value of captcha.

    • The HTTP status code 405 Method Not Allowed.

    • If the request contains an Accept header with a value of text/html, the response includes a CAPTCHA JavaScript page interstitial.

You can configure the expiration time in the CaptchaConfig ImmunityTimeProperty setting at the rule and web ACL level. The rule setting overrides the web ACL setting.

This action option is available for rules. It isn\'t available for web ACL default actions.

', 'refs' => [ 'RuleAction$Captcha' => '

Instructs WAF to run a CAPTCHA check against the web request.

', ], ], 'CaptchaConfig' => [ 'base' => '

Specifies how WAF should handle CAPTCHA evaluations. This is available at the web ACL level and in each rule.

', 'refs' => [ 'CreateWebACLRequest$CaptchaConfig' => '

Specifies how WAF should handle CAPTCHA evaluations for rules that don\'t have their own CaptchaConfig settings. If you don\'t specify this, WAF uses its default settings for CaptchaConfig.

', 'Rule$CaptchaConfig' => '

Specifies how WAF should handle CAPTCHA evaluations. If you don\'t specify this, WAF uses the CAPTCHA configuration that\'s defined for the web ACL.

', 'UpdateWebACLRequest$CaptchaConfig' => '

Specifies how WAF should handle CAPTCHA evaluations for rules that don\'t have their own CaptchaConfig settings. If you don\'t specify this, WAF uses its default settings for CaptchaConfig.

', 'WebACL$CaptchaConfig' => '

Specifies how WAF should handle CAPTCHA evaluations for rules that don\'t have their own CaptchaConfig settings. If you don\'t specify this, WAF uses its default settings for CaptchaConfig.

', ], ], 'CaptchaResponse' => [ 'base' => '

The result from the inspection of the web request for a valid CAPTCHA token.

', 'refs' => [ 'SampledHTTPRequest$CaptchaResponse' => '

The CAPTCHA response for the request.

', ], ], 'ChallengeAction' => [ 'base' => '

Specifies that WAF should run a Challenge check against the request to verify that the request is coming from a legitimate client session:

  • If the request includes a valid, unexpired challenge token, WAF applies any custom request handling and labels that you\'ve configured and then allows the web request inspection to proceed to the next rule, similar to a CountAction.

  • If the request doesn\'t include a valid, unexpired challenge token, WAF discontinues the web ACL evaluation of the request and blocks it from going to its intended destination.

    WAF then generates a challenge response that it sends back to the client, which includes the following:

    • The header x-amzn-waf-action with a value of challenge.

    • The HTTP status code 202 Request Accepted.

    • If the request contains an Accept header with a value of text/html, the response includes a JavaScript page interstitial with a challenge script.

    Challenges run silent browser interrogations in the background, and don\'t generally affect the end user experience.

    A challenge enforces token acquisition using an interstitial JavaScript challenge that inspects the client session for legitimate behavior. The challenge blocks bots or at least increases the cost of operating sophisticated bots.

    After the client session successfully responds to the challenge, it receives a new token from WAF, which the challenge script uses to resubmit the original request.

You can configure the expiration time in the ChallengeConfig ImmunityTimeProperty setting at the rule and web ACL level. The rule setting overrides the web ACL setting.

This action option is available for rules. It isn\'t available for web ACL default actions.

', 'refs' => [ 'RuleAction$Challenge' => '

Instructs WAF to run a Challenge check against the web request.

', ], ], 'ChallengeConfig' => [ 'base' => '

Specifies how WAF should handle Challenge evaluations. This is available at the web ACL level and in each rule.

', 'refs' => [ 'CreateWebACLRequest$ChallengeConfig' => '

Specifies how WAF should handle challenge evaluations for rules that don\'t have their own ChallengeConfig settings. If you don\'t specify this, WAF uses its default settings for ChallengeConfig.

', 'Rule$ChallengeConfig' => '

Specifies how WAF should handle Challenge evaluations. If you don\'t specify this, WAF uses the challenge configuration that\'s defined for the web ACL.

', 'UpdateWebACLRequest$ChallengeConfig' => '

Specifies how WAF should handle challenge evaluations for rules that don\'t have their own ChallengeConfig settings. If you don\'t specify this, WAF uses its default settings for ChallengeConfig.

', 'WebACL$ChallengeConfig' => '

Specifies how WAF should handle challenge evaluations for rules that don\'t have their own ChallengeConfig settings. If you don\'t specify this, WAF uses its default settings for ChallengeConfig.

', ], ], 'ChallengeResponse' => [ 'base' => '

The result from the inspection of the web request for a valid challenge token.

', 'refs' => [ 'SampledHTTPRequest$ChallengeResponse' => '

The Challenge response for the request.

', ], ], 'CheckCapacityRequest' => [ 'base' => NULL, 'refs' => [], ], 'CheckCapacityResponse' => [ 'base' => NULL, 'refs' => [], ], 'ComparisonOperator' => [ 'base' => NULL, 'refs' => [ 'SizeConstraintStatement$ComparisonOperator' => '

The operator to use to compare the request part to the size setting.

', ], ], 'Condition' => [ 'base' => '

A single match condition for a Filter.

', 'refs' => [ 'Conditions$member' => NULL, ], ], 'Conditions' => [ 'base' => NULL, 'refs' => [ 'Filter$Conditions' => '

Match conditions for the filter.

', ], ], 'ConsumedCapacity' => [ 'base' => NULL, 'refs' => [ 'CheckCapacityResponse$Capacity' => '

The capacity required by the rules and scope.

', 'WebACL$Capacity' => '

The web ACL capacity units (WCUs) currently being used by this web ACL.

WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.

', ], ], 'CookieMatchPattern' => [ 'base' => '

The filter to use to identify the subset of cookies to inspect in a web request.

You must specify exactly one setting: either All, IncludedCookies, or ExcludedCookies.

Example JSON: "MatchPattern": { "IncludedCookies": [ "session-id-time", "session-id" ] }

', 'refs' => [ 'Cookies$MatchPattern' => '

The filter to use to identify the subset of cookies to inspect in a web request.

You must specify exactly one setting: either All, IncludedCookies, or ExcludedCookies.

Example JSON: "MatchPattern": { "IncludedCookies": [ "session-id-time", "session-id" ] }

', ], ], 'CookieNames' => [ 'base' => NULL, 'refs' => [ 'CookieMatchPattern$IncludedCookies' => '

Inspect only the cookies that have a key that matches one of the strings specified here.

', 'CookieMatchPattern$ExcludedCookies' => '

Inspect only the cookies whose keys don\'t match any of the strings specified here.

', ], ], 'Cookies' => [ 'base' => '

Inspect the cookies in the web request. You can specify the parts of the cookies to inspect and you can narrow the set of cookies to inspect by including or excluding specific keys.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

Example JSON: "Cookies": { "MatchPattern": { "All": {} }, "MatchScope": "KEY", "OversizeHandling": "MATCH" }

', 'refs' => [ 'FieldToMatch$Cookies' => '

Inspect the request cookies. You must configure scope and pattern matching filters in the Cookies object, to define the set of cookies and the parts of the cookies that WAF inspects.

Only the first 8 KB (8192 bytes) of a request\'s cookies and only the first 200 cookies are forwarded to WAF for inspection by the underlying host service. You must configure how to handle any oversize cookie content in the Cookies object. WAF applies the pattern matching filters to the cookies that it receives from the underlying host service.

', ], ], 'CountAction' => [ 'base' => '

Specifies that WAF should count the request. Optionally defines additional custom handling for the request.

This is used in the context of other settings, for example to specify values for RuleAction and web ACL DefaultAction.

', 'refs' => [ 'OverrideAction$Count' => '

Override the rule group evaluation result to count only.

This option is usually set to none. It does not affect how the rules in the rule group are evaluated. If you want the rules in the rule group to only count matches, do not use this and instead use the rule action override option, with Count action, in your rule group reference statement settings.

', 'RuleAction$Count' => '

Instructs WAF to count the web request and then continue evaluating the request using the remaining rules in the web ACL.

', ], ], 'Country' => [ 'base' => NULL, 'refs' => [ 'HTTPRequest$Country' => '

The two-letter country code for the country that the request originated from. For a current list of country codes, see the Wikipedia entry ISO 3166-1 alpha-2.

', ], ], 'CountryCode' => [ 'base' => NULL, 'refs' => [ 'CountryCodes$member' => NULL, ], ], 'CountryCodes' => [ 'base' => NULL, 'refs' => [ 'GeoMatchStatement$CountryCodes' => '

An array of two-character country codes that you want to match against, for example, [ "US", "CN" ], from the alpha-2 country ISO codes of the ISO 3166 international standard.

When you use a geo match statement just for the region and country labels that it adds to requests, you still have to supply a country code for the rule to evaluate. In this case, you configure the rule to only count matching requests, but it will still generate logging and count metrics for any matches. You can reduce the logging and metrics that the rule produces by specifying a country that\'s unlikely to be a source of traffic to your site.

', ], ], 'CreateAPIKeyRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateAPIKeyResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateIPSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateIPSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateRegexPatternSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateRegexPatternSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateRuleGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateRuleGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateWebACLRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateWebACLResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreationPathString' => [ 'base' => NULL, 'refs' => [ 'AWSManagedRulesACFPRuleSet$CreationPath' => '

The path of the account creation endpoint for your application. This is the page on your website that accepts the completed registration form for a new user. This page must accept POST requests.

For example, for the URL https://example.com/web/newaccount, you would provide the path /web/newaccount. Account creation page paths that start with the path that you provide are considered a match. For example /web/newaccount matches the account creation paths /web/newaccount, /web/newaccount/, /web/newaccountPage, and /web/newaccount/thisPage, but doesn\'t match the path /home/web/newaccount or /website/newaccount.

', ], ], 'CustomHTTPHeader' => [ 'base' => '

A custom header for custom request and response handling. This is used in CustomResponse and CustomRequestHandling.

', 'refs' => [ 'CustomHTTPHeaders$member' => NULL, ], ], 'CustomHTTPHeaderName' => [ 'base' => NULL, 'refs' => [ 'CustomHTTPHeader$Name' => '

The name of the custom header.

For custom request header insertion, when WAF inserts the header into the request, it prefixes this name x-amzn-waf-, to avoid confusion with the headers that are already in the request. For example, for the header name sample, WAF inserts the header x-amzn-waf-sample.

', ], ], 'CustomHTTPHeaderValue' => [ 'base' => NULL, 'refs' => [ 'CustomHTTPHeader$Value' => '

The value of the custom header.

', ], ], 'CustomHTTPHeaders' => [ 'base' => NULL, 'refs' => [ 'CustomRequestHandling$InsertHeaders' => '

The HTTP headers to insert into the request. Duplicate header names are not allowed.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', 'CustomResponse$ResponseHeaders' => '

The HTTP headers to use in the response. You can specify any header name except for content-type. Duplicate header names are not allowed.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', ], ], 'CustomRequestHandling' => [ 'base' => '

Custom request handling behavior that inserts custom headers into a web request. You can add custom request handling for WAF to use when the rule action doesn\'t block the request. For example, CaptchaAction for requests with valid t okens, and AllowAction.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

', 'refs' => [ 'AllowAction$CustomRequestHandling' => '

Defines custom handling for the web request.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

', 'CaptchaAction$CustomRequestHandling' => '

Defines custom handling for the web request, used when the CAPTCHA inspection determines that the request\'s token is valid and unexpired.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

', 'ChallengeAction$CustomRequestHandling' => '

Defines custom handling for the web request, used when the challenge inspection determines that the request\'s token is valid and unexpired.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

', 'CountAction$CustomRequestHandling' => '

Defines custom handling for the web request.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

', ], ], 'CustomResponse' => [ 'base' => '

A custom response to send to the client. You can define a custom response for rule actions and default web ACL actions that are set to BlockAction.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

', 'refs' => [ 'BlockAction$CustomResponse' => '

Defines a custom response for the web request.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

', ], ], 'CustomResponseBodies' => [ 'base' => NULL, 'refs' => [ 'CreateRuleGroupRequest$CustomResponseBodies' => '

A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the rule group, and then use them in the rules that you define in the rule group.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', 'CreateWebACLRequest$CustomResponseBodies' => '

A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the web ACL, and then use them in the rules and default actions that you define in the web ACL.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', 'RuleGroup$CustomResponseBodies' => '

A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the rule group, and then use them in the rules that you define in the rule group.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', 'UpdateRuleGroupRequest$CustomResponseBodies' => '

A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the rule group, and then use them in the rules that you define in the rule group.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', 'UpdateWebACLRequest$CustomResponseBodies' => '

A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the web ACL, and then use them in the rules and default actions that you define in the web ACL.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', 'WebACL$CustomResponseBodies' => '

A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the web ACL, and then use them in the rules and default actions that you define in the web ACL.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', ], ], 'CustomResponseBody' => [ 'base' => '

The response body to use in a custom response to a web request. This is referenced by key from CustomResponse CustomResponseBodyKey.

', 'refs' => [ 'CustomResponseBodies$value' => NULL, ], ], 'DefaultAction' => [ 'base' => '

In a WebACL, this is the action that you want WAF to perform when a web request doesn\'t match any of the rules in the WebACL. The default action must be a terminating action.

', 'refs' => [ 'CreateWebACLRequest$DefaultAction' => '

The action to perform if none of the Rules contained in the WebACL match.

', 'UpdateWebACLRequest$DefaultAction' => '

The action to perform if none of the Rules contained in the WebACL match.

', 'WebACL$DefaultAction' => '

The action to perform if none of the Rules contained in the WebACL match.

', ], ], 'DeleteAPIKeyRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAPIKeyResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFirewallManagerRuleGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFirewallManagerRuleGroupsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIPSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIPSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLoggingConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLoggingConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeletePermissionPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeletePermissionPolicyResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteRegexPatternSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteRegexPatternSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteRuleGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteRuleGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteWebACLRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteWebACLResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAllManagedProductsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAllManagedProductsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeManagedProductsByVendorRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeManagedProductsByVendorResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeManagedRuleGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeManagedRuleGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateWebACLRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateWebACLResponse' => [ 'base' => NULL, 'refs' => [], ], 'DownloadUrl' => [ 'base' => NULL, 'refs' => [ 'GenerateMobileSdkReleaseUrlResponse$Url' => '

The presigned download URL for the specified SDK release.

', ], ], 'EmailField' => [ 'base' => '

The name of the field in the request payload that contains your customer\'s email.

This data type is used in the RequestInspectionACFP data type.

', 'refs' => [ 'RequestInspectionACFP$EmailField' => '

The name of the field in the request payload that contains your customer\'s email.

How you specify this depends on the request inspection payload type.

  • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "email": "THE_EMAIL" } }, the email field specification is /form/email.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with the input element named email1, the email field specification is email1.

', ], ], 'EntityDescription' => [ 'base' => NULL, 'refs' => [ 'CreateIPSetRequest$Description' => '

A description of the IP set that helps with identification.

', 'CreateRegexPatternSetRequest$Description' => '

A description of the set that helps with identification.

', 'CreateRuleGroupRequest$Description' => '

A description of the rule group that helps with identification.

', 'CreateWebACLRequest$Description' => '

A description of the web ACL that helps with identification.

', 'IPSet$Description' => '

A description of the IP set that helps with identification.

', 'IPSetSummary$Description' => '

A description of the IP set that helps with identification.

', 'ManagedRuleGroupSummary$Description' => '

The description of the managed rule group, provided by Amazon Web Services Managed Rules or the Amazon Web Services Marketplace seller who manages it.

', 'ManagedRuleSet$Description' => '

A description of the set that helps with identification.

', 'ManagedRuleSetSummary$Description' => '

A description of the set that helps with identification.

', 'RegexPatternSet$Description' => '

A description of the set that helps with identification.

', 'RegexPatternSetSummary$Description' => '

A description of the set that helps with identification.

', 'RuleGroup$Description' => '

A description of the rule group that helps with identification.

', 'RuleGroupSummary$Description' => '

A description of the rule group that helps with identification.

', 'UpdateIPSetRequest$Description' => '

A description of the IP set that helps with identification.

', 'UpdateRegexPatternSetRequest$Description' => '

A description of the set that helps with identification.

', 'UpdateRuleGroupRequest$Description' => '

A description of the rule group that helps with identification.

', 'UpdateWebACLRequest$Description' => '

A description of the web ACL that helps with identification.

', 'WebACL$Description' => '

A description of the web ACL that helps with identification.

', 'WebACLSummary$Description' => '

A description of the web ACL that helps with identification.

', ], ], 'EntityId' => [ 'base' => NULL, 'refs' => [ 'DeleteIPSetRequest$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'DeleteRegexPatternSetRequest$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'DeleteRuleGroupRequest$Id' => '

A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'DeleteWebACLRequest$Id' => '

The unique identifier for the web ACL. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'GetIPSetRequest$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'GetManagedRuleSetRequest$Id' => '

A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

', 'GetRateBasedStatementManagedKeysRequest$WebACLId' => '

The unique identifier for the web ACL. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'GetRegexPatternSetRequest$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'GetRuleGroupRequest$Id' => '

A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'GetWebACLRequest$Id' => '

The unique identifier for the web ACL. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'IPSet$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'IPSetSummary$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'ManagedRuleSet$Id' => '

A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

', 'ManagedRuleSetSummary$Id' => '

A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

', 'PutManagedRuleSetVersionsRequest$Id' => '

A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

', 'RegexPatternSet$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'RegexPatternSetSummary$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'RuleGroup$Id' => '

A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'RuleGroupSummary$Id' => '

A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'UpdateIPSetRequest$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'UpdateManagedRuleSetVersionExpiryDateRequest$Id' => '

A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

', 'UpdateRegexPatternSetRequest$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'UpdateRuleGroupRequest$Id' => '

A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'UpdateWebACLRequest$Id' => '

The unique identifier for the web ACL. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'WebACL$Id' => '

A unique identifier for the WebACL. This ID is returned in the responses to create and list commands. You use this ID to do things like get, update, and delete a WebACL.

', 'WebACLSummary$Id' => '

The unique identifier for the web ACL. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', ], ], 'EntityName' => [ 'base' => NULL, 'refs' => [ 'CreateIPSetRequest$Name' => '

The name of the IP set. You cannot change the name of an IPSet after you create it.

', 'CreateRegexPatternSetRequest$Name' => '

The name of the set. You cannot change the name after you create the set.

', 'CreateRuleGroupRequest$Name' => '

The name of the rule group. You cannot change the name of a rule group after you create it.

', 'CreateWebACLRequest$Name' => '

The name of the web ACL. You cannot change the name of a web ACL after you create it.

', 'CustomResponse$CustomResponseBodyKey' => '

References the response body that you want WAF to return to the web request client. You can define a custom response for a rule action or a default web ACL action that is set to block. To do this, you first define the response body key and value in the CustomResponseBodies setting for the WebACL or RuleGroup where you want to use it. Then, in the rule action or web ACL default action BlockAction setting, you reference the response body using this key.

', 'CustomResponseBodies$key' => NULL, 'DeleteIPSetRequest$Name' => '

The name of the IP set. You cannot change the name of an IPSet after you create it.

', 'DeleteRegexPatternSetRequest$Name' => '

The name of the set. You cannot change the name after you create the set.

', 'DeleteRuleGroupRequest$Name' => '

The name of the rule group. You cannot change the name of a rule group after you create it.

', 'DeleteWebACLRequest$Name' => '

The name of the web ACL. You cannot change the name of a web ACL after you create it.

', 'DescribeManagedRuleGroupRequest$Name' => '

The name of the managed rule group. You use this, along with the vendor name, to identify the rule group.

', 'ExcludedRule$Name' => '

The name of the rule whose action you want to override to Count.

', 'FirewallManagerRuleGroup$Name' => '

The name of the rule group. You cannot change the name of a rule group after you create it.

', 'GetIPSetRequest$Name' => '

The name of the IP set. You cannot change the name of an IPSet after you create it.

', 'GetManagedRuleSetRequest$Name' => '

The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

This name is assigned to the corresponding managed rule group, which your customers can access and use.

', 'GetRateBasedStatementManagedKeysRequest$WebACLName' => '

The name of the web ACL. You cannot change the name of a web ACL after you create it.

', 'GetRateBasedStatementManagedKeysRequest$RuleGroupRuleName' => '

The name of the rule group reference statement in your web ACL. This is required only when you have the rate-based rule nested inside a rule group.

', 'GetRateBasedStatementManagedKeysRequest$RuleName' => '

The name of the rate-based rule to get the keys for. If you have the rule defined inside a rule group that you\'re using in your web ACL, also provide the name of the rule group reference statement in the request parameter RuleGroupRuleName.

', 'GetRegexPatternSetRequest$Name' => '

The name of the set. You cannot change the name after you create the set.

', 'GetRuleGroupRequest$Name' => '

The name of the rule group. You cannot change the name of a rule group after you create it.

', 'GetWebACLRequest$Name' => '

The name of the web ACL. You cannot change the name of a web ACL after you create it.

', 'IPSet$Name' => '

The name of the IP set. You cannot change the name of an IPSet after you create it.

', 'IPSetSummary$Name' => '

The name of the IP set. You cannot change the name of an IPSet after you create it.

', 'ListAvailableManagedRuleGroupVersionsRequest$Name' => '

The name of the managed rule group. You use this, along with the vendor name, to identify the rule group.

', 'ManagedProductDescriptor$ManagedRuleSetName' => '

The name of the managed rule group. For example, AWSManagedRulesAnonymousIpList or AWSManagedRulesATPRuleSet.

', 'ManagedRuleGroupStatement$Name' => '

The name of the managed rule group. You use this, along with the vendor name, to identify the rule group.

', 'ManagedRuleGroupSummary$Name' => '

The name of the managed rule group. You use this, along with the vendor name, to identify the rule group.

', 'ManagedRuleSet$Name' => '

The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

This name is assigned to the corresponding managed rule group, which your customers can access and use.

', 'ManagedRuleSetSummary$Name' => '

The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

This name is assigned to the corresponding managed rule group, which your customers can access and use.

', 'PutManagedRuleSetVersionsRequest$Name' => '

The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

This name is assigned to the corresponding managed rule group, which your customers can access and use.

', 'RegexPatternSet$Name' => '

The name of the set. You cannot change the name after you create the set.

', 'RegexPatternSetSummary$Name' => '

The name of the data type instance. You cannot change the name after you create the instance.

', 'Rule$Name' => '

The name of the rule.

If you change the name of a Rule after you create it and you want the rule\'s metric name to reflect the change, update the metric name in the rule\'s VisibilityConfig settings. WAF doesn\'t automatically update the metric name when you update the rule name.

', 'RuleActionOverride$Name' => '

The name of the rule to override.

', 'RuleGroup$Name' => '

The name of the rule group. You cannot change the name of a rule group after you create it.

', 'RuleGroupSummary$Name' => '

The name of the data type instance. You cannot change the name after you create the instance.

', 'RuleSummary$Name' => '

The name of the rule.

', 'SampledHTTPRequest$RuleNameWithinRuleGroup' => '

The name of the Rule that the request matched. For managed rule groups, the format for this name is <vendor name>#<managed rule group name>#<rule name>. For your own rule groups, the format for this name is <rule group name>#<rule name>. If the rule is not in a rule group, this field is absent.

', 'UpdateIPSetRequest$Name' => '

The name of the IP set. You cannot change the name of an IPSet after you create it.

', 'UpdateManagedRuleSetVersionExpiryDateRequest$Name' => '

The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

This name is assigned to the corresponding managed rule group, which your customers can access and use.

', 'UpdateRegexPatternSetRequest$Name' => '

The name of the set. You cannot change the name after you create the set.

', 'UpdateRuleGroupRequest$Name' => '

The name of the rule group. You cannot change the name of a rule group after you create it.

', 'UpdateWebACLRequest$Name' => '

The name of the web ACL. You cannot change the name of a web ACL after you create it.

', 'WebACL$Name' => '

The name of the web ACL. You cannot change the name of a web ACL after you create it.

', 'WebACLSummary$Name' => '

The name of the web ACL. You cannot change the name of a web ACL after you create it.

', ], ], 'ErrorMessage' => [ 'base' => NULL, 'refs' => [ 'WAFAssociatedItemException$Message' => NULL, 'WAFConfigurationWarningException$Message' => NULL, 'WAFDuplicateItemException$Message' => NULL, 'WAFExpiredManagedRuleGroupVersionException$Message' => NULL, 'WAFInternalErrorException$Message' => NULL, 'WAFInvalidOperationException$Message' => NULL, 'WAFInvalidParameterException$message' => NULL, 'WAFInvalidPermissionPolicyException$Message' => NULL, 'WAFInvalidResourceException$Message' => NULL, 'WAFLimitsExceededException$Message' => NULL, 'WAFLogDestinationPermissionIssueException$Message' => NULL, 'WAFNonexistentItemException$Message' => NULL, 'WAFOptimisticLockException$Message' => NULL, 'WAFServiceLinkedRoleErrorException$message' => NULL, 'WAFSubscriptionNotFoundException$Message' => NULL, 'WAFTagOperationException$Message' => NULL, 'WAFTagOperationInternalErrorException$Message' => NULL, 'WAFUnavailableEntityException$Message' => NULL, 'WAFUnsupportedAggregateKeyTypeException$Message' => NULL, ], ], 'ErrorReason' => [ 'base' => NULL, 'refs' => [ 'WAFInvalidParameterException$Reason' => '

Additional information about the exception.

', ], ], 'ExcludedRule' => [ 'base' => '

Specifies a single rule in a rule group whose action you want to override to Count.

Instead of this option, use RuleActionOverrides. It accepts any valid action setting, including Count.

', 'refs' => [ 'ExcludedRules$member' => NULL, ], ], 'ExcludedRules' => [ 'base' => NULL, 'refs' => [ 'ManagedRuleGroupStatement$ExcludedRules' => '

Rules in the referenced rule group whose actions are set to Count.

Instead of this option, use RuleActionOverrides. It accepts any valid action setting, including Count.

', 'RuleGroupReferenceStatement$ExcludedRules' => '

Rules in the referenced rule group whose actions are set to Count.

Instead of this option, use RuleActionOverrides. It accepts any valid action setting, including Count.

', ], ], 'FailureCode' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionStatusCodeFailureCodes$member' => NULL, ], ], 'FailureReason' => [ 'base' => NULL, 'refs' => [ 'CaptchaResponse$FailureReason' => '

The reason for failure, populated when the evaluation of the token fails.

', 'ChallengeResponse$FailureReason' => '

The reason for failure, populated when the evaluation of the token fails.

', ], ], 'FailureValue' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionBodyContainsFailureStrings$member' => NULL, 'ResponseInspectionHeaderFailureValues$member' => NULL, 'ResponseInspectionJsonFailureValues$member' => NULL, ], ], 'FallbackBehavior' => [ 'base' => NULL, 'refs' => [ 'ForwardedIPConfig$FallbackBehavior' => '

The match status to assign to the web request if the request doesn\'t have a valid IP address in the specified position.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

You can specify the following fallback behaviors:

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

', 'IPSetForwardedIPConfig$FallbackBehavior' => '

The match status to assign to the web request if the request doesn\'t have a valid IP address in the specified position.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

You can specify the following fallback behaviors:

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

', 'JA3Fingerprint$FallbackBehavior' => '

The match status to assign to the web request if the request doesn\'t have a JA3 fingerprint.

You can specify the following fallback behaviors:

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

', ], ], 'FieldIdentifier' => [ 'base' => NULL, 'refs' => [ 'AddressField$Identifier' => '

The name of a single primary address field.

How you specify the address fields depends on the request inspection payload type.

  • For JSON payloads, specify the field identifiers in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "primaryaddressline1": "THE_ADDRESS1", "primaryaddressline2": "THE_ADDRESS2", "primaryaddressline3": "THE_ADDRESS3" } }, the address field idenfiers are /form/primaryaddressline1, /form/primaryaddressline2, and /form/primaryaddressline3.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with input elements named primaryaddressline1, primaryaddressline2, and primaryaddressline3, the address fields identifiers are primaryaddressline1, primaryaddressline2, and primaryaddressline3.

', 'EmailField$Identifier' => '

The name of the email field.

How you specify this depends on the request inspection payload type.

  • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "email": "THE_EMAIL" } }, the email field specification is /form/email.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with the input element named email1, the email field specification is email1.

', 'PasswordField$Identifier' => '

The name of the password field.

How you specify this depends on the request inspection payload type.

  • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "password": "THE_PASSWORD" } }, the password field specification is /form/password.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with the input element named password1, the password field specification is password1.

', 'PhoneNumberField$Identifier' => '

The name of a single primary phone number field.

How you specify the phone number fields depends on the request inspection payload type.

  • For JSON payloads, specify the field identifiers in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "primaryphoneline1": "THE_PHONE1", "primaryphoneline2": "THE_PHONE2", "primaryphoneline3": "THE_PHONE3" } }, the phone number field identifiers are /form/primaryphoneline1, /form/primaryphoneline2, and /form/primaryphoneline3.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with input elements named primaryphoneline1, primaryphoneline2, and primaryphoneline3, the phone number field identifiers are primaryphoneline1, primaryphoneline2, and primaryphoneline3.

', 'ResponseInspectionJson$Identifier' => '

The identifier for the value to match against in the JSON. The identifier must be an exact match, including case.

JSON examples: "Identifier": [ "/login/success" ] and "Identifier": [ "/sign-up/success" ]

', 'UsernameField$Identifier' => '

The name of the username field.

How you specify this depends on the request inspection payload type.

  • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "username": "THE_USERNAME" } }, the username field specification is /form/username.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with the input element named username1, the username field specification is username1

', ], ], 'FieldToMatch' => [ 'base' => '

The part of the web request that you want WAF to inspect. Include the single FieldToMatch type that you want to inspect, with additional specifications as needed, according to the type. You specify a single request component in FieldToMatch for each rule statement that requires it. To inspect more than one component of the web request, create a separate rule statement for each component.

Example JSON for a QueryString field to match:

"FieldToMatch": { "QueryString": {} }

Example JSON for a Method field to match specification:

"FieldToMatch": { "Method": { "Name": "DELETE" } }

', 'refs' => [ 'ByteMatchStatement$FieldToMatch' => '

The part of the web request that you want WAF to inspect.

', 'RedactedFields$member' => NULL, 'RegexMatchStatement$FieldToMatch' => '

The part of the web request that you want WAF to inspect.

', 'RegexPatternSetReferenceStatement$FieldToMatch' => '

The part of the web request that you want WAF to inspect.

', 'SizeConstraintStatement$FieldToMatch' => '

The part of the web request that you want WAF to inspect.

', 'SqliMatchStatement$FieldToMatch' => '

The part of the web request that you want WAF to inspect.

', 'XssMatchStatement$FieldToMatch' => '

The part of the web request that you want WAF to inspect.

', ], ], 'FieldToMatchData' => [ 'base' => NULL, 'refs' => [ 'HeaderNames$member' => NULL, 'RateLimitCookie$Name' => '

The name of the cookie to use.

', 'RateLimitHeader$Name' => '

The name of the header to use.

', 'RateLimitQueryArgument$Name' => '

The name of the query argument to use.

', 'SingleHeader$Name' => '

The name of the query header to inspect.

', 'SingleQueryArgument$Name' => '

The name of the query argument to inspect.

', ], ], 'Filter' => [ 'base' => '

A single logging filter, used in LoggingFilter.

', 'refs' => [ 'Filters$member' => NULL, ], ], 'FilterBehavior' => [ 'base' => NULL, 'refs' => [ 'Filter$Behavior' => '

How to handle logs that satisfy the filter\'s conditions and requirement.

', 'LoggingFilter$DefaultBehavior' => '

Default handling for logs that don\'t match any of the specified filtering conditions.

', ], ], 'FilterRequirement' => [ 'base' => NULL, 'refs' => [ 'Filter$Requirement' => '

Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.

', ], ], 'Filters' => [ 'base' => NULL, 'refs' => [ 'LoggingFilter$Filters' => '

The filters that you want to apply to the logs.

', ], ], 'FirewallManagerRuleGroup' => [ 'base' => '

A rule group that\'s defined for an Firewall Manager WAF policy.

', 'refs' => [ 'FirewallManagerRuleGroups$member' => NULL, ], ], 'FirewallManagerRuleGroups' => [ 'base' => NULL, 'refs' => [ 'WebACL$PreProcessFirewallManagerRuleGroups' => '

The first set of rules for WAF to process in the web ACL. This is defined in an Firewall Manager WAF policy and contains only rule group references. You can\'t alter these. Any rules and rule groups that you define for the web ACL are prioritized after these.

In the Firewall Manager WAF policy, the Firewall Manager administrator can define a set of rule groups to run first in the web ACL and a set of rule groups to run last. Within each set, the administrator prioritizes the rule groups, to determine their relative processing order.

', 'WebACL$PostProcessFirewallManagerRuleGroups' => '

The last set of rules for WAF to process in the web ACL. This is defined in an Firewall Manager WAF policy and contains only rule group references. You can\'t alter these. Any rules and rule groups that you define for the web ACL are prioritized before these.

In the Firewall Manager WAF policy, the Firewall Manager administrator can define a set of rule groups to run first in the web ACL and a set of rule groups to run last. Within each set, the administrator prioritizes the rule groups, to determine their relative processing order.

', ], ], 'FirewallManagerStatement' => [ 'base' => '

The processing guidance for an Firewall Manager rule. This is like a regular rule Statement, but it can only contain a single rule group reference.

', 'refs' => [ 'FirewallManagerRuleGroup$FirewallManagerStatement' => '

The processing guidance for an Firewall Manager rule. This is like a regular rule Statement, but it can only contain a rule group reference.

', ], ], 'ForwardedIPConfig' => [ 'base' => '

The configuration for inspecting IP addresses in an HTTP header that you specify, instead of using the IP address that\'s reported by the web request origin. Commonly, this is the X-Forwarded-For (XFF) header, but you can specify any header name.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

This configuration is used for GeoMatchStatement and RateBasedStatement. For IPSetReferenceStatement, use IPSetForwardedIPConfig instead.

WAF only evaluates the first IP address found in the specified HTTP header.

', 'refs' => [ 'GeoMatchStatement$ForwardedIPConfig' => '

The configuration for inspecting IP addresses in an HTTP header that you specify, instead of using the IP address that\'s reported by the web request origin. Commonly, this is the X-Forwarded-For (XFF) header, but you can specify any header name.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

', 'RateBasedStatement$ForwardedIPConfig' => '

The configuration for inspecting IP addresses in an HTTP header that you specify, instead of using the IP address that\'s reported by the web request origin. Commonly, this is the X-Forwarded-For (XFF) header, but you can specify any header name.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

This is required if you specify a forwarded IP in the rule\'s aggregate key settings.

', ], ], 'ForwardedIPHeaderName' => [ 'base' => NULL, 'refs' => [ 'ForwardedIPConfig$HeaderName' => '

The name of the HTTP header to use for the IP address. For example, to use the X-Forwarded-For (XFF) header, set this to X-Forwarded-For.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

', 'IPSetForwardedIPConfig$HeaderName' => '

The name of the HTTP header to use for the IP address. For example, to use the X-Forwarded-For (XFF) header, set this to X-Forwarded-For.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

', ], ], 'ForwardedIPPosition' => [ 'base' => NULL, 'refs' => [ 'IPSetForwardedIPConfig$Position' => '

The position in the header to search for the IP address. The header can contain IP addresses of the original client and also of proxies. For example, the header value could be 10.1.1.1, 127.0.0.0, 10.10.10.10 where the first IP address identifies the original client and the rest identify proxies that the request went through.

The options for this setting are the following:

  • FIRST - Inspect the first IP address in the list of IP addresses in the header. This is usually the client\'s original IP.

  • LAST - Inspect the last IP address in the list of IP addresses in the header.

  • ANY - Inspect all IP addresses in the header for a match. If the header contains more than 10 IP addresses, WAF inspects the last 10.

', ], ], 'GenerateMobileSdkReleaseUrlRequest' => [ 'base' => NULL, 'refs' => [], ], 'GenerateMobileSdkReleaseUrlResponse' => [ 'base' => NULL, 'refs' => [], ], 'GeoMatchStatement' => [ 'base' => '

A rule statement that labels web requests by country and region and that matches against web requests based on country code. A geo match rule labels every request that it inspects regardless of whether it finds a match.

  • To manage requests only by country, you can use this statement by itself and specify the countries that you want to match against in the CountryCodes array.

  • Otherwise, configure your geo match rule with Count action so that it only labels requests. Then, add one or more label match rules to run after the geo match rule and configure them to match against the geographic labels and handle the requests as needed.

WAF labels requests using the alpha-2 country and region codes from the International Organization for Standardization (ISO) 3166 standard. WAF determines the codes using either the IP address in the web request origin or, if you specify it, the address in the geo match ForwardedIPConfig.

If you use the web request origin, the label formats are awswaf:clientip:geo:region:<ISO country code>-<ISO region code> and awswaf:clientip:geo:country:<ISO country code>.

If you use a forwarded IP address, the label formats are awswaf:forwardedip:geo:region:<ISO country code>-<ISO region code> and awswaf:forwardedip:geo:country:<ISO country code>.

For additional details, see Geographic match rule statement in the WAF Developer Guide.

', 'refs' => [ 'Statement$GeoMatchStatement' => '

A rule statement that labels web requests by country and region and that matches against web requests based on country code. A geo match rule labels every request that it inspects regardless of whether it finds a match.

  • To manage requests only by country, you can use this statement by itself and specify the countries that you want to match against in the CountryCodes array.

  • Otherwise, configure your geo match rule with Count action so that it only labels requests. Then, add one or more label match rules to run after the geo match rule and configure them to match against the geographic labels and handle the requests as needed.

WAF labels requests using the alpha-2 country and region codes from the International Organization for Standardization (ISO) 3166 standard. WAF determines the codes using either the IP address in the web request origin or, if you specify it, the address in the geo match ForwardedIPConfig.

If you use the web request origin, the label formats are awswaf:clientip:geo:region:<ISO country code>-<ISO region code> and awswaf:clientip:geo:country:<ISO country code>.

If you use a forwarded IP address, the label formats are awswaf:forwardedip:geo:region:<ISO country code>-<ISO region code> and awswaf:forwardedip:geo:country:<ISO country code>.

For additional details, see Geographic match rule statement in the WAF Developer Guide.

', ], ], 'GetDecryptedAPIKeyRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetDecryptedAPIKeyResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetIPSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIPSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetLoggingConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetLoggingConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetManagedRuleSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetManagedRuleSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetMobileSdkReleaseRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetMobileSdkReleaseResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetPermissionPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetPermissionPolicyResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetRateBasedStatementManagedKeysRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetRateBasedStatementManagedKeysResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetRegexPatternSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetRegexPatternSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetRuleGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetRuleGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetSampledRequestsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSampledRequestsResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetWebACLForResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetWebACLForResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetWebACLRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetWebACLResponse' => [ 'base' => NULL, 'refs' => [], ], 'HTTPHeader' => [ 'base' => '

Part of the response from GetSampledRequests. This is a complex type that appears as Headers in the response syntax. HTTPHeader contains the names and values of all of the headers that appear in one of the web requests.

', 'refs' => [ 'HTTPHeaders$member' => NULL, ], ], 'HTTPHeaders' => [ 'base' => NULL, 'refs' => [ 'HTTPRequest$Headers' => '

A complex type that contains the name and value for each header in the sampled web request.

', 'SampledHTTPRequest$RequestHeadersInserted' => '

Custom request headers inserted by WAF into the request, according to the custom request configuration for the matching rule action.

', ], ], 'HTTPMethod' => [ 'base' => NULL, 'refs' => [ 'HTTPRequest$Method' => '

The HTTP method specified in the sampled web request.

', ], ], 'HTTPRequest' => [ 'base' => '

Part of the response from GetSampledRequests. This is a complex type that appears as Request in the response syntax. HTTPRequest contains information about one of the web requests.

', 'refs' => [ 'SampledHTTPRequest$Request' => '

A complex type that contains detailed information about the request.

', ], ], 'HTTPVersion' => [ 'base' => NULL, 'refs' => [ 'HTTPRequest$HTTPVersion' => '

The HTTP version specified in the sampled web request, for example, HTTP/1.1.

', ], ], 'HeaderMatchPattern' => [ 'base' => '

The filter to use to identify the subset of headers to inspect in a web request.

You must specify exactly one setting: either All, IncludedHeaders, or ExcludedHeaders.

Example JSON: "MatchPattern": { "ExcludedHeaders": [ "KeyToExclude1", "KeyToExclude2" ] }

', 'refs' => [ 'Headers$MatchPattern' => '

The filter to use to identify the subset of headers to inspect in a web request.

You must specify exactly one setting: either All, IncludedHeaders, or ExcludedHeaders.

Example JSON: "MatchPattern": { "ExcludedHeaders": [ "KeyToExclude1", "KeyToExclude2" ] }

', ], ], 'HeaderName' => [ 'base' => NULL, 'refs' => [ 'HTTPHeader$Name' => '

The name of the HTTP header.

', ], ], 'HeaderNames' => [ 'base' => NULL, 'refs' => [ 'HeaderMatchPattern$IncludedHeaders' => '

Inspect only the headers that have a key that matches one of the strings specified here.

', 'HeaderMatchPattern$ExcludedHeaders' => '

Inspect only the headers whose keys don\'t match any of the strings specified here.

', ], ], 'HeaderOrder' => [ 'base' => '

Inspect a string containing the list of the request\'s header names, ordered as they appear in the web request that WAF receives for inspection. WAF generates the string and then uses that as the field to match component in its inspection. WAF separates the header names in the string using colons and no added spaces, for example host:user-agent:accept:authorization:referer.

', 'refs' => [ 'FieldToMatch$HeaderOrder' => '

Inspect a string containing the list of the request\'s header names, ordered as they appear in the web request that WAF receives for inspection. WAF generates the string and then uses that as the field to match component in its inspection. WAF separates the header names in the string using colons and no added spaces, for example host:user-agent:accept:authorization:referer.

', ], ], 'HeaderValue' => [ 'base' => NULL, 'refs' => [ 'HTTPHeader$Value' => '

The value of the HTTP header.

', ], ], 'Headers' => [ 'base' => '

Inspect all headers in the web request. You can specify the parts of the headers to inspect and you can narrow the set of headers to inspect by including or excluding specific keys.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

If you want to inspect just the value of a single header, use the SingleHeader FieldToMatch setting instead.

Example JSON: "Headers": { "MatchPattern": { "All": {} }, "MatchScope": "KEY", "OversizeHandling": "MATCH" }

', 'refs' => [ 'FieldToMatch$Headers' => '

Inspect the request headers. You must configure scope and pattern matching filters in the Headers object, to define the set of headers to and the parts of the headers that WAF inspects.

Only the first 8 KB (8192 bytes) of a request\'s headers and only the first 200 headers are forwarded to WAF for inspection by the underlying host service. You must configure how to handle any oversize header content in the Headers object. WAF applies the pattern matching filters to the headers that it receives from the underlying host service.

', ], ], 'IPAddress' => [ 'base' => NULL, 'refs' => [ 'IPAddresses$member' => NULL, ], ], 'IPAddressVersion' => [ 'base' => NULL, 'refs' => [ 'CreateIPSetRequest$IPAddressVersion' => '

The version of the IP addresses, either IPV4 or IPV6.

', 'IPSet$IPAddressVersion' => '

The version of the IP addresses, either IPV4 or IPV6.

', 'RateBasedStatementManagedKeysIPSet$IPAddressVersion' => '

The version of the IP addresses, either IPV4 or IPV6.

', ], ], 'IPAddresses' => [ 'base' => NULL, 'refs' => [ 'CreateIPSetRequest$Addresses' => '

Contains an array of strings that specifies zero or more IP addresses or blocks of IP addresses that you want WAF to inspect for in incoming requests. All addresses must be specified using Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges except for /0.

Example address strings:

  • For requests that originated from the IP address 192.0.2.44, specify 192.0.2.44/32.

  • For requests that originated from IP addresses from 192.0.2.0 to 192.0.2.255, specify 192.0.2.0/24.

  • For requests that originated from the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify 1111:0000:0000:0000:0000:0000:0000:0111/128.

  • For requests that originated from IP addresses 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify 1111:0000:0000:0000:0000:0000:0000:0000/64.

For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

Example JSON Addresses specifications:

  • Empty array: "Addresses": []

  • Array with one address: "Addresses": ["192.0.2.44/32"]

  • Array with three addresses: "Addresses": ["192.0.2.44/32", "192.0.2.0/24", "192.0.0.0/16"]

  • INVALID specification: "Addresses": [""] INVALID

', 'IPSet$Addresses' => '

Contains an array of strings that specifies zero or more IP addresses or blocks of IP addresses that you want WAF to inspect for in incoming requests. All addresses must be specified using Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges except for /0.

Example address strings:

  • For requests that originated from the IP address 192.0.2.44, specify 192.0.2.44/32.

  • For requests that originated from IP addresses from 192.0.2.0 to 192.0.2.255, specify 192.0.2.0/24.

  • For requests that originated from the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify 1111:0000:0000:0000:0000:0000:0000:0111/128.

  • For requests that originated from IP addresses 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify 1111:0000:0000:0000:0000:0000:0000:0000/64.

For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

Example JSON Addresses specifications:

  • Empty array: "Addresses": []

  • Array with one address: "Addresses": ["192.0.2.44/32"]

  • Array with three addresses: "Addresses": ["192.0.2.44/32", "192.0.2.0/24", "192.0.0.0/16"]

  • INVALID specification: "Addresses": [""] INVALID

', 'RateBasedStatementManagedKeysIPSet$Addresses' => '

The IP addresses that are currently blocked.

', 'UpdateIPSetRequest$Addresses' => '

Contains an array of strings that specifies zero or more IP addresses or blocks of IP addresses that you want WAF to inspect for in incoming requests. All addresses must be specified using Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges except for /0.

Example address strings:

  • For requests that originated from the IP address 192.0.2.44, specify 192.0.2.44/32.

  • For requests that originated from IP addresses from 192.0.2.0 to 192.0.2.255, specify 192.0.2.0/24.

  • For requests that originated from the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify 1111:0000:0000:0000:0000:0000:0000:0111/128.

  • For requests that originated from IP addresses 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify 1111:0000:0000:0000:0000:0000:0000:0000/64.

For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

Example JSON Addresses specifications:

  • Empty array: "Addresses": []

  • Array with one address: "Addresses": ["192.0.2.44/32"]

  • Array with three addresses: "Addresses": ["192.0.2.44/32", "192.0.2.0/24", "192.0.0.0/16"]

  • INVALID specification: "Addresses": [""] INVALID

', ], ], 'IPSet' => [ 'base' => '

Contains zero or more IP addresses or blocks of IP addresses specified in Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges except for /0. For information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

WAF assigns an ARN to each IPSet that you create. To use an IP set in a rule, you provide the ARN to the Rule statement IPSetReferenceStatement.

', 'refs' => [ 'GetIPSetResponse$IPSet' => '

', ], ], 'IPSetForwardedIPConfig' => [ 'base' => '

The configuration for inspecting IP addresses in an HTTP header that you specify, instead of using the IP address that\'s reported by the web request origin. Commonly, this is the X-Forwarded-For (XFF) header, but you can specify any header name.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

This configuration is used only for IPSetReferenceStatement. For GeoMatchStatement and RateBasedStatement, use ForwardedIPConfig instead.

', 'refs' => [ 'IPSetReferenceStatement$IPSetForwardedIPConfig' => '

The configuration for inspecting IP addresses in an HTTP header that you specify, instead of using the IP address that\'s reported by the web request origin. Commonly, this is the X-Forwarded-For (XFF) header, but you can specify any header name.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

', ], ], 'IPSetReferenceStatement' => [ 'base' => '

A rule statement used to detect web requests coming from particular IP addresses or address ranges. To use this, create an IPSet that specifies the addresses you want to detect, then use the ARN of that set in this statement. To create an IP set, see CreateIPSet.

Each IP set rule statement references an IP set. You create and maintain the set independent of your rules. This allows you to use the single set in multiple rules. When you update the referenced set, WAF automatically updates all rules that reference it.

', 'refs' => [ 'Statement$IPSetReferenceStatement' => '

A rule statement used to detect web requests coming from particular IP addresses or address ranges. To use this, create an IPSet that specifies the addresses you want to detect, then use the ARN of that set in this statement. To create an IP set, see CreateIPSet.

Each IP set rule statement references an IP set. You create and maintain the set independent of your rules. This allows you to use the single set in multiple rules. When you update the referenced set, WAF automatically updates all rules that reference it.

', ], ], 'IPSetSummaries' => [ 'base' => NULL, 'refs' => [ 'ListIPSetsResponse$IPSets' => '

Array of IPSets. If you specified a Limit in your request, this might not be the full list.

', ], ], 'IPSetSummary' => [ 'base' => '

High-level information about an IPSet, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage an IPSet, and the ARN, that you provide to the IPSetReferenceStatement to use the address set in a Rule.

', 'refs' => [ 'CreateIPSetResponse$Summary' => '

High-level information about an IPSet, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage an IPSet, and the ARN, that you provide to the IPSetReferenceStatement to use the address set in a Rule.

', 'IPSetSummaries$member' => NULL, ], ], 'IPString' => [ 'base' => NULL, 'refs' => [ 'HTTPRequest$ClientIP' => '

The IP address that the request originated from. If the web ACL is associated with a CloudFront distribution, this is the value of one of the following fields in CloudFront access logs:

  • c-ip, if the viewer did not use an HTTP proxy or a load balancer to send the request

  • x-forwarded-for, if the viewer did use an HTTP proxy or a load balancer to send the request

', ], ], 'ImmunityTimeProperty' => [ 'base' => '

Used for CAPTCHA and challenge token settings. Determines how long a CAPTCHA or challenge timestamp remains valid after WAF updates it for a successful CAPTCHA or challenge response.

', 'refs' => [ 'CaptchaConfig$ImmunityTimeProperty' => '

Determines how long a CAPTCHA timestamp in the token remains valid after the client successfully solves a CAPTCHA puzzle.

', 'ChallengeConfig$ImmunityTimeProperty' => '

Determines how long a challenge timestamp in the token remains valid after the client successfully responds to a challenge.

', ], ], 'InspectionLevel' => [ 'base' => NULL, 'refs' => [ 'AWSManagedRulesBotControlRuleSet$InspectionLevel' => '

The inspection level to use for the Bot Control rule group. The common level is the least expensive. The targeted level includes all common level rules and adds rules with more advanced inspection criteria. For details, see WAF Bot Control rule group in the WAF Developer Guide.

', ], ], 'JA3Fingerprint' => [ 'base' => '

Match against the request\'s JA3 fingerprint. The JA3 fingerprint is a 32-character hash derived from the TLS Client Hello of an incoming request. This fingerprint serves as a unique identifier for the client\'s TLS configuration. WAF calculates and logs this fingerprint for each request that has enough TLS Client Hello information for the calculation. Almost all web requests include this information.

You can use this choice only with a string match ByteMatchStatement with the PositionalConstraint set to EXACTLY.

You can obtain the JA3 fingerprint for client requests from the web ACL logs. If WAF is able to calculate the fingerprint, it includes it in the logs. For information about the logging fields, see Log fields in the WAF Developer Guide.

Provide the JA3 fingerprint string from the logs in your string match statement specification, to match with any future requests that have the same TLS configuration.

', 'refs' => [ 'FieldToMatch$JA3Fingerprint' => '

Match against the request\'s JA3 fingerprint. The JA3 fingerprint is a 32-character hash derived from the TLS Client Hello of an incoming request. This fingerprint serves as a unique identifier for the client\'s TLS configuration. WAF calculates and logs this fingerprint for each request that has enough TLS Client Hello information for the calculation. Almost all web requests include this information.

You can use this choice only with a string match ByteMatchStatement with the PositionalConstraint set to EXACTLY.

You can obtain the JA3 fingerprint for client requests from the web ACL logs. If WAF is able to calculate the fingerprint, it includes it in the logs. For information about the logging fields, see Log fields in the WAF Developer Guide.

Provide the JA3 fingerprint string from the logs in your string match statement specification, to match with any future requests that have the same TLS configuration.

', ], ], 'JsonBody' => [ 'base' => '

Inspect the body of the web request as JSON. The body immediately follows the request headers.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

Use the specifications in this object to indicate which parts of the JSON body to inspect using the rule\'s inspection criteria. WAF inspects only the parts of the JSON that result from the matches that you indicate.

Example JSON: "JsonBody": { "MatchPattern": { "All": {} }, "MatchScope": "ALL" }

', 'refs' => [ 'FieldToMatch$JsonBody' => '

Inspect the request body as JSON. The request body immediately follows the request headers. This is the part of a request that contains any additional data that you want to send to your web server as the HTTP request body, such as data from a form.

A limited amount of the request body is forwarded to WAF for inspection by the underlying host service. For regional resources, the limit is 8 KB (8,192 bytes) and for CloudFront distributions, the limit is 16 KB (16,384 bytes). For CloudFront distributions, you can increase the limit in the web ACL\'s AssociationConfig, for additional processing fees.

For information about how to handle oversized request bodies, see the JsonBody object configuration.

', ], ], 'JsonMatchPattern' => [ 'base' => '

The patterns to look for in the JSON body. WAF inspects the results of these pattern matches against the rule inspection criteria. This is used with the FieldToMatch option JsonBody.

', 'refs' => [ 'JsonBody$MatchPattern' => '

The patterns to look for in the JSON body. WAF inspects the results of these pattern matches against the rule inspection criteria.

', ], ], 'JsonMatchScope' => [ 'base' => NULL, 'refs' => [ 'JsonBody$MatchScope' => '

The parts of the JSON to match against using the MatchPattern. If you specify ALL, WAF matches against keys and values.

All does not require a match to be found in the keys and a match to be found in the values. It requires a match to be found in the keys or the values or both. To require a match in the keys and in the values, use a logical AND statement to combine two match rules, one that inspects the keys and another that inspects the values.

', ], ], 'JsonPointerPath' => [ 'base' => NULL, 'refs' => [ 'JsonPointerPaths$member' => NULL, ], ], 'JsonPointerPaths' => [ 'base' => NULL, 'refs' => [ 'JsonMatchPattern$IncludedPaths' => '

Match only the specified include paths. See also MatchScope in JsonBody.

Provide the include paths using JSON Pointer syntax. For example, "IncludedPaths": ["/dogs/0/name", "/dogs/1/name"]. For information about this syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

You must specify either this setting or the All setting, but not both.

Don\'t use this option to include all paths. Instead, use the All setting.

', ], ], 'Label' => [ 'base' => '

A single label container. This is used as an element of a label array in multiple contexts, for example, in RuleLabels inside a Rule and in Labels inside a SampledHTTPRequest.

', 'refs' => [ 'Labels$member' => NULL, ], ], 'LabelMatchKey' => [ 'base' => NULL, 'refs' => [ 'LabelMatchStatement$Key' => '

The string to match against. The setting you provide for this depends on the match statement\'s Scope setting:

  • If the Scope indicates LABEL, then this specification must include the name and can include any number of preceding namespace specifications and prefix up to providing the fully qualified label name.

  • If the Scope indicates NAMESPACE, then this specification can include any number of contiguous namespace strings, and can include the entire label namespace prefix from the rule group or web ACL where the label originates.

Labels are case sensitive and components of a label must be separated by colon, for example NS1:NS2:name.

', ], ], 'LabelMatchScope' => [ 'base' => NULL, 'refs' => [ 'LabelMatchStatement$Scope' => '

Specify whether you want to match using the label name or just the namespace.

', ], ], 'LabelMatchStatement' => [ 'base' => '

A rule statement to match against labels that have been added to the web request by rules that have already run in the web ACL.

The label match statement provides the label or namespace string to search for. The label string can represent a part or all of the fully qualified label name that had been added to the web request. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label. If you do not provide the fully qualified name in your label match string, WAF performs the search for labels that were added in the same context as the label match statement.

', 'refs' => [ 'Statement$LabelMatchStatement' => '

A rule statement to match against labels that have been added to the web request by rules that have already run in the web ACL.

The label match statement provides the label or namespace string to search for. The label string can represent a part or all of the fully qualified label name that had been added to the web request. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label. If you do not provide the fully qualified name in your label match string, WAF performs the search for labels that were added in the same context as the label match statement.

', ], ], 'LabelName' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedRuleGroupResponse$LabelNamespace' => '

The label namespace prefix for this rule group. All labels added by rules in this rule group have this prefix.

  • The syntax for the label namespace prefix for a managed rule group is the following:

    awswaf:managed:<vendor>:<rule group name>:

  • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

    <label namespace>:<label from rule>

', 'Label$Name' => '

The label string.

', 'LabelNameCondition$LabelName' => '

The label name that a log record must contain in order to meet the condition. This must be a fully qualified label name. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.

', 'LabelSummary$Name' => '

An individual label specification.

', 'ManagedRuleSet$LabelNamespace' => '

The label namespace prefix for the managed rule groups that are offered to customers from this managed rule set. All labels that are added by rules in the managed rule group have this prefix.

  • The syntax for the label namespace prefix for a managed rule group is the following:

    awswaf:managed:<vendor>:<rule group name>:

  • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

    <label namespace>:<label from rule>

', 'ManagedRuleSetSummary$LabelNamespace' => '

The label namespace prefix for the managed rule groups that are offered to customers from this managed rule set. All labels that are added by rules in the managed rule group have this prefix.

  • The syntax for the label namespace prefix for a managed rule group is the following:

    awswaf:managed:<vendor>:<rule group name>:

  • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

    <label namespace>:<label from rule>

', 'RuleGroup$LabelNamespace' => '

The label namespace prefix for this rule group. All labels added by rules in this rule group have this prefix.

  • The syntax for the label namespace prefix for your rule groups is the following:

    awswaf:<account ID>:rulegroup:<rule group name>:

  • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

    <label namespace>:<label from rule>

', 'WebACL$LabelNamespace' => '

The label namespace prefix for this web ACL. All labels added by rules in this web ACL have this prefix.

  • The syntax for the label namespace prefix for a web ACL is the following:

    awswaf:<account ID>:webacl:<web ACL name>:

  • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

    <label namespace>:<label from rule>

', ], ], 'LabelNameCondition' => [ 'base' => '

A single label name condition for a Condition in a logging filter.

', 'refs' => [ 'Condition$LabelNameCondition' => '

A single label name condition. This is the fully qualified label name that a log record must contain in order to meet the condition. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.

', ], ], 'LabelNamespace' => [ 'base' => NULL, 'refs' => [ 'RateLimitLabelNamespace$Namespace' => '

The namespace to use for aggregation.

', ], ], 'LabelSummaries' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedRuleGroupResponse$AvailableLabels' => '

The labels that one or more rules in this rule group add to matching web requests. These labels are defined in the RuleLabels for a Rule.

', 'DescribeManagedRuleGroupResponse$ConsumedLabels' => '

The labels that one or more rules in this rule group match against in label match statements. These labels are defined in a LabelMatchStatement specification, in the Statement definition of a rule.

', 'RuleGroup$AvailableLabels' => '

The labels that one or more rules in this rule group add to matching web requests. These labels are defined in the RuleLabels for a Rule.

', 'RuleGroup$ConsumedLabels' => '

The labels that one or more rules in this rule group match against in label match statements. These labels are defined in a LabelMatchStatement specification, in the Statement definition of a rule.

', ], ], 'LabelSummary' => [ 'base' => '

List of labels used by one or more of the rules of a RuleGroup. This summary object is used for the following rule group lists:

  • AvailableLabels - Labels that rules add to matching requests. These labels are defined in the RuleLabels for a Rule.

  • ConsumedLabels - Labels that rules match against. These labels are defined in a LabelMatchStatement specification, in the Statement definition of a rule.

', 'refs' => [ 'LabelSummaries$member' => NULL, ], ], 'Labels' => [ 'base' => NULL, 'refs' => [ 'Rule$RuleLabels' => '

Labels to apply to web requests that match the rule match statement. WAF applies fully qualified labels to matching web requests. A fully qualified label is the concatenation of a label namespace and a rule label. The rule\'s rule group or web ACL defines the label namespace.

Rules that run after this rule in the web ACL can match against these labels using a LabelMatchStatement.

For each label, provide a case-sensitive string containing optional namespaces and a label name, according to the following guidelines:

  • Separate each component of the label with a colon.

  • Each namespace or name can have up to 128 characters.

  • You can specify up to 5 namespaces in a label.

  • Don\'t use the following reserved words in your label specification: aws, waf, managed, rulegroup, webacl, regexpatternset, or ipset.

For example, myLabelName or nameSpace1:nameSpace2:myLabelName.

', 'SampledHTTPRequest$Labels' => '

Labels applied to the web request by matching rules. WAF applies fully qualified labels to matching web requests. A fully qualified label is the concatenation of a label namespace and a rule label. The rule\'s rule group or web ACL defines the label namespace.

For example, awswaf:111122223333:myRuleGroup:testRules:testNS1:testNS2:labelNameA or awswaf:managed:aws:managed-rule-set:header:encoding:utf8.

', ], ], 'ListAPIKeysRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAPIKeysResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAvailableManagedRuleGroupVersionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAvailableManagedRuleGroupVersionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAvailableManagedRuleGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAvailableManagedRuleGroupsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListIPSetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListIPSetsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListLoggingConfigurationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListLoggingConfigurationsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListManagedRuleSetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListManagedRuleSetsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListMaxItems' => [ 'base' => NULL, 'refs' => [ 'GetSampledRequestsRequest$MaxItems' => '

The number of requests that you want WAF to return from among the first 5,000 requests that your Amazon Web Services resource received during the time range. If your resource received fewer requests than the value of MaxItems, GetSampledRequests returns information about all of them.

', ], ], 'ListMobileSdkReleasesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListMobileSdkReleasesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListRegexPatternSetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListRegexPatternSetsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListResourcesForWebACLRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListResourcesForWebACLResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListRuleGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListRuleGroupsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListTagsForResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListTagsForResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListWebACLsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListWebACLsResponse' => [ 'base' => NULL, 'refs' => [], ], 'LockToken' => [ 'base' => NULL, 'refs' => [ 'DeleteFirewallManagerRuleGroupsRequest$WebACLLockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'DeleteFirewallManagerRuleGroupsResponse$NextWebACLLockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'DeleteIPSetRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'DeleteRegexPatternSetRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'DeleteRuleGroupRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'DeleteWebACLRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'GetIPSetResponse$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'GetManagedRuleSetResponse$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'GetRegexPatternSetResponse$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'GetRuleGroupResponse$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'GetWebACLResponse$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'IPSetSummary$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'ManagedRuleSetSummary$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'PutManagedRuleSetVersionsRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'PutManagedRuleSetVersionsResponse$NextLockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'RegexPatternSetSummary$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'RuleGroupSummary$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'UpdateIPSetRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'UpdateIPSetResponse$NextLockToken' => '

A token used for optimistic locking. WAF returns this token to your update requests. You use NextLockToken in the same manner as you use LockToken.

', 'UpdateManagedRuleSetVersionExpiryDateRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'UpdateManagedRuleSetVersionExpiryDateResponse$NextLockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'UpdateRegexPatternSetRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'UpdateRegexPatternSetResponse$NextLockToken' => '

A token used for optimistic locking. WAF returns this token to your update requests. You use NextLockToken in the same manner as you use LockToken.

', 'UpdateRuleGroupRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'UpdateRuleGroupResponse$NextLockToken' => '

A token used for optimistic locking. WAF returns this token to your update requests. You use NextLockToken in the same manner as you use LockToken.

', 'UpdateWebACLRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'UpdateWebACLResponse$NextLockToken' => '

A token used for optimistic locking. WAF returns this token to your update requests. You use NextLockToken in the same manner as you use LockToken.

', 'WebACLSummary$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', ], ], 'LogDestinationConfigs' => [ 'base' => NULL, 'refs' => [ 'LoggingConfiguration$LogDestinationConfigs' => '

The logging destination configuration that you want to associate with the web ACL.

You can associate one logging destination to a web ACL.

', ], ], 'LoggingConfiguration' => [ 'base' => '

Defines an association between logging destinations and a web ACL resource, for logging from WAF. As part of the association, you can specify parts of the standard logging fields to keep out of the logs and you can specify filters so that you log only a subset of the logging records.

You can define one logging destination per web ACL.

You can access information about the traffic that WAF inspects using the following steps:

  1. Create your logging destination. You can use an Amazon CloudWatch Logs log group, an Amazon Simple Storage Service (Amazon S3) bucket, or an Amazon Kinesis Data Firehose.

    The name that you give the destination must start with aws-waf-logs-. Depending on the type of destination, you might need to configure additional settings or permissions.

    For configuration requirements and pricing information for each destination type, see Logging web ACL traffic in the WAF Developer Guide.

  2. Associate your logging destination to your web ACL using a PutLoggingConfiguration request.

When you successfully enable logging using a PutLoggingConfiguration request, WAF creates an additional role or policy that is required to write logs to the logging destination. For an Amazon CloudWatch Logs log group, WAF creates a resource policy on the log group. For an Amazon S3 bucket, WAF creates a bucket policy. For an Amazon Kinesis Data Firehose, WAF creates a service-linked role.

For additional information about web ACL logging, see Logging web ACL traffic information in the WAF Developer Guide.

', 'refs' => [ 'GetLoggingConfigurationResponse$LoggingConfiguration' => '

The LoggingConfiguration for the specified web ACL.

', 'LoggingConfigurations$member' => NULL, 'PutLoggingConfigurationRequest$LoggingConfiguration' => '

', 'PutLoggingConfigurationResponse$LoggingConfiguration' => '

', ], ], 'LoggingConfigurations' => [ 'base' => NULL, 'refs' => [ 'ListLoggingConfigurationsResponse$LoggingConfigurations' => '

Array of logging configurations. If you specified a Limit in your request, this might not be the full list.

', ], ], 'LoggingFilter' => [ 'base' => '

Filtering that specifies which web requests are kept in the logs and which are dropped, defined for a web ACL\'s LoggingConfiguration.

You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.

', 'refs' => [ 'LoggingConfiguration$LoggingFilter' => '

Filtering that specifies which web requests are kept in the logs and which are dropped. You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.

', ], ], 'LoginPathString' => [ 'base' => NULL, 'refs' => [ 'ManagedRuleGroupConfig$LoginPath' => '

Instead of this setting, provide your configuration under AWSManagedRulesATPRuleSet.

', ], ], 'ManagedProductDescriptor' => [ 'base' => '

The properties of a managed product, such as an Amazon Web Services Managed Rules rule group or an Amazon Web Services Marketplace managed rule group.

', 'refs' => [ 'ManagedProductDescriptors$member' => NULL, ], ], 'ManagedProductDescriptors' => [ 'base' => NULL, 'refs' => [ 'DescribeAllManagedProductsResponse$ManagedProducts' => '

High-level information for the Amazon Web Services Managed Rules rule groups and Amazon Web Services Marketplace managed rule groups.

', 'DescribeManagedProductsByVendorResponse$ManagedProducts' => '

High-level information for the managed rule groups owned by the specified vendor.

', ], ], 'ManagedRuleGroupConfig' => [ 'base' => '

Additional information that\'s used by a managed rule group. Many managed rule groups don\'t require this.

The rule groups used for intelligent threat mitigation require additional configuration:

  • Use the AWSManagedRulesACFPRuleSet configuration object to configure the account creation fraud prevention managed rule group. The configuration includes the registration and sign-up pages of your application and the locations in the account creation request payload of data, such as the user email and phone number fields.

  • Use the AWSManagedRulesATPRuleSet configuration object to configure the account takeover prevention managed rule group. The configuration includes the sign-in page of your application and the locations in the login request payload of data such as the username and password.

  • Use the AWSManagedRulesBotControlRuleSet configuration object to configure the protection level that you want the Bot Control rule group to use.

For example specifications, see the examples section of CreateWebACL.

', 'refs' => [ 'ManagedRuleGroupConfigs$member' => NULL, ], ], 'ManagedRuleGroupConfigs' => [ 'base' => NULL, 'refs' => [ 'ManagedRuleGroupStatement$ManagedRuleGroupConfigs' => '

Additional information that\'s used by a managed rule group. Many managed rule groups don\'t require this.

The rule groups used for intelligent threat mitigation require additional configuration:

  • Use the AWSManagedRulesACFPRuleSet configuration object to configure the account creation fraud prevention managed rule group. The configuration includes the registration and sign-up pages of your application and the locations in the account creation request payload of data, such as the user email and phone number fields.

  • Use the AWSManagedRulesATPRuleSet configuration object to configure the account takeover prevention managed rule group. The configuration includes the sign-in page of your application and the locations in the login request payload of data such as the username and password.

  • Use the AWSManagedRulesBotControlRuleSet configuration object to configure the protection level that you want the Bot Control rule group to use.

', ], ], 'ManagedRuleGroupStatement' => [ 'base' => '

A rule statement used to run the rules that are defined in a managed rule group. To use this, provide the vendor name and the name of the rule group in this statement. You can retrieve the required names by calling ListAvailableManagedRuleGroups.

You cannot nest a ManagedRuleGroupStatement, for example for use inside a NotStatement or OrStatement. You cannot use a managed rule group inside another rule group. You can only reference a managed rule group as a top-level statement within a rule that you define in a web ACL.

You are charged additional fees when you use the WAF Bot Control managed rule group AWSManagedRulesBotControlRuleSet, the WAF Fraud Control account takeover prevention (ATP) managed rule group AWSManagedRulesATPRuleSet, or the WAF Fraud Control account creation fraud prevention (ACFP) managed rule group AWSManagedRulesACFPRuleSet. For more information, see WAF Pricing.

', 'refs' => [ 'FirewallManagerStatement$ManagedRuleGroupStatement' => '

A statement used by Firewall Manager to run the rules that are defined in a managed rule group. This is managed by Firewall Manager for an Firewall Manager WAF policy.

', 'Statement$ManagedRuleGroupStatement' => '

A rule statement used to run the rules that are defined in a managed rule group. To use this, provide the vendor name and the name of the rule group in this statement. You can retrieve the required names by calling ListAvailableManagedRuleGroups.

You cannot nest a ManagedRuleGroupStatement, for example for use inside a NotStatement or OrStatement. You cannot use a managed rule group inside another rule group. You can only reference a managed rule group as a top-level statement within a rule that you define in a web ACL.

You are charged additional fees when you use the WAF Bot Control managed rule group AWSManagedRulesBotControlRuleSet, the WAF Fraud Control account takeover prevention (ATP) managed rule group AWSManagedRulesATPRuleSet, or the WAF Fraud Control account creation fraud prevention (ACFP) managed rule group AWSManagedRulesACFPRuleSet. For more information, see WAF Pricing.

', ], ], 'ManagedRuleGroupSummaries' => [ 'base' => NULL, 'refs' => [ 'ListAvailableManagedRuleGroupsResponse$ManagedRuleGroups' => '

Array of managed rule groups that you can use. If you specified a Limit in your request, this might not be the full list.

', ], ], 'ManagedRuleGroupSummary' => [ 'base' => '

High-level information about a managed rule group, returned by ListAvailableManagedRuleGroups. This provides information like the name and vendor name, that you provide when you add a ManagedRuleGroupStatement to a web ACL. Managed rule groups include Amazon Web Services Managed Rules rule groups and Amazon Web Services Marketplace managed rule groups. To use any Amazon Web Services Marketplace managed rule group, first subscribe to the rule group through Amazon Web Services Marketplace.

', 'refs' => [ 'ManagedRuleGroupSummaries$member' => NULL, ], ], 'ManagedRuleGroupVersion' => [ 'base' => '

Describes a single version of a managed rule group.

', 'refs' => [ 'ManagedRuleGroupVersions$member' => NULL, ], ], 'ManagedRuleGroupVersions' => [ 'base' => NULL, 'refs' => [ 'ListAvailableManagedRuleGroupVersionsResponse$Versions' => '

The versions that are currently available for the specified managed rule group. If you specified a Limit in your request, this might not be the full list.

', ], ], 'ManagedRuleSet' => [ 'base' => '

A set of rules that is managed by Amazon Web Services and Amazon Web Services Marketplace sellers to provide versioned managed rule groups for customers of WAF.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

', 'refs' => [ 'GetManagedRuleSetResponse$ManagedRuleSet' => '

The managed rule set that you requested.

', ], ], 'ManagedRuleSetSummaries' => [ 'base' => NULL, 'refs' => [ 'ListManagedRuleSetsResponse$ManagedRuleSets' => '

Your managed rule sets. If you specified a Limit in your request, this might not be the full list.

', ], ], 'ManagedRuleSetSummary' => [ 'base' => '

High-level information for a managed rule set.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

', 'refs' => [ 'ManagedRuleSetSummaries$member' => NULL, ], ], 'ManagedRuleSetVersion' => [ 'base' => '

Information for a single version of a managed rule set.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

', 'refs' => [ 'PublishedVersions$value' => NULL, ], ], 'MapMatchScope' => [ 'base' => NULL, 'refs' => [ 'Cookies$MatchScope' => '

The parts of the cookies to inspect with the rule inspection criteria. If you specify ALL, WAF inspects both keys and values.

All does not require a match to be found in the keys and a match to be found in the values. It requires a match to be found in the keys or the values or both. To require a match in the keys and in the values, use a logical AND statement to combine two match rules, one that inspects the keys and another that inspects the values.

', 'Headers$MatchScope' => '

The parts of the headers to match with the rule inspection criteria. If you specify ALL, WAF inspects both keys and values.

All does not require a match to be found in the keys and a match to be found in the values. It requires a match to be found in the keys or the values or both. To require a match in the keys and in the values, use a logical AND statement to combine two match rules, one that inspects the keys and another that inspects the values.

', ], ], 'Method' => [ 'base' => '

Inspect the HTTP method of the web request. The method indicates the type of operation that the request is asking the origin to perform.

This is used in the FieldToMatch specification for some web request component types.

JSON specification: "Method": {}

', 'refs' => [ 'FieldToMatch$Method' => '

Inspect the HTTP method. The method indicates the type of operation that the request is asking the origin to perform.

', ], ], 'MetricName' => [ 'base' => NULL, 'refs' => [ 'GetSampledRequestsRequest$RuleMetricName' => '

The metric name assigned to the Rule or RuleGroup dimension for which you want a sample of requests.

', 'VisibilityConfig$MetricName' => '

A name of the Amazon CloudWatch metric dimension. The name can contain only the characters: A-Z, a-z, 0-9, - (hyphen), and _ (underscore). The name can be from one to 128 characters long. It can\'t contain whitespace or metric names that are reserved for WAF, for example All and Default_Action.

', ], ], 'MobileSdkRelease' => [ 'base' => '

Information for a release of the mobile SDK, including release notes and tags.

The mobile SDK is not generally available. Customers who have access to the mobile SDK can use it to establish and manage WAF tokens for use in HTTP(S) requests from a mobile device to WAF. For more information, see WAF client application integration in the WAF Developer Guide.

', 'refs' => [ 'GetMobileSdkReleaseResponse$MobileSdkRelease' => '

Information for a specified SDK release, including release notes and tags.

', ], ], 'NextMarker' => [ 'base' => NULL, 'refs' => [ 'ListAPIKeysRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListAPIKeysResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListAvailableManagedRuleGroupVersionsRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListAvailableManagedRuleGroupVersionsResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListAvailableManagedRuleGroupsRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListAvailableManagedRuleGroupsResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListIPSetsRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListIPSetsResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListLoggingConfigurationsRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListLoggingConfigurationsResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListManagedRuleSetsRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListManagedRuleSetsResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListMobileSdkReleasesRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListMobileSdkReleasesResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListRegexPatternSetsRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListRegexPatternSetsResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListRuleGroupsRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListRuleGroupsResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListTagsForResourceRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListTagsForResourceResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListWebACLsRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListWebACLsResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', ], ], 'NoneAction' => [ 'base' => '

Specifies that WAF should do nothing. This is used for the OverrideAction setting on a Rule when the rule uses a rule group reference statement.

This is used in the context of other settings, for example to specify values for RuleAction and web ACL DefaultAction.

JSON specification: "None": {}

', 'refs' => [ 'OverrideAction$None' => '

Don\'t override the rule group evaluation result. This is the most common setting.

', ], ], 'NotStatement' => [ 'base' => '

A logical rule statement used to negate the results of another rule statement. You provide one Statement within the NotStatement.

', 'refs' => [ 'Statement$NotStatement' => '

A logical rule statement used to negate the results of another rule statement. You provide one Statement within the NotStatement.

', ], ], 'OrStatement' => [ 'base' => '

A logical rule statement used to combine other rule statements with OR logic. You provide more than one Statement within the OrStatement.

', 'refs' => [ 'Statement$OrStatement' => '

A logical rule statement used to combine other rule statements with OR logic. You provide more than one Statement within the OrStatement.

', ], ], 'OutputUrl' => [ 'base' => NULL, 'refs' => [ 'GetWebACLResponse$ApplicationIntegrationURL' => '

The URL to use in SDK integrations with Amazon Web Services managed rule groups. For example, you can use the integration SDKs with the account takeover prevention managed rule group AWSManagedRulesATPRuleSet and the account creation fraud prevention managed rule group AWSManagedRulesACFPRuleSet. This is only populated if you are using a rule group in your web ACL that integrates with your applications in this way. For more information, see WAF client application integration in the WAF Developer Guide.

', 'ListAPIKeysResponse$ApplicationIntegrationURL' => '

The CAPTCHA application integration URL, for use in your JavaScript implementation.

', ], ], 'OverrideAction' => [ 'base' => '

The action to use in the place of the action that results from the rule group evaluation. Set the override action to none to leave the result of the rule group alone. Set it to count to override the result to count only.

You can only use this for rule statements that reference a rule group, like RuleGroupReferenceStatement and ManagedRuleGroupStatement.

This option is usually set to none. It does not affect how the rules in the rule group are evaluated. If you want the rules in the rule group to only count matches, do not use this and instead use the rule action override option, with Count action, in your rule group reference statement settings.

', 'refs' => [ 'FirewallManagerRuleGroup$OverrideAction' => '

The action to use in the place of the action that results from the rule group evaluation. Set the override action to none to leave the result of the rule group alone. Set it to count to override the result to count only.

You can only use this for rule statements that reference a rule group, like RuleGroupReferenceStatement and ManagedRuleGroupStatement.

This option is usually set to none. It does not affect how the rules in the rule group are evaluated. If you want the rules in the rule group to only count matches, do not use this and instead use the rule action override option, with Count action, in your rule group reference statement settings.

', 'Rule$OverrideAction' => '

The action to use in the place of the action that results from the rule group evaluation. Set the override action to none to leave the result of the rule group alone. Set it to count to override the result to count only.

You can only use this for rule statements that reference a rule group, like RuleGroupReferenceStatement and ManagedRuleGroupStatement.

This option is usually set to none. It does not affect how the rules in the rule group are evaluated. If you want the rules in the rule group to only count matches, do not use this and instead use the rule action override option, with Count action, in your rule group reference statement settings.

', ], ], 'OversizeHandling' => [ 'base' => NULL, 'refs' => [ 'Body$OversizeHandling' => '

What WAF should do if the body is larger than WAF can inspect. WAF does not support inspecting the entire contents of the web request body if the body exceeds the limit for the resource type. If the body is larger than the limit, the underlying host service only forwards the contents that are below the limit to WAF for inspection.

The default limit is 8 KB (8,192 bytes) for regional resources and 16 KB (16,384 bytes) for CloudFront distributions. For CloudFront distributions, you can increase the limit in the web ACL AssociationConfig, for additional processing fees.

The options for oversize handling are the following:

  • CONTINUE - Inspect the available body contents normally, according to the rule inspection criteria.

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

You can combine the MATCH or NO_MATCH settings for oversize handling with your rule and web ACL action settings, so that you block any request whose body is over the limit.

Default: CONTINUE

', 'Cookies$OversizeHandling' => '

What WAF should do if the cookies of the request are more numerous or larger than WAF can inspect. WAF does not support inspecting the entire contents of request cookies when they exceed 8 KB (8192 bytes) or 200 total cookies. The underlying host service forwards a maximum of 200 cookies and at most 8 KB of cookie contents to WAF.

The options for oversize handling are the following:

  • CONTINUE - Inspect the available cookies normally, according to the rule inspection criteria.

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

', 'HeaderOrder$OversizeHandling' => '

What WAF should do if the headers of the request are more numerous or larger than WAF can inspect. WAF does not support inspecting the entire contents of request headers when they exceed 8 KB (8192 bytes) or 200 total headers. The underlying host service forwards a maximum of 200 headers and at most 8 KB of header contents to WAF.

The options for oversize handling are the following:

  • CONTINUE - Inspect the available headers normally, according to the rule inspection criteria.

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

', 'Headers$OversizeHandling' => '

What WAF should do if the headers of the request are more numerous or larger than WAF can inspect. WAF does not support inspecting the entire contents of request headers when they exceed 8 KB (8192 bytes) or 200 total headers. The underlying host service forwards a maximum of 200 headers and at most 8 KB of header contents to WAF.

The options for oversize handling are the following:

  • CONTINUE - Inspect the available headers normally, according to the rule inspection criteria.

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

', 'JsonBody$OversizeHandling' => '

What WAF should do if the body is larger than WAF can inspect. WAF does not support inspecting the entire contents of the web request body if the body exceeds the limit for the resource type. If the body is larger than the limit, the underlying host service only forwards the contents that are below the limit to WAF for inspection.

The default limit is 8 KB (8,192 bytes) for regional resources and 16 KB (16,384 bytes) for CloudFront distributions. For CloudFront distributions, you can increase the limit in the web ACL AssociationConfig, for additional processing fees.

The options for oversize handling are the following:

  • CONTINUE - Inspect the available body contents normally, according to the rule inspection criteria.

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

You can combine the MATCH or NO_MATCH settings for oversize handling with your rule and web ACL action settings, so that you block any request whose body is over the limit.

Default: CONTINUE

', ], ], 'PaginationLimit' => [ 'base' => NULL, 'refs' => [ 'ListAPIKeysRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListAvailableManagedRuleGroupVersionsRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListAvailableManagedRuleGroupsRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListIPSetsRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListLoggingConfigurationsRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListManagedRuleSetsRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListMobileSdkReleasesRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListRegexPatternSetsRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListRuleGroupsRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListTagsForResourceRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListWebACLsRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', ], ], 'ParameterExceptionField' => [ 'base' => NULL, 'refs' => [ 'WAFInvalidParameterException$Field' => '

The settings where the invalid parameter was found.

', ], ], 'ParameterExceptionParameter' => [ 'base' => NULL, 'refs' => [ 'WAFInvalidParameterException$Parameter' => '

The invalid parameter that resulted in the exception.

', ], ], 'PasswordField' => [ 'base' => '

The name of the field in the request payload that contains your customer\'s password.

This data type is used in the RequestInspection and RequestInspectionACFP data types.

', 'refs' => [ 'ManagedRuleGroupConfig$PasswordField' => '

Instead of this setting, provide your configuration under the request inspection configuration for AWSManagedRulesATPRuleSet or AWSManagedRulesACFPRuleSet.

', 'RequestInspection$PasswordField' => '

The name of the field in the request payload that contains your customer\'s password.

How you specify this depends on the request inspection payload type.

  • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "password": "THE_PASSWORD" } }, the password field specification is /form/password.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with the input element named password1, the password field specification is password1.

', 'RequestInspectionACFP$PasswordField' => '

The name of the field in the request payload that contains your customer\'s password.

How you specify this depends on the request inspection payload type.

  • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "password": "THE_PASSWORD" } }, the password field specification is /form/password.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with the input element named password1, the password field specification is password1.

', ], ], 'PayloadType' => [ 'base' => NULL, 'refs' => [ 'ManagedRuleGroupConfig$PayloadType' => '

Instead of this setting, provide your configuration under the request inspection configuration for AWSManagedRulesATPRuleSet or AWSManagedRulesACFPRuleSet.

', 'RequestInspection$PayloadType' => '

The payload type for your login endpoint, either JSON or form encoded.

', 'RequestInspectionACFP$PayloadType' => '

The payload type for your account creation endpoint, either JSON or form encoded.

', ], ], 'PhoneNumberField' => [ 'base' => '

The name of a field in the request payload that contains part or all of your customer\'s primary phone number.

This data type is used in the RequestInspectionACFP data type.

', 'refs' => [ 'PhoneNumberFields$member' => NULL, ], ], 'PhoneNumberFields' => [ 'base' => NULL, 'refs' => [ 'RequestInspectionACFP$PhoneNumberFields' => '

The names of the fields in the request payload that contain your customer\'s primary phone number.

Order the phone number fields in the array exactly as they are ordered in the request payload.

How you specify the phone number fields depends on the request inspection payload type.

  • For JSON payloads, specify the field identifiers in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "primaryphoneline1": "THE_PHONE1", "primaryphoneline2": "THE_PHONE2", "primaryphoneline3": "THE_PHONE3" } }, the phone number field identifiers are /form/primaryphoneline1, /form/primaryphoneline2, and /form/primaryphoneline3.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with input elements named primaryphoneline1, primaryphoneline2, and primaryphoneline3, the phone number field identifiers are primaryphoneline1, primaryphoneline2, and primaryphoneline3.

', ], ], 'Platform' => [ 'base' => NULL, 'refs' => [ 'GenerateMobileSdkReleaseUrlRequest$Platform' => '

The device platform.

', 'GetMobileSdkReleaseRequest$Platform' => '

The device platform.

', 'ListMobileSdkReleasesRequest$Platform' => '

The device platform to retrieve the list for.

', ], ], 'PolicyString' => [ 'base' => NULL, 'refs' => [ 'GetPermissionPolicyResponse$Policy' => '

The IAM policy that is attached to the specified rule group.

', 'PutPermissionPolicyRequest$Policy' => '

The policy to attach to the specified rule group.

The policy specifications must conform to the following:

  • The policy must be composed using IAM Policy version 2012-10-17.

  • The policy must include specifications for Effect, Action, and Principal.

  • Effect must specify Allow.

  • Action must specify wafv2:CreateWebACL, wafv2:UpdateWebACL, and wafv2:PutFirewallManagerRuleGroups and may optionally specify wafv2:GetRuleGroup. WAF rejects any extra actions or wildcard actions in the policy.

  • The policy must not include a Resource parameter.

For more information, see IAM Policies.

', ], ], 'PopulationSize' => [ 'base' => NULL, 'refs' => [ 'GetSampledRequestsResponse$PopulationSize' => '

The total number of requests from which GetSampledRequests got a sample of MaxItems requests. If PopulationSize is less than MaxItems, the sample includes every request that your Amazon Web Services resource received during the specified time range.

', ], ], 'PositionalConstraint' => [ 'base' => NULL, 'refs' => [ 'ByteMatchStatement$PositionalConstraint' => '

The area within the portion of the web request that you want WAF to search for SearchString. Valid values include the following:

CONTAINS

The specified part of the web request must include the value of SearchString, but the location doesn\'t matter.

CONTAINS_WORD

The specified part of the web request must include the value of SearchString, and SearchString must contain only alphanumeric characters or underscore (A-Z, a-z, 0-9, or _). In addition, SearchString must be a word, which means that both of the following are true:

  • SearchString is at the beginning of the specified part of the web request or is preceded by a character other than an alphanumeric character or underscore (_). Examples include the value of a header and ;BadBot.

  • SearchString is at the end of the specified part of the web request or is followed by a character other than an alphanumeric character or underscore (_), for example, BadBot; and -BadBot;.

EXACTLY

The value of the specified part of the web request must exactly match the value of SearchString.

STARTS_WITH

The value of SearchString must appear at the beginning of the specified part of the web request.

ENDS_WITH

The value of SearchString must appear at the end of the specified part of the web request.

', ], ], 'ProductDescription' => [ 'base' => NULL, 'refs' => [ 'ManagedProductDescriptor$ProductDescription' => '

A short description of the managed rule group.

', ], ], 'ProductId' => [ 'base' => NULL, 'refs' => [ 'ManagedProductDescriptor$ProductId' => '

A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', ], ], 'ProductLink' => [ 'base' => NULL, 'refs' => [ 'ManagedProductDescriptor$ProductLink' => '

For Amazon Web Services Marketplace managed rule groups only, the link to the rule group product page.

', ], ], 'ProductTitle' => [ 'base' => NULL, 'refs' => [ 'ManagedProductDescriptor$ProductTitle' => '

The display name for the managed rule group. For example, Anonymous IP list or Account takeover prevention.

', ], ], 'PublishedVersions' => [ 'base' => NULL, 'refs' => [ 'ManagedRuleSet$PublishedVersions' => '

The versions of this managed rule set that are available for use by customers.

', ], ], 'PutLoggingConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'PutLoggingConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'PutManagedRuleSetVersionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'PutManagedRuleSetVersionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'PutPermissionPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'PutPermissionPolicyResponse' => [ 'base' => NULL, 'refs' => [], ], 'QueryString' => [ 'base' => '

Inspect the query string of the web request. This is the part of a URL that appears after a ? character, if any.

This is used in the FieldToMatch specification for some web request component types.

JSON specification: "QueryString": {}

', 'refs' => [ 'FieldToMatch$QueryString' => '

Inspect the query string. This is the part of a URL that appears after a ? character, if any.

', ], ], 'RateBasedStatement' => [ 'base' => '

A rate-based rule counts incoming requests and rate limits requests when they are coming at too fast a rate. The rule categorizes requests according to your aggregation criteria, collects them into aggregation instances, and counts and rate limits the requests for each instance.

You can specify individual aggregation keys, like IP address or HTTP method. You can also specify aggregation key combinations, like IP address and HTTP method, or HTTP method, query argument, and cookie.

Each unique set of values for the aggregation keys that you specify is a separate aggregation instance, with the value from each key contributing to the aggregation instance definition.

For example, assume the rule evaluates web requests with the following IP address and HTTP method values:

  • IP address 10.1.1.1, HTTP method POST

  • IP address 10.1.1.1, HTTP method GET

  • IP address 127.0.0.0, HTTP method POST

  • IP address 10.1.1.1, HTTP method GET

The rule would create different aggregation instances according to your aggregation criteria, for example:

  • If the aggregation criteria is just the IP address, then each individual address is an aggregation instance, and WAF counts requests separately for each. The aggregation instances and request counts for our example would be the following:

    • IP address 10.1.1.1: count 3

    • IP address 127.0.0.0: count 1

  • If the aggregation criteria is HTTP method, then each individual HTTP method is an aggregation instance. The aggregation instances and request counts for our example would be the following:

    • HTTP method POST: count 2

    • HTTP method GET: count 2

  • If the aggregation criteria is IP address and HTTP method, then each IP address and each HTTP method would contribute to the combined aggregation instance. The aggregation instances and request counts for our example would be the following:

    • IP address 10.1.1.1, HTTP method POST: count 1

    • IP address 10.1.1.1, HTTP method GET: count 2

    • IP address 127.0.0.0, HTTP method POST: count 1

For any n-tuple of aggregation keys, each unique combination of values for the keys defines a separate aggregation instance, which WAF counts and rate-limits individually.

You can optionally nest another statement inside the rate-based statement, to narrow the scope of the rule so that it only counts and rate limits requests that match the nested statement. You can use this nested scope-down statement in conjunction with your aggregation key specifications or you can just count and rate limit all requests that match the scope-down statement, without additional aggregation. When you choose to just manage all requests that match a scope-down statement, the aggregation instance is singular for the rule.

You cannot nest a RateBasedStatement inside another statement, for example inside a NotStatement or OrStatement. You can define a RateBasedStatement inside a web ACL and inside a rule group.

For additional information about the options, see Rate limiting web requests using rate-based rules in the WAF Developer Guide.

If you only aggregate on the individual IP address or forwarded IP address, you can retrieve the list of IP addresses that WAF is currently rate limiting for a rule through the API call GetRateBasedStatementManagedKeys. This option is not available for other aggregation configurations.

WAF tracks and manages web requests separately for each instance of a rate-based rule that you use. For example, if you provide the same rate-based rule settings in two web ACLs, each of the two rule statements represents a separate instance of the rate-based rule and gets its own tracking and management by WAF. If you define a rate-based rule inside a rule group, and then use that rule group in multiple places, each use creates a separate instance of the rate-based rule that gets its own tracking and management by WAF.

', 'refs' => [ 'Statement$RateBasedStatement' => '

A rate-based rule counts incoming requests and rate limits requests when they are coming at too fast a rate. The rule categorizes requests according to your aggregation criteria, collects them into aggregation instances, and counts and rate limits the requests for each instance.

You can specify individual aggregation keys, like IP address or HTTP method. You can also specify aggregation key combinations, like IP address and HTTP method, or HTTP method, query argument, and cookie.

Each unique set of values for the aggregation keys that you specify is a separate aggregation instance, with the value from each key contributing to the aggregation instance definition.

For example, assume the rule evaluates web requests with the following IP address and HTTP method values:

  • IP address 10.1.1.1, HTTP method POST

  • IP address 10.1.1.1, HTTP method GET

  • IP address 127.0.0.0, HTTP method POST

  • IP address 10.1.1.1, HTTP method GET

The rule would create different aggregation instances according to your aggregation criteria, for example:

  • If the aggregation criteria is just the IP address, then each individual address is an aggregation instance, and WAF counts requests separately for each. The aggregation instances and request counts for our example would be the following:

    • IP address 10.1.1.1: count 3

    • IP address 127.0.0.0: count 1

  • If the aggregation criteria is HTTP method, then each individual HTTP method is an aggregation instance. The aggregation instances and request counts for our example would be the following:

    • HTTP method POST: count 2

    • HTTP method GET: count 2

  • If the aggregation criteria is IP address and HTTP method, then each IP address and each HTTP method would contribute to the combined aggregation instance. The aggregation instances and request counts for our example would be the following:

    • IP address 10.1.1.1, HTTP method POST: count 1

    • IP address 10.1.1.1, HTTP method GET: count 2

    • IP address 127.0.0.0, HTTP method POST: count 1

For any n-tuple of aggregation keys, each unique combination of values for the keys defines a separate aggregation instance, which WAF counts and rate-limits individually.

You can optionally nest another statement inside the rate-based statement, to narrow the scope of the rule so that it only counts and rate limits requests that match the nested statement. You can use this nested scope-down statement in conjunction with your aggregation key specifications or you can just count and rate limit all requests that match the scope-down statement, without additional aggregation. When you choose to just manage all requests that match a scope-down statement, the aggregation instance is singular for the rule.

You cannot nest a RateBasedStatement inside another statement, for example inside a NotStatement or OrStatement. You can define a RateBasedStatement inside a web ACL and inside a rule group.

For additional information about the options, see Rate limiting web requests using rate-based rules in the WAF Developer Guide.

If you only aggregate on the individual IP address or forwarded IP address, you can retrieve the list of IP addresses that WAF is currently rate limiting for a rule through the API call GetRateBasedStatementManagedKeys. This option is not available for other aggregation configurations.

WAF tracks and manages web requests separately for each instance of a rate-based rule that you use. For example, if you provide the same rate-based rule settings in two web ACLs, each of the two rule statements represents a separate instance of the rate-based rule and gets its own tracking and management by WAF. If you define a rate-based rule inside a rule group, and then use that rule group in multiple places, each use creates a separate instance of the rate-based rule that gets its own tracking and management by WAF.

', ], ], 'RateBasedStatementAggregateKeyType' => [ 'base' => NULL, 'refs' => [ 'RateBasedStatement$AggregateKeyType' => '

Setting that indicates how to aggregate the request counts.

Web requests that are missing any of the components specified in the aggregation keys are omitted from the rate-based rule evaluation and handling.

  • CONSTANT - Count and limit the requests that match the rate-based rule\'s scope-down statement. With this option, the counted requests aren\'t further aggregated. The scope-down statement is the only specification used. When the count of all requests that satisfy the scope-down statement goes over the limit, WAF applies the rule action to all requests that satisfy the scope-down statement.

    With this option, you must configure the ScopeDownStatement property.

  • CUSTOM_KEYS - Aggregate the request counts using one or more web request components as the aggregate keys.

    With this option, you must specify the aggregate keys in the CustomKeys property.

    To aggregate on only the IP address or only the forwarded IP address, don\'t use custom keys. Instead, set the aggregate key type to IP or FORWARDED_IP.

  • FORWARDED_IP - Aggregate the request counts on the first IP address in an HTTP header.

    With this option, you must specify the header to use in the ForwardedIPConfig property.

    To aggregate on a combination of the forwarded IP address with other aggregate keys, use CUSTOM_KEYS.

  • IP - Aggregate the request counts on the IP address from the web request origin.

    To aggregate on a combination of the IP address with other aggregate keys, use CUSTOM_KEYS.

', ], ], 'RateBasedStatementCustomKey' => [ 'base' => '

Specifies a single custom aggregate key for a rate-base rule.

Web requests that are missing any of the components specified in the aggregation keys are omitted from the rate-based rule evaluation and handling.

', 'refs' => [ 'RateBasedStatementCustomKeys$member' => NULL, ], ], 'RateBasedStatementCustomKeys' => [ 'base' => NULL, 'refs' => [ 'RateBasedStatement$CustomKeys' => '

Specifies the aggregate keys to use in a rate-base rule.

', ], ], 'RateBasedStatementManagedKeysIPSet' => [ 'base' => '

The set of IP addresses that are currently blocked for a RateBasedStatement. This is only available for rate-based rules that aggregate on just the IP address, with the AggregateKeyType set to IP or FORWARDED_IP.

A rate-based rule applies its rule action to requests from IP addresses that are in the rule\'s managed keys list and that match the rule\'s scope-down statement. When a rule has no scope-down statement, it applies the action to all requests from the IP addresses that are in the list. The rule applies its rule action to rate limit the matching requests. The action is usually Block but it can be any valid rule action except for Allow.

The maximum number of IP addresses that can be rate limited by a single rate-based rule instance is 10,000. If more than 10,000 addresses exceed the rate limit, WAF limits those with the highest rates.

', 'refs' => [ 'GetRateBasedStatementManagedKeysResponse$ManagedKeysIPV4' => '

The keys that are of Internet Protocol version 4 (IPv4).

', 'GetRateBasedStatementManagedKeysResponse$ManagedKeysIPV6' => '

The keys that are of Internet Protocol version 6 (IPv6).

', ], ], 'RateLimit' => [ 'base' => NULL, 'refs' => [ 'RateBasedStatement$Limit' => '

The limit on requests per 5-minute period for a single aggregation instance for the rate-based rule. If the rate-based statement includes a ScopeDownStatement, this limit is applied only to the requests that match the statement.

Examples:

  • If you aggregate on just the IP address, this is the limit on requests from any single IP address.

  • If you aggregate on the HTTP method and the query argument name "city", then this is the limit on requests for any single method, city pair.

', ], ], 'RateLimitCookie' => [ 'base' => '

Specifies a cookie as an aggregate key for a rate-based rule. Each distinct value in the cookie contributes to the aggregation instance. If you use a single cookie as your custom key, then each value fully defines an aggregation instance.

', 'refs' => [ 'RateBasedStatementCustomKey$Cookie' => '

Use the value of a cookie in the request as an aggregate key. Each distinct value in the cookie contributes to the aggregation instance. If you use a single cookie as your custom key, then each value fully defines an aggregation instance.

', ], ], 'RateLimitForwardedIP' => [ 'base' => '

Specifies the first IP address in an HTTP header as an aggregate key for a rate-based rule. Each distinct forwarded IP address contributes to the aggregation instance.

This setting is used only in the RateBasedStatementCustomKey specification of a rate-based rule statement. When you specify an IP or forwarded IP in the custom key settings, you must also specify at least one other key to use. You can aggregate on only the forwarded IP address by specifying FORWARDED_IP in your rate-based statement\'s AggregateKeyType.

This data type supports using the forwarded IP address in the web request aggregation for a rate-based rule, in RateBasedStatementCustomKey. The JSON specification for using the forwarded IP address doesn\'t explicitly use this data type.

JSON specification: "ForwardedIP": {}

When you use this specification, you must also configure the forwarded IP address in the rate-based statement\'s ForwardedIPConfig.

', 'refs' => [ 'RateBasedStatementCustomKey$ForwardedIP' => '

Use the first IP address in an HTTP header as an aggregate key. Each distinct forwarded IP address contributes to the aggregation instance.

When you specify an IP or forwarded IP in the custom key settings, you must also specify at least one other key to use. You can aggregate on only the forwarded IP address by specifying FORWARDED_IP in your rate-based statement\'s AggregateKeyType.

With this option, you must specify the header to use in the rate-based rule\'s ForwardedIPConfig property.

', ], ], 'RateLimitHTTPMethod' => [ 'base' => '

Specifies the request\'s HTTP method as an aggregate key for a rate-based rule. Each distinct HTTP method contributes to the aggregation instance. If you use just the HTTP method as your custom key, then each method fully defines an aggregation instance.

JSON specification: "RateLimitHTTPMethod": {}

', 'refs' => [ 'RateBasedStatementCustomKey$HTTPMethod' => '

Use the request\'s HTTP method as an aggregate key. Each distinct HTTP method contributes to the aggregation instance. If you use just the HTTP method as your custom key, then each method fully defines an aggregation instance.

', ], ], 'RateLimitHeader' => [ 'base' => '

Specifies a header as an aggregate key for a rate-based rule. Each distinct value in the header contributes to the aggregation instance. If you use a single header as your custom key, then each value fully defines an aggregation instance.

', 'refs' => [ 'RateBasedStatementCustomKey$Header' => '

Use the value of a header in the request as an aggregate key. Each distinct value in the header contributes to the aggregation instance. If you use a single header as your custom key, then each value fully defines an aggregation instance.

', ], ], 'RateLimitIP' => [ 'base' => '

Specifies the IP address in the web request as an aggregate key for a rate-based rule. Each distinct IP address contributes to the aggregation instance.

This setting is used only in the RateBasedStatementCustomKey specification of a rate-based rule statement. To use this in the custom key settings, you must specify at least one other key to use, along with the IP address. To aggregate on only the IP address, in your rate-based statement\'s AggregateKeyType, specify IP.

JSON specification: "RateLimitIP": {}

', 'refs' => [ 'RateBasedStatementCustomKey$IP' => '

Use the request\'s originating IP address as an aggregate key. Each distinct IP address contributes to the aggregation instance.

When you specify an IP or forwarded IP in the custom key settings, you must also specify at least one other key to use. You can aggregate on only the IP address by specifying IP in your rate-based statement\'s AggregateKeyType.

', ], ], 'RateLimitLabelNamespace' => [ 'base' => '

Specifies a label namespace to use as an aggregate key for a rate-based rule. Each distinct fully qualified label name that has the specified label namespace contributes to the aggregation instance. If you use just one label namespace as your custom key, then each label name fully defines an aggregation instance.

This uses only labels that have been added to the request by rules that are evaluated before this rate-based rule in the web ACL.

For information about label namespaces and names, see Label syntax and naming requirements in the WAF Developer Guide.

', 'refs' => [ 'RateBasedStatementCustomKey$LabelNamespace' => '

Use the specified label namespace as an aggregate key. Each distinct fully qualified label name that has the specified label namespace contributes to the aggregation instance. If you use just one label namespace as your custom key, then each label name fully defines an aggregation instance.

This uses only labels that have been added to the request by rules that are evaluated before this rate-based rule in the web ACL.

For information about label namespaces and names, see Label syntax and naming requirements in the WAF Developer Guide.

', ], ], 'RateLimitQueryArgument' => [ 'base' => '

Specifies a query argument in the request as an aggregate key for a rate-based rule. Each distinct value for the named query argument contributes to the aggregation instance. If you use a single query argument as your custom key, then each value fully defines an aggregation instance.

', 'refs' => [ 'RateBasedStatementCustomKey$QueryArgument' => '

Use the specified query argument as an aggregate key. Each distinct value for the named query argument contributes to the aggregation instance. If you use a single query argument as your custom key, then each value fully defines an aggregation instance.

', ], ], 'RateLimitQueryString' => [ 'base' => '

Specifies the request\'s query string as an aggregate key for a rate-based rule. Each distinct string contributes to the aggregation instance. If you use just the query string as your custom key, then each string fully defines an aggregation instance.

', 'refs' => [ 'RateBasedStatementCustomKey$QueryString' => '

Use the request\'s query string as an aggregate key. Each distinct string contributes to the aggregation instance. If you use just the query string as your custom key, then each string fully defines an aggregation instance.

', ], ], 'RateLimitUriPath' => [ 'base' => '

Specifies the request\'s URI path as an aggregate key for a rate-based rule. Each distinct URI path contributes to the aggregation instance. If you use just the URI path as your custom key, then each URI path fully defines an aggregation instance.

', 'refs' => [ 'RateBasedStatementCustomKey$UriPath' => '

Use the request\'s URI path as an aggregate key. Each distinct URI path contributes to the aggregation instance. If you use just the URI path as your custom key, then each URI path fully defines an aggregation instance.

', ], ], 'RedactedFields' => [ 'base' => NULL, 'refs' => [ 'LoggingConfiguration$RedactedFields' => '

The parts of the request that you want to keep out of the logs.

For example, if you redact the SingleHeader field, the HEADER field in the logs will be REDACTED for all rules that use the SingleHeader FieldToMatch setting.

Redaction applies only to the component that\'s specified in the rule\'s FieldToMatch setting, so the SingleHeader redaction doesn\'t apply to rules that use the Headers FieldToMatch.

You can specify only the following fields for redaction: UriPath, QueryString, SingleHeader, and Method.

', ], ], 'Regex' => [ 'base' => '

A single regular expression. This is used in a RegexPatternSet.

', 'refs' => [ 'RegularExpressionList$member' => NULL, ], ], 'RegexMatchStatement' => [ 'base' => '

A rule statement used to search web request components for a match against a single regular expression.

', 'refs' => [ 'Statement$RegexMatchStatement' => '

A rule statement used to search web request components for a match against a single regular expression.

', ], ], 'RegexPatternSet' => [ 'base' => '

Contains one or more regular expressions.

WAF assigns an ARN to each RegexPatternSet that you create. To use a set in a rule, you provide the ARN to the Rule statement RegexPatternSetReferenceStatement.

', 'refs' => [ 'GetRegexPatternSetResponse$RegexPatternSet' => '

', ], ], 'RegexPatternSetReferenceStatement' => [ 'base' => '

A rule statement used to search web request components for matches with regular expressions. To use this, create a RegexPatternSet that specifies the expressions that you want to detect, then use the ARN of that set in this statement. A web request matches the pattern set rule statement if the request component matches any of the patterns in the set. To create a regex pattern set, see CreateRegexPatternSet.

Each regex pattern set rule statement references a regex pattern set. You create and maintain the set independent of your rules. This allows you to use the single set in multiple rules. When you update the referenced set, WAF automatically updates all rules that reference it.

', 'refs' => [ 'Statement$RegexPatternSetReferenceStatement' => '

A rule statement used to search web request components for matches with regular expressions. To use this, create a RegexPatternSet that specifies the expressions that you want to detect, then use the ARN of that set in this statement. A web request matches the pattern set rule statement if the request component matches any of the patterns in the set. To create a regex pattern set, see CreateRegexPatternSet.

Each regex pattern set rule statement references a regex pattern set. You create and maintain the set independent of your rules. This allows you to use the single set in multiple rules. When you update the referenced set, WAF automatically updates all rules that reference it.

', ], ], 'RegexPatternSetSummaries' => [ 'base' => NULL, 'refs' => [ 'ListRegexPatternSetsResponse$RegexPatternSets' => '

Array of regex pattern sets. If you specified a Limit in your request, this might not be the full list.

', ], ], 'RegexPatternSetSummary' => [ 'base' => '

High-level information about a RegexPatternSet, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a RegexPatternSet, and the ARN, that you provide to the RegexPatternSetReferenceStatement to use the pattern set in a Rule.

', 'refs' => [ 'CreateRegexPatternSetResponse$Summary' => '

High-level information about a RegexPatternSet, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a RegexPatternSet, and the ARN, that you provide to the RegexPatternSetReferenceStatement to use the pattern set in a Rule.

', 'RegexPatternSetSummaries$member' => NULL, ], ], 'RegexPatternString' => [ 'base' => NULL, 'refs' => [ 'Regex$RegexString' => '

The string representing the regular expression.

', 'RegexMatchStatement$RegexString' => '

The string representing the regular expression.

', ], ], 'RegistrationPagePathString' => [ 'base' => NULL, 'refs' => [ 'AWSManagedRulesACFPRuleSet$RegistrationPagePath' => '

The path of the account registration endpoint for your application. This is the page on your website that presents the registration form to new users.

This page must accept GET text/html requests.

For example, for the URL https://example.com/web/registration, you would provide the path /web/registration. Registration page paths that start with the path that you provide are considered a match. For example /web/registration matches the registration paths /web/registration, /web/registration/, /web/registrationPage, and /web/registration/thisPage, but doesn\'t match the path /home/web/registration or /website/registration.

', ], ], 'RegularExpressionList' => [ 'base' => NULL, 'refs' => [ 'CreateRegexPatternSetRequest$RegularExpressionList' => '

Array of regular expression strings.

', 'RegexPatternSet$RegularExpressionList' => '

The regular expression patterns in the set.

', 'UpdateRegexPatternSetRequest$RegularExpressionList' => '

', ], ], 'ReleaseNotes' => [ 'base' => NULL, 'refs' => [ 'MobileSdkRelease$ReleaseNotes' => '

Notes describing the release.

', ], ], 'ReleaseSummaries' => [ 'base' => NULL, 'refs' => [ 'ListMobileSdkReleasesResponse$ReleaseSummaries' => '

The high level information for the available SDK releases. If you specified a Limit in your request, this might not be the full list.

', ], ], 'ReleaseSummary' => [ 'base' => '

High level information for an SDK release.

', 'refs' => [ 'ReleaseSummaries$member' => NULL, ], ], 'RequestBody' => [ 'base' => NULL, 'refs' => [ 'AssociationConfig$RequestBody' => '

Customizes the maximum size of the request body that your protected CloudFront distributions forward to WAF for inspection. The default size is 16 KB (16,384 bytes).

You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

', ], ], 'RequestBodyAssociatedResourceTypeConfig' => [ 'base' => '

Customizes the maximum size of the request body that your protected CloudFront distributions forward to WAF for inspection. The default size is 16 KB (16,384 bytes).

You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

This is used in the AssociationConfig of the web ACL.

', 'refs' => [ 'RequestBody$value' => NULL, ], ], 'RequestInspection' => [ 'base' => '

The criteria for inspecting login requests, used by the ATP rule group to validate credentials usage.

This is part of the AWSManagedRulesATPRuleSet configuration in ManagedRuleGroupConfig.

In these settings, you specify how your application accepts login attempts by providing the request payload type and the names of the fields within the request body where the username and password are provided.

', 'refs' => [ 'AWSManagedRulesATPRuleSet$RequestInspection' => '

The criteria for inspecting login requests, used by the ATP rule group to validate credentials usage.

', ], ], 'RequestInspectionACFP' => [ 'base' => '

The criteria for inspecting account creation requests, used by the ACFP rule group to validate and track account creation attempts.

This is part of the AWSManagedRulesACFPRuleSet configuration in ManagedRuleGroupConfig.

In these settings, you specify how your application accepts account creation attempts by providing the request payload type and the names of the fields within the request body where the username, password, email, and primary address and phone number fields are provided.

', 'refs' => [ 'AWSManagedRulesACFPRuleSet$RequestInspection' => '

The criteria for inspecting account creation requests, used by the ACFP rule group to validate and track account creation attempts.

', ], ], 'ResourceArn' => [ 'base' => NULL, 'refs' => [ 'AssociateWebACLRequest$WebACLArn' => '

The Amazon Resource Name (ARN) of the web ACL that you want to associate with the resource.

', 'AssociateWebACLRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the resource to associate with the web ACL.

The ARN must be in one of the following formats:

  • For an Application Load Balancer: arn:partition:elasticloadbalancing:region:account-id:loadbalancer/app/load-balancer-name/load-balancer-id

  • For an Amazon API Gateway REST API: arn:partition:apigateway:region::/restapis/api-id/stages/stage-name

  • For an AppSync GraphQL API: arn:partition:appsync:region:account-id:apis/GraphQLApiId

  • For an Amazon Cognito user pool: arn:partition:cognito-idp:region:account-id:userpool/user-pool-id

  • For an App Runner service: arn:partition:apprunner:region:account-id:service/apprunner-service-name/apprunner-service-id

  • For an Amazon Web Services Verified Access instance: arn:partition:ec2:region:account-id:verified-access-instance/instance-id

', 'DeleteFirewallManagerRuleGroupsRequest$WebACLArn' => '

The Amazon Resource Name (ARN) of the web ACL.

', 'DeleteLoggingConfigurationRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the web ACL from which you want to delete the LoggingConfiguration.

', 'DeletePermissionPolicyRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the rule group from which you want to delete the policy.

You must be the owner of the rule group to perform this operation.

', 'DescribeManagedRuleGroupResponse$SnsTopicArn' => '

The Amazon resource name (ARN) of the Amazon Simple Notification Service SNS topic that\'s used to provide notification of changes to the managed rule group. You can subscribe to the SNS topic to receive notifications when the managed rule group is modified, such as for new versions and for version expiration. For more information, see the Amazon Simple Notification Service Developer Guide.

', 'DisassociateWebACLRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the resource to disassociate from the web ACL.

The ARN must be in one of the following formats:

  • For an Application Load Balancer: arn:partition:elasticloadbalancing:region:account-id:loadbalancer/app/load-balancer-name/load-balancer-id

  • For an Amazon API Gateway REST API: arn:partition:apigateway:region::/restapis/api-id/stages/stage-name

  • For an AppSync GraphQL API: arn:partition:appsync:region:account-id:apis/GraphQLApiId

  • For an Amazon Cognito user pool: arn:partition:cognito-idp:region:account-id:userpool/user-pool-id

  • For an App Runner service: arn:partition:apprunner:region:account-id:service/apprunner-service-name/apprunner-service-id

  • For an Amazon Web Services Verified Access instance: arn:partition:ec2:region:account-id:verified-access-instance/instance-id

', 'GetLoggingConfigurationRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the web ACL for which you want to get the LoggingConfiguration.

', 'GetPermissionPolicyRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the rule group for which you want to get the policy.

', 'GetRuleGroupRequest$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'GetSampledRequestsRequest$WebAclArn' => '

The Amazon resource name (ARN) of the WebACL for which you want a sample of requests.

', 'GetWebACLForResourceRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the resource whose web ACL you want to retrieve.

The ARN must be in one of the following formats:

  • For an Application Load Balancer: arn:partition:elasticloadbalancing:region:account-id:loadbalancer/app/load-balancer-name/load-balancer-id

  • For an Amazon API Gateway REST API: arn:partition:apigateway:region::/restapis/api-id/stages/stage-name

  • For an AppSync GraphQL API: arn:partition:appsync:region:account-id:apis/GraphQLApiId

  • For an Amazon Cognito user pool: arn:partition:cognito-idp:region:account-id:userpool/user-pool-id

  • For an App Runner service: arn:partition:apprunner:region:account-id:service/apprunner-service-name/apprunner-service-id

  • For an Amazon Web Services Verified Access instance: arn:partition:ec2:region:account-id:verified-access-instance/instance-id

', 'IPSet$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'IPSetReferenceStatement$ARN' => '

The Amazon Resource Name (ARN) of the IPSet that this statement references.

', 'IPSetSummary$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'ListResourcesForWebACLRequest$WebACLArn' => '

The Amazon Resource Name (ARN) of the web ACL.

', 'ListTagsForResourceRequest$ResourceARN' => '

The Amazon Resource Name (ARN) of the resource.

', 'LogDestinationConfigs$member' => NULL, 'LoggingConfiguration$ResourceArn' => '

The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.

', 'ManagedProductDescriptor$SnsTopicArn' => '

The Amazon resource name (ARN) of the Amazon Simple Notification Service SNS topic that\'s used to provide notification of changes to the managed rule group. You can subscribe to the SNS topic to receive notifications when the managed rule group is modified, such as for new versions and for version expiration. For more information, see the Amazon Simple Notification Service Developer Guide.

', 'ManagedRuleSet$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'ManagedRuleSetSummary$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'ManagedRuleSetVersion$AssociatedRuleGroupArn' => '

The Amazon Resource Name (ARN) of the vendor rule group that\'s used to define the published version of your managed rule group.

', 'PutPermissionPolicyRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the RuleGroup to which you want to attach the policy.

', 'RegexPatternSet$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'RegexPatternSetReferenceStatement$ARN' => '

The Amazon Resource Name (ARN) of the RegexPatternSet that this statement references.

', 'RegexPatternSetSummary$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'ResourceArns$member' => NULL, 'RuleGroup$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'RuleGroupReferenceStatement$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'RuleGroupSummary$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'TagInfoForResource$ResourceARN' => '

The Amazon Resource Name (ARN) of the resource.

', 'TagResourceRequest$ResourceARN' => '

The Amazon Resource Name (ARN) of the resource.

', 'UntagResourceRequest$ResourceARN' => '

The Amazon Resource Name (ARN) of the resource.

', 'VersionToPublish$AssociatedRuleGroupArn' => '

The Amazon Resource Name (ARN) of the vendor\'s rule group that\'s used in the published managed rule group version.

', 'WebACL$ARN' => '

The Amazon Resource Name (ARN) of the web ACL that you want to associate with the resource.

', 'WebACLSummary$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', ], ], 'ResourceArns' => [ 'base' => NULL, 'refs' => [ 'ListResourcesForWebACLResponse$ResourceArns' => '

The array of Amazon Resource Names (ARNs) of the associated resources.

', ], ], 'ResourceType' => [ 'base' => NULL, 'refs' => [ 'ListResourcesForWebACLRequest$ResourceType' => '

Used for web ACLs that are scoped for regional applications. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

If you don\'t provide a resource type, the call uses the resource type APPLICATION_LOAD_BALANCER.

Default: APPLICATION_LOAD_BALANCER

', ], ], 'ResponseCode' => [ 'base' => NULL, 'refs' => [ 'CaptchaResponse$ResponseCode' => '

The HTTP response code indicating the status of the CAPTCHA token in the web request. If the token is missing, invalid, or expired, this code is 405 Method Not Allowed.

', 'ChallengeResponse$ResponseCode' => '

The HTTP response code indicating the status of the challenge token in the web request. If the token is missing, invalid, or expired, this code is 202 Request Accepted.

', ], ], 'ResponseContent' => [ 'base' => NULL, 'refs' => [ 'CustomResponseBody$Content' => '

The payload of the custom response.

You can use JSON escape strings in JSON content. To do this, you must specify JSON content in the ContentType setting.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', ], ], 'ResponseContentType' => [ 'base' => NULL, 'refs' => [ 'CustomResponseBody$ContentType' => '

The type of content in the payload that you are defining in the Content string.

', ], ], 'ResponseInspection' => [ 'base' => '

The criteria for inspecting responses to login requests and account creation requests, used by the ATP and ACFP rule groups to track login and account creation success and failure rates.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

The rule groups evaluates the responses that your protected resources send back to client login and account creation attempts, keeping count of successful and failed attempts from each IP address and client session. Using this information, the rule group labels and mitigates requests from client sessions and IP addresses with too much suspicious activity in a short amount of time.

This is part of the AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet configurations in ManagedRuleGroupConfig.

Enable response inspection by configuring exactly one component of the response to inspect, for example, Header or StatusCode. You can\'t configure more than one component for inspection. If you don\'t configure any of the response inspection options, response inspection is disabled.

', 'refs' => [ 'AWSManagedRulesACFPRuleSet$ResponseInspection' => '

The criteria for inspecting responses to account creation requests, used by the ACFP rule group to track account creation success rates.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

The ACFP rule group evaluates the responses that your protected resources send back to client account creation attempts, keeping count of successful and failed attempts from each IP address and client session. Using this information, the rule group labels and mitigates requests from client sessions and IP addresses that have had too many successful account creation attempts in a short amount of time.

', 'AWSManagedRulesATPRuleSet$ResponseInspection' => '

The criteria for inspecting responses to login requests, used by the ATP rule group to track login failure rates.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

The ATP rule group evaluates the responses that your protected resources send back to client login attempts, keeping count of successful and failed attempts for each IP address and client session. Using this information, the rule group labels and mitigates requests from client sessions and IP addresses that have had too many failed login attempts in a short amount of time.

', ], ], 'ResponseInspectionBodyContains' => [ 'base' => '

Configures inspection of the response body. WAF can inspect the first 65,536 bytes (64 KB) of the response body. This is part of the ResponseInspection configuration for AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

', 'refs' => [ 'ResponseInspection$BodyContains' => '

Configures inspection of the response body for success and failure indicators. WAF can inspect the first 65,536 bytes (64 KB) of the response body.

', ], ], 'ResponseInspectionBodyContainsFailureStrings' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionBodyContains$FailureStrings' => '

Strings in the body of the response that indicate a failed login or account creation attempt. To be counted as a failure, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings.

JSON example: "FailureStrings": [ "Request failed" ]

', ], ], 'ResponseInspectionBodyContainsSuccessStrings' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionBodyContains$SuccessStrings' => '

Strings in the body of the response that indicate a successful login or account creation attempt. To be counted as a success, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings.

JSON examples: "SuccessStrings": [ "Login successful" ] and "SuccessStrings": [ "Account creation successful", "Welcome to our site!" ]

', ], ], 'ResponseInspectionHeader' => [ 'base' => '

Configures inspection of the response header. This is part of the ResponseInspection configuration for AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

', 'refs' => [ 'ResponseInspection$Header' => '

Configures inspection of the response header for success and failure indicators.

', ], ], 'ResponseInspectionHeaderFailureValues' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionHeader$FailureValues' => '

Values in the response header with the specified name that indicate a failed login or account creation attempt. To be counted as a failure, the value must be an exact match, including case. Each value must be unique among the success and failure values.

JSON examples: "FailureValues": [ "LoginFailed", "Failed login" ] and "FailureValues": [ "AccountCreationFailed" ]

', ], ], 'ResponseInspectionHeaderName' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionHeader$Name' => '

The name of the header to match against. The name must be an exact match, including case.

JSON example: "Name": [ "RequestResult" ]

', ], ], 'ResponseInspectionHeaderSuccessValues' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionHeader$SuccessValues' => '

Values in the response header with the specified name that indicate a successful login or account creation attempt. To be counted as a success, the value must be an exact match, including case. Each value must be unique among the success and failure values.

JSON examples: "SuccessValues": [ "LoginPassed", "Successful login" ] and "SuccessValues": [ "AccountCreated", "Successful account creation" ]

', ], ], 'ResponseInspectionJson' => [ 'base' => '

Configures inspection of the response JSON. WAF can inspect the first 65,536 bytes (64 KB) of the response JSON. This is part of the ResponseInspection configuration for AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

', 'refs' => [ 'ResponseInspection$Json' => '

Configures inspection of the response JSON for success and failure indicators. WAF can inspect the first 65,536 bytes (64 KB) of the response JSON.

', ], ], 'ResponseInspectionJsonFailureValues' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionJson$FailureValues' => '

Values for the specified identifier in the response JSON that indicate a failed login or account creation attempt. To be counted as a failure, the value must be an exact match, including case. Each value must be unique among the success and failure values.

JSON example: "FailureValues": [ "False", "Failed" ]

', ], ], 'ResponseInspectionJsonSuccessValues' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionJson$SuccessValues' => '

Values for the specified identifier in the response JSON that indicate a successful login or account creation attempt. To be counted as a success, the value must be an exact match, including case. Each value must be unique among the success and failure values.

JSON example: "SuccessValues": [ "True", "Succeeded" ]

', ], ], 'ResponseInspectionStatusCode' => [ 'base' => '

Configures inspection of the response status code. This is part of the ResponseInspection configuration for AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

', 'refs' => [ 'ResponseInspection$StatusCode' => '

Configures inspection of the response status code for success and failure indicators.

', ], ], 'ResponseInspectionStatusCodeFailureCodes' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionStatusCode$FailureCodes' => '

Status codes in the response that indicate a failed login or account creation attempt. To be counted as a failure, the response status code must match one of these. Each code must be unique among the success and failure status codes.

JSON example: "FailureCodes": [ 400, 404 ]

', ], ], 'ResponseInspectionStatusCodeSuccessCodes' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionStatusCode$SuccessCodes' => '

Status codes in the response that indicate a successful login or account creation attempt. To be counted as a success, the response status code must match one of these. Each code must be unique among the success and failure status codes.

JSON example: "SuccessCodes": [ 200, 201 ]

', ], ], 'ResponseStatusCode' => [ 'base' => NULL, 'refs' => [ 'CustomResponse$ResponseCode' => '

The HTTP status code to return to the client.

For a list of status codes that you can use in your custom responses, see Supported status codes for custom response in the WAF Developer Guide.

', 'SampledHTTPRequest$ResponseCodeSent' => '

The response code that was sent for the request.

', ], ], 'Rule' => [ 'base' => '

A single rule, which you can use in a WebACL or RuleGroup to identify web requests that you want to manage in some way. Each rule includes one top-level Statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

', 'refs' => [ 'Rules$member' => NULL, ], ], 'RuleAction' => [ 'base' => '

The action that WAF should take on a web request when it matches a rule\'s statement. Settings at the web ACL level can override the rule action setting.

', 'refs' => [ 'Rule$Action' => '

The action that WAF should take on a web request when it matches the rule statement. Settings at the web ACL level can override the rule action setting.

This is used only for rules whose statements do not reference a rule group. Rule statements that reference a rule group include RuleGroupReferenceStatement and ManagedRuleGroupStatement.

You must specify either this Action setting or the rule OverrideAction setting, but not both:

  • If the rule statement does not reference a rule group, use this rule action setting and not the rule override action setting.

  • If the rule statement references a rule group, use the override action setting and not this action setting.

', 'RuleActionOverride$ActionToUse' => '

The override action to use, in place of the configured action of the rule in the rule group.

', 'RuleSummary$Action' => '

The action that WAF should take on a web request when it matches a rule\'s statement. Settings at the web ACL level can override the rule action setting.

', ], ], 'RuleActionOverride' => [ 'base' => '

Action setting to use in the place of a rule action that is configured inside the rule group. You specify one override for each rule whose action you want to change.

You can use overrides for testing, for example you can override all of rule actions to Count and then monitor the resulting count metrics to understand how the rule group would handle your web traffic. You can also permanently override some or all actions, to modify how the rule group manages your web traffic.

', 'refs' => [ 'RuleActionOverrides$member' => NULL, ], ], 'RuleActionOverrides' => [ 'base' => NULL, 'refs' => [ 'ManagedRuleGroupStatement$RuleActionOverrides' => '

Action settings to use in the place of the rule actions that are configured inside the rule group. You specify one override for each rule whose action you want to change.

You can use overrides for testing, for example you can override all of rule actions to Count and then monitor the resulting count metrics to understand how the rule group would handle your web traffic. You can also permanently override some or all actions, to modify how the rule group manages your web traffic.

', 'RuleGroupReferenceStatement$RuleActionOverrides' => '

Action settings to use in the place of the rule actions that are configured inside the rule group. You specify one override for each rule whose action you want to change.

You can use overrides for testing, for example you can override all of rule actions to Count and then monitor the resulting count metrics to understand how the rule group would handle your web traffic. You can also permanently override some or all actions, to modify how the rule group manages your web traffic.

', ], ], 'RuleGroup' => [ 'base' => '

A rule group defines a collection of rules to inspect and control web requests that you can use in a WebACL. When you create a rule group, you define an immutable capacity limit. If you update a rule group, you must stay within the capacity. This allows others to reuse the rule group with confidence in its capacity requirements.

', 'refs' => [ 'GetRuleGroupResponse$RuleGroup' => '

', ], ], 'RuleGroupReferenceStatement' => [ 'base' => '

A rule statement used to run the rules that are defined in a RuleGroup. To use this, create a rule group with your rules, then provide the ARN of the rule group in this statement.

You cannot nest a RuleGroupReferenceStatement, for example for use inside a NotStatement or OrStatement. You cannot use a rule group reference statement inside another rule group. You can only reference a rule group as a top-level statement within a rule that you define in a web ACL.

', 'refs' => [ 'FirewallManagerStatement$RuleGroupReferenceStatement' => '

A statement used by Firewall Manager to run the rules that are defined in a rule group. This is managed by Firewall Manager for an Firewall Manager WAF policy.

', 'Statement$RuleGroupReferenceStatement' => '

A rule statement used to run the rules that are defined in a RuleGroup. To use this, create a rule group with your rules, then provide the ARN of the rule group in this statement.

You cannot nest a RuleGroupReferenceStatement, for example for use inside a NotStatement or OrStatement. You cannot use a rule group reference statement inside another rule group. You can only reference a rule group as a top-level statement within a rule that you define in a web ACL.

', ], ], 'RuleGroupSummaries' => [ 'base' => NULL, 'refs' => [ 'ListRuleGroupsResponse$RuleGroups' => '

Array of rule groups. If you specified a Limit in your request, this might not be the full list.

', ], ], 'RuleGroupSummary' => [ 'base' => '

High-level information about a RuleGroup, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a RuleGroup, and the ARN, that you provide to the RuleGroupReferenceStatement to use the rule group in a Rule.

', 'refs' => [ 'CreateRuleGroupResponse$Summary' => '

High-level information about a RuleGroup, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a RuleGroup, and the ARN, that you provide to the RuleGroupReferenceStatement to use the rule group in a Rule.

', 'RuleGroupSummaries$member' => NULL, ], ], 'RulePriority' => [ 'base' => NULL, 'refs' => [ 'FirewallManagerRuleGroup$Priority' => '

If you define more than one rule group in the first or last Firewall Manager rule groups, WAF evaluates each request against the rule groups in order, starting from the lowest priority setting. The priorities don\'t need to be consecutive, but they must all be different.

', 'Rule$Priority' => '

If you define more than one Rule in a WebACL, WAF evaluates each request against the Rules in order based on the value of Priority. WAF processes rules with lower priority first. The priorities don\'t need to be consecutive, but they must all be different.

', ], ], 'RuleSummaries' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedRuleGroupResponse$Rules' => '

', ], ], 'RuleSummary' => [ 'base' => '

High-level information about a Rule, returned by operations like DescribeManagedRuleGroup. This provides information like the ID, that you can use to retrieve and manage a RuleGroup, and the ARN, that you provide to the RuleGroupReferenceStatement to use the rule group in a Rule.

', 'refs' => [ 'RuleSummaries$member' => NULL, ], ], 'Rules' => [ 'base' => NULL, 'refs' => [ 'CheckCapacityRequest$Rules' => '

An array of Rule that you\'re configuring to use in a rule group or web ACL.

', 'CreateRuleGroupRequest$Rules' => '

The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

', 'CreateWebACLRequest$Rules' => '

The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

', 'RuleGroup$Rules' => '

The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

', 'UpdateRuleGroupRequest$Rules' => '

The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

', 'UpdateWebACLRequest$Rules' => '

The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

', 'WebACL$Rules' => '

The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

', ], ], 'SampleWeight' => [ 'base' => NULL, 'refs' => [ 'SampledHTTPRequest$Weight' => '

A value that indicates how one result in the response relates proportionally to other results in the response. For example, a result that has a weight of 2 represents roughly twice as many web requests as a result that has a weight of 1.

', ], ], 'SampledHTTPRequest' => [ 'base' => '

Represents a single sampled web request. The response from GetSampledRequests includes a SampledHTTPRequests complex type that appears as SampledRequests in the response syntax. SampledHTTPRequests contains an array of SampledHTTPRequest objects.

', 'refs' => [ 'SampledHTTPRequests$member' => NULL, ], ], 'SampledHTTPRequests' => [ 'base' => NULL, 'refs' => [ 'GetSampledRequestsResponse$SampledRequests' => '

A complex type that contains detailed information about each of the requests in the sample.

', ], ], 'Scope' => [ 'base' => NULL, 'refs' => [ 'CheckCapacityRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'CreateAPIKeyRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'CreateIPSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'CreateRegexPatternSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'CreateRuleGroupRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'CreateWebACLRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'DeleteAPIKeyRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'DeleteIPSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'DeleteRegexPatternSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'DeleteRuleGroupRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'DeleteWebACLRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'DescribeAllManagedProductsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'DescribeManagedProductsByVendorRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'DescribeManagedRuleGroupRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'GetDecryptedAPIKeyRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'GetIPSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'GetManagedRuleSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'GetRateBasedStatementManagedKeysRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'GetRegexPatternSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'GetRuleGroupRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'GetSampledRequestsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'GetWebACLRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListAPIKeysRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListAvailableManagedRuleGroupVersionsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListAvailableManagedRuleGroupsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListIPSetsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListLoggingConfigurationsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListManagedRuleSetsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListRegexPatternSetsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListRuleGroupsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListWebACLsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'PutManagedRuleSetVersionsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'UpdateIPSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'UpdateManagedRuleSetVersionExpiryDateRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'UpdateRegexPatternSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'UpdateRuleGroupRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'UpdateWebACLRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', ], ], 'SearchString' => [ 'base' => NULL, 'refs' => [ 'ByteMatchStatement$SearchString' => '

A string value that you want WAF to search for. WAF searches only in the part of web requests that you designate for inspection in FieldToMatch. The maximum length of the value is 200 bytes.

Valid values depend on the component that you specify for inspection in FieldToMatch:

  • Method: The HTTP method that you want WAF to search for. This indicates the type of operation specified in the request.

  • UriPath: The value that you want WAF to search for in the URI path, for example, /images/daily-ad.jpg.

  • JA3Fingerprint: Match against the request\'s JA3 fingerprint. The JA3 fingerprint is a 32-character hash derived from the TLS Client Hello of an incoming request. This fingerprint serves as a unique identifier for the client\'s TLS configuration. You can use this choice only with a string match ByteMatchStatement with the PositionalConstraint set to EXACTLY.

    You can obtain the JA3 fingerprint for client requests from the web ACL logs. If WAF is able to calculate the fingerprint, it includes it in the logs. For information about the logging fields, see Log fields in the WAF Developer Guide.

  • HeaderOrder: The list of header names to match for. WAF creates a string that contains the ordered list of header names, from the headers in the web request, and then matches against that string.

If SearchString includes alphabetic characters A-Z and a-z, note that the value is case sensitive.

If you\'re using the WAF API

Specify a base64-encoded version of the value. The maximum length of the value before you base64-encode it is 200 bytes.

For example, suppose the value of Type is HEADER and the value of Data is User-Agent. If you want to search the User-Agent header for the value BadBot, you base64-encode BadBot using MIME base64-encoding and include the resulting value, QmFkQm90, in the value of SearchString.

If you\'re using the CLI or one of the Amazon Web Services SDKs

The value that you want WAF to search for. The SDK automatically base64 encodes the value.

', ], ], 'SensitivityLevel' => [ 'base' => NULL, 'refs' => [ 'SqliMatchStatement$SensitivityLevel' => '

The sensitivity that you want WAF to use to inspect for SQL injection attacks.

HIGH detects more attacks, but might generate more false positives, especially if your web requests frequently contain unusual strings. For information about identifying and mitigating false positives, see Testing and tuning in the WAF Developer Guide.

LOW is generally a better choice for resources that already have other protections against SQL injection attacks or that have a low tolerance for false positives.

Default: LOW

', ], ], 'SingleCookieName' => [ 'base' => NULL, 'refs' => [ 'CookieNames$member' => NULL, ], ], 'SingleHeader' => [ 'base' => '

Inspect one of the headers in the web request, identified by name, for example, User-Agent or Referer. The name isn\'t case sensitive.

You can filter and inspect all headers with the FieldToMatch setting Headers.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

Example JSON: "SingleHeader": { "Name": "haystack" }

', 'refs' => [ 'FieldToMatch$SingleHeader' => '

Inspect a single header. Provide the name of the header to inspect, for example, User-Agent or Referer. This setting isn\'t case sensitive.

Example JSON: "SingleHeader": { "Name": "haystack" }

Alternately, you can filter and inspect all headers with the Headers FieldToMatch setting.

', ], ], 'SingleQueryArgument' => [ 'base' => '

Inspect one query argument in the web request, identified by name, for example UserName or SalesRegion. The name isn\'t case sensitive.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

Example JSON: "SingleQueryArgument": { "Name": "myArgument" }

', 'refs' => [ 'FieldToMatch$SingleQueryArgument' => '

Inspect a single query argument. Provide the name of the query argument to inspect, such as UserName or SalesRegion. The name can be up to 30 characters long and isn\'t case sensitive.

Example JSON: "SingleQueryArgument": { "Name": "myArgument" }

', ], ], 'Size' => [ 'base' => NULL, 'refs' => [ 'SizeConstraintStatement$Size' => '

The size, in byte, to compare to the request part, after any transformations.

', ], ], 'SizeConstraintStatement' => [ 'base' => '

A rule statement that compares a number of bytes against the size of a request component, using a comparison operator, such as greater than (>) or less than (<). For example, you can use a size constraint statement to look for query strings that are longer than 100 bytes.

If you configure WAF to inspect the request body, WAF inspects only the number of bytes of the body up to the limit for the web ACL. By default, for regional web ACLs, this limit is 8 KB (8,192 bytes) and for CloudFront web ACLs, this limit is 16 KB (16,384 bytes). For CloudFront web ACLs, you can increase the limit in the web ACL AssociationConfig, for additional fees. If you know that the request body for your web requests should never exceed the inspection limit, you could use a size constraint statement to block requests that have a larger request body size.

If you choose URI for the value of Part of the request to filter on, the slash (/) in the URI counts as one character. For example, the URI /logo.jpg is nine characters long.

', 'refs' => [ 'Statement$SizeConstraintStatement' => '

A rule statement that compares a number of bytes against the size of a request component, using a comparison operator, such as greater than (>) or less than (<). For example, you can use a size constraint statement to look for query strings that are longer than 100 bytes.

If you configure WAF to inspect the request body, WAF inspects only the number of bytes of the body up to the limit for the web ACL. By default, for regional web ACLs, this limit is 8 KB (8,192 bytes) and for CloudFront web ACLs, this limit is 16 KB (16,384 bytes). For CloudFront web ACLs, you can increase the limit in the web ACL AssociationConfig, for additional fees. If you know that the request body for your web requests should never exceed the inspection limit, you could use a size constraint statement to block requests that have a larger request body size.

If you choose URI for the value of Part of the request to filter on, the slash (/) in the URI counts as one character. For example, the URI /logo.jpg is nine characters long.

', ], ], 'SizeInspectionLimit' => [ 'base' => NULL, 'refs' => [ 'RequestBodyAssociatedResourceTypeConfig$DefaultSizeInspectionLimit' => '

Specifies the maximum size of the web request body component that an associated CloudFront distribution should send to WAF for inspection. This applies to statements in the web ACL that inspect the body or JSON body.

Default: 16 KB (16,384 bytes)

', ], ], 'SolveTimestamp' => [ 'base' => NULL, 'refs' => [ 'CaptchaResponse$SolveTimestamp' => '

The time that the CAPTCHA was last solved for the supplied token.

', 'ChallengeResponse$SolveTimestamp' => '

The time that the challenge was last solved for the supplied token.

', ], ], 'SqliMatchStatement' => [ 'base' => '

A rule statement that inspects for malicious SQL code. Attackers insert malicious SQL code into web requests to do things like modify your database or extract data from it.

', 'refs' => [ 'Statement$SqliMatchStatement' => '

A rule statement that inspects for malicious SQL code. Attackers insert malicious SQL code into web requests to do things like modify your database or extract data from it.

', ], ], 'Statement' => [ 'base' => '

The processing guidance for a Rule, used by WAF to determine whether a web request matches the rule.

For example specifications, see the examples section of CreateWebACL.

', 'refs' => [ 'ManagedRuleGroupStatement$ScopeDownStatement' => '

An optional nested statement that narrows the scope of the web requests that are evaluated by the managed rule group. Requests are only evaluated by the rule group if they match the scope-down statement. You can use any nestable Statement in the scope-down statement, and you can nest statements at any level, the same as you can for a rule statement.

', 'NotStatement$Statement' => '

The statement to negate. You can use any statement that can be nested.

', 'RateBasedStatement$ScopeDownStatement' => '

An optional nested statement that narrows the scope of the web requests that are evaluated and managed by the rate-based statement. When you use a scope-down statement, the rate-based rule only tracks and rate limits requests that match the scope-down statement. You can use any nestable Statement in the scope-down statement, and you can nest statements at any level, the same as you can for a rule statement.

', 'Rule$Statement' => '

The WAF processing statement for the rule, for example ByteMatchStatement or SizeConstraintStatement.

', 'Statements$member' => NULL, ], ], 'Statements' => [ 'base' => NULL, 'refs' => [ 'AndStatement$Statements' => '

The statements to combine with AND logic. You can use any statements that can be nested.

', 'OrStatement$Statements' => '

The statements to combine with OR logic. You can use any statements that can be nested.

', ], ], 'String' => [ 'base' => NULL, 'refs' => [ 'AWSManagedRulesATPRuleSet$LoginPath' => '

The path of the login endpoint for your application. For example, for the URL https://example.com/web/login, you would provide the path /web/login. Login paths that start with the path that you provide are considered a match. For example /web/login matches the login paths /web/login, /web/login/, /web/loginPage, and /web/login/thisPage, but doesn\'t match the login path /home/web/login or /website/login.

The rule group inspects only HTTP POST requests to your specified login endpoint.

', ], ], 'SuccessCode' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionStatusCodeSuccessCodes$member' => NULL, ], ], 'SuccessValue' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionBodyContainsSuccessStrings$member' => NULL, 'ResponseInspectionHeaderSuccessValues$member' => NULL, 'ResponseInspectionJsonSuccessValues$member' => NULL, ], ], 'Tag' => [ 'base' => '

A tag associated with an Amazon Web Services resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing or other management. Typically, the tag key represents a category, such as "environment", and the tag value represents a specific value within that category, such as "test," "development," or "production". Or you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.

You can tag the Amazon Web Services resources that you manage through WAF: web ACLs, rule groups, IP sets, and regex pattern sets. You can\'t manage or view tags through the WAF console.

', 'refs' => [ 'TagList$member' => NULL, ], ], 'TagInfoForResource' => [ 'base' => '

The collection of tagging definitions for an Amazon Web Services resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing or other management. Typically, the tag key represents a category, such as "environment", and the tag value represents a specific value within that category, such as "test," "development," or "production". Or you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.

You can tag the Amazon Web Services resources that you manage through WAF: web ACLs, rule groups, IP sets, and regex pattern sets. You can\'t manage or view tags through the WAF console.

', 'refs' => [ 'ListTagsForResourceResponse$TagInfoForResource' => '

The collection of tagging definitions for the resource. If you specified a Limit in your request, this might not be the full list.

', ], ], 'TagKey' => [ 'base' => NULL, 'refs' => [ 'Tag$Key' => '

Part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case-sensitive.

', 'TagKeyList$member' => NULL, ], ], 'TagKeyList' => [ 'base' => NULL, 'refs' => [ 'UntagResourceRequest$TagKeys' => '

An array of keys identifying the tags to disassociate from the resource.

', ], ], 'TagList' => [ 'base' => NULL, 'refs' => [ 'CreateIPSetRequest$Tags' => '

An array of key:value pairs to associate with the resource.

', 'CreateRegexPatternSetRequest$Tags' => '

An array of key:value pairs to associate with the resource.

', 'CreateRuleGroupRequest$Tags' => '

An array of key:value pairs to associate with the resource.

', 'CreateWebACLRequest$Tags' => '

An array of key:value pairs to associate with the resource.

', 'MobileSdkRelease$Tags' => '

Tags that are associated with the release.

', 'TagInfoForResource$TagList' => '

The array of Tag objects defined for the resource.

', 'TagResourceRequest$Tags' => '

An array of key:value pairs to associate with the resource.

', ], ], 'TagResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'TagResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'TagValue' => [ 'base' => NULL, 'refs' => [ 'Tag$Value' => '

Part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive.

', ], ], 'TextTransformation' => [ 'base' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.

', 'refs' => [ 'TextTransformations$member' => NULL, ], ], 'TextTransformationPriority' => [ 'base' => NULL, 'refs' => [ 'TextTransformation$Priority' => '

Sets the relative processing order for multiple transformations. WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content. The priorities don\'t need to be consecutive, but they must all be different.

', ], ], 'TextTransformationType' => [ 'base' => NULL, 'refs' => [ 'TextTransformation$Type' => '

For detailed descriptions of each of the transformation types, see Text transformations in the WAF Developer Guide.

', ], ], 'TextTransformations' => [ 'base' => NULL, 'refs' => [ 'ByteMatchStatement$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'RateLimitCookie$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'RateLimitHeader$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'RateLimitQueryArgument$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'RateLimitQueryString$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'RateLimitUriPath$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'RegexMatchStatement$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'RegexPatternSetReferenceStatement$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'SizeConstraintStatement$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'SqliMatchStatement$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'XssMatchStatement$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', ], ], 'TimeWindow' => [ 'base' => '

In a GetSampledRequests request, the StartTime and EndTime objects specify the time range for which you want WAF to return a sample of web requests.

You must specify the times in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z". You can specify any time range in the previous three hours.

In a GetSampledRequests response, the StartTime and EndTime objects specify the time range for which WAF actually returned a sample of web requests. WAF gets the specified number of requests from among the first 5,000 requests that your Amazon Web Services resource receives during the specified time period. If your resource receives more than 5,000 requests during that period, WAF stops sampling after the 5,000th request. In that case, EndTime is the time that WAF received the 5,000th request.

', 'refs' => [ 'GetSampledRequestsRequest$TimeWindow' => '

The start date and time and the end date and time of the range for which you want GetSampledRequests to return a sample of requests. You must specify the times in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z". You can specify any time range in the previous three hours. If you specify a start time that\'s earlier than three hours ago, WAF sets it to three hours ago.

', 'GetSampledRequestsResponse$TimeWindow' => '

Usually, TimeWindow is the time range that you specified in the GetSampledRequests request. However, if your Amazon Web Services resource received more than 5,000 requests during the time range that you specified in the request, GetSampledRequests returns the time range for the first 5,000 requests. Times are in Coordinated Universal Time (UTC) format.

', ], ], 'TimeWindowDay' => [ 'base' => NULL, 'refs' => [ 'ManagedRuleSetVersion$ForecastedLifetime' => '

The amount of time you expect this version of your managed rule group to last, in days.

', 'VersionToPublish$ForecastedLifetime' => '

The amount of time the vendor expects this version of the managed rule group to last, in days.

', ], ], 'TimeWindowSecond' => [ 'base' => NULL, 'refs' => [ 'ImmunityTimeProperty$ImmunityTime' => '

The amount of time, in seconds, that a CAPTCHA or challenge timestamp is considered valid by WAF. The default setting is 300.

For the Challenge action, the minimum setting is 300.

', ], ], 'Timestamp' => [ 'base' => NULL, 'refs' => [ 'APIKeySummary$CreationTimestamp' => '

The date and time that the key was created.

', 'GetDecryptedAPIKeyResponse$CreationTimestamp' => '

The date and time that the key was created.

', 'ManagedRuleGroupVersion$LastUpdateTimestamp' => '

The date and time that the managed rule group owner updated the rule group version information.

', 'ManagedRuleSetVersion$PublishTimestamp' => '

The time that you first published this version.

Times are in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z".

', 'ManagedRuleSetVersion$LastUpdateTimestamp' => '

The last time that you updated this version.

Times are in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z".

', 'ManagedRuleSetVersion$ExpiryTimestamp' => '

The time that this version is set to expire.

Times are in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z".

', 'MobileSdkRelease$Timestamp' => '

The timestamp of the release.

', 'ReleaseSummary$Timestamp' => '

The timestamp of the release.

', 'SampledHTTPRequest$Timestamp' => '

The time at which WAF received the request from your Amazon Web Services resource, in Unix time format (in seconds).

', 'TimeWindow$StartTime' => '

The beginning of the time range from which you want GetSampledRequests to return a sample of the requests that your Amazon Web Services resource received. You must specify the times in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z". You can specify any time range in the previous three hours.

', 'TimeWindow$EndTime' => '

The end of the time range from which you want GetSampledRequests to return a sample of the requests that your Amazon Web Services resource received. You must specify the times in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z". You can specify any time range in the previous three hours.

', 'UpdateManagedRuleSetVersionExpiryDateRequest$ExpiryTimestamp' => '

The time that you want the version to expire.

Times are in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z".

', 'UpdateManagedRuleSetVersionExpiryDateResponse$ExpiryTimestamp' => '

The time that the version will expire.

Times are in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z".

', ], ], 'TokenDomain' => [ 'base' => NULL, 'refs' => [ 'APIKeyTokenDomains$member' => NULL, 'TokenDomains$member' => NULL, ], ], 'TokenDomains' => [ 'base' => NULL, 'refs' => [ 'APIKeySummary$TokenDomains' => '

The token domains that are defined in this API key.

', 'CreateWebACLRequest$TokenDomains' => '

Specifies the domains that WAF should accept in a web request token. This enables the use of tokens across multiple protected websites. When WAF provides a token, it uses the domain of the Amazon Web Services resource that the web ACL is protecting. If you don\'t specify a list of token domains, WAF accepts tokens only for the domain of the protected resource. With a token domain list, WAF accepts the resource\'s host domain plus all domains in the token domain list, including their prefixed subdomains.

Example JSON: "TokenDomains": { "mywebsite.com", "myotherwebsite.com" }

Public suffixes aren\'t allowed. For example, you can\'t use gov.au or co.uk as token domains.

', 'GetDecryptedAPIKeyResponse$TokenDomains' => '

The token domains that are defined in this API key.

', 'UpdateWebACLRequest$TokenDomains' => '

Specifies the domains that WAF should accept in a web request token. This enables the use of tokens across multiple protected websites. When WAF provides a token, it uses the domain of the Amazon Web Services resource that the web ACL is protecting. If you don\'t specify a list of token domains, WAF accepts tokens only for the domain of the protected resource. With a token domain list, WAF accepts the resource\'s host domain plus all domains in the token domain list, including their prefixed subdomains.

Example JSON: "TokenDomains": { "mywebsite.com", "myotherwebsite.com" }

Public suffixes aren\'t allowed. For example, you can\'t use gov.au or co.uk as token domains.

', 'WebACL$TokenDomains' => '

Specifies the domains that WAF should accept in a web request token. This enables the use of tokens across multiple protected websites. When WAF provides a token, it uses the domain of the Amazon Web Services resource that the web ACL is protecting. If you don\'t specify a list of token domains, WAF accepts tokens only for the domain of the protected resource. With a token domain list, WAF accepts the resource\'s host domain plus all domains in the token domain list, including their prefixed subdomains.

', ], ], 'URIString' => [ 'base' => NULL, 'refs' => [ 'HTTPRequest$URI' => '

The URI path of the request, which identifies the resource, for example, /images/daily-ad.jpg.

', ], ], 'UntagResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'UntagResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateIPSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateIPSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateManagedRuleSetVersionExpiryDateRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateManagedRuleSetVersionExpiryDateResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateRegexPatternSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateRegexPatternSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateRuleGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateRuleGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateWebACLRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateWebACLResponse' => [ 'base' => NULL, 'refs' => [], ], 'UriPath' => [ 'base' => '

Inspect the path component of the URI of the web request. This is the part of the web request that identifies a resource. For example, /images/daily-ad.jpg.

This is used in the FieldToMatch specification for some web request component types.

JSON specification: "UriPath": {}

', 'refs' => [ 'FieldToMatch$UriPath' => '

Inspect the request URI path. This is the part of the web request that identifies a resource, for example, /images/daily-ad.jpg.

', ], ], 'UsernameField' => [ 'base' => '

The name of the field in the request payload that contains your customer\'s username.

This data type is used in the RequestInspection and RequestInspectionACFP data types.

', 'refs' => [ 'ManagedRuleGroupConfig$UsernameField' => '

Instead of this setting, provide your configuration under the request inspection configuration for AWSManagedRulesATPRuleSet or AWSManagedRulesACFPRuleSet.

', 'RequestInspection$UsernameField' => '

The name of the field in the request payload that contains your customer\'s username.

How you specify this depends on the request inspection payload type.

  • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "username": "THE_USERNAME" } }, the username field specification is /form/username.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with the input element named username1, the username field specification is username1

', 'RequestInspectionACFP$UsernameField' => '

The name of the field in the request payload that contains your customer\'s username.

How you specify this depends on the request inspection payload type.

  • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "username": "THE_USERNAME" } }, the username field specification is /form/username.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with the input element named username1, the username field specification is username1

', ], ], 'VendorName' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedProductsByVendorRequest$VendorName' => '

The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

', 'DescribeManagedRuleGroupRequest$VendorName' => '

The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

', 'ListAvailableManagedRuleGroupVersionsRequest$VendorName' => '

The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

', 'ManagedProductDescriptor$VendorName' => '

The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

', 'ManagedRuleGroupStatement$VendorName' => '

The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

', 'ManagedRuleGroupSummary$VendorName' => '

The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

', ], ], 'VersionKeyString' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedRuleGroupRequest$VersionName' => '

The version of the rule group. You can only use a version that is not scheduled for expiration. If you don\'t provide this, WAF uses the vendor\'s default version.

', 'DescribeManagedRuleGroupResponse$VersionName' => '

The managed rule group\'s version.

', 'GenerateMobileSdkReleaseUrlRequest$ReleaseVersion' => '

The release version. For the latest available version, specify LATEST.

', 'GetMobileSdkReleaseRequest$ReleaseVersion' => '

The release version. For the latest available version, specify LATEST.

', 'ListAvailableManagedRuleGroupVersionsResponse$CurrentDefaultVersion' => '

The name of the version that\'s currently set as the default.

', 'ManagedRuleGroupStatement$Version' => '

The version of the managed rule group to use. If you specify this, the version setting is fixed until you change it. If you don\'t specify this, WAF uses the vendor\'s default version, and then keeps the version at the vendor\'s default when the vendor updates the managed rule group settings.

', 'ManagedRuleGroupVersion$Name' => '

The version name.

', 'ManagedRuleSet$RecommendedVersion' => '

The version that you would like your customers to use.

', 'MobileSdkRelease$ReleaseVersion' => '

The release version.

', 'PublishedVersions$key' => NULL, 'PutManagedRuleSetVersionsRequest$RecommendedVersion' => '

The version of the named managed rule group that you\'d like your customers to choose, from among your version offerings.

', 'ReleaseSummary$ReleaseVersion' => '

The release version.

', 'UpdateManagedRuleSetVersionExpiryDateRequest$VersionToExpire' => '

The version that you want to remove from your list of offerings for the named managed rule group.

', 'UpdateManagedRuleSetVersionExpiryDateResponse$ExpiringVersion' => '

The version that is set to expire.

', 'VersionsToPublish$key' => NULL, ], ], 'VersionToPublish' => [ 'base' => '

A version of the named managed rule group, that the rule group\'s vendor publishes for use by customers.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

', 'refs' => [ 'VersionsToPublish$value' => NULL, ], ], 'VersionsToPublish' => [ 'base' => NULL, 'refs' => [ 'PutManagedRuleSetVersionsRequest$VersionsToPublish' => '

The versions of the named managed rule group that you want to offer to your customers.

', ], ], 'VisibilityConfig' => [ 'base' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

', 'refs' => [ 'CreateRuleGroupRequest$VisibilityConfig' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

', 'CreateWebACLRequest$VisibilityConfig' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

', 'FirewallManagerRuleGroup$VisibilityConfig' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

', 'Rule$VisibilityConfig' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

If you change the name of a Rule after you create it and you want the rule\'s metric name to reflect the change, update the metric name as well. WAF doesn\'t automatically update the metric name.

', 'RuleGroup$VisibilityConfig' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

', 'UpdateRuleGroupRequest$VisibilityConfig' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

', 'UpdateWebACLRequest$VisibilityConfig' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

', 'WebACL$VisibilityConfig' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

', ], ], 'WAFAssociatedItemException' => [ 'base' => '

WAF couldn’t perform the operation because your resource is being used by another resource or it’s associated with another resource.

', 'refs' => [], ], 'WAFConfigurationWarningException' => [ 'base' => '

The operation failed because you are inspecting the web request body, headers, or cookies without specifying how to handle oversize components. Rules that inspect the body must either provide an OversizeHandling configuration or they must be preceded by a SizeConstraintStatement that blocks the body content from being too large. Rules that inspect the headers or cookies must provide an OversizeHandling configuration.

Provide the handling configuration and retry your operation.

Alternately, you can suppress this warning by adding the following tag to the resource that you provide to this operation: Tag (key:WAF:OversizeFieldsHandlingConstraintOptOut, value:true).

', 'refs' => [], ], 'WAFDuplicateItemException' => [ 'base' => '

WAF couldn’t perform the operation because the resource that you tried to save is a duplicate of an existing one.

', 'refs' => [], ], 'WAFExpiredManagedRuleGroupVersionException' => [ 'base' => '

The operation failed because the specified version for the managed rule group has expired. You can retrieve the available versions for the managed rule group by calling ListAvailableManagedRuleGroupVersions.

', 'refs' => [], ], 'WAFInternalErrorException' => [ 'base' => '

Your request is valid, but WAF couldn’t perform the operation because of a system problem. Retry your request.

', 'refs' => [], ], 'WAFInvalidOperationException' => [ 'base' => '

The operation isn\'t valid.

', 'refs' => [], ], 'WAFInvalidParameterException' => [ 'base' => '

The operation failed because WAF didn\'t recognize a parameter in the request. For example:

  • You specified a parameter name or value that isn\'t valid.

  • Your nested statement isn\'t valid. You might have tried to nest a statement that can’t be nested.

  • You tried to update a WebACL with a DefaultAction that isn\'t among the types available at DefaultAction.

  • Your request references an ARN that is malformed, or corresponds to a resource with which a web ACL can\'t be associated.

', 'refs' => [], ], 'WAFInvalidPermissionPolicyException' => [ 'base' => '

The operation failed because the specified policy isn\'t in the proper format.

The policy specifications must conform to the following:

  • The policy must be composed using IAM Policy version 2012-10-17.

  • The policy must include specifications for Effect, Action, and Principal.

  • Effect must specify Allow.

  • Action must specify wafv2:CreateWebACL, wafv2:UpdateWebACL, and wafv2:PutFirewallManagerRuleGroups and may optionally specify wafv2:GetRuleGroup. WAF rejects any extra actions or wildcard actions in the policy.

  • The policy must not include a Resource parameter.

For more information, see IAM Policies.

', 'refs' => [], ], 'WAFInvalidResourceException' => [ 'base' => '

WAF couldn’t perform the operation because the resource that you requested isn’t valid. Check the resource, and try again.

', 'refs' => [], ], 'WAFLimitsExceededException' => [ 'base' => '

WAF couldn’t perform the operation because you exceeded your resource limit. For example, the maximum number of WebACL objects that you can create for an Amazon Web Services account. For more information, see WAF quotas in the WAF Developer Guide.

', 'refs' => [], ], 'WAFLogDestinationPermissionIssueException' => [ 'base' => '

The operation failed because you don\'t have the permissions that your logging configuration requires. For information, see Logging web ACL traffic information in the WAF Developer Guide.

', 'refs' => [], ], 'WAFNonexistentItemException' => [ 'base' => '

WAF couldn’t perform the operation because your resource doesn\'t exist. If you\'ve just created a resource that you\'re using in this operation, you might just need to wait a few minutes. It can take from a few seconds to a number of minutes for changes to propagate.

', 'refs' => [], ], 'WAFOptimisticLockException' => [ 'base' => '

WAF couldn’t save your changes because you tried to update or delete a resource that has changed since you last retrieved it. Get the resource again, make any changes you need to make to the new copy, and retry your operation.

', 'refs' => [], ], 'WAFServiceLinkedRoleErrorException' => [ 'base' => '

WAF is not able to access the service linked role. This can be caused by a previous PutLoggingConfiguration request, which can lock the service linked role for about 20 seconds. Please try your request again. The service linked role can also be locked by a previous DeleteServiceLinkedRole request, which can lock the role for 15 minutes or more. If you recently made a call to DeleteServiceLinkedRole, wait at least 15 minutes and try the request again. If you receive this same exception again, you will have to wait additional time until the role is unlocked.

', 'refs' => [], ], 'WAFSubscriptionNotFoundException' => [ 'base' => '

You tried to use a managed rule group that\'s available by subscription, but you aren\'t subscribed to it yet.

', 'refs' => [], ], 'WAFTagOperationException' => [ 'base' => '

An error occurred during the tagging operation. Retry your request.

', 'refs' => [], ], 'WAFTagOperationInternalErrorException' => [ 'base' => '

WAF couldn’t perform your tagging operation because of an internal error. Retry your request.

', 'refs' => [], ], 'WAFUnavailableEntityException' => [ 'base' => '

WAF couldn’t retrieve a resource that you specified for this operation. If you\'ve just created a resource that you\'re using in this operation, you might just need to wait a few minutes. It can take from a few seconds to a number of minutes for changes to propagate. Verify the resources that you are specifying in your request parameters and then retry the operation.

', 'refs' => [], ], 'WAFUnsupportedAggregateKeyTypeException' => [ 'base' => '

The rule that you\'ve named doesn\'t aggregate solely on the IP address or solely on the forwarded IP address. This call is only available for rate-based rules with an AggregateKeyType setting of IP or FORWARDED_IP.

', 'refs' => [], ], 'WebACL' => [ 'base' => '

A web ACL defines a collection of rules to use to inspect and control web requests. Each rule has a statement that defines what to look for in web requests and an action that WAF applies to requests that match the statement. In the web ACL, you assign a default action to take (allow, block) for any request that does not match any of the rules. The rules in a web ACL can be a combination of the types Rule, RuleGroup, and managed rule group. You can associate a web ACL with one or more Amazon Web Services resources to protect. The resources can be an Amazon CloudFront distribution, an Amazon API Gateway REST API, an Application Load Balancer, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

', 'refs' => [ 'GetWebACLForResourceResponse$WebACL' => '

The web ACL that is associated with the resource. If there is no associated resource, WAF returns a null web ACL.

', 'GetWebACLResponse$WebACL' => '

The web ACL specification. You can modify the settings in this web ACL and use it to update this web ACL or create a new one.

', ], ], 'WebACLSummaries' => [ 'base' => NULL, 'refs' => [ 'ListWebACLsResponse$WebACLs' => '

Array of web ACLs. If you specified a Limit in your request, this might not be the full list.

', ], ], 'WebACLSummary' => [ 'base' => '

High-level information about a WebACL, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a WebACL, and the ARN, that you provide to operations like AssociateWebACL.

', 'refs' => [ 'CreateWebACLResponse$Summary' => '

High-level information about a WebACL, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a WebACL, and the ARN, that you provide to operations like AssociateWebACL.

', 'WebACLSummaries$member' => NULL, ], ], 'XssMatchStatement' => [ 'base' => '

A rule statement that inspects for cross-site scripting (XSS) attacks. In XSS attacks, the attacker uses vulnerabilities in a benign website as a vehicle to inject malicious client-site scripts into other legitimate web browsers.

', 'refs' => [ 'Statement$XssMatchStatement' => '

A rule statement that inspects for cross-site scripting (XSS) attacks. In XSS attacks, the attacker uses vulnerabilities in a benign website as a vehicle to inject malicious client-site scripts into other legitimate web browsers.

', ], ], ],]; +return [ 'version' => '2.0', 'service' => 'WAF

This is the latest version of the WAF API, released in November, 2019. The names of the entities that you use to access this API, like endpoints and namespaces, all have the versioning information added, like "V2" or "v2", to distinguish from the prior version. We recommend migrating your resources to this version, because it has a number of significant improvements.

If you used WAF prior to this release, you can\'t use this WAFV2 API to access any WAF resources that you created before. You can access your old rules, web ACLs, and other WAF resources only through the WAF Classic APIs. The WAF Classic APIs have retained the prior names, endpoints, and namespaces.

For information, including how to migrate your WAF resources to this version, see the WAF Developer Guide.

WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to an Amazon CloudFront distribution, Amazon API Gateway REST API, Application Load Balancer, AppSync GraphQL API, Amazon Cognito user pool, App Runner service, or Amazon Web Services Verified Access instance. WAF also lets you control access to your content, to protect the Amazon Web Services resource that WAF is monitoring. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, the protected resource responds to requests with either the requested content, an HTTP 403 status code (Forbidden), or with a custom response.

This API guide is for developers who need detailed information about WAF API actions, data types, and errors. For detailed information about WAF features and guidance for configuring and using WAF, see the WAF Developer Guide.

You can make calls using the endpoints listed in WAF endpoints and quotas.

  • For regional applications, you can use any of the endpoints in the list. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

  • For Amazon CloudFront applications, you must use the API endpoint listed for US East (N. Virginia): us-east-1.

Alternatively, you can use one of the Amazon Web Services SDKs to access an API that\'s tailored to the programming language or platform that you\'re using. For more information, see Amazon Web Services SDKs.

We currently provide two versions of the WAF API: this API and the prior versions, the classic WAF APIs. This new API provides the same functionality as the older versions, with the following major improvements:

  • You use one API for both global and regional applications. Where you need to distinguish the scope, you specify a Scope parameter and set it to CLOUDFRONT or REGIONAL.

  • You can define a web ACL or rule group with a single call, and update it with a single call. You define all rule specifications in JSON format, and pass them to your rule group or web ACL calls.

  • The limits WAF places on the use of rules more closely reflects the cost of running each type of rule. Rule groups include capacity settings, so you know the maximum cost of a rule group when you use it.

', 'operations' => [ 'AssociateWebACL' => '

Associates a web ACL with a regional application resource, to protect the resource. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

For Amazon CloudFront, don\'t use this call. Instead, use your CloudFront distribution configuration. To associate a web ACL, in the CloudFront call UpdateDistribution, set the web ACL ID to the Amazon Resource Name (ARN) of the web ACL. For information, see UpdateDistribution in the Amazon CloudFront Developer Guide.

Required permissions for customer-managed IAM policies

This call requires permissions that are specific to the protected resource type. For details, see Permissions for AssociateWebACL in the WAF Developer Guide.

Temporary inconsistencies during updates

When you create or change a web ACL or other WAF resources, the changes take a small amount of time to propagate to all areas where the resources are stored. The propagation time can be from a few seconds to a number of minutes.

The following are examples of the temporary inconsistencies that you might notice during change propagation:

  • After you create a web ACL, if you try to associate it with a resource, you might get an exception indicating that the web ACL is unavailable.

  • After you add a rule group to a web ACL, the new rule group rules might be in effect in one area where the web ACL is used and not in another.

  • After you change a rule action setting, you might see the old action in some places and the new action in others.

  • After you add an IP address to an IP set that is in use in a blocking rule, the new address might be blocked in one area while still allowed in another.

', 'CheckCapacity' => '

Returns the web ACL capacity unit (WCU) requirements for a specified scope and set of rules. You can use this to check the capacity requirements for the rules you want to use in a RuleGroup or WebACL.

WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.

', 'CreateAPIKey' => '

Creates an API key that contains a set of token domains.

API keys are required for the integration of the CAPTCHA API in your JavaScript client applications. The API lets you customize the placement and characteristics of the CAPTCHA puzzle for your end users. For more information about the CAPTCHA JavaScript integration, see WAF client application integration in the WAF Developer Guide.

You can use a single key for up to 5 domains. After you generate a key, you can copy it for use in your JavaScript integration.

', 'CreateIPSet' => '

Creates an IPSet, which you use to identify web requests that originate from specific IP addresses or ranges of IP addresses. For example, if you\'re receiving a lot of requests from a ranges of IP addresses, you can configure WAF to block them using an IPSet that lists those IP addresses.

', 'CreateRegexPatternSet' => '

Creates a RegexPatternSet, which you reference in a RegexPatternSetReferenceStatement, to have WAF inspect a web request component for the specified patterns.

', 'CreateRuleGroup' => '

Creates a RuleGroup per the specifications provided.

A rule group defines a collection of rules to inspect and control web requests that you can use in a WebACL. When you create a rule group, you define an immutable capacity limit. If you update a rule group, you must stay within the capacity. This allows others to reuse the rule group with confidence in its capacity requirements.

', 'CreateWebACL' => '

Creates a WebACL per the specifications provided.

A web ACL defines a collection of rules to use to inspect and control web requests. Each rule has a statement that defines what to look for in web requests and an action that WAF applies to requests that match the statement. In the web ACL, you assign a default action to take (allow, block) for any request that does not match any of the rules. The rules in a web ACL can be a combination of the types Rule, RuleGroup, and managed rule group. You can associate a web ACL with one or more Amazon Web Services resources to protect. The resources can be an Amazon CloudFront distribution, an Amazon API Gateway REST API, an Application Load Balancer, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

', 'DeleteAPIKey' => '

Deletes the specified API key.

After you delete a key, it can take up to 24 hours for WAF to disallow use of the key in all regions.

', 'DeleteFirewallManagerRuleGroups' => '

Deletes all rule groups that are managed by Firewall Manager for the specified web ACL.

You can only use this if ManagedByFirewallManager is false in the specified WebACL.

', 'DeleteIPSet' => '

Deletes the specified IPSet.

', 'DeleteLoggingConfiguration' => '

Deletes the LoggingConfiguration from the specified web ACL.

', 'DeletePermissionPolicy' => '

Permanently deletes an IAM policy from the specified rule group.

You must be the owner of the rule group to perform this operation.

', 'DeleteRegexPatternSet' => '

Deletes the specified RegexPatternSet.

', 'DeleteRuleGroup' => '

Deletes the specified RuleGroup.

', 'DeleteWebACL' => '

Deletes the specified WebACL.

You can only use this if ManagedByFirewallManager is false in the specified WebACL.

Before deleting any web ACL, first disassociate it from all resources.

  • To retrieve a list of the resources that are associated with a web ACL, use the following calls:

  • To disassociate a resource from a web ACL, use the following calls:

    • For regional resources, call DisassociateWebACL.

    • For Amazon CloudFront distributions, provide an empty web ACL ID in the CloudFront call UpdateDistribution. For information, see UpdateDistribution in the Amazon CloudFront API Reference.

', 'DescribeAllManagedProducts' => '

Provides high-level information for the Amazon Web Services Managed Rules rule groups and Amazon Web Services Marketplace managed rule groups.

', 'DescribeManagedProductsByVendor' => '

Provides high-level information for the managed rule groups owned by a specific vendor.

', 'DescribeManagedRuleGroup' => '

Provides high-level information for a managed rule group, including descriptions of the rules.

', 'DisassociateWebACL' => '

Disassociates the specified regional application resource from any existing web ACL association. A resource can have at most one web ACL association. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

For Amazon CloudFront, don\'t use this call. Instead, use your CloudFront distribution configuration. To disassociate a web ACL, provide an empty web ACL ID in the CloudFront call UpdateDistribution. For information, see UpdateDistribution in the Amazon CloudFront API Reference.

Required permissions for customer-managed IAM policies

This call requires permissions that are specific to the protected resource type. For details, see Permissions for DisassociateWebACL in the WAF Developer Guide.

', 'GenerateMobileSdkReleaseUrl' => '

Generates a presigned download URL for the specified release of the mobile SDK.

The mobile SDK is not generally available. Customers who have access to the mobile SDK can use it to establish and manage WAF tokens for use in HTTP(S) requests from a mobile device to WAF. For more information, see WAF client application integration in the WAF Developer Guide.

', 'GetDecryptedAPIKey' => '

Returns your API key in decrypted form. Use this to check the token domains that you have defined for the key.

API keys are required for the integration of the CAPTCHA API in your JavaScript client applications. The API lets you customize the placement and characteristics of the CAPTCHA puzzle for your end users. For more information about the CAPTCHA JavaScript integration, see WAF client application integration in the WAF Developer Guide.

', 'GetIPSet' => '

Retrieves the specified IPSet.

', 'GetLoggingConfiguration' => '

Returns the LoggingConfiguration for the specified web ACL.

', 'GetManagedRuleSet' => '

Retrieves the specified managed rule set.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

', 'GetMobileSdkRelease' => '

Retrieves information for the specified mobile SDK release, including release notes and tags.

The mobile SDK is not generally available. Customers who have access to the mobile SDK can use it to establish and manage WAF tokens for use in HTTP(S) requests from a mobile device to WAF. For more information, see WAF client application integration in the WAF Developer Guide.

', 'GetPermissionPolicy' => '

Returns the IAM policy that is attached to the specified rule group.

You must be the owner of the rule group to perform this operation.

', 'GetRateBasedStatementManagedKeys' => '

Retrieves the IP addresses that are currently blocked by a rate-based rule instance. This is only available for rate-based rules that aggregate solely on the IP address or on the forwarded IP address.

The maximum number of addresses that can be blocked for a single rate-based rule instance is 10,000. If more than 10,000 addresses exceed the rate limit, those with the highest rates are blocked.

For a rate-based rule that you\'ve defined inside a rule group, provide the name of the rule group reference statement in your request, in addition to the rate-based rule name and the web ACL name.

WAF monitors web requests and manages keys independently for each unique combination of web ACL, optional rule group, and rate-based rule. For example, if you define a rate-based rule inside a rule group, and then use the rule group in a web ACL, WAF monitors web requests and manages keys for that web ACL, rule group reference statement, and rate-based rule instance. If you use the same rule group in a second web ACL, WAF monitors web requests and manages keys for this second usage completely independent of your first.

', 'GetRegexPatternSet' => '

Retrieves the specified RegexPatternSet.

', 'GetRuleGroup' => '

Retrieves the specified RuleGroup.

', 'GetSampledRequests' => '

Gets detailed information about a specified number of requests--a sample--that WAF randomly selects from among the first 5,000 requests that your Amazon Web Services resource received during a time range that you choose. You can specify a sample size of up to 500 requests, and you can specify any time range in the previous three hours.

GetSampledRequests returns a time range, which is usually the time range that you specified. However, if your resource (such as a CloudFront distribution) received 5,000 requests before the specified time range elapsed, GetSampledRequests returns an updated time range. This new time range indicates the actual period during which WAF selected the requests in the sample.

', 'GetWebACL' => '

Retrieves the specified WebACL.

', 'GetWebACLForResource' => '

Retrieves the WebACL for the specified resource.

This call uses GetWebACL, to verify that your account has permission to access the retrieved web ACL. If you get an error that indicates that your account isn\'t authorized to perform wafv2:GetWebACL on the resource, that error won\'t be included in your CloudTrail event history.

For Amazon CloudFront, don\'t use this call. Instead, call the CloudFront action GetDistributionConfig. For information, see GetDistributionConfig in the Amazon CloudFront API Reference.

Required permissions for customer-managed IAM policies

This call requires permissions that are specific to the protected resource type. For details, see Permissions for GetWebACLForResource in the WAF Developer Guide.

', 'ListAPIKeys' => '

Retrieves a list of the API keys that you\'ve defined for the specified scope.

API keys are required for the integration of the CAPTCHA API in your JavaScript client applications. The API lets you customize the placement and characteristics of the CAPTCHA puzzle for your end users. For more information about the CAPTCHA JavaScript integration, see WAF client application integration in the WAF Developer Guide.

', 'ListAvailableManagedRuleGroupVersions' => '

Returns a list of the available versions for the specified managed rule group.

', 'ListAvailableManagedRuleGroups' => '

Retrieves an array of managed rule groups that are available for you to use. This list includes all Amazon Web Services Managed Rules rule groups and all of the Amazon Web Services Marketplace managed rule groups that you\'re subscribed to.

', 'ListIPSets' => '

Retrieves an array of IPSetSummary objects for the IP sets that you manage.

', 'ListLoggingConfigurations' => '

Retrieves an array of your LoggingConfiguration objects.

', 'ListManagedRuleSets' => '

Retrieves the managed rule sets that you own.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

', 'ListMobileSdkReleases' => '

Retrieves a list of the available releases for the mobile SDK and the specified device platform.

The mobile SDK is not generally available. Customers who have access to the mobile SDK can use it to establish and manage WAF tokens for use in HTTP(S) requests from a mobile device to WAF. For more information, see WAF client application integration in the WAF Developer Guide.

', 'ListRegexPatternSets' => '

Retrieves an array of RegexPatternSetSummary objects for the regex pattern sets that you manage.

', 'ListResourcesForWebACL' => '

Retrieves an array of the Amazon Resource Names (ARNs) for the regional resources that are associated with the specified web ACL.

For Amazon CloudFront, don\'t use this call. Instead, use the CloudFront call ListDistributionsByWebACLId. For information, see ListDistributionsByWebACLId in the Amazon CloudFront API Reference.

Required permissions for customer-managed IAM policies

This call requires permissions that are specific to the protected resource type. For details, see Permissions for ListResourcesForWebACL in the WAF Developer Guide.

', 'ListRuleGroups' => '

Retrieves an array of RuleGroupSummary objects for the rule groups that you manage.

', 'ListTagsForResource' => '

Retrieves the TagInfoForResource for the specified resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.

You can tag the Amazon Web Services resources that you manage through WAF: web ACLs, rule groups, IP sets, and regex pattern sets. You can\'t manage or view tags through the WAF console.

', 'ListWebACLs' => '

Retrieves an array of WebACLSummary objects for the web ACLs that you manage.

', 'PutLoggingConfiguration' => '

Enables the specified LoggingConfiguration, to start logging from a web ACL, according to the configuration provided.

This operation completely replaces any mutable specifications that you already have for a logging configuration with the ones that you provide to this call.

To modify an existing logging configuration, do the following:

  1. Retrieve it by calling GetLoggingConfiguration

  2. Update its settings as needed

  3. Provide the complete logging configuration specification to this call

You can define one logging destination per web ACL.

You can access information about the traffic that WAF inspects using the following steps:

  1. Create your logging destination. You can use an Amazon CloudWatch Logs log group, an Amazon Simple Storage Service (Amazon S3) bucket, or an Amazon Kinesis Data Firehose.

    The name that you give the destination must start with aws-waf-logs-. Depending on the type of destination, you might need to configure additional settings or permissions.

    For configuration requirements and pricing information for each destination type, see Logging web ACL traffic in the WAF Developer Guide.

  2. Associate your logging destination to your web ACL using a PutLoggingConfiguration request.

When you successfully enable logging using a PutLoggingConfiguration request, WAF creates an additional role or policy that is required to write logs to the logging destination. For an Amazon CloudWatch Logs log group, WAF creates a resource policy on the log group. For an Amazon S3 bucket, WAF creates a bucket policy. For an Amazon Kinesis Data Firehose, WAF creates a service-linked role.

For additional information about web ACL logging, see Logging web ACL traffic information in the WAF Developer Guide.

', 'PutManagedRuleSetVersions' => '

Defines the versions of your managed rule set that you are offering to the customers. Customers see your offerings as managed rule groups with versioning.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

Customers retrieve their managed rule group list by calling ListAvailableManagedRuleGroups. The name that you provide here for your managed rule set is the name the customer sees for the corresponding managed rule group. Customers can retrieve the available versions for a managed rule group by calling ListAvailableManagedRuleGroupVersions. You provide a rule group specification for each version. For each managed rule set, you must specify a version that you recommend using.

To initiate the expiration of a managed rule group version, use UpdateManagedRuleSetVersionExpiryDate.

', 'PutPermissionPolicy' => '

Attaches an IAM policy to the specified resource. Use this to share a rule group across accounts.

You must be the owner of the rule group to perform this operation.

This action is subject to the following restrictions:

  • You can attach only one policy with each PutPermissionPolicy request.

  • The ARN in the request must be a valid WAF RuleGroup ARN and the rule group must exist in the same Region.

  • The user making the request must be the owner of the rule group.

', 'TagResource' => '

Associates tags with the specified Amazon Web Services resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.

You can tag the Amazon Web Services resources that you manage through WAF: web ACLs, rule groups, IP sets, and regex pattern sets. You can\'t manage or view tags through the WAF console.

', 'UntagResource' => '

Disassociates tags from an Amazon Web Services resource. Tags are key:value pairs that you can associate with Amazon Web Services resources. For example, the tag key might be "customer" and the tag value might be "companyA." You can specify one or more tags to add to each container. You can add up to 50 tags to each Amazon Web Services resource.

', 'UpdateIPSet' => '

Updates the specified IPSet.

This operation completely replaces the mutable specifications that you already have for the IP set with the ones that you provide to this call.

To modify an IP set, do the following:

  1. Retrieve it by calling GetIPSet

  2. Update its settings as needed

  3. Provide the complete IP set specification to this call

Temporary inconsistencies during updates

When you create or change a web ACL or other WAF resources, the changes take a small amount of time to propagate to all areas where the resources are stored. The propagation time can be from a few seconds to a number of minutes.

The following are examples of the temporary inconsistencies that you might notice during change propagation:

  • After you create a web ACL, if you try to associate it with a resource, you might get an exception indicating that the web ACL is unavailable.

  • After you add a rule group to a web ACL, the new rule group rules might be in effect in one area where the web ACL is used and not in another.

  • After you change a rule action setting, you might see the old action in some places and the new action in others.

  • After you add an IP address to an IP set that is in use in a blocking rule, the new address might be blocked in one area while still allowed in another.

', 'UpdateManagedRuleSetVersionExpiryDate' => '

Updates the expiration information for your managed rule set. Use this to initiate the expiration of a managed rule group version. After you initiate expiration for a version, WAF excludes it from the response to ListAvailableManagedRuleGroupVersions for the managed rule group.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

', 'UpdateRegexPatternSet' => '

Updates the specified RegexPatternSet.

This operation completely replaces the mutable specifications that you already have for the regex pattern set with the ones that you provide to this call.

To modify a regex pattern set, do the following:

  1. Retrieve it by calling GetRegexPatternSet

  2. Update its settings as needed

  3. Provide the complete regex pattern set specification to this call

Temporary inconsistencies during updates

When you create or change a web ACL or other WAF resources, the changes take a small amount of time to propagate to all areas where the resources are stored. The propagation time can be from a few seconds to a number of minutes.

The following are examples of the temporary inconsistencies that you might notice during change propagation:

  • After you create a web ACL, if you try to associate it with a resource, you might get an exception indicating that the web ACL is unavailable.

  • After you add a rule group to a web ACL, the new rule group rules might be in effect in one area where the web ACL is used and not in another.

  • After you change a rule action setting, you might see the old action in some places and the new action in others.

  • After you add an IP address to an IP set that is in use in a blocking rule, the new address might be blocked in one area while still allowed in another.

', 'UpdateRuleGroup' => '

Updates the specified RuleGroup.

This operation completely replaces the mutable specifications that you already have for the rule group with the ones that you provide to this call.

To modify a rule group, do the following:

  1. Retrieve it by calling GetRuleGroup

  2. Update its settings as needed

  3. Provide the complete rule group specification to this call

A rule group defines a collection of rules to inspect and control web requests that you can use in a WebACL. When you create a rule group, you define an immutable capacity limit. If you update a rule group, you must stay within the capacity. This allows others to reuse the rule group with confidence in its capacity requirements.

Temporary inconsistencies during updates

When you create or change a web ACL or other WAF resources, the changes take a small amount of time to propagate to all areas where the resources are stored. The propagation time can be from a few seconds to a number of minutes.

The following are examples of the temporary inconsistencies that you might notice during change propagation:

  • After you create a web ACL, if you try to associate it with a resource, you might get an exception indicating that the web ACL is unavailable.

  • After you add a rule group to a web ACL, the new rule group rules might be in effect in one area where the web ACL is used and not in another.

  • After you change a rule action setting, you might see the old action in some places and the new action in others.

  • After you add an IP address to an IP set that is in use in a blocking rule, the new address might be blocked in one area while still allowed in another.

', 'UpdateWebACL' => '

Updates the specified WebACL. While updating a web ACL, WAF provides continuous coverage to the resources that you have associated with the web ACL.

This operation completely replaces the mutable specifications that you already have for the web ACL with the ones that you provide to this call.

To modify a web ACL, do the following:

  1. Retrieve it by calling GetWebACL

  2. Update its settings as needed

  3. Provide the complete web ACL specification to this call

A web ACL defines a collection of rules to use to inspect and control web requests. Each rule has a statement that defines what to look for in web requests and an action that WAF applies to requests that match the statement. In the web ACL, you assign a default action to take (allow, block) for any request that does not match any of the rules. The rules in a web ACL can be a combination of the types Rule, RuleGroup, and managed rule group. You can associate a web ACL with one or more Amazon Web Services resources to protect. The resources can be an Amazon CloudFront distribution, an Amazon API Gateway REST API, an Application Load Balancer, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

Temporary inconsistencies during updates

When you create or change a web ACL or other WAF resources, the changes take a small amount of time to propagate to all areas where the resources are stored. The propagation time can be from a few seconds to a number of minutes.

The following are examples of the temporary inconsistencies that you might notice during change propagation:

  • After you create a web ACL, if you try to associate it with a resource, you might get an exception indicating that the web ACL is unavailable.

  • After you add a rule group to a web ACL, the new rule group rules might be in effect in one area where the web ACL is used and not in another.

  • After you change a rule action setting, you might see the old action in some places and the new action in others.

  • After you add an IP address to an IP set that is in use in a blocking rule, the new address might be blocked in one area while still allowed in another.

', ], 'shapes' => [ 'APIKey' => [ 'base' => NULL, 'refs' => [ 'APIKeySummary$APIKey' => '

The generated, encrypted API key. You can copy this for use in your JavaScript CAPTCHA integration.

', 'CreateAPIKeyResponse$APIKey' => '

The generated, encrypted API key. You can copy this for use in your JavaScript CAPTCHA integration.

', 'DeleteAPIKeyRequest$APIKey' => '

The encrypted API key that you want to delete.

', 'GetDecryptedAPIKeyRequest$APIKey' => '

The encrypted API key.

', ], ], 'APIKeySummaries' => [ 'base' => NULL, 'refs' => [ 'ListAPIKeysResponse$APIKeySummaries' => '

The array of key summaries. If you specified a Limit in your request, this might not be the full list.

', ], ], 'APIKeySummary' => [ 'base' => '

Information for a single API key.

API keys are required for the integration of the CAPTCHA API in your JavaScript client applications. The API lets you customize the placement and characteristics of the CAPTCHA puzzle for your end users. For more information about the CAPTCHA JavaScript integration, see WAF client application integration in the WAF Developer Guide.

', 'refs' => [ 'APIKeySummaries$member' => NULL, ], ], 'APIKeyTokenDomains' => [ 'base' => NULL, 'refs' => [ 'CreateAPIKeyRequest$TokenDomains' => '

The client application domains that you want to use this API key for.

Example JSON: "TokenDomains": ["abc.com", "store.abc.com"]

Public suffixes aren\'t allowed. For example, you can\'t use gov.au or co.uk as token domains.

', ], ], 'APIKeyVersion' => [ 'base' => NULL, 'refs' => [ 'APIKeySummary$Version' => '

Internal value used by WAF to manage the key.

', ], ], 'AWSManagedRulesACFPRuleSet' => [ 'base' => '

Details for your use of the account creation fraud prevention managed rule group, AWSManagedRulesACFPRuleSet. This configuration is used in ManagedRuleGroupConfig.

', 'refs' => [ 'ManagedRuleGroupConfig$AWSManagedRulesACFPRuleSet' => '

Additional configuration for using the account creation fraud prevention (ACFP) managed rule group, AWSManagedRulesACFPRuleSet. Use this to provide account creation request information to the rule group. For web ACLs that protect CloudFront distributions, use this to also provide the information about how your distribution responds to account creation requests.

For information about using the ACFP managed rule group, see WAF Fraud Control account creation fraud prevention (ACFP) rule group and WAF Fraud Control account creation fraud prevention (ACFP) in the WAF Developer Guide.

', ], ], 'AWSManagedRulesATPRuleSet' => [ 'base' => '

Details for your use of the account takeover prevention managed rule group, AWSManagedRulesATPRuleSet. This configuration is used in ManagedRuleGroupConfig.

', 'refs' => [ 'ManagedRuleGroupConfig$AWSManagedRulesATPRuleSet' => '

Additional configuration for using the account takeover prevention (ATP) managed rule group, AWSManagedRulesATPRuleSet. Use this to provide login request information to the rule group. For web ACLs that protect CloudFront distributions, use this to also provide the information about how your distribution responds to login requests.

This configuration replaces the individual configuration fields in ManagedRuleGroupConfig and provides additional feature configuration.

For information about using the ATP managed rule group, see WAF Fraud Control account takeover prevention (ATP) rule group and WAF Fraud Control account takeover prevention (ATP) in the WAF Developer Guide.

', ], ], 'AWSManagedRulesBotControlRuleSet' => [ 'base' => '

Details for your use of the Bot Control managed rule group, AWSManagedRulesBotControlRuleSet. This configuration is used in ManagedRuleGroupConfig.

', 'refs' => [ 'ManagedRuleGroupConfig$AWSManagedRulesBotControlRuleSet' => '

Additional configuration for using the Bot Control managed rule group. Use this to specify the inspection level that you want to use. For information about using the Bot Control managed rule group, see WAF Bot Control rule group and WAF Bot Control in the WAF Developer Guide.

', ], ], 'Action' => [ 'base' => NULL, 'refs' => [ 'SampledHTTPRequest$Action' => '

The action that WAF applied to the request.

', 'SampledHTTPRequest$OverriddenAction' => '

Used only for rule group rules that have a rule action override in place in the web ACL. This is the action that the rule group rule is configured for, and not the action that was applied to the request. The action that WAF applied is the Action value.

', ], ], 'ActionCondition' => [ 'base' => '

A single action condition for a Condition in a logging filter.

', 'refs' => [ 'Condition$ActionCondition' => '

A single action condition. This is the action setting that a log record must contain in order to meet the condition.

', ], ], 'ActionValue' => [ 'base' => NULL, 'refs' => [ 'ActionCondition$Action' => '

The action setting that a log record must contain in order to meet the condition. This is the action that WAF applied to the web request.

For rule groups, this is either the configured rule action setting, or if you\'ve applied a rule action override to the rule, it\'s the override action. The value EXCLUDED_AS_COUNT matches on excluded rules and also on rules that have a rule action override of Count.

', ], ], 'AddressField' => [ 'base' => '

The name of a field in the request payload that contains part or all of your customer\'s primary physical address.

This data type is used in the RequestInspectionACFP data type.

', 'refs' => [ 'AddressFields$member' => NULL, ], ], 'AddressFields' => [ 'base' => NULL, 'refs' => [ 'RequestInspectionACFP$AddressFields' => '

The names of the fields in the request payload that contain your customer\'s primary physical address.

Order the address fields in the array exactly as they are ordered in the request payload.

How you specify the address fields depends on the request inspection payload type.

  • For JSON payloads, specify the field identifiers in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "primaryaddressline1": "THE_ADDRESS1", "primaryaddressline2": "THE_ADDRESS2", "primaryaddressline3": "THE_ADDRESS3" } }, the address field idenfiers are /form/primaryaddressline1, /form/primaryaddressline2, and /form/primaryaddressline3.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with input elements named primaryaddressline1, primaryaddressline2, and primaryaddressline3, the address fields identifiers are primaryaddressline1, primaryaddressline2, and primaryaddressline3.

', ], ], 'All' => [ 'base' => '

Inspect all of the elements that WAF has parsed and extracted from the web request component that you\'ve identified in your FieldToMatch specifications.

This is used in the FieldToMatch specification for some web request component types.

JSON specification: "All": {}

', 'refs' => [ 'CookieMatchPattern$All' => '

Inspect all cookies.

', 'HeaderMatchPattern$All' => '

Inspect all headers.

', 'JsonMatchPattern$All' => '

Match all of the elements. See also MatchScope in JsonBody.

You must specify either this setting or the IncludedPaths setting, but not both.

', ], ], 'AllQueryArguments' => [ 'base' => '

Inspect all query arguments of the web request.

This is used in the FieldToMatch specification for some web request component types.

JSON specification: "AllQueryArguments": {}

', 'refs' => [ 'FieldToMatch$AllQueryArguments' => '

Inspect all query arguments.

', ], ], 'AllowAction' => [ 'base' => '

Specifies that WAF should allow the request and optionally defines additional custom handling for the request.

This is used in the context of other settings, for example to specify values for RuleAction and web ACL DefaultAction.

', 'refs' => [ 'DefaultAction$Allow' => '

Specifies that WAF should allow requests by default.

', 'RuleAction$Allow' => '

Instructs WAF to allow the web request.

', ], ], 'AndStatement' => [ 'base' => '

A logical rule statement used to combine other rule statements with AND logic. You provide more than one Statement within the AndStatement.

', 'refs' => [ 'Statement$AndStatement' => '

A logical rule statement used to combine other rule statements with AND logic. You provide more than one Statement within the AndStatement.

', ], ], 'AssociateWebACLRequest' => [ 'base' => NULL, 'refs' => [], ], 'AssociateWebACLResponse' => [ 'base' => NULL, 'refs' => [], ], 'AssociatedResourceType' => [ 'base' => NULL, 'refs' => [ 'RequestBody$key' => NULL, ], ], 'AssociationConfig' => [ 'base' => '

Specifies custom configurations for the associations between the web ACL and protected resources.

Use this to customize the maximum size of the request body that your protected CloudFront distributions forward to WAF for inspection. The default is 16 KB (16,384 bytes).

You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

', 'refs' => [ 'CreateWebACLRequest$AssociationConfig' => '

Specifies custom configurations for the associations between the web ACL and protected resources.

Use this to customize the maximum size of the request body that your protected CloudFront distributions forward to WAF for inspection. The default is 16 KB (16,384 bytes).

You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

', 'UpdateWebACLRequest$AssociationConfig' => '

Specifies custom configurations for the associations between the web ACL and protected resources.

Use this to customize the maximum size of the request body that your protected CloudFront distributions forward to WAF for inspection. The default is 16 KB (16,384 bytes).

You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

', 'WebACL$AssociationConfig' => '

Specifies custom configurations for the associations between the web ACL and protected resources.

Use this to customize the maximum size of the request body that your protected CloudFront distributions forward to WAF for inspection. The default is 16 KB (16,384 bytes).

You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

', ], ], 'BlockAction' => [ 'base' => '

Specifies that WAF should block the request and optionally defines additional custom handling for the response to the web request.

This is used in the context of other settings, for example to specify values for RuleAction and web ACL DefaultAction.

', 'refs' => [ 'DefaultAction$Block' => '

Specifies that WAF should block requests by default.

', 'RuleAction$Block' => '

Instructs WAF to block the web request.

', ], ], 'Body' => [ 'base' => '

Inspect the body of the web request. The body immediately follows the request headers.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

', 'refs' => [ 'FieldToMatch$Body' => '

Inspect the request body as plain text. The request body immediately follows the request headers. This is the part of a request that contains any additional data that you want to send to your web server as the HTTP request body, such as data from a form.

A limited amount of the request body is forwarded to WAF for inspection by the underlying host service. For regional resources, the limit is 8 KB (8,192 bytes) and for CloudFront distributions, the limit is 16 KB (16,384 bytes). For CloudFront distributions, you can increase the limit in the web ACL\'s AssociationConfig, for additional processing fees.

For information about how to handle oversized request bodies, see the Body object configuration.

', ], ], 'BodyParsingFallbackBehavior' => [ 'base' => NULL, 'refs' => [ 'JsonBody$InvalidFallbackBehavior' => '

What WAF should do if it fails to completely parse the JSON body. The options are the following:

  • EVALUATE_AS_STRING - Inspect the body as plain text. WAF applies the text transformations and inspection criteria that you defined for the JSON inspection to the body text string.

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

If you don\'t provide this setting, WAF parses and evaluates the content only up to the first parsing failure that it encounters.

WAF does its best to parse the entire JSON body, but might be forced to stop for reasons such as invalid characters, duplicate keys, truncation, and any content whose root node isn\'t an object or an array.

WAF parses the JSON in the following examples as two valid key, value pairs:

  • Missing comma: {"key1":"value1""key2":"value2"}

  • Missing colon: {"key1":"value1","key2""value2"}

  • Extra colons: {"key1"::"value1","key2""value2"}

', ], ], 'Boolean' => [ 'base' => NULL, 'refs' => [ 'AWSManagedRulesACFPRuleSet$EnableRegexInPath' => '

Allow the use of regular expressions in the registration page path and the account creation path.

', 'AWSManagedRulesATPRuleSet$EnableRegexInPath' => '

Allow the use of regular expressions in the login page path.

', 'AWSManagedRulesBotControlRuleSet$EnableMachineLearning' => '

Applies only to the targeted inspection level.

Determines whether to use machine learning (ML) to analyze your web traffic for bot-related activity. Machine learning is required for the Bot Control rules TGT_ML_CoordinatedActivityLow and TGT_ML_CoordinatedActivityMedium, which inspect for anomalous behavior that might indicate distributed, coordinated bot activity.

For more information about this choice, see the listing for these rules in the table at Bot Control rules listing in the WAF Developer Guide.

Default: TRUE

', 'LoggingConfiguration$ManagedByFirewallManager' => '

Indicates whether the logging configuration was created by Firewall Manager, as part of an WAF policy configuration. If true, only Firewall Manager can modify or delete the configuration.

', 'ManagedProductDescriptor$IsVersioningSupported' => '

Indicates whether the rule group is versioned.

', 'ManagedProductDescriptor$IsAdvancedManagedRuleSet' => '

Indicates whether the rule group provides an advanced set of protections, such as the the Amazon Web Services Managed Rules rule groups that are used for WAF intelligent threat mitigation.

', 'ManagedRuleGroupSummary$VersioningSupported' => '

Indicates whether the managed rule group is versioned. If it is, you can retrieve the versions list by calling ListAvailableManagedRuleGroupVersions.

', 'VisibilityConfig$SampledRequestsEnabled' => '

Indicates whether WAF should store a sampling of the web requests that match the rules. You can view the sampled requests through the WAF console.

', 'VisibilityConfig$CloudWatchMetricsEnabled' => '

Indicates whether the associated resource sends metrics to Amazon CloudWatch. For the list of available metrics, see WAF Metrics in the WAF Developer Guide.

For web ACLs, the metrics are for web requests that have the web ACL default action applied. WAF applies the default action to web requests that pass the inspection of all rules in the web ACL without being either allowed or blocked. For more information, see The web ACL default action in the WAF Developer Guide.

', 'WebACL$ManagedByFirewallManager' => '

Indicates whether this web ACL is managed by Firewall Manager. If true, then only Firewall Manager can delete the web ACL or any Firewall Manager rule groups in the web ACL.

', ], ], 'ByteMatchStatement' => [ 'base' => '

A rule statement that defines a string match search for WAF to apply to web requests. The byte match statement provides the bytes to search for, the location in requests that you want WAF to search, and other settings. The bytes to search for are typically a string that corresponds with ASCII characters. In the WAF console and the developer guide, this is called a string match statement.

', 'refs' => [ 'Statement$ByteMatchStatement' => '

A rule statement that defines a string match search for WAF to apply to web requests. The byte match statement provides the bytes to search for, the location in requests that you want WAF to search, and other settings. The bytes to search for are typically a string that corresponds with ASCII characters. In the WAF console and the developer guide, this is called a string match statement.

', ], ], 'CapacityUnit' => [ 'base' => NULL, 'refs' => [ 'CreateRuleGroupRequest$Capacity' => '

The web ACL capacity units (WCUs) required for this rule group.

When you create your own rule group, you define this, and you cannot change it after creation. When you add or modify the rules in a rule group, WAF enforces this limit. You can check the capacity for a set of rules using CheckCapacity.

WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.

', 'DescribeManagedRuleGroupResponse$Capacity' => '

The web ACL capacity units (WCUs) required for this rule group.

WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.

', 'ManagedRuleSetVersion$Capacity' => '

The web ACL capacity units (WCUs) required for this rule group.

WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.

', 'RuleGroup$Capacity' => '

The web ACL capacity units (WCUs) required for this rule group.

When you create your own rule group, you define this, and you cannot change it after creation. When you add or modify the rules in a rule group, WAF enforces this limit. You can check the capacity for a set of rules using CheckCapacity.

WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.

', ], ], 'CaptchaAction' => [ 'base' => '

Specifies that WAF should run a CAPTCHA check against the request:

  • If the request includes a valid, unexpired CAPTCHA token, WAF applies any custom request handling and labels that you\'ve configured and then allows the web request inspection to proceed to the next rule, similar to a CountAction.

  • If the request doesn\'t include a valid, unexpired token, WAF discontinues the web ACL evaluation of the request and blocks it from going to its intended destination.

    WAF generates a response that it sends back to the client, which includes the following:

    • The header x-amzn-waf-action with a value of captcha.

    • The HTTP status code 405 Method Not Allowed.

    • If the request contains an Accept header with a value of text/html, the response includes a CAPTCHA JavaScript page interstitial.

You can configure the expiration time in the CaptchaConfig ImmunityTimeProperty setting at the rule and web ACL level. The rule setting overrides the web ACL setting.

This action option is available for rules. It isn\'t available for web ACL default actions.

', 'refs' => [ 'RuleAction$Captcha' => '

Instructs WAF to run a CAPTCHA check against the web request.

', ], ], 'CaptchaConfig' => [ 'base' => '

Specifies how WAF should handle CAPTCHA evaluations. This is available at the web ACL level and in each rule.

', 'refs' => [ 'CreateWebACLRequest$CaptchaConfig' => '

Specifies how WAF should handle CAPTCHA evaluations for rules that don\'t have their own CaptchaConfig settings. If you don\'t specify this, WAF uses its default settings for CaptchaConfig.

', 'Rule$CaptchaConfig' => '

Specifies how WAF should handle CAPTCHA evaluations. If you don\'t specify this, WAF uses the CAPTCHA configuration that\'s defined for the web ACL.

', 'UpdateWebACLRequest$CaptchaConfig' => '

Specifies how WAF should handle CAPTCHA evaluations for rules that don\'t have their own CaptchaConfig settings. If you don\'t specify this, WAF uses its default settings for CaptchaConfig.

', 'WebACL$CaptchaConfig' => '

Specifies how WAF should handle CAPTCHA evaluations for rules that don\'t have their own CaptchaConfig settings. If you don\'t specify this, WAF uses its default settings for CaptchaConfig.

', ], ], 'CaptchaResponse' => [ 'base' => '

The result from the inspection of the web request for a valid CAPTCHA token.

', 'refs' => [ 'SampledHTTPRequest$CaptchaResponse' => '

The CAPTCHA response for the request.

', ], ], 'ChallengeAction' => [ 'base' => '

Specifies that WAF should run a Challenge check against the request to verify that the request is coming from a legitimate client session:

  • If the request includes a valid, unexpired challenge token, WAF applies any custom request handling and labels that you\'ve configured and then allows the web request inspection to proceed to the next rule, similar to a CountAction.

  • If the request doesn\'t include a valid, unexpired challenge token, WAF discontinues the web ACL evaluation of the request and blocks it from going to its intended destination.

    WAF then generates a challenge response that it sends back to the client, which includes the following:

    • The header x-amzn-waf-action with a value of challenge.

    • The HTTP status code 202 Request Accepted.

    • If the request contains an Accept header with a value of text/html, the response includes a JavaScript page interstitial with a challenge script.

    Challenges run silent browser interrogations in the background, and don\'t generally affect the end user experience.

    A challenge enforces token acquisition using an interstitial JavaScript challenge that inspects the client session for legitimate behavior. The challenge blocks bots or at least increases the cost of operating sophisticated bots.

    After the client session successfully responds to the challenge, it receives a new token from WAF, which the challenge script uses to resubmit the original request.

You can configure the expiration time in the ChallengeConfig ImmunityTimeProperty setting at the rule and web ACL level. The rule setting overrides the web ACL setting.

This action option is available for rules. It isn\'t available for web ACL default actions.

', 'refs' => [ 'RuleAction$Challenge' => '

Instructs WAF to run a Challenge check against the web request.

', ], ], 'ChallengeConfig' => [ 'base' => '

Specifies how WAF should handle Challenge evaluations. This is available at the web ACL level and in each rule.

', 'refs' => [ 'CreateWebACLRequest$ChallengeConfig' => '

Specifies how WAF should handle challenge evaluations for rules that don\'t have their own ChallengeConfig settings. If you don\'t specify this, WAF uses its default settings for ChallengeConfig.

', 'Rule$ChallengeConfig' => '

Specifies how WAF should handle Challenge evaluations. If you don\'t specify this, WAF uses the challenge configuration that\'s defined for the web ACL.

', 'UpdateWebACLRequest$ChallengeConfig' => '

Specifies how WAF should handle challenge evaluations for rules that don\'t have their own ChallengeConfig settings. If you don\'t specify this, WAF uses its default settings for ChallengeConfig.

', 'WebACL$ChallengeConfig' => '

Specifies how WAF should handle challenge evaluations for rules that don\'t have their own ChallengeConfig settings. If you don\'t specify this, WAF uses its default settings for ChallengeConfig.

', ], ], 'ChallengeResponse' => [ 'base' => '

The result from the inspection of the web request for a valid challenge token.

', 'refs' => [ 'SampledHTTPRequest$ChallengeResponse' => '

The Challenge response for the request.

', ], ], 'CheckCapacityRequest' => [ 'base' => NULL, 'refs' => [], ], 'CheckCapacityResponse' => [ 'base' => NULL, 'refs' => [], ], 'ComparisonOperator' => [ 'base' => NULL, 'refs' => [ 'SizeConstraintStatement$ComparisonOperator' => '

The operator to use to compare the request part to the size setting.

', ], ], 'Condition' => [ 'base' => '

A single match condition for a Filter.

', 'refs' => [ 'Conditions$member' => NULL, ], ], 'Conditions' => [ 'base' => NULL, 'refs' => [ 'Filter$Conditions' => '

Match conditions for the filter.

', ], ], 'ConsumedCapacity' => [ 'base' => NULL, 'refs' => [ 'CheckCapacityResponse$Capacity' => '

The capacity required by the rules and scope.

', 'WebACL$Capacity' => '

The web ACL capacity units (WCUs) currently being used by this web ACL.

WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.

', ], ], 'CookieMatchPattern' => [ 'base' => '

The filter to use to identify the subset of cookies to inspect in a web request.

You must specify exactly one setting: either All, IncludedCookies, or ExcludedCookies.

Example JSON: "MatchPattern": { "IncludedCookies": [ "session-id-time", "session-id" ] }

', 'refs' => [ 'Cookies$MatchPattern' => '

The filter to use to identify the subset of cookies to inspect in a web request.

You must specify exactly one setting: either All, IncludedCookies, or ExcludedCookies.

Example JSON: "MatchPattern": { "IncludedCookies": [ "session-id-time", "session-id" ] }

', ], ], 'CookieNames' => [ 'base' => NULL, 'refs' => [ 'CookieMatchPattern$IncludedCookies' => '

Inspect only the cookies that have a key that matches one of the strings specified here.

', 'CookieMatchPattern$ExcludedCookies' => '

Inspect only the cookies whose keys don\'t match any of the strings specified here.

', ], ], 'Cookies' => [ 'base' => '

Inspect the cookies in the web request. You can specify the parts of the cookies to inspect and you can narrow the set of cookies to inspect by including or excluding specific keys.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

Example JSON: "Cookies": { "MatchPattern": { "All": {} }, "MatchScope": "KEY", "OversizeHandling": "MATCH" }

', 'refs' => [ 'FieldToMatch$Cookies' => '

Inspect the request cookies. You must configure scope and pattern matching filters in the Cookies object, to define the set of cookies and the parts of the cookies that WAF inspects.

Only the first 8 KB (8192 bytes) of a request\'s cookies and only the first 200 cookies are forwarded to WAF for inspection by the underlying host service. You must configure how to handle any oversize cookie content in the Cookies object. WAF applies the pattern matching filters to the cookies that it receives from the underlying host service.

', ], ], 'CountAction' => [ 'base' => '

Specifies that WAF should count the request. Optionally defines additional custom handling for the request.

This is used in the context of other settings, for example to specify values for RuleAction and web ACL DefaultAction.

', 'refs' => [ 'OverrideAction$Count' => '

Override the rule group evaluation result to count only.

This option is usually set to none. It does not affect how the rules in the rule group are evaluated. If you want the rules in the rule group to only count matches, do not use this and instead use the rule action override option, with Count action, in your rule group reference statement settings.

', 'RuleAction$Count' => '

Instructs WAF to count the web request and then continue evaluating the request using the remaining rules in the web ACL.

', ], ], 'Country' => [ 'base' => NULL, 'refs' => [ 'HTTPRequest$Country' => '

The two-letter country code for the country that the request originated from. For a current list of country codes, see the Wikipedia entry ISO 3166-1 alpha-2.

', ], ], 'CountryCode' => [ 'base' => NULL, 'refs' => [ 'CountryCodes$member' => NULL, ], ], 'CountryCodes' => [ 'base' => NULL, 'refs' => [ 'GeoMatchStatement$CountryCodes' => '

An array of two-character country codes that you want to match against, for example, [ "US", "CN" ], from the alpha-2 country ISO codes of the ISO 3166 international standard.

When you use a geo match statement just for the region and country labels that it adds to requests, you still have to supply a country code for the rule to evaluate. In this case, you configure the rule to only count matching requests, but it will still generate logging and count metrics for any matches. You can reduce the logging and metrics that the rule produces by specifying a country that\'s unlikely to be a source of traffic to your site.

', ], ], 'CreateAPIKeyRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateAPIKeyResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateIPSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateIPSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateRegexPatternSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateRegexPatternSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateRuleGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateRuleGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateWebACLRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateWebACLResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreationPathString' => [ 'base' => NULL, 'refs' => [ 'AWSManagedRulesACFPRuleSet$CreationPath' => '

The path of the account creation endpoint for your application. This is the page on your website that accepts the completed registration form for a new user. This page must accept POST requests.

For example, for the URL https://example.com/web/newaccount, you would provide the path /web/newaccount. Account creation page paths that start with the path that you provide are considered a match. For example /web/newaccount matches the account creation paths /web/newaccount, /web/newaccount/, /web/newaccountPage, and /web/newaccount/thisPage, but doesn\'t match the path /home/web/newaccount or /website/newaccount.

', ], ], 'CustomHTTPHeader' => [ 'base' => '

A custom header for custom request and response handling. This is used in CustomResponse and CustomRequestHandling.

', 'refs' => [ 'CustomHTTPHeaders$member' => NULL, ], ], 'CustomHTTPHeaderName' => [ 'base' => NULL, 'refs' => [ 'CustomHTTPHeader$Name' => '

The name of the custom header.

For custom request header insertion, when WAF inserts the header into the request, it prefixes this name x-amzn-waf-, to avoid confusion with the headers that are already in the request. For example, for the header name sample, WAF inserts the header x-amzn-waf-sample.

', ], ], 'CustomHTTPHeaderValue' => [ 'base' => NULL, 'refs' => [ 'CustomHTTPHeader$Value' => '

The value of the custom header.

', ], ], 'CustomHTTPHeaders' => [ 'base' => NULL, 'refs' => [ 'CustomRequestHandling$InsertHeaders' => '

The HTTP headers to insert into the request. Duplicate header names are not allowed.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', 'CustomResponse$ResponseHeaders' => '

The HTTP headers to use in the response. You can specify any header name except for content-type. Duplicate header names are not allowed.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', ], ], 'CustomRequestHandling' => [ 'base' => '

Custom request handling behavior that inserts custom headers into a web request. You can add custom request handling for WAF to use when the rule action doesn\'t block the request. For example, CaptchaAction for requests with valid t okens, and AllowAction.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

', 'refs' => [ 'AllowAction$CustomRequestHandling' => '

Defines custom handling for the web request.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

', 'CaptchaAction$CustomRequestHandling' => '

Defines custom handling for the web request, used when the CAPTCHA inspection determines that the request\'s token is valid and unexpired.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

', 'ChallengeAction$CustomRequestHandling' => '

Defines custom handling for the web request, used when the challenge inspection determines that the request\'s token is valid and unexpired.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

', 'CountAction$CustomRequestHandling' => '

Defines custom handling for the web request.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

', ], ], 'CustomResponse' => [ 'base' => '

A custom response to send to the client. You can define a custom response for rule actions and default web ACL actions that are set to BlockAction.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

', 'refs' => [ 'BlockAction$CustomResponse' => '

Defines a custom response for the web request.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

', ], ], 'CustomResponseBodies' => [ 'base' => NULL, 'refs' => [ 'CreateRuleGroupRequest$CustomResponseBodies' => '

A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the rule group, and then use them in the rules that you define in the rule group.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', 'CreateWebACLRequest$CustomResponseBodies' => '

A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the web ACL, and then use them in the rules and default actions that you define in the web ACL.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', 'RuleGroup$CustomResponseBodies' => '

A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the rule group, and then use them in the rules that you define in the rule group.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', 'UpdateRuleGroupRequest$CustomResponseBodies' => '

A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the rule group, and then use them in the rules that you define in the rule group.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', 'UpdateWebACLRequest$CustomResponseBodies' => '

A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the web ACL, and then use them in the rules and default actions that you define in the web ACL.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', 'WebACL$CustomResponseBodies' => '

A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the web ACL, and then use them in the rules and default actions that you define in the web ACL.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', ], ], 'CustomResponseBody' => [ 'base' => '

The response body to use in a custom response to a web request. This is referenced by key from CustomResponse CustomResponseBodyKey.

', 'refs' => [ 'CustomResponseBodies$value' => NULL, ], ], 'DefaultAction' => [ 'base' => '

In a WebACL, this is the action that you want WAF to perform when a web request doesn\'t match any of the rules in the WebACL. The default action must be a terminating action.

', 'refs' => [ 'CreateWebACLRequest$DefaultAction' => '

The action to perform if none of the Rules contained in the WebACL match.

', 'UpdateWebACLRequest$DefaultAction' => '

The action to perform if none of the Rules contained in the WebACL match.

', 'WebACL$DefaultAction' => '

The action to perform if none of the Rules contained in the WebACL match.

', ], ], 'DeleteAPIKeyRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteAPIKeyResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFirewallManagerRuleGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteFirewallManagerRuleGroupsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIPSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIPSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLoggingConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteLoggingConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeletePermissionPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeletePermissionPolicyResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteRegexPatternSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteRegexPatternSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteRuleGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteRuleGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteWebACLRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteWebACLResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAllManagedProductsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAllManagedProductsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeManagedProductsByVendorRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeManagedProductsByVendorResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeManagedRuleGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeManagedRuleGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateWebACLRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisassociateWebACLResponse' => [ 'base' => NULL, 'refs' => [], ], 'DownloadUrl' => [ 'base' => NULL, 'refs' => [ 'GenerateMobileSdkReleaseUrlResponse$Url' => '

The presigned download URL for the specified SDK release.

', ], ], 'EmailField' => [ 'base' => '

The name of the field in the request payload that contains your customer\'s email.

This data type is used in the RequestInspectionACFP data type.

', 'refs' => [ 'RequestInspectionACFP$EmailField' => '

The name of the field in the request payload that contains your customer\'s email.

How you specify this depends on the request inspection payload type.

  • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "email": "THE_EMAIL" } }, the email field specification is /form/email.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with the input element named email1, the email field specification is email1.

', ], ], 'EntityDescription' => [ 'base' => NULL, 'refs' => [ 'CreateIPSetRequest$Description' => '

A description of the IP set that helps with identification.

', 'CreateRegexPatternSetRequest$Description' => '

A description of the set that helps with identification.

', 'CreateRuleGroupRequest$Description' => '

A description of the rule group that helps with identification.

', 'CreateWebACLRequest$Description' => '

A description of the web ACL that helps with identification.

', 'IPSet$Description' => '

A description of the IP set that helps with identification.

', 'IPSetSummary$Description' => '

A description of the IP set that helps with identification.

', 'ManagedRuleGroupSummary$Description' => '

The description of the managed rule group, provided by Amazon Web Services Managed Rules or the Amazon Web Services Marketplace seller who manages it.

', 'ManagedRuleSet$Description' => '

A description of the set that helps with identification.

', 'ManagedRuleSetSummary$Description' => '

A description of the set that helps with identification.

', 'RegexPatternSet$Description' => '

A description of the set that helps with identification.

', 'RegexPatternSetSummary$Description' => '

A description of the set that helps with identification.

', 'RuleGroup$Description' => '

A description of the rule group that helps with identification.

', 'RuleGroupSummary$Description' => '

A description of the rule group that helps with identification.

', 'UpdateIPSetRequest$Description' => '

A description of the IP set that helps with identification.

', 'UpdateRegexPatternSetRequest$Description' => '

A description of the set that helps with identification.

', 'UpdateRuleGroupRequest$Description' => '

A description of the rule group that helps with identification.

', 'UpdateWebACLRequest$Description' => '

A description of the web ACL that helps with identification.

', 'WebACL$Description' => '

A description of the web ACL that helps with identification.

', 'WebACLSummary$Description' => '

A description of the web ACL that helps with identification.

', ], ], 'EntityId' => [ 'base' => NULL, 'refs' => [ 'DeleteIPSetRequest$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'DeleteRegexPatternSetRequest$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'DeleteRuleGroupRequest$Id' => '

A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'DeleteWebACLRequest$Id' => '

The unique identifier for the web ACL. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'GetIPSetRequest$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'GetManagedRuleSetRequest$Id' => '

A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

', 'GetRateBasedStatementManagedKeysRequest$WebACLId' => '

The unique identifier for the web ACL. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'GetRegexPatternSetRequest$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'GetRuleGroupRequest$Id' => '

A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'GetWebACLRequest$Id' => '

The unique identifier for the web ACL. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'IPSet$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'IPSetSummary$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'ManagedRuleSet$Id' => '

A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

', 'ManagedRuleSetSummary$Id' => '

A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

', 'PutManagedRuleSetVersionsRequest$Id' => '

A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

', 'RegexPatternSet$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'RegexPatternSetSummary$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'RuleGroup$Id' => '

A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'RuleGroupSummary$Id' => '

A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'UpdateIPSetRequest$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'UpdateManagedRuleSetVersionExpiryDateRequest$Id' => '

A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

', 'UpdateRegexPatternSetRequest$Id' => '

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'UpdateRuleGroupRequest$Id' => '

A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'UpdateWebACLRequest$Id' => '

The unique identifier for the web ACL. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', 'WebACL$Id' => '

A unique identifier for the WebACL. This ID is returned in the responses to create and list commands. You use this ID to do things like get, update, and delete a WebACL.

', 'WebACLSummary$Id' => '

The unique identifier for the web ACL. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', ], ], 'EntityName' => [ 'base' => NULL, 'refs' => [ 'CreateIPSetRequest$Name' => '

The name of the IP set. You cannot change the name of an IPSet after you create it.

', 'CreateRegexPatternSetRequest$Name' => '

The name of the set. You cannot change the name after you create the set.

', 'CreateRuleGroupRequest$Name' => '

The name of the rule group. You cannot change the name of a rule group after you create it.

', 'CreateWebACLRequest$Name' => '

The name of the web ACL. You cannot change the name of a web ACL after you create it.

', 'CustomResponse$CustomResponseBodyKey' => '

References the response body that you want WAF to return to the web request client. You can define a custom response for a rule action or a default web ACL action that is set to block. To do this, you first define the response body key and value in the CustomResponseBodies setting for the WebACL or RuleGroup where you want to use it. Then, in the rule action or web ACL default action BlockAction setting, you reference the response body using this key.

', 'CustomResponseBodies$key' => NULL, 'DeleteIPSetRequest$Name' => '

The name of the IP set. You cannot change the name of an IPSet after you create it.

', 'DeleteRegexPatternSetRequest$Name' => '

The name of the set. You cannot change the name after you create the set.

', 'DeleteRuleGroupRequest$Name' => '

The name of the rule group. You cannot change the name of a rule group after you create it.

', 'DeleteWebACLRequest$Name' => '

The name of the web ACL. You cannot change the name of a web ACL after you create it.

', 'DescribeManagedRuleGroupRequest$Name' => '

The name of the managed rule group. You use this, along with the vendor name, to identify the rule group.

', 'ExcludedRule$Name' => '

The name of the rule whose action you want to override to Count.

', 'FirewallManagerRuleGroup$Name' => '

The name of the rule group. You cannot change the name of a rule group after you create it.

', 'GetIPSetRequest$Name' => '

The name of the IP set. You cannot change the name of an IPSet after you create it.

', 'GetManagedRuleSetRequest$Name' => '

The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

This name is assigned to the corresponding managed rule group, which your customers can access and use.

', 'GetRateBasedStatementManagedKeysRequest$WebACLName' => '

The name of the web ACL. You cannot change the name of a web ACL after you create it.

', 'GetRateBasedStatementManagedKeysRequest$RuleGroupRuleName' => '

The name of the rule group reference statement in your web ACL. This is required only when you have the rate-based rule nested inside a rule group.

', 'GetRateBasedStatementManagedKeysRequest$RuleName' => '

The name of the rate-based rule to get the keys for. If you have the rule defined inside a rule group that you\'re using in your web ACL, also provide the name of the rule group reference statement in the request parameter RuleGroupRuleName.

', 'GetRegexPatternSetRequest$Name' => '

The name of the set. You cannot change the name after you create the set.

', 'GetRuleGroupRequest$Name' => '

The name of the rule group. You cannot change the name of a rule group after you create it.

', 'GetWebACLRequest$Name' => '

The name of the web ACL. You cannot change the name of a web ACL after you create it.

', 'IPSet$Name' => '

The name of the IP set. You cannot change the name of an IPSet after you create it.

', 'IPSetSummary$Name' => '

The name of the IP set. You cannot change the name of an IPSet after you create it.

', 'ListAvailableManagedRuleGroupVersionsRequest$Name' => '

The name of the managed rule group. You use this, along with the vendor name, to identify the rule group.

', 'ManagedProductDescriptor$ManagedRuleSetName' => '

The name of the managed rule group. For example, AWSManagedRulesAnonymousIpList or AWSManagedRulesATPRuleSet.

', 'ManagedRuleGroupStatement$Name' => '

The name of the managed rule group. You use this, along with the vendor name, to identify the rule group.

', 'ManagedRuleGroupSummary$Name' => '

The name of the managed rule group. You use this, along with the vendor name, to identify the rule group.

', 'ManagedRuleSet$Name' => '

The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

This name is assigned to the corresponding managed rule group, which your customers can access and use.

', 'ManagedRuleSetSummary$Name' => '

The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

This name is assigned to the corresponding managed rule group, which your customers can access and use.

', 'PutManagedRuleSetVersionsRequest$Name' => '

The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

This name is assigned to the corresponding managed rule group, which your customers can access and use.

', 'RegexPatternSet$Name' => '

The name of the set. You cannot change the name after you create the set.

', 'RegexPatternSetSummary$Name' => '

The name of the data type instance. You cannot change the name after you create the instance.

', 'Rule$Name' => '

The name of the rule.

If you change the name of a Rule after you create it and you want the rule\'s metric name to reflect the change, update the metric name in the rule\'s VisibilityConfig settings. WAF doesn\'t automatically update the metric name when you update the rule name.

', 'RuleActionOverride$Name' => '

The name of the rule to override.

', 'RuleGroup$Name' => '

The name of the rule group. You cannot change the name of a rule group after you create it.

', 'RuleGroupSummary$Name' => '

The name of the data type instance. You cannot change the name after you create the instance.

', 'RuleSummary$Name' => '

The name of the rule.

', 'SampledHTTPRequest$RuleNameWithinRuleGroup' => '

The name of the Rule that the request matched. For managed rule groups, the format for this name is <vendor name>#<managed rule group name>#<rule name>. For your own rule groups, the format for this name is <rule group name>#<rule name>. If the rule is not in a rule group, this field is absent.

', 'UpdateIPSetRequest$Name' => '

The name of the IP set. You cannot change the name of an IPSet after you create it.

', 'UpdateManagedRuleSetVersionExpiryDateRequest$Name' => '

The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

This name is assigned to the corresponding managed rule group, which your customers can access and use.

', 'UpdateRegexPatternSetRequest$Name' => '

The name of the set. You cannot change the name after you create the set.

', 'UpdateRuleGroupRequest$Name' => '

The name of the rule group. You cannot change the name of a rule group after you create it.

', 'UpdateWebACLRequest$Name' => '

The name of the web ACL. You cannot change the name of a web ACL after you create it.

', 'WebACL$Name' => '

The name of the web ACL. You cannot change the name of a web ACL after you create it.

', 'WebACLSummary$Name' => '

The name of the web ACL. You cannot change the name of a web ACL after you create it.

', ], ], 'ErrorMessage' => [ 'base' => NULL, 'refs' => [ 'WAFAssociatedItemException$Message' => NULL, 'WAFConfigurationWarningException$Message' => NULL, 'WAFDuplicateItemException$Message' => NULL, 'WAFExpiredManagedRuleGroupVersionException$Message' => NULL, 'WAFInternalErrorException$Message' => NULL, 'WAFInvalidOperationException$Message' => NULL, 'WAFInvalidParameterException$message' => NULL, 'WAFInvalidPermissionPolicyException$Message' => NULL, 'WAFInvalidResourceException$Message' => NULL, 'WAFLimitsExceededException$Message' => NULL, 'WAFLogDestinationPermissionIssueException$Message' => NULL, 'WAFNonexistentItemException$Message' => NULL, 'WAFOptimisticLockException$Message' => NULL, 'WAFServiceLinkedRoleErrorException$message' => NULL, 'WAFSubscriptionNotFoundException$Message' => NULL, 'WAFTagOperationException$Message' => NULL, 'WAFTagOperationInternalErrorException$Message' => NULL, 'WAFUnavailableEntityException$Message' => NULL, 'WAFUnsupportedAggregateKeyTypeException$Message' => NULL, ], ], 'ErrorReason' => [ 'base' => NULL, 'refs' => [ 'WAFInvalidParameterException$Reason' => '

Additional information about the exception.

', ], ], 'EvaluationWindowSec' => [ 'base' => NULL, 'refs' => [ 'RateBasedStatement$EvaluationWindowSec' => '

The amount of time, in seconds, that WAF should include in its request counts, looking back from the current time. For example, for a setting of 120, when WAF checks the rate, it counts the requests for the 2 minutes immediately preceding the current time. Valid settings are 60, 120, 300, and 600.

This setting doesn\'t determine how often WAF checks the rate, but how far back it looks each time it checks. WAF checks the rate about every 10 seconds.

Default: 300 (5 minutes)

', ], ], 'ExcludedRule' => [ 'base' => '

Specifies a single rule in a rule group whose action you want to override to Count.

Instead of this option, use RuleActionOverrides. It accepts any valid action setting, including Count.

', 'refs' => [ 'ExcludedRules$member' => NULL, ], ], 'ExcludedRules' => [ 'base' => NULL, 'refs' => [ 'ManagedRuleGroupStatement$ExcludedRules' => '

Rules in the referenced rule group whose actions are set to Count.

Instead of this option, use RuleActionOverrides. It accepts any valid action setting, including Count.

', 'RuleGroupReferenceStatement$ExcludedRules' => '

Rules in the referenced rule group whose actions are set to Count.

Instead of this option, use RuleActionOverrides. It accepts any valid action setting, including Count.

', ], ], 'FailureCode' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionStatusCodeFailureCodes$member' => NULL, ], ], 'FailureReason' => [ 'base' => NULL, 'refs' => [ 'CaptchaResponse$FailureReason' => '

The reason for failure, populated when the evaluation of the token fails.

', 'ChallengeResponse$FailureReason' => '

The reason for failure, populated when the evaluation of the token fails.

', ], ], 'FailureValue' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionBodyContainsFailureStrings$member' => NULL, 'ResponseInspectionHeaderFailureValues$member' => NULL, 'ResponseInspectionJsonFailureValues$member' => NULL, ], ], 'FallbackBehavior' => [ 'base' => NULL, 'refs' => [ 'ForwardedIPConfig$FallbackBehavior' => '

The match status to assign to the web request if the request doesn\'t have a valid IP address in the specified position.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

You can specify the following fallback behaviors:

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

', 'IPSetForwardedIPConfig$FallbackBehavior' => '

The match status to assign to the web request if the request doesn\'t have a valid IP address in the specified position.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

You can specify the following fallback behaviors:

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

', 'JA3Fingerprint$FallbackBehavior' => '

The match status to assign to the web request if the request doesn\'t have a JA3 fingerprint.

You can specify the following fallback behaviors:

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

', ], ], 'FieldIdentifier' => [ 'base' => NULL, 'refs' => [ 'AddressField$Identifier' => '

The name of a single primary address field.

How you specify the address fields depends on the request inspection payload type.

  • For JSON payloads, specify the field identifiers in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "primaryaddressline1": "THE_ADDRESS1", "primaryaddressline2": "THE_ADDRESS2", "primaryaddressline3": "THE_ADDRESS3" } }, the address field idenfiers are /form/primaryaddressline1, /form/primaryaddressline2, and /form/primaryaddressline3.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with input elements named primaryaddressline1, primaryaddressline2, and primaryaddressline3, the address fields identifiers are primaryaddressline1, primaryaddressline2, and primaryaddressline3.

', 'EmailField$Identifier' => '

The name of the email field.

How you specify this depends on the request inspection payload type.

  • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "email": "THE_EMAIL" } }, the email field specification is /form/email.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with the input element named email1, the email field specification is email1.

', 'PasswordField$Identifier' => '

The name of the password field.

How you specify this depends on the request inspection payload type.

  • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "password": "THE_PASSWORD" } }, the password field specification is /form/password.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with the input element named password1, the password field specification is password1.

', 'PhoneNumberField$Identifier' => '

The name of a single primary phone number field.

How you specify the phone number fields depends on the request inspection payload type.

  • For JSON payloads, specify the field identifiers in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "primaryphoneline1": "THE_PHONE1", "primaryphoneline2": "THE_PHONE2", "primaryphoneline3": "THE_PHONE3" } }, the phone number field identifiers are /form/primaryphoneline1, /form/primaryphoneline2, and /form/primaryphoneline3.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with input elements named primaryphoneline1, primaryphoneline2, and primaryphoneline3, the phone number field identifiers are primaryphoneline1, primaryphoneline2, and primaryphoneline3.

', 'ResponseInspectionJson$Identifier' => '

The identifier for the value to match against in the JSON. The identifier must be an exact match, including case.

JSON examples: "Identifier": [ "/login/success" ] and "Identifier": [ "/sign-up/success" ]

', 'UsernameField$Identifier' => '

The name of the username field.

How you specify this depends on the request inspection payload type.

  • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "username": "THE_USERNAME" } }, the username field specification is /form/username.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with the input element named username1, the username field specification is username1

', ], ], 'FieldToMatch' => [ 'base' => '

The part of the web request that you want WAF to inspect. Include the single FieldToMatch type that you want to inspect, with additional specifications as needed, according to the type. You specify a single request component in FieldToMatch for each rule statement that requires it. To inspect more than one component of the web request, create a separate rule statement for each component.

Example JSON for a QueryString field to match:

"FieldToMatch": { "QueryString": {} }

Example JSON for a Method field to match specification:

"FieldToMatch": { "Method": { "Name": "DELETE" } }

', 'refs' => [ 'ByteMatchStatement$FieldToMatch' => '

The part of the web request that you want WAF to inspect.

', 'RedactedFields$member' => NULL, 'RegexMatchStatement$FieldToMatch' => '

The part of the web request that you want WAF to inspect.

', 'RegexPatternSetReferenceStatement$FieldToMatch' => '

The part of the web request that you want WAF to inspect.

', 'SizeConstraintStatement$FieldToMatch' => '

The part of the web request that you want WAF to inspect.

', 'SqliMatchStatement$FieldToMatch' => '

The part of the web request that you want WAF to inspect.

', 'XssMatchStatement$FieldToMatch' => '

The part of the web request that you want WAF to inspect.

', ], ], 'FieldToMatchData' => [ 'base' => NULL, 'refs' => [ 'HeaderNames$member' => NULL, 'RateLimitCookie$Name' => '

The name of the cookie to use.

', 'RateLimitHeader$Name' => '

The name of the header to use.

', 'RateLimitQueryArgument$Name' => '

The name of the query argument to use.

', 'SingleHeader$Name' => '

The name of the query header to inspect.

', 'SingleQueryArgument$Name' => '

The name of the query argument to inspect.

', ], ], 'Filter' => [ 'base' => '

A single logging filter, used in LoggingFilter.

', 'refs' => [ 'Filters$member' => NULL, ], ], 'FilterBehavior' => [ 'base' => NULL, 'refs' => [ 'Filter$Behavior' => '

How to handle logs that satisfy the filter\'s conditions and requirement.

', 'LoggingFilter$DefaultBehavior' => '

Default handling for logs that don\'t match any of the specified filtering conditions.

', ], ], 'FilterRequirement' => [ 'base' => NULL, 'refs' => [ 'Filter$Requirement' => '

Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.

', ], ], 'Filters' => [ 'base' => NULL, 'refs' => [ 'LoggingFilter$Filters' => '

The filters that you want to apply to the logs.

', ], ], 'FirewallManagerRuleGroup' => [ 'base' => '

A rule group that\'s defined for an Firewall Manager WAF policy.

', 'refs' => [ 'FirewallManagerRuleGroups$member' => NULL, ], ], 'FirewallManagerRuleGroups' => [ 'base' => NULL, 'refs' => [ 'WebACL$PreProcessFirewallManagerRuleGroups' => '

The first set of rules for WAF to process in the web ACL. This is defined in an Firewall Manager WAF policy and contains only rule group references. You can\'t alter these. Any rules and rule groups that you define for the web ACL are prioritized after these.

In the Firewall Manager WAF policy, the Firewall Manager administrator can define a set of rule groups to run first in the web ACL and a set of rule groups to run last. Within each set, the administrator prioritizes the rule groups, to determine their relative processing order.

', 'WebACL$PostProcessFirewallManagerRuleGroups' => '

The last set of rules for WAF to process in the web ACL. This is defined in an Firewall Manager WAF policy and contains only rule group references. You can\'t alter these. Any rules and rule groups that you define for the web ACL are prioritized before these.

In the Firewall Manager WAF policy, the Firewall Manager administrator can define a set of rule groups to run first in the web ACL and a set of rule groups to run last. Within each set, the administrator prioritizes the rule groups, to determine their relative processing order.

', ], ], 'FirewallManagerStatement' => [ 'base' => '

The processing guidance for an Firewall Manager rule. This is like a regular rule Statement, but it can only contain a single rule group reference.

', 'refs' => [ 'FirewallManagerRuleGroup$FirewallManagerStatement' => '

The processing guidance for an Firewall Manager rule. This is like a regular rule Statement, but it can only contain a rule group reference.

', ], ], 'ForwardedIPConfig' => [ 'base' => '

The configuration for inspecting IP addresses in an HTTP header that you specify, instead of using the IP address that\'s reported by the web request origin. Commonly, this is the X-Forwarded-For (XFF) header, but you can specify any header name.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

This configuration is used for GeoMatchStatement and RateBasedStatement. For IPSetReferenceStatement, use IPSetForwardedIPConfig instead.

WAF only evaluates the first IP address found in the specified HTTP header.

', 'refs' => [ 'GeoMatchStatement$ForwardedIPConfig' => '

The configuration for inspecting IP addresses in an HTTP header that you specify, instead of using the IP address that\'s reported by the web request origin. Commonly, this is the X-Forwarded-For (XFF) header, but you can specify any header name.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

', 'RateBasedStatement$ForwardedIPConfig' => '

The configuration for inspecting IP addresses in an HTTP header that you specify, instead of using the IP address that\'s reported by the web request origin. Commonly, this is the X-Forwarded-For (XFF) header, but you can specify any header name.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

This is required if you specify a forwarded IP in the rule\'s aggregate key settings.

', ], ], 'ForwardedIPHeaderName' => [ 'base' => NULL, 'refs' => [ 'ForwardedIPConfig$HeaderName' => '

The name of the HTTP header to use for the IP address. For example, to use the X-Forwarded-For (XFF) header, set this to X-Forwarded-For.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

', 'IPSetForwardedIPConfig$HeaderName' => '

The name of the HTTP header to use for the IP address. For example, to use the X-Forwarded-For (XFF) header, set this to X-Forwarded-For.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

', ], ], 'ForwardedIPPosition' => [ 'base' => NULL, 'refs' => [ 'IPSetForwardedIPConfig$Position' => '

The position in the header to search for the IP address. The header can contain IP addresses of the original client and also of proxies. For example, the header value could be 10.1.1.1, 127.0.0.0, 10.10.10.10 where the first IP address identifies the original client and the rest identify proxies that the request went through.

The options for this setting are the following:

  • FIRST - Inspect the first IP address in the list of IP addresses in the header. This is usually the client\'s original IP.

  • LAST - Inspect the last IP address in the list of IP addresses in the header.

  • ANY - Inspect all IP addresses in the header for a match. If the header contains more than 10 IP addresses, WAF inspects the last 10.

', ], ], 'GenerateMobileSdkReleaseUrlRequest' => [ 'base' => NULL, 'refs' => [], ], 'GenerateMobileSdkReleaseUrlResponse' => [ 'base' => NULL, 'refs' => [], ], 'GeoMatchStatement' => [ 'base' => '

A rule statement that labels web requests by country and region and that matches against web requests based on country code. A geo match rule labels every request that it inspects regardless of whether it finds a match.

  • To manage requests only by country, you can use this statement by itself and specify the countries that you want to match against in the CountryCodes array.

  • Otherwise, configure your geo match rule with Count action so that it only labels requests. Then, add one or more label match rules to run after the geo match rule and configure them to match against the geographic labels and handle the requests as needed.

WAF labels requests using the alpha-2 country and region codes from the International Organization for Standardization (ISO) 3166 standard. WAF determines the codes using either the IP address in the web request origin or, if you specify it, the address in the geo match ForwardedIPConfig.

If you use the web request origin, the label formats are awswaf:clientip:geo:region:<ISO country code>-<ISO region code> and awswaf:clientip:geo:country:<ISO country code>.

If you use a forwarded IP address, the label formats are awswaf:forwardedip:geo:region:<ISO country code>-<ISO region code> and awswaf:forwardedip:geo:country:<ISO country code>.

For additional details, see Geographic match rule statement in the WAF Developer Guide.

', 'refs' => [ 'Statement$GeoMatchStatement' => '

A rule statement that labels web requests by country and region and that matches against web requests based on country code. A geo match rule labels every request that it inspects regardless of whether it finds a match.

  • To manage requests only by country, you can use this statement by itself and specify the countries that you want to match against in the CountryCodes array.

  • Otherwise, configure your geo match rule with Count action so that it only labels requests. Then, add one or more label match rules to run after the geo match rule and configure them to match against the geographic labels and handle the requests as needed.

WAF labels requests using the alpha-2 country and region codes from the International Organization for Standardization (ISO) 3166 standard. WAF determines the codes using either the IP address in the web request origin or, if you specify it, the address in the geo match ForwardedIPConfig.

If you use the web request origin, the label formats are awswaf:clientip:geo:region:<ISO country code>-<ISO region code> and awswaf:clientip:geo:country:<ISO country code>.

If you use a forwarded IP address, the label formats are awswaf:forwardedip:geo:region:<ISO country code>-<ISO region code> and awswaf:forwardedip:geo:country:<ISO country code>.

For additional details, see Geographic match rule statement in the WAF Developer Guide.

', ], ], 'GetDecryptedAPIKeyRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetDecryptedAPIKeyResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetIPSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetIPSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetLoggingConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetLoggingConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetManagedRuleSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetManagedRuleSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetMobileSdkReleaseRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetMobileSdkReleaseResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetPermissionPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetPermissionPolicyResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetRateBasedStatementManagedKeysRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetRateBasedStatementManagedKeysResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetRegexPatternSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetRegexPatternSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetRuleGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetRuleGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetSampledRequestsRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSampledRequestsResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetWebACLForResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetWebACLForResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetWebACLRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetWebACLResponse' => [ 'base' => NULL, 'refs' => [], ], 'HTTPHeader' => [ 'base' => '

Part of the response from GetSampledRequests. This is a complex type that appears as Headers in the response syntax. HTTPHeader contains the names and values of all of the headers that appear in one of the web requests.

', 'refs' => [ 'HTTPHeaders$member' => NULL, ], ], 'HTTPHeaders' => [ 'base' => NULL, 'refs' => [ 'HTTPRequest$Headers' => '

A complex type that contains the name and value for each header in the sampled web request.

', 'SampledHTTPRequest$RequestHeadersInserted' => '

Custom request headers inserted by WAF into the request, according to the custom request configuration for the matching rule action.

', ], ], 'HTTPMethod' => [ 'base' => NULL, 'refs' => [ 'HTTPRequest$Method' => '

The HTTP method specified in the sampled web request.

', ], ], 'HTTPRequest' => [ 'base' => '

Part of the response from GetSampledRequests. This is a complex type that appears as Request in the response syntax. HTTPRequest contains information about one of the web requests.

', 'refs' => [ 'SampledHTTPRequest$Request' => '

A complex type that contains detailed information about the request.

', ], ], 'HTTPVersion' => [ 'base' => NULL, 'refs' => [ 'HTTPRequest$HTTPVersion' => '

The HTTP version specified in the sampled web request, for example, HTTP/1.1.

', ], ], 'HeaderMatchPattern' => [ 'base' => '

The filter to use to identify the subset of headers to inspect in a web request.

You must specify exactly one setting: either All, IncludedHeaders, or ExcludedHeaders.

Example JSON: "MatchPattern": { "ExcludedHeaders": [ "KeyToExclude1", "KeyToExclude2" ] }

', 'refs' => [ 'Headers$MatchPattern' => '

The filter to use to identify the subset of headers to inspect in a web request.

You must specify exactly one setting: either All, IncludedHeaders, or ExcludedHeaders.

Example JSON: "MatchPattern": { "ExcludedHeaders": [ "KeyToExclude1", "KeyToExclude2" ] }

', ], ], 'HeaderName' => [ 'base' => NULL, 'refs' => [ 'HTTPHeader$Name' => '

The name of the HTTP header.

', ], ], 'HeaderNames' => [ 'base' => NULL, 'refs' => [ 'HeaderMatchPattern$IncludedHeaders' => '

Inspect only the headers that have a key that matches one of the strings specified here.

', 'HeaderMatchPattern$ExcludedHeaders' => '

Inspect only the headers whose keys don\'t match any of the strings specified here.

', ], ], 'HeaderOrder' => [ 'base' => '

Inspect a string containing the list of the request\'s header names, ordered as they appear in the web request that WAF receives for inspection. WAF generates the string and then uses that as the field to match component in its inspection. WAF separates the header names in the string using colons and no added spaces, for example host:user-agent:accept:authorization:referer.

', 'refs' => [ 'FieldToMatch$HeaderOrder' => '

Inspect a string containing the list of the request\'s header names, ordered as they appear in the web request that WAF receives for inspection. WAF generates the string and then uses that as the field to match component in its inspection. WAF separates the header names in the string using colons and no added spaces, for example host:user-agent:accept:authorization:referer.

', ], ], 'HeaderValue' => [ 'base' => NULL, 'refs' => [ 'HTTPHeader$Value' => '

The value of the HTTP header.

', ], ], 'Headers' => [ 'base' => '

Inspect all headers in the web request. You can specify the parts of the headers to inspect and you can narrow the set of headers to inspect by including or excluding specific keys.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

If you want to inspect just the value of a single header, use the SingleHeader FieldToMatch setting instead.

Example JSON: "Headers": { "MatchPattern": { "All": {} }, "MatchScope": "KEY", "OversizeHandling": "MATCH" }

', 'refs' => [ 'FieldToMatch$Headers' => '

Inspect the request headers. You must configure scope and pattern matching filters in the Headers object, to define the set of headers to and the parts of the headers that WAF inspects.

Only the first 8 KB (8192 bytes) of a request\'s headers and only the first 200 headers are forwarded to WAF for inspection by the underlying host service. You must configure how to handle any oversize header content in the Headers object. WAF applies the pattern matching filters to the headers that it receives from the underlying host service.

', ], ], 'IPAddress' => [ 'base' => NULL, 'refs' => [ 'IPAddresses$member' => NULL, ], ], 'IPAddressVersion' => [ 'base' => NULL, 'refs' => [ 'CreateIPSetRequest$IPAddressVersion' => '

The version of the IP addresses, either IPV4 or IPV6.

', 'IPSet$IPAddressVersion' => '

The version of the IP addresses, either IPV4 or IPV6.

', 'RateBasedStatementManagedKeysIPSet$IPAddressVersion' => '

The version of the IP addresses, either IPV4 or IPV6.

', ], ], 'IPAddresses' => [ 'base' => NULL, 'refs' => [ 'CreateIPSetRequest$Addresses' => '

Contains an array of strings that specifies zero or more IP addresses or blocks of IP addresses that you want WAF to inspect for in incoming requests. All addresses must be specified using Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges except for /0.

Example address strings:

  • For requests that originated from the IP address 192.0.2.44, specify 192.0.2.44/32.

  • For requests that originated from IP addresses from 192.0.2.0 to 192.0.2.255, specify 192.0.2.0/24.

  • For requests that originated from the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify 1111:0000:0000:0000:0000:0000:0000:0111/128.

  • For requests that originated from IP addresses 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify 1111:0000:0000:0000:0000:0000:0000:0000/64.

For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

Example JSON Addresses specifications:

  • Empty array: "Addresses": []

  • Array with one address: "Addresses": ["192.0.2.44/32"]

  • Array with three addresses: "Addresses": ["192.0.2.44/32", "192.0.2.0/24", "192.0.0.0/16"]

  • INVALID specification: "Addresses": [""] INVALID

', 'IPSet$Addresses' => '

Contains an array of strings that specifies zero or more IP addresses or blocks of IP addresses that you want WAF to inspect for in incoming requests. All addresses must be specified using Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges except for /0.

Example address strings:

  • For requests that originated from the IP address 192.0.2.44, specify 192.0.2.44/32.

  • For requests that originated from IP addresses from 192.0.2.0 to 192.0.2.255, specify 192.0.2.0/24.

  • For requests that originated from the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify 1111:0000:0000:0000:0000:0000:0000:0111/128.

  • For requests that originated from IP addresses 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify 1111:0000:0000:0000:0000:0000:0000:0000/64.

For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

Example JSON Addresses specifications:

  • Empty array: "Addresses": []

  • Array with one address: "Addresses": ["192.0.2.44/32"]

  • Array with three addresses: "Addresses": ["192.0.2.44/32", "192.0.2.0/24", "192.0.0.0/16"]

  • INVALID specification: "Addresses": [""] INVALID

', 'RateBasedStatementManagedKeysIPSet$Addresses' => '

The IP addresses that are currently blocked.

', 'UpdateIPSetRequest$Addresses' => '

Contains an array of strings that specifies zero or more IP addresses or blocks of IP addresses that you want WAF to inspect for in incoming requests. All addresses must be specified using Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges except for /0.

Example address strings:

  • For requests that originated from the IP address 192.0.2.44, specify 192.0.2.44/32.

  • For requests that originated from IP addresses from 192.0.2.0 to 192.0.2.255, specify 192.0.2.0/24.

  • For requests that originated from the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify 1111:0000:0000:0000:0000:0000:0000:0111/128.

  • For requests that originated from IP addresses 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify 1111:0000:0000:0000:0000:0000:0000:0000/64.

For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

Example JSON Addresses specifications:

  • Empty array: "Addresses": []

  • Array with one address: "Addresses": ["192.0.2.44/32"]

  • Array with three addresses: "Addresses": ["192.0.2.44/32", "192.0.2.0/24", "192.0.0.0/16"]

  • INVALID specification: "Addresses": [""] INVALID

', ], ], 'IPSet' => [ 'base' => '

Contains zero or more IP addresses or blocks of IP addresses specified in Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges except for /0. For information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

WAF assigns an ARN to each IPSet that you create. To use an IP set in a rule, you provide the ARN to the Rule statement IPSetReferenceStatement.

', 'refs' => [ 'GetIPSetResponse$IPSet' => '

', ], ], 'IPSetForwardedIPConfig' => [ 'base' => '

The configuration for inspecting IP addresses in an HTTP header that you specify, instead of using the IP address that\'s reported by the web request origin. Commonly, this is the X-Forwarded-For (XFF) header, but you can specify any header name.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

This configuration is used only for IPSetReferenceStatement. For GeoMatchStatement and RateBasedStatement, use ForwardedIPConfig instead.

', 'refs' => [ 'IPSetReferenceStatement$IPSetForwardedIPConfig' => '

The configuration for inspecting IP addresses in an HTTP header that you specify, instead of using the IP address that\'s reported by the web request origin. Commonly, this is the X-Forwarded-For (XFF) header, but you can specify any header name.

If the specified header isn\'t present in the request, WAF doesn\'t apply the rule to the web request at all.

', ], ], 'IPSetReferenceStatement' => [ 'base' => '

A rule statement used to detect web requests coming from particular IP addresses or address ranges. To use this, create an IPSet that specifies the addresses you want to detect, then use the ARN of that set in this statement. To create an IP set, see CreateIPSet.

Each IP set rule statement references an IP set. You create and maintain the set independent of your rules. This allows you to use the single set in multiple rules. When you update the referenced set, WAF automatically updates all rules that reference it.

', 'refs' => [ 'Statement$IPSetReferenceStatement' => '

A rule statement used to detect web requests coming from particular IP addresses or address ranges. To use this, create an IPSet that specifies the addresses you want to detect, then use the ARN of that set in this statement. To create an IP set, see CreateIPSet.

Each IP set rule statement references an IP set. You create and maintain the set independent of your rules. This allows you to use the single set in multiple rules. When you update the referenced set, WAF automatically updates all rules that reference it.

', ], ], 'IPSetSummaries' => [ 'base' => NULL, 'refs' => [ 'ListIPSetsResponse$IPSets' => '

Array of IPSets. If you specified a Limit in your request, this might not be the full list.

', ], ], 'IPSetSummary' => [ 'base' => '

High-level information about an IPSet, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage an IPSet, and the ARN, that you provide to the IPSetReferenceStatement to use the address set in a Rule.

', 'refs' => [ 'CreateIPSetResponse$Summary' => '

High-level information about an IPSet, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage an IPSet, and the ARN, that you provide to the IPSetReferenceStatement to use the address set in a Rule.

', 'IPSetSummaries$member' => NULL, ], ], 'IPString' => [ 'base' => NULL, 'refs' => [ 'HTTPRequest$ClientIP' => '

The IP address that the request originated from. If the web ACL is associated with a CloudFront distribution, this is the value of one of the following fields in CloudFront access logs:

  • c-ip, if the viewer did not use an HTTP proxy or a load balancer to send the request

  • x-forwarded-for, if the viewer did use an HTTP proxy or a load balancer to send the request

', ], ], 'ImmunityTimeProperty' => [ 'base' => '

Used for CAPTCHA and challenge token settings. Determines how long a CAPTCHA or challenge timestamp remains valid after WAF updates it for a successful CAPTCHA or challenge response.

', 'refs' => [ 'CaptchaConfig$ImmunityTimeProperty' => '

Determines how long a CAPTCHA timestamp in the token remains valid after the client successfully solves a CAPTCHA puzzle.

', 'ChallengeConfig$ImmunityTimeProperty' => '

Determines how long a challenge timestamp in the token remains valid after the client successfully responds to a challenge.

', ], ], 'InspectionLevel' => [ 'base' => NULL, 'refs' => [ 'AWSManagedRulesBotControlRuleSet$InspectionLevel' => '

The inspection level to use for the Bot Control rule group. The common level is the least expensive. The targeted level includes all common level rules and adds rules with more advanced inspection criteria. For details, see WAF Bot Control rule group in the WAF Developer Guide.

', ], ], 'JA3Fingerprint' => [ 'base' => '

Match against the request\'s JA3 fingerprint. The JA3 fingerprint is a 32-character hash derived from the TLS Client Hello of an incoming request. This fingerprint serves as a unique identifier for the client\'s TLS configuration. WAF calculates and logs this fingerprint for each request that has enough TLS Client Hello information for the calculation. Almost all web requests include this information.

You can use this choice only with a string match ByteMatchStatement with the PositionalConstraint set to EXACTLY.

You can obtain the JA3 fingerprint for client requests from the web ACL logs. If WAF is able to calculate the fingerprint, it includes it in the logs. For information about the logging fields, see Log fields in the WAF Developer Guide.

Provide the JA3 fingerprint string from the logs in your string match statement specification, to match with any future requests that have the same TLS configuration.

', 'refs' => [ 'FieldToMatch$JA3Fingerprint' => '

Match against the request\'s JA3 fingerprint. The JA3 fingerprint is a 32-character hash derived from the TLS Client Hello of an incoming request. This fingerprint serves as a unique identifier for the client\'s TLS configuration. WAF calculates and logs this fingerprint for each request that has enough TLS Client Hello information for the calculation. Almost all web requests include this information.

You can use this choice only with a string match ByteMatchStatement with the PositionalConstraint set to EXACTLY.

You can obtain the JA3 fingerprint for client requests from the web ACL logs. If WAF is able to calculate the fingerprint, it includes it in the logs. For information about the logging fields, see Log fields in the WAF Developer Guide.

Provide the JA3 fingerprint string from the logs in your string match statement specification, to match with any future requests that have the same TLS configuration.

', ], ], 'JsonBody' => [ 'base' => '

Inspect the body of the web request as JSON. The body immediately follows the request headers.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

Use the specifications in this object to indicate which parts of the JSON body to inspect using the rule\'s inspection criteria. WAF inspects only the parts of the JSON that result from the matches that you indicate.

Example JSON: "JsonBody": { "MatchPattern": { "All": {} }, "MatchScope": "ALL" }

', 'refs' => [ 'FieldToMatch$JsonBody' => '

Inspect the request body as JSON. The request body immediately follows the request headers. This is the part of a request that contains any additional data that you want to send to your web server as the HTTP request body, such as data from a form.

A limited amount of the request body is forwarded to WAF for inspection by the underlying host service. For regional resources, the limit is 8 KB (8,192 bytes) and for CloudFront distributions, the limit is 16 KB (16,384 bytes). For CloudFront distributions, you can increase the limit in the web ACL\'s AssociationConfig, for additional processing fees.

For information about how to handle oversized request bodies, see the JsonBody object configuration.

', ], ], 'JsonMatchPattern' => [ 'base' => '

The patterns to look for in the JSON body. WAF inspects the results of these pattern matches against the rule inspection criteria. This is used with the FieldToMatch option JsonBody.

', 'refs' => [ 'JsonBody$MatchPattern' => '

The patterns to look for in the JSON body. WAF inspects the results of these pattern matches against the rule inspection criteria.

', ], ], 'JsonMatchScope' => [ 'base' => NULL, 'refs' => [ 'JsonBody$MatchScope' => '

The parts of the JSON to match against using the MatchPattern. If you specify ALL, WAF matches against keys and values.

All does not require a match to be found in the keys and a match to be found in the values. It requires a match to be found in the keys or the values or both. To require a match in the keys and in the values, use a logical AND statement to combine two match rules, one that inspects the keys and another that inspects the values.

', ], ], 'JsonPointerPath' => [ 'base' => NULL, 'refs' => [ 'JsonPointerPaths$member' => NULL, ], ], 'JsonPointerPaths' => [ 'base' => NULL, 'refs' => [ 'JsonMatchPattern$IncludedPaths' => '

Match only the specified include paths. See also MatchScope in JsonBody.

Provide the include paths using JSON Pointer syntax. For example, "IncludedPaths": ["/dogs/0/name", "/dogs/1/name"]. For information about this syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

You must specify either this setting or the All setting, but not both.

Don\'t use this option to include all paths. Instead, use the All setting.

', ], ], 'Label' => [ 'base' => '

A single label container. This is used as an element of a label array in multiple contexts, for example, in RuleLabels inside a Rule and in Labels inside a SampledHTTPRequest.

', 'refs' => [ 'Labels$member' => NULL, ], ], 'LabelMatchKey' => [ 'base' => NULL, 'refs' => [ 'LabelMatchStatement$Key' => '

The string to match against. The setting you provide for this depends on the match statement\'s Scope setting:

  • If the Scope indicates LABEL, then this specification must include the name and can include any number of preceding namespace specifications and prefix up to providing the fully qualified label name.

  • If the Scope indicates NAMESPACE, then this specification can include any number of contiguous namespace strings, and can include the entire label namespace prefix from the rule group or web ACL where the label originates.

Labels are case sensitive and components of a label must be separated by colon, for example NS1:NS2:name.

', ], ], 'LabelMatchScope' => [ 'base' => NULL, 'refs' => [ 'LabelMatchStatement$Scope' => '

Specify whether you want to match using the label name or just the namespace.

', ], ], 'LabelMatchStatement' => [ 'base' => '

A rule statement to match against labels that have been added to the web request by rules that have already run in the web ACL.

The label match statement provides the label or namespace string to search for. The label string can represent a part or all of the fully qualified label name that had been added to the web request. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label. If you do not provide the fully qualified name in your label match string, WAF performs the search for labels that were added in the same context as the label match statement.

', 'refs' => [ 'Statement$LabelMatchStatement' => '

A rule statement to match against labels that have been added to the web request by rules that have already run in the web ACL.

The label match statement provides the label or namespace string to search for. The label string can represent a part or all of the fully qualified label name that had been added to the web request. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label. If you do not provide the fully qualified name in your label match string, WAF performs the search for labels that were added in the same context as the label match statement.

', ], ], 'LabelName' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedRuleGroupResponse$LabelNamespace' => '

The label namespace prefix for this rule group. All labels added by rules in this rule group have this prefix.

  • The syntax for the label namespace prefix for a managed rule group is the following:

    awswaf:managed:<vendor>:<rule group name>:

  • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

    <label namespace>:<label from rule>

', 'Label$Name' => '

The label string.

', 'LabelNameCondition$LabelName' => '

The label name that a log record must contain in order to meet the condition. This must be a fully qualified label name. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.

', 'LabelSummary$Name' => '

An individual label specification.

', 'ManagedRuleSet$LabelNamespace' => '

The label namespace prefix for the managed rule groups that are offered to customers from this managed rule set. All labels that are added by rules in the managed rule group have this prefix.

  • The syntax for the label namespace prefix for a managed rule group is the following:

    awswaf:managed:<vendor>:<rule group name>:

  • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

    <label namespace>:<label from rule>

', 'ManagedRuleSetSummary$LabelNamespace' => '

The label namespace prefix for the managed rule groups that are offered to customers from this managed rule set. All labels that are added by rules in the managed rule group have this prefix.

  • The syntax for the label namespace prefix for a managed rule group is the following:

    awswaf:managed:<vendor>:<rule group name>:

  • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

    <label namespace>:<label from rule>

', 'RuleGroup$LabelNamespace' => '

The label namespace prefix for this rule group. All labels added by rules in this rule group have this prefix.

  • The syntax for the label namespace prefix for your rule groups is the following:

    awswaf:<account ID>:rulegroup:<rule group name>:

  • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

    <label namespace>:<label from rule>

', 'WebACL$LabelNamespace' => '

The label namespace prefix for this web ACL. All labels added by rules in this web ACL have this prefix.

  • The syntax for the label namespace prefix for a web ACL is the following:

    awswaf:<account ID>:webacl:<web ACL name>:

  • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

    <label namespace>:<label from rule>

', ], ], 'LabelNameCondition' => [ 'base' => '

A single label name condition for a Condition in a logging filter.

', 'refs' => [ 'Condition$LabelNameCondition' => '

A single label name condition. This is the fully qualified label name that a log record must contain in order to meet the condition. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.

', ], ], 'LabelNamespace' => [ 'base' => NULL, 'refs' => [ 'RateLimitLabelNamespace$Namespace' => '

The namespace to use for aggregation.

', ], ], 'LabelSummaries' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedRuleGroupResponse$AvailableLabels' => '

The labels that one or more rules in this rule group add to matching web requests. These labels are defined in the RuleLabels for a Rule.

', 'DescribeManagedRuleGroupResponse$ConsumedLabels' => '

The labels that one or more rules in this rule group match against in label match statements. These labels are defined in a LabelMatchStatement specification, in the Statement definition of a rule.

', 'RuleGroup$AvailableLabels' => '

The labels that one or more rules in this rule group add to matching web requests. These labels are defined in the RuleLabels for a Rule.

', 'RuleGroup$ConsumedLabels' => '

The labels that one or more rules in this rule group match against in label match statements. These labels are defined in a LabelMatchStatement specification, in the Statement definition of a rule.

', ], ], 'LabelSummary' => [ 'base' => '

List of labels used by one or more of the rules of a RuleGroup. This summary object is used for the following rule group lists:

  • AvailableLabels - Labels that rules add to matching requests. These labels are defined in the RuleLabels for a Rule.

  • ConsumedLabels - Labels that rules match against. These labels are defined in a LabelMatchStatement specification, in the Statement definition of a rule.

', 'refs' => [ 'LabelSummaries$member' => NULL, ], ], 'Labels' => [ 'base' => NULL, 'refs' => [ 'Rule$RuleLabels' => '

Labels to apply to web requests that match the rule match statement. WAF applies fully qualified labels to matching web requests. A fully qualified label is the concatenation of a label namespace and a rule label. The rule\'s rule group or web ACL defines the label namespace.

Rules that run after this rule in the web ACL can match against these labels using a LabelMatchStatement.

For each label, provide a case-sensitive string containing optional namespaces and a label name, according to the following guidelines:

  • Separate each component of the label with a colon.

  • Each namespace or name can have up to 128 characters.

  • You can specify up to 5 namespaces in a label.

  • Don\'t use the following reserved words in your label specification: aws, waf, managed, rulegroup, webacl, regexpatternset, or ipset.

For example, myLabelName or nameSpace1:nameSpace2:myLabelName.

', 'SampledHTTPRequest$Labels' => '

Labels applied to the web request by matching rules. WAF applies fully qualified labels to matching web requests. A fully qualified label is the concatenation of a label namespace and a rule label. The rule\'s rule group or web ACL defines the label namespace.

For example, awswaf:111122223333:myRuleGroup:testRules:testNS1:testNS2:labelNameA or awswaf:managed:aws:managed-rule-set:header:encoding:utf8.

', ], ], 'ListAPIKeysRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAPIKeysResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAvailableManagedRuleGroupVersionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAvailableManagedRuleGroupVersionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListAvailableManagedRuleGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListAvailableManagedRuleGroupsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListIPSetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListIPSetsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListLoggingConfigurationsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListLoggingConfigurationsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListManagedRuleSetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListManagedRuleSetsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListMaxItems' => [ 'base' => NULL, 'refs' => [ 'GetSampledRequestsRequest$MaxItems' => '

The number of requests that you want WAF to return from among the first 5,000 requests that your Amazon Web Services resource received during the time range. If your resource received fewer requests than the value of MaxItems, GetSampledRequests returns information about all of them.

', ], ], 'ListMobileSdkReleasesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListMobileSdkReleasesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListRegexPatternSetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListRegexPatternSetsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListResourcesForWebACLRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListResourcesForWebACLResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListRuleGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListRuleGroupsResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListTagsForResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListTagsForResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListWebACLsRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListWebACLsResponse' => [ 'base' => NULL, 'refs' => [], ], 'LockToken' => [ 'base' => NULL, 'refs' => [ 'DeleteFirewallManagerRuleGroupsRequest$WebACLLockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'DeleteFirewallManagerRuleGroupsResponse$NextWebACLLockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'DeleteIPSetRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'DeleteRegexPatternSetRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'DeleteRuleGroupRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'DeleteWebACLRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'GetIPSetResponse$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'GetManagedRuleSetResponse$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'GetRegexPatternSetResponse$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'GetRuleGroupResponse$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'GetWebACLResponse$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'IPSetSummary$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'ManagedRuleSetSummary$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'PutManagedRuleSetVersionsRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'PutManagedRuleSetVersionsResponse$NextLockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'RegexPatternSetSummary$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'RuleGroupSummary$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'UpdateIPSetRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'UpdateIPSetResponse$NextLockToken' => '

A token used for optimistic locking. WAF returns this token to your update requests. You use NextLockToken in the same manner as you use LockToken.

', 'UpdateManagedRuleSetVersionExpiryDateRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'UpdateManagedRuleSetVersionExpiryDateResponse$NextLockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'UpdateRegexPatternSetRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'UpdateRegexPatternSetResponse$NextLockToken' => '

A token used for optimistic locking. WAF returns this token to your update requests. You use NextLockToken in the same manner as you use LockToken.

', 'UpdateRuleGroupRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'UpdateRuleGroupResponse$NextLockToken' => '

A token used for optimistic locking. WAF returns this token to your update requests. You use NextLockToken in the same manner as you use LockToken.

', 'UpdateWebACLRequest$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', 'UpdateWebACLResponse$NextLockToken' => '

A token used for optimistic locking. WAF returns this token to your update requests. You use NextLockToken in the same manner as you use LockToken.

', 'WebACLSummary$LockToken' => '

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

', ], ], 'LogDestinationConfigs' => [ 'base' => NULL, 'refs' => [ 'LoggingConfiguration$LogDestinationConfigs' => '

The logging destination configuration that you want to associate with the web ACL.

You can associate one logging destination to a web ACL.

', ], ], 'LoggingConfiguration' => [ 'base' => '

Defines an association between logging destinations and a web ACL resource, for logging from WAF. As part of the association, you can specify parts of the standard logging fields to keep out of the logs and you can specify filters so that you log only a subset of the logging records.

You can define one logging destination per web ACL.

You can access information about the traffic that WAF inspects using the following steps:

  1. Create your logging destination. You can use an Amazon CloudWatch Logs log group, an Amazon Simple Storage Service (Amazon S3) bucket, or an Amazon Kinesis Data Firehose.

    The name that you give the destination must start with aws-waf-logs-. Depending on the type of destination, you might need to configure additional settings or permissions.

    For configuration requirements and pricing information for each destination type, see Logging web ACL traffic in the WAF Developer Guide.

  2. Associate your logging destination to your web ACL using a PutLoggingConfiguration request.

When you successfully enable logging using a PutLoggingConfiguration request, WAF creates an additional role or policy that is required to write logs to the logging destination. For an Amazon CloudWatch Logs log group, WAF creates a resource policy on the log group. For an Amazon S3 bucket, WAF creates a bucket policy. For an Amazon Kinesis Data Firehose, WAF creates a service-linked role.

For additional information about web ACL logging, see Logging web ACL traffic information in the WAF Developer Guide.

', 'refs' => [ 'GetLoggingConfigurationResponse$LoggingConfiguration' => '

The LoggingConfiguration for the specified web ACL.

', 'LoggingConfigurations$member' => NULL, 'PutLoggingConfigurationRequest$LoggingConfiguration' => '

', 'PutLoggingConfigurationResponse$LoggingConfiguration' => '

', ], ], 'LoggingConfigurations' => [ 'base' => NULL, 'refs' => [ 'ListLoggingConfigurationsResponse$LoggingConfigurations' => '

Array of logging configurations. If you specified a Limit in your request, this might not be the full list.

', ], ], 'LoggingFilter' => [ 'base' => '

Filtering that specifies which web requests are kept in the logs and which are dropped, defined for a web ACL\'s LoggingConfiguration.

You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.

', 'refs' => [ 'LoggingConfiguration$LoggingFilter' => '

Filtering that specifies which web requests are kept in the logs and which are dropped. You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.

', ], ], 'LoginPathString' => [ 'base' => NULL, 'refs' => [ 'ManagedRuleGroupConfig$LoginPath' => '

Instead of this setting, provide your configuration under AWSManagedRulesATPRuleSet.

', ], ], 'ManagedProductDescriptor' => [ 'base' => '

The properties of a managed product, such as an Amazon Web Services Managed Rules rule group or an Amazon Web Services Marketplace managed rule group.

', 'refs' => [ 'ManagedProductDescriptors$member' => NULL, ], ], 'ManagedProductDescriptors' => [ 'base' => NULL, 'refs' => [ 'DescribeAllManagedProductsResponse$ManagedProducts' => '

High-level information for the Amazon Web Services Managed Rules rule groups and Amazon Web Services Marketplace managed rule groups.

', 'DescribeManagedProductsByVendorResponse$ManagedProducts' => '

High-level information for the managed rule groups owned by the specified vendor.

', ], ], 'ManagedRuleGroupConfig' => [ 'base' => '

Additional information that\'s used by a managed rule group. Many managed rule groups don\'t require this.

The rule groups used for intelligent threat mitigation require additional configuration:

  • Use the AWSManagedRulesACFPRuleSet configuration object to configure the account creation fraud prevention managed rule group. The configuration includes the registration and sign-up pages of your application and the locations in the account creation request payload of data, such as the user email and phone number fields.

  • Use the AWSManagedRulesATPRuleSet configuration object to configure the account takeover prevention managed rule group. The configuration includes the sign-in page of your application and the locations in the login request payload of data such as the username and password.

  • Use the AWSManagedRulesBotControlRuleSet configuration object to configure the protection level that you want the Bot Control rule group to use.

For example specifications, see the examples section of CreateWebACL.

', 'refs' => [ 'ManagedRuleGroupConfigs$member' => NULL, ], ], 'ManagedRuleGroupConfigs' => [ 'base' => NULL, 'refs' => [ 'ManagedRuleGroupStatement$ManagedRuleGroupConfigs' => '

Additional information that\'s used by a managed rule group. Many managed rule groups don\'t require this.

The rule groups used for intelligent threat mitigation require additional configuration:

  • Use the AWSManagedRulesACFPRuleSet configuration object to configure the account creation fraud prevention managed rule group. The configuration includes the registration and sign-up pages of your application and the locations in the account creation request payload of data, such as the user email and phone number fields.

  • Use the AWSManagedRulesATPRuleSet configuration object to configure the account takeover prevention managed rule group. The configuration includes the sign-in page of your application and the locations in the login request payload of data such as the username and password.

  • Use the AWSManagedRulesBotControlRuleSet configuration object to configure the protection level that you want the Bot Control rule group to use.

', ], ], 'ManagedRuleGroupStatement' => [ 'base' => '

A rule statement used to run the rules that are defined in a managed rule group. To use this, provide the vendor name and the name of the rule group in this statement. You can retrieve the required names by calling ListAvailableManagedRuleGroups.

You cannot nest a ManagedRuleGroupStatement, for example for use inside a NotStatement or OrStatement. You cannot use a managed rule group inside another rule group. You can only reference a managed rule group as a top-level statement within a rule that you define in a web ACL.

You are charged additional fees when you use the WAF Bot Control managed rule group AWSManagedRulesBotControlRuleSet, the WAF Fraud Control account takeover prevention (ATP) managed rule group AWSManagedRulesATPRuleSet, or the WAF Fraud Control account creation fraud prevention (ACFP) managed rule group AWSManagedRulesACFPRuleSet. For more information, see WAF Pricing.

', 'refs' => [ 'FirewallManagerStatement$ManagedRuleGroupStatement' => '

A statement used by Firewall Manager to run the rules that are defined in a managed rule group. This is managed by Firewall Manager for an Firewall Manager WAF policy.

', 'Statement$ManagedRuleGroupStatement' => '

A rule statement used to run the rules that are defined in a managed rule group. To use this, provide the vendor name and the name of the rule group in this statement. You can retrieve the required names by calling ListAvailableManagedRuleGroups.

You cannot nest a ManagedRuleGroupStatement, for example for use inside a NotStatement or OrStatement. You cannot use a managed rule group inside another rule group. You can only reference a managed rule group as a top-level statement within a rule that you define in a web ACL.

You are charged additional fees when you use the WAF Bot Control managed rule group AWSManagedRulesBotControlRuleSet, the WAF Fraud Control account takeover prevention (ATP) managed rule group AWSManagedRulesATPRuleSet, or the WAF Fraud Control account creation fraud prevention (ACFP) managed rule group AWSManagedRulesACFPRuleSet. For more information, see WAF Pricing.

', ], ], 'ManagedRuleGroupSummaries' => [ 'base' => NULL, 'refs' => [ 'ListAvailableManagedRuleGroupsResponse$ManagedRuleGroups' => '

Array of managed rule groups that you can use. If you specified a Limit in your request, this might not be the full list.

', ], ], 'ManagedRuleGroupSummary' => [ 'base' => '

High-level information about a managed rule group, returned by ListAvailableManagedRuleGroups. This provides information like the name and vendor name, that you provide when you add a ManagedRuleGroupStatement to a web ACL. Managed rule groups include Amazon Web Services Managed Rules rule groups and Amazon Web Services Marketplace managed rule groups. To use any Amazon Web Services Marketplace managed rule group, first subscribe to the rule group through Amazon Web Services Marketplace.

', 'refs' => [ 'ManagedRuleGroupSummaries$member' => NULL, ], ], 'ManagedRuleGroupVersion' => [ 'base' => '

Describes a single version of a managed rule group.

', 'refs' => [ 'ManagedRuleGroupVersions$member' => NULL, ], ], 'ManagedRuleGroupVersions' => [ 'base' => NULL, 'refs' => [ 'ListAvailableManagedRuleGroupVersionsResponse$Versions' => '

The versions that are currently available for the specified managed rule group. If you specified a Limit in your request, this might not be the full list.

', ], ], 'ManagedRuleSet' => [ 'base' => '

A set of rules that is managed by Amazon Web Services and Amazon Web Services Marketplace sellers to provide versioned managed rule groups for customers of WAF.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

', 'refs' => [ 'GetManagedRuleSetResponse$ManagedRuleSet' => '

The managed rule set that you requested.

', ], ], 'ManagedRuleSetSummaries' => [ 'base' => NULL, 'refs' => [ 'ListManagedRuleSetsResponse$ManagedRuleSets' => '

Your managed rule sets. If you specified a Limit in your request, this might not be the full list.

', ], ], 'ManagedRuleSetSummary' => [ 'base' => '

High-level information for a managed rule set.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

', 'refs' => [ 'ManagedRuleSetSummaries$member' => NULL, ], ], 'ManagedRuleSetVersion' => [ 'base' => '

Information for a single version of a managed rule set.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

', 'refs' => [ 'PublishedVersions$value' => NULL, ], ], 'MapMatchScope' => [ 'base' => NULL, 'refs' => [ 'Cookies$MatchScope' => '

The parts of the cookies to inspect with the rule inspection criteria. If you specify ALL, WAF inspects both keys and values.

All does not require a match to be found in the keys and a match to be found in the values. It requires a match to be found in the keys or the values or both. To require a match in the keys and in the values, use a logical AND statement to combine two match rules, one that inspects the keys and another that inspects the values.

', 'Headers$MatchScope' => '

The parts of the headers to match with the rule inspection criteria. If you specify ALL, WAF inspects both keys and values.

All does not require a match to be found in the keys and a match to be found in the values. It requires a match to be found in the keys or the values or both. To require a match in the keys and in the values, use a logical AND statement to combine two match rules, one that inspects the keys and another that inspects the values.

', ], ], 'Method' => [ 'base' => '

Inspect the HTTP method of the web request. The method indicates the type of operation that the request is asking the origin to perform.

This is used in the FieldToMatch specification for some web request component types.

JSON specification: "Method": {}

', 'refs' => [ 'FieldToMatch$Method' => '

Inspect the HTTP method. The method indicates the type of operation that the request is asking the origin to perform.

', ], ], 'MetricName' => [ 'base' => NULL, 'refs' => [ 'GetSampledRequestsRequest$RuleMetricName' => '

The metric name assigned to the Rule or RuleGroup dimension for which you want a sample of requests.

', 'VisibilityConfig$MetricName' => '

A name of the Amazon CloudWatch metric dimension. The name can contain only the characters: A-Z, a-z, 0-9, - (hyphen), and _ (underscore). The name can be from one to 128 characters long. It can\'t contain whitespace or metric names that are reserved for WAF, for example All and Default_Action.

', ], ], 'MobileSdkRelease' => [ 'base' => '

Information for a release of the mobile SDK, including release notes and tags.

The mobile SDK is not generally available. Customers who have access to the mobile SDK can use it to establish and manage WAF tokens for use in HTTP(S) requests from a mobile device to WAF. For more information, see WAF client application integration in the WAF Developer Guide.

', 'refs' => [ 'GetMobileSdkReleaseResponse$MobileSdkRelease' => '

Information for a specified SDK release, including release notes and tags.

', ], ], 'NextMarker' => [ 'base' => NULL, 'refs' => [ 'ListAPIKeysRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListAPIKeysResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListAvailableManagedRuleGroupVersionsRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListAvailableManagedRuleGroupVersionsResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListAvailableManagedRuleGroupsRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListAvailableManagedRuleGroupsResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListIPSetsRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListIPSetsResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListLoggingConfigurationsRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListLoggingConfigurationsResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListManagedRuleSetsRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListManagedRuleSetsResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListMobileSdkReleasesRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListMobileSdkReleasesResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListRegexPatternSetsRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListRegexPatternSetsResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListRuleGroupsRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListRuleGroupsResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListTagsForResourceRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListTagsForResourceResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListWebACLsRequest$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', 'ListWebACLsResponse$NextMarker' => '

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

', ], ], 'NoneAction' => [ 'base' => '

Specifies that WAF should do nothing. This is used for the OverrideAction setting on a Rule when the rule uses a rule group reference statement.

This is used in the context of other settings, for example to specify values for RuleAction and web ACL DefaultAction.

JSON specification: "None": {}

', 'refs' => [ 'OverrideAction$None' => '

Don\'t override the rule group evaluation result. This is the most common setting.

', ], ], 'NotStatement' => [ 'base' => '

A logical rule statement used to negate the results of another rule statement. You provide one Statement within the NotStatement.

', 'refs' => [ 'Statement$NotStatement' => '

A logical rule statement used to negate the results of another rule statement. You provide one Statement within the NotStatement.

', ], ], 'OrStatement' => [ 'base' => '

A logical rule statement used to combine other rule statements with OR logic. You provide more than one Statement within the OrStatement.

', 'refs' => [ 'Statement$OrStatement' => '

A logical rule statement used to combine other rule statements with OR logic. You provide more than one Statement within the OrStatement.

', ], ], 'OutputUrl' => [ 'base' => NULL, 'refs' => [ 'GetWebACLResponse$ApplicationIntegrationURL' => '

The URL to use in SDK integrations with Amazon Web Services managed rule groups. For example, you can use the integration SDKs with the account takeover prevention managed rule group AWSManagedRulesATPRuleSet and the account creation fraud prevention managed rule group AWSManagedRulesACFPRuleSet. This is only populated if you are using a rule group in your web ACL that integrates with your applications in this way. For more information, see WAF client application integration in the WAF Developer Guide.

', 'ListAPIKeysResponse$ApplicationIntegrationURL' => '

The CAPTCHA application integration URL, for use in your JavaScript implementation.

', ], ], 'OverrideAction' => [ 'base' => '

The action to use in the place of the action that results from the rule group evaluation. Set the override action to none to leave the result of the rule group alone. Set it to count to override the result to count only.

You can only use this for rule statements that reference a rule group, like RuleGroupReferenceStatement and ManagedRuleGroupStatement.

This option is usually set to none. It does not affect how the rules in the rule group are evaluated. If you want the rules in the rule group to only count matches, do not use this and instead use the rule action override option, with Count action, in your rule group reference statement settings.

', 'refs' => [ 'FirewallManagerRuleGroup$OverrideAction' => '

The action to use in the place of the action that results from the rule group evaluation. Set the override action to none to leave the result of the rule group alone. Set it to count to override the result to count only.

You can only use this for rule statements that reference a rule group, like RuleGroupReferenceStatement and ManagedRuleGroupStatement.

This option is usually set to none. It does not affect how the rules in the rule group are evaluated. If you want the rules in the rule group to only count matches, do not use this and instead use the rule action override option, with Count action, in your rule group reference statement settings.

', 'Rule$OverrideAction' => '

The action to use in the place of the action that results from the rule group evaluation. Set the override action to none to leave the result of the rule group alone. Set it to count to override the result to count only.

You can only use this for rule statements that reference a rule group, like RuleGroupReferenceStatement and ManagedRuleGroupStatement.

This option is usually set to none. It does not affect how the rules in the rule group are evaluated. If you want the rules in the rule group to only count matches, do not use this and instead use the rule action override option, with Count action, in your rule group reference statement settings.

', ], ], 'OversizeHandling' => [ 'base' => NULL, 'refs' => [ 'Body$OversizeHandling' => '

What WAF should do if the body is larger than WAF can inspect. WAF does not support inspecting the entire contents of the web request body if the body exceeds the limit for the resource type. If the body is larger than the limit, the underlying host service only forwards the contents that are below the limit to WAF for inspection.

The default limit is 8 KB (8,192 bytes) for regional resources and 16 KB (16,384 bytes) for CloudFront distributions. For CloudFront distributions, you can increase the limit in the web ACL AssociationConfig, for additional processing fees.

The options for oversize handling are the following:

  • CONTINUE - Inspect the available body contents normally, according to the rule inspection criteria.

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

You can combine the MATCH or NO_MATCH settings for oversize handling with your rule and web ACL action settings, so that you block any request whose body is over the limit.

Default: CONTINUE

', 'Cookies$OversizeHandling' => '

What WAF should do if the cookies of the request are more numerous or larger than WAF can inspect. WAF does not support inspecting the entire contents of request cookies when they exceed 8 KB (8192 bytes) or 200 total cookies. The underlying host service forwards a maximum of 200 cookies and at most 8 KB of cookie contents to WAF.

The options for oversize handling are the following:

  • CONTINUE - Inspect the available cookies normally, according to the rule inspection criteria.

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

', 'HeaderOrder$OversizeHandling' => '

What WAF should do if the headers of the request are more numerous or larger than WAF can inspect. WAF does not support inspecting the entire contents of request headers when they exceed 8 KB (8192 bytes) or 200 total headers. The underlying host service forwards a maximum of 200 headers and at most 8 KB of header contents to WAF.

The options for oversize handling are the following:

  • CONTINUE - Inspect the available headers normally, according to the rule inspection criteria.

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

', 'Headers$OversizeHandling' => '

What WAF should do if the headers of the request are more numerous or larger than WAF can inspect. WAF does not support inspecting the entire contents of request headers when they exceed 8 KB (8192 bytes) or 200 total headers. The underlying host service forwards a maximum of 200 headers and at most 8 KB of header contents to WAF.

The options for oversize handling are the following:

  • CONTINUE - Inspect the available headers normally, according to the rule inspection criteria.

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

', 'JsonBody$OversizeHandling' => '

What WAF should do if the body is larger than WAF can inspect. WAF does not support inspecting the entire contents of the web request body if the body exceeds the limit for the resource type. If the body is larger than the limit, the underlying host service only forwards the contents that are below the limit to WAF for inspection.

The default limit is 8 KB (8,192 bytes) for regional resources and 16 KB (16,384 bytes) for CloudFront distributions. For CloudFront distributions, you can increase the limit in the web ACL AssociationConfig, for additional processing fees.

The options for oversize handling are the following:

  • CONTINUE - Inspect the available body contents normally, according to the rule inspection criteria.

  • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.

  • NO_MATCH - Treat the web request as not matching the rule statement.

You can combine the MATCH or NO_MATCH settings for oversize handling with your rule and web ACL action settings, so that you block any request whose body is over the limit.

Default: CONTINUE

', ], ], 'PaginationLimit' => [ 'base' => NULL, 'refs' => [ 'ListAPIKeysRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListAvailableManagedRuleGroupVersionsRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListAvailableManagedRuleGroupsRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListIPSetsRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListLoggingConfigurationsRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListManagedRuleSetsRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListMobileSdkReleasesRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListRegexPatternSetsRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListRuleGroupsRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListTagsForResourceRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', 'ListWebACLsRequest$Limit' => '

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

', ], ], 'ParameterExceptionField' => [ 'base' => NULL, 'refs' => [ 'WAFInvalidParameterException$Field' => '

The settings where the invalid parameter was found.

', ], ], 'ParameterExceptionParameter' => [ 'base' => NULL, 'refs' => [ 'WAFInvalidParameterException$Parameter' => '

The invalid parameter that resulted in the exception.

', ], ], 'PasswordField' => [ 'base' => '

The name of the field in the request payload that contains your customer\'s password.

This data type is used in the RequestInspection and RequestInspectionACFP data types.

', 'refs' => [ 'ManagedRuleGroupConfig$PasswordField' => '

Instead of this setting, provide your configuration under the request inspection configuration for AWSManagedRulesATPRuleSet or AWSManagedRulesACFPRuleSet.

', 'RequestInspection$PasswordField' => '

The name of the field in the request payload that contains your customer\'s password.

How you specify this depends on the request inspection payload type.

  • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "password": "THE_PASSWORD" } }, the password field specification is /form/password.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with the input element named password1, the password field specification is password1.

', 'RequestInspectionACFP$PasswordField' => '

The name of the field in the request payload that contains your customer\'s password.

How you specify this depends on the request inspection payload type.

  • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "password": "THE_PASSWORD" } }, the password field specification is /form/password.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with the input element named password1, the password field specification is password1.

', ], ], 'PayloadType' => [ 'base' => NULL, 'refs' => [ 'ManagedRuleGroupConfig$PayloadType' => '

Instead of this setting, provide your configuration under the request inspection configuration for AWSManagedRulesATPRuleSet or AWSManagedRulesACFPRuleSet.

', 'RequestInspection$PayloadType' => '

The payload type for your login endpoint, either JSON or form encoded.

', 'RequestInspectionACFP$PayloadType' => '

The payload type for your account creation endpoint, either JSON or form encoded.

', ], ], 'PhoneNumberField' => [ 'base' => '

The name of a field in the request payload that contains part or all of your customer\'s primary phone number.

This data type is used in the RequestInspectionACFP data type.

', 'refs' => [ 'PhoneNumberFields$member' => NULL, ], ], 'PhoneNumberFields' => [ 'base' => NULL, 'refs' => [ 'RequestInspectionACFP$PhoneNumberFields' => '

The names of the fields in the request payload that contain your customer\'s primary phone number.

Order the phone number fields in the array exactly as they are ordered in the request payload.

How you specify the phone number fields depends on the request inspection payload type.

  • For JSON payloads, specify the field identifiers in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "primaryphoneline1": "THE_PHONE1", "primaryphoneline2": "THE_PHONE2", "primaryphoneline3": "THE_PHONE3" } }, the phone number field identifiers are /form/primaryphoneline1, /form/primaryphoneline2, and /form/primaryphoneline3.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with input elements named primaryphoneline1, primaryphoneline2, and primaryphoneline3, the phone number field identifiers are primaryphoneline1, primaryphoneline2, and primaryphoneline3.

', ], ], 'Platform' => [ 'base' => NULL, 'refs' => [ 'GenerateMobileSdkReleaseUrlRequest$Platform' => '

The device platform.

', 'GetMobileSdkReleaseRequest$Platform' => '

The device platform.

', 'ListMobileSdkReleasesRequest$Platform' => '

The device platform to retrieve the list for.

', ], ], 'PolicyString' => [ 'base' => NULL, 'refs' => [ 'GetPermissionPolicyResponse$Policy' => '

The IAM policy that is attached to the specified rule group.

', 'PutPermissionPolicyRequest$Policy' => '

The policy to attach to the specified rule group.

The policy specifications must conform to the following:

  • The policy must be composed using IAM Policy version 2012-10-17.

  • The policy must include specifications for Effect, Action, and Principal.

  • Effect must specify Allow.

  • Action must specify wafv2:CreateWebACL, wafv2:UpdateWebACL, and wafv2:PutFirewallManagerRuleGroups and may optionally specify wafv2:GetRuleGroup. WAF rejects any extra actions or wildcard actions in the policy.

  • The policy must not include a Resource parameter.

For more information, see IAM Policies.

', ], ], 'PopulationSize' => [ 'base' => NULL, 'refs' => [ 'GetSampledRequestsResponse$PopulationSize' => '

The total number of requests from which GetSampledRequests got a sample of MaxItems requests. If PopulationSize is less than MaxItems, the sample includes every request that your Amazon Web Services resource received during the specified time range.

', ], ], 'PositionalConstraint' => [ 'base' => NULL, 'refs' => [ 'ByteMatchStatement$PositionalConstraint' => '

The area within the portion of the web request that you want WAF to search for SearchString. Valid values include the following:

CONTAINS

The specified part of the web request must include the value of SearchString, but the location doesn\'t matter.

CONTAINS_WORD

The specified part of the web request must include the value of SearchString, and SearchString must contain only alphanumeric characters or underscore (A-Z, a-z, 0-9, or _). In addition, SearchString must be a word, which means that both of the following are true:

  • SearchString is at the beginning of the specified part of the web request or is preceded by a character other than an alphanumeric character or underscore (_). Examples include the value of a header and ;BadBot.

  • SearchString is at the end of the specified part of the web request or is followed by a character other than an alphanumeric character or underscore (_), for example, BadBot; and -BadBot;.

EXACTLY

The value of the specified part of the web request must exactly match the value of SearchString.

STARTS_WITH

The value of SearchString must appear at the beginning of the specified part of the web request.

ENDS_WITH

The value of SearchString must appear at the end of the specified part of the web request.

', ], ], 'ProductDescription' => [ 'base' => NULL, 'refs' => [ 'ManagedProductDescriptor$ProductDescription' => '

A short description of the managed rule group.

', ], ], 'ProductId' => [ 'base' => NULL, 'refs' => [ 'ManagedProductDescriptor$ProductId' => '

A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

', ], ], 'ProductLink' => [ 'base' => NULL, 'refs' => [ 'ManagedProductDescriptor$ProductLink' => '

For Amazon Web Services Marketplace managed rule groups only, the link to the rule group product page.

', ], ], 'ProductTitle' => [ 'base' => NULL, 'refs' => [ 'ManagedProductDescriptor$ProductTitle' => '

The display name for the managed rule group. For example, Anonymous IP list or Account takeover prevention.

', ], ], 'PublishedVersions' => [ 'base' => NULL, 'refs' => [ 'ManagedRuleSet$PublishedVersions' => '

The versions of this managed rule set that are available for use by customers.

', ], ], 'PutLoggingConfigurationRequest' => [ 'base' => NULL, 'refs' => [], ], 'PutLoggingConfigurationResponse' => [ 'base' => NULL, 'refs' => [], ], 'PutManagedRuleSetVersionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'PutManagedRuleSetVersionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'PutPermissionPolicyRequest' => [ 'base' => NULL, 'refs' => [], ], 'PutPermissionPolicyResponse' => [ 'base' => NULL, 'refs' => [], ], 'QueryString' => [ 'base' => '

Inspect the query string of the web request. This is the part of a URL that appears after a ? character, if any.

This is used in the FieldToMatch specification for some web request component types.

JSON specification: "QueryString": {}

', 'refs' => [ 'FieldToMatch$QueryString' => '

Inspect the query string. This is the part of a URL that appears after a ? character, if any.

', ], ], 'RateBasedStatement' => [ 'base' => '

A rate-based rule counts incoming requests and rate limits requests when they are coming at too fast a rate. The rule categorizes requests according to your aggregation criteria, collects them into aggregation instances, and counts and rate limits the requests for each instance.

You can specify individual aggregation keys, like IP address or HTTP method. You can also specify aggregation key combinations, like IP address and HTTP method, or HTTP method, query argument, and cookie.

Each unique set of values for the aggregation keys that you specify is a separate aggregation instance, with the value from each key contributing to the aggregation instance definition.

For example, assume the rule evaluates web requests with the following IP address and HTTP method values:

  • IP address 10.1.1.1, HTTP method POST

  • IP address 10.1.1.1, HTTP method GET

  • IP address 127.0.0.0, HTTP method POST

  • IP address 10.1.1.1, HTTP method GET

The rule would create different aggregation instances according to your aggregation criteria, for example:

  • If the aggregation criteria is just the IP address, then each individual address is an aggregation instance, and WAF counts requests separately for each. The aggregation instances and request counts for our example would be the following:

    • IP address 10.1.1.1: count 3

    • IP address 127.0.0.0: count 1

  • If the aggregation criteria is HTTP method, then each individual HTTP method is an aggregation instance. The aggregation instances and request counts for our example would be the following:

    • HTTP method POST: count 2

    • HTTP method GET: count 2

  • If the aggregation criteria is IP address and HTTP method, then each IP address and each HTTP method would contribute to the combined aggregation instance. The aggregation instances and request counts for our example would be the following:

    • IP address 10.1.1.1, HTTP method POST: count 1

    • IP address 10.1.1.1, HTTP method GET: count 2

    • IP address 127.0.0.0, HTTP method POST: count 1

For any n-tuple of aggregation keys, each unique combination of values for the keys defines a separate aggregation instance, which WAF counts and rate-limits individually.

You can optionally nest another statement inside the rate-based statement, to narrow the scope of the rule so that it only counts and rate limits requests that match the nested statement. You can use this nested scope-down statement in conjunction with your aggregation key specifications or you can just count and rate limit all requests that match the scope-down statement, without additional aggregation. When you choose to just manage all requests that match a scope-down statement, the aggregation instance is singular for the rule.

You cannot nest a RateBasedStatement inside another statement, for example inside a NotStatement or OrStatement. You can define a RateBasedStatement inside a web ACL and inside a rule group.

For additional information about the options, see Rate limiting web requests using rate-based rules in the WAF Developer Guide.

If you only aggregate on the individual IP address or forwarded IP address, you can retrieve the list of IP addresses that WAF is currently rate limiting for a rule through the API call GetRateBasedStatementManagedKeys. This option is not available for other aggregation configurations.

WAF tracks and manages web requests separately for each instance of a rate-based rule that you use. For example, if you provide the same rate-based rule settings in two web ACLs, each of the two rule statements represents a separate instance of the rate-based rule and gets its own tracking and management by WAF. If you define a rate-based rule inside a rule group, and then use that rule group in multiple places, each use creates a separate instance of the rate-based rule that gets its own tracking and management by WAF.

', 'refs' => [ 'Statement$RateBasedStatement' => '

A rate-based rule counts incoming requests and rate limits requests when they are coming at too fast a rate. The rule categorizes requests according to your aggregation criteria, collects them into aggregation instances, and counts and rate limits the requests for each instance.

You can specify individual aggregation keys, like IP address or HTTP method. You can also specify aggregation key combinations, like IP address and HTTP method, or HTTP method, query argument, and cookie.

Each unique set of values for the aggregation keys that you specify is a separate aggregation instance, with the value from each key contributing to the aggregation instance definition.

For example, assume the rule evaluates web requests with the following IP address and HTTP method values:

  • IP address 10.1.1.1, HTTP method POST

  • IP address 10.1.1.1, HTTP method GET

  • IP address 127.0.0.0, HTTP method POST

  • IP address 10.1.1.1, HTTP method GET

The rule would create different aggregation instances according to your aggregation criteria, for example:

  • If the aggregation criteria is just the IP address, then each individual address is an aggregation instance, and WAF counts requests separately for each. The aggregation instances and request counts for our example would be the following:

    • IP address 10.1.1.1: count 3

    • IP address 127.0.0.0: count 1

  • If the aggregation criteria is HTTP method, then each individual HTTP method is an aggregation instance. The aggregation instances and request counts for our example would be the following:

    • HTTP method POST: count 2

    • HTTP method GET: count 2

  • If the aggregation criteria is IP address and HTTP method, then each IP address and each HTTP method would contribute to the combined aggregation instance. The aggregation instances and request counts for our example would be the following:

    • IP address 10.1.1.1, HTTP method POST: count 1

    • IP address 10.1.1.1, HTTP method GET: count 2

    • IP address 127.0.0.0, HTTP method POST: count 1

For any n-tuple of aggregation keys, each unique combination of values for the keys defines a separate aggregation instance, which WAF counts and rate-limits individually.

You can optionally nest another statement inside the rate-based statement, to narrow the scope of the rule so that it only counts and rate limits requests that match the nested statement. You can use this nested scope-down statement in conjunction with your aggregation key specifications or you can just count and rate limit all requests that match the scope-down statement, without additional aggregation. When you choose to just manage all requests that match a scope-down statement, the aggregation instance is singular for the rule.

You cannot nest a RateBasedStatement inside another statement, for example inside a NotStatement or OrStatement. You can define a RateBasedStatement inside a web ACL and inside a rule group.

For additional information about the options, see Rate limiting web requests using rate-based rules in the WAF Developer Guide.

If you only aggregate on the individual IP address or forwarded IP address, you can retrieve the list of IP addresses that WAF is currently rate limiting for a rule through the API call GetRateBasedStatementManagedKeys. This option is not available for other aggregation configurations.

WAF tracks and manages web requests separately for each instance of a rate-based rule that you use. For example, if you provide the same rate-based rule settings in two web ACLs, each of the two rule statements represents a separate instance of the rate-based rule and gets its own tracking and management by WAF. If you define a rate-based rule inside a rule group, and then use that rule group in multiple places, each use creates a separate instance of the rate-based rule that gets its own tracking and management by WAF.

', ], ], 'RateBasedStatementAggregateKeyType' => [ 'base' => NULL, 'refs' => [ 'RateBasedStatement$AggregateKeyType' => '

Setting that indicates how to aggregate the request counts.

Web requests that are missing any of the components specified in the aggregation keys are omitted from the rate-based rule evaluation and handling.

  • CONSTANT - Count and limit the requests that match the rate-based rule\'s scope-down statement. With this option, the counted requests aren\'t further aggregated. The scope-down statement is the only specification used. When the count of all requests that satisfy the scope-down statement goes over the limit, WAF applies the rule action to all requests that satisfy the scope-down statement.

    With this option, you must configure the ScopeDownStatement property.

  • CUSTOM_KEYS - Aggregate the request counts using one or more web request components as the aggregate keys.

    With this option, you must specify the aggregate keys in the CustomKeys property.

    To aggregate on only the IP address or only the forwarded IP address, don\'t use custom keys. Instead, set the aggregate key type to IP or FORWARDED_IP.

  • FORWARDED_IP - Aggregate the request counts on the first IP address in an HTTP header.

    With this option, you must specify the header to use in the ForwardedIPConfig property.

    To aggregate on a combination of the forwarded IP address with other aggregate keys, use CUSTOM_KEYS.

  • IP - Aggregate the request counts on the IP address from the web request origin.

    To aggregate on a combination of the IP address with other aggregate keys, use CUSTOM_KEYS.

', ], ], 'RateBasedStatementCustomKey' => [ 'base' => '

Specifies a single custom aggregate key for a rate-base rule.

Web requests that are missing any of the components specified in the aggregation keys are omitted from the rate-based rule evaluation and handling.

', 'refs' => [ 'RateBasedStatementCustomKeys$member' => NULL, ], ], 'RateBasedStatementCustomKeys' => [ 'base' => NULL, 'refs' => [ 'RateBasedStatement$CustomKeys' => '

Specifies the aggregate keys to use in a rate-base rule.

', ], ], 'RateBasedStatementManagedKeysIPSet' => [ 'base' => '

The set of IP addresses that are currently blocked for a RateBasedStatement. This is only available for rate-based rules that aggregate on just the IP address, with the AggregateKeyType set to IP or FORWARDED_IP.

A rate-based rule applies its rule action to requests from IP addresses that are in the rule\'s managed keys list and that match the rule\'s scope-down statement. When a rule has no scope-down statement, it applies the action to all requests from the IP addresses that are in the list. The rule applies its rule action to rate limit the matching requests. The action is usually Block but it can be any valid rule action except for Allow.

The maximum number of IP addresses that can be rate limited by a single rate-based rule instance is 10,000. If more than 10,000 addresses exceed the rate limit, WAF limits those with the highest rates.

', 'refs' => [ 'GetRateBasedStatementManagedKeysResponse$ManagedKeysIPV4' => '

The keys that are of Internet Protocol version 4 (IPv4).

', 'GetRateBasedStatementManagedKeysResponse$ManagedKeysIPV6' => '

The keys that are of Internet Protocol version 6 (IPv6).

', ], ], 'RateLimit' => [ 'base' => NULL, 'refs' => [ 'RateBasedStatement$Limit' => '

The limit on requests per 5-minute period for a single aggregation instance for the rate-based rule. If the rate-based statement includes a ScopeDownStatement, this limit is applied only to the requests that match the statement.

Examples:

  • If you aggregate on just the IP address, this is the limit on requests from any single IP address.

  • If you aggregate on the HTTP method and the query argument name "city", then this is the limit on requests for any single method, city pair.

', ], ], 'RateLimitCookie' => [ 'base' => '

Specifies a cookie as an aggregate key for a rate-based rule. Each distinct value in the cookie contributes to the aggregation instance. If you use a single cookie as your custom key, then each value fully defines an aggregation instance.

', 'refs' => [ 'RateBasedStatementCustomKey$Cookie' => '

Use the value of a cookie in the request as an aggregate key. Each distinct value in the cookie contributes to the aggregation instance. If you use a single cookie as your custom key, then each value fully defines an aggregation instance.

', ], ], 'RateLimitForwardedIP' => [ 'base' => '

Specifies the first IP address in an HTTP header as an aggregate key for a rate-based rule. Each distinct forwarded IP address contributes to the aggregation instance.

This setting is used only in the RateBasedStatementCustomKey specification of a rate-based rule statement. When you specify an IP or forwarded IP in the custom key settings, you must also specify at least one other key to use. You can aggregate on only the forwarded IP address by specifying FORWARDED_IP in your rate-based statement\'s AggregateKeyType.

This data type supports using the forwarded IP address in the web request aggregation for a rate-based rule, in RateBasedStatementCustomKey. The JSON specification for using the forwarded IP address doesn\'t explicitly use this data type.

JSON specification: "ForwardedIP": {}

When you use this specification, you must also configure the forwarded IP address in the rate-based statement\'s ForwardedIPConfig.

', 'refs' => [ 'RateBasedStatementCustomKey$ForwardedIP' => '

Use the first IP address in an HTTP header as an aggregate key. Each distinct forwarded IP address contributes to the aggregation instance.

When you specify an IP or forwarded IP in the custom key settings, you must also specify at least one other key to use. You can aggregate on only the forwarded IP address by specifying FORWARDED_IP in your rate-based statement\'s AggregateKeyType.

With this option, you must specify the header to use in the rate-based rule\'s ForwardedIPConfig property.

', ], ], 'RateLimitHTTPMethod' => [ 'base' => '

Specifies the request\'s HTTP method as an aggregate key for a rate-based rule. Each distinct HTTP method contributes to the aggregation instance. If you use just the HTTP method as your custom key, then each method fully defines an aggregation instance.

JSON specification: "RateLimitHTTPMethod": {}

', 'refs' => [ 'RateBasedStatementCustomKey$HTTPMethod' => '

Use the request\'s HTTP method as an aggregate key. Each distinct HTTP method contributes to the aggregation instance. If you use just the HTTP method as your custom key, then each method fully defines an aggregation instance.

', ], ], 'RateLimitHeader' => [ 'base' => '

Specifies a header as an aggregate key for a rate-based rule. Each distinct value in the header contributes to the aggregation instance. If you use a single header as your custom key, then each value fully defines an aggregation instance.

', 'refs' => [ 'RateBasedStatementCustomKey$Header' => '

Use the value of a header in the request as an aggregate key. Each distinct value in the header contributes to the aggregation instance. If you use a single header as your custom key, then each value fully defines an aggregation instance.

', ], ], 'RateLimitIP' => [ 'base' => '

Specifies the IP address in the web request as an aggregate key for a rate-based rule. Each distinct IP address contributes to the aggregation instance.

This setting is used only in the RateBasedStatementCustomKey specification of a rate-based rule statement. To use this in the custom key settings, you must specify at least one other key to use, along with the IP address. To aggregate on only the IP address, in your rate-based statement\'s AggregateKeyType, specify IP.

JSON specification: "RateLimitIP": {}

', 'refs' => [ 'RateBasedStatementCustomKey$IP' => '

Use the request\'s originating IP address as an aggregate key. Each distinct IP address contributes to the aggregation instance.

When you specify an IP or forwarded IP in the custom key settings, you must also specify at least one other key to use. You can aggregate on only the IP address by specifying IP in your rate-based statement\'s AggregateKeyType.

', ], ], 'RateLimitLabelNamespace' => [ 'base' => '

Specifies a label namespace to use as an aggregate key for a rate-based rule. Each distinct fully qualified label name that has the specified label namespace contributes to the aggregation instance. If you use just one label namespace as your custom key, then each label name fully defines an aggregation instance.

This uses only labels that have been added to the request by rules that are evaluated before this rate-based rule in the web ACL.

For information about label namespaces and names, see Label syntax and naming requirements in the WAF Developer Guide.

', 'refs' => [ 'RateBasedStatementCustomKey$LabelNamespace' => '

Use the specified label namespace as an aggregate key. Each distinct fully qualified label name that has the specified label namespace contributes to the aggregation instance. If you use just one label namespace as your custom key, then each label name fully defines an aggregation instance.

This uses only labels that have been added to the request by rules that are evaluated before this rate-based rule in the web ACL.

For information about label namespaces and names, see Label syntax and naming requirements in the WAF Developer Guide.

', ], ], 'RateLimitQueryArgument' => [ 'base' => '

Specifies a query argument in the request as an aggregate key for a rate-based rule. Each distinct value for the named query argument contributes to the aggregation instance. If you use a single query argument as your custom key, then each value fully defines an aggregation instance.

', 'refs' => [ 'RateBasedStatementCustomKey$QueryArgument' => '

Use the specified query argument as an aggregate key. Each distinct value for the named query argument contributes to the aggregation instance. If you use a single query argument as your custom key, then each value fully defines an aggregation instance.

', ], ], 'RateLimitQueryString' => [ 'base' => '

Specifies the request\'s query string as an aggregate key for a rate-based rule. Each distinct string contributes to the aggregation instance. If you use just the query string as your custom key, then each string fully defines an aggregation instance.

', 'refs' => [ 'RateBasedStatementCustomKey$QueryString' => '

Use the request\'s query string as an aggregate key. Each distinct string contributes to the aggregation instance. If you use just the query string as your custom key, then each string fully defines an aggregation instance.

', ], ], 'RateLimitUriPath' => [ 'base' => '

Specifies the request\'s URI path as an aggregate key for a rate-based rule. Each distinct URI path contributes to the aggregation instance. If you use just the URI path as your custom key, then each URI path fully defines an aggregation instance.

', 'refs' => [ 'RateBasedStatementCustomKey$UriPath' => '

Use the request\'s URI path as an aggregate key. Each distinct URI path contributes to the aggregation instance. If you use just the URI path as your custom key, then each URI path fully defines an aggregation instance.

', ], ], 'RedactedFields' => [ 'base' => NULL, 'refs' => [ 'LoggingConfiguration$RedactedFields' => '

The parts of the request that you want to keep out of the logs.

For example, if you redact the SingleHeader field, the HEADER field in the logs will be REDACTED for all rules that use the SingleHeader FieldToMatch setting.

Redaction applies only to the component that\'s specified in the rule\'s FieldToMatch setting, so the SingleHeader redaction doesn\'t apply to rules that use the Headers FieldToMatch.

You can specify only the following fields for redaction: UriPath, QueryString, SingleHeader, and Method.

', ], ], 'Regex' => [ 'base' => '

A single regular expression. This is used in a RegexPatternSet.

', 'refs' => [ 'RegularExpressionList$member' => NULL, ], ], 'RegexMatchStatement' => [ 'base' => '

A rule statement used to search web request components for a match against a single regular expression.

', 'refs' => [ 'Statement$RegexMatchStatement' => '

A rule statement used to search web request components for a match against a single regular expression.

', ], ], 'RegexPatternSet' => [ 'base' => '

Contains one or more regular expressions.

WAF assigns an ARN to each RegexPatternSet that you create. To use a set in a rule, you provide the ARN to the Rule statement RegexPatternSetReferenceStatement.

', 'refs' => [ 'GetRegexPatternSetResponse$RegexPatternSet' => '

', ], ], 'RegexPatternSetReferenceStatement' => [ 'base' => '

A rule statement used to search web request components for matches with regular expressions. To use this, create a RegexPatternSet that specifies the expressions that you want to detect, then use the ARN of that set in this statement. A web request matches the pattern set rule statement if the request component matches any of the patterns in the set. To create a regex pattern set, see CreateRegexPatternSet.

Each regex pattern set rule statement references a regex pattern set. You create and maintain the set independent of your rules. This allows you to use the single set in multiple rules. When you update the referenced set, WAF automatically updates all rules that reference it.

', 'refs' => [ 'Statement$RegexPatternSetReferenceStatement' => '

A rule statement used to search web request components for matches with regular expressions. To use this, create a RegexPatternSet that specifies the expressions that you want to detect, then use the ARN of that set in this statement. A web request matches the pattern set rule statement if the request component matches any of the patterns in the set. To create a regex pattern set, see CreateRegexPatternSet.

Each regex pattern set rule statement references a regex pattern set. You create and maintain the set independent of your rules. This allows you to use the single set in multiple rules. When you update the referenced set, WAF automatically updates all rules that reference it.

', ], ], 'RegexPatternSetSummaries' => [ 'base' => NULL, 'refs' => [ 'ListRegexPatternSetsResponse$RegexPatternSets' => '

Array of regex pattern sets. If you specified a Limit in your request, this might not be the full list.

', ], ], 'RegexPatternSetSummary' => [ 'base' => '

High-level information about a RegexPatternSet, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a RegexPatternSet, and the ARN, that you provide to the RegexPatternSetReferenceStatement to use the pattern set in a Rule.

', 'refs' => [ 'CreateRegexPatternSetResponse$Summary' => '

High-level information about a RegexPatternSet, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a RegexPatternSet, and the ARN, that you provide to the RegexPatternSetReferenceStatement to use the pattern set in a Rule.

', 'RegexPatternSetSummaries$member' => NULL, ], ], 'RegexPatternString' => [ 'base' => NULL, 'refs' => [ 'Regex$RegexString' => '

The string representing the regular expression.

', 'RegexMatchStatement$RegexString' => '

The string representing the regular expression.

', ], ], 'RegistrationPagePathString' => [ 'base' => NULL, 'refs' => [ 'AWSManagedRulesACFPRuleSet$RegistrationPagePath' => '

The path of the account registration endpoint for your application. This is the page on your website that presents the registration form to new users.

This page must accept GET text/html requests.

For example, for the URL https://example.com/web/registration, you would provide the path /web/registration. Registration page paths that start with the path that you provide are considered a match. For example /web/registration matches the registration paths /web/registration, /web/registration/, /web/registrationPage, and /web/registration/thisPage, but doesn\'t match the path /home/web/registration or /website/registration.

', ], ], 'RegularExpressionList' => [ 'base' => NULL, 'refs' => [ 'CreateRegexPatternSetRequest$RegularExpressionList' => '

Array of regular expression strings.

', 'RegexPatternSet$RegularExpressionList' => '

The regular expression patterns in the set.

', 'UpdateRegexPatternSetRequest$RegularExpressionList' => '

', ], ], 'ReleaseNotes' => [ 'base' => NULL, 'refs' => [ 'MobileSdkRelease$ReleaseNotes' => '

Notes describing the release.

', ], ], 'ReleaseSummaries' => [ 'base' => NULL, 'refs' => [ 'ListMobileSdkReleasesResponse$ReleaseSummaries' => '

The high level information for the available SDK releases. If you specified a Limit in your request, this might not be the full list.

', ], ], 'ReleaseSummary' => [ 'base' => '

High level information for an SDK release.

', 'refs' => [ 'ReleaseSummaries$member' => NULL, ], ], 'RequestBody' => [ 'base' => NULL, 'refs' => [ 'AssociationConfig$RequestBody' => '

Customizes the maximum size of the request body that your protected CloudFront distributions forward to WAF for inspection. The default size is 16 KB (16,384 bytes).

You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

', ], ], 'RequestBodyAssociatedResourceTypeConfig' => [ 'base' => '

Customizes the maximum size of the request body that your protected CloudFront distributions forward to WAF for inspection. The default size is 16 KB (16,384 bytes).

You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

This is used in the AssociationConfig of the web ACL.

', 'refs' => [ 'RequestBody$value' => NULL, ], ], 'RequestInspection' => [ 'base' => '

The criteria for inspecting login requests, used by the ATP rule group to validate credentials usage.

This is part of the AWSManagedRulesATPRuleSet configuration in ManagedRuleGroupConfig.

In these settings, you specify how your application accepts login attempts by providing the request payload type and the names of the fields within the request body where the username and password are provided.

', 'refs' => [ 'AWSManagedRulesATPRuleSet$RequestInspection' => '

The criteria for inspecting login requests, used by the ATP rule group to validate credentials usage.

', ], ], 'RequestInspectionACFP' => [ 'base' => '

The criteria for inspecting account creation requests, used by the ACFP rule group to validate and track account creation attempts.

This is part of the AWSManagedRulesACFPRuleSet configuration in ManagedRuleGroupConfig.

In these settings, you specify how your application accepts account creation attempts by providing the request payload type and the names of the fields within the request body where the username, password, email, and primary address and phone number fields are provided.

', 'refs' => [ 'AWSManagedRulesACFPRuleSet$RequestInspection' => '

The criteria for inspecting account creation requests, used by the ACFP rule group to validate and track account creation attempts.

', ], ], 'ResourceArn' => [ 'base' => NULL, 'refs' => [ 'AssociateWebACLRequest$WebACLArn' => '

The Amazon Resource Name (ARN) of the web ACL that you want to associate with the resource.

', 'AssociateWebACLRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the resource to associate with the web ACL.

The ARN must be in one of the following formats:

  • For an Application Load Balancer: arn:partition:elasticloadbalancing:region:account-id:loadbalancer/app/load-balancer-name/load-balancer-id

  • For an Amazon API Gateway REST API: arn:partition:apigateway:region::/restapis/api-id/stages/stage-name

  • For an AppSync GraphQL API: arn:partition:appsync:region:account-id:apis/GraphQLApiId

  • For an Amazon Cognito user pool: arn:partition:cognito-idp:region:account-id:userpool/user-pool-id

  • For an App Runner service: arn:partition:apprunner:region:account-id:service/apprunner-service-name/apprunner-service-id

  • For an Amazon Web Services Verified Access instance: arn:partition:ec2:region:account-id:verified-access-instance/instance-id

', 'DeleteFirewallManagerRuleGroupsRequest$WebACLArn' => '

The Amazon Resource Name (ARN) of the web ACL.

', 'DeleteLoggingConfigurationRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the web ACL from which you want to delete the LoggingConfiguration.

', 'DeletePermissionPolicyRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the rule group from which you want to delete the policy.

You must be the owner of the rule group to perform this operation.

', 'DescribeManagedRuleGroupResponse$SnsTopicArn' => '

The Amazon resource name (ARN) of the Amazon Simple Notification Service SNS topic that\'s used to provide notification of changes to the managed rule group. You can subscribe to the SNS topic to receive notifications when the managed rule group is modified, such as for new versions and for version expiration. For more information, see the Amazon Simple Notification Service Developer Guide.

', 'DisassociateWebACLRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the resource to disassociate from the web ACL.

The ARN must be in one of the following formats:

  • For an Application Load Balancer: arn:partition:elasticloadbalancing:region:account-id:loadbalancer/app/load-balancer-name/load-balancer-id

  • For an Amazon API Gateway REST API: arn:partition:apigateway:region::/restapis/api-id/stages/stage-name

  • For an AppSync GraphQL API: arn:partition:appsync:region:account-id:apis/GraphQLApiId

  • For an Amazon Cognito user pool: arn:partition:cognito-idp:region:account-id:userpool/user-pool-id

  • For an App Runner service: arn:partition:apprunner:region:account-id:service/apprunner-service-name/apprunner-service-id

  • For an Amazon Web Services Verified Access instance: arn:partition:ec2:region:account-id:verified-access-instance/instance-id

', 'GetLoggingConfigurationRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the web ACL for which you want to get the LoggingConfiguration.

', 'GetPermissionPolicyRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the rule group for which you want to get the policy.

', 'GetRuleGroupRequest$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'GetSampledRequestsRequest$WebAclArn' => '

The Amazon resource name (ARN) of the WebACL for which you want a sample of requests.

', 'GetWebACLForResourceRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the resource whose web ACL you want to retrieve.

The ARN must be in one of the following formats:

  • For an Application Load Balancer: arn:partition:elasticloadbalancing:region:account-id:loadbalancer/app/load-balancer-name/load-balancer-id

  • For an Amazon API Gateway REST API: arn:partition:apigateway:region::/restapis/api-id/stages/stage-name

  • For an AppSync GraphQL API: arn:partition:appsync:region:account-id:apis/GraphQLApiId

  • For an Amazon Cognito user pool: arn:partition:cognito-idp:region:account-id:userpool/user-pool-id

  • For an App Runner service: arn:partition:apprunner:region:account-id:service/apprunner-service-name/apprunner-service-id

  • For an Amazon Web Services Verified Access instance: arn:partition:ec2:region:account-id:verified-access-instance/instance-id

', 'IPSet$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'IPSetReferenceStatement$ARN' => '

The Amazon Resource Name (ARN) of the IPSet that this statement references.

', 'IPSetSummary$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'ListResourcesForWebACLRequest$WebACLArn' => '

The Amazon Resource Name (ARN) of the web ACL.

', 'ListTagsForResourceRequest$ResourceARN' => '

The Amazon Resource Name (ARN) of the resource.

', 'LogDestinationConfigs$member' => NULL, 'LoggingConfiguration$ResourceArn' => '

The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.

', 'ManagedProductDescriptor$SnsTopicArn' => '

The Amazon resource name (ARN) of the Amazon Simple Notification Service SNS topic that\'s used to provide notification of changes to the managed rule group. You can subscribe to the SNS topic to receive notifications when the managed rule group is modified, such as for new versions and for version expiration. For more information, see the Amazon Simple Notification Service Developer Guide.

', 'ManagedRuleSet$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'ManagedRuleSetSummary$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'ManagedRuleSetVersion$AssociatedRuleGroupArn' => '

The Amazon Resource Name (ARN) of the vendor rule group that\'s used to define the published version of your managed rule group.

', 'PutPermissionPolicyRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the RuleGroup to which you want to attach the policy.

', 'RegexPatternSet$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'RegexPatternSetReferenceStatement$ARN' => '

The Amazon Resource Name (ARN) of the RegexPatternSet that this statement references.

', 'RegexPatternSetSummary$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'ResourceArns$member' => NULL, 'RuleGroup$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'RuleGroupReferenceStatement$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'RuleGroupSummary$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', 'TagInfoForResource$ResourceARN' => '

The Amazon Resource Name (ARN) of the resource.

', 'TagResourceRequest$ResourceARN' => '

The Amazon Resource Name (ARN) of the resource.

', 'UntagResourceRequest$ResourceARN' => '

The Amazon Resource Name (ARN) of the resource.

', 'VersionToPublish$AssociatedRuleGroupArn' => '

The Amazon Resource Name (ARN) of the vendor\'s rule group that\'s used in the published managed rule group version.

', 'WebACL$ARN' => '

The Amazon Resource Name (ARN) of the web ACL that you want to associate with the resource.

', 'WebACLSummary$ARN' => '

The Amazon Resource Name (ARN) of the entity.

', ], ], 'ResourceArns' => [ 'base' => NULL, 'refs' => [ 'ListResourcesForWebACLResponse$ResourceArns' => '

The array of Amazon Resource Names (ARNs) of the associated resources.

', ], ], 'ResourceType' => [ 'base' => NULL, 'refs' => [ 'ListResourcesForWebACLRequest$ResourceType' => '

Used for web ACLs that are scoped for regional applications. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

If you don\'t provide a resource type, the call uses the resource type APPLICATION_LOAD_BALANCER.

Default: APPLICATION_LOAD_BALANCER

', ], ], 'ResponseCode' => [ 'base' => NULL, 'refs' => [ 'CaptchaResponse$ResponseCode' => '

The HTTP response code indicating the status of the CAPTCHA token in the web request. If the token is missing, invalid, or expired, this code is 405 Method Not Allowed.

', 'ChallengeResponse$ResponseCode' => '

The HTTP response code indicating the status of the challenge token in the web request. If the token is missing, invalid, or expired, this code is 202 Request Accepted.

', ], ], 'ResponseContent' => [ 'base' => NULL, 'refs' => [ 'CustomResponseBody$Content' => '

The payload of the custom response.

You can use JSON escape strings in JSON content. To do this, you must specify JSON content in the ContentType setting.

For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

', ], ], 'ResponseContentType' => [ 'base' => NULL, 'refs' => [ 'CustomResponseBody$ContentType' => '

The type of content in the payload that you are defining in the Content string.

', ], ], 'ResponseInspection' => [ 'base' => '

The criteria for inspecting responses to login requests and account creation requests, used by the ATP and ACFP rule groups to track login and account creation success and failure rates.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

The rule groups evaluates the responses that your protected resources send back to client login and account creation attempts, keeping count of successful and failed attempts from each IP address and client session. Using this information, the rule group labels and mitigates requests from client sessions and IP addresses with too much suspicious activity in a short amount of time.

This is part of the AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet configurations in ManagedRuleGroupConfig.

Enable response inspection by configuring exactly one component of the response to inspect, for example, Header or StatusCode. You can\'t configure more than one component for inspection. If you don\'t configure any of the response inspection options, response inspection is disabled.

', 'refs' => [ 'AWSManagedRulesACFPRuleSet$ResponseInspection' => '

The criteria for inspecting responses to account creation requests, used by the ACFP rule group to track account creation success rates.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

The ACFP rule group evaluates the responses that your protected resources send back to client account creation attempts, keeping count of successful and failed attempts from each IP address and client session. Using this information, the rule group labels and mitigates requests from client sessions and IP addresses that have had too many successful account creation attempts in a short amount of time.

', 'AWSManagedRulesATPRuleSet$ResponseInspection' => '

The criteria for inspecting responses to login requests, used by the ATP rule group to track login failure rates.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

The ATP rule group evaluates the responses that your protected resources send back to client login attempts, keeping count of successful and failed attempts for each IP address and client session. Using this information, the rule group labels and mitigates requests from client sessions and IP addresses that have had too many failed login attempts in a short amount of time.

', ], ], 'ResponseInspectionBodyContains' => [ 'base' => '

Configures inspection of the response body. WAF can inspect the first 65,536 bytes (64 KB) of the response body. This is part of the ResponseInspection configuration for AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

', 'refs' => [ 'ResponseInspection$BodyContains' => '

Configures inspection of the response body for success and failure indicators. WAF can inspect the first 65,536 bytes (64 KB) of the response body.

', ], ], 'ResponseInspectionBodyContainsFailureStrings' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionBodyContains$FailureStrings' => '

Strings in the body of the response that indicate a failed login or account creation attempt. To be counted as a failure, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings.

JSON example: "FailureStrings": [ "Request failed" ]

', ], ], 'ResponseInspectionBodyContainsSuccessStrings' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionBodyContains$SuccessStrings' => '

Strings in the body of the response that indicate a successful login or account creation attempt. To be counted as a success, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings.

JSON examples: "SuccessStrings": [ "Login successful" ] and "SuccessStrings": [ "Account creation successful", "Welcome to our site!" ]

', ], ], 'ResponseInspectionHeader' => [ 'base' => '

Configures inspection of the response header. This is part of the ResponseInspection configuration for AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

', 'refs' => [ 'ResponseInspection$Header' => '

Configures inspection of the response header for success and failure indicators.

', ], ], 'ResponseInspectionHeaderFailureValues' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionHeader$FailureValues' => '

Values in the response header with the specified name that indicate a failed login or account creation attempt. To be counted as a failure, the value must be an exact match, including case. Each value must be unique among the success and failure values.

JSON examples: "FailureValues": [ "LoginFailed", "Failed login" ] and "FailureValues": [ "AccountCreationFailed" ]

', ], ], 'ResponseInspectionHeaderName' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionHeader$Name' => '

The name of the header to match against. The name must be an exact match, including case.

JSON example: "Name": [ "RequestResult" ]

', ], ], 'ResponseInspectionHeaderSuccessValues' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionHeader$SuccessValues' => '

Values in the response header with the specified name that indicate a successful login or account creation attempt. To be counted as a success, the value must be an exact match, including case. Each value must be unique among the success and failure values.

JSON examples: "SuccessValues": [ "LoginPassed", "Successful login" ] and "SuccessValues": [ "AccountCreated", "Successful account creation" ]

', ], ], 'ResponseInspectionJson' => [ 'base' => '

Configures inspection of the response JSON. WAF can inspect the first 65,536 bytes (64 KB) of the response JSON. This is part of the ResponseInspection configuration for AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

', 'refs' => [ 'ResponseInspection$Json' => '

Configures inspection of the response JSON for success and failure indicators. WAF can inspect the first 65,536 bytes (64 KB) of the response JSON.

', ], ], 'ResponseInspectionJsonFailureValues' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionJson$FailureValues' => '

Values for the specified identifier in the response JSON that indicate a failed login or account creation attempt. To be counted as a failure, the value must be an exact match, including case. Each value must be unique among the success and failure values.

JSON example: "FailureValues": [ "False", "Failed" ]

', ], ], 'ResponseInspectionJsonSuccessValues' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionJson$SuccessValues' => '

Values for the specified identifier in the response JSON that indicate a successful login or account creation attempt. To be counted as a success, the value must be an exact match, including case. Each value must be unique among the success and failure values.

JSON example: "SuccessValues": [ "True", "Succeeded" ]

', ], ], 'ResponseInspectionStatusCode' => [ 'base' => '

Configures inspection of the response status code. This is part of the ResponseInspection configuration for AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

', 'refs' => [ 'ResponseInspection$StatusCode' => '

Configures inspection of the response status code for success and failure indicators.

', ], ], 'ResponseInspectionStatusCodeFailureCodes' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionStatusCode$FailureCodes' => '

Status codes in the response that indicate a failed login or account creation attempt. To be counted as a failure, the response status code must match one of these. Each code must be unique among the success and failure status codes.

JSON example: "FailureCodes": [ 400, 404 ]

', ], ], 'ResponseInspectionStatusCodeSuccessCodes' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionStatusCode$SuccessCodes' => '

Status codes in the response that indicate a successful login or account creation attempt. To be counted as a success, the response status code must match one of these. Each code must be unique among the success and failure status codes.

JSON example: "SuccessCodes": [ 200, 201 ]

', ], ], 'ResponseStatusCode' => [ 'base' => NULL, 'refs' => [ 'CustomResponse$ResponseCode' => '

The HTTP status code to return to the client.

For a list of status codes that you can use in your custom responses, see Supported status codes for custom response in the WAF Developer Guide.

', 'SampledHTTPRequest$ResponseCodeSent' => '

The response code that was sent for the request.

', ], ], 'Rule' => [ 'base' => '

A single rule, which you can use in a WebACL or RuleGroup to identify web requests that you want to manage in some way. Each rule includes one top-level Statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

', 'refs' => [ 'Rules$member' => NULL, ], ], 'RuleAction' => [ 'base' => '

The action that WAF should take on a web request when it matches a rule\'s statement. Settings at the web ACL level can override the rule action setting.

', 'refs' => [ 'Rule$Action' => '

The action that WAF should take on a web request when it matches the rule statement. Settings at the web ACL level can override the rule action setting.

This is used only for rules whose statements do not reference a rule group. Rule statements that reference a rule group include RuleGroupReferenceStatement and ManagedRuleGroupStatement.

You must specify either this Action setting or the rule OverrideAction setting, but not both:

  • If the rule statement does not reference a rule group, use this rule action setting and not the rule override action setting.

  • If the rule statement references a rule group, use the override action setting and not this action setting.

', 'RuleActionOverride$ActionToUse' => '

The override action to use, in place of the configured action of the rule in the rule group.

', 'RuleSummary$Action' => '

The action that WAF should take on a web request when it matches a rule\'s statement. Settings at the web ACL level can override the rule action setting.

', ], ], 'RuleActionOverride' => [ 'base' => '

Action setting to use in the place of a rule action that is configured inside the rule group. You specify one override for each rule whose action you want to change.

You can use overrides for testing, for example you can override all of rule actions to Count and then monitor the resulting count metrics to understand how the rule group would handle your web traffic. You can also permanently override some or all actions, to modify how the rule group manages your web traffic.

', 'refs' => [ 'RuleActionOverrides$member' => NULL, ], ], 'RuleActionOverrides' => [ 'base' => NULL, 'refs' => [ 'ManagedRuleGroupStatement$RuleActionOverrides' => '

Action settings to use in the place of the rule actions that are configured inside the rule group. You specify one override for each rule whose action you want to change.

You can use overrides for testing, for example you can override all of rule actions to Count and then monitor the resulting count metrics to understand how the rule group would handle your web traffic. You can also permanently override some or all actions, to modify how the rule group manages your web traffic.

', 'RuleGroupReferenceStatement$RuleActionOverrides' => '

Action settings to use in the place of the rule actions that are configured inside the rule group. You specify one override for each rule whose action you want to change.

You can use overrides for testing, for example you can override all of rule actions to Count and then monitor the resulting count metrics to understand how the rule group would handle your web traffic. You can also permanently override some or all actions, to modify how the rule group manages your web traffic.

', ], ], 'RuleGroup' => [ 'base' => '

A rule group defines a collection of rules to inspect and control web requests that you can use in a WebACL. When you create a rule group, you define an immutable capacity limit. If you update a rule group, you must stay within the capacity. This allows others to reuse the rule group with confidence in its capacity requirements.

', 'refs' => [ 'GetRuleGroupResponse$RuleGroup' => '

', ], ], 'RuleGroupReferenceStatement' => [ 'base' => '

A rule statement used to run the rules that are defined in a RuleGroup. To use this, create a rule group with your rules, then provide the ARN of the rule group in this statement.

You cannot nest a RuleGroupReferenceStatement, for example for use inside a NotStatement or OrStatement. You cannot use a rule group reference statement inside another rule group. You can only reference a rule group as a top-level statement within a rule that you define in a web ACL.

', 'refs' => [ 'FirewallManagerStatement$RuleGroupReferenceStatement' => '

A statement used by Firewall Manager to run the rules that are defined in a rule group. This is managed by Firewall Manager for an Firewall Manager WAF policy.

', 'Statement$RuleGroupReferenceStatement' => '

A rule statement used to run the rules that are defined in a RuleGroup. To use this, create a rule group with your rules, then provide the ARN of the rule group in this statement.

You cannot nest a RuleGroupReferenceStatement, for example for use inside a NotStatement or OrStatement. You cannot use a rule group reference statement inside another rule group. You can only reference a rule group as a top-level statement within a rule that you define in a web ACL.

', ], ], 'RuleGroupSummaries' => [ 'base' => NULL, 'refs' => [ 'ListRuleGroupsResponse$RuleGroups' => '

Array of rule groups. If you specified a Limit in your request, this might not be the full list.

', ], ], 'RuleGroupSummary' => [ 'base' => '

High-level information about a RuleGroup, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a RuleGroup, and the ARN, that you provide to the RuleGroupReferenceStatement to use the rule group in a Rule.

', 'refs' => [ 'CreateRuleGroupResponse$Summary' => '

High-level information about a RuleGroup, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a RuleGroup, and the ARN, that you provide to the RuleGroupReferenceStatement to use the rule group in a Rule.

', 'RuleGroupSummaries$member' => NULL, ], ], 'RulePriority' => [ 'base' => NULL, 'refs' => [ 'FirewallManagerRuleGroup$Priority' => '

If you define more than one rule group in the first or last Firewall Manager rule groups, WAF evaluates each request against the rule groups in order, starting from the lowest priority setting. The priorities don\'t need to be consecutive, but they must all be different.

', 'Rule$Priority' => '

If you define more than one Rule in a WebACL, WAF evaluates each request against the Rules in order based on the value of Priority. WAF processes rules with lower priority first. The priorities don\'t need to be consecutive, but they must all be different.

', ], ], 'RuleSummaries' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedRuleGroupResponse$Rules' => '

', ], ], 'RuleSummary' => [ 'base' => '

High-level information about a Rule, returned by operations like DescribeManagedRuleGroup. This provides information like the ID, that you can use to retrieve and manage a RuleGroup, and the ARN, that you provide to the RuleGroupReferenceStatement to use the rule group in a Rule.

', 'refs' => [ 'RuleSummaries$member' => NULL, ], ], 'Rules' => [ 'base' => NULL, 'refs' => [ 'CheckCapacityRequest$Rules' => '

An array of Rule that you\'re configuring to use in a rule group or web ACL.

', 'CreateRuleGroupRequest$Rules' => '

The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

', 'CreateWebACLRequest$Rules' => '

The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

', 'RuleGroup$Rules' => '

The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

', 'UpdateRuleGroupRequest$Rules' => '

The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

', 'UpdateWebACLRequest$Rules' => '

The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

', 'WebACL$Rules' => '

The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

', ], ], 'SampleWeight' => [ 'base' => NULL, 'refs' => [ 'SampledHTTPRequest$Weight' => '

A value that indicates how one result in the response relates proportionally to other results in the response. For example, a result that has a weight of 2 represents roughly twice as many web requests as a result that has a weight of 1.

', ], ], 'SampledHTTPRequest' => [ 'base' => '

Represents a single sampled web request. The response from GetSampledRequests includes a SampledHTTPRequests complex type that appears as SampledRequests in the response syntax. SampledHTTPRequests contains an array of SampledHTTPRequest objects.

', 'refs' => [ 'SampledHTTPRequests$member' => NULL, ], ], 'SampledHTTPRequests' => [ 'base' => NULL, 'refs' => [ 'GetSampledRequestsResponse$SampledRequests' => '

A complex type that contains detailed information about each of the requests in the sample.

', ], ], 'Scope' => [ 'base' => NULL, 'refs' => [ 'CheckCapacityRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'CreateAPIKeyRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'CreateIPSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'CreateRegexPatternSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'CreateRuleGroupRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'CreateWebACLRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'DeleteAPIKeyRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'DeleteIPSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'DeleteRegexPatternSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'DeleteRuleGroupRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'DeleteWebACLRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'DescribeAllManagedProductsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'DescribeManagedProductsByVendorRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'DescribeManagedRuleGroupRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'GetDecryptedAPIKeyRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'GetIPSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'GetManagedRuleSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'GetRateBasedStatementManagedKeysRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'GetRegexPatternSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'GetRuleGroupRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'GetSampledRequestsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'GetWebACLRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListAPIKeysRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListAvailableManagedRuleGroupVersionsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListAvailableManagedRuleGroupsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListIPSetsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListLoggingConfigurationsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListManagedRuleSetsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListRegexPatternSetsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListRuleGroupsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'ListWebACLsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'PutManagedRuleSetVersionsRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'UpdateIPSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'UpdateManagedRuleSetVersionExpiryDateRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'UpdateRegexPatternSetRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'UpdateRuleGroupRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', 'UpdateWebACLRequest$Scope' => '

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.

  • API and SDKs - For all calls, use the Region endpoint us-east-1.

', ], ], 'SearchString' => [ 'base' => NULL, 'refs' => [ 'ByteMatchStatement$SearchString' => '

A string value that you want WAF to search for. WAF searches only in the part of web requests that you designate for inspection in FieldToMatch. The maximum length of the value is 200 bytes.

Valid values depend on the component that you specify for inspection in FieldToMatch:

  • Method: The HTTP method that you want WAF to search for. This indicates the type of operation specified in the request.

  • UriPath: The value that you want WAF to search for in the URI path, for example, /images/daily-ad.jpg.

  • JA3Fingerprint: Match against the request\'s JA3 fingerprint. The JA3 fingerprint is a 32-character hash derived from the TLS Client Hello of an incoming request. This fingerprint serves as a unique identifier for the client\'s TLS configuration. You can use this choice only with a string match ByteMatchStatement with the PositionalConstraint set to EXACTLY.

    You can obtain the JA3 fingerprint for client requests from the web ACL logs. If WAF is able to calculate the fingerprint, it includes it in the logs. For information about the logging fields, see Log fields in the WAF Developer Guide.

  • HeaderOrder: The list of header names to match for. WAF creates a string that contains the ordered list of header names, from the headers in the web request, and then matches against that string.

If SearchString includes alphabetic characters A-Z and a-z, note that the value is case sensitive.

If you\'re using the WAF API

Specify a base64-encoded version of the value. The maximum length of the value before you base64-encode it is 200 bytes.

For example, suppose the value of Type is HEADER and the value of Data is User-Agent. If you want to search the User-Agent header for the value BadBot, you base64-encode BadBot using MIME base64-encoding and include the resulting value, QmFkQm90, in the value of SearchString.

If you\'re using the CLI or one of the Amazon Web Services SDKs

The value that you want WAF to search for. The SDK automatically base64 encodes the value.

', ], ], 'SensitivityLevel' => [ 'base' => NULL, 'refs' => [ 'SqliMatchStatement$SensitivityLevel' => '

The sensitivity that you want WAF to use to inspect for SQL injection attacks.

HIGH detects more attacks, but might generate more false positives, especially if your web requests frequently contain unusual strings. For information about identifying and mitigating false positives, see Testing and tuning in the WAF Developer Guide.

LOW is generally a better choice for resources that already have other protections against SQL injection attacks or that have a low tolerance for false positives.

Default: LOW

', ], ], 'SingleCookieName' => [ 'base' => NULL, 'refs' => [ 'CookieNames$member' => NULL, ], ], 'SingleHeader' => [ 'base' => '

Inspect one of the headers in the web request, identified by name, for example, User-Agent or Referer. The name isn\'t case sensitive.

You can filter and inspect all headers with the FieldToMatch setting Headers.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

Example JSON: "SingleHeader": { "Name": "haystack" }

', 'refs' => [ 'FieldToMatch$SingleHeader' => '

Inspect a single header. Provide the name of the header to inspect, for example, User-Agent or Referer. This setting isn\'t case sensitive.

Example JSON: "SingleHeader": { "Name": "haystack" }

Alternately, you can filter and inspect all headers with the Headers FieldToMatch setting.

', ], ], 'SingleQueryArgument' => [ 'base' => '

Inspect one query argument in the web request, identified by name, for example UserName or SalesRegion. The name isn\'t case sensitive.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

Example JSON: "SingleQueryArgument": { "Name": "myArgument" }

', 'refs' => [ 'FieldToMatch$SingleQueryArgument' => '

Inspect a single query argument. Provide the name of the query argument to inspect, such as UserName or SalesRegion. The name can be up to 30 characters long and isn\'t case sensitive.

Example JSON: "SingleQueryArgument": { "Name": "myArgument" }

', ], ], 'Size' => [ 'base' => NULL, 'refs' => [ 'SizeConstraintStatement$Size' => '

The size, in byte, to compare to the request part, after any transformations.

', ], ], 'SizeConstraintStatement' => [ 'base' => '

A rule statement that compares a number of bytes against the size of a request component, using a comparison operator, such as greater than (>) or less than (<). For example, you can use a size constraint statement to look for query strings that are longer than 100 bytes.

If you configure WAF to inspect the request body, WAF inspects only the number of bytes of the body up to the limit for the web ACL. By default, for regional web ACLs, this limit is 8 KB (8,192 bytes) and for CloudFront web ACLs, this limit is 16 KB (16,384 bytes). For CloudFront web ACLs, you can increase the limit in the web ACL AssociationConfig, for additional fees. If you know that the request body for your web requests should never exceed the inspection limit, you could use a size constraint statement to block requests that have a larger request body size.

If you choose URI for the value of Part of the request to filter on, the slash (/) in the URI counts as one character. For example, the URI /logo.jpg is nine characters long.

', 'refs' => [ 'Statement$SizeConstraintStatement' => '

A rule statement that compares a number of bytes against the size of a request component, using a comparison operator, such as greater than (>) or less than (<). For example, you can use a size constraint statement to look for query strings that are longer than 100 bytes.

If you configure WAF to inspect the request body, WAF inspects only the number of bytes of the body up to the limit for the web ACL. By default, for regional web ACLs, this limit is 8 KB (8,192 bytes) and for CloudFront web ACLs, this limit is 16 KB (16,384 bytes). For CloudFront web ACLs, you can increase the limit in the web ACL AssociationConfig, for additional fees. If you know that the request body for your web requests should never exceed the inspection limit, you could use a size constraint statement to block requests that have a larger request body size.

If you choose URI for the value of Part of the request to filter on, the slash (/) in the URI counts as one character. For example, the URI /logo.jpg is nine characters long.

', ], ], 'SizeInspectionLimit' => [ 'base' => NULL, 'refs' => [ 'RequestBodyAssociatedResourceTypeConfig$DefaultSizeInspectionLimit' => '

Specifies the maximum size of the web request body component that an associated CloudFront distribution should send to WAF for inspection. This applies to statements in the web ACL that inspect the body or JSON body.

Default: 16 KB (16,384 bytes)

', ], ], 'SolveTimestamp' => [ 'base' => NULL, 'refs' => [ 'CaptchaResponse$SolveTimestamp' => '

The time that the CAPTCHA was last solved for the supplied token.

', 'ChallengeResponse$SolveTimestamp' => '

The time that the challenge was last solved for the supplied token.

', ], ], 'SqliMatchStatement' => [ 'base' => '

A rule statement that inspects for malicious SQL code. Attackers insert malicious SQL code into web requests to do things like modify your database or extract data from it.

', 'refs' => [ 'Statement$SqliMatchStatement' => '

A rule statement that inspects for malicious SQL code. Attackers insert malicious SQL code into web requests to do things like modify your database or extract data from it.

', ], ], 'Statement' => [ 'base' => '

The processing guidance for a Rule, used by WAF to determine whether a web request matches the rule.

For example specifications, see the examples section of CreateWebACL.

', 'refs' => [ 'ManagedRuleGroupStatement$ScopeDownStatement' => '

An optional nested statement that narrows the scope of the web requests that are evaluated by the managed rule group. Requests are only evaluated by the rule group if they match the scope-down statement. You can use any nestable Statement in the scope-down statement, and you can nest statements at any level, the same as you can for a rule statement.

', 'NotStatement$Statement' => '

The statement to negate. You can use any statement that can be nested.

', 'RateBasedStatement$ScopeDownStatement' => '

An optional nested statement that narrows the scope of the web requests that are evaluated and managed by the rate-based statement. When you use a scope-down statement, the rate-based rule only tracks and rate limits requests that match the scope-down statement. You can use any nestable Statement in the scope-down statement, and you can nest statements at any level, the same as you can for a rule statement.

', 'Rule$Statement' => '

The WAF processing statement for the rule, for example ByteMatchStatement or SizeConstraintStatement.

', 'Statements$member' => NULL, ], ], 'Statements' => [ 'base' => NULL, 'refs' => [ 'AndStatement$Statements' => '

The statements to combine with AND logic. You can use any statements that can be nested.

', 'OrStatement$Statements' => '

The statements to combine with OR logic. You can use any statements that can be nested.

', ], ], 'String' => [ 'base' => NULL, 'refs' => [ 'AWSManagedRulesATPRuleSet$LoginPath' => '

The path of the login endpoint for your application. For example, for the URL https://example.com/web/login, you would provide the path /web/login. Login paths that start with the path that you provide are considered a match. For example /web/login matches the login paths /web/login, /web/login/, /web/loginPage, and /web/login/thisPage, but doesn\'t match the login path /home/web/login or /website/login.

The rule group inspects only HTTP POST requests to your specified login endpoint.

', ], ], 'SuccessCode' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionStatusCodeSuccessCodes$member' => NULL, ], ], 'SuccessValue' => [ 'base' => NULL, 'refs' => [ 'ResponseInspectionBodyContainsSuccessStrings$member' => NULL, 'ResponseInspectionHeaderSuccessValues$member' => NULL, 'ResponseInspectionJsonSuccessValues$member' => NULL, ], ], 'Tag' => [ 'base' => '

A tag associated with an Amazon Web Services resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing or other management. Typically, the tag key represents a category, such as "environment", and the tag value represents a specific value within that category, such as "test," "development," or "production". Or you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.

You can tag the Amazon Web Services resources that you manage through WAF: web ACLs, rule groups, IP sets, and regex pattern sets. You can\'t manage or view tags through the WAF console.

', 'refs' => [ 'TagList$member' => NULL, ], ], 'TagInfoForResource' => [ 'base' => '

The collection of tagging definitions for an Amazon Web Services resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing or other management. Typically, the tag key represents a category, such as "environment", and the tag value represents a specific value within that category, such as "test," "development," or "production". Or you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.

You can tag the Amazon Web Services resources that you manage through WAF: web ACLs, rule groups, IP sets, and regex pattern sets. You can\'t manage or view tags through the WAF console.

', 'refs' => [ 'ListTagsForResourceResponse$TagInfoForResource' => '

The collection of tagging definitions for the resource. If you specified a Limit in your request, this might not be the full list.

', ], ], 'TagKey' => [ 'base' => NULL, 'refs' => [ 'Tag$Key' => '

Part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case-sensitive.

', 'TagKeyList$member' => NULL, ], ], 'TagKeyList' => [ 'base' => NULL, 'refs' => [ 'UntagResourceRequest$TagKeys' => '

An array of keys identifying the tags to disassociate from the resource.

', ], ], 'TagList' => [ 'base' => NULL, 'refs' => [ 'CreateIPSetRequest$Tags' => '

An array of key:value pairs to associate with the resource.

', 'CreateRegexPatternSetRequest$Tags' => '

An array of key:value pairs to associate with the resource.

', 'CreateRuleGroupRequest$Tags' => '

An array of key:value pairs to associate with the resource.

', 'CreateWebACLRequest$Tags' => '

An array of key:value pairs to associate with the resource.

', 'MobileSdkRelease$Tags' => '

Tags that are associated with the release.

', 'TagInfoForResource$TagList' => '

The array of Tag objects defined for the resource.

', 'TagResourceRequest$Tags' => '

An array of key:value pairs to associate with the resource.

', ], ], 'TagResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'TagResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'TagValue' => [ 'base' => NULL, 'refs' => [ 'Tag$Value' => '

Part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive.

', ], ], 'TextTransformation' => [ 'base' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.

', 'refs' => [ 'TextTransformations$member' => NULL, ], ], 'TextTransformationPriority' => [ 'base' => NULL, 'refs' => [ 'TextTransformation$Priority' => '

Sets the relative processing order for multiple transformations. WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content. The priorities don\'t need to be consecutive, but they must all be different.

', ], ], 'TextTransformationType' => [ 'base' => NULL, 'refs' => [ 'TextTransformation$Type' => '

For detailed descriptions of each of the transformation types, see Text transformations in the WAF Developer Guide.

', ], ], 'TextTransformations' => [ 'base' => NULL, 'refs' => [ 'ByteMatchStatement$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'RateLimitCookie$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'RateLimitHeader$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'RateLimitQueryArgument$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'RateLimitQueryString$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'RateLimitUriPath$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'RegexMatchStatement$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'RegexPatternSetReferenceStatement$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'SizeConstraintStatement$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'SqliMatchStatement$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', 'XssMatchStatement$TextTransformations' => '

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they\'re used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

', ], ], 'TimeWindow' => [ 'base' => '

In a GetSampledRequests request, the StartTime and EndTime objects specify the time range for which you want WAF to return a sample of web requests.

You must specify the times in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z". You can specify any time range in the previous three hours.

In a GetSampledRequests response, the StartTime and EndTime objects specify the time range for which WAF actually returned a sample of web requests. WAF gets the specified number of requests from among the first 5,000 requests that your Amazon Web Services resource receives during the specified time period. If your resource receives more than 5,000 requests during that period, WAF stops sampling after the 5,000th request. In that case, EndTime is the time that WAF received the 5,000th request.

', 'refs' => [ 'GetSampledRequestsRequest$TimeWindow' => '

The start date and time and the end date and time of the range for which you want GetSampledRequests to return a sample of requests. You must specify the times in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z". You can specify any time range in the previous three hours. If you specify a start time that\'s earlier than three hours ago, WAF sets it to three hours ago.

', 'GetSampledRequestsResponse$TimeWindow' => '

Usually, TimeWindow is the time range that you specified in the GetSampledRequests request. However, if your Amazon Web Services resource received more than 5,000 requests during the time range that you specified in the request, GetSampledRequests returns the time range for the first 5,000 requests. Times are in Coordinated Universal Time (UTC) format.

', ], ], 'TimeWindowDay' => [ 'base' => NULL, 'refs' => [ 'ManagedRuleSetVersion$ForecastedLifetime' => '

The amount of time you expect this version of your managed rule group to last, in days.

', 'VersionToPublish$ForecastedLifetime' => '

The amount of time the vendor expects this version of the managed rule group to last, in days.

', ], ], 'TimeWindowSecond' => [ 'base' => NULL, 'refs' => [ 'ImmunityTimeProperty$ImmunityTime' => '

The amount of time, in seconds, that a CAPTCHA or challenge timestamp is considered valid by WAF. The default setting is 300.

For the Challenge action, the minimum setting is 300.

', ], ], 'Timestamp' => [ 'base' => NULL, 'refs' => [ 'APIKeySummary$CreationTimestamp' => '

The date and time that the key was created.

', 'GetDecryptedAPIKeyResponse$CreationTimestamp' => '

The date and time that the key was created.

', 'ManagedRuleGroupVersion$LastUpdateTimestamp' => '

The date and time that the managed rule group owner updated the rule group version information.

', 'ManagedRuleSetVersion$PublishTimestamp' => '

The time that you first published this version.

Times are in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z".

', 'ManagedRuleSetVersion$LastUpdateTimestamp' => '

The last time that you updated this version.

Times are in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z".

', 'ManagedRuleSetVersion$ExpiryTimestamp' => '

The time that this version is set to expire.

Times are in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z".

', 'MobileSdkRelease$Timestamp' => '

The timestamp of the release.

', 'ReleaseSummary$Timestamp' => '

The timestamp of the release.

', 'SampledHTTPRequest$Timestamp' => '

The time at which WAF received the request from your Amazon Web Services resource, in Unix time format (in seconds).

', 'TimeWindow$StartTime' => '

The beginning of the time range from which you want GetSampledRequests to return a sample of the requests that your Amazon Web Services resource received. You must specify the times in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z". You can specify any time range in the previous three hours.

', 'TimeWindow$EndTime' => '

The end of the time range from which you want GetSampledRequests to return a sample of the requests that your Amazon Web Services resource received. You must specify the times in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z". You can specify any time range in the previous three hours.

', 'UpdateManagedRuleSetVersionExpiryDateRequest$ExpiryTimestamp' => '

The time that you want the version to expire.

Times are in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z".

', 'UpdateManagedRuleSetVersionExpiryDateResponse$ExpiryTimestamp' => '

The time that the version will expire.

Times are in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z".

', ], ], 'TokenDomain' => [ 'base' => NULL, 'refs' => [ 'APIKeyTokenDomains$member' => NULL, 'TokenDomains$member' => NULL, ], ], 'TokenDomains' => [ 'base' => NULL, 'refs' => [ 'APIKeySummary$TokenDomains' => '

The token domains that are defined in this API key.

', 'CreateWebACLRequest$TokenDomains' => '

Specifies the domains that WAF should accept in a web request token. This enables the use of tokens across multiple protected websites. When WAF provides a token, it uses the domain of the Amazon Web Services resource that the web ACL is protecting. If you don\'t specify a list of token domains, WAF accepts tokens only for the domain of the protected resource. With a token domain list, WAF accepts the resource\'s host domain plus all domains in the token domain list, including their prefixed subdomains.

Example JSON: "TokenDomains": { "mywebsite.com", "myotherwebsite.com" }

Public suffixes aren\'t allowed. For example, you can\'t use gov.au or co.uk as token domains.

', 'GetDecryptedAPIKeyResponse$TokenDomains' => '

The token domains that are defined in this API key.

', 'UpdateWebACLRequest$TokenDomains' => '

Specifies the domains that WAF should accept in a web request token. This enables the use of tokens across multiple protected websites. When WAF provides a token, it uses the domain of the Amazon Web Services resource that the web ACL is protecting. If you don\'t specify a list of token domains, WAF accepts tokens only for the domain of the protected resource. With a token domain list, WAF accepts the resource\'s host domain plus all domains in the token domain list, including their prefixed subdomains.

Example JSON: "TokenDomains": { "mywebsite.com", "myotherwebsite.com" }

Public suffixes aren\'t allowed. For example, you can\'t use gov.au or co.uk as token domains.

', 'WebACL$TokenDomains' => '

Specifies the domains that WAF should accept in a web request token. This enables the use of tokens across multiple protected websites. When WAF provides a token, it uses the domain of the Amazon Web Services resource that the web ACL is protecting. If you don\'t specify a list of token domains, WAF accepts tokens only for the domain of the protected resource. With a token domain list, WAF accepts the resource\'s host domain plus all domains in the token domain list, including their prefixed subdomains.

', ], ], 'URIString' => [ 'base' => NULL, 'refs' => [ 'HTTPRequest$URI' => '

The URI path of the request, which identifies the resource, for example, /images/daily-ad.jpg.

', ], ], 'UntagResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'UntagResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateIPSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateIPSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateManagedRuleSetVersionExpiryDateRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateManagedRuleSetVersionExpiryDateResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateRegexPatternSetRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateRegexPatternSetResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateRuleGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateRuleGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'UpdateWebACLRequest' => [ 'base' => NULL, 'refs' => [], ], 'UpdateWebACLResponse' => [ 'base' => NULL, 'refs' => [], ], 'UriPath' => [ 'base' => '

Inspect the path component of the URI of the web request. This is the part of the web request that identifies a resource. For example, /images/daily-ad.jpg.

This is used in the FieldToMatch specification for some web request component types.

JSON specification: "UriPath": {}

', 'refs' => [ 'FieldToMatch$UriPath' => '

Inspect the request URI path. This is the part of the web request that identifies a resource, for example, /images/daily-ad.jpg.

', ], ], 'UsernameField' => [ 'base' => '

The name of the field in the request payload that contains your customer\'s username.

This data type is used in the RequestInspection and RequestInspectionACFP data types.

', 'refs' => [ 'ManagedRuleGroupConfig$UsernameField' => '

Instead of this setting, provide your configuration under the request inspection configuration for AWSManagedRulesATPRuleSet or AWSManagedRulesACFPRuleSet.

', 'RequestInspection$UsernameField' => '

The name of the field in the request payload that contains your customer\'s username.

How you specify this depends on the request inspection payload type.

  • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "username": "THE_USERNAME" } }, the username field specification is /form/username.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with the input element named username1, the username field specification is username1

', 'RequestInspectionACFP$UsernameField' => '

The name of the field in the request payload that contains your customer\'s username.

How you specify this depends on the request inspection payload type.

  • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    For example, for the JSON payload { "form": { "username": "THE_USERNAME" } }, the username field specification is /form/username.

  • For form encoded payload types, use the HTML form names.

    For example, for an HTML form with the input element named username1, the username field specification is username1

', ], ], 'VendorName' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedProductsByVendorRequest$VendorName' => '

The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

', 'DescribeManagedRuleGroupRequest$VendorName' => '

The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

', 'ListAvailableManagedRuleGroupVersionsRequest$VendorName' => '

The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

', 'ManagedProductDescriptor$VendorName' => '

The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

', 'ManagedRuleGroupStatement$VendorName' => '

The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

', 'ManagedRuleGroupSummary$VendorName' => '

The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

', ], ], 'VersionKeyString' => [ 'base' => NULL, 'refs' => [ 'DescribeManagedRuleGroupRequest$VersionName' => '

The version of the rule group. You can only use a version that is not scheduled for expiration. If you don\'t provide this, WAF uses the vendor\'s default version.

', 'DescribeManagedRuleGroupResponse$VersionName' => '

The managed rule group\'s version.

', 'GenerateMobileSdkReleaseUrlRequest$ReleaseVersion' => '

The release version. For the latest available version, specify LATEST.

', 'GetMobileSdkReleaseRequest$ReleaseVersion' => '

The release version. For the latest available version, specify LATEST.

', 'ListAvailableManagedRuleGroupVersionsResponse$CurrentDefaultVersion' => '

The name of the version that\'s currently set as the default.

', 'ManagedRuleGroupStatement$Version' => '

The version of the managed rule group to use. If you specify this, the version setting is fixed until you change it. If you don\'t specify this, WAF uses the vendor\'s default version, and then keeps the version at the vendor\'s default when the vendor updates the managed rule group settings.

', 'ManagedRuleGroupVersion$Name' => '

The version name.

', 'ManagedRuleSet$RecommendedVersion' => '

The version that you would like your customers to use.

', 'MobileSdkRelease$ReleaseVersion' => '

The release version.

', 'PublishedVersions$key' => NULL, 'PutManagedRuleSetVersionsRequest$RecommendedVersion' => '

The version of the named managed rule group that you\'d like your customers to choose, from among your version offerings.

', 'ReleaseSummary$ReleaseVersion' => '

The release version.

', 'UpdateManagedRuleSetVersionExpiryDateRequest$VersionToExpire' => '

The version that you want to remove from your list of offerings for the named managed rule group.

', 'UpdateManagedRuleSetVersionExpiryDateResponse$ExpiringVersion' => '

The version that is set to expire.

', 'VersionsToPublish$key' => NULL, ], ], 'VersionToPublish' => [ 'base' => '

A version of the named managed rule group, that the rule group\'s vendor publishes for use by customers.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

', 'refs' => [ 'VersionsToPublish$value' => NULL, ], ], 'VersionsToPublish' => [ 'base' => NULL, 'refs' => [ 'PutManagedRuleSetVersionsRequest$VersionsToPublish' => '

The versions of the named managed rule group that you want to offer to your customers.

', ], ], 'VisibilityConfig' => [ 'base' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

', 'refs' => [ 'CreateRuleGroupRequest$VisibilityConfig' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

', 'CreateWebACLRequest$VisibilityConfig' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

', 'FirewallManagerRuleGroup$VisibilityConfig' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

', 'Rule$VisibilityConfig' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

If you change the name of a Rule after you create it and you want the rule\'s metric name to reflect the change, update the metric name as well. WAF doesn\'t automatically update the metric name.

', 'RuleGroup$VisibilityConfig' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

', 'UpdateRuleGroupRequest$VisibilityConfig' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

', 'UpdateWebACLRequest$VisibilityConfig' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

', 'WebACL$VisibilityConfig' => '

Defines and enables Amazon CloudWatch metrics and web request sample collection.

', ], ], 'WAFAssociatedItemException' => [ 'base' => '

WAF couldn’t perform the operation because your resource is being used by another resource or it’s associated with another resource.

', 'refs' => [], ], 'WAFConfigurationWarningException' => [ 'base' => '

The operation failed because you are inspecting the web request body, headers, or cookies without specifying how to handle oversize components. Rules that inspect the body must either provide an OversizeHandling configuration or they must be preceded by a SizeConstraintStatement that blocks the body content from being too large. Rules that inspect the headers or cookies must provide an OversizeHandling configuration.

Provide the handling configuration and retry your operation.

Alternately, you can suppress this warning by adding the following tag to the resource that you provide to this operation: Tag (key:WAF:OversizeFieldsHandlingConstraintOptOut, value:true).

', 'refs' => [], ], 'WAFDuplicateItemException' => [ 'base' => '

WAF couldn’t perform the operation because the resource that you tried to save is a duplicate of an existing one.

', 'refs' => [], ], 'WAFExpiredManagedRuleGroupVersionException' => [ 'base' => '

The operation failed because the specified version for the managed rule group has expired. You can retrieve the available versions for the managed rule group by calling ListAvailableManagedRuleGroupVersions.

', 'refs' => [], ], 'WAFInternalErrorException' => [ 'base' => '

Your request is valid, but WAF couldn’t perform the operation because of a system problem. Retry your request.

', 'refs' => [], ], 'WAFInvalidOperationException' => [ 'base' => '

The operation isn\'t valid.

', 'refs' => [], ], 'WAFInvalidParameterException' => [ 'base' => '

The operation failed because WAF didn\'t recognize a parameter in the request. For example:

  • You specified a parameter name or value that isn\'t valid.

  • Your nested statement isn\'t valid. You might have tried to nest a statement that can’t be nested.

  • You tried to update a WebACL with a DefaultAction that isn\'t among the types available at DefaultAction.

  • Your request references an ARN that is malformed, or corresponds to a resource with which a web ACL can\'t be associated.

', 'refs' => [], ], 'WAFInvalidPermissionPolicyException' => [ 'base' => '

The operation failed because the specified policy isn\'t in the proper format.

The policy specifications must conform to the following:

  • The policy must be composed using IAM Policy version 2012-10-17.

  • The policy must include specifications for Effect, Action, and Principal.

  • Effect must specify Allow.

  • Action must specify wafv2:CreateWebACL, wafv2:UpdateWebACL, and wafv2:PutFirewallManagerRuleGroups and may optionally specify wafv2:GetRuleGroup. WAF rejects any extra actions or wildcard actions in the policy.

  • The policy must not include a Resource parameter.

For more information, see IAM Policies.

', 'refs' => [], ], 'WAFInvalidResourceException' => [ 'base' => '

WAF couldn’t perform the operation because the resource that you requested isn’t valid. Check the resource, and try again.

', 'refs' => [], ], 'WAFLimitsExceededException' => [ 'base' => '

WAF couldn’t perform the operation because you exceeded your resource limit. For example, the maximum number of WebACL objects that you can create for an Amazon Web Services account. For more information, see WAF quotas in the WAF Developer Guide.

', 'refs' => [], ], 'WAFLogDestinationPermissionIssueException' => [ 'base' => '

The operation failed because you don\'t have the permissions that your logging configuration requires. For information, see Logging web ACL traffic information in the WAF Developer Guide.

', 'refs' => [], ], 'WAFNonexistentItemException' => [ 'base' => '

WAF couldn’t perform the operation because your resource doesn\'t exist. If you\'ve just created a resource that you\'re using in this operation, you might just need to wait a few minutes. It can take from a few seconds to a number of minutes for changes to propagate.

', 'refs' => [], ], 'WAFOptimisticLockException' => [ 'base' => '

WAF couldn’t save your changes because you tried to update or delete a resource that has changed since you last retrieved it. Get the resource again, make any changes you need to make to the new copy, and retry your operation.

', 'refs' => [], ], 'WAFServiceLinkedRoleErrorException' => [ 'base' => '

WAF is not able to access the service linked role. This can be caused by a previous PutLoggingConfiguration request, which can lock the service linked role for about 20 seconds. Please try your request again. The service linked role can also be locked by a previous DeleteServiceLinkedRole request, which can lock the role for 15 minutes or more. If you recently made a call to DeleteServiceLinkedRole, wait at least 15 minutes and try the request again. If you receive this same exception again, you will have to wait additional time until the role is unlocked.

', 'refs' => [], ], 'WAFSubscriptionNotFoundException' => [ 'base' => '

You tried to use a managed rule group that\'s available by subscription, but you aren\'t subscribed to it yet.

', 'refs' => [], ], 'WAFTagOperationException' => [ 'base' => '

An error occurred during the tagging operation. Retry your request.

', 'refs' => [], ], 'WAFTagOperationInternalErrorException' => [ 'base' => '

WAF couldn’t perform your tagging operation because of an internal error. Retry your request.

', 'refs' => [], ], 'WAFUnavailableEntityException' => [ 'base' => '

WAF couldn’t retrieve a resource that you specified for this operation. If you\'ve just created a resource that you\'re using in this operation, you might just need to wait a few minutes. It can take from a few seconds to a number of minutes for changes to propagate. Verify the resources that you are specifying in your request parameters and then retry the operation.

', 'refs' => [], ], 'WAFUnsupportedAggregateKeyTypeException' => [ 'base' => '

The rule that you\'ve named doesn\'t aggregate solely on the IP address or solely on the forwarded IP address. This call is only available for rate-based rules with an AggregateKeyType setting of IP or FORWARDED_IP.

', 'refs' => [], ], 'WebACL' => [ 'base' => '

A web ACL defines a collection of rules to use to inspect and control web requests. Each rule has a statement that defines what to look for in web requests and an action that WAF applies to requests that match the statement. In the web ACL, you assign a default action to take (allow, block) for any request that does not match any of the rules. The rules in a web ACL can be a combination of the types Rule, RuleGroup, and managed rule group. You can associate a web ACL with one or more Amazon Web Services resources to protect. The resources can be an Amazon CloudFront distribution, an Amazon API Gateway REST API, an Application Load Balancer, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance.

', 'refs' => [ 'GetWebACLForResourceResponse$WebACL' => '

The web ACL that is associated with the resource. If there is no associated resource, WAF returns a null web ACL.

', 'GetWebACLResponse$WebACL' => '

The web ACL specification. You can modify the settings in this web ACL and use it to update this web ACL or create a new one.

', ], ], 'WebACLSummaries' => [ 'base' => NULL, 'refs' => [ 'ListWebACLsResponse$WebACLs' => '

Array of web ACLs. If you specified a Limit in your request, this might not be the full list.

', ], ], 'WebACLSummary' => [ 'base' => '

High-level information about a WebACL, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a WebACL, and the ARN, that you provide to operations like AssociateWebACL.

', 'refs' => [ 'CreateWebACLResponse$Summary' => '

High-level information about a WebACL, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a WebACL, and the ARN, that you provide to operations like AssociateWebACL.

', 'WebACLSummaries$member' => NULL, ], ], 'XssMatchStatement' => [ 'base' => '

A rule statement that inspects for cross-site scripting (XSS) attacks. In XSS attacks, the attacker uses vulnerabilities in a benign website as a vehicle to inject malicious client-site scripts into other legitimate web browsers.

', 'refs' => [ 'Statement$XssMatchStatement' => '

A rule statement that inspects for cross-site scripting (XSS) attacks. In XSS attacks, the attacker uses vulnerabilities in a benign website as a vehicle to inject malicious client-site scripts into other legitimate web browsers.

', ], ], ],];